You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/Changelog.md
+45
Original file line number
Diff line number
Diff line change
@@ -9486,6 +9486,51 @@ This version of the operator has been available since version 10 of the default
9486
9486
<dd>Constrain input and output types to float tensors.</dd>
9487
9487
</dl>
9488
9488
9489
+
### <aname="Dropout-10"></a>**Dropout-10**</a>
9490
+
9491
+
Dropout takes one input floating tensor and produces two tensor outputs,
9492
+
output (floating tensor) and mask (`Tensor<bool>`). Depending on whether it is
9493
+
in test mode or not, the output Y will either be a random dropout, or a simple
9494
+
copy of the input. Note that our implementation of Dropout does scaling in
9495
+
the training phase, so during testing nothing needs to be done.
9496
+
This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted.
9497
+
9498
+
#### Version
9499
+
9500
+
This version of the operator has been available since version 10 of the default ONNX operator set.
Dropout takes one input data (Tensor<float>) and produces two Tensor outputs,
3097
-
output (Tensor<float>) and mask (Tensor<bool>). Depending on whether it is in
3098
-
test mode or not, the output Y will either be a random dropout, or a simple
3096
+
Dropout takes one input floating tensor and produces two tensor outputs,
3097
+
output (floating tensor) and mask (`Tensor<bool>`). Depending on whether it is
3098
+
in test mode or not, the output Y will either be a random dropout, or a simple
3099
3099
copy of the input. Note that our implementation of Dropout does scaling in
3100
3100
the training phase, so during testing nothing needs to be done.
3101
3101
This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted.
3102
3102
3103
3103
#### Version
3104
3104
3105
-
This version of the operator has been available since version 7 of the default ONNX operator set.
3105
+
This version of the operator has been available since version 10 of the default ONNX operator set.
3106
3106
3107
-
Other versions of this operator: <ahref="Changelog.md#Dropout-1">Dropout-1</a>, <ahref="Changelog.md#Dropout-6">Dropout-6</a>
3107
+
Other versions of this operator: <ahref="Changelog.md#Dropout-1">Dropout-1</a>, <ahref="Changelog.md#Dropout-6">Dropout-6</a>, <ahref="Changelog.md#Dropout-7">Dropout-7</a>
3108
3108
3109
3109
#### Attributes
3110
3110
@@ -3125,7 +3125,7 @@ Other versions of this operator: <a href="Changelog.md#Dropout-1">Dropout-1</a>,
3125
3125
<dl>
3126
3126
<dt><tt>output</tt> : T</dt>
3127
3127
<dd>The output.</dd>
3128
-
<dt><tt>mask</tt> (optional) : T</dt>
3128
+
<dt><tt>mask</tt> (optional) : T1</dt>
3129
3129
<dd>The output mask.</dd>
3130
3130
</dl>
3131
3131
@@ -3134,6 +3134,8 @@ Other versions of this operator: <a href="Changelog.md#Dropout-1">Dropout-1</a>,
0 commit comments