minor fix

This commit is contained in:
Abhimanyu Dayal
2024-07-15 19:16:19 +05:30
parent d19d9be10b
commit abbba79f80
4 changed files with 4 additions and 4 deletions
@@ -1,5 +1,5 @@
/**
* @file methods/decision_tree/gain_functions/gini_gain.hpp
* @file methods/decision_tree/fitness_functions/gini_gain.hpp
* @author Ryan Curtin
*
* The GiniGain class, which is a fitness function (FitnessFunction) for
@@ -1,5 +1,5 @@
/**
* @file methods/decision_tree/gain_functions/information_gain.hpp
* @file methods/decision_tree/fitness_functions/information_gain.hpp
* @author Ryan Curtin
*
* An implementation of information gain, which can be used in place of Gini
@@ -1,5 +1,5 @@
/**
* @file methods/decision_tree/gain_functions/mad_gain.hpp
* @file methods/decision_tree/fitness_functions/mad_gain.hpp
* @author Rishabh Garg
*
* The mean absolute deviation gain class, a fitness function for regression
@@ -1,5 +1,5 @@
/**
* @file methods/decision_tree/gain_functions/mse_gain.hpp
* @file methods/decision_tree/fitness_functions/mse_gain.hpp
* @author Rishabh Garg
*
* The mean squared error gain class, which is a fitness funtion for