ksuit.callbacks.default_callbacks.progress ========================================== .. py:module:: ksuit.callbacks.default_callbacks.progress Classes ------- .. autoapisummary:: ksuit.callbacks.default_callbacks.progress.ProgressCallback Module Contents --------------- .. py:class:: ProgressCallback(callback_config, **kwargs) Bases: :py:obj:`ksuit.callbacks.base.PeriodicCallback` Callback to print the progress of the training such as number of epochs and updates. Initializes the `PeriodicCallback`. :param callback_config: Configuration of the `PeriodicCallback`. Implements the `CallBackBaseConfig` schema. :param trainer: Trainer of the current run, subclass of `SgdTrainer`. :param model: Model of the current run. :param data_container: DataContainer instance that provides access to all datasets. :param tracker: Tracker instance to log metrics to stdout/disk/online platform. :param log_writer: LogWriter instance to log metrics. :param checkpoint_writer: CheckpointWriter instance to save checkpoints. :param metric_property_provider: MetricPropertyProvider instance to access properties of metrics. :param name: Name of the callback.