Link Search Menu Expand Document

Elu


tensorflow C++ API

tensorflow::ops::Elu

Computes the gradient of morphological 2-D dilation with respect to the filter.


Summary

SeeFast and Accurate Deep Network Learning by Exponential Linear Units (ELUs)

Arguments:

Returns:

  • Output: The activations tensor.

Elu block

Source link : https://github.com/EXPNUNI/enuSpaceTensorflow/blob/master/enuSpaceTensorflow/tf_nn.cpp

Argument:

  • Scope scope : A Scope object (A scope is generated automatically each page. A scope is not connected.)
  • Input features: connect Input node.

Return:

  • Output activations : Output object of Elu class object.

Result:

  • std::vector(Tensor) result_activations : Returned object of executed result by calling session.

Using Method