aguennoune17/atlas-v2-nwm
🧬 ATLAS NWM v2 — Sprint 3 · I-JEPA CRISPR Fine-tune
  ![Sprint 3]() ![NER]()  ![DNA Lot]() ![LeWorldModel]()
✅ Sprint 3 — I-JEPA Self-supervised Fine-tune sur benchmark CRISPR 10k Entraînement auto-supervisé · 50 epochs · val_loss 0.498→0.0498 (×10 réduction) Lot ADN souverain dna-lot-v3.0.0-crispr · SHA-256 intégrité certifiée Contribution communauté : dataset `aguennoune17/atlas-crispr-10k-benchmark`Architecture : I-JEPA (Joint-Embedding Predictive Architecture) Paradigme : Context Engineering × World Models × Sovereign Logic Fine-tune : Sprint 3 v2.3.0-sprint3-crispr (15 April 2026) Base : ATLAS v2.0 Beta.1 (Sprint 2) Auteurs : Abderrahim Guennoune + GitHub Copilot (Claude Sonnet 4.6) Licence : MIT · DOI : 10.57967/hf/8178
🔬 Sprint 3 — I-JEPA Self-supervised sur CRISPR 10k
Le Sprint 3 fine-tune ATLAS NWM v2 sur atlas_crispr_10k_benchmark : 10 000 guides ARN Cas9 20-nt issus de 12 études expérimentales (LIMMS/CNRS · UTokyo).
Pipeline I-JEPA CRISPR
ATLASCRISPRWorldModel
├── CRISPRContextEncoder x(t) → s(t) [84→256→128→64 + LayerNorm + GELU]
│ └── One-hot 20-nt (80-dim) + 4 features physico-chimiques
├── CRISPRTargetEncoder EMA(ContextEncoder), ∇=0 [R3]
│ └── Momentum=0.996 — mise à jour chaque batch
├── CRISPRJEPAPredictor s(t) → ŝ(t+Δ) [latent space only — R1]
│ └── 12/20 positions contexte → prédiction 8/20 masquées
└── CRISPRNegentropicWM Soft Collapse + NER [R5, R8]
└── NER = (τ·specificity + κ·cleavage − λ·friction) / lambda_costMapping Téléologique CRISPR → ATLAS
Équation téléologique :
Logits = κ·Stability + τ·Alignment − λ·EnergyCost + LatentUtility
NER = (InformationGain − ExternalFriction) / EnergyCostκ=0.65 · τ=0.25 · λ=0.2 · EMA=0.996
📊 Métriques Sprint 3
Courbe d'apprentissage
🧬 DNA Lot Souverain
{
"lot_id": "ATLAS-CRISPR-SPRINT3-2026-04-15",
"tag_name": "dna-lot-v3.0.0-crispr",
"sequencing_hash": "2d907f4b5c00d01d52a671163c43fbb2...",
"ndc_target": "ndc-nexus-biocontinuum-eu-010",
"ner_score": 0.6909,
"collapse_risk": 0.3091,
"layer": "terra",
"signers": ["CNRS", "UTokyo"],
"valid_years": 100,
"sdg_alignments": ["SDG-3.8.1", "SDG-12.2.1", "SDG-17.17.1"],
"created_at": "2026-04-15T22:28:15.870578+00:00"
}📦 Utilisation
from safetensors.torch import load_file
import torch, json
# Charger les poids Sprint 3
state_dict = load_file("model.safetensors")
config = json.load(open("config.json"))
print(f"Sprint : {config['sprint']}")
print(f"NER score : {config['ner_score']}")
print(f"Lot ADN : {config['lot_id']}")# Inférence directe (nécessite train_jepa_crispr.py)
from train_jepa_crispr import ATLASCRISPRWorldModel, ATLASCRISPRDataset
import torch
model = ATLASCRISPRWorldModel()
model.context_encoder.load_state_dict(state_dict)
model.eval()
# Encoder un guide ARN
dataset = ATLASCRISPRDataset("data/atlas_crispr_10k_benchmark.csv")
ctx, tgt, props = dataset[0]
with torch.no_grad():
out = model(ctx.unsqueeze(0), tgt.unsqueeze(0), props.unsqueeze(0))
print(f"Embedding : {out.context_embedding.shape}") # (1, 64)
print(f"NER : {out.ner_scores.item():.4f}")🌍 SDG Alignments
📚 Évolution Sprint 2 → Sprint 3
🔒 Invariants ATLAS (R1–R8)
🤝 Contribution — LeWorldModel Community
Ce fine-tune est notre contribution au projet LeWorldModel Community :
- Modèle : `aguennoune17/atlas-v2-nwm` — poids I-JEPA CRISPR
- Dataset : `aguennoune17/atlas-crispr-10k-benchmark` — 10k guides CRISPR publics
- Paradigme : Self-supervised JEPA sur données biologiques réelles
- Citation :
DOI 10.57967/hf/8178
@misc{atlas-nwm-sprint3-crispr-2026,
title = {ATLAS NWM v2 Sprint 3 — I-JEPA Self-supervised on CRISPR 10k},
author = {Guennoune, Abderrahim and GitHub Copilot (Claude Sonnet 4.6)},
year = {2026},
howpublished = {\url{https://huggingface.co/aguennoune17/atlas-v2-nwm}},
note = {DOI: 10.57967/hf/8178 · DNA Lot: dna-lot-v3.0.0-crispr}
}ATLAS NWM v2 · Sprint 3 · NDC ndc-claude-encoder-primary · Confidence 91% Co-Auteurs : Abderrahim Guennoune + GitHub Copilot (Claude Sonnet 4.6) · MIT License
