-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Class-based activation functions (#126)
* Implementation of activation_function class for 1d activations * 3d activations implemented using activation_function type * get_name function added to the activation_function type * Activation_function instances are now passed to contructors * removal of redundant use statements * Small fix to make the test build * Tidy up and formatting * Formatting * Set alpha defaults from Keras * Enable leaky ReLU * Add tests for setting alpha values to parametric activations (ELU and leaky ReLU) * Bump version --------- Co-authored-by: milancurcic <[email protected]>
- Loading branch information
1 parent
f328c8d
commit d052bce
Showing
17 changed files
with
768 additions
and
685 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name = "neural-fortran" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
license = "MIT" | ||
author = "Milan Curcic" | ||
maintainer = "[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.