RemoteMonitor
Inherits From: Callback
Defined in tensorflow/python/keras/_impl/keras/callbacks.py.
Callback used to stream events to a server.
Requires the requests library. Events are sent to root + '/publish/epoch/end/' by default. Calls are HTTP POST, with a data argument which is a JSON-encoded dictionary of event data.
root: String; root url of the target server.path: String; path relative to root to which the events will be sent.field: String; JSON field under which the data will be stored.headers: Dictionary; optional custom HTTP headers.__init____init__(
root='http://localhost:9000',
path='/publish/epoch/end/',
field='data',
headers=None
)
Initialize self. See help(type(self)) for accurate signature.
on_batch_beginon_batch_begin(
batch,
logs=None
)
on_batch_endon_batch_end(
batch,
logs=None
)
on_epoch_beginon_epoch_begin(
epoch,
logs=None
)
on_epoch_endon_epoch_end(
epoch,
logs=None
)
on_train_beginon_train_begin(logs=None)
on_train_endon_train_end(logs=None)
set_modelset_model(model)
set_paramsset_params(params)
© 2018 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/keras/callbacks/RemoteMonitor