-
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("targetAttribute","number_of_folds")
This procedure is used to display cross-validation time for data from the graph database for InfoGain. "targetAttribute" is the target attribute of the dataset. "number_of_folds" defines the number of folds for the cross-validation.
RETURN main.cvGR("targetAttribute","number_of_folds")
This procedure is used to display cross-validation time for data from the graph database for GainRatio. "targetAttribute" is the target attribute of the dataset. "number_of_folds" defines the number of folds for the cross-validation.
RETURN main.cvGI("targetAttribute","number_of_folds")
This procedure is used to display cross-validation time for data from the graph database for GiniIndex. "targetAttribute" 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("csvPath","targetAttribute","number_of_folds")
This procedure is used to display cross-validation time for data from the graph database for InfoGain. "targetAttribute" is the target attribute of the dataset. "number_of_folds" defines the number of folds for the cross-validation.
RETURN main.cvGRCsv("csvPath","targetAttribute","number_of_folds")
This procedure is used to display cross-validation time for data from the graph database for GainRatio. "targetAttribute" is the target attribute of the dataset. "number_of_folds" defines the number of folds for the cross-validation.
RETURN main.cvGICsv("csvPath","targetAttribute","number_of_folds")
This procedure is used to display cross-validation time for data from the graph database for GiniIndex. "targetAttribute" is the target attribute of the dataset. "number_of_folds" defines the number of folds for the cross-validation.