當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python mxnet.ndarray.op.reshape_like用法及代碼示例


用法:

mxnet.ndarray.op.reshape_like(lhs=None, rhs=None, lhs_begin=_Null, lhs_end=_Null, rhs_begin=_Null, rhs_end=_Null, out=None, name=None, **kwargs)

參數

  • lhs(NDArray) - 第一個輸入。
  • rhs(NDArray) - 第二個輸入。
  • lhs_begin(int or None, optional, default='None') - 默認為 0。lhs 尺寸沿其重塑的起始索引。支持負 index 。
  • lhs_end(int or None, optional, default='None') - 默認為無。 lhs 維度用於整形的結束索引。支持負 index 。
  • rhs_begin(int or None, optional, default='None') - 默認為 0。rhs 維度用於重塑的起始索引。支持負 index 。
  • rhs_end(int or None, optional, default='None') - 默認為無。 rhs 維度用於重塑的結束索引。支持負 index 。
  • out(NDArray, optional) - 輸出 NDArray 來保存結果。

返回

out- 此函數的輸出。

返回類型

NDArray 或 NDArray 列表

重塑 lhs 的部分或全部尺寸,使其具有與 rhs 的部分或全部尺寸相同的形狀。

返回一個看法lhs在不更改任何數據的情況下具有新形狀的數組。

例子:

x = [1, 2, 3, 4, 5, 6]
y = [[0, -4], [3, 2], [2, 2]]
reshape_like(x, y) = [[1, 2], [3, 4], [5, 6]]

通過在 lhsrhs 數組維度上指定切片,可以更精確地控製維度的繼承方式。隻有切片的 lhs 尺寸被重新整形為 rhs 切片尺寸,非切片 lhs 尺寸保持不變。

Examples:

- lhs shape = (30,7), rhs shape = (15,2,4), lhs_begin=0, lhs_end=1, rhs_begin=0, rhs_end=2, output shape = (15,2,7)
- lhs shape = (3, 5), rhs shape = (1,15,4), lhs_begin=0, lhs_end=2, rhs_begin=1, rhs_end=2, output shape = (15)

支持負索引,None 可用於 lhs_endrhs_end 以指示範圍的結束。

Example:

- lhs shape = (30, 12), rhs shape = (4, 2, 2, 3), lhs_begin=-1, lhs_end=None, rhs_begin=1, rhs_end=None, output shape = (30, 2, 2, 3)

相關用法


注:本文由純淨天空篩選整理自apache.org大神的英文原創作品 mxnet.ndarray.op.reshape_like。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。