← back to Exo

.typings/mflux/models/qwen/model/qwen_text_encoder/qwen_vision_patch_embed.pyi

17 lines

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

import mlx.core as mx
from mlx import nn

class VisionPatchEmbed(nn.Module):
    def __init__(
        self,
        patch_size: int = ...,
        temporal_patch_size: int = ...,
        in_channels: int = ...,
        embed_dim: int = ...,
    ) -> None: ...
    def __call__(self, hidden_states: mx.array) -> mx.array: ...