-
-
Notifications
You must be signed in to change notification settings - Fork 309
Added Deep SLDA Model implementation #500
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
Conversation
…ple script works as expected. Need to add avalanche logging capabilities to scripts
Pull Request Test Coverage Report for Build 723237734
💛 - Coveralls |
|
Hi @tyler-hayes ! Thanks for the work. Yes, right now the base strategy it is kind of tied to the whole backpropagation way of training models, so I can see why you cannot implement your strategy following that template. That also prevents you to use the default logging features. We can surely discuss a custom solution (standalone metrics or management of the evaluation plugin within your strategy), but maybe this points to a larger problem, which could be solved with a different base strategy/extension of the current one? @AntonioCarta |
|
Maybe also overriding the |
|
Hi @tyler-hayes , I'm currently working on refactoring the strategy. |
|
Hi @AndreaCossu, thanks for your help! I used the following parameter arguments to test the model (CORe50-NC): This resulted in the following set of accuracies on the full test set after each batch: Feel free to let me know if you need any additional help! :D |
|
Great, thanks! That should be enough to reproduce results 😄 |
|
This will be added in #583 |
|
Closing this since we are going to merge the other one. |
I added
deep_sldatotraining/strategiesand an example script to run it on CORe50 inexamples/deep_sldaThe model works as expected, however I am a bit unsure about how to integrate the avalanche metrics and logging features into these scripts. Deep SLDA does not perform gradient descent, so it trains a bit differently than the default
BaseStrategyWould someone be able to set some time up to discuss this implementation with me so I can get Deep SLDA integrated with the Avalanche loggers and metrics? Thank you in advance!
@AntonioCarta