From 2c4a32adb0d0b00a2fc5308da2c3ccb92ac7dc89 Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Thu, 15 Sep 2022 18:37:33 -0400 Subject: [PATCH] fix the description of fp_task See #934. --- dpgen/generator/arginfo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dpgen/generator/arginfo.py b/dpgen/generator/arginfo.py index 5be9ec66e..da1ee5544 100644 --- a/dpgen/generator/arginfo.py +++ b/dpgen/generator/arginfo.py @@ -481,8 +481,8 @@ def fp_style_variant_type_args() -> Variant: def fp_args() -> List[Argument]: - doc_fp_task_max = 'Maximum of structures to be calculated in 02.fp of each iteration.' - doc_fp_task_min = 'Minimum of structures to be calculated in 02.fp of each iteration.' + doc_fp_task_max = 'Maximum number of structures to be calculated in each system in 02.fp of each iteration.' + doc_fp_task_min = 'Minimum number of structures to be calculated in each system in 02.fp of each iteration.' doc_fp_accurate_threshold = 'If the accurate ratio is larger than this number, no fp calculation will be performed, i.e. fp_task_max = 0.' doc_fp_accurate_soft_threshold = 'If the accurate ratio is between this number and fp_accurate_threshold, the fp_task_max linearly decays to zero.' doc_fp_cluster_vacuum = 'If the vacuum size is smaller than this value, this cluster will not be choosen for labeling.'