update Acosh spec (#6677)

This commit is contained in:
Patryk Elszkowski 2021-07-21 05:31:37 +02:00 committed by GitHub
parent b0ebea1cda
commit af2989248f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,31 +6,27 @@
**Short description**: *Acosh* performs element-wise hyperbolic inverse cosine (arccosh) operation with given tensor.
**Attributes**:
No attributes available.
**Inputs**
* **1**: A tensor of type *T*. **Required.**
**Outputs**
* **1**: The result of element-wise acosh operation. A tensor of type *T*.
**Types**
* *T*: any floating-point type.
*Acosh* does the following with the input tensor *a*:
**Detailed description**: Operation takes one input tensor and performs the element-wise hyperbolic inverse cosine operation on a given input tensor, based on the following mathematical formula:
\f[
a_{i} = acosh(a_{i})
\f]
**Examples**
**Attributes**: *Acosh* operation has no attributes.
*Example 1*
**Inputs**
* **1**: A tensor of type *T* and arbitrary shape. **Required.**
**Outputs**
* **1**: The result of element-wise *Acosh* operation. A tensor of type *T* and the same shape as the input tensor.
**Types**
* *T*: any numeric type.
**Examples**
```xml
<layer ... type="Acosh">