nengo / nengo-extras

Extra utilities and add-ons for Nengo
https://www.nengo.ai/nengo-extras
Other
5 stars 8 forks source link

from nengo_extras import SoftLIFRate failed #83

Open assadRasheed opened 5 years ago

assadRasheed commented 5 years ago

trying to import softlifrate from nengo but failed i am using ubuntu 12.04

import nengo nengo.log(level='info') import nengo_extras

ImportErrorTraceback (most recent call last)

in () 6 nengo.log(level='info') 7 import nengo_extras ----> 8 from nengo_extras import SoftLIFRate ImportError: cannot import name SoftLIFRate ImportErrorTraceback (most recent call last) in () 6 nengo.log(level='info') 7 import nengo_extras ----> 8 from nengo_extras import SoftLIFRate ImportError: cannot import name SoftLIFRate
tbekolay commented 5 years ago

Hi @assadRasheed, we did a bit of reorganization, so the place to import SoftLIFRate changed. Try

from nengo_extras.neurons import SoftLIFRate