← back to Exo

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

18 lines

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

import mlx.core as mx
from mlx import nn

class QwenImageCausalConv3D(nn.Module):
    def __init__(
        self,
        in_channels: int,
        out_channels: int,
        kernel_size: int = ...,
        stride: int = ...,
        padding: int = ...,
    ) -> None: ...
    def __call__(self, x: mx.array) -> mx.array: ...