You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,9 +11,13 @@ The file `train_set_labels.json` maps authors to their books and pages:
11
11
```json
12
12
{
13
13
"AuthorID_1": {
14
-
"BookID_A": ["page_0001", "page_0002", ...],
15
-
"BookID_B": ["page_0101", "page_0102", ...]
14
+
"BookID_A": ["page_0001.png", "page_0002.png"],
15
+
"BookID_B": ["page_0101.png", "page_0102.png"]
16
16
},
17
-
"AuthorID_2": { ... },
18
-
...
17
+
"AuthorID_2": { },
19
18
}
19
+
20
+
```
21
+
Where the path to the documents are organized as follows: `/<root_folder>/BOOK_ID/PAGE_ID.png`.
22
+
In the intra-book tasks, authors will receive a set of queries QUERY_ID and are expected to return a similarity per PAGE_ID in the training set; where QUERY_ID and PAGE_ID are expected to be from the same book.
23
+
In book-level retrieval, authors will receive a set of query books BOOK_QUERY_ID (multi-page) and are expected to return a similarity per BOOK_ID_N in the training set; where BOOK_QUERY_ID and BOOK_ID_N are expected to be from the same author.
0 commit comments