一、.基础缓存池实现 继承的Singleton脚本为 public class Singleton<T> where T : new()
{private static T _instance;public static T GetIstance(){if (_instance null)_instance new T();return _instance;}
}
1.PoolManager
using System.Collections;
using S…
ALBert
ALBERT就是为了解决模型参数量大以及训练时间过长的问题。ALBERT最小的参数只有十几M, 效果要比BERT低1-2个点,最大的xxlarge也就200多M。可以看到在模型参数量上减少的还是非常明显的,但是在速度上似乎没有那么明显。最大的问题就是这种方式其实…