Files
Mini-Nav/mini-nav/compressors/int_compressor.py

10 lines
147 B
Python

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