mirror of
https://github.com/gryf/coach.git
synced 2025-12-18 03:30:19 +01:00
adding support in tensorboard (#52)
* bug-fix in architecture.py where additional fetches would acquire more entries than it should * change in run_test to allow ignoring some test(s)
This commit is contained in:
4
coach.py
4
coach.py
@@ -178,6 +178,7 @@ def check_input_and_fill_run_dict(parser):
|
||||
# visualization
|
||||
run_dict['visualization.dump_gifs'] = args.dump_gifs
|
||||
run_dict['visualization.render'] = args.render
|
||||
run_dict['visualization.tensorboard'] = args.tensorboard
|
||||
|
||||
return args, run_dict
|
||||
|
||||
@@ -276,6 +277,9 @@ if __name__ == "__main__":
|
||||
parser.add_argument('--print_parameters',
|
||||
help="(flag) Print tuning_parameters to stdout",
|
||||
action='store_true')
|
||||
parser.add_argument('-tb', '--tensorboard',
|
||||
help="(flag) When using the TensorFlow backend, enable TensorBoard log dumps. ",
|
||||
action='store_true')
|
||||
|
||||
args, run_dict = check_input_and_fill_run_dict(parser)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user