Skip to main content
To use your model, you can either:
  1. Host it on Together AI as a dedicated endpoint(DE) for an hourly usage fee
  2. Run it immediately if the model supports Serverless LoRA Inference
  3. Download your model and run it locally

Hosting your model on Together AI

If you select your model in the models dashboard you can click CREATE DEDICATED ENDPOINT to create a dedicated endpoint for the fine-tuned model.
Once it’s deployed, you can use the ID to query your new model using any of our APIs:
Hosting your fine-tuned model is charged per minute hosted. You can see the hourly pricing for fine-tuned model inference in the pricing table. When you’re not using the model, be sure to stop the endpoint from the the models dashboard. Read more about dedicated inference here.

Serverless LoRA Inference

If you fine-tuned the model using parameter efficient LoRA fine-tuning you can select the model in the models dashbaord and can click OPEN IN PLAYGROUND to quickly test the fine-tuned model. You can also call the model directly just like any other model on the Together AI platform, by providing the unique fine-tuned model output_name that you can find for the specific model on the dashboard. See the list of models that support LoRA Inference.
You can even upload LoRA adapters from HuggingFace or an s3 bucket. Read more about Serverless LoRA Inference here .

Running Your Model Locally

To run your model locally, first download it by calling download with your job ID:
Your model will be downloaded to the location specified in output as a tar.zst file, which is an archive file format that uses the ZStandard algorithm. You’ll need to install ZStandard to decompress your model. On Macs, you can use Homebrew:
Once your archive is decompressed, you should see the following set of files:
These can be used with various libraries and languages to run your model locally. Transformers is a popular Python library for working with pretrained models, and using it with your new model looks like this:
If you see the output, your new model is working! You now have a custom fine-tuned model that you can run completely locally, either on your own machine or on networked hardware of your choice.