Skip to content

Commit 731ea21

Browse files
authored
fix(logistic_regression): typo in comment (#891)
1 parent 05ee005 commit 731ea21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/machine_learning/logistic_regression.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use super::optimization::gradient_descent;
22
use std::f64::consts::E;
33

4-
/// Returns the wieghts after performing Logistic regression on the input data points.
4+
/// Returns the weights after performing Logistic regression on the input data points.
55
pub fn logistic_regression(
66
data_points: Vec<(Vec<f64>, f64)>,
77
iterations: usize,

0 commit comments

Comments
 (0)