-
Notifications
You must be signed in to change notification settings - Fork 6
Cross validation (nodes or CSV files)
- Query data - map neo4j nodes.
- Run the cross-validation from nodes procedures.
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.
- Run the Cross-validation for Csv files
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.