テンソルフロー::作戦:: EncodeBase64

#include <string_ops.h>

文字列を Web セーフな Base64 形式にエンコードします。

まとめ

Base64 形式の詳細については、en.wikipedia.org/wiki/Base64 の記事を参照してください。 Base64 文字列には、エンコードされた文字列の長さが 4 の倍数になるように、最後に「=」によるパディングが含まれる場合があります。上記のリンクの「パディング」セクションを参照してください。

Web セーフとは、エンコーダーが + と / の代わりに - と _ を使用することを意味します。

引数:

  • スコープ:スコープオブジェクト
  • input: エンコードされる文字列。

オプションの属性 ( Attrsを参照):

  • Pad: 端にパディングを適用するかどうかを示すブール値。

戻り値:

  • Output : Base64 でエンコードされた入力文字列。

コンストラクターとデストラクター

EncodeBase64 (const :: tensorflow::Scope & scope, :: tensorflow::Input input)
EncodeBase64 (const :: tensorflow::Scope & scope, :: tensorflow::Input input, const EncodeBase64::Attrs & attrs)

パブリック属性

operation
output

公共機能

node () const
::tensorflow::Node *
operator::tensorflow::Input () const
operator::tensorflow::Output () const

パブリック静的関数

Pad (bool x)

構造体

tensorflow:: ops:: EncodeBase64:: Attrs

EncodeBase64のオプションの属性セッター。

パブリック属性

手術

Operation operation

出力

::tensorflow::Output output

公共機能

EncodeBase64

 EncodeBase64(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input input
)

EncodeBase64

 EncodeBase64(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input input,
  const EncodeBase64::Attrs & attrs
)

ノード

::tensorflow::Node * node() const 

演算子::tensorflow::入力

 operator::tensorflow::Input() const 

演算子::tensorflow::出力

 operator::tensorflow::Output() const 

パブリック静的関数

パッド

Attrs Pad(
  bool x
)