chainer.training.extensions.PlotReport¶
-
class
chainer.training.extensions.
PlotReport
(y_keys, x_key='iteration', trigger=(1, 'epoch'), postprocess=None, file_name='plot.png', marker='x', grid=True)[source]¶ Trainer extension to output plots.
This extension accumulates the observations of the trainer to
DictSummary
at a regular interval specified by a supplied trigger, and plot a graph with using them.There are two triggers to handle this extension. One is the trigger to invoke this extension, which is used to handle the timing of accumulating the results. It is set to
1, 'iteration'
by default. The other is the trigger to determine when to emit the result. When this trigger returns True, this extension appends the summary of accumulated values to the list of past summaries, and writes the list to the log file. Then, this extension makes a new fresh summary object which is used until the next time that the trigger fires.It also adds
'epoch'
and'iteration'
entries to each result dictionary, which are the epoch and iteration counts at the output.Warning
If your environment needs to specify a backend of matplotlib explicitly, please call
matplotlib.use
before callingtrainer.run
. For example:import matplotlib matplotlib.use('Agg') trainer.extend( extensions.PlotReport(['main/loss', 'validation/main/loss'], 'epoch', file_name='loss.png')) trainer.run()
Then, once one of instances of this extension is called,
matplotlib.use
will have no effect.For the details, please see here: https://matplotlib.org/faq/usage_faq.html#what-is-a-backend
- Parameters
y_keys (iterable of strs) – Keys of values regarded as y. If this is None, nothing is output to the graph.
x_key (str) – Keys of values regarded as x. The default value is ‘iteration’.
trigger – Trigger that decides when to aggregate the result and output the values. This is distinct from the trigger of this extension itself. If it is a tuple in the form
<int>, 'epoch'
or<int>, 'iteration'
, it is passed toIntervalTrigger
.postprocess – Callback to postprocess the result dictionaries. Figure object, Axes object, and all plot data are passed to this callback in this order. This callback can modify the figure.
file_name (str) – Name of the figure file under the output directory. It can be a format string.
marker (str) – The marker used to plot the graph. Default is
'x'
. IfNone
is given, it draws with no markers.grid (bool) – Set the axis grid on if True. Default is True.
Methods
-
__call__
(trainer)[source]¶ Invokes the extension.
Implementations should override this operator. This method is called at iterations which the corresponding trigger accepts.
- Parameters
trainer (Trainer) – Trainer object that calls this operator.
-
initialize
(trainer)[source]¶ Initializes up the trainer state.
This method is called before entering the training loop. An extension that modifies the state of
Trainer
can override this method to initialize it.When the trainer has been restored from a snapshot, this method has to recover an appropriate part of the state of the trainer.
For example,
ExponentialShift
extension changes the optimizer’s hyperparameter at each invocation. Note that the hyperparameter is not saved to the snapshot; it is the responsibility of the extension to recover the hyperparameter. TheExponentialShift
extension recovers it in itsinitialize
method if it has been loaded from a snapshot, or just setting the initial value otherwise.- Parameters
trainer (Trainer) – Trainer object that runs the training loop.
-
on_error
(trainer, exc, tb)[source]¶ Handles the error raised during training before finalization.
This method is called when an exception is thrown during the training loop, before finalize. An extension that needs different error handling from finalize, can override this method to handle errors.
-
serialize
(serializer)[source]¶ Serializes the extension state.
It is called when a trainer that owns this extension is serialized. It serializes nothing by default.
Attributes
-
default_name
¶ Default name of the extension.
It is the name of the class by default. Implementation can override this property, or provide a class attribute to hide it.
-
name
= None¶
-
priority
= 100¶
-
trigger
= (1, 'iteration')¶