The class represents a builder for MVN layer. More...
#include <ie_mvn_layer.hpp>


Public Member Functions | |
| MVNLayer (const std::string &name="") | |
| The constructor creates a builder with the name. More... | |
| MVNLayer (const Layer::Ptr &layer) | |
| The constructor creates a builder from generic builder. More... | |
| MVNLayer (const Layer::CPtr &layer) | |
| The constructor creates a builder from generic builder. More... | |
| MVNLayer & | setName (const std::string &name) |
| Sets the name for the layer. More... | |
| const Port & | getPort () const |
| Returns port with shapes for the layer. More... | |
| MVNLayer & | setPort (const Port &port) |
| Sets port shapes for the layer. More... | |
| bool | getAcrossChannels () const |
| Returns across channels value. More... | |
| MVNLayer & | setAcrossChannels (bool flag) |
| Sets across channels. More... | |
| bool | getNormalize () const |
| Returns normalize variance. More... | |
| MVNLayer & | setNormalize (bool flag) |
| Sets normalize variance. More... | |
| float | getEpsilon () const |
| Return epsilon. More... | |
| MVNLayer & | setEpsilon (float eps) |
| Sets epsilon. More... | |
Public Member Functions inherited from InferenceEngine::Builder::LayerDecorator | |
| LayerDecorator (const std::string &type, const std::string &name) | |
| The constructor creates layer builders with layer type and layer name. More... | |
| LayerDecorator (const Layer::Ptr &layer) | |
| The constructor creates layer builders from reference to generic layer builder. More... | |
| LayerDecorator (const Layer::CPtr &layer) | |
| The constructor creates layer builders from reference to generic layer builder. More... | |
| LayerDecorator (const LayerDecorator &rval) | |
| The copy constructor. More... | |
| LayerDecorator & | operator= (const LayerDecorator &rval) |
| Copy operator for LayerDecorator. More... | |
| virtual | ~LayerDecorator ()=default |
| Virtual destructor. | |
| virtual | operator Layer () const |
| The operator creates generic builder. More... | |
| virtual | operator Layer::Ptr () |
| The operator creates generic builder. More... | |
| virtual | operator Layer::CPtr () const |
| The operator creates generic builder. More... | |
| const std::string & | getType () const |
| Returns layer type. More... | |
| const std::string & | getName () const |
| Returns layer name. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from InferenceEngine::Builder::LayerDecorator | |
| Layer::Ptr & | getLayer () |
| const Layer::CPtr | getLayer () const |
| void | checkType (const std::string &type) const |
Protected Attributes inherited from InferenceEngine::Builder::LayerDecorator | |
| Layer::CPtr | cLayer |
The class represents a builder for MVN layer.
|
explicit |
The constructor creates a builder with the name.
| name | Layer name |
|
explicit |
The constructor creates a builder from generic builder.
| layer | pointer to generic builder |
|
explicit |
The constructor creates a builder from generic builder.
| layer | constant pointer to generic builder |
| bool InferenceEngine::Builder::MVNLayer::getAcrossChannels | ( | ) | const |
Returns across channels value.
| float InferenceEngine::Builder::MVNLayer::getEpsilon | ( | ) | const |
Return epsilon.
| bool InferenceEngine::Builder::MVNLayer::getNormalize | ( | ) | const |
Returns normalize variance.
| const Port& InferenceEngine::Builder::MVNLayer::getPort | ( | ) | const |
Returns port with shapes for the layer.
| MVNLayer& InferenceEngine::Builder::MVNLayer::setAcrossChannels | ( | bool | flag | ) |
Sets across channels.
| flag | true if mean values are shared across channels |
| MVNLayer& InferenceEngine::Builder::MVNLayer::setEpsilon | ( | float | eps | ) |
Sets epsilon.
| eps | Epsilon |
| MVNLayer& InferenceEngine::Builder::MVNLayer::setName | ( | const std::string & | name | ) |
| MVNLayer& InferenceEngine::Builder::MVNLayer::setNormalize | ( | bool | flag | ) |
Sets normalize variance.
| flag | true if variance normalization is performed |