回答編集履歴
1
一部の文章を変更
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
##
|
1
|
+
## 最初
|
2
2
|
|
3
3
|
自分も以前同じ目にあいました。
|
4
4
|
|
@@ -7,6 +7,32 @@
|
|
7
7
|
自分の場合(ファイルの場所)は
|
8
8
|
|
9
9
|
「(個人のハードディスクの名前が入っている為非表示)(この後ろにもファイル名があります)../Python/Python1年生/Chapter5/機械学習に挑戦しよう/predictDigits.py」までフルパスです。
|
10
|
+
|
11
|
+
もしもこの以下のエラーメッセージが表示された場合はこのように行ってください。
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
## エラーメッセージ
|
16
|
+
|
17
|
+
```Error
|
18
|
+
|
19
|
+
Traceback (most recent call last):
|
20
|
+
|
21
|
+
File "(省略)/Python1年生/Chapter 5/機械学習に挑戦しよう/predictDigits.py", line 30, in <module>
|
22
|
+
|
23
|
+
data = imageToData('2.png')
|
24
|
+
|
25
|
+
File "(省略)/Python1年生/Chapter 5/機械学習に挑戦しよう/predictDigits.py", line 9, in imageToData
|
26
|
+
|
27
|
+
numImage = numpy.asarray(grayImage, dtype = float)
|
28
|
+
|
29
|
+
File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/PIL/Image.py", line 2912, in open
|
30
|
+
|
31
|
+
fp = builtins.open(filename, "rb")
|
32
|
+
|
33
|
+
FileNotFoundError: [Errno 2] No such file or directory: '2.png'
|
34
|
+
|
35
|
+
```
|
10
36
|
|
11
37
|
|
12
38
|
|