neuraxle.logging.logging¶
Module-level documentation for neuraxle.logging.logging. Here is an inheritance diagram, including dependencies to other base modules of Neuraxle:

Neuraxle’s Logging module¶
This module contains the Logging class, which is used to log information about the execution of a pipeline. It is used by the classes inheriting from BaseStep to log information. It is also modified by the AutoML class and its Trainer and various Trial repositories-related classes to log info in various folders.
Classes
|
-
class
neuraxle.logging.logging.
_FilterSTDErr
(name='')[source]¶ Bases:
logging.Filter
-
class
neuraxle.logging.logging.
NeuraxleLogger
(name, level=0)[source]¶ Bases:
logging.Logger
-
static
from_identifier
(identifier: str) → neuraxle.logging.logging.NeuraxleLogger[source]¶ Returns a logger from an identifier. :type identifier:
str
:param identifier: The identifier of the logger :return: The logger
-
with_string_io
(identifier: str) → neuraxle.logging.logging.NeuraxleLogger[source]¶ Returns a logger from an identifier. :type identifier:
str
:param identifier: The identifier of the logger :return: The logger
-
with_file_handler
(file_path: str) → neuraxle.logging.logging.NeuraxleLogger[source]¶ Returns a logger from an identifier. :type file_path:
str
:param identifier: The identifier of the logger :return: The logger
-
without_file_handler
() → neuraxle.logging.logging.NeuraxleLogger[source]¶ Returns a logger from an identifier. :param identifier: The identifier of the logger :return: The logger
-
static