本文簡要介紹python語言中 torch.Tensor.new_full
的用法。
用法:
Tensor.new_full(size, fill_value, dtype=None, device=None, requires_grad=False) → Tensor
fill_value(標量) -填充輸出張量的數字。
dtype(
torch.dtype
, 可選的) -返回張量的所需類型。默認值:如果沒有,則與此張量相同torch.dtype
。device(
torch.device
, 可選的) -返回張量的所需設備。默認值:如果沒有,則與此張量相同torch.device
。requires_grad(bool,可選的) -如果 autograd 應該在返回的張量上記錄操作。默認值:
False
。
返回用
fill_value
填充的大小為size
的張量。默認情況下,返回的張量與此張量具有相同的torch.dtype
和torch.device
。例子:
>>> tensor = torch.ones((2,), dtype=torch.float64) >>> tensor.new_full((3, 4), 3.141592) tensor([[ 3.1416, 3.1416, 3.1416, 3.1416], [ 3.1416, 3.1416, 3.1416, 3.1416], [ 3.1416, 3.1416, 3.1416, 3.1416]], dtype=torch.float64)
參數:
相關用法
- Python PyTorch Tensor.new_empty用法及代碼示例
- Python PyTorch Tensor.new_tensor用法及代碼示例
- Python PyTorch Tensor.new_ones用法及代碼示例
- Python PyTorch Tensor.new_zeros用法及代碼示例
- Python PyTorch Tensor.narrow用法及代碼示例
- Python PyTorch Tensor.unflatten用法及代碼示例
- Python PyTorch Tensor.register_hook用法及代碼示例
- Python PyTorch Tensor.storage_offset用法及代碼示例
- Python PyTorch Tensor.to用法及代碼示例
- Python PyTorch Tensor.sparse_mask用法及代碼示例
- Python PyTorch Tensor.is_leaf用法及代碼示例
- Python PyTorch Tensor.imag用法及代碼示例
- Python PyTorch Tensor.unfold用法及代碼示例
- Python PyTorch Tensor.real用法及代碼示例
- Python PyTorch Tensor.refine_names用法及代碼示例
- Python PyTorch Tensor.rename用法及代碼示例
- Python PyTorch Tensor.view用法及代碼示例
- Python PyTorch Tensor.index_copy_用法及代碼示例
- Python PyTorch Tensor.scatter_用法及代碼示例
- Python PyTorch Tensor.fill_diagonal_用法及代碼示例
- Python PyTorch Tensor.repeat用法及代碼示例
- Python PyTorch Tensor.item用法及代碼示例
- Python PyTorch Tensor.tolist用法及代碼示例
- Python PyTorch Tensor.put_用法及代碼示例
- Python PyTorch Tensor.map_用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.Tensor.new_full。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。