We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8ba061 commit c304092Copy full SHA for c304092
chebifier/prediction_models/chemlog_predictor.py
@@ -55,7 +55,7 @@ def __init__(self, model_name: str, **kwargs):
55
self.chebi_graph = kwargs.get("chebi_graph", None)
56
self.classifier = self.CHEMLOG_CLASSIFIER()
57
58
- def predict_smiles_tuple(self, smiles_list: tuple[str]) -> list:
+ def predict_smiles_list(self, smiles_list: list[str]) -> list:
59
mol_list = [_smiles_to_mol(smiles) for smiles in smiles_list]
60
res = self.classifier.classify(mol_list)
61
if self.chebi_graph is not None:
0 commit comments