Skip to content

Commit

Permalink
compare apples to apples
Browse files Browse the repository at this point in the history
  • Loading branch information
ziatdinovmax committed Dec 3, 2024
1 parent f11750b commit 4d9dfa9
Show file tree
Hide file tree
Showing 11 changed files with 61 additions and 11 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion active_learning_scripts/esol/dkl.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ def main():
"--activation",
type=str,
choices=["tanh", "relu", "silu"],
default="silu",
default="tanh",
help="Activation function to use"
)
parser.add_argument(
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"parameters": {
"latent_dims": [
2,
4
],
"seeds": [
1,
2,
3,
4,
5
],
"exploration_steps": 200,
"num_epochs": 1000,
"learning_rate": 0.01,
"output_dir": "results/dkl",
"input_file": "esol.npz",
"activation": "tanh",
"experiment_name": "esol_dkl_comparison",
"latent_dim": 2
},
"timestamp": "2024-12-02T19:13:21.681819",
"results_file": "esol_dkl_comparison_latent2_tanh_20241202_191321.pkl"
}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"parameters": {
"latent_dims": [
2,
4
],
"seeds": [
1,
2,
3,
4,
5
],
"exploration_steps": 200,
"num_epochs": 1000,
"learning_rate": 0.01,
"output_dir": "results/dkl",
"input_file": "esol.npz",
"activation": "tanh",
"experiment_name": "esol_dkl_comparison",
"latent_dim": 4
},
"timestamp": "2024-12-02T19:41:35.473449",
"results_file": "esol_dkl_comparison_latent4_tanh_20241202_194135.pkl"
}
Binary file not shown.
18 changes: 9 additions & 9 deletions active_learning_scripts/esol/viz.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion active_learning_scripts/freesolv/dkl.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ def main():
"--activation",
type=str,
choices=["tanh", "relu", "silu"],
default="relu",
default="tanh",
help="Activation function to use"
)
parser.add_argument(
Expand Down

0 comments on commit 4d9dfa9

Please sign in to comment.