本文简要介绍python语言中 torchrec.models.dlrm.OverArch
的用法。
用法:
class torchrec.models.dlrm.OverArch(in_features: int, layer_sizes: List[int], device: Optional[torch.device] = None)
in_features(int) -输入的大小。
layer_sizes(List[int]) -
OverArch
的层大小。device(可选的[torch.device]) -默认计算设备。
基础:
torch.nn.modules.module.Module
Final Arch of DLRM - OverArch 上的简单 MLP。
例子:
B = 20 D = 3 over_arch = OverArch(10, [5, 1]) logits = over_arch(torch.rand((B, 10)))
参数:
相关用法
- Python PyTorch OverArch用法及代码示例
- Python PyTorch ObserverBase.with_args用法及代码示例
- Python PyTorch ObserverBase.with_callable_args用法及代码示例
- Python PyTorch OnDiskCacheHolder用法及代码示例
- Python PyTorch OneCycleLR用法及代码示例
- Python PyTorch OneHotCategorical用法及代码示例
- Python PyTorch OnlineReader用法及代码示例
- Python PyTorch frexp用法及代码示例
- Python PyTorch jvp用法及代码示例
- Python PyTorch cholesky用法及代码示例
- Python PyTorch vdot用法及代码示例
- Python PyTorch ELU用法及代码示例
- Python PyTorch ScaledDotProduct.__init__用法及代码示例
- Python PyTorch gumbel_softmax用法及代码示例
- Python PyTorch get_tokenizer用法及代码示例
- Python PyTorch saved_tensors_hooks用法及代码示例
- Python PyTorch positive用法及代码示例
- Python PyTorch renorm用法及代码示例
- Python PyTorch AvgPool2d用法及代码示例
- Python PyTorch MaxUnpool3d用法及代码示例
- Python PyTorch Bernoulli用法及代码示例
- Python PyTorch Tensor.unflatten用法及代码示例
- Python PyTorch Sigmoid用法及代码示例
- Python PyTorch Tensor.register_hook用法及代码示例
- Python PyTorch ShardedEmbeddingBagCollection.named_parameters用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torchrec.models.dlrm.OverArch。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。