forked from btgraham/SparseConvNet-archived
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConvolutionalLayer.h
More file actions
39 lines (37 loc) · 1.36 KB
/
ConvolutionalLayer.h
File metadata and controls
39 lines (37 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#pragma once
#include "SpatiallySparseLayer.h"
class ConvolutionalLayer : public SpatiallySparseLayer {
private:
int fs;
public:
int inSpatialSize;
int outSpatialSize;
int filterSize;
int filterStride;
int dimension;
int nFeaturesIn;
int nFeaturesOut;
int minActiveInputs;
ConvolutionalLayer(int filterSize,
int filterStride,
int dimension,
int nFeaturesIn,
int minActiveInputs=1);
void preprocess
(SpatiallySparseBatch &batch,
SpatiallySparseBatchInterface &input,
SpatiallySparseBatchInterface &output);
void forwards
(SpatiallySparseBatch &batch,
SpatiallySparseBatchInterface &input,
SpatiallySparseBatchInterface &output);
void backwards(SpatiallySparseBatch &batch,
SpatiallySparseBatchInterface &input,
SpatiallySparseBatchInterface &output,
float learningRate,
float momentum);
int calculateInputSpatialSize(int outputSpatialSize);
};
template <typename t> void convolutionFeaturesPresent(std::vector<t>& d_src, std::vector<t>& d_dest, int nf, int nfp, int nCopies);
void propForwardToMatrixMultiply(float* inFeatures, float* outFeatures, int* rules, int count, int nIn);
void propBackwardFromMatrixMultiply(float* inDFeatures, float* outDFeatures, int* rules, int count, int nIn);