一系列分类术语,其中 id 使用 in-memory 列表。
用法
tf.feature_column.sequence_categorical_column_with_vocabulary_list(
key, vocabulary_list, dtype=None, default_value=-1, num_oov_buckets=0
)
参数
-
key
标识输入特征的唯一字符串。 -
vocabulary_list
定义词汇表的有序迭代。每个特征都映射到vocabulary_list
中其值的索引(如果存在)。必须可转换为dtype
。 -
dtype
特征的类型。仅支持字符串和整数类型。如果None
,将从vocabulary_list
推断。 -
default_value
为词汇外特征值返回的整数 ID 值,默认为-1
。这不能用正的num_oov_buckets
来指定。 -
num_oov_buckets
非负整数,词汇表外的桶数。所有超出词汇表的输入都将根据输入值的散列分配[len(vocabulary_list), len(vocabulary_list)+num_oov_buckets)
范围内的 ID。不能用default_value
指定正的num_oov_buckets
。
返回
-
一个
SequenceCategoricalColumn
。
抛出
-
ValueError
如果vocabulary_list
为空,或包含重复键。 -
ValueError
num_oov_buckets
是一个负整数。 -
ValueError
num_oov_buckets
和default_value
均已指定。 -
ValueError
如果dtype
不是整数或字符串。
将此传递给 embedding_column
或 indicator_column
以将序列分类数据转换为密集表示,以输入到序列 NN,例如 RNN。
例子:
colors = sequence_categorical_column_with_vocabulary_list(
key='colors', vocabulary_list=('R', 'G', 'B', 'Y'),
num_oov_buckets=2)
colors_embedding = embedding_column(colors, dimension=3)
columns = [colors_embedding]
features = tf.io.parse_example(..., features=make_parse_example_spec(columns))
sequence_feature_layer = SequenceFeatures(columns)
sequence_input, sequence_length = sequence_feature_layer(features)
sequence_length_mask = tf.sequence_mask(sequence_length)
rnn_cell = tf.keras.layers.SimpleRNNCell(hidden_size)
rnn_layer = tf.keras.layers.RNN(rnn_cell)
outputs, state = rnn_layer(sequence_input, mask=sequence_length_mask)
相关用法
- Python tf.feature_column.sequence_categorical_column_with_vocabulary_file用法及代码示例
- Python tf.feature_column.sequence_categorical_column_with_identity用法及代码示例
- Python tf.feature_column.sequence_categorical_column_with_hash_bucket用法及代码示例
- Python tf.feature_column.sequence_numeric_column用法及代码示例
- Python tf.feature_column.shared_embeddings用法及代码示例
- Python tf.feature_column.crossed_column用法及代码示例
- Python tf.feature_column.categorical_column_with_vocabulary_list用法及代码示例
- Python tf.feature_column.categorical_column_with_hash_bucket用法及代码示例
- Python tf.feature_column.bucketized_column用法及代码示例
- Python tf.feature_column.categorical_column_with_identity用法及代码示例
- Python tf.feature_column.categorical_column_with_vocabulary_file用法及代码示例
- Python tf.feature_column.indicator_column用法及代码示例
- Python tf.feature_column.weighted_categorical_column用法及代码示例
- Python tf.feature_column.numeric_column用法及代码示例
- Python tf.feature_column.embedding_column用法及代码示例
- Python tf.feature_column.make_parse_example_spec用法及代码示例
- Python tf.function用法及代码示例
- Python tf.fingerprint用法及代码示例
- Python tf.foldl用法及代码示例
- Python tf.foldr用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.feature_column.sequence_categorical_column_with_vocabulary_list。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。