We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d3323d commit d0ad145Copy full SHA for d0ad145
src/lightning/pytorch/callbacks/__init__.py
@@ -32,7 +32,7 @@
32
from lightning.pytorch.callbacks.stochastic_weight_avg import StochasticWeightAveraging
33
from lightning.pytorch.callbacks.throughput_monitor import ThroughputMonitor
34
from lightning.pytorch.callbacks.timer import Timer
35
-from lightning.pytorch.callbacks.weight_averaging import WeightAveraging
+from lightning.pytorch.callbacks.weight_averaging import EMAWeightAveraging, WeightAveraging
36
37
__all__ = [
38
"BackboneFinetuning",
@@ -59,5 +59,6 @@
59
"ThroughputMonitor",
60
"Timer",
61
"TQDMProgressBar",
62
+ "EMAWeightAveraging",
63
"WeightAveraging",
64
]
0 commit comments