LoggerDestination#
- class composer.loggers.LoggerDestination(*args, **kwargs)[source]#
Base class for logger destination.
As this class extends
Callback
, logger destinations can run on any training loopEvent
. For example, it may be helpful to run onEvent.EPOCH_END
to perform any flushing at the end of every epoch.Example
>>> from composer.loggers import LoggerDestination >>> from composer.trainer import Trainer >>> class MyLogger(LoggerDestination): ... def log_hyperparameters(self, data): ... print(f'Batch {int(state.timestamp.batch)}: {data}') >>> logger = MyLogger() >>> trainer = Trainer( ... ..., ... loggers=[logger] ... ) Batch 0: {'composer_version': ...} Batch 0: {'composer_commit_hash': ...} Batch 0: {'num_nodes': ...} Batch 0: {'rank_zero_seed': ...}
- can_upload_files()[source]#
Indicates whether LoggerDestination can upload files.
Defaults to false, should return True for derived logger classes that implement upload_file().
- Returns
bool โ Whether the class supports uploading files.
- download_file(remote_file_name, destination, overwrite=False, progress_bar=True)[source]#
Handle downloading a file named
remote_file_name
todestination
.- Parameters
remote_file_name (str) โ The name of the file.
destination (str) โ The destination filepath.
overwrite (bool) โ Whether to overwrite an existing file at
destination
. Defaults toFalse
.progress_bar (bool, optional) โ Whether to show a progress bar. Ignored if
path
is a local file. (default:True
)
- log_hyperparameters(hyperparameters)[source]#
Log hyperparameters, configurations, and settings.
Logs any parameter/configuration/setting that doesnโt vary during the run.
- log_images(images, name='Images', channels_last=False, step=None, masks=None, mask_class_labels=None, use_table=True)[source]#
Log images. Logs any tensors or arrays as images.
- Parameters
images (np.ndarray | Tensor | Sequence[np.ndarray | Tensor]) โ Dictionary mapping image(s)โ names (str) to an image of array of images.
name (str) โ The name of the image(s). (Default:
'Images'
)channels_last (bool) โ Whether the channel dimension is first or last. (Default:
False
)step (Optional[int], optional) โ The current step or batch of training at the time of logging. Defaults to None. If not specified the specific LoggerDestination implementation will choose a step (usually a running counter).
masks (dict[str, np.ndarray | Tensor | Sequence[np.ndarray | Tensor]], optional) โ A dictionary mapping the mask name (e.g. predictions or ground truth) to a sequence of masks.
mask_class_labels (dict[int, str], optional) โ Dictionary mapping label id to its name. Used for labelling each color in the mask.
use_table (bool) โ Whether to make a table of the images or not. (default:
True
). Only for use with WandB.
- log_metrics(metrics, step=None)[source]#
Log metrics or parameters that vary during training.
- Parameters
metrics (dict[str, float]) โ Dictionary mapping metric name (str) to metric scalar value (float)
step (Optional[int], optional) โ The current step or batch of training at the time of logging. Defaults to None. If not specified the specific LoggerDestination implementation will choose a step (usually a running counter).
- log_table(columns, rows, name='Table', step=None)[source]#
Log a table.
- upload_file(state, remote_file_name, file_path, *, overwrite)[source]#
Handle uploading a file stored at
file_path
to a file namedremote_file_name
.Subclasses should implement this method to store logged files (e.g. copy it to another folder or upload it to an object store). However, not all loggers need to implement this method. For example, the
TQDMLogger
does not implement this method, as it cannot handle file uploads.Note
This method will block the training loop. For optimal performance, it is recommended that this method copy the file to a temporary directory, enqueue the copied file for processing, and return. Then, use a background thread(s) or process(s) to read from this queue to perform any I/O.
After this method returns, training can resume, and the contents of
file_path
may change (or be may deleted). Thus, if processing the file in the background (as is recommended), it is necessary to first copy the file to a temporary directory. Otherwise, the original file may no longer exist, or the logged file can be corrupted (e.g., if the logger destination is reading from file while the training loop is writing to it).
See also
Uploading Files for notes for file uploading.