Some tips for research and coding
本博文正在丰富内容~~~💪💪💪
1. 科研起步
必读文章
1.CCF优博、南大蒋炎岩:我的博士五年 重点
3.陈天奇-科研十年
6.李沐-博士这五年
7.毕业撒花
信息收集
-
也可通过 https://dblp.uni-trier.de/ 访问.
4.arXiv预印本
http://arxiv.org/list/cs.CV/recent 看最近一周的论文; 使用http://arxiv.org/list/cs.CV/1704,可以查看17年04月的全部内容了; 使用http://arxiv.org/list/cs.CV/17,可以查看17年的所有内容,其余搜索也类似。
-
使用技巧:如 https://arxiv.org/pdf/1512.03385.pdf 下载很慢,换成 http://xxx.itp.ac.cn/pdf/1512.03385.pdf, 即可体验光速下载。注意 https 要换成 http
-
自动把论文连接到实现代码的 GitHub 资源库和数据集,并根据 GitHub 的收藏量排序。每篇论文可能有多个合并的条目,可快速了解领域进展。
12.sci-hub文献下载站 例如输入这个:https://ieeexplore.ieee.org/document/8070331/
13.论文在线翻译网页-通天塔
-
科研必备的浏览器插件+文献工具:链接:https://pan.baidu.com/s/1w2Xa30hOvo1aMhpiJCmceg 提取码:7j6b
TeXstudio + TeX Live论文撰写工具礼包:链接:https://pan.baidu.com/share/init?surl=5dYyDflQCPVz_jlwEkngUw 提取码:hz3r
17.深度学习500问
19.优秀的国际会议 👍👍
20.中国计算机学会推荐国际学术会议 👍
21.必备工具
- 使用简单, 超级稳定 👍 Tips:先免费注册体验,后使用!
安卓或桌面备用方法:
- 1.下载安装:地址一 、地址二 、地址三 、地址四 (邀请码:54RF3D)
- 2.下载安装:地址 硅谷黑科技!
- 3.下载安装:神盾 使用優惠代碼:WYC 2021年1月31日以前享受8折優惠
- 4.软件下载地址:地址一 、 地址二 、官方一、 官方二、官方三 、官方四 免费账号:地址一 、地址二、地址三、地址四
- 5.软件下载地址:地址一、地址二 、 Temp-Email:地址一 、地址二
- 6.免费分享:地址 、解密工具
2. Github
- 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
- 练习:建立自己的个人主页
3. GPU
- 目的
- nvidia-smi 查看GPU使用情况
- watch -n 1 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
- 深度学习GPU环境搭建全家桶
4. tmux
- 目的:关闭当前Terminal/命令窗口,程序依然进行。参考博文
#启动新session:
$ tmux [new -s 会话名 -n 窗口名]
#恢复session:
$ tmux at [-t 会话名]
#列出所有sessions:
$ tmux ls
#关闭session:
$ tmux kill-session -t 会话名
#关闭整个tmux服务器:
$ tmux kill-server
5. Virtualenv
- 目的
- Installation
- pip3 install virtualenv 安装virtualenv
- virtualenv env 新建环境
- source env/bin/activate 进入环境
- deactivate 退出环境
6. 文档
7. 远程连接
- MacOS - Cyberduck
- Windows - MobaXterm
- PyCharm
- TeamViewer
8. TensorLayer
Basic Tutorials CIFAR10 has data augmentation
RL Tutorials for Research / for Production
9. Deep Learning 等
TingFlow 教学性DL框架
模型结构可视化神器 - Netron
线Netron网址: https://lutzroeder.github.io/netron/
10. Publishing Paper
- Conference DDL
- Grammarly 查语法错误
- Overleaf 协同编辑
- LaTeX: MacTex
- TeXLive + TexStudio等软件资源站点
- Best tool for using LaTeX locally: VSCode + LaTeX Workshop
11. arXiv information
- Computer Science
- Statistics
- Physics