mirror of
https://github.com/lordmathis/CUDANet.git
synced 2025-11-06 01:34:22 +00:00
Unify 2d layer naming
This commit is contained in:
@@ -6,16 +6,16 @@
|
||||
|
||||
namespace CUDANet::Layers {
|
||||
|
||||
class AvgPooling2D : public SequentialLayer {
|
||||
class AvgPooling2d : public SequentialLayer {
|
||||
public:
|
||||
AvgPooling2D(
|
||||
AvgPooling2d(
|
||||
dim2d inputSize,
|
||||
int nChannels,
|
||||
dim2d poolingSize,
|
||||
dim2d stride,
|
||||
ActivationType activationType
|
||||
);
|
||||
~AvgPooling2D();
|
||||
~AvgPooling2d();
|
||||
|
||||
float* forward(const float* d_input);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user