--- license: cc-by-4.0 language: - en tags: - date-arithmetic - temporal-reasoning - business-days - timezones - iso-week - adaption-autoscientist size_categories: - 10K` tag. This is a deliberate cost. A terser format would score identically on exact match and be worth less, and this project has twice trained a model that became terser than its base and then lost win rate on tasks it was never trained on, because terseness generalizes out of the shard that taught it. Showing the work is also what makes a wrong answer diagnosable rather than merely wrong. ## What the prompt promises Every convention needed to compute the answer is stated in the prompt: the anchor date in ISO 8601 with its weekday named, the counting rule, the rolling rule, IANA zone names wherever a timezone appears, and the full schedule rule for recurring events. **One disclosed exception.** In 90% of rows the holiday calendar is named by statute rather than enumerated, because knowing the US federal calendar is part of the behaviour being trained. The other 10% print the calendar in full, and a dedicated **200-row enumerated** held-out slice exists so the headline claim can be rechecked with the calendar fully disclosed. That slice is the answer to "is it computing, or does it just know the holidays?" ## Held-out slices Disjoint from training on id, prompt and scenario: | slice | rows | what it isolates | |---|---|---| | headline | **500-row held-out** set | the competition's own yardstick | | hard | **300-row hard** shard, 60 per family | the hardest case in every family | | enumerated | **200-row enumerated** slice | calendar printed in full, no statute knowledge needed | | range | **150-row range** slice, 2031 to 2035 | dates beyond the training window | The range slice matters: it tests dates outside the period the training corpus covers, so a model cannot pass it by having seen nearby years. ## Verification - **29 of 29 integrity checks** pass on the corpus, and 24 of 24 on the enumerated slice, which has no F3 or F5 rows by design. - **0 dual-solver disagreements** across 60,000 rows. - **0 decontamination overlaps.** - **21 file pairs proven disjoint** on id, prompt and scenario. - 51 distinct template ids, so phrasing is not a single mould. ## Token budget, measured Measured with the real gemma-3-4b-it tokenizer rather than assumed: | | tokens | |---|---| | prompt p50 / p99 / max | 331 / 613 / 766 | | completion p50 / p99 / max | 182 / 456 / 521 | | total p50 / p90 / p99 / max | 532 / 701 / 833 / 960 | Training uses `max_len` 1024 and **0 of 60,000 rows exceed the budget**. A 768 window would truncate roughly the top decile, and a truncated completion loses its `` tag entirely, so the row would teach nothing under completion-only masking. ## Adaptive Data An enhancement pass was run and **refused**. The returned rows rewrote values the labels depend on, including dates inside the question, so merging them would have produced confidently wrong gold answers. The pass was aborted and the decision is documented in `docs/adaption/chrono_enhancement_verdict.md` rather than quietly dropped. Instruction sentences remain the only surface any enhancement is permitted to touch, because a rewritten instruction cannot corrupt a computed answer while a rewritten date can. ## Try it, and everything that backs it **Live side by side demo:** https://huggingface.co/spaces/Jainamshahhh/chronocalc-demo Enter your own input and watch the base model and ChronoCalc-4B answer it under identical greedy decoding. The GPU backend scales to zero, so a cold first request takes about a minute. | | Hugging Face | Kaggle | |---|---|---| | model | https://huggingface.co/Jainamshahhh/chronocalc-4b | https://www.kaggle.com/datasets/jainamshahhh/chronocalc-4b | | dataset | https://huggingface.co/datasets/Jainamshahhh/chronocalc | https://www.kaggle.com/datasets/jainamshahhh/chronocalc-date-time-arithmetic | Released on both platforms, with the scorer, every eval slice, the per row verdicts and `significance.py` alongside, so every number on this page can be recomputed rather than trusted. ## Limitations US federal holiday calendar, Gregorian dates, IANA timezone database. Not other national calendars, not historical calendar reforms, not leap seconds. Dates range across the training window with a dedicated out-of-range slice for 2031 to 2035.