Skip to content

Commit

Permalink
Merge pull request #395 from Ilya-Muromets/patch-1
Browse files Browse the repository at this point in the history
Leaky ReLU -> LeakyReLU
  • Loading branch information
Tom94 committed Dec 17, 2023
2 parents 2121041 + 622f241 commit c12645d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DOCUMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Activation functions are specified by string, e.g. as follows:
The following activation functions are supported:
- `"None"` (identity)
- `"ReLU"`
- `"Leaky ReLU"` (defined as `max(0, x) + 0.01 * min(0, x)`)
- `"LeakyReLU"` (defined as `max(0, x) + 0.01 * min(0, x)`)
- `"Exponential"`
- `"Sine"`
- `"Sigmoid"` (the logistic function)
Expand Down

0 comments on commit c12645d

Please sign in to comment.