Instructions to use sharryXR/asil-qwen35-2b-rl with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use sharryXR/asil-qwen35-2b-rl with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="sharryXR/asil-qwen35-2b-rl") 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-rl") model = AutoModelForCausalLM.from_pretrained("sharryXR/asil-qwen35-2b-rl", 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-rl 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-rl" # 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-rl", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/sharryXR/asil-qwen35-2b-rl
- SGLang
How to use sharryXR/asil-qwen35-2b-rl 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-rl" \ --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-rl", "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-rl" \ --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-rl", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use sharryXR/asil-qwen35-2b-rl with Docker Model Runner:
docker model run hf.co/sharryXR/asil-qwen35-2b-rl
ASIL Qwen3.5-2B RL
This repository contains the ASIL v0.1.0 paper release checkpoint for ASIL Qwen3.5-2B RL.
This model is presented in the paper ASIL: Replacing Screenshot-and-Click with Structured State and Semantic Actions.
- Release:
v0.1.0 - Selected checkpoint:
global_step_8_actor_hf - Source path:
/public/LLM_model_dataset/rl_temp/asil_operational_benchmark_a100_20260514_144617/results/rl/qwen35_2b_agentic_a800/qwen35_2b_rl_vllm_round3_final_small4_306039_20260519_114747/checkpoints/global_step_8_actor_hf - 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_27 - Training data:
rl_learnable_v4_320_80; 320 train / 80 valid task prompts - 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.
For more details, refer to:
- Project page: https://sharryxr.github.io/ASIL
- GitHub: https://github.com/sharryXR/ASIL
- Downloads last month
- 211