Interface MultiDataNormalization

    • Method Detail

      • fit

        void fit​(MultiDataSetIterator iterator)
        Iterates over a dataset accumulating statistics for normalization
        Parameters:
        iterator - the iterator to use for collecting statistics.
      • revertFeatures

        void revertFeatures​(INDArray[] features,
                            INDArray[] featuresMask)
        Undo (revert) the normalization applied by this DataNormalization instance to the specified features array
        Parameters:
        features - Features to revert the normalization on
        featuresMask -
      • revertFeatures

        void revertFeatures​(INDArray[] features)
        Undo (revert) the normalization applied by this DataNormalization instance to the specified features array
        Parameters:
        features - Features to revert the normalization on
      • revertLabels

        void revertLabels​(INDArray[] labels,
                          INDArray[] labelsMask)
        Undo (revert) the normalization applied by this DataNormalization instance to the specified labels array. If labels normalization is disabled (i.e., #isFitLabel() == false) then this is a no-op. Can also be used to undo normalization for network output arrays, in the case of regression.
        Parameters:
        labels - Labels array to revert the normalization on
        labelsMask - Labels mask array (may be null)
      • revertLabels

        void revertLabels​(INDArray[] labels)
        Undo (revert) the normalization applied by this DataNormalization instance to the specified labels array. If labels normalization is disabled (i.e., #isFitLabel() == false) then this is a no-op. Can also be used to undo normalization for network output arrays, in the case of regression.
        Parameters:
        labels - Labels array to revert the normalization on