mirror of
https://github.com/SikongJueluo/Mini-Nav.git
synced 2026-03-12 12:25:32 +08:00
10 lines
147 B
Python
10 lines
147 B
Python
import torch.nn as nn
|
|
|
|
|
|
class IntCompressor(nn.Module):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def forward(self, x):
|
|
pass
|