From 4ad323970f389e863fcb34d8a02aa81387fda14d Mon Sep 17 00:00:00 2001 From: mercierc <54903400+mercierc@users.noreply.github.com> Date: Wed, 20 May 2020 07:26:02 +0200 Subject: [PATCH] Update src/mlpack/methods/bayesian_linear_regression/bayesian_linear_regression_main.cpp Co-authored-by: Ryan Curtin --- .../bayesian_linear_regression_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mlpack/methods/bayesian_linear_regression/bayesian_linear_regression_main.cpp b/src/mlpack/methods/bayesian_linear_regression/bayesian_linear_regression_main.cpp index 1a0cafdc1e..be7dac1d9c 100644 --- a/src/mlpack/methods/bayesian_linear_regression/bayesian_linear_regression_main.cpp +++ b/src/mlpack/methods/bayesian_linear_regression/bayesian_linear_regression_main.cpp @@ -51,7 +51,7 @@ PROGRAM_INFO("BayesianLinearRegression", "dimension, t is a vector of targets, alpha is the precision of the " "gaussian prior distribtion of w, and w is the solution to determine. " "\n\n" - "The Bayesian linear regression comptutes the posterior distribution of " + "The Bayesian linear regression computes the posterior distribution of " "the parameters by the Bayes's rule : " "\n\n" " p(w|X) = p(X,t|w) * p(w|alpha) / p(X)"