rmems commited on
Commit
bfecc7c
·
unverified ·
1 Parent(s): 674d13e

Remove YAML, fix loading script naming for HF dataset viewer

Browse files
.huggingface.yaml DELETED
@@ -1,80 +0,0 @@
1
- ---
2
- # Hugging Face Dataset Metadata
3
- # Repository: rmems/Metis-OLMoE-Latent-Telemetry
4
-
5
- license: gpl-3.0
6
-
7
- # Display and Discovery
8
- pretty_name: "Metis-OLMoE Latent Telemetry: Spikenaut SNN Routing"
9
- language:
10
- - en
11
- - code
12
- tags:
13
- - snn
14
- - spiking-neural-network
15
- - olmoe
16
- - mixture-of-experts
17
- - quantization
18
- - neuromorphic
19
- - telemetry
20
- - semantic-routing
21
- - latent-space
22
- - cuda
23
- - rust
24
- - gguf
25
- - saaq
26
- - attractor-clustering
27
-
28
- # Model Lineage
29
- datasets:
30
- - allenai/OLMoE-1B-7B-0125-Instruct-GGUF
31
-
32
- # Task and Size
33
- task_categories:
34
- - text-generation
35
- - feature-extraction
36
- - text-classification
37
- size_categories:
38
- - n<1K
39
-
40
- # Dataset Information
41
- dataset_info:
42
- - config_name: default
43
- features:
44
- - name: tick
45
- dtype: int64
46
- - name: best_walker
47
- dtype: int64
48
- - name: elapsed_us
49
- dtype: int64
50
- splits:
51
- - name: test
52
- num_bytes: 818486
53
- num_examples: 20000
54
-
55
- # Model Card Data
56
- model-index:
57
- - name: Metis-OLMoE-Latent-Telemetry
58
- results: []
59
-
60
- # Additional Metadata
61
- metadata:
62
- version: "1.0.0"
63
- base_model: "OLMoE-1B-7B-0125-Instruct-GGUF"
64
- base_model_source: "allenai/OLMoE-1B-7B-0125-Instruct-GGUF"
65
- architecture: "Mixture of Experts (MoE)"
66
- parameters: "1B active / 7B total"
67
- quantization: "GGUF"
68
- research_purpose: "Map physical routing of LLM embeddings via biologically-inspired neuronal fatigue mechanics"
69
- primary_discovery: "Semantic Attractor Clustering"
70
- derivation_pipeline: "corinth-canal"
71
- technique: "SAAQ (Semantic Attractor Architecture Quantization)"
72
- visualization_tool: "Surrogate_Viz.jl"
73
- hardware:
74
- gpu: "ASUS ProArt GeForce RTX 5080 (16GB VRAM)"
75
- cpu: "AMD Ryzen 9 9950X"
76
- os: "Fedora 43"
77
- workstation: "Ship of Theseus"
78
- related_repos:
79
- - https://github.com/Limen-Neural/corinth-canal
80
- - https://github.com/Spikenaut/Surrogate_Viz.jl
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
metis-ol_mo_e-latent-telemetry.py → metis_ol_moe_latent_telemetry.py RENAMED
@@ -6,7 +6,7 @@ from datasets import Dataset, Features, Value
6
  logger = datasets.logging.get_logger(__name__)
7
 
8
 
9
- class MetisOlmoeLatentTelemetry(datasets.GeneratorBasedBuilder):
10
  """Metis OLMoE Latent Telemetry dataset for SNN routing research."""
11
 
12
  VERSION = datasets.Version("1.0.0")
 
6
  logger = datasets.logging.get_logger(__name__)
7
 
8
 
9
+ class MetisOlMOELatentTelemetry(datasets.GeneratorBasedBuilder):
10
  """Metis OLMoE Latent Telemetry dataset for SNN routing research."""
11
 
12
  VERSION = datasets.Version("1.0.0")