Skip to content

Commit 0c9bdce

Browse files
committed
o Add more parameters
o Call wth N1 and NE
1 parent 0b77654 commit 0c9bdce

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

workflows/p1b1_grid/data/settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"1": [2,4,6],
55
"2": [15, 25,50,75],
6-
"3": [2000],
7-
"4": [600]
6+
"3": [2000, 1000],
7+
"4": [600, 400]
88
}
99
}

workflows/p1b1_grid/python/evaluateOne.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
print ("Running p1b1 for epochs, batch_size, N1, NE", epochs, batch_size, N1, NE)
2929
# Need to introduce N1 and NE as parameters to the run_p1b1 function
30-
encoder, decoder, history = p1b1_baseline_keras2.run_p1b1(X_train, X_test, epochs=epochs, batch_size=batch_size)
30+
encoder, decoder, history = p1b1_baseline_keras2.run_p1b1(X_train, X_test, epochs=epochs, batch_size=batch_size, N1=N1, NE=NE)
3131
print ("Done running p1b1")
3232

3333
# works around this error:

0 commit comments

Comments
 (0)