-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.py
More file actions
46 lines (42 loc) · 1.59 KB
/
config.py
File metadata and controls
46 lines (42 loc) · 1.59 KB
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
#
# config file
#
# This is for both Python and Bash, so... make sure syntax works in both, i.e.
# no spaces before or after equal signs and no variables. There likely is a
# better way to do this.
#
#dataset="SmartHomePhone"
#datasetFolder="datasets/SmartHomePhone"
#dataset="COCO"
#datasetFolder="datasets/COCO"
dataset="SmartHome3"
datasetFolder="datasets/SmartHome3"
# Files for TensorFlow - in datasetFolder
datasetTFconfig="tf.config"
datasetTFtrain="tftrain.record"
datasetTFtest="tftest.record"
datasetTFvalid="tfvalid.record"
#datasetTFcompressed="tf_record.tar.gz"
datasetTFlabels="tf_label_map.pbtxt"
# Log files during training for TensorBoard - in datasetFolder
datasetTFtrainlogs="tflogs/train"
datasetTFevallogs="tflogs/eval"
# For evaluation, 0 means forever (until job ends)
maxTFEvals=1 # For learning curve, just do one. Normally do 0 to monitor throughout.
#maxTFEvals=200000 # For learning curve, just do one. Normally do 0 to monitor throughout.
# Files for YOLO - in datasetFolder
datasetLabels="labels.names"
datasetConfig="config.cfg"
datasetCompressed="files.tar.gz"
dataPrefix="dataset"
trainingPrefix="training"
validateFile="validate.txt"
testingFile="testing.txt"
backupPrefix="backup" # remotedir/datasetFolder/backupPrefix_...
weightsName="darknet19_448.conv.23"
weightsDir="/data/vcea/matt.taylor/Projects/ras-object-detection/"
# Connecting to the remote server
# Note: this is rsync, so make sure all paths have a trailing slash
remotedir="/data/vcea/matt.taylor/Projects/ras-object-detection/"
remotessh="kamiak"
localdir="/home/garrett/Documents/School/18_Spring/RAS/ras-object-detection/"