Bento

About

A Bento is a standardized distribution format that projects can be packaged into, created by BentoML. It is a self-contained directory that includes all the code, dependencies, and configurations needed to run a model in production. The output is a containerized model image that can be deployed.

How to Create a Bento

To create a Bento, you can use the BentoML CLI.

bentoml build -f bentofile.yaml
bentoml containerize <MODEL_NAME>:<TAG> --opt platform=<SUPPORTED_PLATFORM>  --image-tag <MODLE_NAME>:<TAG>

See the official BentoML documentation on building a Bento for more information.