Link Search Menu Expand Document

Reciprocal


tensorflow C++ API

tensorflow::ops::Reciprocal

Computes the reciprocal of x element-wise.


Summary

I.e., y = 1 / x.

Arguments:

Returns:

Constructor

  • Reciprocal(const ::tensorflow::Scope & scope, ::tensorflow::Input x).

Public attributes

  • tensorflow::Output y.

Reciprocal block

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

Argument:

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

Return:

  • Output y: Output object of Reciprocal class object.

Result:

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

Using Method