-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a6d3c61
commit 0551fa5
Showing
19 changed files
with
203 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
Metadata-Version: 2.1 | ||
Name: mlsauce | ||
Version: 0.15.1 | ||
Summary: Miscellaneous Statistical/Machine Learning tools | ||
Maintainer: T. Moudiki | ||
Maintainer-email: thierry.moudiki@gmail.com | ||
License: BSD3 Clause Clear | ||
Platform: linux | ||
Platform: macosx | ||
Platform: windows | ||
Classifier: Development Status :: 2 - Pre-Alpha | ||
Classifier: Intended Audience :: Developers | ||
Classifier: License :: OSI Approved :: BSD License | ||
Classifier: Natural Language :: English | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: Programming Language :: Python :: 3.5 | ||
Classifier: Programming Language :: Python :: 3.6 | ||
Classifier: Programming Language :: Python :: 3.7 | ||
Classifier: Programming Language :: Python :: 3.8 | ||
Requires-Python: >=3.5 | ||
License-File: LICENSE | ||
Requires-Dist: numpy | ||
Requires-Dist: Cython | ||
Requires-Dist: joblib | ||
Requires-Dist: pandas | ||
Requires-Dist: requests | ||
Requires-Dist: scikit-learn | ||
Requires-Dist: scipy | ||
Requires-Dist: tqdm | ||
Requires-Dist: jax | ||
Requires-Dist: jaxlib | ||
Provides-Extra: alldeps | ||
Requires-Dist: numpy>=1.13.0; extra == "alldeps" | ||
Requires-Dist: scipy>=0.19.0; extra == "alldeps" | ||
|
||
Miscellaneous Statistical/Machine Learning tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
LICENSE | ||
README.md | ||
setup.cfg | ||
setup.py | ||
mlsauce/__init__.py | ||
mlsauce/_config.py | ||
mlsauce/setup.py | ||
mlsauce.egg-info/PKG-INFO | ||
mlsauce.egg-info/SOURCES.txt | ||
mlsauce.egg-info/dependency_links.txt | ||
mlsauce.egg-info/not-zip-safe | ||
mlsauce.egg-info/requires.txt | ||
mlsauce.egg-info/top_level.txt | ||
mlsauce/adaopt/__init__.py | ||
mlsauce/adaopt/_adaopt.py | ||
mlsauce/adaopt/_adaoptc.c | ||
mlsauce/adaopt/fallbacksetup.py | ||
mlsauce/adaopt/setup.py | ||
mlsauce/booster/__init__.py | ||
mlsauce/booster/_booster_classifier.py | ||
mlsauce/booster/_booster_regressor.py | ||
mlsauce/booster/_boosterc.c | ||
mlsauce/booster/fallbacksetup.py | ||
mlsauce/booster/setup.py | ||
mlsauce/datasets/__init__.py | ||
mlsauce/datasets/dowload.py | ||
mlsauce/encoders/__init__.py | ||
mlsauce/encoders/target_encoders.py | ||
mlsauce/lasso/__init__.py | ||
mlsauce/lasso/_lasso.py | ||
mlsauce/lasso/_lassoc.c | ||
mlsauce/lasso/fallbacksetup.py | ||
mlsauce/lasso/setup.py | ||
mlsauce/nonconformist/__init__.py | ||
mlsauce/nonconformist/acp.py | ||
mlsauce/nonconformist/base.py | ||
mlsauce/nonconformist/cp.py | ||
mlsauce/nonconformist/evaluation.py | ||
mlsauce/nonconformist/icp.py | ||
mlsauce/nonconformist/nc.py | ||
mlsauce/nonconformist/util.py | ||
mlsauce/predictioninterval/__init__.py | ||
mlsauce/predictioninterval/predictioninterval.py | ||
mlsauce/ridge/__init__.py | ||
mlsauce/ridge/_ridge.py | ||
mlsauce/ridge/_ridgec.c | ||
mlsauce/ridge/fallbacksetup.py | ||
mlsauce/ridge/setup.py | ||
mlsauce/stump/__init__.py | ||
mlsauce/stump/_stump_classifier.py | ||
mlsauce/stump/_stumpc.c | ||
mlsauce/stump/fallbacksetup.py | ||
mlsauce/stump/setup.py | ||
mlsauce/tests/__init__.py | ||
mlsauce/tests/test_adaopt.py | ||
mlsauce/utils/__init__.py | ||
mlsauce/utils/get_beta.py | ||
mlsauce/utils/progress_bar.py | ||
mlsauce/utils/memoryuse/__init__.py | ||
mlsauce/utils/memoryuse/mem_usage.py | ||
mlsauce/utils/misc/__init__.py | ||
mlsauce/utils/misc/misc.py | ||
mlsauce/utils/sampling/__init__.py | ||
mlsauce/utils/sampling/rowsubsampling.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
numpy | ||
Cython | ||
joblib | ||
pandas | ||
requests | ||
scikit-learn | ||
scipy | ||
tqdm | ||
jax | ||
jaxlib | ||
|
||
[alldeps] | ||
numpy>=1.13.0 | ||
scipy>=0.19.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
mlsauce |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import os | ||
from distutils.core import setup | ||
from Cython.Build import cythonize | ||
|
||
dir_path = os.path.dirname(os.path.realpath(__file__)) | ||
|
||
setup(ext_modules=cythonize(os.path.join(dir_path, "_adaoptc.pyx"), | ||
compiler_directives={'language_level' : "3"})) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from distutils.core import setup | ||
from Cython.Build import cythonize | ||
import os | ||
|
||
dir_path = os.path.dirname(os.path.realpath(__file__)) | ||
|
||
setup(ext_modules=cythonize(os.path.join(dir_path, "_stumpc.pyx"), | ||
compiler_directives={'language_level' : "3"})) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from distutils.core import setup | ||
from Cython.Build import cythonize | ||
import os | ||
|
||
dir_path = os.path.dirname(os.path.realpath(__file__)) | ||
|
||
setup(ext_modules=cythonize(os.path.join(dir_path, "_lassoc.pyx"), | ||
compiler_directives={'language_level' : "3"})) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from distutils.core import setup | ||
from Cython.Build import cythonize | ||
import os | ||
|
||
dir_path = os.path.dirname(os.path.realpath(__file__)) | ||
|
||
setup(ext_modules=cythonize(os.path.join(dir_path, "_ridgec.pyx"), | ||
compiler_directives={'language_level' : "3"})) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from distutils.core import setup | ||
from Cython.Build import cythonize | ||
import os | ||
|
||
dir_path = os.path.dirname(os.path.realpath(__file__)) | ||
|
||
setup(ext_modules=cythonize(os.path.join(dir_path, "_stumpc.pyx"), | ||
compiler_directives={'language_level' : "3"})) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters