DropoutLayer
Bases: Layer
A dropout layer.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
probability
|
float
|
The probability that an input element gets zeroed out. |
required |
Raises:
| Type | Description |
|---|---|
OutOfBoundsError
|
If probability is not in the range [0, 1]. |
Attributes:
| Name | Type | Description |
|---|---|---|
input_size |
int | ModelImageSize
|
Get the input_size of this layer. |
output_size |
int | ModelImageSize
|
Get the output_size of this layer. |
probability |
float
|
The probability that an input element gets zeroed out. |
Source code in src/safeds/ml/nn/layers/_dropout_layer.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | |
input_size
¶
Get the input_size of this layer.
Returns:
| Name | Type | Description |
|---|---|---|
result |
int | ModelImageSize
|
The amount of values being passed into this layer. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the input_size is not yet set |
output_size
¶
Get the output_size of this layer.
Returns:
| Name | Type | Description |
|---|---|---|
result |
int | ModelImageSize
|
The amount of values being passed out of this layer. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the input_size is not yet set |
probability
¶
The probability that an input element gets zeroed out.