本文整理汇总了Python中neuron.Neuron.setWeights方法的典型用法代码示例。如果您正苦于以下问题:Python Neuron.setWeights方法的具体用法?Python Neuron.setWeights怎么用?Python Neuron.setWeights使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类neuron.Neuron
的用法示例。
在下文中一共展示了Neuron.setWeights方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Neuron
# 需要导入模块: from neuron import Neuron [as 别名]
# 或者: from neuron.Neuron import setWeights [as 别名]
from neuron import Neuron
myNeuron = Neuron(3,'step')
myNeuron.setWeights([0,0,0]) # the first weight is of Bias
myNeuron.setMaxInteractions(100)
# learning the AND function
bias = 1
trainingMatrix = [[bias,0,0],[bias,1,0],[bias,1,1]]
desiredArray = [0,0,1]
converged = myNeuron.train(trainingMatrix,desiredArray)
if converged:
print 'Training OK (%d interactions)' %(myNeuron.getTrainingInteractions())
else:
print 'Training FAILED (+%d interactions)' %(myNeuron.getMaxInteractions())
for i in myNeuron.rangeWeights():
print 'W'+str(i)+': '+str(myNeuron.getWeight(i))
myNeuron.setInputs([bias,0,1])
print myNeuron.getTrainingInteractions()
print 'Output: '+str(myNeuron.think()) #output desired is 0