YatzCore's picture
Disable dataset viewer for binary artifacts
58ed04f verified
|
Raw
History Blame Contribute Delete
1.23 kB
---
license: mit
pretty_name: Aleatrix Solver Yahtzee Tablebase
viewer: false
tags:
- yahtzee
- tablebase
- game-ai
---
# Aleatrix Solver Yahtzee Tablebase
This dataset contains the generated win-probability tablebase for
[`YatzCore/aleatrix-solver`](https://github.com/YatzCore/aleatrix-solver).
The Dataset Viewer is intentionally disabled because this repository distributes
binary artifacts and independent JSON metadata files, not tabular rows.
## Files
- `tablebase.bin`: raw memory-mapped tablebase.
- `tablebase.meta.json`: tablebase format and solver metadata.
- `tablebase.sha256`: checksum for local verification.
## Metadata
```json
{
"format_version": 1,
"scoring_rules_version": 2,
"total_states": 696418304,
"byte_size": 5571346432,
"solved_layer": 13,
"generated_at_utc": "2026-06-04T11:54:04Z"
}
```
SHA-256:
```text
f98491b692420c8cd94a415b2f0bfe6daa577d14fe3656dfbbe95b41c1a7a5ca tablebase.bin
```
## Use
```powershell
python scripts/download_tablebase.py --repo-id YatzCore/aleatrix-solver-tablebase
```
Advanced users can rebuild the file locally from the C++ generator in the
GitHub repository instead of downloading this artifact.