tensorflow tf.train.SummaryWriter()

来源:互联网 发布:牛肉汤成本算法 编辑:程序博客网 时间:2024/06/01 12:33

报错:

AttributeError: module 'tensorflow.python.training.training' has no attribute 'FileWriter'

解决:
tensorflow 新版取消了tf.train.SummaryWriter(),换成使用tf.summary.FileWriter()
warning:

sess.run(tf.initialize_all_variables())  Use `tf.global_variables_initializer` instead.

解决:
tf.initialize_all_variables()换成tf.global_variables_initializer()
实例:

# -*- coding: utf-8 -*-"""Created on Mon Dec 25 19:53:43 2017@author: Administrator"""import matplotlib.pyplot as pltimport timeimport tensorflow as tfimport numpy as npdef add_layer(inputs,in_size,out_size,activation_function=None):    with tf.name_scope('layer'):        with tf.name_scope('weights'):            Weights=tf.Variable(tf.random_normal([in_size,out_size]),name='W')        with tf.name_scope('biases'):              biases=tf.Variable(tf.zeros([1,out_size])+0.1,name='b')        with tf.name_scope('Wx_plus_b'):            Wx_plus_b=tf.add(tf.matmul(inputs,Weights),biases)        if activation_function is None:            outputs=Wx_plus_b        else:            outputs=activation_function(Wx_plus_b)        return outputs#define placeholder for inputs to networkwith tf.name_scope('inputs'):    xs=tf.placeholder(tf.float32,[None,1],name='x_input')    ys=tf.placeholder(tf.float32,[None,1],name='y_input')#add hidden layerl1=add_layer(xs,1,10,activation_function=tf.nn.relu)#add output layerprediction=add_layer(l1,10,1,activation_function=None)#the error between prediction and real data loss=tf.reduce_mean(tf.reduce_sum(tf.square(ys-prediction),reduction_indices=[1]))with tf.name_scope('train'):    train_step=tf.train.GradientDescentOptimizer(0.1).minimize(loss)sess=tf.Session()writer=tf.summary.FileWriter("logs/",sess.graph)#important stepsess.run(tf.global_variables_initializer())    
阅读全文
'); })();
0 0
原创粉丝点击
热门IT博客
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 宋羽 宋羽和齐承之第花蕊 齐承之和宋羽在办公室 songqian tara 送钱 荣茜 宋行 宋词精选 宋词三百首 宋词300首 经典宋词 宋词大全 宋词赏析 唐诗宋词app 著名宋词 韩司沉宋词 宋词特点 宋词 押韵 豪放宋词 宋词音韵 宋词三百 什么是宋词 宋词吧 宋词全集 好宋词 宋词欣赏 宋词鉴赏 宋词宋词 宋词朗诵 宋词名句 行书宋词 宋词词牌名 优美宋词 宋词 沁园春 宋词 错错错 唯美宋词 励志宋词 宋词书法 宋词3首 宋词10首