"""VQ-VAE module.""" from .decoder import Decoder from .encoder import Encoder from .vector_quantizer import VectorQuantizer from .vqvae import VQVAE