質問編集履歴
1
説明の不足
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,4 +1,8 @@
|
|
1
1
|
```python
|
2
|
+
from __future__ import absolute_import, division, print_function, unicode_literals
|
3
|
+
import tensorflow as tf
|
4
|
+
|
5
|
+
mnist = tf.keras.datasets.mnist
|
2
6
|
(x_train, y_train), (x_test, y_test) = mnist.load_data()
|
3
7
|
```
|
4
8
|
上記の「x_train」「y_train」を一つのファイルまたは二つのファイルでもよいのですが
|