Views
No views yet
microsoft/Phi-4-reasoning.| Property | Value |
|---|---|
| Base model | microsoft/Phi-4-reasoning |
| Quantization | INT4 weight-only |
| Approx. on-disk size | ~9.1 GB |
| License | MIT License |
| Languages | English |
1vllm serve drawais/Phi-4-reasoning-AWQ-INT4 \
2 --max-model-len 32768 \
3 --gpu-memory-utilization 0.941from vllm import LLM, SamplingParams
2llm = LLM(model="drawais/Phi-4-reasoning-AWQ-INT4", max_model_len=32768)
3print(llm.generate(["Hello!"], SamplingParams(max_tokens=128))[0].outputs[0].text)microsoft/Phi-4-reasoning,
released by its original authors under the MIT License.LICENSE, and required attribution is in NOTICE.