本文主要是介绍FastText 微调,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
使用教程参见https://blog.csdn.net/jingyi130705008/article/details/137153444,安装之前只需要把model.cc文件中以下几行代码注释掉即可实现【冻结词向量】。
for (auto it = input.cbegin(); it != input.cend(); ++it) {wi_->addRow(grad_, *it, 1.0);}
注:make时如果提示C++版本不对,可以尝试把Makefile文件中的c++17改成c++11,如下图所示:
CXXFLAGS = -pthread -std=c++11 -march=native
参考资料:
https://github.com/facebookresearch/fastText/issues/681
这篇关于FastText 微调的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!