質問編集履歴
2
変更
title
CHANGED
File without changes
|
body
CHANGED
@@ -15,4 +15,17 @@
|
|
15
15
|
print(x_train.shape)
|
16
16
|
print(t_train.shape)
|
17
17
|
print(x_test.shape)
|
18
|
-
print(t_test.ahape)
|
18
|
+
print(t_test.ahape)
|
19
|
+
|
20
|
+
追記
|
21
|
+
エラーメッセージは以下になります。よろしくお願いします。
|
22
|
+
|
23
|
+
ImportError Traceback (most recent call last)
|
24
|
+
<ipython-input-1-59fbbab7c2f3> in <module>()
|
25
|
+
1 import sys, os
|
26
|
+
2 sys.path.append(os.pardir)
|
27
|
+
----> 3 from dataset.mnist import load_mnist
|
28
|
+
4 (x_train, t_train), (x_test, t_test) = load_minist(flatten=True, normalize=False)
|
29
|
+
5
|
30
|
+
|
31
|
+
ImportError: No module named 'dataset'
|
1
誤字
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
ディープラーニングで使用される手書き数字の画像セット「MNIST」の読み方を教えてください。
|
2
2
|
|
3
|
+
google検索で探した MNISTに関するサイトのコードをanacondaに入力してもエラーメッセージが表示されるだけでした。
|
4
|
+
MNISTのダウンロードは指定のコードをanacondaに入力するだけで良いのでしょうか?
|
3
5
|
|
4
6
|
|
5
7
|
*一応、書籍に書いてある以下のコードをanacondaで実装したのですが、エラーが出て読み込めませんでした。
|