-
Notifications
You must be signed in to change notification settings - Fork 6
Cross validation (nodes or CSV files)
- Run Decision Tree procedure - map two sets of nodes or CSV file paths for training and testing respectively
RETURN main.cvIG("class_label","number_of_folds")
This procedure is used to display cross-validation time for data from the graph database for InfoGain. "class_label" is the target attribute of the dataset. "number_of_folds" defines the number of folds for the cross-validation.
RETURN main.cvGR("class_label","number_of_folds")
This procedure is used to display cross-validation time for data from the graph database for GainRatio. "class_label" is the target attribute of the dataset. "number_of_folds" defines the number of folds for the cross-validation.
RETURN main.cvGI("class_label","number_of_folds")
This procedure is used to display cross-validation time for data from the graph database for GiniIndex. "class_label" is the target attribute of the dataset. "number_of_folds" defines the number of folds for the cross-validation.
RETURN main.cvIGCsv("class_label","number_of_folds")
This procedure is used to display cross-validation time for data from the graph database for InfoGain. "class_label" is the target attribute of the dataset. "number_of_folds" defines the number of folds for the cross-validation.
RETURN main.cvGRCsv("class_label","number_of_folds")
This procedure is used to display cross-validation time for data from the graph database for GainRatio. "class_label" is the target attribute of the dataset. "number_of_folds" defines the number of folds for the cross-validation.
RETURN main.cvGICsv("class_label","number_of_folds")
This procedure is used to display cross-validation time for data from the graph database for GiniIndex. "class_label" is the target attribute of the dataset. "number_of_folds" defines the number of folds for the cross-validation.