Add dataset documentation
Browse files
README.md
CHANGED
|
@@ -1,39 +1,74 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
- name: techniques
|
| 17 |
-
dtype: float64
|
| 18 |
-
- name: provenance
|
| 19 |
-
dtype: float64
|
| 20 |
-
- name: intervention_map
|
| 21 |
-
dtype: float64
|
| 22 |
-
- name: contribution_metadata
|
| 23 |
-
dtype: float64
|
| 24 |
-
- name: access_level
|
| 25 |
-
dtype: float64
|
| 26 |
-
- name: quality_score
|
| 27 |
-
dtype: float64
|
| 28 |
-
splits:
|
| 29 |
-
- name: train
|
| 30 |
-
num_bytes: 0
|
| 31 |
-
num_examples: 0
|
| 32 |
-
download_size: 3148
|
| 33 |
-
dataset_size: 0
|
| 34 |
-
configs:
|
| 35 |
-
- config_name: default
|
| 36 |
-
data_files:
|
| 37 |
-
- split: train
|
| 38 |
-
path: data/train-*
|
| 39 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: ModelAtlas Community Analyses
|
| 3 |
+
emoji: 🗺️
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: purple
|
| 6 |
+
sdk: datasets
|
| 7 |
+
app_file: README.md
|
| 8 |
+
pinned: false
|
| 9 |
+
license: cc-by-4.0
|
| 10 |
+
tags:
|
| 11 |
+
- model-analysis
|
| 12 |
+
- architecture
|
| 13 |
+
- transformers
|
| 14 |
+
- community
|
| 15 |
+
- abliteration
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
---
|
| 17 |
+
|
| 18 |
+
# ModelAtlas Community Dataset
|
| 19 |
+
|
| 20 |
+
Community-contributed model architecture analyses from the ModelAtlas project.
|
| 21 |
+
|
| 22 |
+
## Dataset Description
|
| 23 |
+
|
| 24 |
+
This dataset contains detailed architectural analyses of transformer models, contributed by the ModelAtlas research community. Each record provides deep insights into model structure, techniques, and intervention points for research purposes.
|
| 25 |
+
|
| 26 |
+
## Access Levels
|
| 27 |
+
|
| 28 |
+
- **Public**: Basic architectural data
|
| 29 |
+
- **Contributor**: Intervention mapping (requires contribution history)
|
| 30 |
+
- **Heretic**: Advanced ablation techniques (requires community approval)
|
| 31 |
+
|
| 32 |
+
## Data Schema
|
| 33 |
+
|
| 34 |
+
```json
|
| 35 |
+
{
|
| 36 |
+
"model_id": "organization/model-name",
|
| 37 |
+
"schema_version": 3,
|
| 38 |
+
"config": {"hidden_size": 4096, "num_layers": 36},
|
| 39 |
+
"techniques": {"positional_encoding": "rope"},
|
| 40 |
+
"provenance": {"organization": "org", "license": "apache-2.0"},
|
| 41 |
+
"intervention_map": {"access_controlled": true},
|
| 42 |
+
"quality_score": 0.95
|
| 43 |
+
}
|
| 44 |
+
```
|
| 45 |
+
|
| 46 |
+
## Usage
|
| 47 |
+
|
| 48 |
+
```python
|
| 49 |
+
from datasets import load_dataset
|
| 50 |
+
|
| 51 |
+
# Load public data
|
| 52 |
+
dataset = load_dataset("RadicalNotionAI/modelatlas-community")
|
| 53 |
+
|
| 54 |
+
# Access level filtering handled by ModelAtlas access control system
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
## Contributing
|
| 58 |
+
|
| 59 |
+
Contribute analyses through the ModelAtlas CLI:
|
| 60 |
+
|
| 61 |
+
```bash
|
| 62 |
+
python atlas.py contribute --setup
|
| 63 |
+
python atlas.py contribute --submit
|
| 64 |
+
```
|
| 65 |
+
|
| 66 |
+
## Community
|
| 67 |
+
|
| 68 |
+
- **Dashboard**: https://huggingface.co/spaces/RadicalNotionAI/modelatlas-dashboard
|
| 69 |
+
- **Documentation**: [ModelAtlas GitHub](https://github.com/your-org/ModelAtlas)
|
| 70 |
+
- **Access Requests**: Through the community dashboard
|
| 71 |
+
|
| 72 |
+
---
|
| 73 |
+
|
| 74 |
+
*Built with ModelAtlas - Architectural Intelligence for AI Research*
|