chore: bump version to 1.0.17
This commit is contained in:
parent
88cd2d9fd1
commit
71c996c56f
1
.vscode/settings.json
vendored
1
.vscode/settings.json
vendored
@ -1,6 +1,7 @@
|
||||
{
|
||||
"cSpell.words": [
|
||||
"Jafari",
|
||||
"Logit",
|
||||
"statsmodels"
|
||||
]
|
||||
}
|
||||
@ -36,6 +36,9 @@ def check_file_exists(file_path):
|
||||
supportedModels = {
|
||||
"sm.OLS": {
|
||||
"supported": True
|
||||
},
|
||||
"sm.Logit": {
|
||||
"supported": True
|
||||
}
|
||||
}
|
||||
|
||||
@ -48,6 +51,9 @@ supportedDataType = {
|
||||
},
|
||||
"binary":{
|
||||
"supported": True
|
||||
},
|
||||
"probebility":{
|
||||
"supported": True
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mlModelSaver",
|
||||
"version": "1.0.16",
|
||||
"version": "1.0.17",
|
||||
"description": "Make life easier for save and serving ml models",
|
||||
"main": "index.js",
|
||||
"repository": "git@github.com:smartdev-ca/mlModelSaver.git",
|
||||
|
||||
2
setup.py
2
setup.py
@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name='mlModelSaver',
|
||||
version='1.0.16',
|
||||
version='1.0.17',
|
||||
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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user