Stable Release
**Notice: This release is not backwards compatible - see notes below on upgrading**
* Breaking Changes
* Triton engine size supports variable request size (-1)
* Features & Bug fixes
* Add version number of serving session task
* Triton engine support for variable request (matrix) sizes
* Triton support, fix --aux-config to support more configurations elements
* Huggingface Transformer support
* `Preprocess` class as module (see note below)
**Note**: To add a `Preprocess` class from a module (the entire module folder will be packaged)
preprocess_folder
├── __init__.py from .sub.some_file import Preprocess
└── sub
└── some_file.py
Pass the top folder as a path for `--preprocess`, for example:
clearml-serving --id <serving_session_id> model add --preprocess /path/to/preprocess_folder ...