摘要:
1.利用python读取文件 (1)Python引入了with语句来自动帮我们调用close()方法 <1>读取指定路径下的文件 with open('/path/to/file', 'r') as f: print(f.read()) <2>写文件 with open('/Users/michae 阅读全文
摘要:
1.词向量回顾 2.Bert、ELMO、GPT引出 每一个词有多个意思 (1)ELMO(Embedding from language model) (2)Bert(Bidirectional Encoder Representations from Transformer) BERT就是trans 阅读全文