Fork me on GitHub 0
摘要: np.stack 沿着新的轴加入一系列的数组 >>> arrays = [np.random.randn(3, 4) for _ in range(10)] >>> np.stack(arrays, axis=0).shape (10, 3, 4) >>> np.stack(arrays, axis 阅读全文
posted @ 2020-05-19 16:07 amazingcode 阅读(239) 评论(0) 推荐(0) 编辑