Skip to content

Commit 5328195

Browse files
committed
Remove the word "here"
1 parent 8f6323b commit 5328195

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

machine_learning/dimensionality_reduction.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def principal_component_analysis(features: np.ndarray, dimensions: int) -> np.nd
9494
"""
9595
Principal Component Analysis.
9696
97-
For more details, see here: https://en.wikipedia.org/wiki/Principal_component_analysis.
97+
For more details, see: https://en.wikipedia.org/wiki/Principal_component_analysis.
9898
Parameters:
9999
* features: the features extracted from the dataset
100100
* dimensions: to filter the projected data for the desired dimension
@@ -132,7 +132,7 @@ def linear_discriminant_analysis(
132132
"""
133133
Linear Discriminant Analysis.
134134
135-
For more details, see here: https://en.wikipedia.org/wiki/Linear_discriminant_analysis.
135+
For more details, see: https://en.wikipedia.org/wiki/Linear_discriminant_analysis.
136136
Parameters:
137137
* features: the features extracted from the dataset
138138
* labels: the class labels of the features

0 commit comments

Comments
 (0)