(session_type)
| 30 | |
| 31 | |
| 32 | def print_session(session_type): |
| 33 | |
| 34 | FLAGS = tf.app.flags.FLAGS |
| 35 | |
| 36 | print_bright("\nSetting up TF %s session:" % session_type) |
| 37 | for key in natsorted(FLAGS.__dict__["__flags"].keys()): |
| 38 | if "dir" not in key: |
| 39 | print_green(key, FLAGS.__dict__["__flags"][key]) |
| 40 | |
| 41 | |
| 42 | def print_directories(list_delete, list_create): |
nothing calls this directly
no test coverage detected