description: Represents multi-hot representation of given categorical column.

tf.feature_column.indicator_column

Represents multi-hot representation of given categorical column.

name = indicator_column(categorical_column_with_vocabulary_list(
    'name', ['bob', 'george', 'wanda']))
columns = [name, ...]
features = tf.io.parse_example(..., features=make_parse_example_spec(columns))
dense_tensor = input_layer(features, columns)

dense_tensor == [[1, 0, 0]]  # If "name" bytes_list is ["bob"]
dense_tensor == [[1, 0, 1]]  # If "name" bytes_list is ["bob", "wanda"]
dense_tensor == [[2, 0, 0]]  # If "name" bytes_list is ["bob", "bob"]

categorical_column A CategoricalColumn which is created by categorical_column_with_* or crossed_column functions.

An IndicatorColumn.

ValueError If categorical_column is not CategoricalColumn type.