Skip to content

Commit

Permalink
remove deprecated rdkit args
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonBurns committed Aug 13, 2024
1 parent 8021325 commit 28e8d9c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,10 +261,8 @@ train_test_split_molecules(
fingerprint="daylight_fingerprint",
fprints_hopts={
"fpSize": 200,
"bitsPerHash": 4,
"useHs": 1,
"tgtDensity": 0.4,
"minSize": 64,
"numBitsPerFeature": 4,
"useHs": True,
},
sampler="random",
random_state=42,
Expand Down
12 changes: 4 additions & 8 deletions test/functional/test_molecules.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,8 @@ def test_fprint_hopts(self):
fingerprint="topological_fingerprint",
fprints_hopts={
"fpSize": 200,
"bitsPerHash": 4,
"useHs": 1,
"tgtDensity": 0.4,
"minSize": 64,
"numBitsPerFeature": 4,
"useHs": True,
},
)

Expand Down Expand Up @@ -162,10 +160,8 @@ def test_maximum_call(self):
fingerprint="topological_fingerprint",
fprints_hopts={
"fpSize": 200,
"bitsPerHash": 4,
"useHs": 1,
"tgtDensity": 0.4,
"minSize": 64,
"numBitsPerFeature": 2,
"useHs": True,
},
sampler="random",
random_state=42,
Expand Down

0 comments on commit 28e8d9c

Please sign in to comment.