We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2679322 commit 9dd5102Copy full SHA for 9dd5102
2 files changed
chebifier/prediction_models/c3p_predictor.py
@@ -1,8 +1,6 @@
1
from pathlib import Path
2
from typing import List, Optional
3
4
-from c3p import classifier as c3p_classifier
5
-
6
from chebifier import modelwise_smiles_lru_cache
7
from chebifier.prediction_models import BasePredictor
8
chebifier/prediction_models/chebi_lookup.py
@@ -8,7 +8,6 @@
9
from chebifier.utils import load_chebi_graph
10
11
-from chebifier.prediction_models import BasePredictor
12
13
14
class ChEBILookupPredictor(BasePredictor):
@@ -19,7 +18,6 @@ def __init__(
19
18
chebi_version: int = 241,
20
**kwargs,
21
):
22
- from chebifier.utils import load_chebi_graph
23
24
super().__init__(model_name, **kwargs)
25
self._description = (
0 commit comments