From 31d3a2d394430f710f26cdd9f88d8bbbd07f8b9b Mon Sep 17 00:00:00 2001 From: Andru Liu <90433630+WallabyLester@users.noreply.github.com> Date: Tue, 8 Oct 2024 21:12:41 -0700 Subject: [PATCH] Changed evaluate to predict. --- CPP_Implementation/rbf_model.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CPP_Implementation/rbf_model.h b/CPP_Implementation/rbf_model.h index 4752c8c..357b2c0 100644 --- a/CPP_Implementation/rbf_model.h +++ b/CPP_Implementation/rbf_model.h @@ -34,12 +34,12 @@ public: ~RBFModel(); /** - * @brief Evaluate the RBF output for a given input. + * @brief Predict the RBF output for a given input. * * @param input A pointer to an array of input values. * @return The computed output of the RBF model. */ - double evaluate(const double* input); + double predict(const double* input); /** * @brief Adapt weights based on the error and learning rate.