Pythonを勉強中にこのようなコードが出てきました。activationの後ろに[][]があるのはどういう意味なのでしょうか?
Python
1for data in range(nData):#loop over the input vectors 2 for n in range(N):#loop over the neurons 3 #Compute sum of weights times inputs for each neuron 4 #Set the activation to () to start 5 activation[data][n] = 0 6 #Loop over the input nodes (+1 for the bias node) 7 for m in range(M+1): 8 activation[data][n] = 0 9 # Now decide whether the neuron fires or not 10 if activation[data][n] > 0: 11 activation[data][n] = 1 12 else 13 activation[data][n] = 0 14 15
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。