tensorflow:: אופס:: ReduceJoin
#include <string_ops.h>
מצטרף למחרוזת Tensor על פני המידות הנתונות.
תַקצִיר
מחשב את החיבור למחרוזת על פני ממדים במחרוזת הנתונה טנסור הצורה [\\(d_0, d_1, ..., d_{n-1}\\)]
. מחזירה Tensor חדש שנוצר על ידי צירוף מחרוזות הקלט עם המפריד הנתון (ברירת מחדל: מחרוזת ריקה). מדדים שליליים נספרים לאחור מהסוף, כאשר -1
שווה ערך ל- n - 1
. אם אינדקסים מצוינים, מצטרפים בכל הממדים החל מ- n - 1
עד 0
.
לְדוּגמָה:
# tensor `a` is [["a", "b"], ["c", "d"]] tf.reduce_join(a, 0) ==> ["ac", "bd"] tf.reduce_join(a, 1) ==> ["ab", "cd"] tf.reduce_join(a, -2) = tf.reduce_join(a, 0) ==> ["ac", "bd"] tf.reduce_join(a, -1) = tf.reduce_join(a, 1) ==> ["ab", "cd"] tf.reduce_join(a, 0, keep_dims=True) ==> [["ac", "bd"]] tf.reduce_join(a, 1, keep_dims=True) ==> [["ab"], ["cd"]] tf.reduce_join(a, 0, separator=".") ==> ["a.c", "b.d"] tf.reduce_join(a, [0, 1]) ==> "acbd" tf.reduce_join(a, [1, 0]) ==> "abcd" tf.reduce_join(a, []) ==> [["a", "b"], ["c", "d"]] tf.reduce_join(a) = tf.reduce_join(a, [1, 0]) ==> "abcd"
טיעונים:
- scope: אובייקט Scope
- קלט: הקלט שיש להצטרף אליו. כל המדדים המופחתים חייבים להיות בגודל שאינו אפס.
- reduction_indexs: הממדים שיש להקטין מעל. המידות מצטמצמות לפי הסדר שצוין. השמטת
reduction_indices
שווה ערך למעבר[n-1, n-2, ..., 0]
. מדדים שליליים מ--n
עד-1
נתמכים.
מאפיינים אופציונליים (ראה Attrs
):
- keep_dims: אם
True
, שמור על מידות מופחתות עם אורך1
. - מפריד: המפריד לשימוש בעת ההצטרפות.
החזרות:
-
Output
: יש לו צורה שווה לזו של הקלט עם ממדים מופחתים שהוסרו או מוגדרים ל1
בהתאם ל-keep_dims
.
בנאים והורסים | |
---|---|
ReduceJoin (const :: tensorflow::Scope & scope, :: tensorflow::Input inputs, :: tensorflow::Input reduction_indices) | |
ReduceJoin (const :: tensorflow::Scope & scope, :: tensorflow::Input inputs, :: tensorflow::Input reduction_indices, const ReduceJoin::Attrs & attrs) |
תכונות ציבוריות | |
---|---|
operation | |
output |
תפקידים ציבוריים | |
---|---|
node () const | ::tensorflow::Node * |
operator::tensorflow::Input () const | |
operator::tensorflow::Output () const |
פונקציות סטטיות ציבוריות | |
---|---|
KeepDims (bool x) | |
Separator (StringPiece x) |
מבנים | |
---|---|
tensorflow:: ops:: ReduceJoin:: Attrs | קובעי תכונות אופציונליים עבור ReduceJoin . |
תכונות ציבוריות
מִבצָע
Operation operation
תְפוּקָה
::tensorflow::Output output
תפקידים ציבוריים
ReduceJoin
ReduceJoin( const ::tensorflow::Scope & scope, ::tensorflow::Input inputs, ::tensorflow::Input reduction_indices )
ReduceJoin
ReduceJoin( const ::tensorflow::Scope & scope, ::tensorflow::Input inputs, ::tensorflow::Input reduction_indices, const ReduceJoin::Attrs & attrs )
צוֹמֶת
::tensorflow::Node * node() const
מפעיל::tensorflow::קלט
operator::tensorflow::Input() const
אופרטור::tensorflow::פלט
operator::tensorflow::Output() const
פונקציות סטטיות ציבוריות
KeepDims
Attrs KeepDims( bool x )
מפריד
Attrs Separator( StringPiece x )
אלא אם צוין אחרת, התוכן של דף זה הוא ברישיון Creative Commons Attribution 4.0 ודוגמאות הקוד הן ברישיון Apache 2.0. לפרטים, ניתן לעיין במדיניות האתר Google Developers. Java הוא סימן מסחרי רשום של חברת Oracle ו/או של השותפים העצמאיים שלה.
עדכון אחרון: 2024-11-18 (שעון UTC).
[null,null,["עדכון אחרון: 2024-11-18 (שעון UTC)."],[],[]]