Complex toy classes & DataAnalysis initial
This commit is contained in:
parent
93a90e0291
commit
43e374f269
12 changed files with 376 additions and 169 deletions
20
DataAnalysis/public/FullyConnectedNN.hpp
Normal file
20
DataAnalysis/public/FullyConnectedNN.hpp
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#pragma once
|
||||
|
||||
#include "Buffer.hpp"
|
||||
#include "DataAnalysisCommon.hpp"
|
||||
|
||||
namespace tp {
|
||||
class FullyConnectedNN {
|
||||
public:
|
||||
struct Layer {
|
||||
halnf mBias;
|
||||
Buffer<halnf> mWeights;
|
||||
};
|
||||
|
||||
public:
|
||||
FullyConnectedNN() = default;
|
||||
|
||||
private:
|
||||
Buffer<Layer> mLayers;
|
||||
};
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue