📄 layer.cs
字号:
using System;
namespace AI_Life
{
public class Layer
{
//=========================================================//
int numNeurons; // number of neurons
int inputsPerNeuron; // number of inputs per neuron
Neuron[] neurons; // neuron array
public Layer(int initNumNeurons, int initInputsPerNeuron)
{
numNeurons = initNumNeurons;
inputsPerNeuron = initInputsPerNeuron;
neurons = new Neuron[numNeurons];
for (int i=0; i<numNeurons; i++)
neurons[i] = new Neuron(inputsPerNeuron);
}
public Neuron Neuron(int index)
{
return neurons[index];
}
public int NumNeurons
{
get
{
return numNeurons;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -