dropout_sensor_noise
DropoutSensorNoise
Bases: BaseSensorNoise
Naive dropout sensor noise model
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dropout_prob
|
float
|
Value in [0.0, 1.0] representing fraction of a single observation to be replaced with @dropout_value |
0.05
|
dropout_value
|
float
|
Value in [0.0, 1.0] to replace observations selected to be dropped out |
1.0
|
enabled
|
bool
|
Whether this sensor should be enabled by default |
True
|
Source code in omnigibson/sensors/dropout_sensor_noise.py
dropout_prob
property
writable
Returns:
Type | Description |
---|---|
float
|
Value in [0.0, 1.0] representing fraction of a single observation to be replaced with self.dropout_value |
dropout_value
property
writable
Returns:
Type | Description |
---|---|
float
|
Value in [0.0, 1.0] to replace observations selected to be dropped out |