codecamp

PyTorch 类型信息

原文:PyTorch 类型信息

可以通过 torch.finfotorch.iinfo 访问 torch.dtype 的数值属性。

torch

class torch.finfo¶

torch.finfo 是表示浮点 torch.dtype (即torch.float32torch.float64torch.float16)的数值属性的对象。 这类似于 numpy.finfo 。

torch.finfo 提供以下属性:

|

名称

|

类型

|

描述

| | --- | --- | --- | | 位 | 整型 | 类型占用的位数。 | | eps | 浮动 | 最小可表示数字,例如1.0 + eps != 1.0。 | | 最大值 | float | 可表示的最大数字。 | | 分 | float | 最小的可表示数字(通常为-max)。 | | 小 | float | 可表示的最小正数。 |

注意

可以不带参数地调用 torch.finfo 的构造函数,在这种情况下,将为 pytorch 默认 dtype 创建类(由 torch.get_default_dtype() 返回)。

torch

class torch.iinfo¶

torch.iinfo 是代表整数 torch.dtype (即torch.uint8torch.int8torch.int16torch.int32torch.int64)。 这类似于 numpy.iinfo 。

torch.iinfo 提供以下属性:

|

Name

|

Type

|

Description

| | --- | --- | --- | | bits | int | The number of bits occupied by the type. | | max | int | The largest representable number. | | min | int | 可表示的最小数字。 |

PyTorch torch.utils.tensorboard
PyTorch 命名张量
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Pytorch 音频

PyTorch 命名为 Tensor(实验性)

PyTorch 强化学习

PyTorch 用其他语言

PyTorch 语言绑定

PyTorch torchvision参考

PyTorch 音频参考

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }