检索将单词映射到 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])
相关用法
- Python tf.keras.datasets.fashion_mnist.load_data用法及代码示例
- Python tf.keras.datasets.cifar10.load_data用法及代码示例
- Python tf.keras.datasets.mnist.load_data用法及代码示例
- Python tf.keras.datasets.cifar100.load_data用法及代码示例
- Python tf.keras.applications.inception_resnet_v2.preprocess_input用法及代码示例
- Python tf.keras.metrics.Mean.merge_state用法及代码示例
- Python tf.keras.layers.InputLayer用法及代码示例
- Python tf.keras.callbacks.ReduceLROnPlateau用法及代码示例
- Python tf.keras.layers.serialize用法及代码示例
- Python tf.keras.metrics.Hinge用法及代码示例
- Python tf.keras.experimental.WideDeepModel.compute_loss用法及代码示例
- Python tf.keras.metrics.SparseCategoricalAccuracy.merge_state用法及代码示例
- Python tf.keras.metrics.RootMeanSquaredError用法及代码示例
- Python tf.keras.applications.resnet50.preprocess_input用法及代码示例
- Python tf.keras.metrics.SparseCategoricalCrossentropy.merge_state用法及代码示例
- Python tf.keras.metrics.sparse_categorical_accuracy用法及代码示例
- Python tf.keras.layers.Dropout用法及代码示例
- Python tf.keras.activations.softplus用法及代码示例
- Python tf.keras.utils.custom_object_scope用法及代码示例
- Python tf.keras.optimizers.Optimizer.set_weights用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.keras.datasets.imdb.get_word_index。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。