Package net.myrrix.online.som

Examples of net.myrrix.online.som.SelfOrganizingMaps


ServerRecommender rec = (ServerRecommender) application.getAttribute(AbstractMyrrixServlet.RECOMMENDER_KEY);
Generation generation = rec.getGenerationManager().getCurrentGeneration();
if (generation != null) {
  FastByIDMap<float[]> matrix = userMatrix ? generation.getX() : generation.getY();
  if (matrix != null && !matrix.isEmpty()) {
    Node[][] map = new SelfOrganizingMaps().buildSelfOrganizedMap(userMatrix ? generation.getX() : generation.getY(),
                                                                  maxMapSize);

      out.write("<table class=\"htt\">");

      int nodeMaxSize = 9;
View Full Code Here

TOP

Related Classes of net.myrrix.online.som.SelfOrganizingMaps

Copyright © 2018 www.massapicom. 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.