立即学习:https://edu.csdn.net/course/play/26956/347465?utm_source=blogtoedu
tensorflow 一般使用流程:
导入数据->定义模型->编译模型->模型训练->模型保存->模型预测
实现简单的分类模型
import tensorflow as tf
inputs=tf.keras.Input(shape=[32,32,3])
'''卷积模块'''
x=tf.keras.layers.Conv2D(10,kernel_size=[3,3],strides=[1,1],padding='SAME',activation='re
1