Spaces:
Running
Running
#!/usr/bin/python3 | |
# -*- coding: utf-8 -*- | |
import torch.nn as nn | |
class ExponentialMovingAverage(nn.Module): | |
def __init__(self): | |
super().__init__() | |
if __name__ == "__main__": | |
pass | |