
开发环境配置
华山汉灵
计算机视觉算法工程师
展开
-
argoverse-api安装
https://github.com/argoai/argoverse-api 这里的安装只遇到一个问题 No matching distribution found for pyntcloud 解决: 将pip回退到18.1 pip install pip==18.1 然后,pip install -e /path_to_root_directory_of_the_repo/ --process-dependency-links ...原创 2021-06-15 14:05:20 · 1579 阅读 · 0 评论 -
github私有代码库克隆
github私有代码设置 download zip得到的文件夹是不带git的 克隆私有代码库要用这个命令 git clone git@github.com:yourname/project.git 如果密钥不匹配需要设置,参考 “Please make sure you have the correct access rights and the repository exists.问题解决” https://blog.youkuaiyun.com/lw545034502/article/details/9069687原创 2021-06-15 11:10:52 · 379 阅读 · 0 评论 -
torch7-configuration(ubuntu 16.04-cuda9.0-cudnn7.1.4)
1.cd ~/ 2.curl -s https://raw.githubusercontent.com/torch/ezinstall/master/install-deps | bash # because of my system problem,found error about libicu55,I solve it by "sudo apt-get install libicu5...原创 2019-01-13 10:43:41 · 398 阅读 · 0 评论 -
ubuntu useful command
1.search string in folder grep -r string ./ 2.将ubuntu终端输出保存为日志 2>&1 | tee /path/name.log 3.从log文件中查找迭代次数和损失并记录为文件 grep Iteration mnist.log | grep loss | awk '{print $6 $9}' | sed 's/\,//' ...原创 2019-01-14 12:31:41 · 188 阅读 · 0 评论