Skip to content

Commit

Permalink
fix ConvTranspose spec (onnx#1566)
Browse files Browse the repository at this point in the history
  • Loading branch information
fumihwh authored and houseroad committed Nov 1, 2018
1 parent f34186b commit 47f3ba4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ This version of the operator has been available since version 1 of the default O
<dt><tt>W</tt> : T</dt>
<dd>The weight tensor that will be used in the convolutions; has size (C x M/group x kH x kW), where C is the number of channels, and kH and kW are the height and width of the kernel, and M is the number of feature maps. For more than 2 dimensions, the weight shape will be (C x M/group x k1 x k2 x ... x kn), where (k1 x k2 x ... x kn) is the dimension of the kernel. The number of channels in the output should be equal to W.shape[1] * group (assuming zero based indices of the shape array)</dd>
<dt><tt>B</tt> (optional) : T</dt>
<dd>Optional 1D bias to be added to the convolution, has size of C.</dd>
<dd>Optional 1D bias to be added to the convolution, has size of M.</dd>
</dl>

#### Outputs
Expand Down
2 changes: 1 addition & 1 deletion docs/Operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -2233,7 +2233,7 @@ This version of the operator has been available since version 1 of the default O
<dt><tt>W</tt> : T</dt>
<dd>The weight tensor that will be used in the convolutions; has size (C x M/group x kH x kW), where C is the number of channels, and kH and kW are the height and width of the kernel, and M is the number of feature maps. For more than 2 dimensions, the weight shape will be (C x M/group x k1 x k2 x ... x kn), where (k1 x k2 x ... x kn) is the dimension of the kernel. The number of channels in the output should be equal to W.shape[1] * group (assuming zero based indices of the shape array)</dd>
<dt><tt>B</tt> (optional) : T</dt>
<dd>Optional 1D bias to be added to the convolution, has size of C.</dd>
<dd>Optional 1D bias to be added to the convolution, has size of M.</dd>
</dl>

#### Outputs
Expand Down
2 changes: 1 addition & 1 deletion onnx/defs/nn/defs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,7 @@ output_shape can also be explicitly specified in which case pads values are auto
schema.Input(
2,
"B",
"Optional 1D bias to be added to the convolution, has size of C.",
"Optional 1D bias to be added to the convolution, has size of M.",
"T",
OpSchema::Optional);
schema.Output(
Expand Down

0 comments on commit 47f3ba4

Please sign in to comment.