All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nd4j.linalg.dataset.api.preprocessor.serializer.CustomSerializerStrategy Maven / Gradle / Ivy

package org.nd4j.linalg.dataset.api.preprocessor.serializer;

import org.nd4j.linalg.dataset.api.preprocessor.Normalizer;

/**
 * Base class for custom normalizer serializers
 */
public abstract class CustomSerializerStrategy implements NormalizerSerializerStrategy {
    @Override
    public NormalizerType getSupportedType() {
        return NormalizerType.CUSTOM;
    }

    /**
     * Get the class of the supported custom serializer
     *
     * @return the class
     */
    public abstract Class getSupportedClass();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy