From 3700f884af28d4a73e2b974d4289b0c7b7d63bef Mon Sep 17 00:00:00 2001 From: AnuragKr Date: Tue, 20 Dec 2022 14:15:28 +0530 Subject: [PATCH 1/3] Fixed a typo inside function comment --- deepmd/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deepmd/common.py b/deepmd/common.py index 1146f291d5..26cdf5bab0 100644 --- a/deepmd/common.py +++ b/deepmd/common.py @@ -137,7 +137,7 @@ def add_data_requirement( must : bool, optional specifi if the `*.npy` data file must exist, by default False high_prec : bool, optional - if tru load data to `np.float64` else `np.float32`, by default False + if true load data to `np.float64` else `np.float32`, by default False type_sel : bool, optional select only certain type of atoms, by default None repeat : int, optional From c02147bed10248916f1c21daa3a614c85f0c35ca Mon Sep 17 00:00:00 2001 From: AnuragKr Date: Sun, 8 Jan 2023 15:01:12 +0530 Subject: [PATCH 2/3] Typo Correction --- deepmd/entrypoints/train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deepmd/entrypoints/train.py b/deepmd/entrypoints/train.py index 552477dd13..5703324ac0 100755 --- a/deepmd/entrypoints/train.py +++ b/deepmd/entrypoints/train.py @@ -75,7 +75,7 @@ def train( Raises ------ RuntimeError - if distributed training job nem is wrong + if distributed training job name is wrong """ run_opt = RunOptions( init_model=init_model, From fa40e7bc0b6f6a6b5323bb329d41b70842cb10fb Mon Sep 17 00:00:00 2001 From: AnuragKr Date: Sun, 8 Jan 2023 15:30:23 +0530 Subject: [PATCH 3/3] Typo correction in runoptions class --- deepmd/train/run_options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deepmd/train/run_options.py b/deepmd/train/run_options.py index 3d4e5e599e..9cf8095edb 100644 --- a/deepmd/train/run_options.py +++ b/deepmd/train/run_options.py @@ -54,7 +54,7 @@ class RunOptions: - """Class with inf oon how to run training (cluster, MPI and GPU config). + """Class with info on how to run training (cluster, MPI and GPU config). Attributes ----------