-
-
Notifications
You must be signed in to change notification settings - Fork 291
New issue
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
PNN adapter arguement missing in the _init_() method #1625
Labels
bug
Something isn't working
Comments
The below is the src code for class LinearAdapter in PNN.py module:
I get an error when I select my adapter="linear" as follow:
This is because the init method does not initialize the variable self.num_prev_modules, could you please check this. Thanks! |
sudaksh14
changed the title
PNN adapter arguement missing in the _init_() methid
PNN adapter arguement missing in the _init_() method
Mar 18, 2024
Chillthrower
added a commit
to Chillthrower/avalanche
that referenced
this issue
Apr 15, 2024
The issue is due to the num_prev_modules attribute not being initialized in the LinearAdapter class within the PNN.py module.
AntonioCarta
added a commit
that referenced
this issue
May 9, 2024
PNN adapter arguement missing in the _init_() method #1625
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is some issue with the class LinearAdapter for PNN models in PNN.py
The variable self.num_prev_modules is not initialized anywhere, see below code snippet.
The text was updated successfully, but these errors were encountered: