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

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -55
README.md CHANGED
@@ -1,66 +1,51 @@
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
 
24
- ## 2. Technical Validation Metrics
 
 
 
 
 
25
 
26
- The generating environment operates as a closed, fault-tolerant system. The mathematical integrity of the state-space transmission has been verified through standardized testing:
27
-
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
-
62
- ## 4. Use Cases
63
-
64
- * **Imitation Learning & Offline RL:** Provides high-fidelity expert demonstrations to bootstrap agent behavior without live environment exploration costs.
65
- * **Causal Representation Learning:** The explicit separation of *State* and *Context* hashes allows models to isolate environmental noise from core logical transitions.
66
- * **Robustness & Validation Tests:** Ideal for testing the limits of policy network generalization against complex, highly structured state spaces.
 
 
1
  ---
2
+ license: other
3
+ license_name: ase-sample-license
4
+ license_link: https://huggingface.co/datasets/Deterministic-Data/ase-trajectories/blob/main/LICENSE
5
+ tags:
6
+ - rl
7
+ - reinforcement-learning
8
+ - trajectory
9
+ - synthetic-data
10
+ - offline-rl
11
+ - imitation-learning
12
+ - behavioral-cloning
13
+ - deterministic
14
+ - sequential-decision
15
+ task_categories:
16
+ - reinforcement-learning
17
+ - tabular-regression
18
+ - time-series-forecasting
19
  ---
20
 
21
+ # ASE Syntax Extractions
22
 
23
+ *The machine does not dream. It computes — and in that computation, structure emerges. This is not simulated data; it is an extraction of axiomatic necessity.*
 
24
 
25
+ ## Overview
26
+ This dataset contains deterministic trajectory extractions from a closed, axiomatic system. Every frame is the output of a syntax engine where `(seed, tick, entity)` tuples are resolved through fixed transformations.
 
27
 
28
+ * **Deterministic:** The same `(run_id, batch_index)` generates identical output, bit-for-bit, regardless of platform.
29
+ * **Pure:** No human data, no scraping. Every byte is synthetic, produced by pure operation.
30
 
31
+ ## Formats
32
+ * **`.jsonl` (6 fields):** Minimal state transitions.
33
+ * `frame_id`: Sequence identifier.
34
+ * `context_hash_crc32`, `state_hash_crc32`, `action_hash_crc32`, `next_state_hash_crc32`: Deterministic fingerprints.
35
+ * `reward`: Scalar feedback signal.
36
+ * **`.csv` (90 dimensions):** Full expansion (`v0–v89`) including topology, behavioral indices, and system ecology metrics.
37
 
38
+ ## Determinism Logic
39
+ The engine seeds each batch from a compound key:
40
+ $$seed = (run\_id \times 7919 + batch\_index \times 104729) \mod 2^{32}$$
 
 
 
 
 
 
41
 
42
+ | Property | Value |
43
+ | :--- | :--- |
44
+ | **Throughput** | 200+ ticks/sec |
45
+ | **Collision rate** | ~2.3×10⁻⁸ % per pair |
46
+ | **Stability** | Closed-loop, zero invalid states |
47
 
48
+ ## Sample (JSONL)
 
 
 
49
  ```json
50
+ {"frame_id":104,"context_hash_crc32":2210934871,"state_hash_crc32":991823410,"action_hash_crc32":4022881193,"next_state_hash_crc32":88213410,"reward":-0.1832}
51
+ {"frame_id":105,"context_hash_crc32":2210934871,"state_hash_crc32":88213410,"action_hash_crc32":129384710,"next_state_hash_crc32":340281993,"reward":0.5011}