1   /*
2    * Created on Dec 1, 2004
3    *
4    * TODO To change the template for this generated file go to
5    * Window - Preferences - Java - Code Style - Code Templates
6    */
7   package yawn.nn.fuzzyartmap;
8   
9   import yawn.config.NeuralNetworkConfig;
10  import yawn.nn.AbstractCircleInTheSquareNetworkTest;
11  
12  /***
13   * 
14   * <p>$Id: FuzzyArtMapTest.java,v 1.9 2005/04/20 18:55:19 supermarti Exp $</p>
15   * 
16   * @author Luis Mart&iacute; (luis dot marti at uc3m dot es)
17   * @version $Revision: 1.9 $
18   */
19  public class FuzzyArtMapTest extends AbstractCircleInTheSquareNetworkTest {
20  
21      protected NeuralNetworkConfig createConfig() {
22          FuzzyArtMapConfig conf = new FuzzyArtMapConfig();
23  
24          conf.setMaxEpochs(1000);
25  
26          conf.setAlphaArtA(0.00000000000001);
27          conf.setBetaArtA(0.3);
28          conf.setVigilanceArtA(0.9);
29  
30          conf.setAlphaArtB(0.00000000000001);
31          conf.setBetaArtB(0.3);
32          conf.setVigilanceArtB(1);
33  
34          conf.setUseComplementCoding(true);
35          conf.setEpsilon(0.0000000001);
36          conf.setMatchError(0.001);
37  
38          return conf;
39      }
40  
41  }