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": [
|
"cSpell.words": [
|
||||||
"Jafari",
|
"Jafari",
|
||||||
|
"Logit",
|
||||||
"statsmodels"
|
"statsmodels"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -36,6 +36,9 @@ def check_file_exists(file_path):
|
|||||||
supportedModels = {
|
supportedModels = {
|
||||||
"sm.OLS": {
|
"sm.OLS": {
|
||||||
"supported": True
|
"supported": True
|
||||||
|
},
|
||||||
|
"sm.Logit": {
|
||||||
|
"supported": True
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -48,6 +51,9 @@ supportedDataType = {
|
|||||||
},
|
},
|
||||||
"binary":{
|
"binary":{
|
||||||
"supported": True
|
"supported": True
|
||||||
|
},
|
||||||
|
"probebility":{
|
||||||
|
"supported": True
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mlModelSaver",
|
"name": "mlModelSaver",
|
||||||
"version": "1.0.16",
|
"version": "1.0.17",
|
||||||
"description": "Make life easier for save and serving ml models",
|
"description": "Make life easier for save and serving ml models",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"repository": "git@github.com:smartdev-ca/mlModelSaver.git",
|
"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(
|
setup(
|
||||||
name='mlModelSaver',
|
name='mlModelSaver',
|
||||||
version='1.0.16',
|
version='1.0.17',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
description='Make life easier for saving and serving ML models',
|
description='Make life easier for saving and serving ML models',
|
||||||
long_description=open('DOCS.md').read(), # Assumes you have a README.md file
|
long_description=open('DOCS.md').read(), # Assumes you have a README.md file
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user