Instructions to use Chokun00032/qwen-1b-pruned-th with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Chokun00032/qwen-1b-pruned-th with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Chokun00032/qwen-1b-pruned-th") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Chokun00032/qwen-1b-pruned-th") model = AutoModelForCausalLM.from_pretrained("Chokun00032/qwen-1b-pruned-th") 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 Chokun00032/qwen-1b-pruned-th with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Chokun00032/qwen-1b-pruned-th" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Chokun00032/qwen-1b-pruned-th", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Chokun00032/qwen-1b-pruned-th
- SGLang
How to use Chokun00032/qwen-1b-pruned-th 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 "Chokun00032/qwen-1b-pruned-th" \ --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": "Chokun00032/qwen-1b-pruned-th", "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 "Chokun00032/qwen-1b-pruned-th" \ --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": "Chokun00032/qwen-1b-pruned-th", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Chokun00032/qwen-1b-pruned-th with Docker Model Runner:
docker model run hf.co/Chokun00032/qwen-1b-pruned-th
qwen-1b-pruned-th
Depth-pruned (layer dropping) + healing SFT of Qwen2.5-3B for Thai.
Spec
- Base:
Qwen2.5-3B - Params: 1.70B (kept 18/36 decoder layers; drop middle, keep head+tail)
- Healing: SFT on SEA-PILE v2 Thai (~8k docs), bf16
- Requires:
transformers>=4.44, accelerate
Usage
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
m = "Chokun00032/qwen-1b-pruned-th"
tok = AutoTokenizer.from_pretrained(m)
model = AutoModelForCausalLM.from_pretrained(m, torch_dtype=torch.bfloat16, device_map="cuda")
ids = tok("ปัญญาประดิษฐ์ คือ", return_tensors="pt").to(model.device)
out = model.generate(**ids, max_new_tokens=120, do_sample=True,
temperature=0.7, top_p=0.9, repetition_penalty=1.3)
print(tok.decode(out[0], skip_special_tokens=True))
Notes
- Pruned base healed on raw corpus: Thai grammar is fluent, but factual/arithmetic ability is weak.
- Use
repetition_penalty>=1.2to avoid loops. - Best used as a base for further instruction fine-tuning.
- Downloads last month
- 30