-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
46 additions
and
48 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,7 +1,7 @@ | ||
name = "InvertibleNetworks" | ||
uuid = "b7115f24-5f92-4794-81e8-23b0ddb121d3" | ||
authors = ["Philipp Witte <[email protected]>", "Ali Siahkoohi <[email protected]>", "Mathias Louboutin <[email protected]>", "Gabrio Rizzuti <[email protected]>", "Rafael Orozco <[email protected]>", "Felix J. herrmann <[email protected]>"] | ||
version = "2.2.1" | ||
version = "2.2.2" | ||
This comment has been minimized.
Sorry, something went wrong. |
||
|
||
[deps] | ||
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba" | ||
|
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,36 +1,48 @@ | ||
|
||
## Invertible Layers | ||
# Invertible Networks API reference | ||
|
||
### Types | ||
```@autodocs | ||
Modules = [InvertibleNetworks] | ||
Order = [:function] | ||
Pages = ["neuralnet.jl", "parameter.jl"] | ||
``` | ||
|
||
## Activations functions | ||
|
||
```@autodocs | ||
Modules = [InvertibleNetworks] | ||
Order = [:type] | ||
Filter = t -> t<:NeuralNetLayer | ||
Order = [:function] | ||
Pages = ["activation_functions.jl"] | ||
``` | ||
|
||
## Invertible Networks | ||
## Dimensions manipulation | ||
|
||
```@autodocs | ||
Modules = [InvertibleNetworks] | ||
Order = [:function] | ||
Pages = ["dimensionality_operations.jl"] | ||
``` | ||
|
||
### Types | ||
## Layers | ||
|
||
```@autodocs | ||
Modules = [InvertibleNetworks] | ||
Order = [:type] | ||
Filter = t -> t<:InvertibleNetwork | ||
Order = [:type] | ||
Filter = t -> t<:NeuralNetLayer | ||
``` | ||
|
||
## Activations functions | ||
## Networks | ||
|
||
```@autodocs | ||
Modules = [InvertibleNetworks] | ||
Order = [:function] | ||
Pages = ["activation_functions.jl"] | ||
Order = [:type] | ||
Filter = t -> t<:InvertibleNetwork | ||
``` | ||
|
||
## Dimensions manipulation | ||
## AD Integration | ||
|
||
```@autodocs | ||
Modules = [InvertibleNetworks] | ||
Order = [:function] | ||
Pages = ["dimensionality_operations.jl"] | ||
Order = [:function] | ||
Pages = ["chainrules.jl"] | ||
``` |
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
1 comment
on commit 7b9aa21
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/74021
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:
git tag -a v2.2.2 -m "<description of version>" 7b9aa21d04dfa475e64f0dfbfca3366b5f830d5f
git push origin v2.2.2
@JuliaRegistrator register