Skip to content
Discussion options

You must be logged in to vote

Naive strategy is the most basic type of a continual learner. For every arriving experience, it iterates through the samples of the experience's dataset and updates the model with an SGD-based optimizer without any additional regularization or augmentation methods. It is also called sequential fine-tuning.

If you are looking for more technical details, an SGD-based template (the super-class of the Naive strategy) in Avalanche provides a sequence of callbacks that are triggered one after another when you call strategy.train([exp]). Here is an example at the high level:

"create dataloader"-> "get batch i" -> "forward" -> "calculate loss" -> "backward" -> etc.

Here is a a plot from https://a…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by AntonioCarta
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants