-
大小: 3KB文件类型: .zip金币: 1下载: 0 次发布日期: 2021-01-06
- 语言: Python
- 标签: TensorFlow Python
资源简介
使用TensorFlow实现简单的手写数字0-9识别,下载后解压配置环境运行。
代码片段和文件信息
# softmax_1.py
# 添加娟娟神经网络
from tensorflow.examples.tutorials.mnist import input_data
import matplotlib.pyplot as plt
import tensorflow as tf
import numpy as np
import os
os.environ[‘TF_CPP_MIN_LOG_LEVEL‘] = ‘2‘
mnist = input_data.read_data_sets(‘MNIST_data‘ one_hot=True)
sess = tf.InteractiveSession()
x = tf.placeholder(“float“ shape=[None 784])
y_ = tf.placeholder(“float“ shape=[None 10])
W = tf.Variable(tf.zeros([78410]))
b = tf.Variable(tf.zeros([10]))
y = tf.nn.softmax(tf.matmul(xW) + b)
# 卷积神经网络
def weight_variable(shape):
initial = tf.truncated_normal(shape stddev=0.1)
return tf.Variable(initial)
def bias_variable(shape):
initial = tf.constant(0.1 shape=shape)
return tf.Variable(initial)
def conv2d(x W):
return tf.nn.conv2d(x W str
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3261 2018-05-20 12:18 softmax_1.py
文件 3408 2018-05-20 12:18 softmax_regresession.py
相关资源
- openmv识别红色,串口通信,可用于信
- python一个打砖块的小游戏
- python实验指导书 图文高清版
- python主动安装第三方库
- python爬取豆瓣top250电影信息
- FastAPI入门级
- python绘制 大蟒蛇
- python小程序(数组排序)
- Python去水印(基于cv2)
- Python 数据结构入门 - 二叉搜索树(
- python空心电感计算器
- python除法.docx
- 抽奖背后的秘密(python抽奖逻辑)
- 绘制统计学直方图茎叶图(matplotlib)
- python求解标准差
- 使用模块与库编程2.pptx 教程
- svm-simple.py(matplotlib)
- python数据分析与处理
- 监控文件夹,发现psd文件自动生成j
- 利用Python将照片在Excel中利用点阵图显
- 用malplotlib作带箭头的坐标轴
- pygame贪吃蛇
- python turtle 跳房子
- python 人群计数
- 自动化测试(基于pytest)
- 基于树莓派的动态图像对比(py3_ob<
- Python调用第三方API换脸
- “去哪儿吃”帮你选餐厅(python代码
- 国外实习题:Programming Assignment 3
- python 控制台登陆密码验证
评论
共有 条评论