Image-Text-to-Text
Transformers
Safetensors
qwen3_5
phai-ide
science
code
tool-use
sft
lora
conversational
Instructions to use AItonomy/PhAI-IDE-4B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use AItonomy/PhAI-IDE-4B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="AItonomy/PhAI-IDE-4B") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("AItonomy/PhAI-IDE-4B") model = AutoModelForMultimodalLM.from_pretrained("AItonomy/PhAI-IDE-4B", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.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(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use AItonomy/PhAI-IDE-4B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "AItonomy/PhAI-IDE-4B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "AItonomy/PhAI-IDE-4B", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/AItonomy/PhAI-IDE-4B
- SGLang
How to use AItonomy/PhAI-IDE-4B 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 "AItonomy/PhAI-IDE-4B" \ --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": "AItonomy/PhAI-IDE-4B", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'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 "AItonomy/PhAI-IDE-4B" \ --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": "AItonomy/PhAI-IDE-4B", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use AItonomy/PhAI-IDE-4B with Docker Model Runner:
docker model run hf.co/AItonomy/PhAI-IDE-4B
Simplify published comparisons to complete benchmark configurations
#3
by leyili6666 - opened
README.md
CHANGED
|
@@ -17,24 +17,61 @@ tags:
|
|
| 17 |
- safetensors
|
| 18 |
---
|
| 19 |
|
| 20 |
-
# PhAI-IDE
|
| 21 |
|
| 22 |
-
**PhAI-IDE
|
| 23 |
|
| 24 |
-
The training
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
## Quick start
|
| 27 |
|
| 28 |
-
Use Transformers 5.16.1, PyTorch and Accelerate.
|
| 29 |
|
| 30 |
```python
|
| 31 |
-
from transformers import AutoTokenizer, AutoModelForImageTextToText
|
| 32 |
|
| 33 |
model_id = "AItonomy/PhAI-IDE-4B"
|
|
|
|
| 34 |
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 35 |
-
model =
|
| 36 |
-
model_id, dtype="bfloat16", device_map="auto",
|
| 37 |
-
)
|
| 38 |
inputs = tokenizer.apply_chat_template(
|
| 39 |
[{"role": "user", "content": "Explain how to verify a numerical simulation."}],
|
| 40 |
add_generation_prompt=True, enable_thinking=False, return_dict=True, return_tensors="pt",
|
|
@@ -43,25 +80,13 @@ output = model.generate(**inputs, max_new_tokens=128, do_sample=False)
|
|
| 43 |
print(tokenizer.decode(output[0, inputs["input_ids"].shape[1]:], skip_special_tokens=True))
|
| 44 |
```
|
| 45 |
|
| 46 |
-
BF16 weights occupy approximately 9.08 GB, plus runtime memory and KV cache.
|
| 47 |
-
|
| 48 |
-
## ScienceAccelBench performance
|
| 49 |
-
|
| 50 |
-
Task-held-out, localized scientific-code repair on familiar codebases, with original numerical verification. Pass rates (%); gains in percentage points.
|
| 51 |
-
|
| 52 |
-
| Environment | Tasks | Qwen3.5-4B | PhAI-IDE-4B | Gain (pp) |
|
| 53 |
-
| --- | ---: | ---: | ---: | ---: |
|
| 54 |
-
| pluto-particles-dust | 3 | 0.00 | **33.33** | **+33.33** |
|
| 55 |
-
|
| 56 |
## Training procedure
|
| 57 |
|
| 58 |
ScienceIDE demonstrations were collected with **GPT-5.6-sol** and filtered using a **numerical-equivalence verifier**. They capture code inspection, tool use, and responses to execution feedback.
|
| 59 |
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
Fine-tuning uses text trajectories with the vision tower and aligner frozen. The merged export supports standard autoregressive Qwen3.5 generation.
|
| 63 |
|
| 64 |
-
|
|
| 65 |
| --- | --- |
|
| 66 |
| Training dataset | Codex trajectories |
|
| 67 |
| Training examples / tasks | 4,567 segments / 564 tasks |
|
|
@@ -70,6 +95,13 @@ Fine-tuning uses text trajectories with the vision tower and aligner frozen. The
|
|
| 70 |
| Training epochs | 3 |
|
| 71 |
| LoRA rank / alpha / dropout | 32 / 64 / 0.05 |
|
| 72 |
| Released weights | LoRA merged into BF16 Safetensors |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 73 |
| Maximum training sequence length | 36,864 tokens |
|
| 74 |
| Learning rate / schedule | 2e-5 / cosine |
|
| 75 |
| Warmup ratio | 0.03 |
|
|
@@ -78,8 +110,6 @@ Fine-tuning uses text trajectories with the vision tower and aligner frozen. The
|
|
| 78 |
| Optimizer steps | 216 |
|
| 79 |
| Packing | Disabled |
|
| 80 |
|
| 81 |
-
Long trajectories are organized into segments. Source partition assignments are preserved, with no task identifiers shared between training and validation.
|
| 82 |
-
|
| 83 |
### Framework versions
|
| 84 |
|
| 85 |
The release was validated with the following environment.
|
|
|
|
| 17 |
- safetensors
|
| 18 |
---
|
| 19 |
|
| 20 |
+
# PhAI-IDE
|
| 21 |
|
| 22 |
+
**PhAI-IDE** is a family of models for scientific coding and interaction with tools, available in **4B, 9B, and 72B** sizes. Each model is supervised fine-tuned with [ms-swift](https://github.com/modelscope/ms-swift) and released as full BF16 weights with the final LoRA adapter merged, together with its configuration and tokenizer.
|
| 23 |
|
| 24 |
+
The **training dataset is Codex trajectories**, sourced from [AItonomy/ScienceIDE](https://huggingface.co/datasets/AItonomy/ScienceIDE).
|
| 25 |
+
|
| 26 |
+
## Models
|
| 27 |
+
|
| 28 |
+
| Model | Base model | BF16 weights | License |
|
| 29 |
+
| --- | --- | ---: | --- |
|
| 30 |
+
| [PhAI-IDE-4B](https://huggingface.co/AItonomy/PhAI-IDE-4B) | [Qwen3.5-4B](https://huggingface.co/Qwen/Qwen3.5-4B) | 9.08 GB | Apache-2.0 |
|
| 31 |
+
| [PhAI-IDE-9B](https://huggingface.co/AItonomy/PhAI-IDE-9B) | [Qwen3.5-9B](https://huggingface.co/Qwen/Qwen3.5-9B) | 18.82 GB | Apache-2.0 |
|
| 32 |
+
| [PhAI-IDE-72B](https://huggingface.co/AItonomy/PhAI-IDE-72B) | [Qwen2.5-72B-Instruct](https://huggingface.co/Qwen/Qwen2.5-72B-Instruct) | 145.41 GB | [Qwen](https://huggingface.co/Qwen/Qwen2.5-72B-Instruct/blob/495f39366efef23836d0cfae4fbe635880d2be31/LICENSE) |
|
| 33 |
+
|
| 34 |
+
Weight sizes are approximate; inference also requires memory for runtime allocations and the KV cache.
|
| 35 |
+
|
| 36 |
+
## ScienceAccelBench performance
|
| 37 |
+
|
| 38 |
+
**PhAI-IDE-9B** improves the task-pooled pass rate from **17.09% to 20.89% (+3.80 percentage points)** across all **27 ScienceAccelBench environments**, using **158 valid paired tasks**.
|
| 39 |
+
|
| 40 |
+
Task-held-out, localized scientific-code repair on familiar codebases, with original numerical verification. Each row compares the initial model with its corresponding fine-tuned model on identical tasks. Pass rates are percentages; gains are percentage points.
|
| 41 |
+
|
| 42 |
+
| Model | Environment | Tasks | Initial model | PhAI-IDE | Gain (pp) |
|
| 43 |
+
| --- | --- | ---: | ---: | ---: | ---: |
|
| 44 |
+
| 4B | PLUTO-Particles-Dust | 3 | 0.00 | **33.33** | **+33.33** |
|
| 45 |
+
| 9B | LAPS | 16 | 31.25 | **50.00** | **+18.75** |
|
| 46 |
+
| 9B | MITgcm-biogeo | 8 | 0.00 | **12.50** | **+12.50** |
|
| 47 |
+
| 9B | PLUTO-RMHD | 7 | 0.00 | **28.57** | **+28.57** |
|
| 48 |
+
|
| 49 |
+
## Comparison with published models
|
| 50 |
+
|
| 51 |
+
Scores (%), grouped by benchmark and model size. Each reference entry gives its published score and the **PhAI-IDE score difference in percentage points**. Reference models are approximately the same size: 3–4B, 7–9B, and 67–72B, respectively.
|
| 52 |
+
|
| 53 |
+
| PhAI-IDE | Benchmark | Score | Reference models: score (difference) |
|
| 54 |
+
| --- | --- | ---: | --- |
|
| 55 |
+
| 4B | BBH multistep-arithmetic-two | **97.60** | [Llama-3.2-3B-Instruct](https://huggingface.co/spaces/steampunque/benchlm/blob/d45e8600172857935610426f797a4429f2f136d6/README.md) (3.21B): 53.2 (**+44.40**); [Phi-3.5-mini-8k-instruct](https://huggingface.co/spaces/steampunque/benchlm/blob/d45e8600172857935610426f797a4429f2f136d6/README.md) (3.82B): 95.6 (**+2.00**) |
|
| 56 |
+
| 9B | BBH word-sorting | **60.40** | [Llama-3.1-8B-Instruct](https://huggingface.co/spaces/steampunque/benchlm/blob/d45e8600172857935610426f797a4429f2f136d6/README.md) (8.03B): 51.2 (**+9.20**); [Qwen2.5-7B-Instruct](https://huggingface.co/spaces/steampunque/benchlm/blob/d45e8600172857935610426f797a4429f2f136d6/README.md) (7.62B): 15.6 (**+44.80**) |
|
| 57 |
+
| 9B | MATH-500 | **92.20** | [InternLM3-8B-Instruct](https://modelscope.cn/models/Shanghai_AI_Laboratory/internlm3-8b-instruct-gptq-int4) (8B): 83 (**+9.20**); [Qwen2.5-7B-Instruct](https://modelscope.cn/models/Shanghai_AI_Laboratory/internlm3-8b-instruct-gptq-int4) (7B): 72.4 (**+19.80**); [Llama-3.1-8B-Instruct](https://modelscope.cn/models/Shanghai_AI_Laboratory/internlm3-8b-instruct-gptq-int4) (8B): 48.4 (**+43.80**) |
|
| 58 |
+
| 72B | AQuA-RAT | **77.56** | [Llama-2-70B-Chat](https://openreview.net/pdf?id=FvfhHucpLd) (70B): 31.32 (**+46.24**) |
|
| 59 |
+
| 72B | ARC-Easy | **84.64** | [Llama-2-70B](https://github.com/deepseek-ai/DeepSeek-LLM/blob/main/evaluation/more_results.md) (70B): 76.5 (**+8.14**); [DeepSeek-LLM-67B-Chat](https://github.com/deepseek-ai/DeepSeek-LLM/blob/main/evaluation/more_results.md) (67B): 81.6 (**+3.04**) |
|
| 60 |
+
| 72B | ARC-Challenge | **64.42** | [Llama-2-70B](https://github.com/deepseek-ai/DeepSeek-LLM/blob/main/evaluation/more_results.md) (70B): 59.5 (**+4.92**); [DeepSeek-LLM-67B-Chat](https://github.com/deepseek-ai/DeepSeek-LLM/blob/main/evaluation/more_results.md) (67B): 64.1 (**+0.32**) |
|
| 61 |
+
|
| 62 |
+
Reference scores come from the linked publications, model cards, and independent evaluation reports; evaluation settings and sample counts vary by source. Differences describe reported scores across evaluations, rather than matched-protocol head-to-head gains. BBH entries refer to the named tasks.
|
| 63 |
|
| 64 |
## Quick start
|
| 65 |
|
| 66 |
+
Use Transformers 5.16.1, PyTorch and Accelerate. Set `model_id` to any model in the table above; the example selects the matching model class.
|
| 67 |
|
| 68 |
```python
|
| 69 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM, AutoModelForImageTextToText
|
| 70 |
|
| 71 |
model_id = "AItonomy/PhAI-IDE-4B"
|
| 72 |
+
loader = AutoModelForCausalLM if model_id.endswith("72B") else AutoModelForImageTextToText
|
| 73 |
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 74 |
+
model = loader.from_pretrained(model_id, dtype="bfloat16", device_map="auto")
|
|
|
|
|
|
|
| 75 |
inputs = tokenizer.apply_chat_template(
|
| 76 |
[{"role": "user", "content": "Explain how to verify a numerical simulation."}],
|
| 77 |
add_generation_prompt=True, enable_thinking=False, return_dict=True, return_tensors="pt",
|
|
|
|
| 80 |
print(tokenizer.decode(output[0, inputs["input_ids"].shape[1]:], skip_special_tokens=True))
|
| 81 |
```
|
| 82 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 83 |
## Training procedure
|
| 84 |
|
| 85 |
ScienceIDE demonstrations were collected with **GPT-5.6-sol** and filtered using a **numerical-equivalence verifier**. They capture code inspection, tool use, and responses to execution feedback.
|
| 86 |
|
| 87 |
+
All three models use **ms-swift** supervised fine-tuning with **LoRA across trainable linear layers for three epochs**. The release merges each final checkpoint's adapter into its base model. Retained assistant targets provide the next-token training signal, while conversation history and tool observations provide context. The trajectories retain the native `exec` / `wait` interaction format. Heuristic target masking selects assistant actions for supervision while preserving the surrounding interaction history.
|
|
|
|
|
|
|
| 88 |
|
| 89 |
+
| Shared setting | Value |
|
| 90 |
| --- | --- |
|
| 91 |
| Training dataset | Codex trajectories |
|
| 92 |
| Training examples / tasks | 4,567 segments / 564 tasks |
|
|
|
|
| 95 |
| Training epochs | 3 |
|
| 96 |
| LoRA rank / alpha / dropout | 32 / 64 / 0.05 |
|
| 97 |
| Released weights | LoRA merged into BF16 Safetensors |
|
| 98 |
+
|
| 99 |
+
Long trajectories are organized into segments. Source partition assignments are preserved, with no task identifiers shared between training and validation.
|
| 100 |
+
|
| 101 |
+
For **4B and 9B**, fine-tuning uses text trajectories with the vision tower and aligner frozen. Their additional settings are:
|
| 102 |
+
|
| 103 |
+
| Setting | 4B and 9B |
|
| 104 |
+
| --- | --- |
|
| 105 |
| Maximum training sequence length | 36,864 tokens |
|
| 106 |
| Learning rate / schedule | 2e-5 / cosine |
|
| 107 |
| Warmup ratio | 0.03 |
|
|
|
|
| 110 |
| Optimizer steps | 216 |
|
| 111 |
| Packing | Disabled |
|
| 112 |
|
|
|
|
|
|
|
| 113 |
### Framework versions
|
| 114 |
|
| 115 |
The release was validated with the following environment.
|