Instructions to use HelloSun/Qwen2.5-0.5B-Instruct-openvino with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use HelloSun/Qwen2.5-0.5B-Instruct-openvino with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="HelloSun/Qwen2.5-0.5B-Instruct-openvino") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("HelloSun/Qwen2.5-0.5B-Instruct-openvino") model = AutoModelForCausalLM.from_pretrained("HelloSun/Qwen2.5-0.5B-Instruct-openvino") 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
- vLLM
How to use HelloSun/Qwen2.5-0.5B-Instruct-openvino with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "HelloSun/Qwen2.5-0.5B-Instruct-openvino" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "HelloSun/Qwen2.5-0.5B-Instruct-openvino", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/HelloSun/Qwen2.5-0.5B-Instruct-openvino
- SGLang
How to use HelloSun/Qwen2.5-0.5B-Instruct-openvino 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 "HelloSun/Qwen2.5-0.5B-Instruct-openvino" \ --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": "HelloSun/Qwen2.5-0.5B-Instruct-openvino", "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 "HelloSun/Qwen2.5-0.5B-Instruct-openvino" \ --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": "HelloSun/Qwen2.5-0.5B-Instruct-openvino", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use HelloSun/Qwen2.5-0.5B-Instruct-openvino with Docker Model Runner:
docker model run hf.co/HelloSun/Qwen2.5-0.5B-Instruct-openvino
This model was converted to OpenVINO from Qwen/Qwen2.5-0.5B-Instruct using optimum-intel
via the export space.
First make sure you have optimum-intel installed:
pip install optimum[openvino]
To load your model you can do as follows: In huggingface space app.py
import gradio as gr
from huggingface_hub import InferenceClient
from optimum.intel import OVModelForCausalLM
from transformers import AutoTokenizer, pipeline
# 載入模型和標記器
model_id = "HelloSun/Qwen2.5-0.5B-Instruct-openvino"
model = OVModelForCausalLM.from_pretrained(model_id)
tokenizer = AutoTokenizer.from_pretrained(model_id)
# 建立生成管道
pipe = pipeline("text-generation", model=model, tokenizer=tokenizer)
def respond(message, history):
# 將當前訊息與歷史訊息合併
#input_text = message if not history else history[-1]["content"] + " " + message
input_text = message
# 獲取模型的回應
response = pipe(input_text, max_length=500, truncation=True, num_return_sequences=1)
reply = response[0]['generated_text']
# 返回新的消息格式
print(f"Message: {message}")
print(f"Reply: {reply}")
return reply
# 設定 Gradio 的聊天界面
demo = gr.ChatInterface(fn=respond, title="Chat with Qwen(通義千問) 2.5-0.5B", description="與 HelloSun/Qwen2.5-0.5B-Instruct-openvino 聊天!", type='messages')
if __name__ == "__main__":
demo.launch()
requirements.txt
huggingface_hub==0.25.2
optimum[openvino]
- Downloads last month
- 5