-
大小: 25.19MB文件类型: .zip金币: 1下载: 0 次发布日期: 2023-08-02
- 语言: 其他
- 标签: tensorflow python mnist deeplearning
资源简介
包括数据集、网络结构、训练代码、测试代码,还有示范的最终模型
代码片段和文件信息
import tensorflow as tf
INPUT_NODE = 784
OUTPUT_NODE = 10
layer1_NODE = 500
def get_weight_variable(shaperegularizer):
weights = tf.get_variable(“weights“shapeinitializer=tf.truncated_normal_initializer(stddev=0.1))
if regularizer != None:
tf.add_to_collection(‘losses‘ regularizer(weights))
return weights
def inference(input_tensor regularizer):
with tf.variable_scope(‘layer1‘):
weights = get_weight_variable([INPUT_NODE layer1_NODE] regularizer)
biases = tf.get_variable(“biases“ [layer1_NODE] initializer=tf.constant_initializer(0.0))
layer1 = tf.nn.relu(tf.matmul(input_tensor weights) + biases)
with tf.variable_scope(‘layer2‘):
weights = get_weight_variable([layer1_NODE OUTPUT_NODE] regularizer)
biases = tf.get_variable(“biases“ [OUTPUT_NODE] initializer=tf.constant_initializer(0.0))
layer2 = tf.nn.relu(tf.matmul(layer1 weights) + biases)
return layer2
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-10-15 19:52 mnist\
目录 0 2018-10-15 19:52 mnist\MNIST_data\
文件 1648877 2018-08-25 11:29 mnist\MNIST_data\t10k-images-idx3-ubyte.gz
文件 4542 2018-08-25 11:29 mnist\MNIST_data\t10k-labels-idx1-ubyte.gz
文件 9912422 2018-08-25 11:28 mnist\MNIST_data\train-images-idx3-ubyte.gz
文件 28881 2018-08-25 11:29 mnist\MNIST_data\train-labels-idx1-ubyte.gz
文件 976 2018-10-15 13:18 mnist\mnist_inference.py
目录 0 2018-10-15 19:52 mnist\mnist_model\
文件 595 2018-10-15 14:05 mnist\mnist_model\checkpoint
文件 3180084 2018-10-15 14:05 mnist\mnist_model\model.ckpt-15001.data-00000-of-00001
文件 470 2018-10-15 14:05 mnist\mnist_model\model.ckpt-15001.index
文件 62980 2018-10-15 14:05 mnist\mnist_model\model.ckpt-15001.me
文件 3180084 2018-10-15 14:05 mnist\mnist_model\model.ckpt-16001.data-00000-of-00001
文件 470 2018-10-15 14:05 mnist\mnist_model\model.ckpt-16001.index
文件 62980 2018-10-15 14:05 mnist\mnist_model\model.ckpt-16001.me
文件 3180084 2018-10-15 14:05 mnist\mnist_model\model.ckpt-17001.data-00000-of-00001
文件 470 2018-10-15 14:05 mnist\mnist_model\model.ckpt-17001.index
文件 62980 2018-10-15 14:05 mnist\mnist_model\model.ckpt-17001.me
文件 3180084 2018-10-15 14:05 mnist\mnist_model\model.ckpt-18001.data-00000-of-00001
文件 470 2018-10-15 14:05 mnist\mnist_model\model.ckpt-18001.index
文件 62980 2018-10-15 14:05 mnist\mnist_model\model.ckpt-18001.me
文件 3180084 2018-10-15 14:05 mnist\mnist_model\model.ckpt-19001.data-00000-of-00001
文件 470 2018-10-15 14:05 mnist\mnist_model\model.ckpt-19001.index
文件 62980 2018-10-15 14:05 mnist\mnist_model\model.ckpt-19001.me
文件 1713 2018-10-15 14:04 mnist\mnist_test.py
文件 2200 2018-10-15 14:01 mnist\mnist_train.py
- 上一篇:JDK 1.4.2 64位
- 下一篇:CISSP第七版最新分章节分知识域思维导图
相关资源
- MNIST数据集原始格式+csv格式
- phantomjs驱动
- RT-MDNet视频目标跟踪论文官方预训练网
- sklearn中文文档
- TensorFlow实战Google深度学习框架 郑泽宇
- TensorFlow 官方文档中文版
- chromedriver_72.0.3626.7集合win32linux64mac6
- Pandas官方文档CHM格式
- mnist_dataset 手写字体数据集
- Tensorflow物体识别在安卓上的运用
- Qt Designer 2019-09-27.dmg
- 用Scikit-Learn和TensorFlow实践机器学习
- tensorflow-2.0.0-cp37-cp37m-win_amd64.whl
- mnist手写数字数据集的图片格式
- TensorFlow 1.x Deep Learning Cookbook 原版电子
- 推荐系统实践-高清带目录版 zip解压
- MNIST 手写0-9数字图片识别
- 机器翻译例程tensorflow
- mnist_data数据集
- TinyML Machine Learning with TensorFlow Lite o
- OpenCV3计算机视觉
- mnist手写体识别
- fashion-mnist数据集和论文
- tensorflow-1.9.0-cp35-cp35m-win_amd64.whl
- cuda8.0-windows10-64 桌面版离线安装包
- tensorflow-1.7.0-cp36-cp36m-win_amd64.whl
- 数学建模算法与程序 司守奎包括原数
- PyQt5All.rar
- tf_car_dataset
- 香港科技大学Tensorflow三天速成课件
评论
共有 条评论