Add pipeline tag and improve documentation

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +33 -4
README.md CHANGED
@@ -1,4 +1,7 @@
1
  ---
 
 
 
2
  tags:
3
  - arxiv:2601.09173
4
  - geometric-stability
@@ -9,13 +12,17 @@ tags:
9
  - steering
10
  - interpretability
11
  - computational-biology
12
- license: mit
13
- library_name: shesha-geometry
14
  ---
15
 
16
  # Shesha: Geometric Stability Metric
17
 
18
- This is the official Hugging Face hub for the **Shesha** geometric stability metric, as presented in the paper *Geometric Stability: The Missing Axis of Representations* (arXiv:2601.09173).
 
 
 
 
 
 
19
 
20
  ## πŸš€ Quick Links
21
  * **πŸ“„ Paper:** [arXiv:2601.09173](https://arxiv.org/abs/2601.09173)
@@ -25,4 +32,26 @@ This is the official Hugging Face hub for the **Shesha** geometric stability met
25
  ## πŸ“¦ Installation
26
 
27
  ```bash
28
- pip install shesha-geometry
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ library_name: shesha-geometry
3
+ license: mit
4
+ pipeline_tag: other
5
  tags:
6
  - arxiv:2601.09173
7
  - geometric-stability
 
12
  - steering
13
  - interpretability
14
  - computational-biology
 
 
15
  ---
16
 
17
  # Shesha: Geometric Stability Metric
18
 
19
+ This is the official Hugging Face hub for the **Shesha** geometric stability metric, as presented in the paper [Geometric Stability: The Missing Axis of Representations](https://huggingface.co/papers/2601.09173).
20
+
21
+ ## Overview
22
+
23
+ Analysis of learned representations typically focuses on *similarity*, measuring how closely embeddings align with external references. However, similarity reveals only what is represented, not whether that structure is robust.
24
+
25
+ **Shesha** is a framework for measuring **geometric stability**, a distinct dimension that quantifies how reliably representational geometry holds under perturbation. Across 2,463 configurations in seven domains, research shows that stability and similarity are empirically uncorrelated ($\rho \approx 0.01$). This distinction makes Shesha a necessary complement to similarity for auditing representations across biological and computational systems.
26
 
27
  ## πŸš€ Quick Links
28
  * **πŸ“„ Paper:** [arXiv:2601.09173](https://arxiv.org/abs/2601.09173)
 
32
  ## πŸ“¦ Installation
33
 
34
  ```bash
35
+ pip install shesha-geometry
36
+ ```
37
+
38
+ ## Key Applications
39
+
40
+ Geometric stability provides actionable insights across multiple domains:
41
+ - **Safety Monitoring:** Acts as a functional geometric canary to detect structural drift nearly 2$\times$ more sensitively than CKA.
42
+ - **Controllability:** Supervised stability predicts linear steerability with high correlation ($\rho = 0.89$-$0.96$).
43
+ - **Model Selection:** Dissociates from transferability, revealing the "geometric tax" that transfer optimization incurs.
44
+ - **Scientific Analysis:** Predicts CRISPR perturbation coherence and neural-behavioral coupling.
45
+
46
+ ## Citation
47
+
48
+ If you use Shesha or geometric stability in your research, please cite:
49
+
50
+ ```bibtex
51
+ @article{raju2026geometric,
52
+ title={Geometric Stability: The Missing Axis of Representations},
53
+ author={Raju, Prashant C.},
54
+ journal={arXiv preprint arXiv:2601.09173},
55
+ year={2026}
56
+ }
57
+ ```