Skip to content

Latest commit

 

History

History
83 lines (57 loc) · 3.4 KB

README.md

File metadata and controls

83 lines (57 loc) · 3.4 KB

Qwen2.5 72B Instruct GGUF

📖 Introduction

Qwen2.5 is the latest series of Qwen large language models. For Qwen2.5, we release a number of base language models and instruction-tuned language models ranging from 0.5 to 72 billion parameters.

Task Type Description
Chat A task to generate conversational style text output base on single or multi-modality input.

🔄 Compatibility Matrix

To ensure smooth integration, please refer to the compatibility matrix below. It outlines the compatible versions of the model, instill-core, and the python-sdk.

Model Version Instill-Core Version Python-SDK Version
v0.1.0 >v0.46.0-beta >0.16.0

Note: Always ensure that you are using compatible versions to avoid unexpected issues.

🚀 Preparation

Follow this guide to get your custom model up and running! But before you do that, please read through the following sections to have all the necessary files ready.

Install Python SDK

Install the compatible python-sdk version according to the compatibility matrix:

pip install instill-sdk=={version}

Get model weights

To download the fine-tuned model weights, please execute the following command:

git clone https://huggingface.co/unsloth/Qwen2.5-72B-Instruct-bnb-4bit

Test model image

After you've built the model image, and before pushing the model onto any Instill Core instance, you can test if the model can be successfully run locally first, by running the following command:

instill run admin/qwen-2-5-72b-instruct -g -i '{"prompt": "how much do you know about python?"}'

The input payload should strictly follow the the below format

{
  "prompt": "..."
}

A successful response will return a similar output to that shown below.

2024-11-29 08:55:26,428.428 INFO     [Instill] Starting model image...
2024-11-29 08:55:42,031.031 INFO     [Instill] Deploying model...
2024-11-29 08:58:53,622.622 INFO     [Instill] Running inference...
2024-11-28 08:58:57,778.778 INFO     [Instill] Outputs:
[{'data': {'choices': [{'created': 1732841937,
                        'finish-reason': 'length',
                        'index': 0,
                        'message': {'content': 'I know a lot about Python! '
                                               'Python is a popular '
                                               'programming language that is '
                                               'widely',
                                    'role': 'assistant'}}]}}]
2024-11-29 08:59:02,497.497 INFO     [Instill] Done

Here is the list of flags supported by instill run command

  • -t, --tag: tag for the model image, default to latest
  • -g, --gpu: to pass through GPU from host into container or not, depends on if gpu is enabled in the config.
  • -i, --input: input in json format

Happy Modeling! 💡