Package org.encog.neural.som

Examples of org.encog.neural.som.SOM.classify()


    final MLData data1 = new BasicMLData(
        TestCompetitive.SOM_INPUT[0]);
    final MLData data2 = new BasicMLData(
        TestCompetitive.SOM_INPUT[1]);
   
    int result1 = network.classify(data1);
    int result2 = network.classify(data2);
   
    Assert.assertTrue(result1!=result2);

  }
View Full Code Here


        TestCompetitive.SOM_INPUT[0]);
    final MLData data2 = new BasicMLData(
        TestCompetitive.SOM_INPUT[1]);
   
    int result1 = network.classify(data1);
    int result2 = network.classify(data2);
   
    Assert.assertTrue(result1!=result2);

  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.