提交 4b957af2 编写于 作者: Y Yang Yang

clean up

上级 ae69f0b0
...@@ -155,7 +155,6 @@ def train(nn_type, use_cuda, parallel, save_dirname, save_param_filename): ...@@ -155,7 +155,6 @@ def train(nn_type, use_cuda, parallel, save_dirname, save_param_filename):
float(avg_loss_val), float(acc_val))) float(avg_loss_val), float(acc_val)))
if math.isnan(float(avg_loss_val)): if math.isnan(float(avg_loss_val)):
sys.exit("got NaN loss, training failed.") sys.exit("got NaN loss, training failed.")
exit(0)
raise AssertionError("Loss of recognize digits is too large") raise AssertionError("Loss of recognize digits is too large")
...@@ -231,14 +230,10 @@ def inject_test_method(use_cuda, parallel, nn_type, combine): ...@@ -231,14 +230,10 @@ def inject_test_method(use_cuda, parallel, nn_type, combine):
def inject_all_tests(): def inject_all_tests():
for use_cuda in [True]: for use_cuda in (False, True):
for parallel in [True]: for parallel in (False, True):
for nn_type in ['mlp']: for nn_type in ('mlp', 'conv'):
inject_test_method(use_cuda, parallel, nn_type, True) inject_test_method(use_cuda, parallel, nn_type, True)
# for use_cuda in (False, True):
# for parallel in (False, True):
# for nn_type in ('mlp', 'conv'):
# inject_test_method(use_cuda, parallel, nn_type, True)
# One unit-test for saving parameters as separate files # One unit-test for saving parameters as separate files
inject_test_method(False, False, 'mlp', False) inject_test_method(False, False, 'mlp', False)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册