Skip to content

Latest commit

 

History

History
81 lines (55 loc) · 3.35 KB

README.md

File metadata and controls

81 lines (55 loc) · 3.35 KB

Zephyr 7B

📖 Introduction

Zephyr is a series of language models that are trained to act as helpful assistants. Zephyr-7B-α is the first model in the series, and is a fine-tuned version of mistralai/Mistral-7B-v0.1 that was trained on on a mix of publicly available, synthetic datasets using Direct Preference Optimization (DPO).

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.39.0-beta >0.11.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/HuggingFaceH4/zephyr-7b-alpha

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 instill-ai/zephyr-7b -g -i '{"prompt": "hi"}'

The input payload should strictly follow the the below format

{
  "prompt": "..."
}

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

2024-09-11 01:36:20,873.873 INFO     [Instill] Starting model image...
2024-09-11 01:36:31,276.276 INFO     [Instill] Deploying model...
2024-09-11 01:37:17,296.296 INFO     [Instill] Running inference...
2024-09-11 01:37:20,402.402 INFO     [Instill] Outputs:
[{'data': {'choices': [{'created': 1725989840,
                        'finish-reason': 'length',
                        'index': 0,
                        'message': {'content': 'Hello! How may I assist you '
                                               'today?',
                                    'role': 'assistant'}}]}}]
2024-09-11 01:37:24,165.165 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! 💡