forked from MarioTheOne/GRETEL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate_datasets.py
24 lines (16 loc) · 951 Bytes
/
generate_datasets.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from src.evaluation.evaluator_manager import EvaluatorManager
import sys
#config_file_path = './linux-server/manager_config_lite.json'
config_file_path = './config/CIKM/manager_config_example_all.json'
#config_file_path = sys.argv[1]
runno= 0
print('Creating the evaluation manager.......................................................')
eval_manager = EvaluatorManager(config_file_path, run_number=runno)
print('Generating Synthetic Datasets...........................................................')
eval_manager.generate_synthetic_datasets()
# print('Training the oracles......................................................................')
# eval_manager.train_oracles()
#print('Creating the evaluators...................................................................')
#eval_manager.create_evaluators()
#print('Evaluating the explainers..................................................................')
#eval_manager.evaluate()