Variables
plot_model Namespace Reference

Variables

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

Detailed Description

This is the plot module.

Variable Documentation

string plot_model.__author__ = 'Saul Alonso-Monsalve'
private

Definition at line 6 of file plot_model.py.

string plot_model.__email__ = "saul.alonso.monsalve@cern.ch"
private

Definition at line 7 of file plot_model.py.

string plot_model.__version__ = '1.0'
private

Definition at line 5 of file plot_model.py.

plot_model.CHECKPOINT_PATH = config['model']['checkpoint_path']

Definition at line 33 of file plot_model.py.

plot_model.CHECKPOINT_PREFIX = config['model']['checkpoint_prefix']

Definition at line 34 of file plot_model.py.

plot_model.CHECKPOINT_SAVE_BEST_ONLY = ast.literal_eval(config['model']['checkpoint_save_best_only'])

Definition at line 36 of file plot_model.py.

plot_model.CHECKPOINT_SAVE_MANY = ast.literal_eval(config['model']['checkpoint_save_many'])

Definition at line 35 of file plot_model.py.

plot_model.config = configparser.ConfigParser()

Definition at line 28 of file plot_model.py.

list plot_model.files = [f for f in listdir(CHECKPOINT_PATH) if isfile(join(CHECKPOINT_PATH, f))]

Definition at line 54 of file plot_model.py.

plot_model.level

Definition at line 26 of file plot_model.py.

plot_model.model = load_model(CHECKPOINT_PATH + '/' + fil)

Definition at line 61 of file plot_model.py.

plot_model.PRINT_SUMMARY = ast.literal_eval(config['model']['print_summary'])

Definition at line 37 of file plot_model.py.

plot_model.r = re.compile(CHECKPOINT_PREFIX[1:] + '-.*-.*.h5')

Definition at line 57 of file plot_model.py.

plot_model.reverse

Definition at line 55 of file plot_model.py.

plot_model.show_shapes

Definition at line 75 of file plot_model.py.

plot_model.stderr

Definition at line 26 of file plot_model.py.

plot_model.stream

Definition at line 26 of file plot_model.py.

plot_model.to_file

Definition at line 75 of file plot_model.py.