Please open a PR to add a new model. Please add new models to the model_library folder.
Model library models should follow this style guide.
General style tips:
- Truss folder name should use hyphens, not underscores (e.g.
falcon-7bnotfalcon_7b) - Truss folder name should not include the word Truss (e.g.
falcon-7bnotfalcon-7b-truss) - Model name should include parameter count when multiple variants exist (e.g.
Falcon 7BnotFalcon)
The model should have a README that follows the layout of Stable Diffusion XL.
Do not include any unnecessary or legacy config lines.
Always include:
model_namedescriptionmodel_metadataexample_model_input
Optionally include:
model_metadataavatar_url(Avatars/Logos should be 128x128 PNG)cover_image_url(Cover images should be 452x423 PNG)tags
Pin versions for all Python requirements!
Example:
requirements:
- accelerate==0.20.3
- bitsandbytes==0.39.1
- peft==0.3.0
- protobuf==4.23.3
- sentencepiece==0.1.99
- torch==2.0.1
- transformers==4.30.2Model library models can access secrets.
If the model requires HuggingFace (e.g. Llama 2), always call the secret hf_access_token
Example:
secrets:
hf_access_token: "ENTER HF ACCESS TOKEN HERE"Always configure a model library model with the least expensive hardware required to operate it at a reasonable degree of speed and quality. For example, Stable Diffusion XL defaults to an A10 even though performance is twice as fast on an A100. When these tradeoffs are made, note them in the README.
- Models that support streaming should take a
streamkwarg that defaults to false - Models that take any kind of text input should call it
prompt
If you would like the model to be added the CI job that tests examples very day, add a reference to the ci.yaml file.
Some of the examples in this repo are used to generate automatic documentation on https://truss.baseten.co/.
To add your model to this automatic documentation, add your example to one of the top-level categories
in the repo, and add a doc.yaml file that follows the following form:
title: "Text-to-image"
description: "Building a text-to-image model with SDXL"
files:
- model/model.py
- config.yamlSee the Introduction doc.yaml file for an example.