The biggest change in release 0.6.0 is revamped BentoML CLI, introducing new model/deployment management commands and new syntax for CLI inferencing.
1. New commands for managing your model repository:
> bentoml list
BENTO_SERVICE CREATED_AT APIS ARTIFACTS
IrisClassifier:20200123004254_CB6865 2020-01-23 08:43 predict::DataframeHandler model::SklearnModelArtifact
IrisClassifier:20200122010013_E0292E 2020-01-22 09:00 predict::DataframeHandler clf::PickleArtifact
> bentoml get IrisClassifier
> bentoml get IrisClassifier:20200123004254_CB6865
> bentoml get IrisClassifier:latest
2. Add support for using saved BentoServices by `name:version` tag instead of {saved_path}, here are some example commands:
> bentoml serve {saved_path}
> bentoml serve IrisClassifier:latest
> bentoml serve IrisClassifier:20200123004254_CB6865