We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05ee005 commit 731ea21Copy full SHA for 731ea21
src/machine_learning/logistic_regression.rs
@@ -1,7 +1,7 @@
1
use super::optimization::gradient_descent;
2
use std::f64::consts::E;
3
4
-/// Returns the wieghts after performing Logistic regression on the input data points.
+/// Returns the weights after performing Logistic regression on the input data points.
5
pub fn logistic_regression(
6
data_points: Vec<(Vec<f64>, f64)>,
7
iterations: usize,
0 commit comments