Skip to content

Modify three mistakes in DP-GEN/learnDoc/DP-GEN_handson.md #62

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: devel
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions source/Tutorials/DP-GEN/learnDoc/DP-GEN_handson.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ We can perform the run process as we expect by specifying the keywords in param.

- System and data: used to specify the atom types, initial data, etc.
- Training: mainly used to specify tasks in the training step;
- Exploration: mainly used to specify tasks in the labeling step;
- Exploration: mainly used to specify tasks in the Exploration step;
- Labeling: mainly used to specify tasks in the labeling step.

Here we introduce the main keywords in param.json, taking a gas-phase methane molecule as an example.
Expand Down Expand Up @@ -150,9 +150,7 @@ Description of example:

The system related keys specify the basic information about the system. "type_map" gives the atom types, i.e. "H" and "C". "mass_map" gives the standard atom weights, i.e. "1" and "12".

The data related keys specify the init data for traning initial DP models and structures used for model_devi calculations. "init_data_prefix" and "init_data_sys" specify the location of the init data. "sys_configs_prefix" and "sys_configs" specify the location of the structures. Here, the init data is provided at "...... /init/CH4.POSCAR.01x01x01/02.md/sys-0004-0001/deepmd". These structures are divided into two groups and provided at "....../init/CH4.POSCAR.01x01x01/01.scale_pert/sys-0004-0001/scale-
1.000/00000*/POSCAR" and "....../init/CH4.POSCAR.01x01x01/01.scale_pert/sys-0004-0001/scale-
1.000/00001*/POSCAR".
The data related keys specify the init data for training initial DP models and structures used for model_devi calculations. "init_data_prefix" and "init_data_sys" specify the location of the init data. "sys_configs_prefix" and "sys_configs" specify the location of the structures. Here, the init data is provided at "...... /init/CH4.POSCAR.01x01x01/02.md/sys-0004-0001/deepmd". These structures are divided into two groups and provided at "....../init/CH4.POSCAR.01x01x01/01.scale_pert/sys-0004-0001/scale-1.000/00000*/POSCAR" and "....../init/CH4.POSCAR.01x01x01/01.scale_pert/sys-0004-0001/scale-1.000/00001*/POSCAR".

**Training**

Expand Down Expand Up @@ -331,7 +329,7 @@ Description of keywords:
|     "context_type"| str| The connection used to remote machine.|
|     "local_root" | str| The dir where the tasks and relating files locate.|
|     "remote_root" | str| The dir where the tasks are executed on the remote machine.|
| "machine"| dict| The definition of resources.|
| "resource"| dict| The definition of resources.|
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should be resources instead of resource

|     "number_node" | int| The number of node need for each job.|
|     "cpu_per_node"| int| cpu numbers of each node assigned to each job.|
|     "gpu_per_node"| int| gpu numbers of each node assigned to each job.|
Expand Down