dataset build 2026-08-24 09:40
Browse files- README.md +60 -60
- manifest.json +25 -25
- test.jsonl +0 -0
- train.jsonl +2 -2
- val.jsonl +0 -0
README.md
CHANGED
|
@@ -1,60 +1,60 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
task_categories:
|
| 4 |
-
- text2text-generation
|
| 5 |
-
tags:
|
| 6 |
-
- scheduler
|
| 7 |
-
- text-to-json
|
| 8 |
-
- tagalog
|
| 9 |
-
- taglish
|
| 10 |
-
- synthetic
|
| 11 |
-
- from-scratch
|
| 12 |
-
size_categories:
|
| 13 |
-
- 100K<n<1M
|
| 14 |
-
---
|
| 15 |
-
|
| 16 |
-
# Schedula dataset
|
| 17 |
-
|
| 18 |
-
Fully synthetic, seeded, reproducible corpus for training **Schedula** - a tiny
|
| 19 |
-
from-scratch model that turns messy natural language (English / Taglish /
|
| 20 |
-
Filipino) into structured schedule JSON.
|
| 21 |
-
|
| 22 |
-
## Modes
|
| 23 |
-
| mode | input | output |
|
| 24 |
-
|---|---|---|
|
| 25 |
-
| `event_extract` | sentences, bullet dumps, decorated announcements (unicode stars/stylized headers), edit statements; embedded schedule JSON must be ignored | `{"events":[{title, category, date, start_time, duration_min, location, priority}]}` |
|
| 26 |
-
| `duplicate_detect` | CURRENT LIST json (+ optional `"time_created": "... ##ignore"` metadata) + numbered NEW ITEMS (1-8) | `{"verdicts":[{duplicate, match_id, confidence, reason}]}` |
|
| 27 |
-
|
| 28 |
-
## Conventions
|
| 29 |
-
- `<today>` anchor date resolves every relative expression ("next week tue",
|
| 30 |
-
"bukas", "sa loob ng 2 linggo").
|
| 31 |
-
- Fields suffixed ` ##ignore` are app-owned metadata: present in inputs,
|
| 32 |
-
never copied to outputs.
|
| 33 |
-
- Items under "daily reminders"-style headers are undated (`null`) by design.
|
| 34 |
-
- Category labels come from the per-example schema hint (default enum plus
|
| 35 |
-
alternate English/Tagalog sets) so the model learns hint-driven mapping.
|
| 36 |
-
- Duplicate boundaries include numbered schoolwork (`quiz #2` vs `quiz #3`
|
| 37 |
-
never match) and EN<->Filipino translation pairs (do match).
|
| 38 |
-
|
| 39 |
-
## Splits
|
| 40 |
-
{
|
| 41 |
-
"train": {
|
| 42 |
-
"duplicate_detect":
|
| 43 |
-
"event_extract":
|
| 44 |
-
},
|
| 45 |
-
"val": {
|
| 46 |
-
"duplicate_detect":
|
| 47 |
-
"event_extract":
|
| 48 |
-
},
|
| 49 |
-
"test": {
|
| 50 |
-
"duplicate_detect":
|
| 51 |
-
"event_extract":
|
| 52 |
-
}
|
| 53 |
-
}
|
| 54 |
-
|
| 55 |
-
Robustness noise (typos/filler/casing) appears only in val/test (
|
| 56 |
-
|
| 57 |
-
## Reproducibility
|
| 58 |
-
Built by `python -m schedula.data.build --config configs/default.yaml`
|
| 59 |
-
(seed 1337, created 2026-08-24). The generator lives at
|
| 60 |
-
https://github.com/maxie-12321/schedula
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- text2text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- scheduler
|
| 7 |
+
- text-to-json
|
| 8 |
+
- tagalog
|
| 9 |
+
- taglish
|
| 10 |
+
- synthetic
|
| 11 |
+
- from-scratch
|
| 12 |
+
size_categories:
|
| 13 |
+
- 100K<n<1M
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# Schedula dataset
|
| 17 |
+
|
| 18 |
+
Fully synthetic, seeded, reproducible corpus for training **Schedula** - a tiny
|
| 19 |
+
from-scratch model that turns messy natural language (English / Taglish /
|
| 20 |
+
Filipino) into structured schedule JSON.
|
| 21 |
+
|
| 22 |
+
## Modes
|
| 23 |
+
| mode | input | output |
|
| 24 |
+
|---|---|---|
|
| 25 |
+
| `event_extract` | sentences, bullet dumps, decorated announcements (unicode stars/stylized headers), edit statements; embedded schedule JSON must be ignored | `{"events":[{title, category, date, start_time, duration_min, location, priority}]}` |
|
| 26 |
+
| `duplicate_detect` | CURRENT LIST json (+ optional `"time_created": "... ##ignore"` metadata) + numbered NEW ITEMS (1-8) | `{"verdicts":[{duplicate, match_id, confidence, reason}]}` |
|
| 27 |
+
|
| 28 |
+
## Conventions
|
| 29 |
+
- `<today>` anchor date resolves every relative expression ("next week tue",
|
| 30 |
+
"bukas", "sa loob ng 2 linggo").
|
| 31 |
+
- Fields suffixed ` ##ignore` are app-owned metadata: present in inputs,
|
| 32 |
+
never copied to outputs.
|
| 33 |
+
- Items under "daily reminders"-style headers are undated (`null`) by design.
|
| 34 |
+
- Category labels come from the per-example schema hint (default enum plus
|
| 35 |
+
alternate English/Tagalog sets) so the model learns hint-driven mapping.
|
| 36 |
+
- Duplicate boundaries include numbered schoolwork (`quiz #2` vs `quiz #3`
|
| 37 |
+
never match) and EN<->Filipino translation pairs (do match).
|
| 38 |
+
|
| 39 |
+
## Splits
|
| 40 |
+
{
|
| 41 |
+
"train": {
|
| 42 |
+
"duplicate_detect": 1282,
|
| 43 |
+
"event_extract": 2718
|
| 44 |
+
},
|
| 45 |
+
"val": {
|
| 46 |
+
"duplicate_detect": 184,
|
| 47 |
+
"event_extract": 416
|
| 48 |
+
},
|
| 49 |
+
"test": {
|
| 50 |
+
"duplicate_detect": 174,
|
| 51 |
+
"event_extract": 426
|
| 52 |
+
}
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
Robustness noise (typos/filler/casing) appears only in val/test (16%).
|
| 56 |
+
|
| 57 |
+
## Reproducibility
|
| 58 |
+
Built by `python -m schedula.data.build --config configs/default.yaml`
|
| 59 |
+
(seed 1337, created 2026-08-24). The generator lives at
|
| 60 |
+
https://github.com/maxie-12321/schedula
|
manifest.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
| 1 |
-
{
|
| 2 |
-
"seed": 1337,
|
| 3 |
-
"config_data": {
|
| 4 |
-
"
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
"max_input_chars": 2400,
|
| 10 |
-
"
|
| 11 |
-
"
|
| 12 |
-
"
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
"
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
},
|
| 20 |
-
"counts": {
|
| 21 |
-
"train":
|
| 22 |
-
"val":
|
| 23 |
-
"test":
|
| 24 |
-
},
|
| 25 |
-
"created": "2026-08-24"
|
| 26 |
}
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"seed": 1337,
|
| 3 |
+
"config_data": {
|
| 4 |
+
"lang_mix": {
|
| 5 |
+
"en": 0.45,
|
| 6 |
+
"fil": 0.2,
|
| 7 |
+
"taglish": 0.35
|
| 8 |
+
},
|
| 9 |
+
"max_input_chars": 2400,
|
| 10 |
+
"mix": {
|
| 11 |
+
"duplicate_detect": 0.32,
|
| 12 |
+
"event_extract": 0.68
|
| 13 |
+
},
|
| 14 |
+
"n_test": 600,
|
| 15 |
+
"n_train": 4000,
|
| 16 |
+
"n_val": 600,
|
| 17 |
+
"out_dir": "data",
|
| 18 |
+
"robustness_frac": 0.2
|
| 19 |
+
},
|
| 20 |
+
"counts": {
|
| 21 |
+
"train": 4000,
|
| 22 |
+
"val": 600,
|
| 23 |
+
"test": 600
|
| 24 |
+
},
|
| 25 |
+
"created": "2026-08-24"
|
| 26 |
}
|
test.jsonl
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
train.jsonl
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:42f7b797beed836646b6abe9a07b61ae4d8983107aa2f17ce56c8d143003d740
|
| 3 |
+
size 4060289
|
val.jsonl
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|