ibackpropagation.cs
来自「Source code Recognize character with bac」· CS 代码 · 共 29 行
CS
29 行
#region Copyright (c), Some Rights Reserved
/*##########################################################################
*
* IBackPropagation.cs
* -------------------------------------------------------------------------
* By
* Murat FIRAT, September 2007
*
* -------------------------------------------------------------------------
###########################################################################*/
#endregion
using System;
using System.Collections.Generic;
namespace BPSimplified.Lib
{
interface IBackPropagation<T>
{
void BackPropagate();
double F(double x);
void ForwardPropagate(double[] pattern, T output);
double GetError();
void InitializeNetwork(Dictionary<T, double[]> TrainingSet);
void Recognize(double[] Input, ref T MatchedHigh, ref double OutputValueHight,
ref T MatchedLow, ref double OutputValueLow);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?