Skip to content
AI.info

Research

Learning Molecular Chirality via Chiral Determinant Kernels

Overview Research area: Molecular machine learning / stereochemistry-aware molecular representation learning, with an emphasis on geometric deep learning architectures for chirality. Technical level:

arXiv
2602.07415
Published
2026-02-07
Authors
Runhan Shi, Zhicheng Zhang, Letian Chen, Gufeng Yu, Yang Yang

AI summary

Overview

Research area: Molecular machine learning / stereochemistry-aware molecular representation learning, with an emphasis on geometric deep learning architectures for chirality.

Technical level: Advanced. The paper assumes familiarity with SE(3) invariance and equivariance, 3D message-passing neural networks, attention mechanisms, and stereochemical nomenclature (R/S, Ra/M, Sa/P).

Scope: The paper introduces ChiDeK, a unified architecture that encodes both central and axial molecular chirality through a determinant-based "chiral determinant kernel" plus chiral cross-attention, and evaluates it on four chirality-aware tasks plus a newly constructed axial-chirality benchmark.

What This Paper Is About

Most molecular representation learning models either cannot tell enantiomers apart (E(3)-invariant models such as SchNet and DimeNet, whose pairwise distances and bond angles are unchanged under reflection) or handle only central chirality using handcrafted stereochemical tags or limited 3D encodings. The authors aim to build a single framework that explicitly encodes stereogenic features for both central chirality (a tetrahedral atom bonded to four distinct substituents) and axial chirality (restricted rotation around a bond connecting aromatic or aliphatic groups), and to supply an evaluation benchmark for the largely unaddressed axial case.

Key Contributions

  1. ChiDeK architecture: A unified model that systematically encodes both central and axial chirality and is evaluated on multiple chirality-aware prediction tasks.
  2. Chiral determinant kernel: A kernel for chiral atoms that embeds the SE(3)-invariant chirality matrix (from ChiralFinder, Shi et al., 2026), capturing stereogenic features for chirality.
  3. A new axial-chirality benchmark: The ACMP (axial chiral molecular properties) dataset, constructed and released for predicting electronic circular dichroism (ECD) and optical rotation (OR), covering an underexplored stereogenic type.
  4. Empirical gains across four tasks: R/S classification, enantiomer ranking, ECD prediction, and OR prediction, with improvements over state-of-the-art baselines and, most notably, over 7% higher accuracy on axially chiral tasks on average.

Main Findings

  • R/S classification: ChiDeK reaches 99.8 ± 0.1% accuracy, the best result in Table 1, ahead of Tetra-DMPNN (c) and (p) at 99.7 ± 0.1% and ChIRo at 98.5 ± 0.2%. The E(3)-invariant DimeNet++ fails as expected at 65.7 ± 2.9%.

  • Enantiomer ranking: ChiDeK achieves 72.8 ± 0.2%, surpassing the second-best method ChIRo (72.0 ± 0.5%) by 0.8%. The authors attribute the modest gap to limited structural diversity, since all molecules contain only a single chiral center.

  • Central ECD spectrum prediction: ChiDeK attains the best peak-height symbol accuracy of 53.3 ± 0.6%, compared with 51.9 ± 0.3% for SphereNet and around 50% for most others, while keeping competitive peak-position RMSE (2.20 ± 0.14) and peak-number RMSE (1.18 ± 0.09). The authors note symbol accuracy stays only slightly above 50% for all models, which they hypothesize comes from dataset inconsistency: CMCDS provides RDKit-generated conformers while ECD labels are computed from optimized geometries.

  • Axial OR prediction: ChiDeK leads with 69.2 ± 0.5% accuracy, exceeding the second-best method (SPMS, 65.0 ± 0.6%) by 4.2%. Every baseline except SPMS scores below 55%, which the authors read as evidence they cannot capture stereogenic axes.

  • Axial ECD spectrum prediction: ChiDeK reaches 71.2 ± 0.6% symbol accuracy, exceeding the second-best model (SPMS, 60.4 ± 0.3%) by 10.8%. Its peak-number RMSE of 1.05 ± 0.12 matches the best value in the table (Tetra-DMPNN (p), 1.05 ± 0.12); its peak-position RMSE of 3.24 ± 0.14 is not the lowest in Table 2, where ChiGNN reports 2.89 ± 0.12.

  • Qualitative enantiomer discrimination: On a representative axial ECD example, ChiDeK assigns opposite peak-height symbols to opposite stereochemical configurations, whereas ChiGNN and Tetra-DMPNN (permute) produce identical symbols across enantiomers.

  • Rotation behavior of representations: When the torsion angle along the chiral axis is varied, the 18 conformers split into two opposite configurations of 9 conformers each, with a trajectory that moves from one configuration to its opposite and back, and cosine similarity high within a configuration and low across configurations (visualized with UMAP).

  • Ablation on rank strategy: Both regularization (Reg, 71.0 ± 0.5%) and QR decomposition (QR, 71.2 ± 0.6%) outperform no intervention (None, 68.3 ± 0.6%) in axial ECD symbol accuracy.

  • Ablation on encoder design: A linear encoder without access to the chirality matrix performs close to random guessing (51.2 ± 1.2%), while a linear encoder with it reaches 68.7 ± 0.6%, and the kernel-based encoder is higher still.

  • Ablation on atom separation: Separating chiral-related atoms from non-chiral atoms outperforms treating them jointly (for example, kernel-based with QR: 71.2 ± 0.6% with separation versus 69.8 ± 0.4% without).

Methodology in Plain English

The authors start from the observation that the determinant of a 3-by-3 "chirality matrix" built from three bond vectors around a chiral atom produces a signed volume. That quantity stays the same under translation and rotation but flips sign under reflection, so it separates enantiomers — Proposition 3.1 states this formally, and Lemma 3.1 links the sign of the determinant to the R/S configuration.

Rather than using this scalar directly, ChiDeK turns it into a learnable, high-dimensional feature. Each atom is first labeled as chiral, chiral-related (a direct substituent of a chiral atom), or non-chiral. Chiral atoms pass through a chiral encoder: the chirality matrix is multiplied by a set of learnable kernels, layer-normalized, decomposed with QR, and the determinant of each upper-triangular factor becomes the atom's embedding. Lemma 4.1 shows this generalized product equals a positive scaling factor times the original chirality product, so the reflection sensitivity is preserved — but only if the projection has full column rank, which motivates either a regularization penalty pushing the weights toward orthogonality or an auxiliary QR decomposition on the weights themselves.

The resulting embeddings enter a transformer-style module. Chiral atoms act as queries; chiral-related and non-chiral atoms provide keys and values through separate learned projections. Attention is biased by a distance-aware Gaussian kernel with pair type (GKPT), which distinguishes edges between chiral atoms and chiral-related atoms from edges between chiral atoms and non-chiral atoms. A learnable global chiral token is prepended, and the final representation feeds a small predictor of two linear layers with GELU activation for either classification or regression.

Why This Matters

Impact on research: The work argues that chirality modeling in machine learning has been effectively limited to central chirality, and provides a mechanism — determinant-based kernels plus type-aware cross-attention — that extends to axial stereogenic axes without handcrafted tags. It also supplies the ACMP benchmark (1,192 conformers/molecules) so that axial ECD and OR prediction can be evaluated systematically, and it documents a dataset-consistency problem in CMCDS that appears to cap ECD sign accuracy near chance for every model tested.

Real-world applications:

  • Drug efficacy and toxicity: enantiomers share composition but can differ sharply in biological effect, and the paper cites drug efficacy, toxicity, and protein-binding affinity as areas where stereochemistry is critical.
  • Biomolecular recognition and protein binding: enantiomer-specific interactions govern how a molecule engages a binding site.
  • Stereoselective synthesis and enantioselective catalysis: choosing the correct configuration is central to producing a desired product or catalyst outcome.
  • Chiroptical spectroscopy: ECD and OR prediction support interpretation of spectroscopic measurements used to assign molecular configuration.

Industry relevance: Chiral compounds are central to pharmaceutical development, where the wrong enantiomer can be inactive or harmful, and to catalysis and specialty chemicals. A representation that generalizes beyond central chirality is relevant to any pipeline that screens or designs chiral molecules computationally. The authors release code and data at https://github.com/Meteor-han/ChiDeK, and the work was supported by the National Key R&D Program of China (No. 2023YFC2811500) and the National Natural Science Foundation of China (No. 62272300).

Future Directions

  • Extending to other chirality types: The authors explicitly plan to extend the unified stereochemical representation to planar and helical chirality, which the introduction identifies as largely unaddressed alongside axial chirality.
  • Broader downstream tasks: They name docking-score prediction for chiral ligand-protein interactions and enantioselectivity prediction in asymmetric catalysis as target applications.
  • Fixing ECD data consistency: Since all models cluster near 50% on central ECD symbol accuracy and the authors attribute this to a mismatch between RDKit-generated conformers and labels computed from optimized geometries, building consistently constructed ECD datasets is an open requirement.
  • Rank sufficiency and robustness: Because the determinant degenerates to zero if the projection weights are rank-deficient, and because the paper defers ablation on missing or mislabeled chiral atoms to Appendix B.3, reliable chiral-atom identification and stable training conditions remain open practical questions.

Target Audience

This paper is most useful to machine learning researchers working on geometric and equivariant molecular representations, computational chemists and cheminformatics practitioners who need chirality-aware property prediction, and spectroscopy-focused researchers interested in ECD and OR modeling. Readers without a background in 3D graph neural networks, SE(3) invariance, or stereochemical notation will find the method section challenging, though the problem framing and results tables are accessible.

Authors’ abstract

Chirality is a fundamental molecular property that governs stereospecific behavior in chemistry and biology. Capturing chirality in machine learning models remains challenging due to the geometric complexity of stereochemical relationships and the limitations of traditional molecular representations that often lack explicit stereochemical encoding. Existing approaches to chiral molecular representation primarily focus on central chirality, relying on handcrafted stereochemical tags or limited 3D encodings, and thus fail to generalize to more complex forms such as axial chirality. In this work, we introduce ChiDeK (Chiral Determinant Kernels), a framework that systematically integrates stereogenic information into molecular representation learning. We propose the chiral determinant kernel to encode the SE(3)-invariant chirality matrix and employ cross-attention to integrate stereochemical information from local chiral centers into the global molecular representation. This design enables explicit modeling of chiral-related features within a unified architecture, capable of jointly encoding central and axial chirality. To support the evaluation of axial chirality, we construct a new benchmark for electronic circular dichroism (ECD) and optical rotation (OR) prediction. Across four tasks, including R/S configuration classification, enantiomer ranking, ECD spectrum prediction, and OR prediction, ChiDeK achieves substantial improvements over state-of-the-art baselines, most notably yielding over 7% higher accuracy on axially chiral tasks on average.

Read the original paper