-
Notifications
You must be signed in to change notification settings - Fork 22
Miscellaneous typos and code cleaning #264
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
Changes from 6 commits
82ff826
46d2fca
25a96f6
64438a9
9f0a99e
91f80b1
1f91002
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -97,11 +97,11 @@ class PCovC(LinearClassifierMixin, _BasePCov): | |||||||||||||
Must be of range [0.0, infinity). | ||||||||||||||
|
||||||||||||||
space: {'feature', 'sample', 'auto'}, default='auto' | ||||||||||||||
whether to compute the PCovC in `sample` or `feature` space | ||||||||||||||
default=`sample` when :math:`{n_{samples} < n_{features}}` and | ||||||||||||||
whether to compute the PCovC in `sample` or `feature` space. | ||||||||||||||
Default = `sample` when :math:`{n_{samples} < n_{features}}` and | ||||||||||||||
|
Default = `sample` when :math:`{n_{samples} < n_{features}}` and | |
The default value is `sample` when :math:`{n_{samples} < n_{features}}` and |
or similar.
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.
Changed!
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.
Did you push the changes. Somehow I don't see them here?
Outdated
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.
If you want to do a code highlighting use double ticks ``. Our documentation pages use rst where inline codes are highlighted with double ticks. Sorry for the confusion and this very subtle difference between markdown and rst.
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.
Ok, that makes sense. I think the reason I have single ticks is to match how PCovR/KPCovR docstrings handle `precomputed`, but I will keep that in mind
Outdated
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.
classifier: `estimator object` or `precomputed`, default=None | |
classifier: ``estimator object`` or ``precomputed``, default=None |
Outdated
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.
whether to compute the PCovC in `sample` or `feature` space. | |
The default is = `sample` when :math:`{n_{samples} < n_{features}}` | |
and `feature` when :math:`{n_{features} < n_{samples}}` | |
whether to compute the PCovC in ``sample`` or ``feature`` space. | |
The default is equal to ``sample`` when :math:`{n_{samples} < n_{features}}` | |
and ``feature`` when :math:`{n_{features} < n_{samples}}` |
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -88,9 +88,9 @@ class PCovR(RegressorMixin, MultiOutputMixin, _BasePCov): | |||||||||
range [0.0, infinity). | ||||||||||
|
||||||||||
space: {'feature', 'sample', 'auto'}, default='auto' | ||||||||||
whether to compute the PCovR in `sample` or `feature` space default=`sample` | ||||||||||
when :math:`{n_{samples} < n_{features}}` and `feature` when | ||||||||||
:math:`{n_{features} < n_{samples}}` | ||||||||||
whether to compute the PCovR in `sample` or `feature` space. | ||||||||||
The default is = `sample` when :math:`{n_{samples} < n_{features}}` | ||||||||||
and `feature` when :math:`{n_{features} < n_{samples}}` | ||||||||||
|
The default is = `sample` when :math:`{n_{samples} < n_{features}}` | |
and `feature` when :math:`{n_{features} < n_{samples}}` | |
The default is equal to ``sample`` when :math:`{n_{samples} < n_{features}}` | |
and ``feature`` when :math:`{n_{features} < n_{samples}}` |
Outdated
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.
whether to compute the PCovR in `sample` or `feature` space. Default = `sample` | |
whether to compute the PCovR in `sample` or `feature` space. Default is equal to ``sample`` |
Outdated
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.
Regression weights, optional when regressor = `precomputed`. If not | |
Regression weights, optional when regressor is ``precomputed``. If not |
Uh oh!
There was an error while loading. Please reload this page.