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

org.deeplearning4j.nn.layers.recurrent.LastTimeStepLayer 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.layers.recurrent;

import lombok.NonNull;
import org.deeplearning4j.nn.api.Layer;
import org.deeplearning4j.nn.api.MaskState;
import org.deeplearning4j.nn.gradient.Gradient;
import org.deeplearning4j.nn.layers.wrapper.BaseWrapperLayer;
import org.deeplearning4j.util.TimeSeriesUtils;
import org.nd4j.linalg.api.ndarray.INDArray;
import org.nd4j.linalg.factory.Nd4j;
import org.nd4j.linalg.indexing.INDArrayIndex;
import org.nd4j.linalg.primitives.Pair;
import org.deeplearning4j.nn.workspace.ArrayType;
import org.deeplearning4j.nn.workspace.LayerWorkspaceMgr;

import java.util.Arrays;

import static org.nd4j.linalg.indexing.NDArrayIndex.all;
import static org.nd4j.linalg.indexing.NDArrayIndex.point;

/**
 * LastTimeStep is a "wrapper" layer: it wraps any RNN layer, and extracts out the last time step during forward pass,
 * and returns it as a row vector (per example). That is, for 3d (time series) input (with shape [minibatch, layerSize,
 * timeSeriesLength]), we take the last time step and return it as a 2d array with shape [minibatch, layerSize].
* Note that the last time step operation takes into account any mask arrays, if present: thus, variable length time * series (in the same minibatch) are handled as expected here. * * @author Alex Black */ public class LastTimeStepLayer extends BaseWrapperLayer { private int[] lastTimeStepIdxs; private long[] origOutputShape; public LastTimeStepLayer(@NonNull Layer underlying){ super(underlying); } @Override public Type type() { return Type.FEED_FORWARD; } @Override public Pair backpropGradient(INDArray epsilon, LayerWorkspaceMgr workspaceMgr) { INDArray newEps = Nd4j.create(epsilon.dataType(), origOutputShape, 'f'); if(lastTimeStepIdxs == null){ //no mask case newEps.put(new INDArrayIndex[]{all(), all(), point(origOutputShape[2]-1)}, epsilon); } else { INDArrayIndex[] arr = new INDArrayIndex[]{null, all(), null}; //TODO probably possible to optimize this with reshape + scatter ops... for( int i=0; i feedForwardMaskArray(INDArray maskArray, MaskState currentMaskState, int minibatchSize) { underlying.feedForwardMaskArray(maskArray, currentMaskState, minibatchSize); this.setMaskArray(maskArray); //Input: 2d mask array, for masking a time series. After extracting out the last time step, we no longer need the mask array return new Pair<>(null, currentMaskState); } private INDArray getLastStep(INDArray in, LayerWorkspaceMgr workspaceMgr, ArrayType arrayType){ if(in.rank() != 3){ throw new IllegalArgumentException("Expected rank 3 input with shape [minibatch, layerSize, tsLength]. Got " + "rank " + in.rank() + " with shape " + Arrays.toString(in.shape())); } origOutputShape = in.shape(); INDArray mask = underlying.getMaskArray(); Pair p = TimeSeriesUtils.pullLastTimeSteps(in, mask, workspaceMgr, arrayType); lastTimeStepIdxs = p.getSecond(); return p.getFirst(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy