C# Class Encog.Plugin.SystemPlugin.SystemLoggingPlugin

This is the built-in logging plugin for Encog. This plugin provides simple file and console logging.
Inheritance: IEncogPluginLogging1
Afficher le fichier Open project: encog/encog-silverlight-core

Méthodes publiques

Méthode Description
CalculateGradient ( double gradients, double layerOutput, double weights, double layerDelta, IActivationFunction af, int index, int fromLayerIndex, int fromLayerSize, int toLayerIndex, int toLayerSize ) : void

Not used for this type of plugin.

CalculateLayer ( double weights, double layerOutput, int startIndex, int outputIndex, int outputSize, int inputIndex, int inputSize ) : int

Not used for this type of plugin.

Log ( int level, Exception t ) : void
Log ( int level, String message ) : void

Log the message.

StartConsoleLogging ( ) : void

Start logging to the console.

StopLogging ( ) : void

Stop any console or file logging.

SystemLoggingPlugin ( ) : System

Construct the object.

Method Details

CalculateGradient() public méthode

Not used for this type of plugin.
public CalculateGradient ( double gradients, double layerOutput, double weights, double layerDelta, IActivationFunction af, int index, int fromLayerIndex, int fromLayerSize, int toLayerIndex, int toLayerSize ) : void
gradients double Not used.
layerOutput double Not used.
weights double Not used.
layerDelta double Not used.
af IActivationFunction Not used.
index int Not used.
fromLayerIndex int Not used.
fromLayerSize int Not used.
toLayerIndex int Not used.
toLayerSize int Not used.
Résultat void

CalculateLayer() public méthode

Not used for this type of plugin.
public CalculateLayer ( double weights, double layerOutput, int startIndex, int outputIndex, int outputSize, int inputIndex, int inputSize ) : int
weights double Not used.
layerOutput double Not used.
startIndex int Not used.
outputIndex int Not used.
outputSize int Not used.
inputIndex int Not used.
inputSize int Not used.
Résultat int

Log() public méthode

public Log ( int level, Exception t ) : void
level int
t System.Exception
Résultat void

Log() public méthode

Log the message.
public Log ( int level, String message ) : void
level int The logging level.
message String The logging message.
Résultat void

StartConsoleLogging() public méthode

Start logging to the console.
public StartConsoleLogging ( ) : void
Résultat void

StopLogging() public méthode

Stop any console or file logging.
public StopLogging ( ) : void
Résultat void

SystemLoggingPlugin() public méthode

Construct the object.
public SystemLoggingPlugin ( ) : System
Résultat System