/* * Encog(tm) Core v2.5 - Java Version * http://www.heatonresearch.com/encog/ * http://code.google.com/p/encog-java/ * Copyright 2008-2010 Heaton Research, Inc. * * Licensed 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. * * For more information on Heaton Research copyrights, licenses * and trademarks visit: * http://www.heatonresearch.com/copyright */ package org.encog.neural.pattern; import org.encog.engine.network.activation.ActivationCompetitive; import org.encog.engine.network.activation.ActivationFunction; import org.encog.engine.network.activation.ActivationLinear; import org.encog.neural.networks.BasicNetwork; import org.encog.neural.networks.layers.BasicLayer; import org.encog.neural.networks.layers.Layer; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Pattern that creates a CPN neural network. */ public class CPNPattern implements NeuralNetworkPattern { /** * The tag for the INSTAR layer. */ public static final String TAG_INSTAR = "INSTAR"; /** * The tag for the OUTSTAR layer. */ public static final String TAG_OUTSTAR = "OUTSTAR"; /** * The number of neurons in the instar layer. */ private int instarCount; /** * The number of neurons in the outstar layer. */ private int outstarCount; /** * The number of neurons in the hidden layer. */ private int inputCount; /** * The logging object. */ private final Logger logger = LoggerFactory.getLogger(this.getClass()); /** * Not used, will throw an error. CPN networks already have a predefined * hidden layer called the instar layer. * * @param count * NOT USED */ public void addHiddenLayer(final int count) { final String str = "A CPN already has a predefined hidden layer. No additional" + "specification is needed."; if (this.logger.isErrorEnabled()) { this.logger.error(str); } } /** * Clear any parameters that were set. */ public void clear() { this.inputCount = 0; this.instarCount = 0; this.outstarCount = 0; } /** * Generate the network. * * @return The generated network. */ public BasicNetwork generate() { Layer input, instar, outstar; int y = PatternConst.START_Y; final BasicNetwork network = new BasicNetwork(); network.addLayer(input = new BasicLayer(new ActivationLinear(), false, this.inputCount)); network.addLayer(instar = new BasicLayer(new ActivationCompetitive(), false, this.instarCount)); network.addLayer(outstar = new BasicLayer(new ActivationLinear(), false, this.outstarCount)); network.getStructure().finalizeStructure(); network.reset(); input.setX(PatternConst.START_X); input.setY(y); y += PatternConst.INC_Y; instar.setX(PatternConst.START_X); instar.setY(y); y += PatternConst.INC_Y; outstar.setX(PatternConst.START_X); outstar.setY(y); // tag as needed network.tagLayer(BasicNetwork.TAG_INPUT, input); network.tagLayer(BasicNetwork.TAG_OUTPUT, outstar); network.tagLayer(CPNPattern.TAG_INSTAR, instar); network.tagLayer(CPNPattern.TAG_OUTSTAR, outstar); return network; } /** * This method will throw an error. The CPN network uses predefined * activation functions. * * @param activation * NOT USED */ public void setActivationFunction(final ActivationFunction activation) { final String str = "A CPN network will use the BiPolar & competitive activation " + "functions, no activation function needs to be specified."; if (this.logger.isErrorEnabled()) { this.logger.error(str); } throw new PatternError(str); } /** * Set the number of input neurons. * * @param count * The input neuron count. */ public void setInputNeurons(final int count) { this.inputCount = count; } /** * Set the number of neurons in the instar layer. This level is essentially * a hidden layer. * * @param instarCount * The instar count. */ public void setInstarCount(final int instarCount) { this.instarCount = instarCount; } /** * Set the number of output neurons. Calling this method maps to setting the * number of neurons in the outstar layer. * * @param count * The count. */ public void setOutputNeurons(final int count) { this.outstarCount = count; } /** * Set the number of neurons in the outstar level, this level is mapped to * the "output" level. * * @param outstarCount * The outstar count. */ public void setOutstarCount(final int outstarCount) { this.outstarCount = outstarCount; } }