feat(compressors): add neural compression modules and training pipeline

This commit is contained in:
2026-02-08 16:40:44 +08:00
parent b93381accc
commit 8f417b674c
5 changed files with 127 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
import torch.nn as nn
class IntCompressor(nn.Module):
def __init__(self):
super().__init__()
def forward(self, x):
pass