-
Notifications
You must be signed in to change notification settings - Fork 5
Closed
Labels
releasedIncluded in a releaseIncluded in a release
Description
Is your feature request related to a problem?
Dropout layers are a common way to regularize a neural network.
Desired solution
- Add a new class
safeds.ml.nn.layers.DropoutLayer. - Superclass:
Layer - Constructor parameters:
probability: float- Call
_check_boundsto ensure thatprobabilityis between 0 and 1 (both inclusive)
- Implementation:
- Use PyTorch's
Dropoutinternally - Pass the probality along and don't work inplace.
- Use PyTorch's
Possible alternatives (optional)
No response
Screenshots (optional)
No response
Additional Context (optional)
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
releasedIncluded in a releaseIncluded in a release
Type
Projects
Status
✔️ Done