Notes

作者: vcoolor | 来源:发表于2019-05-09 16:57 被阅读0次

备忘


马尔科夫随机场

GCN

Git每次输入账号和密码

  • 在Git目录下执行命令: git config --global credential.helper store 下次再输入一次 账号密码 就可以了

Deep Reinforcement Learning

DNN CNN RNN LSTM

姿态估计数据集

LSP
地址:http://sam.johnson.io/research/lsp.html
样本数:2K
关节点个数:14
全身,单人
FLIC
地址:https://bensapp.github.io/flic-dataset.html
样本数:2W
关节点个数:9
全身,单人
MPII
地址:http://human-pose.mpi-inf.mpg.de/
样本数:25K
关节点个数:16
全身,单人/多人,40K people,410 human activities
MSCOCO
地址:http://cocodataset.org/#download
样本数:>= 30W
关节点个数:18
全身,多人,keypoints on 10W people
AI Challenge
地址:https://challenger.ai/competition/keypoint/subject
样本数:21W Training, 3W Validation, 3W Testing
关节点个数:14
全身,多人,38W people
注册要上传身份证

创建文件夹快捷方式

sudo ln -sT '/文件目录' '/指定目录'

Ubuntu下分卷压缩

  • 压缩
    tar cvzpf - test | split -d -b 500m
    

    上面的命令是将test这个文件夹分卷压缩,每卷500m。压缩完之后,会出现名称为x00 x01 x02 …大小均为500M的文件。

  • 解压
    • 首先合并所有的分卷压缩文件:
    cat x* > test.tar.gz
    
    • 然后解压
    tar xzvf test.tar.
    

conda 重命名虚拟环境

conda 其实没有重命名指令,实现重命名是通过 clone 完成

  • 克隆虚拟环境
conda create -n env_1 --clone env_0

Source: /anaconda3/envs/env_0
Destination: /anaconda3/envs/3nv_1
Packages: 10
Files: 100

  • 删除原环境
conda remove -n env_0 --all

opencv

conda install -c conda-forge opencv=4.1.0

TensorBoard with Pytorch

  • requirements.txt:

tb-nightly
future

pip install -r requirements.txt

相关文章

网友评论

      本文标题:Notes

      本文链接:https://www.haomeiwen.com/subject/irqgoqtx.html