Skip to content

Preparation for 0.6 #1668

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

Merged
merged 2 commits into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions avalanche/training/supervised/strategy_wrappers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1696,5 +1696,6 @@ def __init__(
"MAS",
"BiC",
"MIR",
"PackNet",
"FromScratchTraining",
]
20 changes: 20 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,26 @@
"MetaLearningStrategyProtocol",
"MultiParamTransformCallable",
"TqdmUpTo",
"TaskAwareSupervisedClassificationDataset",
"HybridFfcvLoader",
"FeatureExtractorModel",
"FixedSizeExperienceSplitter",
"FeatureDataset",
"CyclicSampler",
"LazyTrainValSplitter",
"AvalancheImageNet",
"SingleDatasetDataLoader",
"TaskAwareClassificationDataset",
"TaskAware",
"Adaptable",
"FFCVInfo",
"PackNetPlugin",
"ClassesTimeline",
"Buffer",
"BoundaryAware",
"PackNetModule",
"Agent",
"PositionalArgumentsDeprecatedWarning",
]
undocumented_classes_to_ignore = set(undocumented_classes_to_ignore)

Expand Down
8 changes: 8 additions & 0 deletions docs/models.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ networks, ...).
MultiTaskModule
IncrementalClassifier
MultiHeadClassifier
CosineIncrementalClassifier

Progressive Neural Networks
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Expand Down Expand Up @@ -68,6 +69,13 @@ Models
SlimResNet18
MTSlimResNet18
ExpertGate
packnet.PackNetModel
packnet.packnet_simple_mlp
FeCAMClassifier
cosine_layer.CosineLinear
cosine_layer.SplitCosineLinear
packnet.WeightAndBiasPackNetModule



Model Wrappers and Utilities
Expand Down
14 changes: 14 additions & 0 deletions docs/training.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,12 @@ Ready-to-use continual learning strategies.
ER_ACE
LearningToPrompt
SCR
PackNet
FromScratchTraining
ExpertGateStrategy
DER
ER_AML
FeatureReplay
supervised.lamaml.LaMAML
supervised.lamaml_v2.LaMAML

Expand Down Expand Up @@ -132,6 +135,8 @@ Loss Functions
LearningWithoutForgetting
ACECriterion
SCRLoss
MaskedCrossEntropy
AMLCriterion


Training Plugins
Expand Down Expand Up @@ -184,3 +189,12 @@ Strategy implemented as plugins in `avalanche.training.plugins`.
MIRPlugin
RARPlugin
FromScratchTrainingPlugin
FeatureDistillationPlugin
FeCAMOracle
MemoryFeCAMUpdate
CurrentDataFeCAMUpdate
MemoryNCMUpdate
NCMOracle
CurrentDataNCMUpdate


Loading