Skip to content

Commit 01ce3fd

Browse files
committed
o Typo
1 parent de0ed2b commit 01ce3fd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

workflows/rnd_or_grid/python/test/test_runners.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,23 +32,23 @@ def main():
3232
p1b3_validation_loss = p1b3_runner.run(hyper_parameter_map)
3333
te_p1b3 = datetime.now()
3434
print("Validation loss=",p1b3_validation_loss)
35-
print("DONE##########P1B1#####, TIME=", te_p1b3 - ts_p1b3)
35+
print("DONE##########P1B3#####, TIME=", te_p1b3 - ts_p1b3)
3636

3737
#3 # p2b1 - works
3838
print("STARTING#####P2B1##########")
3939
ts_p2b1 = datetime.now()
4040
p2b1_validation_loss = p2b1_runner.run(hyper_parameter_map)
4141
te_p2b1 = datetime.now()
4242
print("Validation loss=",p2b1_validation_loss)
43-
print("DONE##########P1B1#####, TIME=", te_p2b1 - ts_p2b1)
43+
print("DONE##########P2B1#####, TIME=", te_p2b1 - ts_p2b1)
4444

4545
#4 # p3b1 - fails - ValueError: invalid literal for int() with base 10: '1200;1200'
4646
print("STARTING#####P3B1##########")
4747
ts_p3b1 = datetime.now()
4848
p3b1_validation_loss = p3b1_runner.run(hyper_parameter_map)
4949
te_p3b1 = datetime.now()
5050
print("Validation loss=",p3b1_validation_loss)
51-
print("DONE##########P1B1#####, TIME=", te_p3b1 - ts_p3b1)
51+
print("DONE##########P3B1#####, TIME=", te_p3b1 - ts_p3b1)
5252

5353
#5 # NT3 - works - too big
5454
print("STARTING#####NT3##########")
@@ -57,7 +57,7 @@ def main():
5757
nt3tc1_validation_losss = nt3_tc1_runner.run(hyper_parameter_map)
5858
te_nt3 = datetime.now()
5959
print("Validation loss=",nt3tc1_validation_loss)
60-
print("DONE##########P1B1#####, TIME=", te_nt3 - ts_nt3)
60+
print("DONE##########NT3#####, TIME=", te_nt3 - ts_nt3)
6161

6262
if __name__ == '__main__':
6363
main()

0 commit comments

Comments
 (0)