式
我就废话不多说了,⼤家还是直接看代码吧!
#!/usr/bin/python
# -*- coding: UTF-8 -*-
from PIL import Imageimport numpy as npimport torch
pil_img = Image.open('/Users/songlu/Desktop/code.jpg')img = np.array(pil_img)
print torch.from_numpy(img)
补充知识:pytorch mxnet 多GPU训练 batch 的区别区别有很多,这是⼀点点不⼀样
1、mxnet 的batch ,设置的是单卡的,多卡是 batch*多卡,多⼀张卡,速度可以提升⼀倍2、pytorch 是 batch/多卡数量,分配给每个gpu,设置的batch是总的batch
以上这篇Pytorch使⽤PIL和Numpy将单张图⽚转为Pytorch张量⽅式就是⼩编分享给⼤家的全部内容了,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。
因篇幅问题不能全部显示,请点此查看更多更全内容