当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python tf.keras.datasets.imdb.get_word_index用法及代码示例


检索将单词映射到 IMDB 数据集中的索引的字典。

用法

tf.keras.datasets.imdb.get_word_index(
    path='imdb_word_index.json'
)

参数

  • path 在哪里缓存数据(相对于 ~/.keras/dataset )。

返回

  • 词索引词典。键是字符串,值是它们的索引。

例子:

# Retrieve the training sequences.
(x_train, _), _ = keras.datasets.imdb.load_data()
# Retrieve the word index file mapping words to indices
word_index = keras.datasets.imdb.get_word_index()
# Reverse the word index to obtain a dict mapping indices to words
inverted_word_index = dict((i, word) for (word, i) in word_index.items())
# Decode the first sequence in the dataset
decoded_sequence = " ".join(inverted_word_index[i] for i in x_train[0])

相关用法


注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.keras.datasets.imdb.get_word_index。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。