HoneyTian's picture
update
9192cea
raw
history blame
199 Bytes
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import torch.nn as nn
class ExponentialMovingAverage(nn.Module):
def __init__(self):
super().__init__()
if __name__ == "__main__":
pass