【Python】【TensorFlow】 TensorFlow ~ 基本編 ~

■ はじめに

https://dk521123.hatenablog.com/entry/2018/02/16/103500
https://dk521123.hatenablog.com/entry/2018/02/17/102927

の続き。

今回は、 TensorFlow を簡単な部分を扱う。

■ 使用上の注意

TensorFlow で、Version1.X系 と 2.X系 で少し異なる。
今回は、 2.X系 を扱う。

バージョン確認方法

import tensorflow as tf

print(tf.__version__) # 2.1.0

変更について
http://data-analysis-stats.jp/2019/06/09/tensorflow-2-0-%E4%B8%BB%E3%81%AA%E5%A4%89%E6%9B%B4%E7%82%B9/

より抜粋
~~~
Sessionとplaceholderがなくなりました
~~~

■ サンプル

例1:足し算

import tensorflow as tf

a1 = tf.constant(1)
a2 = tf.constant(2)

result = tf.add(a1, a2)

print("result = {}".format(result)) # result = 3

関連記事

TensorFlow ~ 入門編 ~
https://dk521123.hatenablog.com/entry/2018/02/16/103500
TensorFlow ~ 環境構築 / Windows 編 ~
https://dk521123.hatenablog.com/entry/2018/02/17/102927
TensorFlow ~ 自作データでの画像分類 / 準備編 ~
https://dk521123.hatenablog.com/entry/2018/02/18/151012