/* * 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.ActivationFunction; import org.encog.neural.networks.BasicNetwork; import org.encog.neural.networks.svm.KernelType; import org.encog.neural.networks.svm.SVMNetwork; import org.encog.neural.networks.svm.SVMType; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class SVMPattern implements NeuralNetworkPattern { /** * The number of neurons in the first layer. */ private int inputNeurons; /** * The number of neurons in the second layer. */ private int outputNeurons; private boolean regression = true; private KernelType kernelType = KernelType.RadialBasisFunction; private SVMType svmType = SVMType.EpsilonSupportVectorRegression; /** * The logging object. */ private final Logger logger = LoggerFactory.getLogger(this.getClass()); /** * Unused, a BAM has no hidden layers. * * @param count * Not used. */ public void addHiddenLayer(final int count) { final String str = "A SVM network has no hidden layers."; if (this.logger.isErrorEnabled()) { this.logger.error(str); } throw new PatternError(str); } /** * Clear any settings on the pattern. */ public void clear() { this.inputNeurons = 0; this.outputNeurons = 0; } /** * @return The generated network. */ public BasicNetwork generate() { final SVMNetwork network = new SVMNetwork(this.inputNeurons,this.outputNeurons,svmType,kernelType); return network; } /** * Not used, the BAM uses a bipoloar activation function. * * @param activation * Not used. */ public void setActivationFunction(final ActivationFunction activation) { final String str = "A SVM network can't specify a custom activation function."; if (this.logger.isErrorEnabled()) { this.logger.error(str); } throw new PatternError(str); } public boolean isRegression() { return regression; } public void setRegression(boolean regression) { this.regression = regression; } public int getInputNeurons() { return inputNeurons; } public int getOutputNeurons() { return outputNeurons; } /** * Set the number of input neurons. * * @param count * The number of input neurons. */ public void setInputNeurons(final int count) { this.inputNeurons = count; } /** * Set the number of output neurons. * * @param count * The output neuron count. */ public void setOutputNeurons(final int count) { this.outputNeurons = count; } public void setKernelType(KernelType kernelType) { this.kernelType = kernelType; } public void setSVMType(SVMType svmType) { this.svmType = svmType; } }