Examples of SystemLoggingPlugin


Examples of org.encog.plugin.system.SystemLoggingPlugin

   * @return The instance.
   */
  public static Encog getInstance() {
    if (Encog.instance == null) {
      Encog.instance = new Encog();
      Encog.instance.registerPlugin(new SystemLoggingPlugin());
      Encog.instance.registerPlugin(new SystemMethodsPlugin());
      Encog.instance.registerPlugin(new SystemTrainingPlugin());
      Encog.instance.registerPlugin(new SystemActivationPlugin());
    }
    return Encog.instance;
View Full Code Here

Examples of org.encog.plugin.system.SystemLoggingPlugin

  public void unregisterPlugin(final EncogPluginBase plugin) {

    // is it a special plugin?
    // if so, replace with the system, Encog will crash without these
    if (plugin == this.loggingPlugin) {
      this.loggingPlugin = new SystemLoggingPlugin();
    }

    // remove it
    this.plugins.remove(plugin);
  }
View Full Code Here

Examples of org.encog.plugin.system.SystemLoggingPlugin

   */
  private Encog() {
    this.properties.put(Encog.ENCOG_VERSION, Encog.VERSION);
    this.properties.put(Encog.ENCOG_FILE_VERSION, Encog.FILE_VERSION);
   
    registerPlugin(new SystemLoggingPlugin());
    registerPlugin(new SystemMethodsPlugin());
    registerPlugin(new SystemTrainingPlugin());
    registerPlugin(new SystemActivationPlugin());
  }
View Full Code Here

Examples of org.encog.plugin.system.SystemLoggingPlugin

  public void unregisterPlugin(final EncogPluginBase plugin) {

    // is it a special plugin?
    // if so, replace with the system, Encog will crash without these
    if (plugin == this.loggingPlugin) {
      this.loggingPlugin = new SystemLoggingPlugin();
    }

    // remove it
    this.plugins.remove(plugin);
  }
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.