-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* upgrade pyg 2.5.2 * JSON file for convolutional heads added and test_graph updated * thresholds increased for EGNN and SchNet * Update test_graphs.py Threshold increased for SchNet in unit test for convolutional heads * update DimeNet weights initilization by Justin * hyperparameter adjust for conv_head tests * format * relax error tolerance in conv_head for GIN --------- Co-authored-by: Choi <choij@ornl.gov> Co-authored-by: Zhang, Pei <zhangp1@ornl.gov>
- Loading branch information
1 parent
f064b94
commit c520b80
Showing
4 changed files
with
130 additions
and
12 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 |
---|---|---|
@@ -0,0 +1,79 @@ | ||
{ | ||
"Verbosity": { | ||
"level": 0 | ||
}, | ||
"Dataset": { | ||
"name": "unit_test_singlehead", | ||
"format": "unit_test", | ||
"compositional_stratified_splitting": true, | ||
"rotational_invariance": false, | ||
"path": { | ||
"train": "dataset/unit_test_singlehead_train", | ||
"test": "dataset/unit_test_singlehead_test", | ||
"validate": "dataset/unit_test_singlehead_validate" | ||
}, | ||
"node_features": { | ||
"name": ["x","x2","x3"], | ||
"dim": [1, 1, 1], | ||
"column_index": [0, 6, 7] | ||
}, | ||
"graph_features":{ | ||
"name": [ "sum_x_x2_x3"], | ||
"dim": [1], | ||
"column_index": [0] | ||
} | ||
}, | ||
"NeuralNetwork": { | ||
"Architecture": { | ||
"model_type": "PNA", | ||
"radius": 2.0, | ||
"max_neighbours": 100, | ||
"num_gaussians": 50, | ||
"envelope_exponent": 5, | ||
"int_emb_size": 64, | ||
"basis_emb_size": 8, | ||
"out_emb_size": 128, | ||
"num_after_skip": 2, | ||
"num_before_skip": 1, | ||
"num_radial": 6, | ||
"num_spherical": 7, | ||
"num_filters": 126, | ||
"periodic_boundary_conditions": false, | ||
"hidden_dim": 20, | ||
"num_conv_layers": 2, | ||
"output_heads": { | ||
"node": { | ||
"num_headlayers": 2, | ||
"dim_headlayers": [20,10], | ||
"type": "conv" | ||
} | ||
}, | ||
"task_weights": [1.0] | ||
}, | ||
"Variables_of_interest": { | ||
"input_node_features": [0], | ||
"output_names": ["x"], | ||
"output_index": [0], | ||
"type": ["node"], | ||
"denormalize_output": false | ||
}, | ||
"Training": { | ||
"num_epoch": 100, | ||
"perc_train": 0.7, | ||
"EarlyStopping": false, | ||
"patience": 10, | ||
"loss_function_type": "mse", | ||
"batch_size": 32, | ||
"Optimizer": { | ||
"type": "AdamW", | ||
"use_zero_redundancy": false, | ||
"learning_rate": 0.02 | ||
} | ||
} | ||
}, | ||
"Visualization": { | ||
"plot_init_solution": true, | ||
"plot_hist_solution": false, | ||
"create_plots": true | ||
} | ||
} |
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