Training parameters¶
- model:
- type:
dictargument path:model- type_map:
- type:
list, optionalargument path:model/type_mapA list of strings. Give the name to each type of atoms.
- data_stat_nbatch:
- type:
int, optional, default:10argument path:model/data_stat_nbatchThe model determines the normalization from the statistics of the data. This key specifies the number of frames in each system used for statistics.
- use_srtab:
- type:
str, optionalargument path:model/use_srtabThe table for the short-range pairwise interaction added on top of DP. The table is a text data file with (N_t + 1) * N_t / 2 + 1 columes. The first colume is the distance between atoms. The second to the last columes are energies for pairs of certain types. For example we have two atom types, 0 and 1. The columes from 2nd to 4th are for 0-0, 0-1 and 1-1 correspondingly.
- smin_alpha:
- type:
float, optionalargument path:model/smin_alphaThe short-range tabulated interaction will be swithed according to the distance of the nearest neighbor. This distance is calculated by softmin. This parameter is the decaying parameter in the softmin. It is only required when use_srtab is provided.
- sw_rmin:
- type:
float, optionalargument path:model/sw_rminThe lower boundary of the interpolation between short-range tabulated interaction and DP. It is only required when use_srtab is provided.
- sw_rmax:
- type:
float, optionalargument path:model/sw_rmaxThe upper boundary of the interpolation between short-range tabulated interaction and DP. It is only required when use_srtab is provided.
- descriptor:
- type:
dictargument path:model/descriptorThe descriptor of atomic environment.
Depending on the value of type, different sub args are accepted.
- type:
- type:
str(flag key)argument path:model/descriptor/typeThe type of the descritpor. Valid types are loc_frame, se_a, se_r and se_ar.
- loc_frame: Defines a local frame at each atom, and the compute the descriptor as local coordinates under this frame.
- se_a: Used by the smooth edition of Deep Potential. The full relative coordinates are used to construct the descriptor.
- se_r: Used by the smooth edition of Deep Potential. Only the distance between atoms is used to construct the descriptor.
- se_ar: A hybrid of se_a and se_r. Typically se_a has a smaller cut-off while the se_r has a larger cut-off.
When type is set to
loc_frame:- sel_a:
- type:
listargument path:model/descriptor[loc_frame]/sel_aA list of integers. The length of the list should be the same as the number of atom types in the system. sel_a[i] gives the selected number of type-i neighbors. The full relative coordinates of the neighbors are used by the descriptor.
- sel_r:
- type:
listargument path:model/descriptor[loc_frame]/sel_rA list of integers. The length of the list should be the same as the number of atom types in the system. sel_r[i] gives the selected number of type-i neighbors. Only relative distance of the neighbors are used by the descriptor. sel_a[i] + sel_r[i] is recommended to be larger than the maximally possible number of type-i neighbors in the cut-off radius.
- rcut:
- type:
float, optional, default:6.0argument path:model/descriptor[loc_frame]/rcutThe cut-off radius. The default value is 6.0
- axis_rule:
- type:
listargument path:model/descriptor[loc_frame]/axis_ruleA list of integers. The length should be 6 times of the number of types.
- axis_rule[i*6+0]: class of the atom defining the first axis of type-i atom. 0 for neighbors with full coordinates and 1 for neighbors only with relative distance.
- axis_rule[i*6+1]: type of the atom defining the first axis of type-i atom.
- axis_rule[i*6+2]: index of the axis atom defining the first axis. Note that the neighbors with the same class and type are sorted according to their relative distance.
- axis_rule[i*6+3]: class of the atom defining the first axis of type-i atom. 0 for neighbors with full coordinates and 1 for neighbors only with relative distance.
- axis_rule[i*6+4]: type of the atom defining the second axis of type-i atom.
- axis_rule[i*6+5]: class of the atom defining the second axis of type-i atom. 0 for neighbors with full coordinates and 1 for neighbors only with relative distance.
When type is set to
se_a:- sel:
- type:
listargument path:model/descriptor[se_a]/selA list of integers. The length of the list should be the same as the number of atom types in the system. sel[i] gives the selected number of type-i neighbors. sel[i] is recommended to be larger than the maximally possible number of type-i neighbors in the cut-off radius.
- rcut:
- type:
float, optional, default:6.0argument path:model/descriptor[se_a]/rcutThe cut-off radius.
- rcut_smth:
- type:
float, optional, default:0.5argument path:model/descriptor[se_a]/rcut_smthWhere to start smoothing. For example the 1/r term is smoothed from rcut to rcut_smth
- neuron:
- type:
list, optional, default:[10, 20, 40]argument path:model/descriptor[se_a]/neuronNumber of neurons in each hidden layers of the embedding net. When two layers are of the same size or one layer is twice as large as the previous layer, a skip connection is built.
- axis_neuron:
- type:
int, optional, default:4argument path:model/descriptor[se_a]/axis_neuronSize of the submatrix of G (embedding matrix).
- activation_function:
- type:
str, optional, default:tanhargument path:model/descriptor[se_a]/activation_functionThe activation function in the embedding net. Supported activation functions are “relu”, “relu6”, “softplus”, “sigmoid”, “tanh”, “gelu”.
- resnet_dt:
- type:
bool, optional, default:Falseargument path:model/descriptor[se_a]/resnet_dtWhether to use a “Timestep” in the skip connection
- type_one_side:
- type:
bool, optional, default:Falseargument path:model/descriptor[se_a]/type_one_sideTry to build N_types embedding nets. Otherwise, building N_types^2 embedding nets
- precision:
- type:
str, optional, default:float64argument path:model/descriptor[se_a]/precisionThe precision of the embedding net parameters, supported options are “float64”, “float32”, “float16”.
- trainable:
- type:
bool, optional, default:Trueargument path:model/descriptor[se_a]/trainableIf the parameters in the embedding net is trainable
- seed:
- type:
int|NoneType, optionalargument path:model/descriptor[se_a]/seedRandom seed for parameter initialization
- exclude_types:
- type:
list, optional, default:[]argument path:model/descriptor[se_a]/exclude_typesThe Excluded types
- set_davg_zero:
- type:
bool, optional, default:Falseargument path:model/descriptor[se_a]/set_davg_zeroSet the normalization average to zero. This option should be set when atom_ener in the energy fitting is used
When type is set to
se_r:- sel:
- type:
listargument path:model/descriptor[se_r]/selA list of integers. The length of the list should be the same as the number of atom types in the system. sel[i] gives the selected number of type-i neighbors. sel[i] is recommended to be larger than the maximally possible number of type-i neighbors in the cut-off radius.
- rcut:
- type:
float, optional, default:6.0argument path:model/descriptor[se_r]/rcutThe cut-off radius.
- rcut_smth:
- type:
float, optional, default:0.5argument path:model/descriptor[se_r]/rcut_smthWhere to start smoothing. For example the 1/r term is smoothed from rcut to rcut_smth
- neuron:
- type:
list, optional, default:[10, 20, 40]argument path:model/descriptor[se_r]/neuronNumber of neurons in each hidden layers of the embedding net. When two layers are of the same size or one layer is twice as large as the previous layer, a skip connection is built.
- activation_function:
- type:
str, optional, default:tanhargument path:model/descriptor[se_r]/activation_functionThe activation function in the embedding net. Supported activation functions are “relu”, “relu6”, “softplus”, “sigmoid”, “tanh”, “gelu”.
- resnet_dt:
- type:
bool, optional, default:Falseargument path:model/descriptor[se_r]/resnet_dtWhether to use a “Timestep” in the skip connection
- type_one_side:
- type:
bool, optional, default:Falseargument path:model/descriptor[se_r]/type_one_sideTry to build N_types embedding nets. Otherwise, building N_types^2 embedding nets
- precision:
- type:
str, optional, default:float64argument path:model/descriptor[se_r]/precisionThe precision of the embedding net parameters, supported options are “float64”, “float32”, “float16”.
- trainable:
- type:
bool, optional, default:Trueargument path:model/descriptor[se_r]/trainableIf the parameters in the embedding net is trainable
- seed:
- type:
int|NoneType, optionalargument path:model/descriptor[se_r]/seedRandom seed for parameter initialization
- exclude_types:
- type:
list, optional, default:[]argument path:model/descriptor[se_r]/exclude_typesThe Excluded types
- set_davg_zero:
- type:
bool, optional, default:Falseargument path:model/descriptor[se_r]/set_davg_zeroSet the normalization average to zero. This option should be set when atom_ener in the energy fitting is used
When type is set to
se_ar:- a:
- type:
dictargument path:model/descriptor[se_ar]/aThe parameters of descriptor se_a
- r:
- type:
dictargument path:model/descriptor[se_ar]/rThe parameters of descriptor se_r
- fitting_net:
- type:
dictargument path:model/fitting_netThe fitting of physical properties.
Depending on the value of type, different sub args are accepted.
- type:
- type:
str(flag key), default:enerargument path:model/fitting_net/typeThe type of the fitting. Valid types are ener, dipole, polar and global_polar.
- ener: Fit an energy model (potential energy surface).
- dipole: Fit an atomic dipole model. Atomic dipole labels for all the selected atoms (see sel_type) should be provided by dipole.npy in each data system. The file has number of frames lines and 3 times of number of selected atoms columns.
- polar: Fit an atomic polarizability model. Atomic polarizability labels for all the selected atoms (see sel_type) should be provided by polarizability.npy in each data system. The file has number of frames lines and 9 times of number of selected atoms columns.
- global_polar: Fit a polarizability model. Polarizability labels should be provided by polarizability.npy in each data system. The file has number of frames lines and 9 columns.
When type is set to
ener:- numb_fparam:
- type:
int, optional, default:0argument path:model/fitting_net[ener]/numb_fparamThe dimension of the frame parameter. If set to >0, file fparam.npy should be included to provided the input fparams.
- numb_aparam:
- type:
int, optional, default:0argument path:model/fitting_net[ener]/numb_aparamThe dimension of the atomic parameter. If set to >0, file aparam.npy should be included to provided the input aparams.
- neuron:
- type:
list, optional, default:[120, 120, 120]argument path:model/fitting_net[ener]/neuronThe number of neurons in each hidden layers of the fitting net. When two hidden layers are of the same size, a skip connection is built.
- activation_function:
- type:
str, optional, default:tanhargument path:model/fitting_net[ener]/activation_functionThe activation function in the fitting net. Supported activation functions are “relu”, “relu6”, “softplus”, “sigmoid”, “tanh”, “gelu”.
- precision:
- type:
str, optional, default:float64argument path:model/fitting_net[ener]/precisionThe precision of the fitting net parameters, supported options are “float64”, “float32”, “float16”.
- resnet_dt:
- type:
bool, optional, default:Trueargument path:model/fitting_net[ener]/resnet_dtWhether to use a “Timestep” in the skip connection
- trainable:
- type:
bool|list, optional, default:Trueargument path:model/fitting_net[ener]/trainableWhether the parameters in the fitting net are trainable. This option can be
- bool: True if all parameters of the fitting net are trainable, False otherwise.
- list of bool: Specifies if each layer is trainable. Since the fitting net is composed by hidden layers followed by a output layer, the length of tihs list should be equal to len(neuron)+1.
- rcond:
- type:
float, optional, default:0.001argument path:model/fitting_net[ener]/rcondThe condition number used to determine the inital energy shift for each type of atoms.
- seed:
- type:
int|NoneType, optionalargument path:model/fitting_net[ener]/seedRandom seed for parameter initialization of the fitting net
- atom_ener:
- type:
list, optional, default:[]argument path:model/fitting_net[ener]/atom_enerSpecify the atomic energy in vacuum for each type
When type is set to
dipole:- neuron:
- type:
list, optional, default:[120, 120, 120]argument path:model/fitting_net[dipole]/neuronThe number of neurons in each hidden layers of the fitting net. When two hidden layers are of the same size, a skip connection is built.
- activation_function:
- type:
str, optional, default:tanhargument path:model/fitting_net[dipole]/activation_functionThe activation function in the fitting net. Supported activation functions are “relu”, “relu6”, “softplus”, “sigmoid”, “tanh”, “gelu”.
- resnet_dt:
- type:
bool, optional, default:Trueargument path:model/fitting_net[dipole]/resnet_dtWhether to use a “Timestep” in the skip connection
- precision:
- type:
str, optional, default:float64argument path:model/fitting_net[dipole]/precisionThe precision of the fitting net parameters, supported options are “float64”, “float32”, “float16”.
- sel_type:
- type:
int|NoneType|list, optionalargument path:model/fitting_net[dipole]/sel_typeThe atom types for which the atomic dipole will be provided. If not set, all types will be selected.
- seed:
- type:
int|NoneType, optionalargument path:model/fitting_net[dipole]/seedRandom seed for parameter initialization of the fitting net
When type is set to
polar:- neuron:
- type:
list, optional, default:[120, 120, 120]argument path:model/fitting_net[polar]/neuronThe number of neurons in each hidden layers of the fitting net. When two hidden layers are of the same size, a skip connection is built.
- activation_function:
- type:
str, optional, default:tanhargument path:model/fitting_net[polar]/activation_functionThe activation function in the fitting net. Supported activation functions are “relu”, “relu6”, “softplus”, “sigmoid”, “tanh”, “gelu”.
- resnet_dt:
- type:
bool, optional, default:Trueargument path:model/fitting_net[polar]/resnet_dtWhether to use a “Timestep” in the skip connection
- precision:
- type:
str, optional, default:float64argument path:model/fitting_net[polar]/precisionThe precision of the fitting net parameters, supported options are “float64”, “float32”, “float16”.
- fit_diag:
- type:
bool, optional, default:Trueargument path:model/fitting_net[polar]/fit_diagFit the diagonal part of the rotational invariant polarizability matrix, which will be converted to normal polarizability matrix by contracting with the rotation matrix.
- scale:
- type:
float|list, optional, default:1.0argument path:model/fitting_net[polar]/scaleThe output of the fitting net (polarizability matrix) will be scaled by
scale
- diag_shift:
- type:
float|list, optional, default:0.0argument path:model/fitting_net[polar]/diag_shiftThe diagonal part of the polarizability matrix will be shifted by
diag_shift. The shift operation is carried out afterscale.
- sel_type:
- type:
int|NoneType|list, optionalargument path:model/fitting_net[polar]/sel_typeThe atom types for which the atomic polarizability will be provided. If not set, all types will be selected.
- seed:
- type:
int|NoneType, optionalargument path:model/fitting_net[polar]/seedRandom seed for parameter initialization of the fitting net
When type is set to
global_polar:- neuron:
- type:
list, optional, default:[120, 120, 120]argument path:model/fitting_net[global_polar]/neuronThe number of neurons in each hidden layers of the fitting net. When two hidden layers are of the same size, a skip connection is built.
- activation_function:
- type:
str, optional, default:tanhargument path:model/fitting_net[global_polar]/activation_functionThe activation function in the fitting net. Supported activation functions are “relu”, “relu6”, “softplus”, “sigmoid”, “tanh”, “gelu”.
- resnet_dt:
- type:
bool, optional, default:Trueargument path:model/fitting_net[global_polar]/resnet_dtWhether to use a “Timestep” in the skip connection
- precision:
- type:
str, optional, default:float64argument path:model/fitting_net[global_polar]/precisionThe precision of the fitting net parameters, supported options are “float64”, “float32”, “float16”.
- fit_diag:
- type:
bool, optional, default:Trueargument path:model/fitting_net[global_polar]/fit_diagFit the diagonal part of the rotational invariant polarizability matrix, which will be converted to normal polarizability matrix by contracting with the rotation matrix.
- scale:
- type:
float|list, optional, default:1.0argument path:model/fitting_net[global_polar]/scaleThe output of the fitting net (polarizability matrix) will be scaled by
scale
- diag_shift:
- type:
float|list, optional, default:0.0argument path:model/fitting_net[global_polar]/diag_shiftThe diagonal part of the polarizability matrix will be shifted by
diag_shift. The shift operation is carried out afterscale.
- sel_type:
- type:
int|NoneType|list, optionalargument path:model/fitting_net[global_polar]/sel_typeThe atom types for which the atomic polarizability will be provided. If not set, all types will be selected.
- seed:
- type:
int|NoneType, optionalargument path:model/fitting_net[global_polar]/seedRandom seed for parameter initialization of the fitting net
- loss:
- type:
dictargument path:lossThe definition of loss function. The type of the loss depends on the type of the fitting. For fitting type ener, the prefactors before energy, force, virial and atomic energy losses may be provided. For fitting type dipole, polar and global_polar, the loss may be an empty dict or unset.
Depending on the value of type, different sub args are accepted.
- type:
- type:
str(flag key), default:enerargument path:loss/typeThe type of the loss. For fitting type ener, the loss type should be set to ener or left unset. For tensorial fitting types dipole, polar and global_polar, the type should be left unset. .
When type is set to
ener:- start_pref_e:
- type:
float|int, optional, default:0.02argument path:loss[ener]/start_pref_eThe prefactor of energy loss at the start of the training. Should be larger than or equal to 0. If set to none-zero value, the energy label should be provided by file energy.npy in each data system. If both start_pref_energy and limit_pref_energy are set to 0, then the energy will be ignored.
- limit_pref_e:
- type:
float|int, optional, default:1.0argument path:loss[ener]/limit_pref_eThe prefactor of energy loss at the limit of the training, Should be larger than or equal to 0. i.e. the training step goes to infinity.
- start_pref_f:
- type:
float|int, optional, default:1000argument path:loss[ener]/start_pref_fThe prefactor of force loss at the start of the training. Should be larger than or equal to 0. If set to none-zero value, the force label should be provided by file force.npy in each data system. If both start_pref_force and limit_pref_force are set to 0, then the force will be ignored.
- limit_pref_f:
- type:
float|int, optional, default:1.0argument path:loss[ener]/limit_pref_fThe prefactor of force loss at the limit of the training, Should be larger than or equal to 0. i.e. the training step goes to infinity.
- start_pref_v:
- type:
float|int, optional, default:0.0argument path:loss[ener]/start_pref_vThe prefactor of virial loss at the start of the training. Should be larger than or equal to 0. If set to none-zero value, the virial label should be provided by file virial.npy in each data system. If both start_pref_virial and limit_pref_virial are set to 0, then the virial will be ignored.
- limit_pref_v:
- type:
float|int, optional, default:0.0argument path:loss[ener]/limit_pref_vThe prefactor of virial loss at the limit of the training, Should be larger than or equal to 0. i.e. the training step goes to infinity.
- start_pref_ae:
- type:
float|int, optional, default:0.0argument path:loss[ener]/start_pref_aeThe prefactor of virial loss at the start of the training. Should be larger than or equal to 0. If set to none-zero value, the virial label should be provided by file virial.npy in each data system. If both start_pref_virial and limit_pref_virial are set to 0, then the virial will be ignored.
- limit_pref_ae:
- type:
float|int, optional, default:0.0argument path:loss[ener]/limit_pref_aeThe prefactor of virial loss at the limit of the training, Should be larger than or equal to 0. i.e. the training step goes to infinity.
- relative_f:
- type:
float|NoneType, optionalargument path:loss[ener]/relative_fIf provided, relative force error will be used in the loss. The difference of force will be normalized by the magnitude of the force in the label with a shift given by relative_f, i.e. DF_i / ( || F || + relative_f ) with DF denoting the difference between prediction and label and || F || denoting the L2 norm of the label.
- learning_rate:
- type:
dictargument path:learning_rateThe learning rate options
- start_lr:
- type:
float, optional, default:0.001argument path:learning_rate/start_lrThe learning rate the start of the training.
- stop_lr:
- type:
float, optional, default:1e-08argument path:learning_rate/stop_lrThe desired learning rate at the end of the training.
- decay_steps:
- type:
int, optional, default:5000argument path:learning_rate/decay_stepsThe learning rate is decaying every this number of training steps.
- training:
- type:
dictargument path:trainingThe training options
- systems:
- type:
list|strargument path:training/systemsThe data systems. This key can be provided with a listthat specifies the systems, or be provided with a string by which the prefix of all systems are given and the list of the systems is automatically generated.
- set_prefix:
- type:
str, optional, default:setargument path:training/set_prefixThe prefix of the sets in the systems.
- stop_batch:
- type:
intargument path:training/stop_batchNumber of training batch. Each training uses one batch of data.
- batch_size:
- type:
int|list|str, optional, default:autoargument path:training/batch_sizeThis key can be
- list: the length of which is the same as the systems. The batch size of each system is given by the elements of the list.
- int: all systems uses the same batch size.
- string “auto”: automatically determines the batch size os that the batch_size times the number of atoms in the system is no less than 32.
- string “auto:N”: automatically determines the batch size os that the batch_size times the number of atoms in the system is no less than N.
- seed:
- type:
int|NoneType, optionalargument path:training/seedThe random seed for training.
- disp_file:
- type:
str, optional, default:lcueve.outargument path:training/disp_fileThe file for printing learning curve.
- disp_freq:
- type:
int, optional, default:1000argument path:training/disp_freqThe frequency of printing learning curve.
- numb_test:
- type:
int|list|str, optional, default:1argument path:training/numb_testNumber of frames used for the test during training.
- save_freq:
- type:
int, optional, default:1000argument path:training/save_freqThe frequency of saving check point.
- save_ckpt:
- type:
str, optional, default:model.ckptargument path:training/save_ckptThe file name of saving check point.
- disp_training:
- type:
bool, optional, default:Trueargument path:training/disp_trainingDisplaying verbose information during training.
- time_training:
- type:
bool, optional, default:Trueargument path:training/time_trainingTiming durining training.
- profiling:
- type:
bool, optional, default:Falseargument path:training/profilingProfiling during training.
- profiling_file:
- type:
str, optional, default:timeline.jsonargument path:training/profiling_fileOutput file for profiling.