Skip to content

Commit

Permalink
update espresso example and add MANIFEST.in
Browse files Browse the repository at this point in the history
  • Loading branch information
jmusiel committed May 15, 2024
1 parent d3bcc47 commit 4907cdb
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,14 @@ dist/
*/checkpoints/*
stored-primes/

#quantum espresso outputs
**/wandb/**
*.dat
*.xml
*.pwi
*.pwo
*.update

# pytest outputs
.pytest_cache

Expand Down
6 changes: 3 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
includes finetuna/base_calcs/morse_params/*.csv
includes finetuna/vasp_wrapper/*
includes finetuna/ml_potentials/ocp_models/gemnet_t/configs/*
include finetuna/base_calcs/morse_params/*.csv
include finetuna/vasp_wrapper/*
include finetuna/ml_potentials/ocp_models/gemnet_t/configs/*
3 changes: 3 additions & 0 deletions examples/quantum_espresso/qe_gpu_online_al_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,9 @@
"query_every_n_steps": 100,
"num_initial_points": 1,
"fmax_verify_threshold": 0.03,
"wandb_init": {
"wandb_log": True,
},
},
parent_dataset=[],
ml_potential=ml_potential,
Expand Down
4 changes: 2 additions & 2 deletions finetuna/run_al.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,14 +126,14 @@ def active_learning(config):
key: f"{key}.UPF"
for key, value in initial_traj[0].symbols.formula._count.items()
},
"tstress": True,
"tstress": False,
"tprnfor": True,
"kpts": kpts,
"input_data": {
"control": {
"verbosity": "high",
"calculation": "scf",
"disk_io": "nowf",
"disk_io": "medium",
},
"system": {
"input_dft": "PBE",
Expand Down

0 comments on commit 4907cdb

Please sign in to comment.