- 博客(10)
- 收藏
- 关注
原创 pytorch学习——常用API,线性回归实现
tensor(data.requird.qrad=True) 该Tensor后续会被计算梯度 tensor所有的操作都会被记录在grad_fn with torch.no_grad(): 其中的操作不会被追踪 import torch a=torch.randn(2,2) a=((a-3)/(a-1)) print(a.requires_grad)#Fasle a.requires_grad_(True) print(a.requires_grad)#True b=(a*a).sum() print(b.g
2021-04-28 14:46:58 231
原创 pytorch学习----张量
各种数值数据称为张量 a.常数:scale:0阶张量 b.向量:vector:1阶张量 c.矩阵:matrix:2阶张量 1.pytorch中创建张量 import torch import numpy as np #使用python中的列表或序列创建tensor t1=torch.Tensor([1,2,3]) print(t1) # #使用numpy中的数组创建tensor t2=torch.tensor(np.array([[1,2,3],[4,5,6]])) print(t2) #使用torch的a
2021-04-28 09:06:59 94
原创 python基本知识6——继承和多态
class grandfather: def __init__(self,name,age): self.name=name self.age=age pass def eat(self): print("hhhhhh") pass class son(grandfather): def __init__(self,name,age):#重写父类的方法 grandfather.__init__.
2021-04-26 11:08:15 139 1
原创 python基本知识5——面向对象
![!](https://img-blog.csdnimg.cn/20210425204149929.png)] class People: def __init__(self,name,sex,age): self.name=name self.sex=sex self.age=age print('_init_函数的执行') pass # def eat(self,food): # ...
2021-04-25 20:53:31 60
原创 TensorFlow2.0安装
TensorFlow2.0安装 1.创建独立环境并激活 conda create --name tensorflow 2.0 python==3.7 activate tensorflow2.0 2.安装相关软件包 pip install numpy matplotlib Pillow scikit-learn pandas -i https://pypi.tuna.tsinghua.edu.cn/simple 3.安装TensorFlow2.0 pip install tensorflow==2.0.
2021-04-23 19:46:43 119
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人