Skip to content
This repository has been archived by the owner on Sep 13, 2023. It is now read-only.

0.4.0 🐶

Compare
Choose a tag to compare
@iterative-olivaw iterative-olivaw released this 20 Dec 15:42
· 71 commits to main since this release
66ad871

What's new

  • Now you can serve your models with Streamlit: mlem serve streamlit --model mymodel. Streamlit app is built automatically based on sample_data you provide to mlem.api.save() call.
  • Now you can add pre- and post-processors for your models. mlem.api.save(..., preprocess=..., postprocess=...) will apply preprocess before the model and postprocess after the model like this: postprocess(model(preprocess(x))).
  • Since the two above break backward compatibility (.mlem files have a different structure now), we implemented mlem migrate command that will re-write .mlem files to adhere to new format.

Changes

Full Changelog: 0.3.2...0.4.0