[[File:tensorboard02.png| 600px]]
==Sample==
===テンソルの作成===
----
*リストまたは[[NumPy]]配列からテンソルを作成
<pre>
np.set_printoptions(precision=3)
a = np.array([1, 2, 3], dtype=np.int32)
b = [4, 5, 6]
t_a = tf.convert_to_tensor(a)
t_b = tf.convert_to_tensor(b)
print(t_a)
print(t_b)
</pre>
*結果
<pre>
tf.Tensor([1 2 3], shape=(3,), dtype=int32)
tf.Tensor([4 5 6], shape=(3,), dtype=int32)
</pre>
==Tips==