Skip to content

Commit a0220b4

Browse files
authored
Wrong paramter for function make_plots
Hi, this is a small change. According to the definition of function make_plots, the top 3 paramters are not correct.
1 parent 91b3fab commit a0220b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fig/overfitting.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ def main(filename, num_epochs,
3535
"""
3636
run_network(filename, num_epochs, training_set_size, lmbda)
3737
make_plots(filename, num_epochs,
38-
test_accuracy_xmin,
3938
training_cost_xmin,
40-
test_accuracy_xmin,
39+
test_accuracy_xmin,
40+
test_cost_xmin,
4141
training_accuracy_xmin,
4242
training_set_size)
4343

0 commit comments

Comments
 (0)