Instructions to use sharryXR/asil-qwen35-2b-sft with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use sharryXR/asil-qwen35-2b-sft with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="sharryXR/asil-qwen35-2b-sft") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("sharryXR/asil-qwen35-2b-sft") model = AutoModelForCausalLM.from_pretrained("sharryXR/asil-qwen35-2b-sft", device_map="auto") 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 sharryXR/asil-qwen35-2b-sft with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "sharryXR/asil-qwen35-2b-sft" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "sharryXR/asil-qwen35-2b-sft", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/sharryXR/asil-qwen35-2b-sft
- SGLang
How to use sharryXR/asil-qwen35-2b-sft 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 "sharryXR/asil-qwen35-2b-sft" \ --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": "sharryXR/asil-qwen35-2b-sft", "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 "sharryXR/asil-qwen35-2b-sft" \ --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": "sharryXR/asil-qwen35-2b-sft", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use sharryXR/asil-qwen35-2b-sft with Docker Model Runner:
docker model run hf.co/sharryXR/asil-qwen35-2b-sft
ASIL Qwen3.5-2B SFT
This repository contains the ASIL v0.1.0 paper release checkpoint for ASIL Qwen3.5-2B SFT.
This checkpoint is described in the paper ASIL: Replacing Screenshot-and-Click with Structured State and Semantic Actions.
Project page: https://sharryxr.github.io/ASIL
Code: https://github.com/sharryXR/ASIL
- Release:
v0.1.0 - Selected checkpoint:
global_step_111 - Source path:
/public/home/sjtu_normal/users/xierui/asil_sft_rl_a100_20260513_173133/results/sft_train/qwen35_2b_epoch4_sft_agentic_guided_v2_20260514_190323/checkpoints/global_step_111 - Base/init checkpoint:
/public/home/sjtu_normal/users/xierui/asil_sft_rl_a100_20260513_173133/results/sft_train/qwen35_2b_sft_v0_continue3_20260514_115443/checkpoints/global_step_9 - Training data:
agentic-guided-v2 prepared parquet; 2,330 train / 594 valid rows - Prepared at:
2026-07-30T18:02:32+08:00
The repo root contains the HF-loadable checkpoint files (config.json, tokenizer files, generation_config.json, and *.safetensors). Training-only artifacts such as optimizer state, scheduler state, trainer state, logs, caches, wandb output, and credentials are intentionally excluded.
See checkpoint_metadata.json and SHA256SUMS for provenance and file checksums.
- Downloads last month
- 182