Package org.encog.util

Examples of org.encog.util.HTMLReport.para()


    report.beginHTML();
    String title = "Unknown File Type";
    report.title(title);
    report.beginBody();
    report.h1(title);
    report.para("Unknown file type.  Do not know how to display.");
   
    report.beginTable();
    report.tablePair("File Size", Format.formatMemory(this.getEncogObject().getFile().length()));
    report.tablePair("Last Modified", new Date(this.getEncogObject().getFile().lastModified()).toString());
   
View Full Code Here


    report.beginHTML();
    String title = "Encog Workbench v" + EncogWorkBench.VERSION;
    report.title(title);
    report.beginBody();
    report.h1(title);
    report.para("Encog Workbench is released under the Apache License.  For more information see the license file released with the Encog Workbench.");
    report.h3(EncogWorkBench.COPYRIGHT);
   
    report.beginTable();
    report.tablePair("Java Version", System.getProperty("java.version"));
    report.tablePair("Java 64/32-Bit", System.getProperty("sun.arch.data.model"));
View Full Code Here

    report.beginHTML();
    String title = "Encog Training Continuation";
    report.title(title);
    report.beginBody();
    report.h1(title);
    report.para("This is an Encog training continuation object.  It allows training to begin exactly where it left off.  When a neural network, or other machine learning method, is trained certian data must be kept to track the training progress.  Think of this as the notes you take in a class.  Without this training data Encog will lose some ground when training is continued. This file will be used automatically if training can be continued. ");
    report.para("However, the neural network does not need this data to function.  Once training is done, this file can be deleted.");
    report.para("Data designed for: " + ((TrainingContinuation)encogObject.getObject()).getTrainingType() );
    report.endBody();
    report.endHTML();
    this.display(report.toString());
View Full Code Here

    String title = "Encog Training Continuation";
    report.title(title);
    report.beginBody();
    report.h1(title);
    report.para("This is an Encog training continuation object.  It allows training to begin exactly where it left off.  When a neural network, or other machine learning method, is trained certian data must be kept to track the training progress.  Think of this as the notes you take in a class.  Without this training data Encog will lose some ground when training is continued. This file will be used automatically if training can be continued. ");
    report.para("However, the neural network does not need this data to function.  Once training is done, this file can be deleted.");
    report.para("Data designed for: " + ((TrainingContinuation)encogObject.getObject()).getTrainingType() );
    report.endBody();
    report.endHTML();
    this.display(report.toString());
   
View Full Code Here

    report.title(title);
    report.beginBody();
    report.h1(title);
    report.para("This is an Encog training continuation object.  It allows training to begin exactly where it left off.  When a neural network, or other machine learning method, is trained certian data must be kept to track the training progress.  Think of this as the notes you take in a class.  Without this training data Encog will lose some ground when training is continued. This file will be used automatically if training can be continued. ");
    report.para("However, the neural network does not need this data to function.  Once training is done, this file can be deleted.");
    report.para("Data designed for: " + ((TrainingContinuation)encogObject.getObject()).getTrainingType() );
    report.endBody();
    report.endHTML();
    this.display(report.toString());
   
  }
View Full Code Here

    report.beginHTML();
    String title = "Unknown Encog Object Type";
    report.title(title);
    report.beginBody();
    report.h1(title);
    report.para("Unknown Object: " + encogObject.getEncogType());
    report.endBody();
    report.endHTML();
    this.display(report.toString());
   
  }
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.