Skip to content

Commit

Permalink
add ResidualSimVQ to the special Sequential module
Browse files Browse the repository at this point in the history
  • Loading branch information
lucidrains committed Nov 12, 2024
1 parent 81d0f3b commit f883a07
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "vector-quantize-pytorch"
version = "1.20.5"
version = "1.20.7"
description = "Vector Quantization - Pytorch"
authors = [
{ name = "Phil Wang", email = "[email protected]" }
Expand Down
2 changes: 2 additions & 0 deletions vector_quantize_pytorch/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
from vector_quantize_pytorch.residual_fsq import ResidualFSQ, GroupedResidualFSQ
from vector_quantize_pytorch.latent_quantization import LatentQuantize
from vector_quantize_pytorch.sim_vq import SimVQ
from vector_quantize_pytorch.residual_sim_vq import ResidualSimVQ

QUANTIZE_KLASSES = (
VectorQuantize,
Expand All @@ -22,6 +23,7 @@
FSQ,
LFQ,
SimVQ,
ResidualSimVQ,
ResidualLFQ,
GroupedResidualLFQ,
ResidualFSQ,
Expand Down

0 comments on commit f883a07

Please sign in to comment.