Instructions to use SZLHOLDINGS/chaski-r2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use SZLHOLDINGS/chaski-r2 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3.5-0.8B") model = PeftModel.from_pretrained(base_model, "SZLHOLDINGS/chaski-r2") - Transformers
How to use SZLHOLDINGS/chaski-r2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="SZLHOLDINGS/chaski-r2") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("SZLHOLDINGS/chaski-r2", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use SZLHOLDINGS/chaski-r2 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "SZLHOLDINGS/chaski-r2" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "SZLHOLDINGS/chaski-r2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/SZLHOLDINGS/chaski-r2
- SGLang
How to use SZLHOLDINGS/chaski-r2 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 "SZLHOLDINGS/chaski-r2" \ --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": "SZLHOLDINGS/chaski-r2", "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 "SZLHOLDINGS/chaski-r2" \ --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": "SZLHOLDINGS/chaski-r2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Desktop
- Docker Model Runner
How to use SZLHOLDINGS/chaski-r2 with Docker Model Runner:
docker model run hf.co/SZLHOLDINGS/chaski-r2
Upload training_receipt.local.json with huggingface_hub
Browse files- training_receipt.local.json +73 -0
training_receipt.local.json
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"kind": "szl-chaski-r2-training-receipt",
|
| 3 |
+
"schema": "szl.frontier-training-run/v1",
|
| 4 |
+
"v": 1,
|
| 5 |
+
"artifact": "SZLHOLDINGS/chaski-r2",
|
| 6 |
+
"sku": "CHASKI-R2",
|
| 7 |
+
"silhouette": "CHAWPI",
|
| 8 |
+
"atelier_lock": true,
|
| 9 |
+
"hub_id_declared_only": true,
|
| 10 |
+
"hub_page": false,
|
| 11 |
+
"separate_sku": true,
|
| 12 |
+
"canonical_base": "Qwen/Qwen3.5-0.8B",
|
| 13 |
+
"base_model": "Qwen/Qwen3.5-0.8B",
|
| 14 |
+
"baseModel": "Qwen/Qwen3.5-0.8B",
|
| 15 |
+
"base_model_relation": "adapter",
|
| 16 |
+
"base_model_runtime": "Qwen/Qwen3.5-0.8B",
|
| 17 |
+
"does_not_overwrite": "SZLHOLDINGS/chaski",
|
| 18 |
+
"forbidden_5050": "SZLHOLDINGS/chaski-5050",
|
| 19 |
+
"not_5050": true,
|
| 20 |
+
"not_bf16_5050": true,
|
| 21 |
+
"qlora": false,
|
| 22 |
+
"load_in_4bit": false,
|
| 23 |
+
"load_in_16bit": true,
|
| 24 |
+
"quant": "bf16-lora",
|
| 25 |
+
"dataset_file": "chaski_r2/train.jsonl",
|
| 26 |
+
"dataset_sha256": "4db6ee9f13f286e05705d683bc40efa0ad5cfe5092258c59f478ae79275aa26a",
|
| 27 |
+
"held_out_in_gradients": false,
|
| 28 |
+
"held_out": {
|
| 29 |
+
"chaski/gate/json_drafts.n5.jsonl": 5,
|
| 30 |
+
"chaski/gate/adversarial_refusals.n6.jsonl": 6
|
| 31 |
+
},
|
| 32 |
+
"seed": 11,
|
| 33 |
+
"num_train_epochs": 3,
|
| 34 |
+
"warmup_steps": 6,
|
| 35 |
+
"lora_r": 16,
|
| 36 |
+
"lora_alpha": 32,
|
| 37 |
+
"learning_rate": 0.0002,
|
| 38 |
+
"lr_scheduler_type": "constant_with_warmup",
|
| 39 |
+
"optim": "adamw_8bit",
|
| 40 |
+
"response_only_loss": true,
|
| 41 |
+
"trackio": false,
|
| 42 |
+
"report_to": "none",
|
| 43 |
+
"push_to_hub": false,
|
| 44 |
+
"jobs": "UNAVAILABLE",
|
| 45 |
+
"weights": "LOCAL",
|
| 46 |
+
"adapterSha256": "440340ce29e19344c0625d0adfe820b277cdb0e24099d4e612f88ad6b3cf49c6",
|
| 47 |
+
"finalTrainLoss": "0.7656",
|
| 48 |
+
"train_loss_label": "MEASURED",
|
| 49 |
+
"evals": "none-this-run",
|
| 50 |
+
"quality": "UNAVAILABLE",
|
| 51 |
+
"lambda": "Conjecture 1",
|
| 52 |
+
"doctrine": "v11 LOCKED 749/14/163",
|
| 53 |
+
"proposal_only": true,
|
| 54 |
+
"publication_eligible": false,
|
| 55 |
+
"autonomy_eligible": false,
|
| 56 |
+
"serve_pin": false,
|
| 57 |
+
"khipu_lab_pin": false,
|
| 58 |
+
"a11oy_mini_scripts_only": true,
|
| 59 |
+
"hub_put": false,
|
| 60 |
+
"training_rows": 32,
|
| 61 |
+
"claim_boundary": "ATELIER lock. Separate SKU id SZLHOLDINGS/chaski-r2 is declared only \u2014 do not costume a README-only Hub ID. Does not overwrite SZLHOLDINGS/chaski. Not SZLHOLDINGS/chaski-5050. Base in prose: Qwen/Qwen3.5-0.8B. GPU honesty is MEASURED or UNAVAILABLE. No ROADMAP parking. QLoRA is not recommended on Qwen3.5; this SKU is bf16 LoRA r=16 \u03b1=32 (not the 5050 sixteen-alpha kit). Jobs this checkout UNAVAILABLE (not fired). Eval is PR 63 named-N after train; none-this-run until that generate. publication_eligible false until MEASURED generate. Lab stays Khipu. A11OY-MINI stays scripts-only. Doctrine v11. This checkout does not PUT Hub.",
|
| 62 |
+
"computed_at": "2026-08-29T03:26:45.357857+00:00",
|
| 63 |
+
"source": "local-train",
|
| 64 |
+
"gpu": {
|
| 65 |
+
"platform": "Windows-10-10.0.26200-SP0",
|
| 66 |
+
"python": "3.11.9",
|
| 67 |
+
"nvidia_smi": "NVIDIA GeForce RTX 5050 Laptop GPU, 8151 MiB, 7787 MiB, 610.47",
|
| 68 |
+
"torch": "2.10.0+cu128",
|
| 69 |
+
"cuda": true,
|
| 70 |
+
"gpu_name": "NVIDIA GeForce RTX 5050 Laptop GPU",
|
| 71 |
+
"gpu_mem_gb": 7.96
|
| 72 |
+
}
|
| 73 |
+
}
|