我是python的新手,遇到以下问题:
每个类'神经元'都有两个列表(map_dendrites,map_axons),我想在其中存储来自其他神经元的ID。
我的问题是,如果'map_synapses'调用'add_axon',它会从调用的Neuron-Object中将列表'map_dendrites'中的给定ID写入,而不是在被调用的Neuron的映射中。令人惊讶的是,当调用'add_dendrites'时它会起作用,尽管代码是相同的(但是先执行)。
有人知道如何解决这个问题吗? 感谢您的支持。
# coding=utf-8
class Neuron(object):
"Klasse Neuron"
c_dendrites = 1 # Inputs
c_axons = 1 # Outputs
c_unmap_dendrites = c_dendrites # Unmapped entspricht am Anfang der Gesamtanzahl der vorhandenen Dednrites
c_unmap_axons = c_axons # same here but axons
map_dendrites = [0 for i in range(10)] # Verkabelung Dendrites
map_axons = [0 for i in range(10)] # Verkabelung Axons
def __init__(self, id, x, y, z): # 3D-Koordinaten
"Konstruktor Neuron"
self.id = id # Jedes Neuron besitzt eine eindeutige ID
print 'Neuron ID %d (%d/%d/%d) erstellt' % (id, x, y, z)
def add_dendrite(self, id): # Aus Sicht des Neurons (add_dendrite fügt an ein self.axon ein dendrite des anfragenden Neurons)
success = False
if(self.c_unmap_axons != 0):
#print 'range %d - %d' % (self.c_axons, self.c_unmap_axons)
print 'Übergebene ID: %d' % id
#print 'Self ID: %d' % self.id
#print len(self.map_axons)
self.map_axons[self.c_axons - self.c_unmap_axons] = id # Auffüllen von 0 bis self.c_axons
print 'testX: %d' % self.map_axons[0]
self.c_unmap_axons -= 1
success = True
return success
def add_axon(self, id): # Aus Sicht des Neurons (add_axon fügt an ein self.dendrite ein Axon des anfragenden Neurons)
success = False
if (self.c_unmap_dendrites != 0):
#print 'range %d - %d' % (self.c_axons, self.c_unmap_axons)
print 'Übergebene ID: %d' % id
#print 'Self ID: %d' % self.id
#print len(self.map_axons)
print 'test5: %d' % self.map_dendrites[0]
self.map_dendrites[self.c_dendrites - self.c_unmap_dendrites] = id # Auffüllen von 0 bis self.c_dendrites
print 'test6: %d' % self.map_dendrites[0]
# Er nimmt hier die falsche Map
self.c_unmap_dendrites -= 1
success = True
return success
def map_synapses(self, anzahl_neuronen, ar_neurons):
import Tools
print 'map_synapses: Mappe Dendrites'
# 1. Dendrites verkabeln aus self-Perspektive
while (0 != self.c_unmap_dendrites):
# print control1.anzahl_neuronen
ran_neuron = Tools.randomInt(0, anzahl_neuronen - 1) # Neuron würfeln
while (self.id == ran_neuron): # Gewürfeltes Neuron darf nicht das neuron selbst sein
ran_neuron = Tools.randomInt(0, anzahl_neuronen - 1) # Neuron würfeln
if(ar_neurons[ran_neuron].add_dendrite(self.id)):
#print 'range %d - %d' % (self.c_dendrites, self.c_unmap_dendrites)
print 'Speichere %d in map_dendrites an Stelle %d' % (ran_neuron, self.c_dendrites - self.c_unmap_dendrites)
self.map_dendrites[self.c_dendrites - self.c_unmap_dendrites] = ran_neuron
print 'test1: %d' % self.map_dendrites[0]
self.c_unmap_dendrites -= 1
print 'Dendrite mapped'
print 'map_synapses: Mappe Dendrites abgeschlossen'
# 2. Axons verkabeln aus self-Perspektive
print 'test2: %d' % self.map_dendrites[0]
print 'map_synapses: Mappe Axons'
while (0 != self.c_unmap_axons):
ran_neuron = Tools.randomInt(0, anzahl_neuronen - 1) # Neuron würfeln
while (self.id == ran_neuron): # Gewürfeltes Neuron darf nicht das neuron selbst sein
ran_neuron = Tools.randomInt(0, anzahl_neuronen - 1) # Neuron würfeln
print 'test3: %d' % self.map_dendrites[0]
# 1. Dendrites verkabeln aus self-Perspektive
print 'ran %d' % ran_neuron
if (ar_neurons[ran_neuron].add_axon(self.id)): ## add_axon fehlerhaft !!!!!!!!!!!!!!!!!
print 'test4: %d' % self.map_dendrites[0]
print 'Speichere %d in map_axons an Stelle %d' % (ran_neuron, self.c_axons - self.c_unmap_axons)
self.map_axons[self.c_axons - self.c_unmap_axons] = ran_neuron
self.c_unmap_axons -= 1
print 'Axon mapped'
print 'map_synapses: Mappe Axons abgeschlossen'
print 'map_synpases: ID %d abgeschlossen' % self.id
self.getStatus()
return ar_neurons
def getStatus(self):
print 'getStatus: Neuron ID %d' % self.id
print 'getStatus: Dendrites_Map:'
print ''.join(map(str, self.map_dendrites))
print 'getStatus: Axons_Map:'
print ''.join(map(str, self.map_axons))
答案 0 :(得分:2)
它认为问题可能是变量的范围。你在课程开头就是这样分配它们
class Neuron(object):
c_dendrites = 1 # Inputs
c_axons = 1 # Outputs
c_unmap_dendrites = c_dendrites # Unmapped entspricht am Anfang der Gesamtanzahl der vorhandenen Dednrites
c_unmap_axons = c_axons # same here but axons
map_dendrites = [0 for i in range(10)] # Verkabelung Dendrites
map_axons = [0 for i in range(10)] # Verkabelung Axons
但这使得它们只适用于类本身,它们并不特定于任何实例。静态?
你应该使用你的init函数并使用self来定义变量,这意味着它将被绑定到实例,然后当你需要使用它们时也使用self。
def __init__(self, id, x, y, z): # 3D-Koordinaten
"Konstruktor Neuron"
self.c_dendrites = 1 # Inputs
self.c_axons = 1 # Outputs
self.c_unmap_dendrites = c_dendrites # Unmapped entspricht am Anfang der Gesamtanzahl der vorhandenen Dednrites
self.c_unmap_axons = c_axons # same here but axons
self.map_dendrites = [0 for i in range(10)] # Verkabelung Dendrites
self.map_axons = [0 for i in range(10)] # Verkabelung Axons
self.id = id # Jedes Neuron besitzt eine eindeutige ID
print 'Neuron ID %d (%d/%d/%d) erstellt' % (id, x, y, z)