RooseveltHonaker commited on
Commit
23451da
·
verified ·
1 Parent(s): 0429f2d

Update dataset card for first-trigger data contract

Browse files
Files changed (1) hide show
  1. README.md +13 -9
README.md CHANGED
@@ -1,18 +1,17 @@
1
  ---
2
  tags:
3
- - kalshi
4
- - trigger-strategy
5
- - numpy
6
- - analyzer-data
7
  ---
8
-
9
  # tsv1 trigger-strategy analyzer data
10
 
11
- Public Hugging Face dataset payload for the v1 GitHub Actions trigger-strategy analyzer runner.
12
 
13
- Intended layout:
14
 
15
- ```text
16
  preprocessed/<asset>/manifest.json
17
  preprocessed/<asset>/window_event_start.npy
18
  preprocessed/<asset>/window_outcome.npy
@@ -21,6 +20,11 @@ preprocessed/<asset>/event_price_1e4.npy
21
  preprocessed/<asset>/event_count_centi.npy
22
  preprocessed/<asset>/day_ord.npy
23
  preprocessed/<asset>/day_window_start.npy
 
24
  ```
25
 
26
- Only files required by the analyzer are intended to be uploaded here. The GitHub runner downloads the selected asset's raw files directly and reconstructs the local `preprocessed/<asset>/` directory.
 
 
 
 
 
1
  ---
2
  tags:
3
+ - kalshi
4
+ - trigger-strategy
5
+ - numpy
6
+ - analyzer-data
7
  ---
 
8
  # tsv1 trigger-strategy analyzer data
9
 
10
+ Public preprocessed data for trigger-strategy analysis.
11
 
12
+ Each supported asset uses this layout:
13
 
14
+ ```
15
  preprocessed/<asset>/manifest.json
16
  preprocessed/<asset>/window_event_start.npy
17
  preprocessed/<asset>/window_outcome.npy
 
20
  preprocessed/<asset>/event_count_centi.npy
21
  preprocessed/<asset>/day_ord.npy
22
  preprocessed/<asset>/day_window_start.npy
23
+ preprocessed/<asset>/first_trigger.npy
24
  ```
25
 
26
+ `manifest.json` records the asset, included days, window and event counts, the SHA-256 hash of each NumPy file, the first-trigger schema version, and the explicit buy-price axis.
27
+
28
+ For schema version 1, `first_trigger.npy` has type `uint32` and shape `[139, windows]`. Each value is the offset of the first event in that window whose price is at least the applicable buy price. `UINT32_MAX` means that the window is empty or has no matching event.
29
+
30
+ Consumers must pin an immutable dataset revision and verify every file against the manifest before use.