-
student_6d_lupi.pt (Recommended for Inference)
- Description: A lightning-fast, 6D-Vital LUPI (Learning Using Privileged Information) student model. It only requires 6 explicit biophysical features at inference time.
- Performance: 0.8458 APS (miRBench test), 0.9985 APS (miRTarBase external benchmark).
- Features Required: Duplex Energy, Flanking AU, Pum2 Motif, ARE Motif, FOX Motif, Seed Wobbles.
-
hybrid_gnn_v28.pt
- Description: The original V28 Hybrid GNN model. It fuses RNA-FM 64D per-token embeddings with 24 explicit thermodynamic rules.
-
teacher_22d_biophysics.pt
- Description: The heavy biophysics teacher model used to train the 6D student during the LUPI distillation phase. It achieved 0.8607 APS but is computationally heavier for inference.
1import torch
2
3# Load the 6D student model
4model = torch.load("student_6d_lupi.pt", map_location="cpu")
5model.eval()
6
7print("GeoTarget-RNA model successfully loaded!")
For the complete inference pipeline and feature extraction scripts, visit our GitHub repository:
https://github.com/reogine/GeoTarget-RNA