?? layer.h
字號:
#pragma once
#include "Neuron.h"
static const int LEN = 100;
struct Samples
{
double samples[LEN];
int nLenght;
};
class Layer
{
public:
~Layer(void);
CList<Neuron*> neurons;
int size;
CString name;
Layer(CString strLbl,int size);
Neuron* getNeuron(int i);
void computeOutputs();
void computeBackpropDeltas(Samples s); // for output neurons
void computeBackpropDeltas(); // for hidden neurons
void computeWeights();
CString print();
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -