← back to Exo

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

11 lines

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

import mlx.core as mx
from mlx import nn

class QwenMLP(nn.Module):
    def __init__(self, hidden_size: int, intermediate_size: int) -> None: ...
    def __call__(self, hidden_states: mx.array) -> mx.array: ...