質問編集履歴

2

タイトルの改善

2020/12/23 01:32

投稿

taiki6004
taiki6004

スコア0

test CHANGED
@@ -1 +1 @@
1
- pfrl,pytorchでのR2D2の実装
1
+ pfrl,pytorchでのR2D2の実装の際の引数のエラー
test CHANGED
File without changes

1

誤字修正

2020/12/23 01:32

投稿

taiki6004
taiki6004

スコア0

test CHANGED
File without changes
test CHANGED
@@ -170,13 +170,13 @@
170
170
 
171
171
  self.fc2 = nn.Linear(512, 512)
172
172
 
173
- nn.init.kaiming_normal_(self.al2.weight)
173
+ nn.init.kaiming_normal_(self.fc2.weight)
174
174
 
175
175
 
176
176
 
177
177
  self.fc3 = nn.Linear(512, n_actions*n_atoms)
178
178
 
179
- nn.init.kaiming_normal_(self.al3.weight)
179
+ nn.init.kaiming_normal_(self.fc3.weight)
180
180
 
181
181
 
182
182