Skip to content

Commit be508ea

Browse files
authored
Update README.md
1 parent 02e2de0 commit be508ea

1 file changed

Lines changed: 19 additions & 1 deletion

File tree

README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,19 @@
1-
An empty readme file
1+
# AnyScript — Training Data Guide
2+
3+
This guide explains how to use the provided `train_set_labels.json` metadata to prepare training inputs for both competition tracks:
4+
- **Intra-Book Track** (page retrieval)
5+
- **Extra-Book Track** (book retrieval)
6+
7+
## 📦 Metadata Format
8+
9+
The file `train_set_labels.json` maps authors to their books and pages:
10+
11+
```json
12+
{
13+
"AuthorID_1": {
14+
"BookID_A": ["page_0001", "page_0002", ...],
15+
"BookID_B": ["page_0101", "page_0102", ...]
16+
},
17+
"AuthorID_2": { ... },
18+
...
19+
}

0 commit comments

Comments
 (0)