forked from FAIR-Chem/fairchem
-
Notifications
You must be signed in to change notification settings - Fork 3
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 #19 from RolnickLab/new-gnn
- Loading branch information
Showing
52 changed files
with
4,536 additions
and
248 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 |
---|---|---|
|
@@ -5,6 +5,7 @@ results | |
logs | ||
*.traj | ||
experimental | ||
*.pkl | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
|
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
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,42 @@ | ||
includes: | ||
- configs/is2re/100k/base.yml | ||
|
||
model: | ||
name: sfarinet | ||
hidden_channels: 256 | ||
num_filters: 128 | ||
num_interactions: 3 | ||
num_gaussians: 100 | ||
cutoff: 6.0 | ||
use_pbc: True | ||
regress_forces: False | ||
# drlab attributes: | ||
tag_hidden_channels: 0 # 32 | ||
pg_hidden_channels: 0 # 32 -> period & group embedding hidden channels | ||
phys_embeds: False # True | ||
phys_hidden_channels: 0 | ||
graph_rewiring: False # can be in {false, remove-tag-0, one-supernode-per-graph, | ||
# one-supernode-per-atom-type, one-supernode-per-atom-type-dist} | ||
energy_head: False # can be {False, weighted-av-initial-embeds, | ||
# weighted-av-final-embeds, pooling, graclus, random} | ||
# *** Important note *** | ||
# The total number of gpus used for this run was 1. | ||
# If the global batch size (num_gpus * batch_size) is modified | ||
# the lr_milestones and warmup_steps need to be adjusted accordingly. | ||
|
||
optim: | ||
batch_size: 64 | ||
eval_batch_size: 64 | ||
num_workers: 4 | ||
lr_initial: 0.005 | ||
lr_gamma: 0.1 | ||
lr_milestones: # epochs at which lr_initial <- lr_initial * lr_gamma | ||
- 1562 | ||
- 2343 | ||
- 3125 | ||
warmup_steps: 468 | ||
warmup_factor: 0.2 | ||
max_epochs: 20 | ||
|
||
frame_averaging: False # 2D, 3D, False | ||
choice_fa: False # can be {None, full, random, det, e3-full, e3-random, e3-det} |
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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
includes: | ||
- configs/is2re/10k/base.yml | ||
|
||
model: | ||
name: fanet | ||
hidden_channels: 256 | ||
num_filters: 128 | ||
num_interactions: 3 | ||
num_gaussians: 100 | ||
cutoff: 6.0 | ||
use_pbc: True | ||
regress_forces: False | ||
# drlab attributes: | ||
tag_hidden_channels: 0 # 32 | ||
pg_hidden_channels: 0 # 32 -> period & group embedding hidden channels | ||
phys_embeds: False # True | ||
phys_hidden_channels: 0 | ||
graph_rewiring: False # can be in {false, remove-tag-0, one-supernode-per-graph, | ||
# one-supernode-per-atom-type, one-supernode-per-atom-type-dist} | ||
energy_head: False # can be {False, weighted-av-initial-embeds, | ||
# weighted-av-final-embeds, pooling, graclus, random} | ||
|
||
# new features | ||
skip_co: False # output skip connections | ||
normalized_rel_pos: False # normalize r_ij + squash in [0,1] | ||
second_layer_MLP: False # in EmbeddingBlock | ||
mlp_rij: 0 # apply mlp to r_ij | ||
complex_mp: False # concat (e_ij || h_i || h_j) for W in MP | ||
|
||
# *** Important note *** | ||
# The total number of gpus used for this run was 1. | ||
# If the global batch size (num_gpus * batch_size) is modified | ||
# the lr_milestones and warmup_steps need to be adjusted accordingly. | ||
|
||
optim: | ||
batch_size: 64 | ||
eval_batch_size: 64 | ||
num_workers: 4 | ||
lr_initial: 0.005 | ||
lr_gamma: 0.1 | ||
lr_milestones: # epochs at which lr_initial <- lr_initial * lr_gamma | ||
- 1562 | ||
- 2343 | ||
- 3125 | ||
warmup_steps: 468 | ||
warmup_factor: 0.2 | ||
max_epochs: 20 | ||
|
||
frame_averaging: False # 2D, 3D, da, False | ||
choice_fa: False # can be {None, full, random, det, e3, e3-random, e3-det} |
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
includes: | ||
- configs/is2re/10k/base.yml | ||
|
||
model: | ||
name: sfarinet | ||
hidden_channels: 256 | ||
num_filters: 128 | ||
num_interactions: 3 | ||
num_gaussians: 100 | ||
cutoff: 6.0 | ||
use_pbc: True | ||
regress_forces: False | ||
# drlab attributes: | ||
tag_hidden_channels: 0 # 32 | ||
pg_hidden_channels: 0 # 32 -> period & group embedding hidden channels | ||
phys_embeds: False # True | ||
phys_hidden_channels: 0 | ||
graph_rewiring: False # can be in {false, remove-tag-0, one-supernode-per-graph, | ||
# one-supernode-per-atom-type, one-supernode-per-atom-type-dist} | ||
energy_head: False # can be {False, weighted-av-initial-embeds, | ||
# weighted-av-final-embeds, pooling, graclus, random} | ||
# *** Important note *** | ||
# The total number of gpus used for this run was 1. | ||
# If the global batch size (num_gpus * batch_size) is modified | ||
# the lr_milestones and warmup_steps need to be adjusted accordingly. | ||
|
||
optim: | ||
batch_size: 64 | ||
eval_batch_size: 64 | ||
num_workers: 4 | ||
lr_initial: 0.005 | ||
lr_gamma: 0.1 | ||
lr_milestones: # epochs at which lr_initial <- lr_initial * lr_gamma | ||
- 1562 | ||
- 2343 | ||
- 3125 | ||
warmup_steps: 468 | ||
warmup_factor: 0.2 | ||
max_epochs: 20 | ||
|
||
frame_averaging: False # 2D, 3D, da, False | ||
choice_fa: False # can be {None, full, random, det, e3-full, e3-random, e3-det} |
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
includes: | ||
- configs/is2re/all/base.yml | ||
|
||
model: | ||
name: fanet | ||
hidden_channels: 384 | ||
num_filters: 128 | ||
num_interactions: 4 | ||
num_gaussians: 100 | ||
cutoff: 6.0 | ||
use_pbc: True | ||
regress_forces: False | ||
# drlab attributes: | ||
tag_hidden_channels: 0 # 32 | ||
pg_hidden_channels: 0 # 32 -> period & group embedding hidden channels | ||
phys_embeds: False # True | ||
phys_hidden_channels: 0 | ||
graph_rewiring: False # can be in {false, remove-tag-0, one-supernode-per-graph, | ||
# one-supernode-per-atom-type, one-supernode-per-atom-type-dist} | ||
energy_head: False # can be {False, weighted-av-initial-embeds, | ||
# weighted-av-final-embeds, pooling, graclus, random} | ||
# Ablation | ||
skip_co: False # output skip connections | ||
normalized_rel_pos: False # normalize r_ij + squash in [0,1] | ||
second_layer_MLP: False # in EmbeddingBlock | ||
mlp_rij: 0 # apply mlp to r_ij | ||
complex_mp: false # concat (e_ij || h_i || h_j) for W in MP | ||
|
||
# *** Important note *** | ||
# The total number of gpus used for this run was 1. | ||
# If the global batch size (num_gpus * batch_size) is modified | ||
# the lr_milestones and warmup_steps need to be adjusted accordingly. | ||
|
||
optim: | ||
batch_size: 64 | ||
eval_batch_size: 64 | ||
num_workers: 4 | ||
lr_initial: 0.001 | ||
lr_gamma: 0.1 | ||
lr_milestones: # steps at which lr_initial <- lr_initial * lr_gamma | ||
- 16000 | ||
- 25000 | ||
- 35000 | ||
warmup_steps: 5394 | ||
warmup_factor: 0.2 | ||
max_epochs: 17 | ||
|
||
frame_averaging: False # False, 2D, 3D, da | ||
choice_fa: False # can be {None, full, random, det, e3-full, e3-random, e3-det} |
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
includes: | ||
- configs/is2re/all/base.yml | ||
|
||
model: | ||
name: sfarinet | ||
hidden_channels: 384 | ||
num_filters: 128 | ||
num_interactions: 4 | ||
num_gaussians: 100 | ||
cutoff: 6.0 | ||
use_pbc: True | ||
regress_forces: False | ||
# drlab attributes: | ||
tag_hidden_channels: 0 # 32 | ||
pg_hidden_channels: 0 # 32 -> period & group embedding hidden channels | ||
phys_embeds: False # True | ||
phys_hidden_channels: 0 | ||
graph_rewiring: False # can be in {false, remove-tag-0, one-supernode-per-graph, | ||
# one-supernode-per-atom-type, one-supernode-per-atom-type-dist} | ||
energy_head: False # can be {False, weighted-av-initial-embeds, | ||
# weighted-av-final-embeds, pooling, graclus, random} | ||
# *** Important note *** | ||
# The total number of gpus used for this run was 1. | ||
# If the global batch size (num_gpus * batch_size) is modified | ||
# the lr_milestones and warmup_steps need to be adjusted accordingly. | ||
|
||
optim: | ||
batch_size: 64 | ||
eval_batch_size: 64 | ||
num_workers: 4 | ||
lr_initial: 0.001 | ||
lr_gamma: 0.1 | ||
lr_milestones: # steps at which lr_initial <- lr_initial * lr_gamma | ||
- 17981 | ||
- 26972 | ||
- 35963 | ||
warmup_steps: 5394 | ||
warmup_factor: 0.2 | ||
max_epochs: 17 | ||
|
||
frame_averaging: False # 2D, 3D, da, False | ||
choice_fa: False # can be {None, full, random, det, e3-full, e3-random, e3-det} |
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,4 @@ | ||
# Overwrites defaults.yaml for user `schmidtv`. | ||
# Create your own $USER.yaml in order to overwrite defaults.yaml systematically to your own taste. | ||
virtualenv: True | ||
env: /home/mila/a/alex.hernandez-garcia/.virtualenvs/ocp-torch1110cuda102 |
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,3 @@ | ||
mem: 32GB | ||
env: ocp | ||
partition: long |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# default minydra args for sweep.py | ||
|
||
method: random | ||
params: sweep_wandb_all.yml | ||
count: 1 | ||
name: null | ||
mode: run_jobs # "run_jobs" or "print_commands" |
Oops, something went wrong.