欢迎大家一起丰富内容~~~😄
- 1.Karpathy-博士经验 (翻译) 重点
- 2.陈天奇-科研十年
- 3.王一-科研idea
- 4.王赟-我的八年博士生涯
- 5.李沐-博士这五年
- 6.毕业撒花
- 7.帝国理工-博士手册(Doctoral Milestones)
- 1.Google Scholar 如何查询相关文章
- 2.Google Scholar 如何follow研究者
- 3.arXiv
- 4.arXiv-sanity
- 5.sci-hub 例如输入这个:https://ieeexplore.ieee.org/document/8070331/
- 6.mendeley 文章整理APP
- Github历史和目的
- 创建账号
- 建立Repository
- git init 初始化
- git add xxx.txt 添加xxx.txt到git
- git add -A 添加所有文件到git
- git commit -m "hahahah" 添加注释
- git push 上传更新
- git clone https://github.com/account/repository.git
- git status 查询状态
- 如何在网站上修改
- git pull 与Github同步
- git branch 查看branch
- git branch -a 查看所有branch
- git branch new 创建branch名为new
- git checkout new 进入new branch
- git checkout master 返回主branch
- git checkout -b new2 创建并进入branch名为new2
- 修改branch后,commit到Github上,如何在github上发起Push Request
- .gitignore 自定义不能被添加的文件
- 添加collaborator
- 新建organization
- 练习:建立自己的个人主页
- 目的
- nvidia-smi 查看GPU使用情况
- sudo fuser -v /dev/nvidia* 查看GPU使用者
- sudo kill -9 PID 杀掉进程
- CUDA_VISIBLE_DEVICES=0 python xxx.py 指定GPU0
- CUDA_VISIBLE_DEVICES=0,1 python xxx.py 指定GPU0和1
- CUDA_VISIBLE_DEVICES=“” python xxx.py 不使用GPU
- python xxx.py > train.log & 把输出放入train.log(>); 不显示输出(&)
- CPU & GPU
- top
- htop
- 目的
- screen -S name 创建screen,并进入
- screen -ls 查看screen列表
- screen -r name 进入screen
- ctrl+A+D 退出当前screen
- screen -d name 关闭screen
- screen -X -S name kill 删除screen
- 目的
- Installation
- pip3 install virtualenv 安装virtualenv
- virtualenv env 新建环境
- source env/bin/activate 进入环境
- deactivate 退出环境
- Installation
- Dynamic and Static Models
- Advanced Features
- Data Augmentation
- Basic Tutorials CIFAR10 has data augmentation
- A Good Project Template
- NIPS 19 Subject Areas
- CVPR 19 Program Guide
- CVPR 19 Paper list
- SIGGRAPH 19 Technical Papers Fast Forward/ Paper List
- zsdonghao/deep-learning-note
- Distributed Training
- TingFlow 教学性DL框架
- Conference DDL
- Grammarly 查语法错误
- Overleaf 协同编辑