remove old print statements
Browse files
train.py
CHANGED
@@ -39,8 +39,6 @@ hyp = {'lr0': 0.01, # initial learning rate (SGD=1E-2, Adam=1E-3)
|
|
39 |
'scale': 0.5, # image scale (+/- gain)
|
40 |
'shear': 0.0} # image shear (+/- deg)
|
41 |
|
42 |
-
# Don't need to be printing every time
|
43 |
-
#print(hyp)
|
44 |
|
45 |
def train(hyp):
|
46 |
#write all results to the tb log_dir, so all data from one run is together
|
|
|
39 |
'scale': 0.5, # image scale (+/- gain)
|
40 |
'shear': 0.0} # image shear (+/- deg)
|
41 |
|
|
|
|
|
42 |
|
43 |
def train(hyp):
|
44 |
#write all results to the tb log_dir, so all data from one run is together
|