How to use the neuraxle.base.NonFittableMixin.__init__ function in neuraxle

To help you get started, we’ve selected a few neuraxle examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Neuraxio / Neuraxle / testing / mocks / step_mocks.py View on Github external
def __init__(self, hyperparams_space: HyperparameterSpace = None, output=AN_EXPECTED_OUTPUT):
        BaseStep.__init__(self, hyperparams=None, hyperparams_space=hyperparams_space)
        NonFittableMixin.__init__(self)
        self.output = output
github Neuraxio / Neuraxle / testing / steps / test_output_transformer_wrapper.py View on Github external
def __init__(
            self,
            hyperparams: HyperparameterSamples = None,
            hyperparams_space: HyperparameterSpace = None,
            name: str = None
    ):
        NonFittableMixin.__init__(self)
        BaseStep.__init__(self, hyperparams, hyperparams_space, name)
        InputAndOutputTransformerMixin.__init__(self)
github Neuraxio / Neuraxle / neuraxle / steps / numpy.py View on Github external
def __init__(self, add=1):
        NonFittableMixin.__init__(self)
        BaseStep.__init__(
            self,
            hyperparams=HyperparameterSamples({
                'add': add
            })
github Neuraxio / Neuraxle / neuraxle / steps / numpy.py View on Github external
def __init__(self, axis):
        """
        Create a numpy concatenate on custom axis object.
        :param axis: the axis where the concatenation is performed.
        :return: NumpyConcatenateOnCustomAxis instance.
        """
        self.axis = axis
        BaseStep.__init__(self)
        NonFittableMixin.__init__(self)
github Neuraxio / Neuraxle / neuraxle / steps / numpy.py View on Github external
def __init__(self, multiply_by=1):
        NonFittableMixin.__init__(self)
        BaseStep.__init__(
            self,
            hyperparams=HyperparameterSamples({
                'multiply_by': multiply_by
            })
github Neuraxio / Neuraxle / neuraxle / steps / flow.py View on Github external
def __init__(self, wrapped: BaseStep):
        NonTransformableMixin.__init__(self)
        NonFittableMixin.__init__(self)
        MetaStepMixin.__init__(self, wrapped=wrapped)
        BaseStep.__init__(self)
github Neuraxio / Neuraxle / neuraxle / base.py View on Github external
def __init__(self, savers=None, name=None):
        NonTransformableMixin.__init__(self)
        NonFittableMixin.__init__(self)
        BaseStep.__init__(self, name=name, savers=savers)
github Neuraxio / Neuraxle / neuraxle / steps / flow.py View on Github external
def __init__(self, wrapped: BaseStep):
        NonTransformableMixin.__init__(self)
        NonFittableMixin.__init__(self)
        MetaStepMixin.__init__(self, wrapped=wrapped)
        BaseStep.__init__(self)
github Neuraxio / Neuraxle / neuraxle / steps / numpy.py View on Github external
def __init__(self):
        BaseStep.__init__(self)
        NonFittableMixin.__init__(self)