本文簡要介紹python語言中 torch.distributions.one_hot_categorical.OneHotCategorical
的用法。
用法:
class torch.distributions.one_hot_categorical.OneHotCategorical(probs=None, logits=None, validate_args=None)
基礎:
torch.distributions.distribution.Distribution
創建由
probs
或logits
參數化的 one-hot 分類分布。樣本是 one-hot 大小為
probs.size(-1)
的編碼向量。注意
probs
參數必須是非負、有限且具有非零總和,並且沿最後一個維度將其歸一化為總和為 1。probs
將返回此標準化值。logits
參數將被解釋為非標準化對數概率,因此可以是任何實數。它同樣會被標準化,以便沿最後一個維度得到的概率總和為 1。logits
將返回此標準化值。另請參閱:
torch.distributions.Categorical()
了解probs
和logits
的規範。例子:
>>> m = OneHotCategorical(torch.tensor([ 0.25, 0.25, 0.25, 0.25 ])) >>> m.sample() # equal probability of 0, 1, 2, 3 tensor([ 0., 0., 0., 1.])
相關用法
- Python PyTorch OneCycleLR用法及代碼示例
- Python PyTorch OnDiskCacheHolder用法及代碼示例
- Python PyTorch OnlineReader用法及代碼示例
- Python PyTorch ObserverBase.with_args用法及代碼示例
- Python PyTorch ObserverBase.with_callable_args用法及代碼示例
- Python PyTorch OverArch用法及代碼示例
- 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用法及代碼示例
- Python PyTorch sqrt用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.distributions.one_hot_categorical.OneHotCategorical。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。