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

org.deeplearning4j.nn.conf.layers.samediff.SameDiffLambdaVertex 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.deeplearning4j.nn.conf.layers.samediff;

import org.nd4j.autodiff.samediff.SDVariable;
import org.nd4j.autodiff.samediff.SameDiff;
import org.nd4j.base.Preconditions;
import org.nd4j.linalg.api.ndarray.INDArray;

import java.util.*;


/**
 * SameDiffLambdaVertex is defined to be used as the base class for implementing lambda vertices using SameDiff
* Lambda vertices are vertices without parameters - and as a result, have a much simpler API - users need only * extend SameDiffLambdaVertex and implement a single method to define their vertex * * @author Alex Black */ public abstract class SameDiffLambdaVertex extends SameDiffVertex { protected transient VertexInputs inputs; /** * The defineVertex method is used to define the foward pass for the vertex * * @param sameDiff SameDiff instance to use to define the vertex * @param inputs Layer input variable * @return The output variable (orresponding to the output activations for the vertex) */ public abstract SDVariable defineVertex(SameDiff sameDiff, VertexInputs inputs); @Override public SDVariable defineVertex(SameDiff sameDiff, Map layerInput, Map paramTable, Map maskVars) { VertexInputs vi = getInputs(sameDiff); int i = 0; if (vi.map.size() == 0 && layerInput.size() > 0) { for (SDVariable v : layerInput.values()) { vi.map.put(i++, v); } } return defineVertex(sameDiff, getInputs(sameDiff)); } @Override public void defineParametersAndInputs(SDVertexParams params) { //Parameters are no op, for lamda vertex - but inputs are NOT SameDiff temp = SameDiff.create(); VertexInputs tempInputs = new VertexInputs(temp); defineVertex(temp, tempInputs); List list = new ArrayList<>(); for (Integer i : tempInputs.map.keySet()) { list.add(tempInputs.map.get(i).getVarName()); } params.defineInputs(list.toArray(new String[list.size()])); } @Override public void initializeParameters(Map params) { //No op, for lambda vertex } protected VertexInputs getInputs(SameDiff sd) { if (inputs == null) { inputs = new VertexInputs(sd); } return inputs; } public class VertexInputs { private SameDiff sameDiff; private Map map = new LinkedHashMap<>(); protected VertexInputs(SameDiff sd) { this.sameDiff = sd; } public SDVariable getInput(int inputNum) { Preconditions.checkArgument(inputNum >= 0, "Input number must be >= 0." + "Got: %s", inputNum); if (!map.containsKey(inputNum)) { //Lazily define extra input variable as required SDVariable var = sameDiff.var("var_" + inputNum, 1); //TODO is this shape safe? map.put(inputNum, var); } return map.get(inputNum); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy