-
-
Notifications
You must be signed in to change notification settings - Fork 26.2k
[MRG] Remove unnecessary backticks in docs #8432
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
Conversation
@@ -113,12 +113,12 @@ class SelectFromModel(BaseEstimator, SelectorMixin): | |||
|
|||
Attributes | |||
---------- | |||
`estimator_`: an estimator | |||
estimator_: an estimator |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
require space before colon
The base estimator from which the transformer is built. | ||
This is stored only when a non-fitted estimator is passed to the | ||
``SelectFromModel``, i.e when prefit is False. | ||
|
||
`threshold_`: float | ||
threshold_: float |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
require space before colon
Codecov Report
@@ Coverage Diff @@
## master #8432 +/- ##
=======================================
Coverage 94.75% 94.75%
=======================================
Files 342 342
Lines 60902 60902
=======================================
Hits 57708 57708
Misses 3194 3194
Continue to review full report at Codecov.
|
@tzano I have edited your PR description, please use "Fixes #issueNumber" this way the associated issue gets closed automatically when the PR is merged. |
Rerunning the same hacky
At least, gradient_boosting, ransac and cluster/unsupervised seems like they need fixing. |
Thanks @lesteve. I have pushed the changes. |
sklearn/linear_model/ransac.py
Outdated
@@ -68,8 +68,8 @@ class RANSACRegressor(BaseEstimator, MetaEstimatorMixin, RegressorMixin): | |||
base_estimator : object, optional | |||
Base estimator object which implements the following methods: | |||
|
|||
* `fit(X, y)`: Fit model to given training data and target values. | |||
* `score(X, y)`: Returns the mean accuracy on the given test data, | |||
* fit(X, y) : Fit model to given training data and target values. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry I did not read the git grep
output correctly. Leave this file as it was.
LGTM, by the way |
Merged, thanks a lot! |
Reference Issue
Fixes #8430
What does this implement/fix? Explain your changes.
Removed unnecessary backticks in docs from: