import torch.nn as nn class IntCompressor(nn.Module): def __init__(self): super().__init__() def forward(self, x): pass