def print_vars(self, var_list): logger.sys('VAR LIST:') for var in var_list: logger.net(str(var))
def print_restore_list(self, restore_vars): logger.sys('RESTORE LIST:') for var in restore_vars: logger.net(str(var))
def print_global_list(self): logger.net('ALL VARIABLES:') for var in tf.global_variables(): logger.net(str(var))
def print_grads_list(self, grads): logger.sys('Gradients will be trained as list:') for grad, var in grads: logger.net(str(grad))
def print_trainable_list(self): logger.sys('TRAINABLE LIST:') for var in tf.trainable_variables(): logger.net(str(var))