LabelEncoder - 1 vs 2#
Next section compares an older to a newer version of the same operator after both definition are converted into markdown text. Green means an addition to the newer version, red means a deletion. Anything else is unchanged.
- LabelEncoder1 → LabelEncoder2 +24 -39
LabelEncoder1 → LabelEncoder2
RENAMED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
Converts strings to integers and vice versa.
|
2
|
+
If the string default value is set, it will convert integers to strings.
|
3
|
+
If the int default value is set, it will convert strings to integers.
|
2
|
-
|
4
|
+
Each operator converts either integers to strings or strings to integers, depending
|
3
|
-
'values_*' attribute. The i-th value in the specified 'keys_*' attribute
|
4
|
-
would be mapped to the i-th value in the specified 'values_*' attribute. It
|
5
|
-
implies that input's element type and the element type of the specified
|
6
|
-
'keys_*' should be identical while the output type is identical to the
|
7
|
-
|
5
|
+
on which default value attribute is provided. Only one default value attribute
|
8
|
-
specified 'keys_*' attribute, the 'default_*' that matches the specified
|
9
|
-
|
6
|
+
should be defined.
|
10
|
-
|
7
|
+
When converting from integers to strings, the string is fetched from the
|
11
|
-
Assume and 'keys_strings' is ["Amy", "Sally"], 'values_int64s' is [5, 6],
|
12
|
-
and 'default_int64' is '-1'. The input ["Dori", "Amy", "Amy", "Sally",
|
13
|
-
|
8
|
+
'classes_strings' list, by simple indexing.
|
14
|
-
Since this operator is an one-to-one mapping, its input and output shapes
|
15
|
-
are the same. Notice that only one of 'keys_*'/'values_*' can be set.
|
9
|
+
When converting from strings to integers, the string is looked up in the list
|
16
|
-
|
10
|
+
and the index at which it is found is used as the converted value.
|
17
|
-
mapped to a value in 'values_*' attribute.
|
18
11
|
**Attributes**
|
19
|
-
* **
|
12
|
+
* **classes_strings**:
|
20
|
-
A
|
13
|
+
A list of labels.
|
21
14
|
* **default_int64**:
|
15
|
+
An integer to use when an input string value is not found in the
|
16
|
+
map.<br>One and only one of the 'default_*' attributes must be
|
22
|
-
|
17
|
+
defined.
|
23
18
|
* **default_string**:
|
19
|
+
A string to use when an input integer value is not found in the
|
20
|
+
map.<br>One and only one of the 'default_*' attributes must be
|
21
|
+
defined.
|
24
|
-
A string.
|
25
|
-
* **keys_floats**:
|
26
|
-
A list of floats.
|
27
|
-
* **keys_int64s**:
|
28
|
-
A list of ints.
|
29
|
-
* **keys_strings**:
|
30
|
-
A list of strings. One and only one of 'keys_*'s should be set.
|
31
|
-
* **values_floats**:
|
32
|
-
A list of floats.
|
33
|
-
* **values_int64s**:
|
34
|
-
A list of ints.
|
35
|
-
* **values_strings**:
|
36
|
-
A list of strings. One and only one of 'value_*'s should be set.
|
37
22
|
**Inputs**
|
38
23
|
* **X** (heterogeneous) - **T1**:
|
39
|
-
Input data.
|
24
|
+
Input data.
|
40
25
|
**Outputs**
|
41
26
|
* **Y** (heterogeneous) - **T2**:
|
27
|
+
Output data. If strings are input, the output values are integers,
|
42
|
-
|
28
|
+
and vice versa.
|
43
29
|
**Type Constraints**
|
44
30
|
* **T1** in (
|
45
|
-
tensor(float),
|
46
31
|
tensor(int64),
|
47
32
|
tensor(string)
|
48
33
|
):
|
49
|
-
The input type
|
34
|
+
The input type must be a tensor of integers or strings, of any
|
35
|
+
shape.
|
50
36
|
* **T2** in (
|
51
|
-
tensor(float),
|
52
37
|
tensor(int64),
|
53
38
|
tensor(string)
|
54
39
|
):
|
55
|
-
|
40
|
+
have the same shape as the input.
|