摘要:
在介绍腾讯词向量时,用到了annoy,这里对annoy的用法详细做一下介绍。 GitHub地址:https://github.com/spotify/annoy Annoy是Erik Bernhardsson在Hack Week期间花了几个下午写的(github原话),全称Approximate N 阅读全文
摘要:
官网网址:https://tensorflow.google.cn/install/source#linux 查看Ubuntu版本:cat /etc/issue cuda版本查看:nvcc -V 或 cat /usr/local/cuda/version.txt cudnn版本查看:cat /usr 阅读全文
摘要:
镜像地址 (1)阿里云 http://mirrors.aliyun.com/pypi/simple/ (2)豆瓣 http://pypi.douban.com/simple/ (3)清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ (4)中国科学技术大学 阅读全文
摘要:
将文件test分包压缩成10M 的文件: tar czf - test | split -b 10m - test.tar.gz 后台运行: nohup tar czf - test | split -b 10m - test.tar.gz & 批量解压缩: cat test.tar.gz* | t 阅读全文