-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d39fc3a
commit ef81aaf
Showing
264 changed files
with
11,000 additions
and
4,859 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 |
---|---|---|
@@ -0,0 +1,178 @@ | ||
2024-04-13 03:34:05 (INFO): Project root: /home/runner/work/ocp/ocp | ||
/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/torch/cuda/amp/grad_scaler.py:126: UserWarning: torch.cuda.amp.GradScaler is enabled, but CUDA is not available. Disabling. | ||
warnings.warn( | ||
2024-04-13 03:34:06 (WARNING): Detected old config, converting to new format. Consider updating to avoid potential incompatibilities. | ||
2024-04-13 03:34:06 (INFO): amp: true | ||
cmd: | ||
checkpoint_dir: fine-tuning/checkpoints/2024-04-13-03-33-20-ft-oxides | ||
commit: 6193b4d | ||
identifier: ft-oxides | ||
logs_dir: fine-tuning/logs/wandb/2024-04-13-03-33-20-ft-oxides | ||
print_every: 10 | ||
results_dir: fine-tuning/results/2024-04-13-03-33-20-ft-oxides | ||
seed: 0 | ||
timestamp_id: 2024-04-13-03-33-20-ft-oxides | ||
dataset: | ||
a2g_args: | ||
r_energy: true | ||
r_forces: true | ||
format: ase_db | ||
key_mapping: | ||
force: forces | ||
y: energy | ||
src: train.db | ||
eval_metrics: | ||
metrics: | ||
energy: | ||
- mae | ||
forces: | ||
- forcesx_mae | ||
- forcesy_mae | ||
- forcesz_mae | ||
- mae | ||
- cosine_similarity | ||
- magnitude_error | ||
misc: | ||
- energy_forces_within_threshold | ||
gpus: 0 | ||
logger: wandb | ||
loss_fns: | ||
- energy: | ||
coefficient: 1 | ||
fn: mae | ||
- forces: | ||
coefficient: 1 | ||
fn: l2mae | ||
model: gemnet_oc | ||
model_attributes: | ||
activation: silu | ||
atom_edge_interaction: true | ||
atom_interaction: true | ||
cbf: | ||
name: spherical_harmonics | ||
cutoff: 12.0 | ||
cutoff_aeaint: 12.0 | ||
cutoff_aint: 12.0 | ||
cutoff_qint: 12.0 | ||
direct_forces: true | ||
edge_atom_interaction: true | ||
emb_size_aint_in: 64 | ||
emb_size_aint_out: 64 | ||
emb_size_atom: 256 | ||
emb_size_cbf: 16 | ||
emb_size_edge: 512 | ||
emb_size_quad_in: 32 | ||
emb_size_quad_out: 32 | ||
emb_size_rbf: 16 | ||
emb_size_sbf: 32 | ||
emb_size_trip_in: 64 | ||
emb_size_trip_out: 64 | ||
envelope: | ||
exponent: 5 | ||
name: polynomial | ||
extensive: true | ||
forces_coupled: false | ||
max_neighbors: 30 | ||
max_neighbors_aeaint: 20 | ||
max_neighbors_aint: 1000 | ||
max_neighbors_qint: 8 | ||
num_after_skip: 2 | ||
num_atom: 3 | ||
num_atom_emb_layers: 2 | ||
num_before_skip: 2 | ||
num_blocks: 4 | ||
num_concat: 1 | ||
num_global_out_layers: 2 | ||
num_output_afteratom: 3 | ||
num_radial: 128 | ||
num_spherical: 7 | ||
otf_graph: true | ||
output_init: HeOrthogonal | ||
qint_tags: | ||
- 1 | ||
- 2 | ||
quad_interaction: true | ||
rbf: | ||
name: gaussian | ||
regress_forces: true | ||
sbf: | ||
name: legendre_outer | ||
symmetric_edge_symmetrization: false | ||
noddp: false | ||
optim: | ||
batch_size: 16 | ||
clip_grad_norm: 10 | ||
ema_decay: 0.999 | ||
energy_coefficient: 1 | ||
eval_batch_size: 16 | ||
eval_every: 1 | ||
factor: 0.8 | ||
force_coefficient: 1 | ||
load_balancing: atoms | ||
loss_energy: mae | ||
lr_initial: 0.0005 | ||
max_epochs: 10 | ||
mode: min | ||
num_workers: 2 | ||
optimizer: AdamW | ||
optimizer_params: | ||
amsgrad: true | ||
patience: 3 | ||
scheduler: ReduceLROnPlateau | ||
weight_decay: 0 | ||
outputs: | ||
energy: | ||
level: system | ||
forces: | ||
eval_on_free_atoms: true | ||
level: atom | ||
train_on_free_atoms: false | ||
slurm: {} | ||
task: | ||
dataset: ase_db | ||
test_dataset: | ||
a2g_args: | ||
r_energy: false | ||
r_forces: false | ||
src: test.db | ||
trainer: ocp | ||
val_dataset: | ||
a2g_args: | ||
r_energy: true | ||
r_forces: true | ||
src: val.db | ||
|
||
wandb: ERROR api_key not configured (no-tty). call wandb.login(key=[your_api_key]) | ||
Traceback (most recent call last): | ||
File "/home/runner/work/ocp/ocp/main.py", line 89, in <module> | ||
Runner()(config) | ||
File "/home/runner/work/ocp/ocp/main.py", line 34, in __call__ | ||
with new_trainer_context(args=args, config=config) as ctx: | ||
File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/contextlib.py", line 137, in __enter__ | ||
return next(self.gen) | ||
^^^^^^^^^^^^^^ | ||
File "/home/runner/work/ocp/ocp/ocpmodels/common/utils.py", line 977, in new_trainer_context | ||
trainer = trainer_cls( | ||
^^^^^^^^^^^^ | ||
File "/home/runner/work/ocp/ocp/ocpmodels/trainers/ocp_trainer.py", line 95, in __init__ | ||
super().__init__( | ||
File "/home/runner/work/ocp/ocp/ocpmodels/trainers/base_trainer.py", line 176, in __init__ | ||
self.load() | ||
File "/home/runner/work/ocp/ocp/ocpmodels/trainers/base_trainer.py", line 197, in load | ||
self.load_logger() | ||
File "/home/runner/work/ocp/ocp/ocpmodels/trainers/base_trainer.py", line 229, in load_logger | ||
self.logger = registry.get_logger_class(logger_name)(self.config) | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
File "/home/runner/work/ocp/ocp/ocpmodels/common/logger.py", line 65, in __init__ | ||
wandb.init( | ||
File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/wandb/sdk/wandb_init.py", line 1200, in init | ||
raise e | ||
File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/wandb/sdk/wandb_init.py", line 1177, in init | ||
wi.setup(kwargs) | ||
File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/wandb/sdk/wandb_init.py", line 301, in setup | ||
wandb_login._login( | ||
File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/wandb/sdk/wandb_login.py", line 334, in _login | ||
wlogin.prompt_api_key() | ||
File "/opt/hostedtoolcache/Python/3.11.9/x64/lib/python3.11/site-packages/wandb/sdk/wandb_login.py", line 263, in prompt_api_key | ||
raise UsageError("api_key not configured (no-tty). call " + directive) | ||
wandb.errors.UsageError: api_key not configured (no-tty). call wandb.login(key=[your_api_key]) |
205 changes: 0 additions & 205 deletions
205
_downloads/f926bfac3d372dde77d6e6dc68532a9c/embedding-monkeypatch.py
This file was deleted.
Oops, something went wrong.
Binary file added
BIN
+167 KB
_images/0778b645f0812224355ad987215e4ff60bcf30a070a02bebd17c29b837ed824c.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+17 KB
_images/0ae599b1aded717a60b12fd7203ab25e1c749fcaf926372dcc438a7eefc23ee4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+33.9 KB
_images/274e4a2ec81cb7d8f2e8245e9793873b11e3cebb104f7ce8478bf286e1c6c32e.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+99.5 KB
_images/279a86bc8cf2366b2f9fb56c37d6e8a65abc917c2f3520c0d9d9a4cfb7c5b9aa.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+26.3 KB
_images/2c989a47b8d5c41ee0eaa64b1de74884ea76ff057f50956a969eda20fa151a33.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+34.2 KB
_images/46af7bb4be5c461aa6cf96d4a533467296c7c1ce5ddb6c0e7daffc68d22cf2f8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+855 KB
_images/4bace82b10c623914f65162c41715b5dfcc194c1569698d06031d1f715ccc1e4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.69 KB
_images/4bfae59774bad2e1a25375682a69b0d05865f32d61379c925b6404131f102a6b.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+23.8 KB
_images/73d8c5cdf38ba40bbc18d515a163241eed3c34ec155f057f9b3c3db6308fb9d9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+82 KB
_images/92bd7f94dd548c8cfc2744eb5890cd23fada1ff98e8dc907657e2eb109af0402.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+22 KB
_images/a48e3424d76817240816a0b914502025691c6a130c88e07728e1797c128651fb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+165 KB
_images/cb543fc4b54b8d71935eae762f74ac45118f28233509bc2ed674c2d47bc9c137.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.