質問編集履歴

1

追加の質問お願いします。

2021/04/21 03:25

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -37,3 +37,45 @@
37
37
  AttributeError: 'NoneType' object has no attribute 'T'
38
38
 
39
39
  というエラーが出ます、つまりxは行列とは限らないから転置できないよって事ですか・・・?(違いますかね)
40
+
41
+
42
+
43
+ これは解決したので、良ければ関連する質問にも・・・。
44
+
45
+
46
+
47
+ Drive already mounted at /content/drive; to attempt to forcibly remount, call drive.mount("/content/drive", force_remount=True).
48
+
49
+ ([5, 6, 5, 0, 0, 10], [4, 7, 5, 0, 0, 10], [5, 6, 5, 0, 0, 10], [4, 7, 5, 0, 0, 10], [5, 6, 5, 0, 0, 10], [4, 7, 5, 0, 0, 10])
50
+
51
+ ([5, 6, 5, 0, 0, 10], [4, 7, 5, 0, 0, 10], [5, 6, 5, 0, 0, 10], [4, 7, 5, 0, 0, 10], [5, 6, 5, 0, 0, 10], [4, 7, 5, 0, 0, 10])
52
+
53
+ #epoch 0
54
+
55
+ train: 0 / 10
56
+
57
+ ---------------------------------------------------------------------------
58
+
59
+ AttributeError Traceback (most recent call last)
60
+
61
+ <ipython-input-5-1dc4b35ef7ca> in <module>()
62
+
63
+ 151 if i % 1000 == 0:
64
+
65
+ 152 print(' train: {0:>5d} / {1:>5d}'.format(i, data_size))
66
+
67
+ --> 153 val = training_data_list[i].split(',')
68
+
69
+ 154 idata = (np.asfarray(val[1:]) / 255.0 * 0.99) + 0.01
70
+
71
+ 155 tdata = np.zeros(onodes) + 0.01
72
+
73
+
74
+
75
+ AttributeError: 'numpy.ndarray' object has no attribute 'split'
76
+
77
+
78
+
79
+ というエラーが出て、つまりnumpy行列は,でsplitできないよという事かと思うのですが、
80
+
81
+ ,でsplitして数字を取得していくにはどうすればいいんでしょうか。