vllm.model_executor.models.mimo
Inference-only MiMo model compatible with HuggingFace weights.
MiMoForCausalLM
¶
Bases: Qwen2ForCausalLM
, Module
Source code in vllm/model_executor/models/mimo.py
make_empty_intermediate_tensors
instance-attribute
¶
model
instance-attribute
¶
model = MiMoModel(
vllm_config=vllm_config,
prefix=maybe_prefix(prefix, "model"),
)
__init__
¶
__init__(*, vllm_config: VllmConfig, prefix: str = '')
Source code in vllm/model_executor/models/mimo.py
compute_logits
¶
compute_logits(
hidden_states: Tensor,
sampling_metadata: SamplingMetadata,
) -> Optional[Tensor]
Source code in vllm/model_executor/models/mimo.py
MiMoModel
¶
Bases: Qwen2Model
Source code in vllm/model_executor/models/mimo.py
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 |
|
forward
¶
forward(
input_ids: Tensor,
positions: Tensor,
intermediate_tensors: Optional[
IntermediateTensors
] = None,
inputs_embeds: Optional[Tensor] = None,
) -> Union[Tensor, IntermediateTensors]