org.deeplearning4j.nn.conf.layers.CapsuleStrengthLayer Maven / Gradle / Ivy
/*
* ******************************************************************************
* *
* *
* * 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.deeplearning4j.nn.conf.layers;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import org.deeplearning4j.nn.conf.inputs.InputType;
import org.deeplearning4j.nn.conf.inputs.InputType.InputTypeRecurrent;
import org.deeplearning4j.nn.conf.inputs.InputType.Type;
import org.deeplearning4j.nn.conf.layers.samediff.SameDiffLambdaLayer;
import org.nd4j.autodiff.samediff.SDVariable;
import org.nd4j.autodiff.samediff.SameDiff;
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
public class CapsuleStrengthLayer extends SameDiffLambdaLayer {
public CapsuleStrengthLayer(Builder builder){
super();
}
@Override
public SDVariable defineLayer(SameDiff SD, SDVariable layerInput) {
return SD.norm2("caps_strength", layerInput, 2);
}
@Override
public InputType getOutputType(int layerIndex, InputType inputType) {
if(inputType == null || inputType.getType() != Type.RNN) {
throw new IllegalStateException("Invalid input for Capsule Strength layer (layer name = \""
+ layerName + "\"): expect RNN input. Got: " + inputType);
}
InputTypeRecurrent ri = (InputTypeRecurrent) inputType;
return InputType.feedForward(ri.getSize());
}
public static class Builder extends SameDiffLambdaLayer.Builder{
@Override
public E build() {
return (E) new CapsuleStrengthLayer(this);
}
}
}