ChatGPT解决这个技术问题 Extra ChatGPT

Keras Tokenizer 方法究竟做了什么?

有时,情况要求我们执行以下操作:

from keras.preprocessing.text import Tokenizer
tokenizer = Tokenizer(num_words=my_max)

然后,我们总是念诵这个咒语:

tokenizer.fit_on_texts(text) 
sequences = tokenizer.texts_to_sequences(text)

虽然我(或多或少)了解总体效果是什么,但我无法弄清楚每个人分别做了什么,无论我做了多少研究(显然包括文档)。我想我从来没有见过一个没有另一个。

那么每个人的作用是什么?在任何情况下,您会使用其中一种而不使用另一种吗?如果不是,为什么不将它们简单地组合成类似的东西:

sequences = tokenizer.fit_on_texts_to_sequences(text)

抱歉,如果我遗漏了一些明显的东西,但我对此很陌生。

我发现与直觉相反的是,Tokenizer 的输出是一个整数序列,如单词索引,而不是单个标记的列表。事实上,它可以采用标记化文本(每个内容的标记列表),并输出整数序列 tensorflow.org/api_docs/python/tf/keras/preprocessing/text/…

n
nuric

source code

fit_on_texts 根据文本列表更新内部词汇。该方法基于词频创建词汇索引。所以如果你给它一些类似的东西,“猫坐在垫子上。”它将创建一个字典 st word_index["the"] = 1; word_index["cat"] = 2 它是单词 -> 索引字典,因此每个单词都有一个唯一的整数值。 0 保留用于填充。所以较低的整数意味着更频繁的词(通常前几个是停用词,因为它们出现很多)。 texts_to_sequences 将文本中的每个文本转换为整数序列。所以它基本上将文本中的每个单词替换为 word_index 字典中对应的整数值。不多也不少,当然不涉及魔法。

为什么不将它们组合起来?因为您几乎总是一次并转换成序列多次。您将适应一次训练语料库,并在训练/评估/测试/预测时间使用完全相同的 word_index 字典将实际文本转换为序列以将它们提供给网络。因此,将这些方法分开是有意义的。


所以这一切都在源代码中!我想我看起来不够努力......现在我明白了:适合 - 一次,序列 - 很多!像往常一样生活和学习。谢谢。
@nuric 感谢您的回复。但是,有一些注意事项。根据官方文档,“0 是一个保留索引,不会分配给任何单词。”因此在您的示例中,第一个单词索引将为 1 keras.io/preprocessing/text 另一点是默认过滤器会删除大部分标点符号,因此只有当您从过滤器中删除标点符号时,这些符号才会在词汇表中出现。
@Nikita 感谢您指出这一点,我更新了答案以解决该问题。
谢谢你。那么,给定一个时间序列,我们是否必须使用 Tokenizer 对其进行标记?
我们可以在执行 fit_on_sequences 后提取单词吗
a
ajaysinghnegi

通过示例向上述答案添加更多内容将有助于更好地理解:

示例 1:

t  = Tokenizer()
fit_text = "The earth is an awesome place live"
t.fit_on_texts(fit_text)
test_text = "The earth is an great place live"
sequences = t.texts_to_sequences(test_text)

print("sequences : ",sequences,'\n')

print("word_index : ",t.word_index)
#[] specifies : 1. space b/w the words in the test_text    2. letters that have not occured in fit_text

Output :

       sequences :  [[3], [4], [1], [], [1], [2], [8], [3], [4], [], [5], [6], [], [2], [9], [], [], [8], [1], [2], [3], [], [13], [7], [2], [14], [1], [], [7], [5], [15], [1]] 

       word_index :  {'e': 1, 'a': 2, 't': 3, 'h': 4, 'i': 5, 's': 6, 'l': 7, 'r': 8, 'n': 9, 'w': 10, 'o': 11, 'm': 12, 'p': 13, 'c': 14, 'v': 15}

示例 2:

t  = Tokenizer()
fit_text = ["The earth is an awesome place live"]
t.fit_on_texts(fit_text)

#fit_on_texts fits on sentences when list of sentences is passed to fit_on_texts() function. 
#ie - fit_on_texts( [ sent1, sent2, sent3,....sentN ] )

#Similarly, list of sentences/single sentence in a list must be passed into texts_to_sequences.
test_text1 = "The earth is an great place live"
test_text2 = "The is my program"
sequences = t.texts_to_sequences([test_text1, test_text2])

print('sequences : ',sequences,'\n')

print('word_index : ',t.word_index)
#texts_to_sequences() returns list of list. ie - [ [] ]

Output:

        sequences :  [[1, 2, 3, 4, 6, 7], [1, 3]] 

        word_index :  {'the': 1, 'earth': 2, 'is': 3, 'an': 4, 'awesome': 5, 'place': 6, 'live': 7}

例子从不说谎!感谢您的出色回答。
我有一个训练数据集和一个测试数据集都有两列:一个索引和已经清理的文本。我想知道是否可以在两个数据帧之间执行 append() 然后在附加集上执行 Tokenizer.fit_on_text () ,而不仅仅是在训练集上执行。我认为如果我想要的只是将文本转换为一个整数向量,其中每个整数代表所有使用的词汇表中的一个单词,那么首先执行 append() 会更好,因为当我执行 text_to_sequence 时测试集中的向量将具有更多元素()。
@Nachengue 看这里:stackoverflow.com/questions/47778403/…
d
desertnaut

让我们看看这行代码做了什么。

tokenizer.fit_on_texts(text) 

例如,考虑句子 " The earth is an awesome place live"

tokenizer.fit_on_texts("The earth is an awesome place live") 适合 [[1,2,3,4,5,6,7]],其中 3 -> "是" , 6 -> “地方”等等。

sequences = tokenizer.texts_to_sequences("The earth is an great place live")

返回 [[1,2,3,4,6,7]]

你看这里发生了什么。 “great”这个词最初是不合适的,所以它不能识别“great”这个词。意思是,fit_on_text 可以在训练数据上独立使用,然后拟合的词汇索引可以用来表示一组全新的词序列。这是两个不同的过程。因此有两行代码。


关于缺少“伟大”这个词的好消息。但是我们如何处理这些不在词汇表中的词呢?
G
Gennaro

nuric 已经解决了这个问题,但我会补充一点。

在此示例中,请同时关注单词 frequency-based encoding 和 OOV:

from tensorflow.keras.preprocessing.text        import Tokenizer

corpus =['The', 'cat', 'is', 'on', 'the', 'table', 'a', 'very', 'long', 'table']

tok_obj = Tokenizer(num_words=10, oov_token='<OOV>')
tok_obj.fit_on_texts(corpus)

[TL;DR] 分词器将包括出现在语料库中的前 10 个单词。这里有 10 个单词,但只有 8 个是唯一的。最常见的 10 个词将被编码,如果它们超过这个数字,它们将变为 OOV(词汇表外)。

建字典:

请注意频率

{'<OOV>': 1, 'the': 2, 'table': 3, 'cat': 4, 'is': 5, 'on': 6, 'a': 7, 'very': 8, 'long': 9}

句子处理:

processed_seq = tok_obj.texts_to_sequences(['The dog is on the bed'])

这使:

>>> processed_seq
    [[2, 1, 5, 6, 2, 1]]

如何检索句子?

构建字典 inv_map 并使用它!可以在下面使用列表推导来压缩代码。

inv_map = {v: k for k, v in tok_obj.word_index.items()}

for seq in processed_seq:
    for tok in seq:
        print(inv_map[tok])

这使:

>>> the
<OOV>
is
on
the
<OOV>

因为狗和床不在字典里。

列表推导可用于压缩代码。这里获取一个列表作为输出。

[inv_map[tok] for seq in processed_seq for tok in seq]

这使:

>>> ['the', '<OOV>', 'is', 'on', 'the', '<OOV>']