Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Discretization #10848

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 22 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
f2b20f2
adding MDLP object to preprocessing folder
hlin117 Jun 1, 2015
e50bd34
fixed the spacings between error messages
hlin117 Jun 1, 2015
cf0d1a3
allowing mdlp to fit data in list format
hlin117 Jun 2, 2015
80ec412
fixed bug regarding floating point division
hlin117 Jun 2, 2015
4d81946
using more vectorized functions, and renamed variables
hlin117 Jun 2, 2015
f1e5adf
adding code to comply with scikit-learn guidelines
hlin117 Jun 2, 2015
68bb30e
trying to resolve travis build failures
hlin117 Jun 2, 2015
18fcd82
added more documentation, and renamed variables
hlin117 Jun 3, 2015
bfcc45c
more rigorous type checking using sklearn.utils
hlin117 Jun 3, 2015
00932fb
implemented mdlp with cut points, not intervals
hlin117 Jun 4, 2015
cd1da2c
got rid of partition_entropy function
hlin117 Jun 4, 2015
688d307
randomizing order before sorting
hlin117 Jun 6, 2015
8ff3e69
added shuffle option
hlin117 Jun 6, 2015
7c01f05
fixed bug with creating intervals
hlin117 Jun 16, 2015
247d0df
changed documentation, can now discretize 1-d arrays
hlin117 Jun 18, 2015
fc86f1c
MDLP: Added TransformerMixin parent class
hlin117 Aug 27, 2015
6b21f8e
MDLP: Added first test, need to add smaller test case
hlin117 Aug 27, 2015
cdb32e4
MDLP: Using Cython to speed up finding a good cut
hlin117 Aug 28, 2015
0e99188
MDLP: Adding checks for inputs to transform
hlin117 Sep 21, 2015
e05aabb
MDLP: Edited setup.py file
hlin117 Sep 21, 2015
54fa608
MDLP: Added more cython code, reworded some docs and checks
hlin117 Sep 21, 2015
94cfb7e
MDLP: Removed unnecessary print statement, and updated cpp file
hlin117 Sep 21, 2015
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions sklearn/preprocessing/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.so
2 changes: 1 addition & 1 deletion sklearn/preprocessing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""

from ._function_transformer import FunctionTransformer

from .discretization import MDLP
from .data import Binarizer
from .data import KernelCenterer
from .data import MinMaxScaler
Expand Down
Loading