Skip to content
Snippets Groups Projects
Commit cdc6edd4 authored by hoijui's avatar hoijui
Browse files

get rid of some CheckStyle warnings

parent c6febb39
No related branches found
No related tags found
No related merge requests found
......@@ -30,19 +30,16 @@ import com.syncleus.dann.neural.backprop.AbstractBackpropNeuron;
public final class CompressionNeuron extends AbstractBackpropNeuron
{
/**
* <!-- Author: Jeffrey Phillips Freeman -->
* @since 1.0
*/
private byte input = 0;
/**
* <!-- Author: Jeffrey Phillips Freeman -->
* @since 1.0
*/
private boolean inputSet = false;
/**
* Creates a new instance of InputNeuron<BR>
* <!-- Author: Jeffrey Phillips Freeman -->
* @since 1.0
*/
public CompressionNeuron(final Brain brain)
......@@ -52,7 +49,6 @@ public final class CompressionNeuron extends AbstractBackpropNeuron
/**
* Creates a new instance of InputNeuron<BR>
* <!-- Author: Jeffrey Phillips Freeman -->
* @since 1.0
*/
public CompressionNeuron(final Brain brain, final ActivationFunction activationFunction)
......@@ -72,7 +68,6 @@ public final class CompressionNeuron extends AbstractBackpropNeuron
/**
* This method sets the current input on the neuron.<BR>
* <!-- Author: Jeffrey Phillips Freeman -->
* @since 1.0
* @param inputToSet The value to set the current input to.
*/
......@@ -83,7 +78,6 @@ public final class CompressionNeuron extends AbstractBackpropNeuron
}
/**
* <!-- Author: Jeffrey Phillips Freeman -->
* @since 1.0
*/
public void unsetInput()
......@@ -92,7 +86,6 @@ public final class CompressionNeuron extends AbstractBackpropNeuron
}
/**
* <!-- Author: Jeffrey Phillips Freeman -->
* @since 1.0
*/
public byte getChannelOutput()
......@@ -101,7 +94,6 @@ public final class CompressionNeuron extends AbstractBackpropNeuron
}
/**
* <!-- Author: Jeffrey Phillips Freeman -->
* @since 1.0
*/
private double getDoubleInput()
......
......@@ -115,7 +115,6 @@ public class NciBrain extends AbstractFullyConnectedFeedforwardBrain<InputBackpr
}
/**
* <!-- Author: Jeffrey Phillips Freeman -->
* @since 1.0
*/
public double getCompression()
......@@ -124,7 +123,6 @@ public class NciBrain extends AbstractFullyConnectedFeedforwardBrain<InputBackpr
}
/**
* <!-- Author: Jeffrey Phillips Freeman -->
* @since 1.0
*/
public boolean isLearning()
......@@ -133,7 +131,6 @@ public class NciBrain extends AbstractFullyConnectedFeedforwardBrain<InputBackpr
}
/**
* <!-- Author: Jeffrey Phillips Freeman -->
* @since 1.0
*/
public void setLearning(final boolean learningToSet)
......@@ -220,7 +217,7 @@ public class NciBrain extends AbstractFullyConnectedFeedforwardBrain<InputBackpr
}
/**
* <!-- Author: Jeffrey Phillips Freeman -->
* @author Jeffrey Phillips Freeman
* @since 1.0
*/
public byte[] compress(final BufferedImage originalImage)
......@@ -272,7 +269,7 @@ public class NciBrain extends AbstractFullyConnectedFeedforwardBrain<InputBackpr
}
/**
* <!-- Author: Jeffrey Phillips Freeman -->
* @author Jeffrey Phillips Freeman
* @since 1.0
*/
public BufferedImage uncompress(final byte[] compressedData)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment