回答編集履歴

3

説明変更

2020/04/11 18:33

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -1,6 +1,6 @@
1
1
  `activation` は辞書データでしょうかね。
2
2
 
3
- `activation[data]` でリストや文字列などが取得できて、それの `[n]` 番目要素にアクセスしています。
3
+ `activation[data]` でリストが取得できて、それの `[n]` 番目要素にアクセスしていると思われます。
4
4
 
5
5
 
6
6
 

2

説明補足

2020/04/11 18:32

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -1,4 +1,6 @@
1
+ `activation` は辞書データでしょうかね。
2
+
1
- `activation[data]` でリストや文字列などが取得できて、それの `[n]` 番目要素を取り出しています。
3
+ `activation[data]` でリストや文字列などが取得できて、それの `[n]` 番目要素にアクセスしています。
2
4
 
3
5
 
4
6
 

1

スペルミス修正

2020/04/11 18:31

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -16,7 +16,7 @@
16
16
 
17
17
  ```python
18
18
 
19
- somethong = activation[data]
19
+ something = activation[data]
20
20
 
21
21
  something[n] = 0
22
22