-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrun_training.py
48 lines (39 loc) · 1.59 KB
/
run_training.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
###################################################
#
# Script to launch the training
#
##################################################
import os, sys
import configparser
#config file to read from
config = configparser.RawConfigParser()
config.readfp(open(r'./configuration.txt'))
#===========================================
#name of the experiment
name_experiment = config.get('experiment name', 'name')
nohup = config.getboolean('training settings', 'nohup') #std output on log file?
# name_experiment = 'test'
# nohup = True
run_GPU = '' if sys.platform == 'win32' else ' THEANO_FLAGS=device=gpu,floatX=float32 '
#create a folder for the results
result_dir = name_experiment
print("\n1. Create directory for the results (if not already existing)")
if os.path.exists(result_dir):
print("Dir already existing")
elif sys.platform=='win32':
os.system('mkdir ' + result_dir)
else:
os.system('mkdir -p ' +result_dir)
print("copy the configuration file in the results folder")
if sys.platform=='win32':
os.system('copy configuration.txt .\\' +name_experiment+'\\'+name_experiment+'_configuration.txt')
else:
os.system('cp configuration.txt ./' +name_experiment+'/'+name_experiment+'_configuration.txt')
# run the experiment
if nohup:
print("\n2. Run the training on GPU with nohup")
os.system(run_GPU +' nohup python -u ./src/retinaNN_training.py > ' +'./'+name_experiment+'/'+name_experiment+'_training.nohup')
else:
print("\n2. Run the training on GPU (no nohup)")
os.system(run_GPU +' python ./src/retinaNN_training.py')
#Prediction/testing is run with a different script