Skip to content
Prev Previous commit
Quote the original repo, not forks
  • Loading branch information
LukeMathWalker committed Jul 20, 2019
commit 85e11f8be9ede442cc576c08bf0ff726a1730597
2 changes: 1 addition & 1 deletion examples/linear_regression/linear_regression.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use ndarray_linalg::Solve;
/// b = (X^T X)^{-1} X^T y
/// where (X^T X)^{-1} X^T is known as the pseudoinverse or Moore-Penrose inverse.
///
/// Adapted from: https://github.com/xinscrs/numpy-ml
/// Adapted from: https://github.com/ddbourgin/numpy-ml
pub struct LinearRegression {
pub beta: Option<Array1<f64>>,
fit_intercept: bool,
Expand Down