Weight0samples error (#23)

* Add Hyperparameters description to README
Comment get_subspace method
Add environment info for binder (runtime.txt)

* Complete source comments
Change docstring type to numpy
update hyperameters table and explanation

* Fix problem with zero weighted samples
Solve WARNING: class label x specified in weight is not found
with a different approach

* Allow update of scikitlearn to latest version
This commit is contained in:
Ricardo Montañana Gómez
2021-01-19 11:40:46 +01:00
committed by GitHub
parent 3bdac9bd60
commit 147dad684c
4 changed files with 31 additions and 43 deletions

View File

@@ -1,6 +1,6 @@
import setuptools
__version__ = "0.9rc6"
__version__ = "1.0rc1"
__author__ = "Ricardo Montañana Gómez"
@@ -30,7 +30,7 @@ setuptools.setup(
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research",
],
install_requires=["scikit-learn==0.23.2", "numpy", "ipympl"],
install_requires=["scikit-learn", "numpy", "ipympl"],
test_suite="stree.tests",
zip_safe=False,
)