forked from gmtiddia/ngpu_dynamic_network_creation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathval_config.py
24 lines (18 loc) · 845 Bytes
/
val_config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- coding: utf-8 -*-
#
# configuration file for validation process for the cortical microcircuit model
configuration = {
# number of performed simulations
'nrun': 100,
# absolute paths for simulation output
# output directories should be data{0..nrun-1}
'sim1_path': "/home/gianmarco/ngpu_dynamic_network__creation/data/recording_data/nestgpu_main_set1/",
'sim2_path': "/home/gianmarco/ngpu_dynamic_network__creation/data/recording_data/nestgpu_main_set2/",
'sim3_path': "/home/gianmarco/ngpu_dynamic_network__creation/data/recording_data/nestgpu_conn/",
# distributions boxplot (fring rate, CV ISI and Pearson correlation)
'distributions': ['firing_rate', 'cv_isi', 'correlation'],
'plot_distributions': True,
'distribution_visual': 'violinplot', #['violinplot', 'boxplot']
# pairwise EMD comparison
'emd': True,
'emd_boxplots': True}