chore: bump version to 1.0.21

This commit is contained in:
Jason Jafari 2024-06-16 13:43:27 -04:00
parent a5e6be1cca
commit 042a6b9126
3 changed files with 11 additions and 3 deletions

10
DOCS.md
View File

@ -1 +1,9 @@
# mlModelSaver documentation
# mlModelSaver documentation
Introducing **[mlModelSaver](https://pypi.org/project/mlModelSaver/)** a streamlined Python module designed for data scientists and developers who seek a straightforward solution for model saving and serving.
While numerous tools are available for training machine learning models, many lightweight statistical models lack simple, efficient saving mechanisms. Existing enterprise solutions like MLflow are robust but come with considerable complexity. Based on my experience, I saw the need for an abstract model registry concept that simplifies this process.
**[mlModelSaver](https://github.com/smartdev-ca/mlModelSaver)** fills this gap, offering an intuitive way to save machine learning models and transformers. It facilitates seamless integration with frameworks like FastAPI ([Examples](https://github.com/jafarijason/ml_models_deployments)), Flask, and Django, enabling easy deployment and serving of models in production environments. Empower your machine learning workflow with **mlModelSaver** the easy and efficient tool for model management.

View File

@ -1,6 +1,6 @@
{
"name": "mlModelSaver",
"version": "1.0.20",
"version": "1.0.21",
"description": "Make life easier for save and serving ml models",
"main": "index.js",
"repository": "git@github.com:smartdev-ca/mlModelSaver.git",

View File

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name='mlModelSaver',
version='1.0.20',
version='1.0.21',
packages=find_packages(),
description='Make life easier for saving and serving ML models',
long_description=open('DOCS.md').read(), # Assumes you have a README.md file