jkdkr2439 commited on
Commit
8d914e7
·
verified ·
1 Parent(s): 9700326

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +86 -23
README.md CHANGED
@@ -1,27 +1,90 @@
1
  ---
2
  dataset_info:
3
  features:
4
- - name: id
5
- dtype: string
6
- - name: type
7
- dtype: string
8
- - name: name_nodes
9
- dtype: string
10
- - name: mean_nodes
11
- dtype: string
12
- - name: frame_nodes
13
- dtype: string
14
- - name: raw_content
15
- dtype: string
16
- splits:
17
- - name: train
18
- num_bytes: 16070511
19
- num_examples: 33227
20
- download_size: 6776171
21
- dataset_size: 16070511
22
- configs:
23
- - config_name: default
24
- data_files:
25
- - split: train
26
- path: data/train-*
 
27
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  dataset_info:
3
  features:
4
+ - name: id
5
+ dtype: string
6
+ - name: type
7
+ dtype: string
8
+ - name: name_nodes
9
+ dtype: string
10
+ - name: mean_nodes
11
+ dtype: string
12
+ - name: frame_nodes
13
+ dtype: string
14
+ - name: raw_content
15
+ dtype: string
16
+ num_rows: 33227
17
+ license: agpl-3.0
18
+ language:
19
+ - en
20
+ - vi
21
+ tags:
22
+ - knowledge-graph
23
+ - ontology
24
+ - cognitive-architecture
25
+ - NMF
26
+ size_categories:
27
+ - 10K<n<100K
28
  ---
29
+
30
+ # Three-Reality Field Dataset
31
+
32
+ 33,227 grounded knowledge nodes organized into a spatial model of three reality layers.
33
+
34
+ **Author**: Kevin T.N.
35
+
36
+ ## Structure
37
+
38
+ Every node follows the NMF (Name-Meaning-Frame) schema:
39
+ - **id** — unique hash
40
+ - **type** — node category (existence, filter_gate, framework_layer, principle, discovery, topic, paper, text, code, ...)
41
+ - **name_nodes** — JSON array of Name node IDs (what it is called)
42
+ - **mean_nodes** — JSON array of Meaning node IDs (what it contains/connects to)
43
+ - **frame_nodes** — JSON array of Frame node IDs (where it lives/what context)
44
+ - **raw_content** — human-readable content
45
+
46
+ ## Three Realities
47
+
48
+ The dataset models knowledge in three layers:
49
+ - **R1 Subjective** — personal memory, unconscious patterns, layered center-to-surface
50
+ - **R2 Intersubjective** — shared consensus, social knowledge (structural, not yet populated)
51
+ - **R3 Absolute Objective** — what exists regardless of observers (the void outside)
52
+
53
+ ## Node Types
54
+
55
+ | Type | Count | Description |
56
+ |---|---|---|
57
+ | doc_chunk | 21,560 | Content chunks from documents |
58
+ | base_chunk_name | 9,002 | Chunk identifiers |
59
+ | base_name | 1,098 | Entity names |
60
+ | keyword | 498 | Extracted keywords |
61
+ | paper | 391 | PDF/TeX papers |
62
+ | text | 193 | Text files |
63
+ | topic | 191 | Knowledge clusters |
64
+ | document | 84 | DOCX/MD documents |
65
+ | code | 80 | Python/JS code |
66
+ | principle | 35 | General rules |
67
+ | discovery | 20 | Insights |
68
+ | design_spec | 18 | Architecture specs |
69
+ | framework_layer | 6 | NMF, K/U, Collapse, IPOD, GAP, Superpose |
70
+ | filter_gate | 5 | Binary, Gradient, Sequence, Relation, Recursion |
71
+ | pyramid_vertex | 4 | Meta-methods: LMF, SDC(D/H)V, RT/OT, R1/R2/R3 |
72
+ | existence | 1 | Root substrate (also = Gap) |
73
+
74
+ ## Grounding
75
+
76
+ Every node is grounded to at least one of 5 primordial filter gates via its frame_nodes. Nodes closer to the center (existence) are more general. Nodes on the surface are more specific.
77
+
78
+ ## Usage
79
+
80
+
81
+
82
+ ## Related
83
+
84
+ - [ThreeRealityField](https://github.com/jkdkr2439/ThreeRealityField) — 3D visualization + build tools
85
+ - [ANC](https://github.com/jkdkr2439/ANC) — Anchor-Node Codec encoding pipeline
86
+ - [QuadFusion](https://github.com/jkdkr2439/QuadFusion) — S/M/Q/R architecture experiment
87
+
88
+ ## License
89
+
90
+ AGPL-3.0