Skip to content

Commit a870fb4

Browse files
link correctly to internal methods (uxlfoundation#2750)
1 parent 55a3e6f commit a870fb4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sklearnex/basic_statistics/incremental_basic_statistics.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ class IncrementalBasicStatistics(oneDALEstimator, BaseEstimator):
4444
Incremental estimator for basic statistics.
4545
4646
Calculates basic statistics on the given data, allows for computation
47-
when the data are split into batches. The user can use ``partial_fit``
48-
method to provide a single batch of data or use the ``fit`` method to
47+
when the data are split into batches. The user can use :meth:`partial_fit`
48+
method to provide a single batch of data or use the :meth:`fit` method to
4949
provide the entire dataset.
5050
5151
Parameters
@@ -55,7 +55,7 @@ class IncrementalBasicStatistics(oneDALEstimator, BaseEstimator):
5555
5656
batch_size : int, default=None
5757
The number of samples to use for each batch. Only used when calling
58-
``fit``. If ``batch_size`` is ``None``, then ``batch_size``
58+
:meth:`fit`. If ``batch_size`` is ``None``, then ``batch_size``
5959
is inferred from the data and set to ``5 * n_features``.
6060
6161
Attributes
@@ -99,7 +99,7 @@ class IncrementalBasicStatistics(oneDALEstimator, BaseEstimator):
9999
Inferred batch size from ``batch_size``.
100100
101101
n_features_in_ : int
102-
Number of features seen during ``fit`` or ``partial_fit``.
102+
Number of features seen during :meth:`fit` or :meth:`partial_fit`.
103103
104104
Notes
105105
-----

0 commit comments

Comments
 (0)