Skip to content

Commit 41ba9bf

Browse files
Julien RousselJulien Roussel
authored andcommitted
tests passing
1 parent 4676717 commit 41ba9bf

File tree

4 files changed

+1362
-79
lines changed

4 files changed

+1362
-79
lines changed

README.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,9 @@ The full documentation can be found `on this link <https://qolmat.readthedocs.io
103103
**How does Qolmat work ?**
104104

105105
Qolmat allows model selection for scikit-learn compatible imputation algorithms, by performing three steps pictured below:
106-
1) For each of the N folds, Qolmat artificially masks a set of observed values using a default or user specified `hole generator <explanation.html#hole-generator>`_,
106+
1) For each of the K folds, Qolmat artificially masks a set of observed values using a default or user specified `hole generator <explanation.html#hole-generator>`_,
107107
2) For each fold and each compared `imputation method <imputers.html>`_, Qolmat fills both the missing and the masked values, then computes each of the default or user specified `performance metrics <explanation.html#metrics>`_.
108-
3) For each compared imputer, Qolmat pools the computed metrics from the N folds into a single value.
108+
3) For each compared imputer, Qolmat pools the computed metrics from the K folds into a single value.
109109

110110
This is very similar in spirit to the `cross_val_score <https://scikit-learn.org/stable/modules/generated/sklearn.model_selection.cross_val_score.html>`_ function for scikit-learn.
111111

@@ -114,16 +114,16 @@ This is very similar in spirit to the `cross_val_score <https://scikit-learn.org
114114

115115
**Imputation methods**
116116

117-
The following table contains the available imputation methods.
117+
The following table contains the available imputation methods. We distinguish single imputation methods (aiming for pointwise accuracy, mostly deterministic) from multiple imputation methods (aiming for distribution similarity, mostly stochastic).
118118

119119
.. list-table::
120-
:widths: 25 70 15 15 20
120+
:widths: 25 70 15 15
121121
:header-rows: 1
122122

123123
* - Method
124124
- Description
125125
- Tabular or Time series
126-
- Single or multiple
126+
- Single or Multiple
127127
* - mean
128128
- Imputes the missing values using the mean along each column
129129
- tabular

0 commit comments

Comments
 (0)