forked from btgraham/SparseConvNet-archived
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConvolutionalTriangularLayer.h
More file actions
35 lines (34 loc) · 1.07 KB
/
ConvolutionalTriangularLayer.h
File metadata and controls
35 lines (34 loc) · 1.07 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
#pragma once
#include "SpatiallySparseLayer.h"
class ConvolutionalTriangularLayer : public SpatiallySparseLayer {
private:
int fs;
public:
int inSpatialSize;
int outSpatialSize;
int filterSize;
int filterStride;
int dimension;
int nFeaturesIn;
int nFeaturesOut;
int minActiveInputs;
ConvolutionalTriangularLayer(int filterSize,
int filterStride,
int dimension,
int nFeaturesIn,
int minActiveInputs);
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);
};