自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 笔记1

dict字典创建的方法: dict=dict((('one',1),('two',2),('three',3))) print(dict) dic=dict(one=1,two=2,three=3) print(dic) dic=dict({'one':1,'two':2,'three':3}) print(dic) 字典的合法性 1.键要求是不可变的数据类型 dic={[1,2,3]:1,1:66} print(dic) #输出 TypeError: unhashable ty

2020-06-19 10:46:27 63

原创 2020-03-12

import tensorflow as tf from PIL import Image import numpy as np from train import CNN ''' python 3.7 tensorflow 2.0.0b0 pillow(PIL) 4.3.0 ''' class Predict(object): def __init__(self): ...

2020-03-12 14:59:21 73

原创 2020-03-12

import os import tensorflow as tf from tensorflow.keras import datasets, layers, models ''' python 3.7 tensorflow 2.0.0b0 ''' class CNN(object): def __init__(self): model = models.Seque...

2020-03-12 14:52:10 121

空空如也

空空如也

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

TA关注的人

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