python xxx # 为运行python程序
python3 -m # 为用作模块运行安装
pip install torch==1.7.0+cu110 torchvision==0.8.0+cu110 torchaudio==0.7.0 -f https://download.pytorch.org/whl/torch_stable.html -i https://pypi.tuna.tsinghua.edu.cn/simple
豆瓣云
pip install 模块名 -i https://pypi.douban.com/simple
pyqt5和vitables安装
python3 -m pip install -i http://pypi.douban.com/simple --trusted-host pypi.douban.com 模块名
清华云
pip install 模块名 -i https://pypi.tuna.tsinghua.edu.cn/simple
使用国内镜像源来加速python pypi包的安装_wujingwen1111的博客-CSDN博客
豆瓣 http://pypi.douban.com/simple
阿里云 http://mirrors.aliyun.com/pypi/simple
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple
如果手动指定源,要在pip后面跟-i 指定源,后面加/simple 比如用豆瓣的源来安装pandas框架:
pip install pandas -i http://pypi.douban.com/simple
os:
numpy:
pandas:
matplotlib:
glob:字符串匹配
csv:与txt格式一样为纯文本,读写和txt相似,以字符写,读取返回每行为一个大个字符串组成一个大列表。.strip()剥离字符串尾的制定字符默认为空格换行制表符。
h5py:文件后缀名为.hdf5 为组和数据集的组合形式,数据集可以带有多个标签,按键索引,类似文件文件夹形式。
acc:全局准确率
acc_cls:类平均准确率
iou:交并比 【需要混淆矩阵】
miou:所有类的交并比之和求平均【需要混淆矩阵】
召唤率:在真实值中召回(预测)正确的比率
精确率:在预测值中精准(预测)正确的比率
F1 的值为 召回率和精确率的调和平均
F0.5 / F2 为召回和精确的不同比率即不同重要度
2022年5月10号11点52分 看完randlanet代码