File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ def compute_morgan_fingerprints(
2323 count : bool = True ,
2424 radius : int = 9 ,
2525 n_bits : int = 4096 ,
26- bit_scaling : Optional [dict ] = None ,
26+ bit_weights : Optional [dict ] = None ,
2727 progress_bar : bool = True ,
2828 ) -> np .ndarray :
2929 """
@@ -43,8 +43,8 @@ def compute_morgan_fingerprints(
4343 Radius for Morgan fingerprint. Default 9.
4444 n_bits : int
4545 Number of bits for the fingerprint. Default 4096.
46- bit_scaling : None or dict
47- If provided, applies scaling to counts in sparse fingerprints .
46+ bit_weights : None or dict
47+ Weights to apply to bits (only for count=True). Missing bits default to 1.0 .
4848 progress_bar : bool
4949 Whether to show a progress bar during computation. Default True.
5050 """
@@ -69,6 +69,6 @@ def compute_morgan_fingerprints(
6969 fpgen ,
7070 count = count ,
7171 sparse = sparse ,
72- bit_scaling = bit_scaling ,
72+ bit_weights = bit_weights ,
7373 progress_bar = progress_bar ,
7474 )
You can’t perform that action at this time.
0 commit comments