日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

pytorch:RuntimeError: invalid argument 0: Sizes of tensors must match except in dimension 0

發(fā)布時(shí)間:2024/5/14 编程问答 47 豆豆
生活随笔 收集整理的這篇文章主要介紹了 pytorch:RuntimeError: invalid argument 0: Sizes of tensors must match except in dimension 0 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

數(shù)據(jù)加載錯(cuò)誤導(dǎo)致
可能像https://blog.csdn.net/weixin_41278720/article/details/84586734一樣的問(wèn)題,但是這里沒(méi)問(wèn)題

我又查看了我的transform,由于沒(méi)有resize導(dǎo)致報(bào)錯(cuò)
train_transform = transforms.Compose([
#transforms.Resize((32, 32)),
transforms.RandomCrop(32, padding=4), # 將圖像轉(zhuǎn)化為32 * 32
transforms.RandomHorizontalFlip(), # 隨機(jī)水平翻轉(zhuǎn)
transforms.RandomRotation(degrees=15), # 隨機(jī)旋轉(zhuǎn),角度15
transforms.ToTensor(), # 將numpy數(shù)據(jù)類型轉(zhuǎn)化為Tensor,torch可接受的類型
transforms.Normalize([0.485, 0.456, 0.406], [0.229, 0.224, 0.225]) # 歸一化

總之就是數(shù)據(jù)加載的維度問(wèn)題

AttributeError: ‘StepLR’ object has no attribute 'get_last_lr’
查閱資料得到版本有點(diǎn)低,這是pytorch以后版本的attribute,如果用這個(gè)版本(1.2.0)換成
.get_lr()

總結(jié)

以上是生活随笔為你收集整理的pytorch:RuntimeError: invalid argument 0: Sizes of tensors must match except in dimension 0的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。