freedomRen

Results 7 issues of freedomRen

是否能够增加albert系列支持? Can Albert support will be added? 官方支持或者给出如何转化别人的albert模型的教程? Official support or tutorials on how to transform someone else's Albert model?

现在gitee在国内老是限制访问,下载插件和链接插件服务都不好用。 有么有可能搭建一个其他镜像源。 非常感谢

训练的过程中没有打印进度条,或者时间估计。但是加载了GPU上看显存使用量也不是很大,但是训练很慢。 1. 请问作者的参数训练的时长。 2. 最后预测的准确度。 看了下数据库,train集没有太多的数据,前面也有帖子反映预测的很慢, 也就是说这个模型除了用来刷竞赛,在实际的使用中效率不是很高, 特别是商用的场景。

When you load a freeze model in a pb file, the vars in pb file is freezed (not trainable), so how can I use it to retain it using a...

``` def get_subgraph_embedding(embeddings_model_file): embedding_word_size = 0 embedding_dims = 0 word_embeddings = {} print("Loading embedding model %s" %(embeddings_model_file)) with open(embeddings_model_file) as fh: # skip first line embedding_word_size, embedding_dims = fh.readline().rstrip().split() embedding_word_size...