本文簡要介紹python語言中 torch.nn.init.sparse_
的用法。
用法:
torch.nn.init.sparse_(tensor, sparsity, std=0.01)
tensor-一個n維
torch.Tensor
sparsity-每列中要設置為零的元素分數
std-用於生成非零值的正態分布的標準差
將 2D 輸入
Tensor
填充為稀疏矩陣,其中非零元素將從正態分布 中提取,如Deep learning via Hessian-free optimization
- Martens, J. (2010) 中所述。例子
>>> w = torch.empty(3, 5) >>> nn.init.sparse_(w, sparsity=0.1)
參數:
相關用法
- Python PyTorch sparse_csr_tensor用法及代碼示例
- Python PyTorch sparse_coo_tensor用法及代碼示例
- Python PyTorch spectral_norm用法及代碼示例
- Python PyTorch split用法及代碼示例
- Python PyTorch saved_tensors_hooks用法及代碼示例
- Python PyTorch sqrt用法及代碼示例
- Python PyTorch skippable用法及代碼示例
- Python PyTorch squeeze用法及代碼示例
- Python PyTorch square用法及代碼示例
- Python PyTorch save_on_cpu用法及代碼示例
- Python PyTorch scatter_object_list用法及代碼示例
- Python PyTorch skip_init用法及代碼示例
- Python PyTorch simple_space_split用法及代碼示例
- Python PyTorch sum用法及代碼示例
- Python PyTorch sub用法及代碼示例
- Python PyTorch sentencepiece_numericalizer用法及代碼示例
- Python PyTorch symeig用法及代碼示例
- Python PyTorch sinh用法及代碼示例
- Python PyTorch sinc用法及代碼示例
- Python PyTorch std_mean用法及代碼示例
- Python PyTorch slogdet用法及代碼示例
- Python PyTorch symbolic_trace用法及代碼示例
- Python PyTorch shutdown用法及代碼示例
- Python PyTorch sgn用法及代碼示例
- Python PyTorch set_flush_denormal用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.nn.init.sparse_。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。