Releases: 4-DS/sinara
Releases · 4-DS/sinara
SinaraML Lib 2.1.1
Version 2.1.1
- BentoArchive class has been moved to bentoml folder. Please, consider to change import in your code:
from sinara.bentoml_artifacts import BentoArchive
tofrom sinara.bentoml.bento_archive import BentoArchive
- Added code to support BentoService profiles, in particular ONNX profile. Now Docker image with ONNX model can be created for production.
- Methods save_bentoservice and load_bentoservice can not be called in one notebook due to technical realization details.
- If step.XXX.py ended up with the message:
"Exception while deleting Spark temp dir: /tmp/spark-XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX java.nio.file.NoSuchFileException: /tmp/spark-XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
, it is normal behaviour and it can be fixed by running:
rm -f /tmp/spark-XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
SinaraML Lib 1.1.2
- Added loading of pipeline params and step params to the dedicated cell in the notebook.
- Only substep params are defined in the 'parameters' cell and replaced by the job run.
- Unnecessary default_param_values removed from the 'interface' cell.