随笔分类 - pytorch+pytorch linghtling
摘要:# -*- coding: utf-8 -*-import torchimport matplotlib.pyplot as plt# torch.manual_seed(1) # reproducible# fake data从-1到1分成100分x = torch.unsqueeze(torch
阅读全文
摘要:# -*- coding: utf-8 -*-"""View more, visit my tutorial page: https://morvanzhou.github.io/tutorials/My Youtube Channel: https://www.youtube.com/user/M
阅读全文
摘要:目录 Pytorch Leture 05: Linear Rregression in the Pytorch Way Logistic Regression 逻辑回归 - 二分类 Lecture07: How to make netural network wide and deep ? Lect
阅读全文
摘要:Pytorch学习系列(一)至(四)均摘自《深度学习框架PyTorch入门与实践》陈云目录:1.程序的主要功能2.文件组织架构3. 关于`__init__.py`4.数据处理5.模型定义6.工具函数7.配置文件8.main.py9.使用1.程序的主要功能: 模型定义 数据加载 训练和测试2.文件组织
阅读全文
摘要:pytorch官网上两个例程 转自::https://www.cnblogs.com/zf-blog/p/7792373.html caffe用起来太笨重了,最近转到pytorch,用起来实在不要太方便,上手也非常快,这里贴一下pytorch官网上的两个小例程,掌握一下它的用法: 例程一:利用nn
阅读全文