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

org.nd4j.serde.json.LegacyILossFunctionDeserializer Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
/*
 *  ******************************************************************************
 *  *
 *  *
 *  * This program and the accompanying materials are made available under the
 *  * terms of the Apache License, Version 2.0 which is available at
 *  * https://www.apache.org/licenses/LICENSE-2.0.
 *  *
 *  *  See the NOTICE file distributed with this work for additional
 *  *  information regarding copyright ownership.
 *  * Unless required by applicable law or agreed to in writing, software
 *  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 *  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 *  * License for the specific language governing permissions and limitations
 *  * under the License.
 *  *
 *  * SPDX-License-Identifier: Apache-2.0
 *  *****************************************************************************
 */

package org.nd4j.serde.json;


import lombok.NonNull;
import org.nd4j.linalg.lossfunctions.ILossFunction;
import org.nd4j.linalg.lossfunctions.impl.*;
import org.nd4j.shade.jackson.databind.ObjectMapper;

import java.util.HashMap;
import java.util.Map;

public class LegacyILossFunctionDeserializer extends BaseLegacyDeserializer {
    private static final Map LEGACY_NAMES = new HashMap<>();

    private static ObjectMapper legacyMapper;

    public static void setLegacyJsonMapper(ObjectMapper mapper){
        legacyMapper = mapper;
    }

    static {
        LEGACY_NAMES.put("BinaryXENT", LossBinaryXENT.class.getName());
        LEGACY_NAMES.put("CosineProximity", LossCosineProximity.class.getName());
        LEGACY_NAMES.put("Hinge", LossHinge.class.getName());
        LEGACY_NAMES.put("KLD", LossKLD.class.getName());
        LEGACY_NAMES.put("MAE", LossMAE.class.getName());
        LEGACY_NAMES.put("L1", LossL1.class.getName());
        LEGACY_NAMES.put("MAPE", LossMAPE.class.getName());
        LEGACY_NAMES.put("MCXENT", LossMCXENT.class.getName());
        LEGACY_NAMES.put("MSE", LossMSE.class.getName());
        LEGACY_NAMES.put("L2", LossL2.class.getName());
        LEGACY_NAMES.put("MSLE", LossMSLE.class.getName());
        LEGACY_NAMES.put("NegativeLogLikelihood", LossNegativeLogLikelihood.class.getName());
        LEGACY_NAMES.put("Poisson", LossPoisson.class.getName());
        LEGACY_NAMES.put("SquaredHinge", LossSquaredHinge.class.getName());
        LEGACY_NAMES.put("MultiLabel", LossMultiLabel.class.getName());
        LEGACY_NAMES.put("FMeasure", LossFMeasure.class.getName());

        //The following didn't previously have subtype annotations - hence will be using default name (class simple name)
        LEGACY_NAMES.put(LossMixtureDensity.class.getSimpleName(), LossMixtureDensity.class.getName());
    }


    @Override
    public Map getLegacyNamesMap() {
        return LEGACY_NAMES;
    }

    @Override
    public ObjectMapper getLegacyJsonMapper() {
        return legacyMapper;
    }

    @Override
    public Class getDeserializedType() {
        return ILossFunction.class;
    }

    public static void registerLegacyClassDefaultName(@NonNull Class clazz){
        registerLegacyClassSpecifiedName(clazz.getSimpleName(), clazz);
    }

    public static void registerLegacyClassSpecifiedName(@NonNull String name, @NonNull Class clazz){
        LEGACY_NAMES.put(name, clazz.getName());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy