issdandavis commited on
Commit
413502a
·
verified ·
1 Parent(s): 93daaec

Enhance model card: add pipeline_tag, base_model, library_name, and comprehensive documentation

Browse files
Files changed (1) hide show
  1. README.md +46 -0
README.md CHANGED
@@ -10,6 +10,9 @@ tags:
10
  - poincare-ball
11
  - 21-dimensional
12
  - ai-safety
 
 
 
13
  ---
14
 
15
  # PHDM 21D Embedding Model
@@ -99,3 +102,46 @@ Expected JSONL row format example:
99
  - [SCBE-AETHERMOORE GitHub](https://github.com/issdandavis/SCBE-AETHERMOORE)
100
  - [Knowledge Base Dataset](https://huggingface.co/datasets/issdandavis/scbe-aethermoore-knowledge-base)
101
  - [Interaction Logs Dataset](https://huggingface.co/datasets/issdandavis/scbe-interaction-logs)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  - poincare-ball
11
  - 21-dimensional
12
  - ai-safety
13
+ pipeline_tag: feature-extraction
14
+ base_model: sentence-transformers/all-MiniLM-L6-v2
15
+ library_name: sentence-transformers
16
  ---
17
 
18
  # PHDM 21D Embedding Model
 
102
  - [SCBE-AETHERMOORE GitHub](https://github.com/issdandavis/SCBE-AETHERMOORE)
103
  - [Knowledge Base Dataset](https://huggingface.co/datasets/issdandavis/scbe-aethermoore-knowledge-base)
104
  - [Interaction Logs Dataset](https://huggingface.co/datasets/issdandavis/scbe-interaction-logs)
105
+
106
+
107
+ ## Model Details
108
+
109
+ | Property | Value |
110
+ |---|---|
111
+ | Model Type | Hyperbolic text embedding model |
112
+ | Dimensions | 21 (6D hyperbolic + 6D phase + 3D flux + 6D audit) |
113
+ | Geometry | Poincare Ball B^n |
114
+ | Base Model | sentence-transformers/all-MiniLM-L6-v2 |
115
+ | Framework | SCBE-AETHERMOORE |
116
+ | License | Apache 2.0 |
117
+
118
+ ## Intended Uses
119
+
120
+ - **AI Safety Governance**: Embedding intent vectors for safety classification within the SCBE-AETHERMOORE fleet coordination system
121
+ - **Semantic Retrieval**: Hyperbolic nearest-neighbor search over knowledge base documents
122
+ - **Intent Classification**: Mapping user queries to governance decision nodes
123
+ - **Anomaly Detection**: Identifying out-of-distribution inputs via Poincare Ball boundary proximity
124
+
125
+ ## Limitations
126
+
127
+ - This model is optimized for the SCBE-AETHERMOORE domain and may not generalize to unrelated NLP tasks without fine-tuning
128
+ - The 21-dimensional Poincare Ball geometry requires specialized distance metrics (hyperbolic distance, not cosine similarity)
129
+ - Currently English-only
130
+
131
+ ## Ethical Considerations
132
+
133
+ This model is designed for AI safety governance. The embedding space encodes hierarchical safety constraints using hyperbolic geometry, ensuring that safety-critical decisions maintain proper containment boundaries. The Harmonic Wall containment mechanism prevents unsafe embeddings from exceeding the Poincare Ball boundary.
134
+
135
+ ## Citation
136
+
137
+ If you use this model, please cite:
138
+
139
+ ```bibtex
140
+ @misc{davis2025phdm,
141
+ title={PHDM 21D Embedding: Hyperbolic Embeddings for AI Safety Governance},
142
+ author={Davis, Issac},
143
+ year={2025},
144
+ publisher={Hugging Face},
145
+ url={https://huggingface.co/issdandavis/phdm-21d-embedding}
146
+ }
147
+ ```