mindspore.nn.EmbeddingLookup
- class mindspore.nn.EmbeddingLookup(vocab_size, embedding_size, param_init='normal', target='CPU', slice_mode='batch_slice', manual_shapes=None, max_norm=None, sparse=True, vocab_cache_size=0, dtype=mstype.float32)[源代码]
嵌入查找层。
与嵌入层功能相同,主要用于自动并行或半自动并行时,存在大规模嵌入层的异构并行场景。
说明
当’target’设置为’CPU’时,此模块将使用ops.EmbeddingLookup().set_device(‘CPU’),在lookup表指定了’offset = 0’。 当’target’设置为’DEVICE’时,此模块将使用ops.Gather(),在lookup表指定了’axis = 0’。 在字段切片模式下,必须指定manual_shapes。此tuple包含vocab[i]元素, vocab[i]是第i部分的行号。
- 参数:
vocab_size (int) - 嵌入词典的大小。
embedding_size (int) - 每个嵌入向量的大小。
param_init (Union[Tensor, str, Initializer, numbers.Number]) - embedding_table的初始化方法。当指定为字符串,字符串取值请参见类 Initializer 。默认值:
'normal'
。target (str) - 指定执行操作的’target’。取值范围为[
'DEVICE'
,'CPU'
]。默认值:'CPU'
。slice_mode (str) - semi_auto_parallel或auto_parallel模式下的切片方式。默认值:
'batch_slice'
。batch_slice (str) - EmbeddingLookup算子会将输入的索引张量按批次(batch)进行划分,然后查找对应的嵌入向量。适用于每个样本都有相同数量索引的情况。
field_slice (str) - EmbeddingLookup算子会将输入的索引张量按特征(field)进行划分,然后查找对应的嵌入向量。适用于每个样本索引数量可能不同但是特征维度相同的情况。
table_row_slice (str) - EmbeddingLookup算子会将输入的索引张量看作一个二维表,并按行进行划分,然后查找对应的嵌入向量。
table_column_slice (str) - EmbeddingLookup算子会将输入的索引张量看作一个二维表,并按列进行划分,然后查找对应的嵌入向量。
manual_shapes (tuple) - 字段切片模式下的伴随数组(accompaniment array),默认值:
None
。max_norm (Union[float, None]) - 最大剪切值。数据类型必须为float16、float32或None。默认值:
None
。sparse (bool) - 使用稀疏模式。当’target’设置为’CPU’时,’sparse’必须为True。默认值:
True
。vocab_cache_size (int) - 嵌入字典的缓存大小。默认值:
0
。仅在训练模式和’DEVICE’目标中有效。 相应优化器的力矩参数也将设置为缓存大小。此外需注意,它还会消耗’DEVICE’内存,因此建议合理设置参数值,避免内存不足。dtype (
mindspore.dtype
) - Parameters的dtype。默认值:mstype.float32
。
- 输入:
input_indices (Tensor) - shape为 \((y_1, y_2, ..., y_S)\) 的Tensor。指定原始Tensor元素的索引。当取值超出embedding_table的范围时,超出部分在输出中填充为0。不支持负值,如果为负值,则结果未定义。在semi auto parallel或auto parallel模式下运行时,Input_indices只能是此接口中的二维Tensor。
- 输出:
Tensor,shape为 \((z_1, z_2, ..., z_N)\) 的Tensor。
- 异常:
TypeError - vocab_size 、 embedding_size 或 vocab_cache_size 不是整数。
TypeError - sparse 不是bool或 manual_shapes 不是tuple。
ValueError - vocab_size 或 embedding_size 小于1。
ValueError - vocab_cache_size 小于0。
ValueError - target 既不是’CPU’也不是’DEVICE’。
ValueError - slice_mode 不是’batch_slice’、’field_slice’、’table_row_slice’或’table_column_slice’。
ValueError - sparse 为False且 target 为’CPU’。
ValueError - slice_mode 为’field_slice’且 manual_shapes 是None。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> import mindspore >>> from mindspore import Tensor, nn >>> import numpy as np >>> input_indices = Tensor(np.array([[1, 0], [3, 2]]), mindspore.int32) >>> result = nn.EmbeddingLookup(4,2)(input_indices) >>> print(result.shape) (2, 2, 2)