Check out this tutorial which will guides you through the process of deploying a CodeLlama-Python-34B GPTQ model using Inferless.
- Deployment of GPTQ, 4-bit quantized CodeLlama-Python-34B model using vLLM.
- Experimented with various inference libraries like HuggingFace Transformer Pipeline, AutoGPTQ, Text Generation Inference,vLLM favoring vLLM for best latency and token rate.
- By using the vLLM with GPTQ 4bit quantized model, you can expect an average lowest latency of 3.51 sec and average token generation rate of 58.40/sec. This setup has an average cold start time of 21.8 sec.
- Dependencies defined in config.yaml using vLLM.
- GitHub/Gitlab template creation with app.py and config.yaml.
- Model class in app.py with initialize, infer, and finalize functions.
- Custom runtime creation with necessary system and Python packages.
- Model import via GitHub with input_schema.py.
- Recommended GPU: NVIDIA A100 for optimal performance.
- Custom runtime selection in advanced configuration.
- Final review and deployment on Inferless platform.
- Git. You would need git installed on your system if you wish to customize the repo after forking.
- Python>=3.8. You would need Python to customize the code in the app.py according to your needs.
- Curl. You would need Curl if you want to make API calls from the terminal itself.
Here is a quick start to help you get up and running with this template on Inferless.
Get started by downloading the config.yaml file and go to Inferless dashboard and create a custom runtime.
Quickly add this as a Custom runtime.
Get started by forking the repository. You can do this by clicking on the fork button in the top right corner of the repository page.
This will create a copy of the repository in your own GitHub account, allowing you to make changes and customize it according to your needs.
Log in to your inferless account, select the workspace you want the model to be imported into and click the Add Model button.
Select GitHub as a provider and choose your model repository and the branch.
After the create model step, while setting the configuration for the model make sure to select the appropriate runtime.
Enter all the required details to Import your model. Refer this link for more information on model import.
Following is an example of the curl command you can use to make inferences. You can find the exact curl command on the Model's API page in Inferless.
curl --location '<your_inference_url>' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <your_api_key>' \
--data '{
"inputs": [
{
"data": [
"def factorial(int n):"
],
"name": "prompt",
"shape": [
1
],
"datatype": "BYTES"
}
]
}'
Open the app.py
file. This contains the main code for inference. It has three main functions, initialize, infer and finalize.
Initialize - This function is executed during the cold start and is used to initialize the model. If you have any custom configurations or settings that need to be applied during the initialization, make sure to add them in this function.
Infer - This function is where the inference happens. The argument to this function inputs
, is a dictionary containing all the input parameters. The keys are the same as the name given in the inputs. Refer to input for more.
def infer(self, inputs):
prompt = inputs["prompt"]
Finalize - This function is used to perform any cleanup activity for example you can unload the model from the GPU by setting self.pipe = None
.
For more information refer to the Inferless docs.