File tree 4 files changed +43
-0
lines changed
avalanche/training/supervised
4 files changed +43
-0
lines changed Original file line number Diff line number Diff line change @@ -1696,5 +1696,6 @@ def __init__(
1696
1696
"MAS" ,
1697
1697
"BiC" ,
1698
1698
"MIR" ,
1699
+ "PackNet" ,
1699
1700
"FromScratchTraining" ,
1700
1701
]
Original file line number Diff line number Diff line change 401
401
"MetaLearningStrategyProtocol" ,
402
402
"MultiParamTransformCallable" ,
403
403
"TqdmUpTo" ,
404
+ "TaskAwareSupervisedClassificationDataset" ,
405
+ "HybridFfcvLoader" ,
406
+ "FeatureExtractorModel" ,
407
+ "FixedSizeExperienceSplitter" ,
408
+ "FeatureDataset" ,
409
+ "CyclicSampler" ,
410
+ "LazyTrainValSplitter" ,
411
+ "AvalancheImageNet" ,
412
+ "SingleDatasetDataLoader" ,
413
+ "TaskAwareClassificationDataset" ,
414
+ "TaskAware" ,
415
+ "Adaptable" ,
416
+ "FFCVInfo" ,
417
+ "PackNetPlugin" ,
418
+ "ClassesTimeline" ,
419
+ "Buffer" ,
420
+ "BoundaryAware" ,
421
+ "PackNetModule" ,
422
+ "Agent" ,
423
+ "PositionalArgumentsDeprecatedWarning" ,
404
424
]
405
425
undocumented_classes_to_ignore = set (undocumented_classes_to_ignore )
406
426
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ networks, ...).
27
27
MultiTaskModule
28
28
IncrementalClassifier
29
29
MultiHeadClassifier
30
+ CosineIncrementalClassifier
30
31
31
32
Progressive Neural Networks
32
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -68,6 +69,13 @@ Models
68
69
SlimResNet18
69
70
MTSlimResNet18
70
71
ExpertGate
72
+ packnet.PackNetModel
73
+ packnet.packnet_simple_mlp
74
+ FeCAMClassifier
75
+ cosine_layer.CosineLinear
76
+ cosine_layer.SplitCosineLinear
77
+ packnet.WeightAndBiasPackNetModule
78
+
71
79
72
80
73
81
Model Wrappers and Utilities
Original file line number Diff line number Diff line change @@ -83,9 +83,12 @@ Ready-to-use continual learning strategies.
83
83
ER_ACE
84
84
LearningToPrompt
85
85
SCR
86
+ PackNet
86
87
FromScratchTraining
87
88
ExpertGateStrategy
88
89
DER
90
+ ER_AML
91
+ FeatureReplay
89
92
supervised.lamaml.LaMAML
90
93
supervised.lamaml_v2.LaMAML
91
94
@@ -132,6 +135,8 @@ Loss Functions
132
135
LearningWithoutForgetting
133
136
ACECriterion
134
137
SCRLoss
138
+ MaskedCrossEntropy
139
+ AMLCriterion
135
140
136
141
137
142
Training Plugins
@@ -184,3 +189,12 @@ Strategy implemented as plugins in `avalanche.training.plugins`.
184
189
MIRPlugin
185
190
RARPlugin
186
191
FromScratchTrainingPlugin
192
+ FeatureDistillationPlugin
193
+ FeCAMOracle
194
+ MemoryFeCAMUpdate
195
+ CurrentDataFeCAMUpdate
196
+ MemoryNCMUpdate
197
+ NCMOracle
198
+ CurrentDataNCMUpdate
199
+
200
+
You can’t perform that action at this time.
0 commit comments