Go to the source code of this file.
Namespaces | |
| plot_model | |
Variables | |
| string | plot_model.__version__ = '1.0' |
| string | plot_model.__author__ = 'Saul Alonso-Monsalve' |
| string | plot_model.__email__ = "saul.alonso.monsalve@cern.ch" |
| plot_model.stream | |
| plot_model.stderr | |
| plot_model.level | |
| plot_model.config = configparser.ConfigParser() | |
| plot_model.CHECKPOINT_PATH = config['model']['checkpoint_path'] | |
| plot_model.CHECKPOINT_PREFIX = config['model']['checkpoint_prefix'] | |
| plot_model.CHECKPOINT_SAVE_MANY = ast.literal_eval(config['model']['checkpoint_save_many']) | |
| plot_model.CHECKPOINT_SAVE_BEST_ONLY = ast.literal_eval(config['model']['checkpoint_save_best_only']) | |
| plot_model.PRINT_SUMMARY = ast.literal_eval(config['model']['print_summary']) | |
| list | plot_model.files = [f for f in listdir(CHECKPOINT_PATH) if isfile(join(CHECKPOINT_PATH, f))] |
| plot_model.reverse | |
| plot_model.r = re.compile(CHECKPOINT_PREFIX[1:] + '-.*-.*.h5') | |
| plot_model.model = load_model(CHECKPOINT_PATH + '/' + fil) | |
| plot_model.to_file | |
| plot_model.show_shapes | |
1.8.11