質問編集履歴

2

追記

2019/12/27 10:02

投稿

python_2019
python_2019

スコア68

test CHANGED
File without changes
test CHANGED
@@ -23,3 +23,11 @@
23
23
 
24
24
 
25
25
  ```
26
+
27
+
28
+
29
+ ちなみに、anacondaプロンプトのpip listで確認すると、
30
+
31
+ tensorflowのバージョンは、1.14.0でした。
32
+
33
+ (estimaterも同じ)

1

修正

2019/12/27 10:02

投稿

python_2019
python_2019

スコア68

test CHANGED
File without changes
test CHANGED
@@ -8,11 +8,7 @@
8
8
 
9
9
  import tensorflow as tf
10
10
 
11
- hello = tf.constant('Hello, TensorFlow!')
12
-
13
- sess = tf.Session()
14
-
15
- print(sess.run(hello))
11
+ print(tensorflow._version_)
16
12
 
17
13
  ```
18
14