neuronstates.cs

来自「基于hopheid的人工神经网络模式识别」· CS 代码 · 共 22 行

CS
22
字号
using System;
using System.Collections.Generic;
using System.Text;

namespace HopfieldNeuralNetwork
{
    /// <summary>
    /// Static class, which describes neuron states.
    /// </summary>
    public static class NeuronStates
    {
        /// <summary>
        /// If neuron orienatated along local field, then it's state is equal to 1
        /// </summary>
        public static int AlongField = 1;
        /// <summary>
        /// If neuron orienatated against local field, then it's state is equal to -1
        /// </summary>
        public static int AgainstField = -1;     
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?