テンソルフロー::作戦:: AsString::属性
#include <string_ops.h>
AsStringのオプションの属性セッター。
まとめ
パブリック属性 | |
---|---|
fill_ = "" | StringPiece |
precision_ = -1 | int64 |
scientific_ = false | bool |
shortest_ = false | bool |
width_ = -1 | int64 |
公共機能 | |
---|---|
Fill (StringPiece x) | TF_MUST_USE_RESULT Attrs 幅 > -1 の場合にパディングする値。 |
Precision (int64 x) | TF_MUST_USE_RESULT Attrs 浮動小数点数に使用する小数点以下の精度。 |
Scientific (bool x) | TF_MUST_USE_RESULT Attrs 浮動小数点数には科学表記法を使用します。 |
Shortest (bool x) | TF_MUST_USE_RESULT Attrs 浮動小数点数には最短の表現 (科学的または標準的) を使用します。 |
Width (int64 x) | TF_MUST_USE_RESULT Attrs 10 進数より前の数値をこの幅に埋め込みます。 |
パブリック属性
埋める_
StringPiece tensorflow::ops::AsString::Attrs::fill_ = ""
精度_
int64 tensorflow::ops::AsString::Attrs::precision_ = -1
科学_
bool tensorflow::ops::AsString::Attrs::scientific_ = false
最短_
bool tensorflow::ops::AsString::Attrs::shortest_ = false
幅_
int64 tensorflow::ops::AsString::Attrs::width_ = -1
公共機能
埋める
TF_MUST_USE_RESULT Attrs tensorflow::ops::AsString::Attrs::Fill( StringPiece x )
幅 > -1 の場合にパディングする値。
空の場合はスペースを埋め込みます。別の典型的な値は「0」です。文字列は 1 文字を超えることはできません。
デフォルトは「」です
精度
TF_MUST_USE_RESULT Attrs tensorflow::ops::AsString::Attrs::Precision( int64 x )
浮動小数点数に使用する小数点以下の精度。
精度 > -1 の場合にのみ使用されます。
デフォルトは -1
科学的
TF_MUST_USE_RESULT Attrs tensorflow::ops::AsString::Attrs::Scientific( bool x )
浮動小数点数には科学表記法を使用します。
デフォルトは false
最短
TF_MUST_USE_RESULT Attrs tensorflow::ops::AsString::Attrs::Shortest( bool x )
浮動小数点数には最短の表現 (科学的または標準的) を使用します。
デフォルトは false