We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
.The text was updated successfully, but these errors were encountered: