← back to Exo

.typings/mflux/models/qwen/model/qwen_vae/qwen_vae.pyi

16 lines

"""
This type stub file was generated by pyright.
"""

import mlx.core as mx
from mlx import nn

class QwenVAE(nn.Module):
    LATENTS_MEAN = ...
    LATENTS_STD = ...
    spatial_scale = ...
    latent_channels = ...
    def __init__(self) -> None: ...
    def decode(self, latents: mx.array) -> mx.array: ...
    def encode(self, latents: mx.array) -> mx.array: ...