זרימת טנסור :: אופ :: אטנה
#include <math_ops.h>
מחשב משיק היפרבולי הפוך של x אלמנט.
סיכום
בהינתן טנסור קלט, פונקציה זו מחשבת משיק היפרבולי הפוך לכל יסוד בטנזור. טווח הקלט הוא [-1,1]
וטווח הפלט הוא [-inf, inf]
. אם הקלט הוא -1
, הפלט יהיה -inf
ואם הקלט הוא 1
, הפלט יהיה inf
. לערכים מחוץ לטווח יהיה nan
כפלט.
x = tf.constant([-float("inf"), -1, -0.5, 1, 0, 0.5, 10, float("inf")]) tf.math.atanh(x) ==> [nan -inf -0.54930615 inf 0. 0.54930615 nan nan]
טענות:
- היקף: אובייקט Scope
החזרות:
-
Output
: טנסור ה- y.
קונסטרוקטורים ומשחתנים | |
---|---|
Atanh (const :: tensorflow::Scope & scope, :: tensorflow::Input x) |
תכונות ציבוריות | |
---|---|
operation | |
y |
פונקציות ציבוריות | |
---|---|
node () const | ::tensorflow::Node * |
operator::tensorflow::Input () const | |
operator::tensorflow::Output () const |
תכונות ציבוריות
מבצע
Operation operation
y
::tensorflow::Output y
פונקציות ציבוריות
אטנה
Atanh( const ::tensorflow::Scope & scope, ::tensorflow::Input x )
צוֹמֶת
::tensorflow::Node * node() const
אופרטור :: זרימת טנסור :: קלט
operator::tensorflow::Input() const
אופרטור :: זרימת טנסור :: פלט
operator::tensorflow::Output() const
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2020-04-20 UTC.
[]
[]