Skip to content

Latest commit

 

History

History
55 lines (35 loc) · 2.19 KB

tensorflow.md

File metadata and controls

55 lines (35 loc) · 2.19 KB

awesome

awesome-tensorflow--A curated list of dedicated resources http://tensorflow.org

tutorial

tensorflow学习用例

DeepLearningZeroToAll---TensorFlow Basic Tutorial Labs

TensorFlow Tutorial and Examples for beginners

TensorBox-----Object detection in TensorFlow

Tensorflow入门:数据结构和编程思想

TensorFlow学习笔记1:入门

tensorflow-talk-debugging------ Slides and supplementary codes for my talk 'Debugging Tips on TensorFlow' (2016)

learning to learn------Learning to Learn in TensorFlow

Example code to help get started using TensorFlow

详解TensorBoard如何调参

Implementations of CNNs, RNNs, GANs, etc

TensorFlow Wide And Deep 模型详解与应用 TensorFlow Wide-And-Deep

架构

TensorFlow框架剖析与应⽤

十图详解TensorFlow数据读取机制(附代码)

周边

TensorFlowOnSpark

TensorFlowOnSpark git

TensorFlow遇上Spark

node1 = tf.constant(3.0, tf.float32)
node2 = tf.constant(4.0)
node3=tf.add(node1,node2)
#print(sess.run(node3))
tf.summary.scalar("test",node3)
summary_op = tf.summary.merge_all() 
sess.run(node3)
summary_log_dir=vi.get_summary_log_dir()
file_writer = tf.summary.FileWriter(summary_log_dir, sess.graph)
port = vi.open_tensorboard(summary_log_dir)