View source on GitHub |
Gets the representation value of a categorical value stored as integer.
tfdf.py_tree.dataspec.categorical_value_idx_to_value(
column_spec: data_spec_pb2.Column, value_idx: int
) -> Union[int, str]
If the categorical value is an integer, returns the input value. If the categorical value is a string, resolves the dictionary and returns a string.
Args | |
---|---|
column_spec
|
The column spec of the attribute. |
value_idx
|
A value compatible with the column spec. |
Returns | |
---|---|
The representation of "value_idx". |