Skip to content

Commit e4de2e5

Browse files
authored
Update README.md
1 parent be508ea commit e4de2e5

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,13 @@ The file `train_set_labels.json` maps authors to their books and pages:
1111
```json
1212
{
1313
"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"]
1616
},
17-
"AuthorID_2": { ... },
18-
...
17+
"AuthorID_2": { },
1918
}
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

Comments
 (0)