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


Python mxnet.ndarray.NDArray.slice_assign用法及代碼示例


用法:

slice_assign(rhs, begin, end, step)

參數

  • rhs(NDArray.) - rhs 和這個 NDArray 應該是相同的數據類型,並且在同一個設備上。 rhs 的形狀應與此 NDArray 的裁剪形狀相同。
  • begin(tuple of begin indices) -
  • end(tuple of end indices) -
  • step(tuple of step lenghths) -

返回

返回類型

這個 NDArray。

將 rhs 分配給該 NDarray 的裁剪子集。返回此 NDArray 的視圖。

例子

>>> x = nd.ones((2, 2, 2))
>>> assigned = nd.zeros((1, 1, 2))
>>> y = x.slice_assign(assigned, (0, 0, None), (1, 1, None), (None, None, None))
>>> y
[[[0. 0.]
[1. 1.]]

[[1。 1.] [1. 1.]]] <NDArray 2x2x2 @cpu(0)> >>> x [[[0. 0.] [1. 1.]]

[[1。 1.] [1. 1.]]] <NDArray 2x2x2 @cpu(0)>

相關用法


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