我试着用LSTM和预先训练的BERT嵌入来进行情感分类,然后用转换器进行语言翻译,首先我下载了!在最快的收敛性和稳定性之间找到平衡model = text.text_classifier('bert', trn , preproc=preproc)is selected model, then preprocess_mode='%s' should be used and vice versa"
--> 111
我使用Pickle方法(通过Bert- as -Service和Google的预训练模型)将python字典存储为Vector文件,如下所示:
(关键)短语:(值)Phrase_Vector_from_Bert但我不知道如何像Gensim Word2Vec那样从Bert- as -Service模型中获得短语与向量文件的相似度,因为后者配备了.similarity方法。你能给我一个建议来获取短语/关键字的相似度,或者将它们与我的python-Pickle-dictionary向量文件进行聚类吗?