File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ cd python-chebifier
1212pip install -e .
1313```
1414
15+ Some dependencies of ` chebai-graph ` cannot be installed automatically. If you want to use Graph Neural Networks, follow
16+ the instructions in the [ chebai-graph repository] ( https://github.com/ChEB-AI/python-chebai-graph ) .
17+
1518## Usage
1619
1720### Command Line Interface
Original file line number Diff line number Diff line change 33
44import click
55import yaml
6- import sys
76from chebifier .ensemble .base_ensemble import BaseEnsemble
87from chebifier .ensemble .weighted_majority_ensemble import WMVwithPPVNPVEnsemble , WMVwithF1Ensemble
98
Original file line number Diff line number Diff line change 44import tqdm
55from chebai .preprocessing .datasets .chebi import ChEBIOver50
66from chebai .result .analyse_sem import PredictionSmoother
7- from rdkit import Chem
87
98from chebifier .prediction_models .base_predictor import BasePredictor
109from chebifier .prediction_models .chemlog_predictor import ChemLogPredictor
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " chebifier"
7- version = " 0.1 .0"
7+ version = " 1.0 .0"
88description = " An AI ensemble model for predicting chemical classes"
99readme = " README.md"
1010requires-python = " >=3.9"
@@ -23,6 +23,8 @@ dependencies = [
2323 " torch" ,
2424 " tqdm" ,
2525 " rdkit" ,
26+ " chebai>=1.0.1" ,
27+ " chebai_graph @ git+https://github.com/ChEB-AI/python-chebai-graph.git"
2628]
2729
2830[project .scripts ]
You can’t perform that action at this time.
0 commit comments