Concat - 4 vs 11¶
- Concat4 → Concat11 +3 -2
Concat4 → Concat11
RENAMED
@@ -1 +1 @@
|
|
1
|
-
Concatenate a list of tensors into a single tensor
|
1
|
+
Concatenate a list of tensors into a single tensor. All input tensors must have the same shape, except for the dimension size of the axis to concatenate on.
|
2
2
|
**Attributes**
|
3
3
|
* **axis** (required):
|
4
|
-
Which axis to concat on
|
4
|
+
Which axis to concat on. A negative value means counting dimensions
|
5
|
+
from the back. Accepted range is [-r, r-1] where r = rank(inputs)..
|
5
6
|
**Inputs**
|
6
7
|
Between 1 and 2147483647 inputs.
|
7
8
|
* **inputs** (variadic, heterogeneous) - **T**:
|
8
9
|
List of tensors for concatenation
|
9
10
|
**Outputs**
|
10
11
|
* **concat_result** (heterogeneous) - **T**:
|
11
12
|
Concatenated tensor
|
12
13
|
**Type Constraints**
|
13
14
|
* **T** in (
|
14
15
|
tensor(bool),
|
15
16
|
tensor(complex128),
|
16
17
|
tensor(complex64),
|
17
18
|
tensor(double),
|
18
19
|
tensor(float),
|
19
20
|
tensor(float16),
|
20
21
|
tensor(int16),
|
21
22
|
tensor(int32),
|
22
23
|
tensor(int64),
|
23
24
|
tensor(int8),
|
24
25
|
tensor(string),
|
25
26
|
tensor(uint16),
|
26
27
|
tensor(uint32),
|
27
28
|
tensor(uint64),
|
28
29
|
tensor(uint8)
|
29
30
|
):
|
30
31
|
Constrain output types to any tensor type.
|