TensorFlow案例原始碼

banq發表於2016-06-01
TensorFlow是目前最流行的機器學習演算法開源實現,這是Github上開源的一個TensorFlow教程,這個教程透過案例為初學者快速切入TensorFlow學習提供幫助。

該教程為初學者提供了大量有關TensorFlow清晰和準確的案例,為了可讀性,教程包含notebook 和程式碼雙份解釋。

其第一個Hello world程式碼如下:

import tensorflow as tf

Simple hello world using TensorFlow

# Create a Constant op
# The op is added as a node to the default graph.
#
# The value returned by the constructor represents the output
# of the Constant op.
hello = tf.constant('Hello, TensorFlow!')

# Start tf session
sess = tf.Session()

# Run the op
print sess.run(hello)
<p class="indent">


專案:

GitHub - aymericdamien/TensorFlow-Examples: Tensor

[該貼被banq於2016-06-01 07:38修改過]

相關文章