Text Generation
Transformers
PyTorch
multilingual
phi3
torchao
phi
phi4
nlp
code
math
chat
conversational
custom_code
text-generation-inference
Instructions to use pytorch/Phi-4-mini-instruct-INT4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use pytorch/Phi-4-mini-instruct-INT4 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="pytorch/Phi-4-mini-instruct-INT4", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("pytorch/Phi-4-mini-instruct-INT4", trust_remote_code=True) model = AutoModelForCausalLM.from_pretrained("pytorch/Phi-4-mini-instruct-INT4", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use pytorch/Phi-4-mini-instruct-INT4 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "pytorch/Phi-4-mini-instruct-INT4" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "pytorch/Phi-4-mini-instruct-INT4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/pytorch/Phi-4-mini-instruct-INT4
- SGLang
How to use pytorch/Phi-4-mini-instruct-INT4 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "pytorch/Phi-4-mini-instruct-INT4" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "pytorch/Phi-4-mini-instruct-INT4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "pytorch/Phi-4-mini-instruct-INT4" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "pytorch/Phi-4-mini-instruct-INT4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use pytorch/Phi-4-mini-instruct-INT4 with Docker Model Runner:
docker model run hf.co/pytorch/Phi-4-mini-instruct-INT4
Update README.md
Browse files
README.md
CHANGED
|
@@ -62,21 +62,27 @@ print(f"{save_to} model:", benchmark_fn(quantized_model.generate, **inputs, max_
|
|
| 62 |
|
| 63 |
# Model Quality
|
| 64 |
We rely on [lm-evaluation-harness](https://github.com/EleutherAI/lm-evaluation-harness) to evaluate the quality of the quantized model.
|
| 65 |
-
|
| 66 |
```
|
|
|
|
| 67 |
# Installing the nightly version to get most recent updates
|
|
|
|
| 68 |
pip install git+https://github.com/EleutherAI/lm-evaluation-harness
|
|
|
|
| 69 |
|
| 70 |
# baseline
|
|
|
|
| 71 |
lm_eval --model hf --model_args pretrained=microsoft/Phi-4-mini-instruct --tasks hellaswag --device cuda:0 --batch_size 8
|
|
|
|
| 72 |
|
| 73 |
# int4wo-hqq
|
|
|
|
| 74 |
lm_eval --model hf --model_args pretrained=jerryzh168/phi4-mini-int4wo-hqq --tasks hellaswag --device cuda:0 --batch_size 8
|
| 75 |
```
|
| 76 |
|
| 77 |
`TODO: more complete eval results`
|
| 78 |
|
| 79 |
-
|
|
|
|
| 80 |
|----------------------------------|-------------|-------------------|
|
| 81 |
| | Phi-4 mini-Ins | phi4-mini-int4wo |
|
| 82 |
| **Popular aggregated benchmark** | | |
|
|
@@ -91,12 +97,13 @@ lm_eval --model hf --model_args pretrained=jerryzh168/phi4-mini-int4wo-hqq --tas
|
|
| 91 |
Our int4wo is only optimized for batch size 1, so we'll only benchmark the batch size 1 performance with vllm.
|
| 92 |
For batch size N, please see our [gemlite checkpoint](https://huggingface.co/jerryzh168/phi4-mini-int4wo-gemlite).
|
| 93 |
|
| 94 |
-
```
|
| 95 |
# Install latest vllm to get the most recent changes
|
|
|
|
| 96 |
pip install git+https://github.com/vllm-project/vllm.git
|
|
|
|
| 97 |
|
| 98 |
# Download dataset
|
| 99 |
-
Download sharegpt dataset: wget https://huggingface.co/datasets/anon8231489123/ShareGPT_Vicuna_unfiltered/resolve/main/ShareGPT_V3_unfiltered_cleaned_split.json
|
| 100 |
|
| 101 |
Other datasets can be found in: https://github.com/vllm-project/vllm/tree/main/benchmarks
|
| 102 |
# benchmark_latency
|
|
|
|
| 62 |
|
| 63 |
# Model Quality
|
| 64 |
We rely on [lm-evaluation-harness](https://github.com/EleutherAI/lm-evaluation-harness) to evaluate the quality of the quantized model.
|
|
|
|
| 65 |
```
|
| 66 |
+
|
| 67 |
# Installing the nightly version to get most recent updates
|
| 68 |
+
```
|
| 69 |
pip install git+https://github.com/EleutherAI/lm-evaluation-harness
|
| 70 |
+
```
|
| 71 |
|
| 72 |
# baseline
|
| 73 |
+
```
|
| 74 |
lm_eval --model hf --model_args pretrained=microsoft/Phi-4-mini-instruct --tasks hellaswag --device cuda:0 --batch_size 8
|
| 75 |
+
```
|
| 76 |
|
| 77 |
# int4wo-hqq
|
| 78 |
+
```
|
| 79 |
lm_eval --model hf --model_args pretrained=jerryzh168/phi4-mini-int4wo-hqq --tasks hellaswag --device cuda:0 --batch_size 8
|
| 80 |
```
|
| 81 |
|
| 82 |
`TODO: more complete eval results`
|
| 83 |
|
| 84 |
+
|
| 85 |
+
| Benchmark | | |
|
| 86 |
|----------------------------------|-------------|-------------------|
|
| 87 |
| | Phi-4 mini-Ins | phi4-mini-int4wo |
|
| 88 |
| **Popular aggregated benchmark** | | |
|
|
|
|
| 97 |
Our int4wo is only optimized for batch size 1, so we'll only benchmark the batch size 1 performance with vllm.
|
| 98 |
For batch size N, please see our [gemlite checkpoint](https://huggingface.co/jerryzh168/phi4-mini-int4wo-gemlite).
|
| 99 |
|
|
|
|
| 100 |
# Install latest vllm to get the most recent changes
|
| 101 |
+
```
|
| 102 |
pip install git+https://github.com/vllm-project/vllm.git
|
| 103 |
+
```
|
| 104 |
|
| 105 |
# Download dataset
|
| 106 |
+
Download sharegpt dataset: `wget https://huggingface.co/datasets/anon8231489123/ShareGPT_Vicuna_unfiltered/resolve/main/ShareGPT_V3_unfiltered_cleaned_split.json`
|
| 107 |
|
| 108 |
Other datasets can be found in: https://github.com/vllm-project/vllm/tree/main/benchmarks
|
| 109 |
# benchmark_latency
|