Skip to content
Snippets Groups Projects
Model.py 138 B
from torch import nn


class Model(nn.Module):
    def __init__(self):
        super().__init__()
        self.accumulated_gradients = []