【发布时间】:2021-06-03 23:12:40
【问题描述】:
我使用的是预训练模型:
import fasttext.util
fasttext.util.download_model('en', if_exists='ignore') # English
ft = fasttext.load_model('cc.en.300.bin')
在哪里可以找到用于训练模型的超参数值的详尽列表? https://fasttext.cc/docs/en/options.html 列出了与使用的不同的默认值:例如,词向量的维度是 300 而不是 100(引用 https://fasttext.cc/docs/en/crawl-vectors.html 并没有全部列出)。
【问题讨论】: