INNER CODE UNIT · Python
PdpApplicationContext
pdpipe/pdpipe · src/pdpipe/core.py:87
class PdpApplicationContext:
"""An object encapsulating the application context of a pipeline.
It is meant to communicate data, information and variables between
different stages of a pipeline during its application.
Parameters
----------
fit_context : PdpApplicationContext, optional
Another application context object, representing the application
context of a previous fit of the pipelline this application context
is initialized for. Optional.
"""
def __init__(
self,
fit_context: Optional["PdpApplicationContext"] = None,