//--------------------------------------------------
// Motion Framework
// Copyright©2018-2020 何冠峰
// Licensed under the MIT license
//--------------------------------------------------
namespace MotionFramework.AI
{
///
/// 神经网络层的类型
///
public enum ENeuralLayerType
{
Input,
Hidden,
Output
}
///
/// 神经细胞的激活函数
///
public enum ENeuralAct
{
///
/// 罗吉斯函数(S型函数)
///
Logistic,
///
/// 阶跃函数
///
Step,
///
/// 正切函数
///
Tanh,
///
/// 双曲函数
///
BipolarSigmoid,
///
/// Softmax
///
Softmax,
///
/// 线性函数
///
Linear
}
}