Skip to content
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

fix: fix type hint of sel #3624

Merged
merged 1 commit into from
Mar 30, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions deepmd/dpmodel/descriptor/se_e2_a.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class DescrptSeA(NativeOP, BaseDescriptor):
The cut-off radius :math:`r_c`
rcut_smth
From where the environment matrix should be smoothed :math:`r_s`
sel : list[str]
sel : list[int]
sel[i] specifies the maxmum number of type i atoms in the cut-off radius
neuron : list[int]
Number of neurons in each hidden layers of the embedding net :math:`\mathcal{N}`
Expand Down Expand Up @@ -144,7 +144,7 @@ def __init__(
self,
rcut: float,
rcut_smth: float,
sel: List[str],
sel: List[int],
neuron: List[int] = [24, 48, 96],
axis_neuron: int = 8,
resnet_dt: bool = False,
Expand Down
4 changes: 2 additions & 2 deletions deepmd/dpmodel/descriptor/se_r.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class DescrptSeR(NativeOP, BaseDescriptor):
The cut-off radius :math:`r_c`
rcut_smth
From where the environment matrix should be smoothed :math:`r_s`
sel : list[str]
sel : list[int]
sel[i] specifies the maxmum number of type i atoms in the cut-off radius
neuron : list[int]
Number of neurons in each hidden layers of the embedding net :math:`\mathcal{N}`
Expand Down Expand Up @@ -100,7 +100,7 @@ def __init__(
self,
rcut: float,
rcut_smth: float,
sel: List[str],
sel: List[int],
neuron: List[int] = [24, 48, 96],
resnet_dt: bool = False,
trainable: bool = True,
Expand Down
4 changes: 2 additions & 2 deletions deepmd/tf/descriptor/loc_frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ class DescrptLocFrame(Descriptor):
----------
rcut
The cut-off radius
sel_a : list[str]
sel_a : list[int]
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 : list[str]
sel_r : list[int]
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.
Expand Down
4 changes: 2 additions & 2 deletions deepmd/tf/descriptor/se_a.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class DescrptSeA(DescrptSe):
The cut-off radius :math:`r_c`
rcut_smth
From where the environment matrix should be smoothed :math:`r_s`
sel : list[str]
sel : list[int]
sel[i] specifies the maxmum number of type i atoms in the cut-off radius
neuron : list[int]
Number of neurons in each hidden layers of the embedding net :math:`\mathcal{N}`
Expand Down Expand Up @@ -169,7 +169,7 @@ def __init__(
self,
rcut: float,
rcut_smth: float,
sel: List[str],
sel: List[int],
neuron: List[int] = [24, 48, 96],
axis_neuron: int = 8,
resnet_dt: bool = False,
Expand Down
4 changes: 2 additions & 2 deletions deepmd/tf/descriptor/se_a_ebd.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class DescrptSeAEbd(DescrptSeA):
The cut-off radius
rcut_smth
From where the environment matrix should be smoothed
sel : list[str]
sel : list[int]
sel[i] specifies the maxmum number of type i atoms in the cut-off radius
neuron : list[int]
Number of neurons in each hidden layers of the embedding net
Expand Down Expand Up @@ -74,7 +74,7 @@ def __init__(
self,
rcut: float,
rcut_smth: float,
sel: List[str],
sel: List[int],
neuron: List[int] = [24, 48, 96],
axis_neuron: int = 8,
resnet_dt: bool = False,
Expand Down
2 changes: 1 addition & 1 deletion deepmd/tf/descriptor/se_a_ebd_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def __init__(
self,
rcut: float,
rcut_smth: float,
sel: List[str],
sel: List[int],
neuron: List[int] = [24, 48, 96],
axis_neuron: int = 8,
resnet_dt: bool = False,
Expand Down
6 changes: 3 additions & 3 deletions deepmd/tf/descriptor/se_a_ef.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class DescrptSeAEf(DescrptSe):
The cut-off radius
rcut_smth
From where the environment matrix should be smoothed
sel : list[str]
sel : list[int]
sel[i] specifies the maxmum number of type i atoms in the cut-off radius
neuron : list[int]
Number of neurons in each hidden layers of the embedding net
Expand Down Expand Up @@ -74,7 +74,7 @@ def __init__(
self,
rcut: float,
rcut_smth: float,
sel: List[str],
sel: List[int],
neuron: List[int] = [24, 48, 96],
axis_neuron: int = 8,
resnet_dt: bool = False,
Expand Down Expand Up @@ -305,7 +305,7 @@ def __init__(
op,
rcut: float,
rcut_smth: float,
sel: List[str],
sel: List[int],
neuron: List[int] = [24, 48, 96],
axis_neuron: int = 8,
resnet_dt: bool = False,
Expand Down
4 changes: 2 additions & 2 deletions deepmd/tf/descriptor/se_a_mask.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class DescrptSeAMask(DescrptSeA):

Parameters
----------
sel : list[str]
sel : list[int]
sel[i] specifies the maxmum number of type i atoms in the neighbor list.
neuron : list[int]
Number of neurons in each hidden layers of the embedding net :math:`\mathcal{N}`
Expand Down Expand Up @@ -117,7 +117,7 @@ class DescrptSeAMask(DescrptSeA):

def __init__(
self,
sel: List[str],
sel: List[int],
neuron: List[int] = [24, 48, 96],
axis_neuron: int = 8,
resnet_dt: bool = False,
Expand Down
2 changes: 1 addition & 1 deletion deepmd/tf/descriptor/se_atten.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class DescrptSeAtten(DescrptSeA):
The cut-off radius :math:`r_c`
rcut_smth
From where the environment matrix should be smoothed :math:`r_s`
sel : list[str]
sel : int
sel[i] specifies the maxmum number of type i atoms in the cut-off radius
neuron : list[int]
Number of neurons in each hidden layers of the embedding net :math:`\mathcal{N}`
Expand Down
2 changes: 1 addition & 1 deletion deepmd/tf/descriptor/se_atten_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class DescrptSeAttenV2(DescrptSeAtten):
The cut-off radius :math:`r_c`
rcut_smth
From where the environment matrix should be smoothed :math:`r_s`
sel : list[str]
sel : int
sel[i] specifies the maxmum number of type i atoms in the cut-off radius
neuron : list[int]
Number of neurons in each hidden layers of the embedding net :math:`\mathcal{N}`
Expand Down
4 changes: 2 additions & 2 deletions deepmd/tf/descriptor/se_r.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class DescrptSeR(DescrptSe):
The cut-off radius
rcut_smth
From where the environment matrix should be smoothed
sel : list[str]
sel : list[int]
sel[i] specifies the maxmum number of type i atoms in the cut-off radius
neuron : list[int]
Number of neurons in each hidden layers of the embedding net
Expand Down Expand Up @@ -91,7 +91,7 @@ def __init__(
self,
rcut: float,
rcut_smth: float,
sel: List[str],
sel: List[int],
neuron: List[int] = [24, 48, 96],
resnet_dt: bool = False,
trainable: bool = True,
Expand Down
4 changes: 2 additions & 2 deletions deepmd/tf/descriptor/se_t.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class DescrptSeT(DescrptSe):
The cut-off radius
rcut_smth
From where the environment matrix should be smoothed
sel : list[str]
sel : list[int]
sel[i] specifies the maxmum number of type i atoms in the cut-off radius
neuron : list[int]
Number of neurons in each hidden layers of the embedding net
Expand All @@ -81,7 +81,7 @@ def __init__(
self,
rcut: float,
rcut_smth: float,
sel: List[str],
sel: List[int],
neuron: List[int] = [24, 48, 96],
resnet_dt: bool = False,
trainable: bool = True,
Expand Down