07 2021 档案

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