blob: da4846b6aa27fbecbe1a5500372447be28ef2c99 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://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.
*/
package org.apache.horn.core;
import java.io.IOException;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.hadoop.io.FloatWritable;
import org.apache.horn.utils.MathUtils;
public class RecurrentDropoutNeuron extends
Neuron<Synapse<FloatWritable, FloatWritable>> {
private float m2;
private float recurrentDelta = 0;
private double dropRate = 0;
public double getDropRate() {
return dropRate;
}
public void setDropRate(double dropRate) {
this.dropRate = dropRate;
}
@Override
public void forward(Iterable<Synapse<FloatWritable, FloatWritable>> messages)
throws IOException {
m2 = (isTraining()) ? MathUtils.getBinomial(1, dropRate) :1.0f;
if (m2 > 0) {
float sum = 0;
for (Synapse<FloatWritable, FloatWritable> m : messages) {
sum += m.getInput() * m.getWeight();
}
this.setDrop(false);
this.feedforward(squashingFunction.apply(sum) * m2);
} else {
this.setDrop(true);
this.feedforward(0);
}
}
private static final Log LOG = LogFactory.getLog(RecurrentDropoutNeuron.class);
@Override
public void backward(Iterable<Synapse<FloatWritable, FloatWritable>> messages)
throws IOException {
if (!this.isDropped()) {
float delta = 0;
for (Synapse<FloatWritable, FloatWritable> m : messages) {
// Calculates error gradient for each neuron
delta += (m.getDelta() * m.getWeight());
// Weight corrections
float weight = -this.getLearningRate() * m.getDelta()
* this.getOutput() + this.getMomentumWeight() * m.getPrevWeight();
this.push(weight);
}
// TODO set squashingFunction of recurrent neurons identity
this.backpropagate(recurrentDelta + delta * squashingFunction.applyDerivative(getOutput()));
} else {
this.backpropagate(0);
}
}
public float getRecurrentDelta() {
return recurrentDelta;
}
public void setRecurrentDelta(float recurrentDelta) {
this.recurrentDelta = recurrentDelta;
}
}