numpy(ndarray)和tensor(GPU上的numpy)速查
类型(Types)
Numpy | PyTorch |
---|---|
np.ndarray | torch.Tensor |
np.float32 | torch.float32; torch.float |
np.float64 | torch.float64; torch.double |
np.float | torch.float16; torch.half |
np.int8 | torch.int8 |
np.uint8 | torch.uint8 |
np.int16 | torch.int16; torch.short |
np.int32 | torch.int32; torch.int |
np.int64 | torch.int64; torch.long |
构造器(Constructor)
零和一(Ones and zeros)
Numpy | PyTorch |
---|---|
np.empty((2, 3)) | torch.empty(2, 3) |
np.empty_like(x) | torch.empty_like(x) |
np.eye | torch.eye |
np.identity | torch.eye |
np.ones | torch.ones |
np.ones_like | torch.ones_like |
np.zeros | torch.zeros |
np.zeros_like | torch.zeros_like |
从已知数据构造
Numpy | PyTorch |
---|---|
np.array([[1, 2], [3, 4]]) | torch.tensor([[1, 2], [3, 4]]) |
np.array([3.2, 4.3], dtype=np.float16)np.float16([3.2, 4.3]) | torch.tensor([3.2, 4.3], dtype=torch.float16) |
x.copy() | x.clone() |
np.fromfile(file) | torch.tensor(torch.Storage(file)) |
np.frombuffer | |
np.fromfunction | |
np.fromiter | |
np.fromstring | |
np.load | torch.load |
np.loadtxt | |
np.concatenate | torch.cat |
数值范围
Numpy | PyTorch |
---|---|
np.arange(10) | torch.arange(10) |
np.arange(2, 3, 0.1) | torch.arange(2, 3, 0.1) |
np.linspace | torch.linspace |
np.logspace | torch.logspace |
构造矩阵
Numpy | PyTorch |
---|---|
np.diag | torch.diag |
np.tril | torch.tril |
np.triu | torch.triu |
参数
Numpy | PyTorch |
---|---|
x.shape | x.shape |
x.strides | x.stride() |
x.ndim | x.dim() |
x.data | x.data |
x.size | x.nelement() |
x.dtype | x.dtype |
索引
Numpy | PyTorch |
---|---|
x[0] | x[0] |
x[:, 0] | x[:, 0] |
x[indices] | x[indices] |
np.take(x, indices) | torch.take(x, torch.LongTensor(indices)) |
x[x != 0] | x[x != 0] |
形状(Shape)变换
Numpy | PyTorch |
---|---|
x.reshape | x.reshape; x.view |
x.resize() | x.resize_ |
null | x.resize_as_ |
x.transpose | x.transpose or x.permute |
x.flatten | x.view(-1) |
x.squeeze() | x.squeeze() |
x[:, np.newaxis]; np.expand_dims(x, 1) | x.unsqueeze(1) |
数据选择
Numpy | PyTorch |
---|---|
np.put | |
x.put | x.put_ |
x = np.array([1, 2, 3])x.repeat(2) # [1, 1, 2, 2, 3, 3] | x = torch.tensor([1, 2, 3])x.repeat(2) # [1, 2, 3, 1, 2, 3]x.repeat(2).reshape(2, -1).transpose(1, 0).reshape(-1) # [1, 1, 2, 2, 3, 3] |
np.tile(x, (3, 2)) | x.repeat(3, 2) |
np.choose | |
np.sort | sorted, indices = torch.sort(x, [dim]) |
np.argsort | sorted, indices = torch.sort(x, [dim]) |
np.nonzero | torch.nonzero |
np.where | torch.where |
x[::-1] |
数值计算
Numpy | PyTorch |
---|---|
x.min | x.min |
x.argmin | x.argmin |
x.max | x.max |
x.argmax | x.argmax |
x.clip | x.clamp |
x.round | x.round |
np.floor(x) | torch.floor(x); x.floor() |
np.ceil(x) | torch.ceil(x); x.ceil() |
x.trace | x.trace |
x.sum | x.sum |
x.cumsum | x.cumsum |
x.mean | x.mean |
x.std | x.std |
x.prod | x.prod |
x.cumprod | x.cumprod |
x.all | (x == 1).sum() == x.nelement() |
x.any | (x == 1).sum() > 0 |
数值比较
Numpy | PyTorch |
---|---|
np.less | x.lt |
np.less_equal | x.le |
np.greater | x.gt |
np.greater_equal | x.ge |
np.equal | x.eq |
np.not_equal | x.ne |
pytorch与tensorflow API速查表
方法名称 | pytroch | tensorflow | numpy |
---|---|---|---|
裁剪 | torch.clamp(x, min, max) | tf.clip_by_value(x, min, max) | np.clip(x, min, max) |
取最小值 | torch.min(x, dim)[0] | tf.min(x, axis) | np.min(x , axis) |
取两个tensor的最大值 | torch.max(x, y) | tf.maximum(x, y) | np.maximum(x, y) |
取两个tensor的最小值 | torch.min(x, y) | torch.minimum(x, y) | np.minmum(x, y) |
取最大值索引 | torch.max(x, dim)[1] | tf.argmax(x, axis) | np.argmax(x, axis) |
取最小值索引 | torch.min(x, dim)[1] | tf.argmin(x, axis) | np.argmin(x, axis) |
比较(x > y) | torch.gt(x, y) | tf.greater(x, y) | np.greater(x, y) |
比较(x < y) | torch.le(x, y) | tf.less(x, y) | np.less(x, y) |
比较(x==y) | torch.eq(x, y) | tf.equal(x, y) | np.equal(x, y) |
比较(x!=y) | torch.ne(x, y) | tf.not_equal(x, y) | np.not_queal(x , y) |
取符合条件值的索引 | torch.nonzero(cond) | tf.where(cond) | np.where(cond) |
多个tensor聚合 | torch.cat([x, y], dim) | tf.concat([x,y], axis) | np.concatenate([x,y], axis) |
堆叠成一个tensor | torch.stack([x1, x2], dim) | tf.stack([x1, x2], axis) | np.stack([x, y], axis) |
tensor切成多个tensor | torch.split(x1, split_size_or_sections, dim) | tf.split(x1, num_or_size_splits, axis) | np.split(x1, indices_or_sections, axis) |
` | torch.unbind(x1, dim) | tf.unstack(x1,axis) | NULL |
随机扰乱 | torch.randperm(n) 1 | tf.random_shuffle(x) | np.random.shuffle(x) 2 np.random.permutation(x ) 3 |
前k个值 | torch.topk(x, n, sorted, dim) | tf.nn.top_k(x, n, sorted) | NULL |
- 该方法只能对0~n-1自然数随机扰乱,所以先对索引随机扰乱,然后再根据扰乱后的索引取相应的数据得到扰乱后的数据
- 该方法会修改原值,没有返回值
- 该方法不会修改原值,返回扰乱后的值
numpy(ndarray)和tensor(GPU上的numpy)速查的更多相关文章
- torch.Tensor和numpy.ndarray
1. torch.Tensor和numpy.ndarray相互转换 import torch import numpy as np # <class 'numpy.ndarray'> np ...
- Python中 list, numpy.array, torch.Tensor 格式相互转化
1.1 list 转 numpy ndarray = np.array(list) 1.2 numpy 转 list list = ndarray.tolist() 2.1 list 转 torch. ...
- 解决Tensorflow ValueError: Failed to convert a NumPy array to a Tensor (Unsupported object type numpy.ndarray)
问题描述 在将一个数组送入tensorflow训练时,报错如下: ValueError: Failed to convert a NumPy array to a Tensor (Unsupporte ...
- has invalid type <class 'numpy.ndarray'>, must be a string or Tensor
转自: https://blog.csdn.net/jacke121/article/details/78833922 has invalid type <class 'numpy.ndarra ...
- 关于类型为numpy,TensorFlow.tensor,torch.tensor的shape变化以及相互转化
https://blog.csdn.net/zz2230633069/article/details/82669546 2018年09月12日 22:56:50 一只tobey 阅读数:727 1 ...
- tensorflow2.0 numpy.ndarray 与tenor直接互转
1.代码参考 import numpy as npimport tensorflow as tf a = np.random.random((5,3)) b = np.random.randint(0 ...
- Numpy - 多维数组(上)
一.实验说明 numpy 包为 Python 提供了高性能的向量,矩阵以及高阶数据结构.由于它们是由 C 和 Fortran 实现的,所以在操作向量与矩阵时性能非常优越. 1. 环境登录 无需密码自动 ...
- python中numpy.ndarray.shape的用法
今天用到了shape,就顺便学习一下,这个shape的作用就是要把矩阵进行行列转换,请看下面的几个例子就明白了: >>> import numpy as np >>> ...
- NumPy Ndarray 对象
NumPy Ndarray 对象 NumPy 最重要的一个特点是其 N 维数组对象 ndarray,它是一系列同类型数据的集合,以 0 下标为开始进行集合中元素的索引. ndarray 对象是用于存放 ...
随机推荐
- Canvas 线性图形(一):路径
路径的概念 路径是从起始点到结束点之间的连线.个人认为,二维画布中分为线性图形和非线性图形,线性图形包括矩形.直线.曲线.圆形等各种几何图形:非线性图形包括图象.文本.像素.线性图形中又分为路径和非路 ...
- java中使用 POI导出excel表格的简单实现
大概流程分7步: 1.创建工作簿 --> 2.创建sheet表 --> 3.创建row行(建议使用循环) --> 4.用row行逐一创建单元格(建议使用循环) --> 5.单元 ...
- 定制化JDK升级引发的离奇事件
1.背景 由于Oracle对外宣称Oracle JDK停止免费用于商用.公司法务部门评估之后担心后续会惹上光司,于是就开始了JDK升级-将所有服务Oracle修改为OpenJDK.上周开始微服务JDK ...
- C++中的cout.setf(ios::fixed)是什么意思?
问题描述:在阅读一段代码时,发现代码的最后一部分出现 ... cout.setf(ios::fixed); cout.setf(ios::showpoint); ... 解决: cout.setf() ...
- 输入a、b、c三个整数,按先大后小的顺序输出a、b和c。注意请使用指针变量的方式进行比较和输出。
`void swap(int *a,int *b,int c){ if(a < *b){ int temp = *a; //防止temp没有初始化 随机存放地址指向系统工作区间 可以对temp初 ...
- APICloud如何对接大牛直播SDK
随着apicloud的普及,越来越多的用户苦于apicloud下没有一款真正靠谱低延迟的rtmp/rtsp直播播放器苦恼. 鉴于此,大牛直播SDK携手apicloud资深版主,推出apicloud对接 ...
- Haproxy部署及控制台使用手册
一.介绍 1.简介 HAProxy是一个使用C语言编写开源软件,提供高可用,负载均衡,以及基于TCP(四层)和HTTP(七层)的应用程序代理: HAProxy特别适用于那些负载特大的web站点,这些站 ...
- SpringBoot多重属性文件配置方案笔记
SpringBoot多重属性文件配置方案笔记 需要重写PropertyPlaceholderConfigurer 同时要忽略DataSourceAutoConfiguration @SpringBoo ...
- CentOS7_SSH_安装总结
在使用ssh 连接自己的centos 虚拟机时,发现连接不上,于是有了这个安装过程 (以下是在root用户下执行的,没权限的话就sudo) 1.首先判断是否有这个服务 systemctl list-u ...
- WSUS连接错误需要重置服务器
在WSUS完成部署后,总是遇到控制台错误,提示需要重置服务器节点.https://www.cnblogs.com/qishine/p/12727982.html错误:连接错误尝试连接WSUS服务器时出 ...