DeepChrInteract Model Overview
Switch language: DeepChrInteract 模型总览
This page serves as the navigation hub for the model system rather than trying to explain every architecture in a single long document. The project spans classical convolutional baselines, recurrent sequence models, attention-based architectures, state-space style encoders, DNA foundation models, and self-supervised pretraining.
Model family map
Classical convolutional encoders: CNN Models
Residual convolutional branch: ResNet Models
Recurrent encoders: BiLSTM Model, mLSTM Model
Attention family: Transformer Model, Linear Transformer Model, iTransformer Model
Linear-time and state-space style models: Mamba Model, RWKV Model
Hybrid architectures: Hybrid Models
Foundation-model and self-supervised routes: DNA Foundation Models, MAE Pretraining Model
Pairwise representation layer: Fusion Strategies
Registry snapshot
M1: CNN single-branch Simplest local motif baseline. Detail page: CNN ModelsM2: CNN dual-branch Separate enhancer/promoter encoding. Detail page: CNN ModelsM3: k-mer + CNN Token embedding plus convolution. Detail page: CNN ModelsResNet18 / ResNet34Deeper residual convolution route. Detail page: ResNet ModelsM4: BiLSTM Bidirectional sequential dependency modeling. Detail page: BiLSTM ModelM5: mLSTM Matrix-memory recurrent modeling. Detail page: mLSTM ModelM6: Transformer Global attention after CNN compression. Detail page: Transformer ModelM7: Linear Transformer Kernelized linear attention. Detail page: Linear Transformer ModelM8: iTransformer Channel-wise attention reinterpretation. Detail page: iTransformer ModelM9: Mamba Selective state-space sequence modeling. Detail page: Mamba ModelM10: RWKV Linear-recurrence time mixing. Detail page: RWKV ModelM11: CNN + BiLSTM Local detector plus recurrent context. Detail page: Hybrid ModelsM12: CNN + Transformer Local detector plus global attention. Detail page: Hybrid ModelsM13: DNA LLM encoder External pretrained genomic representations. Detail page: DNA Foundation ModelsM14: MAE-pretrained Transformer Self-supervised pretraining on project data. Detail page: MAE Pretraining Model
Design logic
The project is intentionally broad. It is meant to expose a continuum of sequence modeling assumptions:
local pattern extraction through CNNs;
deeper residual convolution as the natural extension of the CNN family;
ordered dependency modeling through recurrent cells;
global interaction modeling through attention;
long-context efficiency through linear-time or state-space style models;
transfer learning through pretrained genomic foundation models;
task-adapted representation learning through MAE-style pretraining.
This organization makes it easier to compare not only raw performance, but also inductive bias, runtime behavior, memory tradeoffs, and data efficiency.