本文簡要介紹python語言中 torchrec.modules.deepfm.DeepFM.forward
的用法。
用法:
forward(embeddings: List[torch.Tensor]) → torch.Tensor
embeddings(List[torch.Tensor]) -
所有嵌入的列表(例如,密集、common_sparse、specialized_sparse、embedding_features、raw_embedding_features),形狀如下:
(batch_size, num_embeddings, embedding_dim)
為了便於操作,具有相同嵌入維度的嵌入可以選擇堆疊成單個張量。例如,當我們有 1 個維度 = 32 的訓練嵌入、5 個維度 = 64 的原生嵌入和 3 個維度 = 16 的密集特征時,我們可以將嵌入列表準備為以下列表:
tensor(B, 1, 32) (trained_embedding with num_embeddings=1, embedding_dim=32) tensor(B, 5, 64) (native_embedding with num_embeddings=5, embedding_dim=64) tensor(B, 3, 16) (dense_features with num_embeddings=3, embedding_dim=32)
注意
所有輸入張量的
batch_size
必須相同。dense_module
的輸出,以扁平化和連接的embeddings
作為輸入。torch.Tensor
參數:
返回:
返回類型:
相關用法
- Python PyTorch DeepFM用法及代碼示例
- Python PyTorch DeQuantize用法及代碼示例
- Python PyTorch DenseArch用法及代碼示例
- Python PyTorch Decompressor用法及代碼示例
- Python PyTorch Demultiplexer用法及代碼示例
- Python PyTorch DistributedModelParallel用法及代碼示例
- Python PyTorch DistributedDataParallel用法及代碼示例
- Python PyTorch DistributedDataParallel.register_comm_hook用法及代碼示例
- Python PyTorch DataFrameMaker用法及代碼示例
- Python PyTorch DLRM用法及代碼示例
- Python PyTorch DistributedSampler用法及代碼示例
- Python PyTorch DistributedDataParallel.join用法及代碼示例
- Python PyTorch Dropout用法及代碼示例
- Python PyTorch DistributedModelParallel.named_parameters用法及代碼示例
- Python PyTorch Dropout3d用法及代碼示例
- Python PyTorch DataParallel用法及代碼示例
- Python PyTorch DistributedModelParallel.state_dict用法及代碼示例
- Python PyTorch DistributedDataParallel.no_sync用法及代碼示例
- Python PyTorch Dropout2d用法及代碼示例
- Python PyTorch DistributedModelParallel.named_buffers用法及代碼示例
- Python PyTorch Dirichlet用法及代碼示例
- Python PyTorch DistributedOptimizer用法及代碼示例
- Python PyTorch DatasetFolder.find_classes用法及代碼示例
- Python PyTorch frexp用法及代碼示例
- Python PyTorch jvp用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torchrec.modules.deepfm.DeepFM.forward。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。