From 536e22cf6e1698278488c56289d94c809fe31f1d Mon Sep 17 00:00:00 2001 From: saishruthi Date: Fri, 31 May 2019 16:57:51 -0700 Subject: [PATCH] changes based on comments --- tensorflow/core/api_def/base_api/api_def_Acosh.pbtxt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tensorflow/core/api_def/base_api/api_def_Acosh.pbtxt b/tensorflow/core/api_def/base_api/api_def_Acosh.pbtxt index 01366662c80..9ae6d36c5f6 100644 --- a/tensorflow/core/api_def/base_api/api_def_Acosh.pbtxt +++ b/tensorflow/core/api_def/base_api/api_def_Acosh.pbtxt @@ -3,9 +3,10 @@ op { summary: "Computes inverse hyperbolic cosine of x element-wise." description: < [nan nan 0. 0.62236255 5.9914584 9.903487] +x = tf.constant([-2, -0.5, 1, 1.2, 200, 10000, float("inf")]) +tf.math.acosh(x) ==> [nan nan 0. 0.62236255 5.9914584 9.903487 inf] +``` END }