资源简介
利用mnist数据集做深度学习小实例
代码片段和文件信息
# -*- coding: utf-8 -*-
“““
Created on Fri Apr 20 09:03:09 2018
@author: Administrator
“““
import tensorflow as tf
import numpy as np
from tensorflow.examples.tutorials.mnist import input_data
import os
os.environ[‘TF_CPP_MIN_LOG_LEVEL‘] = ‘2‘
#对一个张量进行全面的汇总(均值,标准差,最大最小值,直方图)
# (用于 TensorBoard 可视化).
def variable_summaries(var):
with tf.name_scope(‘summaries‘):
mean = tf.reduce_mean(var)
tf.summary.scalar(‘mean‘ mean)
with tf.name_scope(‘stddev‘):
stddev = tf.sqrt(tf.reduce_mean(tf.square(var - mean)))
tf.summary.scalar(‘stddev‘ stddev)
tf.summary.scalar(‘max‘ tf.reduce_max(var))
tf.summary.scalar(‘min‘ tf.reduce_min(var))
tf.summary.histogram(‘histogram‘ var)
print(‘~
- 上一篇:python聊天机器人(扫码登陆网页版微信)
- 下一篇:python撞击球游戏
相关资源
- 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作带箭头的坐标轴
- excel数据比对小工具
- python turtle 跳房子
- python 人群计数
- 自动化测试(基于pytest)
- 基于树莓派的动态图像对比(py3_ob<
- Python调用第三方API换脸
- “去哪儿吃”帮你选餐厅(python代码
- 国外实习题:Programming Assignment 3
- python 控制台登陆密码验证
评论
共有 条评论