Skip to content

Commit f932b3b

Browse files
authored
Updated docstring for CVMatrix and NaiveCVMatrix. (#10)
1 parent 8d0e5ef commit f932b3b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

cvmatrix/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.0.0"
1+
__version__ = "3.0.0.post1"

cvmatrix/cvmatrix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class CVMatrix:
5353
scale_Y : bool, optional, default=True
5454
Whether to scale `Y` before computation of
5555
:math:`\mathbf{X}^{\mathbf{T}}\mathbf{W}\mathbf{Y}` by dividing each row with
56-
the row of `X`'s column-wise weighted standard deviations. The row of
56+
the row of `Y`'s column-wise weighted standard deviations. The row of
5757
column-wise weighted standard deviations is computed on the training set for
5858
each fold to avoid data leakage. This parameter is ignored if `Y` is `None`.
5959

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "cvmatrix"
3-
version = "3.0.0"
3+
version = "3.0.0.post1"
44
description = "Fast computation of possibly weighted and possibly centered/scaled training set kernel matrices in a cross-validation setting."
55
authors = ["Sm00thix <oleemail@icloud.com>"]
66
maintainers = ["Sm00thix <oleemail@icloud.com>"]

tests/naive_cvmatrix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class NaiveCVMatrix(CVMatrix):
5252
scale_Y : bool, optional, default=True
5353
Whether to scale `Y` before computation of
5454
:math:`\mathbf{X}^{\mathbf{T}}\mathbf{W}\mathbf{Y}` by dividing each row with
55-
the row of `X`'s column-wise weighted standard deviations. The row of
55+
the row of `Y`'s column-wise weighted standard deviations. The row of
5656
column-wise weighted standard deviations is computed on the training set for
5757
each fold to avoid data leakage. This parameter is ignored if `Y` is `None`.
5858

0 commit comments

Comments
 (0)