網站首頁 編程語言 正文
?torch.flatten(x)等于torch.flatten(x,0)默認將張量拉成一維的向量,也就是說從第一維開始平坦化,torch.flatten(x,1)代表從第二維開始平坦化。
import torch x=torch.randn(2,4,2) print(x) z=torch.flatten(x) print(z) w=torch.flatten(x,1) print(w) 輸出為: tensor([[[-0.9814, 0.8251], [ 0.8197, -1.0426], [-0.8185, -1.3367], [-0.6293, 0.6714]], [[-0.5973, -0.0944], [ 0.3720, 0.0672], [ 0.2681, 1.8025], [-0.0606, 0.4855]]]) tensor([-0.9814, 0.8251, 0.8197, -1.0426, -0.8185, -1.3367, -0.6293, 0.6714, -0.5973, -0.0944, 0.3720, 0.0672, 0.2681, 1.8025, -0.0606, 0.4855]) tensor([[-0.9814, 0.8251, 0.8197, -1.0426, -0.8185, -1.3367, -0.6293, 0.6714] , [-0.5973, -0.0944, 0.3720, 0.0672, 0.2681, 1.8025, -0.0606, 0.4855] ])
?torch.flatten(x,0,1)代表在第一維和第二維之間平坦化
import torch x=torch.randn(2,4,2) print(x) w=torch.flatten(x,0,1) #第一維長度2,第二維長度為4,平坦化后長度為2*4 print(w.shape) print(w) 輸出為: tensor([[[-0.5523, -0.1132], [-2.2659, -0.0316], [ 0.1372, -0.8486], [-0.3593, -0.2622]], [[-0.9130, 1.0038], [-0.3996, 0.4934], [ 1.7269, 0.8215], [ 0.1207, -0.9590]]]) torch.Size([8, 2]) tensor([[-0.5523, -0.1132], [-2.2659, -0.0316], [ 0.1372, -0.8486], [-0.3593, -0.2622], [-0.9130, 1.0038], [-0.3996, 0.4934], [ 1.7269, 0.8215], [ 0.1207, -0.9590]])
對于torch.nn.Flatten(),因為其被用在神經網絡中,輸入為一批數據,第一維為batch,通常要把一個數據拉成一維,而不是將一批數據拉為一維。所以torch.nn.Flatten()默認從第二維開始平坦化。
import torch #隨機32個通道為1的5*5的圖 x=torch.randn(32,1,5,5) model=torch.nn.Sequential( #輸入通道為1,輸出通道為6,3*3的卷積核,步長為1,padding=1 torch.nn.Conv2d(1,6,3,1,1), torch.nn.Flatten() ) output=model(x) print(output.shape) # 6*(7-3+1)*(7-3+1) 輸出為: torch.Size([32, 150])
總結
原文鏈接:https://blog.csdn.net/Super_user_and_woner/article/details/120782656
相關推薦
- 2022-04-11 用python的哈希函數對密碼加密_python
- 2023-05-16 golang-gorm自動建表問題_Golang
- 2022-12-13 C++?Boost?Pool超詳細講解_C 語言
- 2022-04-08 swift自定義表格控件(UITableView)_Swift
- 2022-08-08 基于Redis緩存數據常見的三種問題及解決_Redis
- 2022-07-14 python如何獲取當前系統的日期_python
- 2022-12-06 React中的路由嵌套和手動實現路由跳轉的方式詳解_React
- 2022-09-16 Pandas篩選DataFrame含有空值的數據行的實現_python
- 最近更新
-
- window11 系統安裝 yarn
- 超詳細win安裝深度學習環境2025年最新版(
- Linux 中運行的top命令 怎么退出?
- MySQL 中decimal 的用法? 存儲小
- get 、set 、toString 方法的使
- @Resource和 @Autowired注解
- Java基礎操作-- 運算符,流程控制 Flo
- 1. Int 和Integer 的區別,Jav
- spring @retryable不生效的一種
- Spring Security之認證信息的處理
- Spring Security之認證過濾器
- Spring Security概述快速入門
- Spring Security之配置體系
- 【SpringBoot】SpringCache
- Spring Security之基于方法配置權
- redisson分布式鎖中waittime的設
- maven:解決release錯誤:Artif
- restTemplate使用總結
- Spring Security之安全異常處理
- MybatisPlus優雅實現加密?
- Spring ioc容器與Bean的生命周期。
- 【探索SpringCloud】服務發現-Nac
- Spring Security之基于HttpR
- Redis 底層數據結構-簡單動態字符串(SD
- arthas操作spring被代理目標對象命令
- Spring中的單例模式應用詳解
- 聊聊消息隊列,發送消息的4種方式
- bootspring第三方資源配置管理
- GIT同步修改后的遠程分支