mirror of
https://github.com/SikongJueluo/Mini-Nav.git
synced 2026-03-12 20:35:31 +08:00
feat(compressors): add neural compression modules and training pipeline
This commit is contained in:
9
mini-nav/compressors/int_compressor.py
Normal file
9
mini-nav/compressors/int_compressor.py
Normal file
@@ -0,0 +1,9 @@
|
||||
import torch.nn as nn
|
||||
|
||||
|
||||
class IntCompressor(nn.Module):
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
|
||||
def forward(self, x):
|
||||
pass
|
||||
Reference in New Issue
Block a user