We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02e2de0 commit be508eaCopy full SHA for be508ea
1 file changed
README.md
@@ -1 +1,19 @@
1
-An empty readme file
+# 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