質問編集履歴
4
新たなエラーの追記
title
CHANGED
File without changes
|
body
CHANGED
File without changes
|
3
エラーの追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -17,7 +17,16 @@
|
|
17
17
|
File "/Users/deel/deel/network/alexnet.py", line 93
|
18
18
|
return y.data.shape
|
19
19
|
^
|
20
|
+
追記2
|
20
|
-
|
21
|
+
./getPretrainedModels.sh: line 1: wget: command not found
|
22
|
+
./getPretrainedModels.sh: line 2: wget: command not found
|
23
|
+
./getPretrainedModels.sh: line 3: wget: command not found
|
24
|
+
./getPretrainedModels.sh: line 4: wget: command not found
|
25
|
+
./getPretrainedModels.sh: line 5: wget: command not found
|
26
|
+
./getPretrainedModels.sh: line 6: wget: command not found
|
27
|
+
tar: Error opening archive: Failed to open 'googlenet_places205.tar.gz'
|
28
|
+
mv: rename googlenet_places205/googlelet_places205_train_iter_2400000.caffemodel to ./googlelet_places205_train_iter_2400000.caffemodel: No such file or directory
|
29
|
+
mv: rename googlenet_places205/categoryIndex_places205.csv to ./categoryIndex_places205.csv: No such file or directory### 該当のソースコード
|
21
30
|
|
22
31
|
```python
|
23
32
|
ソースコード
|
2
コードの訂正
title
CHANGED
File without changes
|
body
CHANGED
@@ -22,13 +22,14 @@
|
|
22
22
|
```python
|
23
23
|
ソースコード
|
24
24
|
```
|
25
|
+
訂正後です。
|
25
26
|
from deel import *
|
26
27
|
from deel.network import *
|
27
28
|
from deel.commands import *
|
28
29
|
|
29
30
|
deel = Deel()
|
30
31
|
|
31
|
-
CNN =
|
32
|
+
CNN = AlexNet()
|
32
33
|
|
33
34
|
CNN.Input("deel.png")
|
34
35
|
CNN.classify()
|
1
エラーの変更
title
CHANGED
File without changes
|
body
CHANGED
@@ -9,6 +9,14 @@
|
|
9
9
|
File "tiny.py", line 7, in <module>
|
10
10
|
CNN = Alexnet()
|
11
11
|
NameError: name 'Alexnet' is not defined
|
12
|
+
追記・・
|
13
|
+
File "tiny.py", line 4, in <module>
|
14
|
+
from deel.network import *
|
15
|
+
File "/Users/deel/deel/network/__init__.py", line 337, in <module>
|
16
|
+
from deel.network.alexnet import AlexNet
|
17
|
+
File "/Users/deel/deel/network/alexnet.py", line 93
|
18
|
+
return y.data.shape
|
19
|
+
^
|
12
20
|
### 該当のソースコード
|
13
21
|
|
14
22
|
```python
|