rdkit.Chem.FastSDMolSupplier.FastSDMolSupplier:
A wrapper around an SDMolSupplier that precomputes and stores
molecular indices (via text processing) to allow quick length
calculations and random access.
rdkit.ML.KNN.KNNModel.KNNModel:
This is a base class used by KNNClassificationModel
and KNNRegressionModel to represent a k-nearest neighbor predictor.
rdkit.Chem.Pharm2D.SigFactory.SigFactory:
SigFactory's are used by creating one, setting the relevant
parameters, then calling the GetSignature() method each time a
signature is required.
dict:
dict() -> new empty dictionary
dict(mapping) -> new dictionary initialized from a mapping object's
(key, value) pairs
dict(iterable) -> new dictionary initialized as if via:
d = {}
for k, v in iterable:
d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list.