LostTech.TensorFlow : API Documentation

Type tf.logging

Namespace tensorflow

Public static methods

void debug(string msg, IDictionary<string, object> kwargs, Object[] args)

object debug_dyn(object msg, IDictionary<string, object> kwargs, Object[] args)

void error(PythonClassContainer msg, IDictionary<string, object> kwargs, Object[] args)

void error(PythonClassContainer msg, Object[] args)

void error(object msg, IDictionary<string, object> kwargs, Object[] args)

void error(object msg, Object[] args)

object error_dyn(object msg, IDictionary<string, object> kwargs, Object[] args)

void fatal(string msg, Object[] args)

void fatal(int msg, Object[] args)

void fatal(string msg, IDictionary<string, object> kwargs, Object[] args)

void fatal(int msg, IDictionary<string, object> kwargs, Object[] args)

object fatal_dyn(object msg, IDictionary<string, object> kwargs, Object[] args)

void info(IEnumerable<object> msg, IDictionary<string, object> kwargs, Object[] args)

void info(int msg, IDictionary<string, object> kwargs, Object[] args)

void info(int msg, Object[] args)

void info(IEnumerable<object> msg, Object[] args)

void info(double msg, Object[] args)

void info(bool msg, Object[] args)

void info(string msg, Object[] args)

void info(bool msg, IDictionary<string, object> kwargs, Object[] args)

void info(object msg, IDictionary<string, object> kwargs, Object[] args)

void info(double msg, IDictionary<string, object> kwargs, Object[] args)

void info(string msg, IDictionary<string, object> kwargs, Object[] args)

object info_dyn(object msg, IDictionary<string, object> kwargs, Object[] args)

void log(object level, string msg, IDictionary<string, object> kwargs, Object[] args)

void log(object level, string msg, Object[] args)

void log_every_n(object level, object msg, object n, Object[] args)

Log 'msg % args' at level 'level' once per 'n' times.

Logs the 1st call, (N+1)st call, (2N+1)st call, etc. Not threadsafe.
Parameters
object level
The level at which to log.
object msg
The message to be logged.
object n
The number of times this should be called before it is logged.
Object[] args
The args to be substituted into the msg.

object log_every_n_dyn(object level, object msg, object n, Object[] args)

Log 'msg % args' at level 'level' once per 'n' times.

Logs the 1st call, (N+1)st call, (2N+1)st call, etc. Not threadsafe.
Parameters
object level
The level at which to log.
object msg
The message to be logged.
object n
The number of times this should be called before it is logged.
Object[] args
The args to be substituted into the msg.

void log_first_n(object level, string msg, int n, Object[] args)

Log 'msg % args' at level 'level' only first 'n' times.

Not threadsafe.
Parameters
object level
The level at which to log.
string msg
The message to be logged.
int n
The number of times this should be called before it is logged.
Object[] args
The args to be substituted into the msg.

object log_first_n_dyn(object level, object msg, object n, Object[] args)

Log 'msg % args' at level 'level' only first 'n' times.

Not threadsafe.
Parameters
object level
The level at which to log.
object msg
The message to be logged.
object n
The number of times this should be called before it is logged.
Object[] args
The args to be substituted into the msg.

void log_if(object level, string msg, bool condition, Object[] args)

Log 'msg % args' at level 'level' only if condition is fulfilled.

object log_if_dyn(object level, object msg, object condition, Object[] args)

Log 'msg % args' at level 'level' only if condition is fulfilled.

void set_verbosity(object v)

Sets the threshold for what messages will be logged.

void TaskLevelStatusMessage(object msg)

object TaskLevelStatusMessage_dyn(object msg)

void vlog(object level, string msg, Object[] args)

void vlog(object level, string msg, IDictionary<string, object> kwargs, Object[] args)

void vlog(object level, IEnumerable<object> msg, IDictionary<string, object> kwargs, Object[] args)

void vlog(object level, ndarray msg, Object[] args)

void vlog(object level, ndarray msg, IDictionary<string, object> kwargs, Object[] args)

void vlog(object level, IEnumerable<object> msg, Object[] args)

void vlog(int level, string msg, IDictionary<string, object> kwargs, Object[] args)

void vlog(int level, IEnumerable<object> msg, Object[] args)

void vlog(int level, IEnumerable<object> msg, IDictionary<string, object> kwargs, Object[] args)

void vlog(int level, ndarray msg, Object[] args)

void vlog(int level, ndarray msg, IDictionary<string, object> kwargs, Object[] args)

void vlog(int level, string msg, Object[] args)

object vlog_dyn(object level, object msg, IDictionary<string, object> kwargs, Object[] args)

object vlog_dyn(object level, object msg, Object[] args)

void warning(object msg, Object[] args)

void warning(object msg, IDictionary<string, object> kwargs, Object[] args)

void warning(IEnumerable<object> msg, IDictionary<string, object> kwargs, Object[] args)

void warning(IEnumerable<object> msg, Object[] args)

object warning_dyn(object msg, Object[] args)

object warning_dyn(object msg, IDictionary<string, object> kwargs, Object[] args)

Public properties

PythonFunctionContainer debug_fn get;

PythonFunctionContainer error_fn get;

PythonFunctionContainer fatal_fn get;

PythonFunctionContainer flush_fn get;

PythonFunctionContainer get_verbosity_fn get;

PythonFunctionContainer log_every_n_fn get;

PythonFunctionContainer log_first_n_fn get;

PythonFunctionContainer log_if_fn get;

PythonFunctionContainer set_verbosity_fn get;

PythonFunctionContainer TaskLevelStatusMessage_fn get;

PythonFunctionContainer warning_fn get;