Skip to content
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

Fix #46 #55

Merged
merged 5 commits into from
Dec 10, 2015
Merged

Fix #46 #55

merged 5 commits into from
Dec 10, 2015

Commits on Dec 9, 2015

  1. Configuration menu
    Copy the full SHA
    7271b5e View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2015

  1. PolynomialFeatures: remove bias term

    The bias feature causes issues for other operators.
    rhiever committed Dec 10, 2015
    Configuration menu
    Copy the full SHA
    49a86c8 View commit details
    Browse the repository at this point in the history
  2. Code cleanup

    1) Removed `dt_feature_selection()` because it is extremely slow with
    large numbers of columns, and should no longer be necessary thanks to
    PolynomialFeatures.
    
    2) The minimum number of n_neighbors for k-nearest neighbors
    classifiers is now 2.
    
    3) Limit the RFE step size to [0.1, 0.99] to keep its runtime in a
    reasonable range.
    
    4) Remove some extraneous docs for the TPOT class.
    rhiever committed Dec 10, 2015
    Configuration menu
    Copy the full SHA
    18acb82 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6629440 View commit details
    Browse the repository at this point in the history
  4. Add export code for preprocessing operators (#46)

    Added export support for:
    
    * StandardScaler
    
    * RobustScaler
    
    * PolynomialFeatures
    
    * PCA
    rhiever committed Dec 10, 2015
    Configuration menu
    Copy the full SHA
    72a7dcf View commit details
    Browse the repository at this point in the history