File size: 1,948 Bytes
e76939b 9c8f2fd e76939b 56291d0 e76939b 56291d0 e76939b 56291d0 e76939b 56291d0 9c8f2fd 56291d0 e76939b 56291d0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
---
base_model: Qwen/Qwen2.5-0.5B-Instruct
language:
- en
library_name: transformers
license: apache-2.0
license_link: https://huggingface.co/Qwen/Qwen2.5-0.5B-Instruct/blob/main/LICENSE
pipeline_tag: text-generation
tags:
- chat
- openvino
- openvino-export
---
This model was converted to OpenVINO from [`Qwen/Qwen2.5-0.5B-Instruct`](https://huggingface.co/Qwen/Qwen2.5-0.5B-Instruct) using [optimum-intel](https://github.com/huggingface/optimum-intel)
via the [export](https://huggingface.co/spaces/echarlaix/openvino-export) space.
First make sure you have optimum-intel installed:
```bash
pip install optimum[openvino]
```
To load your model you can do as follows:
In huggingface space
app.py
```python
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
```requirements.txt
huggingface_hub==0.25.2
optimum[openvino]
```
|