!46328 fix bug in maxunpool1d.
Merge pull request !46328 from ZhidanLiu/master
This commit is contained in:
commit
9eef6c4e0e
|
@ -19,7 +19,7 @@ mindspore.ops.tensor_split
|
|||
- **TypeError** - `x` 不是Tensor。
|
||||
- **TypeError** - `axis` 不是int类型。
|
||||
- **TypeError** - `axis` 不是int类型。
|
||||
- **ValueError** - 参数 `axis` 超出 :math:`-x.dim, x.dim)` 范围。
|
||||
- **ValueError** - 参数 `axis` 超出 :math:`[-x.dim, x.dim)` 范围。
|
||||
- **TypeError** - `indices_or_sections` 中的每个元素不是int类型
|
||||
- **TypeError** - `indices_or_sections` 不是int,tuple(int)或list(int)。
|
||||
|
||||
|
|
|
@ -743,7 +743,7 @@ def max_unpool1d(x, indices, kernel_size, stride=None, padding=0, output_size=No
|
|||
if len(output_size) == 2:
|
||||
output_size = (1,) + output_size + (1,)
|
||||
if len(output_size) == 3:
|
||||
output_size = (1,) + output_size
|
||||
output_size = output_size + (1,)
|
||||
|
||||
shape = P.Shape()
|
||||
x_shape = shape(x)
|
||||
|
|
Loading…
Reference in New Issue