Link Search Menu Expand Document

ReaderNumRecordsProduced


tensorflow C++ API

tensorflow::ops::ReaderNumRecordsProduced

Returns the number of records this Reader has produced.


Summary

This is the same as the number of ReaderRead executions that have succeeded.

Arguments:

  • scope: A Scope object
  • reader_handle: Handle to a Reader.

Returns:

  • Output: The records_produced tensor.

Constructor

  • ReaderNumRecordsProduced(const ::tensorflow::Scope & scope, ::tensorflow::Input reader_handle).

Public attributes

  • tensorflow::Output records_produced.

ReaderNumRecordsProduced block

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

Argument:

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

Return:

  • Output records_produced: Output object of ReaderNumRecordsProduced class object.

Result:

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

Using Method