SmartEngine  1.6.0
Public Attributes | List of all members
SmartEngine::PoolingLayerCInfo Struct Reference

Pool constructor info More...

#include <Pooling.h>

Inheritance diagram for SmartEngine::PoolingLayerCInfo:
SmartEngine::GraphNodeCInfo

Public Attributes

IGraphNodeinput = nullptr
 The input into this pool. More...
 
PoolType type = PoolType::Max
 The type of pooling to apply. More...
 
int inputWidth = -1
 Input width. If the previous layer is a Conv2D layer, you can set this to -1 to have it auto-calculated. More...
 
int inputHeight = -1
 Input height. If the previous layer is a Conv2D layer, you can set this to -1 to have it auto-calculated. More...
 
- Public Attributes inherited from SmartEngine::GraphNodeCInfo
const char * name = nullptr
 The name of this node. More...
 
IContextcontext = nullptr
 Context this node belongs to. Only graph nodes of the same context can be connected. More...
 

Detailed Description

Pool constructor info

Member Data Documentation

◆ input

IGraphNode* SmartEngine::PoolingLayerCInfo::input = nullptr

The input into this pool.

◆ inputHeight

int SmartEngine::PoolingLayerCInfo::inputHeight = -1

Input height. If the previous layer is a Conv2D layer, you can set this to -1 to have it auto-calculated.

◆ inputWidth

int SmartEngine::PoolingLayerCInfo::inputWidth = -1

Input width. If the previous layer is a Conv2D layer, you can set this to -1 to have it auto-calculated.

◆ type

PoolType SmartEngine::PoolingLayerCInfo::type = PoolType::Max

The type of pooling to apply.