平台与工具
RaspberryPi
self_drive 自动驾驶 github
华为ModelArts开发者交流互动平台案例
ModelArts-Lab github
中文文本分类
cherry github
GAN 是"生成对抗网络"(Generative Adversarial Networks)的缩写
the-gan-zoo github
标注工具
cvat github 图像标注工具
PYTHON库
Pandas_100_knocks github Python初学者のためのPandas100本ノック
rich github 可以在终端中提供富文本和精美格式的 Python 库
声音
MockingBird github 5秒内克隆你的声音
开发环境
开发环境管理
anaconda
添加清华大学的镜像,直接修改.condarc文件
1
2
3
4
5
6
|
ssl_verify: true
show_channel_urls: true
channels:
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
- defaults
|
或者用conda命令追加镜像
1
2
3
|
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
|
更新conda
1
|
conda update -n base -c defaults conda
|
安装tensorflow包
1
|
conda install tensorflow
|
搜索指定包