Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下形式的数据数组的形状是
(10,4,4,3)
首先,我想创建一个具有形状(合并或展平)的数组
(10,48)
这样数据 (4,4,3) 被转换为一行。
其次,我想回到数据的原始形状(拆分),以便每个元素再次放置在同一位置。
谢谢
b = a.reshape(10,48) a = b.reshape(10,4,4,3)