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.