-
Notifications
You must be signed in to change notification settings - Fork 2
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 #20 from CosmologicalEmulators/develop
Develop
- Loading branch information
Showing
9 changed files
with
154 additions
and
50 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
name = "Capse" | ||
uuid = "994f66c3-d2c7-4ba6-88fb-4a10f50800ba" | ||
authors = ["marcobonici <[email protected]>"] | ||
|
||
version = "0.2.2" | ||
version = "0.2.3" | ||
|
||
[deps] | ||
AbstractCosmologicalEmulators = "c83c1981-e5c4-4837-9eb8-c9b1572acfc6" | ||
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e" | ||
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6" | ||
NPZ = "15e1cf62-19b3-5cfa-8e77-841668bca605" | ||
|
||
[compat] | ||
AbstractCosmologicalEmulators = "0.3.3" | ||
Adapt = "3" | ||
JSON = "0.21" | ||
NPZ = "0.4" |
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 |
---|---|---|
|
@@ -4,4 +4,6 @@ | |
Capse.CℓEmulator | ||
Capse.get_Cℓ | ||
Capse.get_ℓgrid | ||
Capse.get_emulator_description | ||
Capse.load_emulator | ||
``` |
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,6 @@ | ||
[deps] | ||
AbstractCosmologicalEmulators = "c83c1981-e5c4-4837-9eb8-c9b1572acfc6" | ||
NPZ = "15e1cf62-19b3-5cfa-8e77-841668bca605" | ||
SimpleChains = "de6bee2f-e2f4-4ec7-b6ed-219cc6f6e9e5" | ||
Static = "aedffcd0-7271-4cad-89d0-dc628f76c6d3" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" |
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"n_input_features": 6, | ||
"layers": { | ||
"layer_1": { | ||
"n_neurons": 64, | ||
"activation_function": "tanh" | ||
}, | ||
"layer_2": { | ||
"n_neurons": 64, | ||
"activation_function": "tanh" | ||
}, | ||
"layer_3": { | ||
"n_neurons": 64, | ||
"activation_function": "tanh" | ||
}, | ||
"layer_4": { | ||
"n_neurons": 64, | ||
"activation_function": "tanh" | ||
}, | ||
"layer_5": { | ||
"n_neurons": 64, | ||
"activation_function": "tanh" | ||
} | ||
}, | ||
"n_output_features": 40, | ||
"n_hidden_layers": 5, | ||
"emulator_description": { | ||
"author" : "Marco Bonici", | ||
"author_email" : "[email protected]", | ||
"miscellanea" : "The emulator has been trained on the high-precision-settings prediction as computed by the CAMB Boltzmann solver.", | ||
"parameters" : "ln10As, ns, H0, ωb, ωc, τ" | ||
} | ||
} |
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