Views
No views yet
This repository hosts a conversion ofQwen2.5-Math-1.5B-Instructfor use on Rockchip RK3588 single-board computers (Orange Pi 5 plus, Radxa Rock 5b+, Banana Pi M7, etc.). Conversion was performed using the RKNN-LLM toolkit
w8a8_g128.rkllm artifactw8a8_g128) may show small quality differences vs. full-precision upstream..rkllm converted model is using an example script provided in the toolkit in this directory: rknn-llm/examples/rkllm_server_demo1python3 <TOOLKIT_PATH>/rknn-llm/examples/rkllm_server_demo/flask_server.py \
2 --rkllm_model_path <MODEL_PATH>/Qwen2.5-Math-1.5B-Instruct_w8a8_g128_rk3588.rkllm \
3 --target_platform rk35881{
2 "model":"Qwen2.5-Math-1.5B",
3 "messages":[{
4 "role":"user",
5 "content":"<YOUR_PROMPT_HERE>"}],
6 "stream":false
7}curl:1curl -s -X POST <SERVER_IP_ADDRESS>:8080/rkllm_chat \
2 -H 'Content-Type: application/json' \
3 -d '{"model":"Qwen2.5-Math-1.5B-Instruct","messages":[{"role":"user","content":"Tell me how to solve a quadratic equation."}],"stream":false}'1{
2 "choices":[{
3 "finish_reason":"stop",
4 "index":0,
5 "logprobs":null,
6 "message":{
7 "content":"<MODEL_REPLY_HERE">,
8 "role":"assistant"}}],
9 "created":null,
10 "id":"rkllm_chat",
11 "object":"rkllm_chat",
12 "usage":{
13 "completion_tokens":null,
14 "prompt_tokens":null,
15 "total_tokens":null}
16}{"choices":[{"finish_reason":"stop","index":0,"logprobs":null,"message":{"content":"To find the area of a circle, we use the formula:\n\n\\[\nA = \\pi r^2\n\\]\n\nwhere \\( A \\) is the area and \\( r \\) is the radius of the circle. In this problem, the radius \\( r \\) is given as 5. Substituting the value of the radius into the formula, we get:\n\n\\[\nA = \\pi (5)^2\n\\]\n\nNext, we calculate \\( 5^2 \\):\n\n\\[\n5^2 = 25\n\\]\n\nSo the area becomes:\n\n\\[\nA = \\pi \\times 25 = 25\\pi\n\\]\n\nTherefore, the area of the circle is:\n\n\\[\n\\boxed{25\\pi}\n\\]","role":"assistant"}}],"created":null,"id":"rkllm_chat","object":"rkllm_chat","usage":{"completion_tokens":null,"prompt_tokens":null,"total_tokens":null}}http://<SERVER_IP_ADDRESS>:8080 and use the endpoint: /rkllm_chatmodel field matches the converted model’s name, for example:1{
2 "model": "Qwen2.5-Math-1.5B-Instruct",
3 "messages": [{"role":"user","content":"Hello!"}],
4 "stream": false
5}