Open CloudyDory opened 1 year ago
In line 57-60 of bmtk/simulator/filternet/lgnmodel/cellmodel.py, the dominant_unit and nondominant_unit are created as:
bmtk/simulator/filternet/lgnmodel/cellmodel.py
dominant_unit
nondominant_unit
self.dominant_unit = LNUnit(self.dominant_filter, ScalarTransferFunction('s'), amplitude=self.dominant_filter.amplitude) self.nondominant_unit = LNUnit(self.nondominant_filter, ScalarTransferFunction('s'), amplitude=self.dominant_filter.amplitude)
This looks strange to me, as the nondominant_unit should save the amplitude as self.nondominant_filter.amplitude.
self.nondominant_filter.amplitude
In line 57-60 of
bmtk/simulator/filternet/lgnmodel/cellmodel.py
, thedominant_unit
andnondominant_unit
are created as:This looks strange to me, as the
nondominant_unit
should save the amplitude asself.nondominant_filter.amplitude
.