Commit Graph

82 Commits

Author SHA1 Message Date
unknown e095c4b358 changed format string in no inliers exception to be 2.6 compatible 2015-07-11 20:35:32 -05:00
unknown 3c8c492efd fixed newlines, comments 2015-07-11 13:25:20 -05:00
unknown a1391c2450 if there are no inliers, raise ValueError
mentioning possible cause being residual_threshold too low along
with the residual_threshold,
and a test that the ValueError occurs
2015-07-11 12:39:05 -05:00
unknown 337fa5c464 compare residual_threshold directly with 0.0 2015-07-11 11:36:01 -05:00
Andreas Mueller 0650d5502e DOC adding backlinks to docstrings 2015-06-03 00:24:04 -04:00
Andreas Mueller da021ab1eb FIX ransac output shape, add test for regressor output shapes 2015-05-19 15:26:26 -04:00
Raghav R V abd31d2cad MAINT Make uniform the error raised for not fitted condition 2015-01-12 00:33:40 +05:30
Andreas Mueller c235c3b566 ENH add allowed_sparse named argument for @ogrisel 2014-07-20 15:31:28 +02:00
Andreas Mueller 6e2a83b4e1 remove check_arrays stuff and old input validation 2014-07-20 13:31:45 +02:00
Gael Varoquaux c325423e25 ENH: support non-ndarray subclasses in supervised estimator 2014-07-17 11:44:08 +02:00
Olivier Grisel 514f07306f FIX #3372: unstable input check test for RANSACRegressor 2014-07-13 19:39:55 +02:00
Johannes Schönberger 1d2baf8d0f ENH: Add dynamic maximum trial determination to RANSACRegressor 2014-04-13 16:52:18 +02:00
Olivier Grisel b1aea57f2e FIX: make RANSACRegressor pass test_common 2013-10-20 17:09:52 +02:00
Johannes Schönberger 20e45bf2c8 Rename estimator to base_estimator 2013-10-20 15:58:05 +02:00
Johannes Schönberger 8cae900f25 Clarify default estimator by explicitly instantiating the class 2013-10-20 15:58:05 +02:00
Johannes Schönberger 555bcc8b76 Raise ValueError for non-integer absolute min_samples value 2013-10-20 15:58:04 +02:00
Johannes Schönberger 6e2fb82b79 Add RegressorMixin base class 2013-10-20 15:58:04 +02:00
Johannes Schönberger ae1bea9bd4 Use LinearRegressor as default estimator for all data types 2013-10-20 15:58:04 +02:00
Johannes Schönberger a555437cd9 Rename base_estimator to estimator 2013-10-20 15:58:04 +02:00
Johannes Schönberger c2a2bfe45b Rename RANSAC to RANSACRegressor 2013-10-20 15:58:04 +02:00
Johannes Schönberger a01b871744 Add note about computational cost of is_*_valid functions 2013-10-20 15:58:04 +02:00
Johannes Schönberger 0a0b5d964b Make sure dimension is correct for all estimators 2013-10-20 15:58:04 +02:00
Johannes Schönberger 8c079e98f4 Fix typo 2013-10-20 15:58:04 +02:00
Johannes Schönberger 6ec1281622 Sample subset without replacement 2013-10-20 15:58:03 +02:00
Johannes Schönberger 6ee0197a5b Remove _n_ from min_samples 2013-10-20 15:58:03 +02:00
Johannes Schönberger 338b9f60c5 Make sure min_n_samples is not larger than number of samples 2013-10-20 15:58:03 +02:00
Johannes Schönberger bc457501ac Add missing parameter of score method 2013-10-20 15:58:03 +02:00
Johannes Schönberger e5e04b72b8 Fix y paramter description of score 2013-10-20 15:58:03 +02:00
Johannes Schönberger 5be0d71bf2 Fix return value description of predict 2013-10-20 15:58:03 +02:00
Johannes Schönberger 69113d1663 Change naming scheme of variables for consistency 2013-10-20 15:58:03 +02:00
Johannes Schönberger 018a947bb1 Fix parameter description of X and y 2013-10-20 15:58:02 +02:00
Johannes Schönberger b20f13c75e Improve and document n_trials_ attribute 2013-10-20 15:58:02 +02:00
Johannes Schönberger 3166e22750 Derive Ransac also from MetaEstimatorMixin 2013-10-20 15:58:02 +02:00
Johannes Schönberger 3423f16798 Improve description of base_estimator parameter 2013-10-20 15:58:02 +02:00
Johannes Schönberger 3342f4063e Add more detailed description for score method 2013-10-20 15:58:02 +02:00
Johannes Schönberger 722a467358 Remove double-space 2013-10-20 15:58:02 +02:00
Johannes Schönberger c9199ac732 PEP8 indentation fix 2013-10-20 15:58:02 +02:00
Johannes Schönberger 3120a3c1ed Use MAD as default residual threshold 2013-10-20 15:58:01 +02:00
Johannes Schönberger 58d56541ca Set random state of base estimator as well 2013-10-20 15:58:01 +02:00
Johannes Schönberger 0b278f26b9 Remove email adress 2013-10-20 15:58:01 +02:00
Johannes Schönberger ada477846a Improve ValueError description 2013-10-20 15:58:01 +02:00
Johannes Schönberger 2c8f27b6ee Stylistic multi-line statement change 2013-10-20 15:58:01 +02:00
Johannes Schönberger 51166374de Fix bug in is_data_valid test 2013-10-20 15:58:01 +02:00
Johannes Schönberger d4cd61d1b6 Add more descriptive explanation for raised ValueError 2013-10-20 15:58:01 +02:00
Johannes Schönberger 218c905bad Remove empty line 2013-10-20 15:58:01 +02:00
Johannes Schönberger b301464fb3 Add reference to narrative documentation for detailed description of RANSAC 2013-10-20 15:58:00 +02:00
Johannes Schönberger f529fd40c1 Add support for multi-dimensional target-values 2013-10-20 15:58:00 +02:00
Johannes Schönberger 54475d43b8 Change default parameters, so example works without specific parameters 2013-10-20 15:58:00 +02:00
Johannes Schönberger 8ca857b8ce Remove duplicate detailed description from doc string 2013-10-20 15:58:00 +02:00
Johannes Schönberger f4991e61ef Fix description of default base estimator behavior and add corresponding test case 2013-10-20 15:58:00 +02:00