Link Search Menu Expand Document

DecodeBase64


tensorflow C++ API

tensorflow::ops::DecodeBase64

Decode web-safe base64-encoded strings.


Summary

Input may or may not have padding at the end. See EncodeBase64 for padding. Web-safe means that input must use - and _ instead of + and /.

Arguments:

  • scope: A Scope object
  • input: Base64 strings to decode.

Returns:


DecodeBase64 block

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

Argument:

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

Return:

  • Output output : Output object of DecodeBase64 class object.

Result:

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

Using Method