pytorch
深度小白呀
这个作者很懒,什么都没留下…
展开
-
win10+anaconda+spyder+pytorch安装
win10+anaconda+spyder+pytorch安装 anaconda+spyder+cuda 安装参考 https://www.cnblogs.com/gaofighting/p/9917456.html 最终环境: Anaconda3(64bit) CUDA-9.2 CuDNN-7.1 Python-3.7 PyTorch的安装 到官网 https://pytorch.org/ 复制...原创 2019-05-30 09:29:11 · 6605 阅读 · 2 评论 -
pytorch迁移学习初步尝试CPU
参考文章: https://ptorch.com/news/138.html http://blog.csdn.net/m0_37306360/article/details/79321713 用GPU一直报错,改用CPU尝试 报错:UnboundLocalError: local variable ‘photoshop’ referenced before assignment 解决:在Jpeg...原创 2019-06-13 19:59:00 · 679 阅读 · 0 评论 -
数据封装、优化器及LOSS画图
数据封装mini-batch 参考:https://morvanzhou.github.io/tutorials/machine-learning/torch/3-05-train-on-batch/ import torch import torch.utils.data as Data torch.manual_seed(1) # reproducible BATCH_SIZE = 5 ...原创 2019-07-18 16:51:06 · 406 阅读 · 0 评论