LeNet5卷积神经网络–TensorFlow2
LeNet5卷积神经网络–TensorFlow2结果展示loss和acc曲线图参数数量程序 结果展示 acc = 89.36% loss和acc曲线图 参数数量 程序 # -*- coding: utf-8 -*- """ Created on Tue Apr 14 2020 @author: jiollos """ # 导入包 import tensorflow as tf import os import numpy as np from matplotlib import pyplot as plt from tensorflow.keras.layers import Conv2D
用户评论