the record.dpgen did't work right and skip the train procedure #1297
-
when I set the record.dpgen from 1 0, I think the train procedure would begin, however, the file in the 00.train is 000 001 002 003 copied graph.000.pb graph.001.pb graph.002.pb graph.003.pb, the software didn't work right and skip the train procedure. the content of slurm is
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
This is expected. All frames are accurate, and there is no new data compared to the last iteration, so it is not required to have a new model.
|
Beta Was this translation helpful? Give feedback.
-
May be my description is not clear,here the iter002gives some candidates. and I calculate the results and get the data.000 at the dictionary 02. Then I set the record.dpgen as 2 8. I hope the dpgen will train the add data. However, it skips the train prodecure.like The file in the directory /run/iter.000003/00.train is |
Beta Was this translation helpful? Give feedback.
-
I found the reason is : "model_devi_jobs": [ |
Beta Was this translation helpful? Give feedback.
I found the reason is : "model_devi_jobs": [
{ "sys_idx": [0,1,2], "traj_freq": 5,"skip_train":true,
"template":{ "lmp": "lmp/input.lammps", "plm": "lmp/input.plumed", "plm_path": "lmp/plmpath.pdb" },
"rev_mat":{ "lmp": {"V_NSTEPS": [5000], "V_TEMP": [490], "V_PRES": [20]}, "plm": {"V_TEMP": [490], "V_STRIDE": [5]} }},
skip_train:true, should be deleted. Thanks you.