Skip to content

Commit

Permalink
Merge pull request #3638 from JoseAntonioSiguenza/accn_test_fix
Browse files Browse the repository at this point in the history
Fix PR for acnn test
  • Loading branch information
rbharath committed Oct 27, 2023
2 parents 3e0f9c5 + 59a9a31 commit cef411a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deepchem/models/torch_models/tests/test_acnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@

@pytest.mark.torch
def test_atomic_convolution_module():
from deepchem.models.torch_models.layers import AtomicConvolutionModule
from deepchem.models.torch_models.layers import AtomicConv
f1_num_atoms = 100 # maximum number of atoms to consider in the ligand
f2_num_atoms = 1000 # maximum number of atoms to consider in the protein
max_num_neighbors = 12 # maximum number of spatial neighbors for an atom

acm = AtomicConvolutionModule(
acm = AtomicConv(
n_tasks=1,
frag1_num_atoms=f1_num_atoms,
frag2_num_atoms=f2_num_atoms,
Expand Down

0 comments on commit cef411a

Please sign in to comment.