Skip to main content

Contrastive Learning for Sequence and Structure - co-embeds protein sequences and structures

Project description

CLSS: Contrastive learning unites sequence and structure in a global representation of protein space

Paper: https://www.biorxiv.org/content/10.1101/2025.09.05.674454.full.pdf

Note: The paper is currently undergoing revisions and will be re-uploaded shortly.

DOI: https://doi.org/10.1101/2025.09.05.674454

GitHub repository: https://github.com/guyyanai/CLSS

Interactive viewer: https://gabiaxel.github.io/clss-viewer/


Abstract

Amino acid sequence dictates the three-dimensional structure and biological function of proteins. Yet, despite decades of research, our understanding of the interplay between sequence and structure is incomplete. To meet this challenge, we introduce Contrastive Learning Sequence-Structure (CLSS), an AI-based contrastive learning model trained to co-embed sequence and structure information in a self-supervised manner. We trained CLSS on large and diverse sets of protein building blocks called domains. CLSS represents both sequences and structures as vectors in the same high-dimensional space, where distance relates to sequence-structure similarity. Thus, CLSS provides a natural way to represent the protein universe, reflecting evolutionary relationships, as well as structural changes. We find that CLSS refines expert knowledge about the global organization of protein space, and highlights transitional forms that resist hierarchical classification. CLSS reveals linkage between domains of seemingly separate lineages, thereby significantly improving our understanding of evolutionary design.


TL;DR

CLSS is a self-supervised, two-tower contrastive model that co-embeds protein sequences and structures into a shared 32‑D space, enabling unified mapping of protein space across modalities.


Key ideas

  • Two-tower architecture: sequence tower (ESM2‑like, ~35M params) co-trained; structure tower (ESM3) kept frozen; both feed 32‑D L2‑normalized adapters.
  • Segment-aware training: contrastive pairs match full-domain structures with random sequence sub-segments (≥10 aa) to encode contextual compatibility.
  • Unified embeddings: sequences, structures, and subsequences align in a single space; distances track ECOD hierarchy and reveal cross-fold relationships.
  • Scale & efficiency: ~36M trainable params, compact embeddings (32‑D) supporting efficient inference and training.
  • Resources: code + weights, and a public CLSS viewer for exploration.

See paper for full details, datasets, ablations, and comparisons.

Architecture

CLSS Architecture

Figure 1: Overview of training, validating, and testing of CLSS to create unified maps of protein sequence and structure space. (A) Overview of the two-tower CLSS architecture. On the left is a structure tower based on the frozen, pre-trained ESM3 model (light blue) followed by a trained (yellow) adapter that averages, reduces dimension, and normalizes the embedding. On the right is the trained CLSS sequence tower, build upon a pre-trained ESM2 model, and its adapter network (yellow). The networks are trained using contrastive loss on batches of randomly chosen structures and sequence segments from the ECOD-AF2 domain database. Labels from a hierarchical classification were not using during training in any way. Once trained, we calculate the embeddings of the structures, sequences, and sequence segments from Datasets 1 and 2 using CLSS (B) and other PLMs (C). (D) Dimensionality reduction by t-SNE was used to create visual maps of protein space (upper images). Pairwise distance distributions (lower images) were calculated from the embeddings directly, rather than the t-SNE reduced space.


Visualization

CLSS embeddings capture the global organization of protein space, revealing evolutionary relationships and structural similarities across diverse protein domains.

ECOD t-SNE Visualization

Figure 2: CLSS embedding maps of ECOD domains (Dataset 1). For each domain, we calculate the embeddings by three modalities – structure, sequence, and a random sequence segment – and then compute a t-SNE projection of the embeddings. Each point represents one of the modalities of a domain colored according to the label of its ECOD architecture. (A) An overlay of all three modalities. Sequences are marked by circles, structures by ‘+’, and random sequence segments by ‘x’. (B) Structure embeddings. (C) sequence segment embeddings. (D) Sequence embeddings. We find that the maps of all three modalities are very similar to each other, with the sequence (D) and structure (B) embeddings being the closest. This shows that CLSS successfully injected structure information into the sequence modality. The global organization of the CLSS embedding space positions domains with the same ECOD architecture, and even the same structure class, near each other.


Quick Start

Installation

pip install clss-model

Loading the Model

Load the pretrained CLSS model from the Hugging Face Hub:

from clss import CLSSModel

# Load CLSS-sub from Hugging Face (downloads automatically)
model = CLSSModel.from_pretrained(
    repo_id="guyyanai/CLSS",       # default
    model_name="CLSS-sub.lckpt",   # default, could also use CLSS-full.lckpt
    device="cuda",                 # or "cpu"
)

# For CLSS-full
model = CLSSModel.from_pretrained(
    repo_id="guyyanai/CLSS",
    model_name="CLSS-full.lckpt",
    device="cuda",
)

To load from a local checkpoint instead:

model = CLSSModel.from_checkpoint("path/to/checkpoint.lckpt", device="cuda")

By default, only the sequence tower (ESM2-based) is loaded. To also load the structure tower (ESM3) for structure embeddings, call:

model.load_esm3()

Examples

Complete examples are available in the examples/ directory:

  • examples/training/ - Full training pipeline

    • train.py - Main training script with PyTorch Lightning
    • dataset.py - ECOD dataset loading and preprocessing
    • args.py - Command-line argument parsing
    • infra.py - Infrastructure setup (distributed training, logging)
  • examples/inference/ - Inference and embedding

    • infer.py - Protein sequence and structure embedding
    • sample-pdbs/ - Example PDB files for testing
  • examples/interactive-map/ - Interactive visualization

    • app.py - Complete pipeline from data to interactive HTML visualization
    • mapper.py - Plotly-based interactive scatter plot creation
    • dataset.py - Multi-modal data loading (FASTA/PDB)
    • embeddings.py - CLSS model inference and embedding generation
    • dim_reducer.py - t-SNE dimensionality reduction

Data

  • ECOD‑AF2 domains (training/validation set) - Available in datasets/training/
  • DEV292-F40-large-folds (Dataset 1 from paper) - Available in datasets/DEV292-F40-large-folds/
    • Contains all ECOD-DEVELOP292 F40 domains in folds with more than 50 domains
  • CATHS40-large-folds (Dataset 2 from paper) - Available in datasets/CATHS40-large-folds/
    • Contains all CATHS40 domains in folds with more than 50 domains
  • rogen-metamorphic (Dataset 3 from paper) - Available in datasets/rogen-metamorphic/
    • Contains metamorphic CATH domains from Peter Røgen's dataset of sequence-similar but topologically distinct domain pairs [Rogen et al. 2025]
  • DEV291-F40-large-folds - Available in datasets/DEV291-F40-large-folds/
    • Contains all ECOD-DEVELOP291 F40 domains in folds with more than 50 domains (used in the paper for binding exploration)

Citation

If you use this repository, please cite:

@article{Yanai2025CLSS,
  title={Contrastive learning unites sequence and structure in a global representation of protein space},
  author={Yanai, Guy and Axel, Gabriel and Longo, Liam M. and Ben-Tal, Nir and Kolodny, Rachel},
  journal={bioRxiv},
  year={2025},
  doi={10.1101/2025.09.05.674454},
  url={https://www.biorxiv.org/content/10.1101/2025.09.05.674454.full.pdf}
}

Acknowledgments & Contact

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

clss_model-0.4.1.tar.gz (20.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

clss_model-0.4.1-py3-none-any.whl (15.7 kB view details)

Uploaded Python 3

File details

Details for the file clss_model-0.4.1.tar.gz.

File metadata

  • Download URL: clss_model-0.4.1.tar.gz
  • Upload date:
  • Size: 20.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.11

File hashes

Hashes for clss_model-0.4.1.tar.gz
Algorithm Hash digest
SHA256 8f4ceed873b86fc54a107bc584fa6a424d95755f169c45edb82a1187e73c7ba0
MD5 3c6600bfb4fd5b53903f8f5399ffb0c5
BLAKE2b-256 48c3ca7f206011d73d4cfc0f868440f9c24fd5f533686cebbca9ae1254ac0128

See more details on using hashes here.

File details

Details for the file clss_model-0.4.1-py3-none-any.whl.

File metadata

  • Download URL: clss_model-0.4.1-py3-none-any.whl
  • Upload date:
  • Size: 15.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.11

File hashes

Hashes for clss_model-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 54e1678e29cab847b0f6e146ba08569a3dd46006129eaf9df9a5257204be4701
MD5 3e41a33a22bd68ec7a3995d12e1d777e
BLAKE2b-256 2d51b035d4f7aefc02f6616a62fd5de3f251ba20bcb3801e3e7397f0c30b8daa

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page