putorch
文章平均质量分 57
ITLCFgoing
这个作者很懒,什么都没留下…
展开
-
指定位置安装虚拟环境
conda create --prefix=C:/ProgramData/Anaconda3/envs/虚拟环境名字python=3.8原创 2022-04-29 20:08:02 · 820 阅读 · 0 评论 -
YOLO数据集划分
import osimport cv2import randomfrom PIL import Image# os.makedirs('labels_train')# os.makedirs('labels_val')img_train_path ='.//images/train/' #图片训练集保存路径,需要自己新建img_val_path = './/images/val/' #图片验证集保存路径 需要自己新建labels_train_path = './custom/...原创 2021-12-01 10:28:45 · 1931 阅读 · 2 评论 -
conda安装GPU版本的pytorch
https://download.pytorch.org/whl/cu111/torch_stable.htmlhttps://download.pytorch.org/whl/cu111/torch_stable.html先安装好cuda和cudnn然后下载对应版本的torch和torchvision然后进入环境,pip install 文件的位置pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/原创 2021-10-18 22:59:08 · 1613 阅读 · 0 评论