Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -15,8 +15,8 @@ pretty_name: Clir Matrix
|
|
15 |
|
16 |
A massively large collection of bilingual and multilingual datasets for Cross-Lingual Information Retrieval extracted automatically from Wikipedia.
|
17 |
CLIRMatrix (Cross-Lingual Information Retrieval Matrix) comprises:
|
18 |
-
|
19 |
-
|
20 |
|
21 |
Only (1) BI-139 has languages covered in SEACROWD.
|
22 |
|
@@ -28,25 +28,25 @@ tgl, ilo, min, jav, sun, ceb, vie, tha
|
|
28 |
## Supported Tasks
|
29 |
|
30 |
|
31 |
-
|
32 |
## Dataset Usage
|
33 |
### Using `datasets` library
|
34 |
```
|
35 |
-
|
36 |
-
|
37 |
```
|
38 |
### Using `seacrowd` library
|
39 |
```import seacrowd as sc
|
40 |
# Load the dataset using the default config
|
41 |
-
|
42 |
# Check all available subsets (config names) of the dataset
|
43 |
-
|
44 |
# Load the dataset using a specific config
|
45 |
-
|
46 |
```
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
|
51 |
## Dataset Homepage
|
52 |
|
|
|
15 |
|
16 |
A massively large collection of bilingual and multilingual datasets for Cross-Lingual Information Retrieval extracted automatically from Wikipedia.
|
17 |
CLIRMatrix (Cross-Lingual Information Retrieval Matrix) comprises:
|
18 |
+
(1) BI-139, a bilingual dataset of queries in one language matched with relevant documents in another language for 139x138=19,182 language pairs, and
|
19 |
+
(2) MULTI-8, a multilingual dataset of queries and documents jointly aligned in 8 different languages.
|
20 |
|
21 |
Only (1) BI-139 has languages covered in SEACROWD.
|
22 |
|
|
|
28 |
## Supported Tasks
|
29 |
|
30 |
|
31 |
+
|
32 |
## Dataset Usage
|
33 |
### Using `datasets` library
|
34 |
```
|
35 |
+
from datasets import load_dataset
|
36 |
+
dset = datasets.load_dataset("SEACrowd/clir_matrix", trust_remote_code=True)
|
37 |
```
|
38 |
### Using `seacrowd` library
|
39 |
```import seacrowd as sc
|
40 |
# Load the dataset using the default config
|
41 |
+
dset = sc.load_dataset("clir_matrix", schema="seacrowd")
|
42 |
# Check all available subsets (config names) of the dataset
|
43 |
+
print(sc.available_config_names("clir_matrix"))
|
44 |
# Load the dataset using a specific config
|
45 |
+
dset = sc.load_dataset_by_config_name(config_name="<config_name>")
|
46 |
```
|
47 |
+
|
48 |
+
More details on how to load the `seacrowd` library can be found [here](https://github.com/SEACrowd/seacrowd-datahub?tab=readme-ov-file#how-to-use).
|
49 |
+
|
50 |
|
51 |
## Dataset Homepage
|
52 |
|