An Inductive Logic Programming (ILP) framework for classifying chemical compounds into ChEBI classes. Rules are learned with Popper and evaluated with Clingo (Answer Set Programming).
SWI-Prolog must be installed and on PATH (required by Popper).
Popper must be installed as well. You can either install the latest version of Popper with
pip install https://github.com/logic-and-learning-lab/Popper
or a forked, slightly outdated version with
pip install https://github.com/sfluegel05/Popper
With the latter, you can use the --mdl_weight_fn, --mdl_weight_fp and --mdl_weight_seize options of the learn command.
pip install chebILPExtras:
pip install chebILP[explain]addsxclingoandPillowfor theexplaincommandpip install chebILP[llm]addslitellm(multi-provider access for auxiliary-predicate generation),anthropic,langsmith, andpython-dotenvfor LLM-enhanced rule learning (enhance_with_llms, experimental)
The prepare_dl_preds utility (one-time DL tensor extraction) additionally requires torch, which must be installed separately in an environment that has the DL model checkpoint.
To get a list of available commands, run
python -m chebILP -hTo get help for a specific command, run
python -m chebILP {command} -hAn ILP dataset for ChEBI version 248 is available on HuggingFace. However, you can also create your own dataset.
Step 1 — Download ChEBI data and build the dataset (downloads chebi.obo and chebi.sdf.gz, builds cached graph and molecule files, selects label classes, and creates a train/val/test split):
python -m chebILP prepare_dataset \
--chebi_version 251 This writes to data/chebi_v251/:
chebi_graph.pkl— hierarchy graph (networkx DiGraph)ChEBI25_3_STAR/molecules.pkl— molecule DataFrame (index = ChEBI ID)ChEBI25_3_STAR/labels.txt— selected class IDs (one per line)ChEBI25_3_STAR/splits.csv— molecule-level train/val/test split
Step 2 — Build ILP example files (positive/negative molecules per class):
python -m chebILP build_samples \
--labels_file data/chebi_v251/ChEBI25_3_STAR/labels.txt \
--chebi_version 251Step 3 — Build ILP background knowledge files (molecule features as logic facts):
python -m chebILP build_bk \
--labels_file data/chebi_v251/ChEBI25_3_STAR/labels.txt \
--chebi_version 251Steps 2 and 3 write files into data/ilp_problems/ (one subdirectory per class).
The default predicate set is atoms. Most other predicate sets extend atoms.
Some predicate sets are experimental. We recommend --predicate_set chembl_fgs
which provides additional predicates based on functional groups.
Optional: LLM-generated auxiliary predicates (experimental)
The llm_generated_rules predicate set augments atoms with
auxiliary predicates invented by an LLM.
Each auxiliary predicate is defined by an ASP rule.
The predicate set offered to the LLM is atoms with an extension for molecular weight
and ring sizes.
Generate them before build_bk:
python -m chebILP.predicate_generation.generate_auxiliary_rules \
--labels_file data/chebi_v251/ChEBI25_3_STAR/labels.txt \
--chebi_version 251 \
--n_predicates 4 \
--predicate_dir data/llm_generated_rulesYou can choose a model with --model provider/name (via LiteLLM); it defaults to
anthropic/claude-haiku-4-5. Also tested: anthropic/claude-opus-4-8 and openai/gpt-5.6-sol.
The model must support structured outputs. The
provider's API key is read from .env / the environment under its standard name
(ANTHROPIC_API_KEY, OPENAI_API_KEY, ...).
Then run build_bk with --predicate_set llm_generated_rules --predicate_dir <library>;
the predicates a class uses are merged into its background knowledge (predicate names are
aux_-prefixed). --predicate_dir defaults to data/llm_generated_predicates and
build_bk errors if no library exists there. Classes with no recorded programs fall back
to plain atom predicates.
There is also a version of this workflow that produces Python programs instead of ASP rules:
python -m chebILP.predicate_generation.generate_auxiliary_predicates \
--labels_file data/chebi_v251/ChEBI25_3_STAR/labels.txt \
--chebi_version 251 \
--n_predicates 4 \
--predicate_dir data/llm_generated_pythonLearn Prolog classification rules for each class using the examples and background knowledge from workflow 1.
The learn function will create an updated bias file based on the max_vars, max_body and max_clauses parameters.
Learn rules:
python -m chebILP learn \
--labels_file data/chebi_v251/ChEBI25_3_STAR/labels.txt \
--chebi_split data/chebi_v251/ChEBI25_3_STAR/splits.csv \
--timeout 60Output is written to a timestamped directory data/results/run_YYYYMMDD_HHMMSS/ containing results.json (one entry per class with the learned program and training score) and config.yml.
Evaluate on test/validation set:
python -m chebILP test \
--run_to_evaluate data/results/run_20260101_120000 \
--test_on testCombine ILP rules with a deep learning (DL) model for hierarchical multi-label classification. The ensemble uses DL predictions for non-leaf classes and selects either ILP or DL for each leaf class based on validation F1.
Step 1 — Build full ILP prediction tensors (run once per ILP run, for the validation and/or test split):
python -m chebILP build_ilp_preds_for_ensemble \
--run_dir data/results/run_20260101_120000 \
--predict_on validation \
--chebi_split data/chebi_v248/ChEBI25_3_STAR/splits.csv \
--chebi_version 251This writes full_val_preds.npy and full_val_preds_metadata.json into the run directory. Repeat with --predict_on test for the test split.
Step 2 — Model selection and ILP tensor assembly:
python -m chebILP ensemble_construct \
--chebi_split data/chebi_v248/ChEBI25_3_STAR/splits.csv \
--dl_val_preds_npy data/preds/val_preds.npy \
--dl_val_preds_meta data/preds/val_preds_metadata.json \
--ilp_val_runs data/results_val/run_A data/results_val/run_B \
--labels_file data/chebi_v248/ChEBI25_3_STAR/labels.txt \
--predict_on test \
--output data/ensemble_predictions/ensembleFor each leaf class, selects the ILP run whose ensemble F1 (ILP prediction AND all DL parent predictions >= 0.5) is highest; falls back to DL if no ILP run beats it. Outputs:
ensemble_trusted_models.csv— which model is used per classensemble_ilp_preds.npy+ensemble_ilp_preds_metadata.json— ILP tensor for the target split
Step 3 — Aggregate into final predictions:
python -m chebILP ensemble_aggregate \
--dl_preds_npy data/preds/test_preds.npy \
--dl_preds_meta data/preds/test_preds_metadata.json \
--ilp_preds_npy data/ensemble_predictions/ensemble_ilp_preds.npy \
--ilp_preds_meta data/ensemble_predictions/ensemble_ilp_preds_metadata.json \
--trusted_models data/ensemble_predictions/ensemble_trusted_models.csv \
--label_stats data/chebi_v248/ChEBI25_3_STAR/processed/class_stats.csv \
--output data/ensemble_predictions/final_predictions.npyDL predictions propagate freely through the class hierarchy; ILP and always-positive classes only predict a class if all label-set parents are already predicted positive. Output is a boolean NumPy array with a matching _metadata.json.
Translate a rule to natural language (global explanation):
python -m chebILP rule_to_nl --rule "chebi_15734(V0) :- has_atom(V0,V1), c(V1), has_2_hs(V1), bSINGLE(V1,V2), o(V2), has_1_hs(V2)." --chebi_graph_path data/chebi_v248/chebi_graph.pklExplain why a molecule satisfies a rule (local explanation):
python -m chebILP explain \
--smiles "CCO" \
--rule "chebi_15734(V0) :- has_atom(V0,V1), c(V1), has_2_hs(V1), bSINGLE(V1,V2), o(V2), has_1_hs(V2)." \
--chebi_graph_path data/chebi_v248/chebi_graph.pkl \
--output explanation.png