Skip to content

Commit d7e7dbb

Browse files
authored
fix a typo in #932 (#934)
* add aliases to Arguments fix #846. * fix a typo in #932
1 parent 23c59e1 commit d7e7dbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/train/argcheck.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def descrpt_se_a_args():
6060
Argument("rcut", float, optional = True, default = 6.0, doc = doc_rcut),
6161
Argument("rcut_smth", float, optional = True, default = 0.5, doc = doc_rcut_smth),
6262
Argument("neuron", list, optional = True, default = [10,20,40], doc = doc_neuron),
63-
Argument("axis_neuron", int, optional = True, default = 4, n_axis_neuron = ['n_axis_neuron'], doc = doc_axis_neuron),
63+
Argument("axis_neuron", int, optional = True, default = 4, alias = ['n_axis_neuron'], doc = doc_axis_neuron),
6464
Argument("activation_function", str, optional = True, default = 'tanh', doc = doc_activation_function),
6565
Argument("resnet_dt", bool, optional = True, default = False, doc = doc_resnet_dt),
6666
Argument("type_one_side", bool, optional = True, default = False, doc = doc_type_one_side),

0 commit comments

Comments
 (0)