Text Generation
Transformers
Safetensors
English
Hindi
qwen2
reasoning
coding
mathematics
quantization
4-bit model
state-of-the-art
conversational
text-generation-inference
4-bit precision
bitsandbytes
Instructions to use 169Pi/Alpie-Core with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use 169Pi/Alpie-Core with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="169Pi/Alpie-Core") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("169Pi/Alpie-Core") model = AutoModelForCausalLM.from_pretrained("169Pi/Alpie-Core") 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 169Pi/Alpie-Core with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "169Pi/Alpie-Core" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "169Pi/Alpie-Core", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/169Pi/Alpie-Core
- SGLang
How to use 169Pi/Alpie-Core 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 "169Pi/Alpie-Core" \ --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": "169Pi/Alpie-Core", "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 "169Pi/Alpie-Core" \ --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": "169Pi/Alpie-Core", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use 169Pi/Alpie-Core with Docker Model Runner:
docker model run hf.co/169Pi/Alpie-Core
Update README.md
Browse files
README.md
CHANGED
|
@@ -17,6 +17,7 @@ pipeline_tag: text-generation
|
|
| 17 |
---
|
| 18 |
# Alpie-Core: 4-bit Quantized Reasoning Model
|
| 19 |
|
|
|
|
| 20 |
|
| 21 |
## 1. Introduction
|
| 22 |
|
|
@@ -79,6 +80,14 @@ This SFT approach enables Alpie-Core to deliver reliable, aligned, and context-a
|
|
| 79 |
|
| 80 |
## 6. Benchmark Results
|
| 81 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 82 |
| Benchmark | Alpie-Core (32B-4bit) | DeepSeek-V2 (236B) | Qwen2.5 72B | Llama 3.1 405B | Llama 3.1 70B | Gemma-3 27B-PT | Mistral-Small-24B-Base-2501 |
|
| 83 |
|-----------|----------------------|-------------------|-------------|---------------|---------------|----------------|----------------------------|
|
| 84 |
| MMLU (5-shot) | **81.28%** | 78.4% | 85.0% | 84.4% | 79.3% | 78.6% | 80.73% |
|
|
@@ -90,6 +99,8 @@ This SFT approach enables Alpie-Core to deliver reliable, aligned, and context-a
|
|
| 90 |
|
| 91 |
### SWE-Bench Verified Performance
|
| 92 |
|
|
|
|
|
|
|
| 93 |
| Rank | Model | Accuracy (%) | Performance vs Alpie |
|
| 94 |
|------|-------|-------------|---------------------|
|
| 95 |
| **1** | **Alpie Core** | **57.8** | **Alpie** |
|
|
@@ -102,6 +113,8 @@ This SFT approach enables Alpie-Core to deliver reliable, aligned, and context-a
|
|
| 102 |
|
| 103 |
### Humanity's Last Exam Leaderboard Performance
|
| 104 |
|
|
|
|
|
|
|
| 105 |
| Rank | Model | Accuracy (%) | Performance vs Alpie |
|
| 106 |
|------|-------|-------------|---------------------|
|
| 107 |
| 1 | GPT 4.5 Preview | 5.8 | Above Alpie |
|
|
@@ -126,6 +139,7 @@ This SFT approach enables Alpie-Core to deliver reliable, aligned, and context-a
|
|
| 126 |
| CommonSenseQA | **87.06%** | Commonsense |
|
| 127 |
| AGIEval | **64.98%** | General Intelligence |
|
| 128 |
| Winogrande | **79.53%** | Commonsense Reasoning |
|
|
|
|
| 129 |
|
| 130 |
## 7. Training Details
|
| 131 |
|
|
@@ -298,6 +312,10 @@ Apache 2.0 – Free for research and commercial use
|
|
| 298 |
|
| 299 |
We would like to thank **DeepSeek** for their original model, which served as the foundation for this work. Our team fine-tuned the model and implemented **4-bit quantization**, achieving improved efficiency and accuracy for downstream tasks. This model is built with respect to the contributions of the original authors and aims to provide a safe, high-performance solution for reasoning and inference.
|
| 300 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 301 |
---
|
| 302 |
|
| 303 |
*For technical details, training methodology, and comprehensive evaluation results, please refer to our technical report.*
|
|
|
|
| 17 |
---
|
| 18 |
# Alpie-Core: 4-bit Quantized Reasoning Model
|
| 19 |
|
| 20 |
+
📄 **[Technical Report: Alpie_Core.pdf](./Alpie_Core.pdf)**
|
| 21 |
|
| 22 |
## 1. Introduction
|
| 23 |
|
|
|
|
| 80 |
|
| 81 |
## 6. Benchmark Results
|
| 82 |
|
| 83 |
+

|
| 84 |
+
|
| 85 |
+

|
| 86 |
+
|
| 87 |
+

|
| 88 |
+
|
| 89 |
+

|
| 90 |
+
|
| 91 |
| Benchmark | Alpie-Core (32B-4bit) | DeepSeek-V2 (236B) | Qwen2.5 72B | Llama 3.1 405B | Llama 3.1 70B | Gemma-3 27B-PT | Mistral-Small-24B-Base-2501 |
|
| 92 |
|-----------|----------------------|-------------------|-------------|---------------|---------------|----------------|----------------------------|
|
| 93 |
| MMLU (5-shot) | **81.28%** | 78.4% | 85.0% | 84.4% | 79.3% | 78.6% | 80.73% |
|
|
|
|
| 99 |
|
| 100 |
### SWE-Bench Verified Performance
|
| 101 |
|
| 102 |
+

|
| 103 |
+
|
| 104 |
| Rank | Model | Accuracy (%) | Performance vs Alpie |
|
| 105 |
|------|-------|-------------|---------------------|
|
| 106 |
| **1** | **Alpie Core** | **57.8** | **Alpie** |
|
|
|
|
| 113 |
|
| 114 |
### Humanity's Last Exam Leaderboard Performance
|
| 115 |
|
| 116 |
+
.png)
|
| 117 |
+
|
| 118 |
| Rank | Model | Accuracy (%) | Performance vs Alpie |
|
| 119 |
|------|-------|-------------|---------------------|
|
| 120 |
| 1 | GPT 4.5 Preview | 5.8 | Above Alpie |
|
|
|
|
| 139 |
| CommonSenseQA | **87.06%** | Commonsense |
|
| 140 |
| AGIEval | **64.98%** | General Intelligence |
|
| 141 |
| Winogrande | **79.53%** | Commonsense Reasoning |
|
| 142 |
+
| MATH-500 | **70.00%** | Advanced Mathematics |
|
| 143 |
|
| 144 |
## 7. Training Details
|
| 145 |
|
|
|
|
| 312 |
|
| 313 |
We would like to thank **DeepSeek** for their original model, which served as the foundation for this work. Our team fine-tuned the model and implemented **4-bit quantization**, achieving improved efficiency and accuracy for downstream tasks. This model is built with respect to the contributions of the original authors and aims to provide a safe, high-performance solution for reasoning and inference.
|
| 314 |
|
| 315 |
+
## 15. Contact
|
| 316 |
+
|
| 317 |
+
For technical inquiries and support: **contact@169pi.com**
|
| 318 |
+
|
| 319 |
---
|
| 320 |
|
| 321 |
*For technical details, training methodology, and comprehensive evaluation results, please refer to our technical report.*
|