Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -27,25 +27,25 @@ vie
|
|
| 27 |
## Supported Tasks
|
| 28 |
|
| 29 |
Question Answering
|
| 30 |
-
|
| 31 |
## Dataset Usage
|
| 32 |
### Using `datasets` library
|
| 33 |
```
|
| 34 |
-
|
| 35 |
-
|
| 36 |
```
|
| 37 |
### Using `seacrowd` library
|
| 38 |
```import seacrowd as sc
|
| 39 |
# Load the dataset using the default config
|
| 40 |
-
|
| 41 |
# Check all available subsets (config names) of the dataset
|
| 42 |
-
|
| 43 |
# Load the dataset using a specific config
|
| 44 |
-
|
| 45 |
```
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
|
| 50 |
## Dataset Homepage
|
| 51 |
|
|
@@ -57,9 +57,9 @@ Source: 1.0.0. SEACrowd: 2024.06.20.
|
|
| 57 |
|
| 58 |
## Dataset License
|
| 59 |
|
| 60 |
-
Other License (others) |
|
| 61 |
-
|
| 62 |
-
|
| 63 |
|
| 64 |
|
| 65 |
## Citation
|
|
|
|
| 27 |
## Supported Tasks
|
| 28 |
|
| 29 |
Question Answering
|
| 30 |
+
|
| 31 |
## Dataset Usage
|
| 32 |
### Using `datasets` library
|
| 33 |
```
|
| 34 |
+
from datasets import load_dataset
|
| 35 |
+
dset = datasets.load_dataset("SEACrowd/vimqa", trust_remote_code=True)
|
| 36 |
```
|
| 37 |
### Using `seacrowd` library
|
| 38 |
```import seacrowd as sc
|
| 39 |
# Load the dataset using the default config
|
| 40 |
+
dset = sc.load_dataset("vimqa", schema="seacrowd")
|
| 41 |
# Check all available subsets (config names) of the dataset
|
| 42 |
+
print(sc.available_config_names("vimqa"))
|
| 43 |
# Load the dataset using a specific config
|
| 44 |
+
dset = sc.load_dataset_by_config_name(config_name="<config_name>")
|
| 45 |
```
|
| 46 |
+
|
| 47 |
+
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).
|
| 48 |
+
|
| 49 |
|
| 50 |
## Dataset Homepage
|
| 51 |
|
|
|
|
| 57 |
|
| 58 |
## Dataset License
|
| 59 |
|
| 60 |
+
Other License (others) |The licence terms for VimQA follows this EULA docs on their repo.
|
| 61 |
+
Please refer to the following doc of EULA (to review the permissions and request for access)
|
| 62 |
+
VIMQA EULA -- https://github.com/vimqa/vimqa/blob/main/VIMQA_EULA.pdf
|
| 63 |
|
| 64 |
|
| 65 |
## Citation
|