-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDL_conf.py
More file actions
executable file
·34 lines (27 loc) · 1019 Bytes
/
DL_conf.py
File metadata and controls
executable file
·34 lines (27 loc) · 1019 Bytes
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
#!/usr/bin/python3
'''
Program:
This is a table of environment variable of deep learning python.
Usage:
import DL_conf.py // in your deep learning python program
editor Jacob975
20180123
#################################
update log
20180123 version alpha 1:
Hello!, just a test
'''
# Comment of what kinds of variables are saved here.
#--------------- Setting python path ----------------
# python path is where you install python
# tensorflow python can run under both python3 and python2
# please check the path by $which python python2
path_of_python = "/usr/bin/python3"
#--------------- Setting source code path ------------------
# code path means where do you install these code about DL.
# recommand: /home/username/bin/DL_python
path_of_source_code = "/home/Jacob975/bin/deep_learning"
#--------------- Setting data path ---------------------
# Where you save your data.
# recommand: /mazu/users/Jacob975/AI_data/ELAIS_N1_NICER_control_image
path_of_data = "/mazu/users/Jacob975/AI_data"