Deterministic-Data commited on
Commit
a2d02b4
·
verified ·
1 Parent(s): 7ce5a35

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -26
README.md CHANGED
@@ -1,24 +1,23 @@
1
- ---
2
  license: unknown
3
  ---
4
  # 🛑 COMMERCIAL LICENSE & FULL DATASET AVAILABLE
5
  The files uploaded here serve as a **25,000-frame sample (Proof of Concept)** for verification and testing.
6
 
7
- To purchase the unrestricted commercial license or order high-volume production datasets (scalable from $10^5$ to $10^7+$ deterministic frames generated on-demand), use the instant download link or contact our lab directly:
8
 
9
- * **Instant Commercial Access:** [Buy Full Dataset / Commercial License Here]([DIN_ANONYMA_STRIPE_ELLER_GUMROAD_LÄNK])
10
- * **Enterprise & Custom Volume Inquiries:** `[DIN_ANONYMA_EPOST]`
11
 
12
  ---
13
 
14
  # DATASET SPECIFICATION: 32-bit Anonymized Deterministic Trajectories for Sequential Decision Models
15
 
16
  ## 1. Overview
17
- This dataset contains high-density, **100% deterministic trajectory frames** designed for training sequential decision-making models, Reinforcement Learning (RL), and behavioral cloning. Every frame contains structural contextual states compressed into anonymous, collision-free 32-bit identifiers.
18
 
19
- * **Format:** Standardized `.jsonl` or `.parquet` (tabular format).
20
  * **Compliance:** 100% GDPR-compliant / Zero PII. All data consists of synthetic environment interactions.
21
- * **IP Isolation:** Data is fully obfuscated via one-way cryptographic 32-bit CRC hashing. Underlying simulation rules, ontologies, and environment logic are completely enclosed and non-recoverable.
22
 
23
  ---
24
 
@@ -29,37 +28,34 @@ The generating environment operates as a closed, fault-tolerant system. The math
29
  | Parameter | Status / Value | Verification Notes |
30
  | :--- | :--- | :--- |
31
  | **Determinism** | **VERIFIED** | The exact mapping of `(agent, tick)` → consistently produces identical state fingerprints. |
32
- | **Collision Rate** | **0.00%** | Guaranteed via a 32-bit state-space bit-depth execution. |
33
  | **System Stability** | **Fault-Tolerant** | Closed-loop execution ensures zero invalid states or undefined transitions. |
34
 
35
  ---
36
 
37
  ## 3. Schema & Data Frame Structure
38
 
39
- Each frame represents a single step in a continuous trajectory. While the underlying engine tracks over 90 relational and categorical fields, the exported dataset is stripped down to five core mathematical primitives to ensure optimal bandwidth and total data privacy:
40
 
 
 
41
  ```json
42
  {
43
- "frame_id": 108429,
44
- "context_hash_crc32": 3149204152,
45
- "state_hash_crc32": 4294967295,
46
- "action_hash_crc32": 1029384756,
47
- "next_state_hash_crc32": 2184903811,
48
- "reward": 1.0
49
  }
50
  ```
51
 
52
- ### Field Definitions
53
- 1. **`context_hash_crc32`:**
54
- * Compressed 32-bit integer encoding structural environment constraints, temporal tick dynamics, and agent metadata.
55
- 2. **`state_hash_crc32`:**
56
- * Compressed 32-bit integer representing the complete relational topology of the environment at the current step.
57
- 3. **`action_hash_crc32`:**
58
- * Compressed 32-bit integer representing the vector executed by the agent, mathematically bound to the system's underlying causal parameters.
59
- 4. **`next_state_hash_crc32`:**
60
- * The resulting 32-bit state topology identifier after the action execution.
61
- 5. **`reward`:**
62
- * A float or integer scalar indicating the continuous performance or objective value of the frame transition.
63
 
64
  ---
65
 
 
 
1
  license: unknown
2
  ---
3
  # 🛑 COMMERCIAL LICENSE & FULL DATASET AVAILABLE
4
  The files uploaded here serve as a **25,000-frame sample (Proof of Concept)** for verification and testing.
5
 
6
+ To purchase the unrestricted commercial license or order high-volume production datasets (scalable from $10^5$ to $10^7+$ deterministic frames generated on-demand), contact our lab directly:
7
 
8
+ * **Instant Commercial Access:** `Deterministic-Data@proton.me`
9
+ * **Enterprise & Custom Volume Inquiries:** `Deterministic-Data@proton.me`
10
 
11
  ---
12
 
13
  # DATASET SPECIFICATION: 32-bit Anonymized Deterministic Trajectories for Sequential Decision Models
14
 
15
  ## 1. Overview
16
+ This dataset contains high-density, **100% deterministic trajectory frames** designed for training sequential decision-making models, Reinforcement Learning (RL), and behavioral cloning. Every frame contains structural contextual states compressed into anonymous, low-collision 32-bit identifiers.
17
 
18
+ * **Format:** Standardized `.jsonl` (optimized 5-core-feature format) and `.csv` (full 90-feature tabular format).
19
  * **Compliance:** 100% GDPR-compliant / Zero PII. All data consists of synthetic environment interactions.
20
+ * **IP Isolation:** Data is fully obfuscated via one-way cryptographic 32-bit CRC hashing and generic sequence indexing ($v0$ to $v89$) to guarantee complete IP isolation. Underlying simulation rules, ontologies, and environment logic are completely enclosed and non-recoverable.
21
 
22
  ---
23
 
 
28
  | Parameter | Status / Value | Verification Notes |
29
  | :--- | :--- | :--- |
30
  | **Determinism** | **VERIFIED** | The exact mapping of `(agent, tick)` → consistently produces identical state fingerprints. |
31
+ | **Collision Rate** | **0.0001%** | Validated mathematical bounds for 32-bit CRC state-space distribution. |
32
  | **System Stability** | **Fault-Tolerant** | Closed-loop execution ensures zero invalid states or undefined transitions. |
33
 
34
  ---
35
 
36
  ## 3. Schema & Data Frame Structure
37
 
38
+ To offer maximum flexibility for different machine learning pipelines, the dataset is delivered in two distinct, anonymized structural formats:
39
 
40
+ ### A. High-Efficiency JSONL Layout (5 Core Primitives)
41
+ Optimized for direct policy network training and fast I/O throughput. Each line contains exactly 5 core mathematical primitives:
42
  ```json
43
  {
44
+ "frame_id": 0,
45
+ "context_hash_crc32": 3786707923,
46
+ "state_hash_crc32": 162848530,
47
+ "action_hash_crc32": 1782081112,
48
+ "next_state_hash_crc32": 1816890948,
49
+ "reward": 0.2396
50
  }
51
  ```
52
 
53
+ ### B. High-Density CSV Layout (Full 90-Feature Matrix)
54
+ Optimized for deep causal inference and structural representation learning. The table contains exactly 90 anonymized, sequential features labeled from **`v0` to `v89`**:
55
+ * **`v0`:** `frame_id` (Sequentially incrementing time-step index).
56
+ * **`v5`:** `reward` (Continuous performance scalar bound within $[-1.0, 1.0]$).
57
+ * **`v6` to `v9`:** Core state-space and transaction CRC32 hashes.
58
+ * **`v10` to `v89`:** Fully masked environmental, structural, and behavioral agent traits tracking relational topology without exposing domain semantics.
 
 
 
 
 
59
 
60
  ---
61