-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
remove Y from fit in OneClassSVM #1
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
Comments
glouppe
referenced
this issue
in glouppe/scikit-learn
Aug 9, 2011
This commit includes the following list of changes: - Documentation has been enhanced and completed. - Examples have been added. - The `percentage` (float) parameter has become `step` (int or float), and indicates the number of features to remove at each iteration (int), or the percentage of features to remove (float) with respect to the original number of features. - Exactly `n_features_to_select` are now always selected. It may not always have been the case before, as too many features could have been removed at a time in the last step of the elimination. - The `ranking_` attribute is now a proper ranking of the features (i.e., best features are ranked #1). - The code of `RFECV` has been made simpler. - The `cv` argument of RFECV.fit has been moved into the constructor and is now passed through `check_cv`. - Tests.
VirgileFritsch
referenced
this issue
in VirgileFritsch/scikit-learn
Nov 28, 2011
npinto
pushed a commit
to npinto/scikit-learn
that referenced
this issue
Apr 12, 2012
Closed
Merged
amueller
added a commit
that referenced
this issue
Jul 26, 2012
REF: hack to be able to share distutils utilities.
oddskool
added a commit
to oddskool/scikit-learn
that referenced
this issue
May 27, 2013
… auto-download dataset)
oddskool
added a commit
to oddskool/scikit-learn
that referenced
this issue
Jun 13, 2013
… auto-download dataset)
6 tasks
Closed
sergeyf
referenced
this issue
in sergeyf/scikit-learn
Nov 7, 2016
amueller
pushed a commit
that referenced
this issue
Dec 1, 2016
…#7838) * initial commit for return_std * initial commit for return_std * adding tests, examples, ARD predict_std * adding tests, examples, ARD predict_std * a smidge more documentation * a smidge more documentation * Missed a few PEP8 issues * Changing predict_std to return_std #1 * Changing predict_std to return_std #2 * Changing predict_std to return_std #3 * Changing predict_std to return_std final * adding better plots via polynomial regression * trying to fix flake error * fix to ARD plotting issue * fixing some flakes * Two blank lines part 1 * Two blank lines part 2 * More newlines! * Even more newlines * adding info to the doc string for the two plot files * Rephrasing "polynomial" for Bayesian Ridge Regression * Updating "polynomia" for ARD * Adding more formal references * Another asked-for improvement to doc string. * Fixing flake8 errors * Cleaning up the tests a smidge. * A few more flakes * requested fixes from Andy * Mini bug fix * Final pep8 fix * pep8 fix round 2 * Fix beta_ to alpha_ in the comments
sergeyf
referenced
this issue
in sergeyf/scikit-learn
Feb 28, 2017
…scikit-learn#7838) * initial commit for return_std * initial commit for return_std * adding tests, examples, ARD predict_std * adding tests, examples, ARD predict_std * a smidge more documentation * a smidge more documentation * Missed a few PEP8 issues * Changing predict_std to return_std #1 * Changing predict_std to return_std scikit-learn#2 * Changing predict_std to return_std scikit-learn#3 * Changing predict_std to return_std final * adding better plots via polynomial regression * trying to fix flake error * fix to ARD plotting issue * fixing some flakes * Two blank lines part 1 * Two blank lines part 2 * More newlines! * Even more newlines * adding info to the doc string for the two plot files * Rephrasing "polynomial" for Bayesian Ridge Regression * Updating "polynomia" for ARD * Adding more formal references * Another asked-for improvement to doc string. * Fixing flake8 errors * Cleaning up the tests a smidge. * A few more flakes * requested fixes from Andy * Mini bug fix * Final pep8 fix * pep8 fix round 2 * Fix beta_ to alpha_ in the comments
Sundrique
pushed a commit
to Sundrique/scikit-learn
that referenced
this issue
Jun 14, 2017
…scikit-learn#7838) * initial commit for return_std * initial commit for return_std * adding tests, examples, ARD predict_std * adding tests, examples, ARD predict_std * a smidge more documentation * a smidge more documentation * Missed a few PEP8 issues * Changing predict_std to return_std scikit-learn#1 * Changing predict_std to return_std scikit-learn#2 * Changing predict_std to return_std scikit-learn#3 * Changing predict_std to return_std final * adding better plots via polynomial regression * trying to fix flake error * fix to ARD plotting issue * fixing some flakes * Two blank lines part 1 * Two blank lines part 2 * More newlines! * Even more newlines * adding info to the doc string for the two plot files * Rephrasing "polynomial" for Bayesian Ridge Regression * Updating "polynomia" for ARD * Adding more formal references * Another asked-for improvement to doc string. * Fixing flake8 errors * Cleaning up the tests a smidge. * A few more flakes * requested fixes from Andy * Mini bug fix * Final pep8 fix * pep8 fix round 2 * Fix beta_ to alpha_ in the comments
maskani-moh
pushed a commit
to maskani-moh/scikit-learn
that referenced
this issue
Nov 15, 2017
…scikit-learn#7838) * initial commit for return_std * initial commit for return_std * adding tests, examples, ARD predict_std * adding tests, examples, ARD predict_std * a smidge more documentation * a smidge more documentation * Missed a few PEP8 issues * Changing predict_std to return_std scikit-learn#1 * Changing predict_std to return_std scikit-learn#2 * Changing predict_std to return_std scikit-learn#3 * Changing predict_std to return_std final * adding better plots via polynomial regression * trying to fix flake error * fix to ARD plotting issue * fixing some flakes * Two blank lines part 1 * Two blank lines part 2 * More newlines! * Even more newlines * adding info to the doc string for the two plot files * Rephrasing "polynomial" for Bayesian Ridge Regression * Updating "polynomia" for ARD * Adding more formal references * Another asked-for improvement to doc string. * Fixing flake8 errors * Cleaning up the tests a smidge. * A few more flakes * requested fixes from Andy * Mini bug fix * Final pep8 fix * pep8 fix round 2 * Fix beta_ to alpha_ in the comments
stsievert
pushed a commit
to stsievert/scikit-learn
that referenced
this issue
Jun 11, 2018
Merging remote head
GaelVaroquaux
pushed a commit
that referenced
this issue
Jul 17, 2018
* Add averaging option to AMI and NMI Leave current behavior unchanged * Flake8 fixes * Incorporate tests of means for AMI and NMI * Add note about `average_method` in NMI * Update docs from AMI, NMI changes (#1) * Correct the NMI and AMI descriptions in docs * Update docstrings due to averaging changes - V-measure - Homogeneity - Completeness - NMI - AMI * Update documentation and remove nose tests (#2) * Update v0.20.rst * Update test_supervised.py * Update clustering.rst * Fix multiple spaces after operator * Rename all arguments * No more arbitrary values! * Improve handling of floating-point imprecision * Clearly state when the change occurs * Update AMI/NMI docs * Update v0.20.rst * Catch FutureWarnings in AMI and NMI
LisaThomas9
pushed a commit
to LisaThomas9/scikit-learn
that referenced
this issue
Sep 29, 2018
rc
pushed a commit
to rc/scikit-learn
that referenced
this issue
Jan 28, 2019
master update since Oct 7
mvdoc
pushed a commit
to mvdoc/scikit-learn
that referenced
this issue
Nov 2, 2019
…essor DOC fix numpydoc requirements for GradientBoostingRegressor
3 tasks
ericpre
pushed a commit
to ericpre/scikit-learn
that referenced
this issue
Apr 29, 2020
prismdata
pushed a commit
to prismdata/scikit-learn
that referenced
this issue
Oct 28, 2020
Create LICENSE
hongshaoyang
pushed a commit
to hongshaoyang/scikit-learn
that referenced
this issue
Nov 10, 2020
Merging changes from the main repository
Micky774
referenced
this issue
in Micky774/scikit-learn
Feb 15, 2022
looks good lets see what the ci says
Vincent-Maladiere
referenced
this issue
in Vincent-Maladiere/scikit-learn
Aug 3, 2022
Co-authored-by: Guillaume Lemaitre <[email protected]>
LilianBoulard
pushed a commit
to LilianBoulard/scikit-learn
that referenced
this issue
Jun 21, 2023
Add a hover label
chainesanbuenaventura
added a commit
to chainesanbuenaventura/scikit-learn
that referenced
this issue
Jun 21, 2023
This issue was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No description provided.
The text was updated successfully, but these errors were encountered: