From 731ea219fd13db8710b44da43ccffde37511747a Mon Sep 17 00:00:00 2001 From: "Timothy Z." Date: Tue, 10 Jun 2025 23:50:13 +0300 Subject: [PATCH] fix(logistic_regression): typo in comment (#891) --- src/machine_learning/logistic_regression.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/machine_learning/logistic_regression.rs b/src/machine_learning/logistic_regression.rs index fc020a795ac..645cd960f83 100644 --- a/src/machine_learning/logistic_regression.rs +++ b/src/machine_learning/logistic_regression.rs @@ -1,7 +1,7 @@ use super::optimization::gradient_descent; use std::f64::consts::E; -/// Returns the wieghts after performing Logistic regression on the input data points. +/// Returns the weights after performing Logistic regression on the input data points. pub fn logistic_regression( data_points: Vec<(Vec, f64)>, iterations: usize,