tensorflow笔记2-tensorflow基础

import tensorflow as tf

graph = tf.Graph()

with graph.as_default():
    with tf.name_scope("variables"):
        global_step = tf.Variable(0,dtype=tf.int32,trainable=False,name="global_step")
        total_output = tf.Variable(0.0,dtype=tf.float32,trainable=False,name="total_output")
    with tf.name_scope("transformation"):
        with tf.name_scope("input"):
            a = tf.placeholder(tf.float32,shape=[None],name="input_placeholder_a")
        with tf.name_scope("intermediate_layer"):
            b = tf.reduce_prod(a,name="product_b")
            c = tf.reduce_sum(a,name="sum_c")
        with tf.name_scope("output"):
            output = tf.add(b,c,name="output")
    with tf.name_scope("update"):
        update_total = total_output.assign_add(output)
        increment_step = global_step.assign_add(1)
    with tf.name_scope("summaries"):
        avg = tf.div(update_total,tf.cast(increment_step,tf.float32),name="average")
        tf.summary.scalar('output',output)
        tf.summary.scalar('Sum of outputs over time',update_total)
        tf.summary.scalar('Average of outputs over time',avg)
    with tf.name_scope("global_ops"):
        init = tf.initialize_all_variables()
        merged_summaries = tf.summary.merge_all()

sess = tf.Session(graph=graph)
writer = tf.summary.FileWriter("./my_graph",graph)
sess.run(init)

def run_graph(input_tensor):
    feed_dict = {a:input_tensor}
    step=None
    summary = sess.run([output,increment_step,merged_summaries],feed_dict=feed_dict)
    writer.add_summary(summary,global_step=step)

run_graph([2,8])
run_graph([3,1,3,3])
run_graph([8])
run_graph([1,2,3])
run_graph([11,4])
run_graph([4,1])
run_graph([7,3,1])
run_graph([6,3])
run_graph([8,2])
run_graph([4,5,6])

writer.flush()
writer.close()
sess.close()

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值