2020年10月28日

tensorflow实现简单的卷积神经网络

摘要: 1 # MNIST训练 2 3 import tensorflow as tf 4 import matplotlib.pyplot as plt 5 from tensorflow.examples.tutorials.mnist import input_data 6 import numpy 阅读全文

posted @ 2020-10-28 12:20 舟华 阅读(160) 评论(0) 推荐(0) 编辑

tensorflow实现简单的感知机

摘要: 1 # 感知机 2 3 #导入相关库并载入数据 4 from tensorflow.examples.tutorials.mnist import input_data 5 import tensorflow as tf 6 mnist = input_data.read_data_sets("MN 阅读全文

posted @ 2020-10-28 12:12 舟华 阅读(215) 评论(0) 推荐(0) 编辑

tensorflow实现简单的自编码器

摘要: 1 # 自编码器 2 #导入相关库 3 import numpy as np 4 import sklearn.preprocessing as prep 5 import tensorflow as tf 6 from tensorflow.examples.tutorials.mnist imp 阅读全文

posted @ 2020-10-28 12:08 舟华 阅读(169) 评论(0) 推荐(0) 编辑

导航