Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -24,25 +24,25 @@ vie
|
|
| 24 |
## Supported Tasks
|
| 25 |
|
| 26 |
Question Answering
|
| 27 |
-
|
| 28 |
## Dataset Usage
|
| 29 |
### Using `datasets` library
|
| 30 |
```
|
| 31 |
-
|
| 32 |
-
|
| 33 |
```
|
| 34 |
### Using `seacrowd` library
|
| 35 |
```import seacrowd as sc
|
| 36 |
# Load the dataset using the default config
|
| 37 |
-
|
| 38 |
# Check all available subsets (config names) of the dataset
|
| 39 |
-
|
| 40 |
# Load the dataset using a specific config
|
| 41 |
-
|
| 42 |
```
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
|
| 47 |
## Dataset Homepage
|
| 48 |
|
|
@@ -58,19 +58,19 @@ Other License (others) |
|
|
| 58 |
The user of VlogQA developed by the NLP@UIT research group must respect the following
|
| 59 |
terms and conditions:
|
| 60 |
1. The dataset is only used for non-profit research for natural language processing and
|
| 61 |
-
|
| 62 |
2. The dataset is not allowed to be used in commercial systems.
|
| 63 |
3. Do not redistribute the dataset. This dataset may be modified or improved to serve a
|
| 64 |
-
|
| 65 |
4. Summaries, analyses, and interpretations of the properties of the dataset may be
|
| 66 |
-
|
| 67 |
-
|
| 68 |
5. Published research works that use the dataset must cite the following paper:
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
|
| 75 |
|
| 76 |
## Citation
|
|
|
|
| 24 |
## Supported Tasks
|
| 25 |
|
| 26 |
Question Answering
|
| 27 |
+
|
| 28 |
## Dataset Usage
|
| 29 |
### Using `datasets` library
|
| 30 |
```
|
| 31 |
+
from datasets import load_dataset
|
| 32 |
+
dset = datasets.load_dataset("SEACrowd/vlogqa", trust_remote_code=True)
|
| 33 |
```
|
| 34 |
### Using `seacrowd` library
|
| 35 |
```import seacrowd as sc
|
| 36 |
# Load the dataset using the default config
|
| 37 |
+
dset = sc.load_dataset("vlogqa", schema="seacrowd")
|
| 38 |
# Check all available subsets (config names) of the dataset
|
| 39 |
+
print(sc.available_config_names("vlogqa"))
|
| 40 |
# Load the dataset using a specific config
|
| 41 |
+
dset = sc.load_dataset_by_config_name(config_name="<config_name>")
|
| 42 |
```
|
| 43 |
+
|
| 44 |
+
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).
|
| 45 |
+
|
| 46 |
|
| 47 |
## Dataset Homepage
|
| 48 |
|
|
|
|
| 58 |
The user of VlogQA developed by the NLP@UIT research group must respect the following
|
| 59 |
terms and conditions:
|
| 60 |
1. The dataset is only used for non-profit research for natural language processing and
|
| 61 |
+
education.
|
| 62 |
2. The dataset is not allowed to be used in commercial systems.
|
| 63 |
3. Do not redistribute the dataset. This dataset may be modified or improved to serve a
|
| 64 |
+
research purpose better, but the edited dataset may not be distributed.
|
| 65 |
4. Summaries, analyses, and interpretations of the properties of the dataset may be
|
| 66 |
+
derived and published, provided it is not possible to reconstruct the information from
|
| 67 |
+
these summaries.
|
| 68 |
5. Published research works that use the dataset must cite the following paper:
|
| 69 |
+
Thinh Ngo, Khoa Dang, Son Luu, Kiet Nguyen, and Ngan Nguyen. 2024. VlogQA: Task,
|
| 70 |
+
Dataset, and Baseline Models for Vietnamese Spoken-Based Machine Reading Comprehension.
|
| 71 |
+
In Proceedings of the 18th Conference of the European Chapter of the Association for
|
| 72 |
+
Computational Linguistics (Volume 1: Long Papers), pages 1310–1324, St. Julian’s,
|
| 73 |
+
Malta. Association for Computational Linguistics.
|
| 74 |
|
| 75 |
|
| 76 |
## Citation
|