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

org.nd4j.imports.descriptors.properties.AttributeAdapter Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
/*******************************************************************************
 * Copyright (c) 2015-2018 Skymind, Inc.
 *
 * 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.
 *
 * 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.imports.descriptors.properties;

import org.nd4j.autodiff.functions.DifferentialFunction;

import java.lang.reflect.Field;

/**
 * Attribute adapter for taking an attribute with an input value
 * and mapping it to the proper output.
 * This is for a case where the output attribute type needs to be
 * adapted in some form to the field in samediff.
 *
 * A common example of this would be an array input trying to map to individual
 * fields in samediff.
 *
 * For example you have:
 * [1,2,3,4,5]
 *
 * A possible implementation of {@link #mapAttributeFor(Object, Field, DifferentialFunction)} could be:
 *  void mapAttributeFor(Object inputAttributeValue, Field fieldFor, DifferentialFunction on) {
 *      int[] inputArr = (int[]) inputAttributeValue;
 *      on.setValueFor(fieldFor,inputArr[1]);
 *  }
 *
 *  on.setValueFor(conversions.get(fieldFor),
 */
public interface AttributeAdapter {

    /**
     * Map the attribute using the specified field
     * on the specified function on
     * adapting the given input type to
     * the type of the field for the specified function.
     * @param inputAttributeValue the evaluate to adapt
     * @param fieldFor the field for
     * @param on the function to map on
     */
    void mapAttributeFor(Object inputAttributeValue, Field fieldFor, DifferentialFunction on);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy