-
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.
Merge pull request #40 from slimgroup/glow_splitscales
add split_scales option to glow
- Loading branch information
Showing
4 changed files
with
212 additions
and
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,9 @@ | |
# Author: Philipp Witte, [email protected] | ||
# Date: January 2020 | ||
|
||
using InvertibleNetworks, LinearAlgebra, Test | ||
using InvertibleNetworks, LinearAlgebra, Test, Random | ||
|
||
Random.seed!(1); | ||
|
||
# Input | ||
nx = 28 | ||
|
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,8 +1,9 @@ | ||
# Author: Gabrio Rizzuti, [email protected] | ||
# Date: September 2020 | ||
|
||
using InvertibleNetworks, LinearAlgebra, Test, Statistics | ||
using InvertibleNetworks, LinearAlgebra, Test, Statistics, Random | ||
|
||
Random.seed!(1); | ||
|
||
############################################################################### | ||
# Initialization | ||
|