質問編集履歴

3

2020/03/23 02:48

投稿

Flan.
Flan.

スコア123

test CHANGED
File without changes
test CHANGED
@@ -48,21 +48,7 @@
48
48
 
49
49
 
50
50
 
51
-
52
-
53
-
54
-
55
- ```
56
-
57
-
58
-
59
-
60
-
61
-
62
-
63
-
64
-
65
- 出ているエラーメッセージ
51
+ 出ているエラーメッセージ
66
52
 
67
53
  File "<ipython-input-22-a088993d815b>", line 31
68
54
 
@@ -71,3 +57,7 @@
71
57
  ^
72
58
 
73
59
  SyntaxError: invalid character in identifier
60
+
61
+
62
+
63
+ ```

2

2020/03/23 02:48

投稿

Flan.
Flan.

スコア123

test CHANGED
File without changes
test CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  def __init__(self,N,inp):# インスタンス変数の初期化
6
6
 
7
- self.w = np.dot(N*inp) # 重みは固定
7
+ self.w = np.random.rand(N*inp) # 重みは固定
8
8
 
9
9
  self.b = np.zeros(N)
10
10
 
@@ -20,7 +20,7 @@
20
20
 
21
21
  self.x = x #入力を引数で渡す。
22
22
 
23
- out = np.dot(x, self.W) + self.b
23
+ out = np.dot(x, self.W) + self.b # バイアス+重みx入力の行列を渡す
24
24
 
25
25
 
26
26
 
@@ -44,6 +44,20 @@
44
44
 
45
45
  return dx
46
46
 
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+ ```
56
+
57
+
58
+
59
+
60
+
47
61
 
48
62
 
49
63
 

1

codeに入れろとの指摘があったので入れました

2020/03/23 02:47

投稿

Flan.
Flan.

スコア123

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,6 @@
1
+ ```ここに言語を入力
2
+
1
- class Affine:
3
+ コード class Affine:
2
4
 
3
5
  def __init__(self,N,inp):# インスタンス変数の初期化
4
6
 
@@ -18,7 +20,7 @@
18
20
 
19
21
  self.x = x #入力を引数で渡す。
20
22
 
21
- out = np.dot(x, self.W) + self.b # バイアス+重みx入力の行列を渡す
23
+ out = np.dot(x, self.W) + self.b
22
24
 
23
25
 
24
26
 
@@ -44,6 +46,8 @@
44
46
 
45
47
 
46
48
 
49
+
50
+
47
51
  出ているエラーメッセージ
48
52
 
49
53
  File "<ipython-input-22-a088993d815b>", line 31