Skip to content

Commit

Permalink
DOC Clarify RANSAC documentation and fix broken reference (#30226)
Browse files Browse the repository at this point in the history
  • Loading branch information
JakobBull authored Nov 7, 2024
1 parent d446dbf commit 5ca2f4f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sklearn/linear_model/_ransac.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,8 @@ class RANSACRegressor(
Attributes
----------
estimator_ : object
Best fitted model (copy of the `estimator` object).
Final model fitted on the inliers predicted by the "best" model found
during RANSAC sampling (copy of the `estimator` object).
n_trials_ : int
Number of random selection trials until one of the stop criteria is
Expand Down Expand Up @@ -239,7 +240,7 @@ class RANSACRegressor(
----------
.. [1] https://en.wikipedia.org/wiki/RANSAC
.. [2] https://www.sri.com/wp-content/uploads/2021/12/ransac-publication.pdf
.. [3] http://www.bmva.org/bmvc/2009/Papers/Paper355/Paper355.pdf
.. [3] https://bmva-archive.org.uk/bmvc/2009/Papers/Paper355/Paper355.pdf
Examples
--------
Expand Down

0 comments on commit 5ca2f4f

Please sign in to comment.