-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
18 lines (14 loc) · 857 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from data.artificial_data import *
from handle_inputs import *
from tiago_data import *
from modules.run_dnn_modules import *
# get hyperparameters
general_parameters, mlp_parameters, autoencoder_parameters, artificial_parameters = get_hyperparams()
# ----------------------------------------------- ARTIFICIAL DATA THROUGH VAE ------------------------------------------------
# whether or not to run on artificial data
if general_parameters['run_artificial'] is True:
artificial_main(artificial_parameters)
# ------------------------------------------------------- TIAGO DATA THROUGH VAE ---------------------------------------------------------
# whether or not to run experimental data
if general_parameters['run_tiago_data'] is True:
analyze_tiago_data_main(general_parameters, mlp_parameters, autoencoder_parameters, artificial_parameters)