07 2021 档案
摘要:转载自 https://zhuanlan.zhihu.com/p/61635013 一、什么是Word2Vec Word2Vec是google在2013年推出的一个NLP工具,它的特点是能够将单词转化为向量来表示,这样词与词之间就可以定量的去度量他们之间的关系,挖掘词之间的联系。用词向量来表示词并不
阅读全文
摘要:有两个Embedding函数,通常是用前面这一个 ref https://pytorch.org/docs/stable/generated/torch.nn.Embedding.html torch.nn.Embedding( num_embeddings, embedding_dim, padd
阅读全文
摘要:直接用 pip install tensorflow 安装, import 的时候会报如上错误 总之,大概的原因就是不兼容arm架构 参考https://stackoverflow.com/questions/65383338/zsh-illegal-hardware-instruction-pyt
阅读全文
摘要:首先,当然,官方文档都有 RNN: https://pytorch.org/docs/stable/generated/torch.nn.RNN.html RNNCell: https://pytorch.org/docs/stable/generated/torch.nn.RNNCell.html
阅读全文
摘要:"看似"正确的更新方式: conda update pytorch torchvision 版本没变 正确的更新方式: conda install pytorch torchvision torchaudio -c pytorch 升级成功
阅读全文