File size: 199 Bytes
9192cea
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import torch.nn as nn


class ExponentialMovingAverage(nn.Module):
    def __init__(self):
        super().__init__()


if __name__ == "__main__":
    pass