UnicodeCodepointTokenizer
类keras_nlp.tokenizers.UnicodeCodepointTokenizer(
sequence_length=None,
lowercase=True,
normalization_form=None,
errors="replace",
replacement_char=65533,
input_encoding="UTF-8",
output_encoding="UTF-8",
vocabulary_size=None,
dtype="int32",
**kwargs
)
一个 Unicode 字符分词器层。
此分词器是一个无需词汇表的 tokenizer,它将文本分词为 Unicode 字符代码点。
分词器输出可以填充和截断,使用 sequence_length
参数,或者保持未截断。确切的输出将取决于输入张量的秩。
如果输入是字符串批次(秩 > 0):默认情况下,该层将输出一个 tf.RaggedTensor
,其中输出的最后一个维度是不规则的。如果设置了 sequence_length
,则该层将输出一个密集的 tf.Tensor
,其中所有输入都已填充或截断为 sequence_length
。
如果输入是标量字符串(秩 == 0):默认情况下,该层将输出一个密集的 tf.Tensor
,其静态形状为 [None]
。如果设置了 sequence_length
,则输出将是一个形状为 [sequence_length]
的密集 tf.Tensor
。
输出数据类型可以通过 dtype
参数控制,该参数应为整数类型(“int16”、“int32”等)。
参数
True
,则在分词之前先将输入文本转换为小写。detokenize()
的行为。'strict'
的值会导致分词器对任何无效的输入格式产生 InvalidArgument
错误。'replace'
的值会导致分词器将输入中的任何无效格式替换为 replacement_char 代码点。'ignore'
的值会导致分词器跳过输入中的任何无效格式,并且不产生相应的输出字符。65533
。默认为 65533
。"UTF-8"
。"UTF-8"
。vocabulary_size
,通过将所有代码点钳位到范围 [0, vocabulary_size) 内。实际上,这将使 vocabulary_size - 1
id 成为 OOV 值。示例
基本用法。
>>> inputs = "Unicode Tokenizer"
>>> tokenizer = keras_nlp.tokenizers.UnicodeCodepointTokenizer()
>>> outputs = tokenizer(inputs)
>>> np.array(outputs)
array([117, 110, 105, 99, 111, 100, 101, 32, 116, 111, 107, 101, 110,
105, 122, 101, 114], dtype=int32)
不规则输出。
>>> inputs = ["पुस्तक", "کتاب"]
>>> tokenizer = keras_nlp.tokenizers.UnicodeCodepointTokenizer()
>>> seq1, seq2 = tokenizer(inputs)
>>> np.array(seq1)
array([2346, 2369, 2360, 2381, 2340, 2325])
>>> np.array(seq2)
array([1705, 1578, 1575, 1576])
密集输出。
>>> inputs = ["पुस्तक", "کتاب"]
>>> tokenizer = keras_nlp.tokenizers.UnicodeCodepointTokenizer(
... sequence_length=8)
>>> seq1, seq2 = tokenizer(inputs)
>>> np.array(seq1)
array([2346, 2369, 2360, 2381, 2340, 2325, 0, 0], dtype=int32)
>>> np.array(seq2)
array([1705, 1578, 1575, 1576, 0, 0, 0, 0], dtype=int32)
分词,然后批处理以获得不规则输出。
>>> inputs = ["Book", "पुस्तक", "کتاب"]
>>> tokenizer = keras_nlp.tokenizers.UnicodeCodepointTokenizer()
>>> ds = tf.data.Dataset.from_tensor_slices(inputs)
>>> ds = ds.map(tokenizer)
>>> ds = ds.apply(tf.data.experimental.dense_to_ragged_batch(3))
>>> ds.take(1).get_single_element()
<tf.RaggedTensor [[98, 111, 111, 107],
[2346, 2369, 2360, 2381, 2340, 2325],
[1705, 1578, 1575, 1576]]>
批处理,然后分词以获得不规则输出。
>>> inputs = ["Book", "पुस्तक", "کتاب"]
>>> tokenizer = keras_nlp.tokenizers.UnicodeCodepointTokenizer()
>>> ds = tf.data.Dataset.from_tensor_slices(inputs)
>>> ds = ds.batch(3).map(tokenizer)
>>> ds.take(1).get_single_element()
<tf.RaggedTensor [[98, 111, 111, 107],
[2346, 2369, 2360, 2381, 2340, 2325],
[1705, 1578, 1575, 1576]]>
分词,然后批处理以获得密集输出(提供 sequence_length
)。
>>> inputs = ["Book", "पुस्तक", "کتاب"]
>>> tokenizer = keras_nlp.tokenizers.UnicodeCodepointTokenizer(
... sequence_length=5)
>>> ds = tf.data.Dataset.from_tensor_slices(inputs)
>>> ds = ds.map(tokenizer)
>>> ds = ds.apply(tf.data.experimental.dense_to_ragged_batch(3))
>>> ds.take(1).get_single_element()
<tf.Tensor: shape=(3, 5), dtype=int32, numpy=
array([[ 98, 111, 111, 107, 0],
[2346, 2369, 2360, 2381, 2340],
[1705, 1578, 1575, 1576, 0]], dtype=int32)>
批处理,然后分词以获得密集输出(提供 sequence_length
)。
>>> inputs = ["Book", "पुस्तक", "کتاب"]
>>> tokenizer = keras_nlp.tokenizers.UnicodeCodepointTokenizer(
... sequence_length=5)
>>> ds = tf.data.Dataset.from_tensor_slices(inputs)
>>> ds = ds.batch(3).map(tokenizer)
>>> ds.take(1).get_single_element()
<tf.Tensor: shape=(3, 5), dtype=int32, numpy=
array([[ 98, 111, 111, 107, 0],
[2346, 2369, 2360, 2381, 2340],
[1705, 1578, 1575, 1576, 0]], dtype=int32)>
带截断的分词。
>>> inputs = ["I Like to Travel a Lot", "मैं किताबें पढ़ना पसंद करता हूं"]
>>> tokenizer = keras_nlp.tokenizers.UnicodeCodepointTokenizer(
... sequence_length=5)
>>> outputs = tokenizer(inputs)
>>> np.array(outputs)
array([[ 105, 32, 108, 105, 107],
[2350, 2376, 2306, 32, 2325]], dtype=int32)
带 vocabulary_size 的分词。
>>> latin_ext_cutoff = 592
>>> tokenizer = keras_nlp.tokenizers.UnicodeCodepointTokenizer(
... vocabulary_size=latin_ext_cutoff)
>>> outputs = tokenizer("¿Cómo estás?")
>>> np.array(outputs)
array([191, 99, 243, 109, 111, 32, 101, 115, 116, 225, 115, 63],
dtype=int32)
>>> outputs = tokenizer("आप कैसे हैं")
>>> np.array(outputs)
array([591, 591, 32, 591, 591, 591, 591, 32, 591, 591, 591],
dtype=int32)
去分词。
>>> inputs = tf.constant([110, 105, 110, 106, 97], dtype="int32")
>>> tokenizer = keras_nlp.tokenizers.UnicodeCodepointTokenizer()
>>> tokenizer.detokenize(inputs)
'ninja'
带填充的去分词。
>>> tokenizer = keras_nlp.tokenizers.UnicodeCodepointTokenizer(
... sequence_length=7)
>>> dataset = tf.data.Dataset.from_tensor_slices(["a b c", "b c", "a"])
>>> dataset = dataset.map(tokenizer)
>>> dataset.take(1).get_single_element()
<tf.Tensor: shape=(7,), dtype=int32,
numpy=array([97, 32, 98, 32, 99, 0, 0], dtype=int32)>
>>> detokunbatched = dataset.map(tokenizer.detokenize)
>>> detokunbatched.take(1).get_single_element()
<tf.Tensor: shape=(), dtype=string, numpy=b'a b c'>
带无效字节的去分词。
>>> inputs = tf.constant([110, 105, 10000000, 110, 106, 97])
>>> tokenizer = keras_nlp.tokenizers.UnicodeCodepointTokenizer(
... errors="replace", replacement_char=88)
>>> tokenizer.detokenize(inputs)
'niXnja'
tokenize
方法UnicodeCodepointTokenizer.tokenize(inputs)
将输入字符串张量转换为输出标记。
参数
detokenize
方法UnicodeCodepointTokenizer.detokenize(inputs)
将标记转换回字符串。
参数
get_vocabulary
方法UnicodeCodepointTokenizer.get_vocabulary()
获取分词器词汇表作为字符串术语列表。
vocabulary_size
方法UnicodeCodepointTokenizer.vocabulary_size()
获取分词器词汇表的大小。None 表示未提供词汇表大小。
token_to_id
方法UnicodeCodepointTokenizer.token_to_id(token)
将字符串标记转换为整数 id。
id_to_token
方法UnicodeCodepointTokenizer.id_to_token(id)
将整数 id 转换为字符串标记。