All Projects → zsdonghao → Research And Coding

zsdonghao / Research And Coding

研究资源列表 A curated list of research resources

Projects that are alternatives of or similar to Research And Coding

Top 10 Computer Vision Papers 2020
A list of the top 10 computer vision papers in 2020 with video demos, articles, code and paper reference.
Stars: ✭ 132 (+32%)
Mutual labels:  artificial-intelligence, paper, research
Dnc Tensorflow
A TensorFlow implementation of DeepMind's Differential Neural Computers (DNC)
Stars: ✭ 587 (+487%)
Mutual labels:  paper, research
Qlib
Qlib is an AI-oriented quantitative investment platform, which aims to realize the potential, empower the research, and create the value of AI technologies in quantitative investment. With Qlib, you can easily try your ideas to create better Quant investment strategies. An increasing number of SOTA Quant research works/papers are released in Qlib.
Stars: ✭ 7,582 (+7482%)
Mutual labels:  research, paper
Pygame Learning Environment
PyGame Learning Environment (PLE) -- Reinforcement Learning Environment in Python.
Stars: ✭ 828 (+728%)
Mutual labels:  artificial-intelligence, research
Lagom
lagom: A PyTorch infrastructure for rapid prototyping of reinforcement learning algorithms.
Stars: ✭ 364 (+264%)
Mutual labels:  artificial-intelligence, research
Research Method
论文写作与资料分享
Stars: ✭ 436 (+336%)
Mutual labels:  paper, research
Carla
Open-source simulator for autonomous driving research.
Stars: ✭ 7,012 (+6912%)
Mutual labels:  artificial-intelligence, research
Always Learning
404 Not Found的知识库:计算机理论基础、计算机技术基础、底层研究、安全技术、安全研究、人工智能、企业安全建设、安全发展、职业规划、综合素质、国内外优秀技术人
Stars: ✭ 329 (+229%)
Mutual labels:  artificial-intelligence, research
Construct
JavaScript Digital Organisms simulator
Stars: ✭ 17 (-83%)
Mutual labels:  artificial-intelligence, research
Ophidian
Ophidian's Mirror Repository on github. https://gitlab.com/eclufsc/eda/ophidian
Stars: ✭ 32 (-68%)
Mutual labels:  research, teaching
Neural Architecture Search With Rl
Minimal Tensorflow implementation of the paper "Neural Architecture Search With Reinforcement Learning" presented at ICLR 2017
Stars: ✭ 37 (-63%)
Mutual labels:  paper, research
Papers Literature Ml Dl Rl Ai
Highly cited and useful papers related to machine learning, deep learning, AI, game theory, reinforcement learning
Stars: ✭ 1,341 (+1241%)
Mutual labels:  artificial-intelligence, paper
Yarp
YARP - Yet Another Robot Platform
Stars: ✭ 358 (+258%)
Mutual labels:  artificial-intelligence, research
Robotopia
🤖 Introducing kids to coding with tiny virtual robots!
Stars: ✭ 478 (+378%)
Mutual labels:  coding, teaching
Csinva.github.io
Slides, paper notes, class notes, blog posts, and research on ML 📉, statistics 📊, and AI 🤖.
Stars: ✭ 342 (+242%)
Mutual labels:  artificial-intelligence, research
Awesome Interaction Aware Trajectory Prediction
A selection of state-of-the-art research materials on trajectory prediction
Stars: ✭ 625 (+525%)
Mutual labels:  artificial-intelligence, paper
Ai Residency List
List of AI Residency & Research programs, Ph.D Fellowships, Research Internships
Stars: ✭ 69 (-31%)
Mutual labels:  artificial-intelligence, research
GuidedLabelling
Exploiting Saliency for Object Segmentation from Image Level Labels, CVPR'17
Stars: ✭ 35 (-65%)
Mutual labels:  research, paper
Dreamerv2
Mastering Atari with Discrete World Models
Stars: ✭ 287 (+187%)
Mutual labels:  artificial-intelligence, research
Talks
Repository of publicly available talks by Leon Eyrich Jessen, PhD. Talks cover Data Science and R in the context of research
Stars: ✭ 16 (-84%)
Mutual labels:  research, teaching

Some tips for research and coding

欢迎大家一起丰富内容~~~😄

0. 论文列表

1. 科研起步

必读文章

信息收集

其他

2. Github

  • Github历史和目的
  • 创建账号
  • 建立Repository
  • git init 初始化
  • 随便添加一个.txt文件
  • git diff 查看当前本地修改了什么
  • git diff xxx 查看xxx里面修改了什么
  • 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. 其他Coding

4. 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

5. Screen

  • 目的:关闭当前Terminal/命令窗口,程序依然进行。
  • 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

6. Virtualenv

  • 目的
  • Installation
  • pip3 install virtualenv 安装virtualenv
  • virtualenv env 新建环境
  • source env/bin/activate 进入环境
  • deactivate 退出环境

7. 文档

8. 远程连接

9. TensorLayer

10. Machine Learning / System / ...

11. Publishing Paper

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].