Instructions to use vinoku89/aimo3-exp-1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use vinoku89/aimo3-exp-1 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-0.6B") model = PeftModel.from_pretrained(base_model, "vinoku89/aimo3-exp-1") - Transformers
How to use vinoku89/aimo3-exp-1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="vinoku89/aimo3-exp-1") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("vinoku89/aimo3-exp-1", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use vinoku89/aimo3-exp-1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "vinoku89/aimo3-exp-1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "vinoku89/aimo3-exp-1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/vinoku89/aimo3-exp-1
- SGLang
How to use vinoku89/aimo3-exp-1 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 "vinoku89/aimo3-exp-1" \ --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": "vinoku89/aimo3-exp-1", "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 "vinoku89/aimo3-exp-1" \ --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": "vinoku89/aimo3-exp-1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use vinoku89/aimo3-exp-1 with Docker Model Runner:
docker model run hf.co/vinoku89/aimo3-exp-1
[sft] Qwen3-0.6B | e1 | 13.9k samples | lr=2e-05
Browse filesMetrics:
- train_loss: 2.0741
- val_loss: 2.0532
W&B: https://wandb.ai/run/79pv99nr
- adapter_config.json +5 -5
- adapter_model.safetensors +1 -1
- metrics.json +5 -5
adapter_config.json
CHANGED
|
@@ -29,13 +29,13 @@
|
|
| 29 |
"rank_pattern": {},
|
| 30 |
"revision": null,
|
| 31 |
"target_modules": [
|
| 32 |
-
"
|
| 33 |
-
"
|
| 34 |
"q_proj",
|
| 35 |
-
"k_proj",
|
| 36 |
"o_proj",
|
| 37 |
-
"
|
| 38 |
-
"
|
|
|
|
| 39 |
],
|
| 40 |
"target_parameters": null,
|
| 41 |
"task_type": "CAUSAL_LM",
|
|
|
|
| 29 |
"rank_pattern": {},
|
| 30 |
"revision": null,
|
| 31 |
"target_modules": [
|
| 32 |
+
"gate_proj",
|
| 33 |
+
"v_proj",
|
| 34 |
"q_proj",
|
|
|
|
| 35 |
"o_proj",
|
| 36 |
+
"down_proj",
|
| 37 |
+
"k_proj",
|
| 38 |
+
"up_proj"
|
| 39 |
],
|
| 40 |
"target_parameters": null,
|
| 41 |
"task_type": "CAUSAL_LM",
|
adapter_model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 20237256
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cbd7f87d857fdcdd819cc88914741a22f095eb8ac3b9e5ea98a76d6ce13e3e3e
|
| 3 |
size 20237256
|
metrics.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
{
|
| 2 |
-
"train_loss": 2.
|
| 3 |
-
"val_loss": 2.
|
| 4 |
"accuracy": null,
|
| 5 |
"epochs": 1,
|
| 6 |
"max_steps": 10,
|
|
@@ -8,8 +8,8 @@
|
|
| 8 |
"learning_rate": 2e-05,
|
| 9 |
"model_name": "Qwen/Qwen3-0.6B",
|
| 10 |
"method": "sft",
|
| 11 |
-
"run_number": "
|
| 12 |
"experiment_name": "aimo3-exp-1",
|
| 13 |
-
"wandb_run_id": "
|
| 14 |
-
"timestamp": "2026-01-12T22:
|
| 15 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"train_loss": 2.0741,
|
| 3 |
+
"val_loss": 2.053159475326538,
|
| 4 |
"accuracy": null,
|
| 5 |
"epochs": 1,
|
| 6 |
"max_steps": 10,
|
|
|
|
| 8 |
"learning_rate": 2e-05,
|
| 9 |
"model_name": "Qwen/Qwen3-0.6B",
|
| 10 |
"method": "sft",
|
| 11 |
+
"run_number": "002",
|
| 12 |
"experiment_name": "aimo3-exp-1",
|
| 13 |
+
"wandb_run_id": "79pv99nr",
|
| 14 |
+
"timestamp": "2026-01-12T22:26:23.825888"
|
| 15 |
}
|