自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 ✨Pytorch 基础 4 -- Linear Regression

目录code写在最后codeimport torchimport torch.nn as nnfrom sklearn import datasetsimport matplotlib.pyplot as plt# 0) prepare datax_numpy, y_numpy = datasets.make_regression(n_samples = 100, n_features = 1, noise =20, randome_state =1)X = torch.f

2021-10-26 09:21:43 94

原创 ✨Pytorch 基础 3 -- Machine Learning Pipeline and demo model

目录Machine Learning PipelineDemo Model: manually build a modelEliminate manually computed gradientReplace loss function and gradient update processReplace forward passRef写在最后Machine Learning PipelineStep 1: Deisgn model (input, output size

2021-10-26 09:17:03 143

原创 ✨Pytorch 基础 2 -- Autograd

参考网站:https://towardsdatascience.com/pytorch-autograd-understanding-the-heart-of-pytorchs-magic-2686cd94ec95https://towardsdatascience.com/pytorch-autograd-understanding-the-heart-of-pytorchs-magic-2686cd94ec95requires_grad# set requires_grad = True w

2021-10-22 10:44:38 109

原创 ✨Pytorch 基础 1 -- Tensor

目录Create TensorOprations on TensorCreate Tensor#create tensors with specific dimensiona = torch.tensor(5, device = "cpu")c = torch.empty(2, 3)k = torch.ones(2, 2, dtype = torch.int). # torch.float16t = torch.randn(2, 2)#check the size:k.s..

2021-10-22 10:25:52 141

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除