tensorflow2.0学习
开着蜗牛追导弹
这个作者很懒,什么都没留下…
展开
-
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 · 95 阅读 · 0 评论 -
python基本知识7--异常处理
有时间再看 https://www.bilibili.com/video/BV1vA411b7Rn?p=79原创 2021-04-26 20:31:19 · 66 阅读 · 0 评论 -
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 阅读 · 0 评论 -
python基本知识4--函数模块包
原创 2021-04-23 20:49:36 · 67 阅读 · 0 评论 -
python基本知识3--列表元祖字典集合
原创 2021-04-23 20:31:46 · 53 阅读 · 0 评论 -
python基本知识2--基本语句
原创 2021-04-23 20:22:47 · 75 阅读 · 0 评论 -
python基本知识1
原创 2021-04-23 20:12:48 · 59 阅读 · 0 评论 -
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 阅读 · 0 评论