用法:
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 來保存結果。
- lhs:(
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]]
通過在
lhs
和rhs
數組維度上指定切片,可以更精確地控製維度的繼承方式。隻有切片的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_end
或rhs_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)
相關用法
- Python mxnet.ndarray.op.reshape用法及代碼示例
- Python mxnet.ndarray.op.repeat用法及代碼示例
- Python mxnet.ndarray.op.reverse用法及代碼示例
- Python mxnet.ndarray.op.reciprocal用法及代碼示例
- Python mxnet.ndarray.op.round用法及代碼示例
- Python mxnet.ndarray.op.random_pdf_normal用法及代碼示例
- Python mxnet.ndarray.op.rcbrt用法及代碼示例
- Python mxnet.ndarray.op.ravel_multi_index用法及代碼示例
- Python mxnet.ndarray.op.random_pdf_dirichlet用法及代碼示例
- Python mxnet.ndarray.op.rsqrt用法及代碼示例
- Python mxnet.ndarray.op.random_pdf_uniform用法及代碼示例
- Python mxnet.ndarray.op.random_pdf_generalized_negative_binomial用法及代碼示例
- Python mxnet.ndarray.op.random_pdf_exponential用法及代碼示例
- Python mxnet.ndarray.op.rint用法及代碼示例
- Python mxnet.ndarray.op.random_pdf_poisson用法及代碼示例
- Python mxnet.ndarray.op.random_pdf_gamma用法及代碼示例
- Python mxnet.ndarray.op.random_pdf_negative_binomial用法及代碼示例
- Python mxnet.ndarray.op.uniform用法及代碼示例
- Python mxnet.ndarray.op.sample_negative_binomial用法及代碼示例
- Python mxnet.ndarray.op.khatri_rao用法及代碼示例
注:本文由純淨天空篩選整理自apache.org大神的英文原創作品 mxnet.ndarray.op.reshape_like。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。