-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfiling_paths.py
More file actions
21 lines (15 loc) · 771 Bytes
/
Copy pathfiling_paths.py
File metadata and controls
21 lines (15 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import os
path_model_Lor = 'Simulations' + os.path.sep + 'Lorenz_Atractor' + os.path.sep
path_model_NCLT = 'Simulations' + os.path.sep + 'NCLT' + os.path.sep
path_model_Toy = 'Simulations' + os.path.sep + 'Toy_problems' + os.path.sep
path_model_Pendulum = 'Simulations' + os.path.sep + 'Pendulum' + os.path.sep
path_model = path_model_Toy
# path_session = path_model + 'Experiment_GPS_RNN/'
'''
# Function for Outputting Path (used for cluster)
def getPathSession(noise_values, path_experiment = 'Testing/Experiment 1_Lower Taylor/', path_Taylor='J_gen=5/J_mdl=5/'):
path_noise = 'r_' + noise_values[0] + '/q_e' + noise_values[1] + '/'
print(path_noise)
path_session = path_model + path_experiment + path_noise + path_Taylor
return path_session
'''