C# 클래스 Encog.Plugin.SystemPlugin.SystemLoggingPlugin

This is the built-in logging plugin for Encog. This plugin provides simple file and console logging.
상속: IEncogPluginLogging1
파일 보기 프로젝트 열기: encog/encog-silverlight-core

공개 메소드들

메소드 설명
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.

메소드 상세

CalculateGradient() 공개 메소드

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.
리턴 void

CalculateLayer() 공개 메소드

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.
리턴 int

Log() 공개 메소드

public Log ( int level, Exception t ) : void
level int
t System.Exception
리턴 void

Log() 공개 메소드

Log the message.
public Log ( int level, String message ) : void
level int The logging level.
message String The logging message.
리턴 void

StartConsoleLogging() 공개 메소드

Start logging to the console.
public StartConsoleLogging ( ) : void
리턴 void

StopLogging() 공개 메소드

Stop any console or file logging.
public StopLogging ( ) : void
리턴 void

SystemLoggingPlugin() 공개 메소드

Construct the object.
public SystemLoggingPlugin ( ) : System
리턴 System