1. tensorflow 官方文档中文版(下载)
2. tensorflow mac安装参考
http://www.tuicool.com/articles/Fni2Yr
3. 源码例子目录
lib/python2.7/site-packages/tensorflow/models/image/minst
4. 简单语法 hello
import tensorflow as tf // import tensorflow hello = tf.constant(‘Hello, TensorFlow!‘) // define constant sess = tf.Session() // open session print sess.run(hello) // run session
5.
时间: 2024-12-08 09:06:04