質問編集履歴
1
説明の不足
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,12 @@
|
|
1
1
|
```python
|
2
|
+
|
3
|
+
from __future__ import absolute_import, division, print_function, unicode_literals
|
4
|
+
|
5
|
+
import tensorflow as tf
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
mnist = tf.keras.datasets.mnist
|
2
10
|
|
3
11
|
(x_train, y_train), (x_test, y_test) = mnist.load_data()
|
4
12
|
|