.typings/mflux/models/qwen/model/qwen_vae/qwen_image_up_block_3d.pyi
"""
This type stub file was generated by pyright.
"""
import mlx.core as mx
from mlx import nn
class QwenImageUpBlock3D(nn.Module):
def __init__(
self,
in_channels: int,
out_channels: int,
num_res_blocks: int = ...,
upsample_mode: str = ...,
) -> None: ...
def __call__(self, x: mx.array) -> mx.array: ...