add english to the script
Browse files- subscene.py +2 -1
subscene.py
CHANGED
|
@@ -52,9 +52,10 @@ _URLS = "https://huggingface.co/datasets/khalidalt/subscene/resolve/main/{Lang}/
|
|
| 52 |
|
| 53 |
_N_FILES_PER_SPLIT = {
|
| 54 |
'arabic': {'train':33 },
|
|
|
|
| 55 |
}
|
| 56 |
|
| 57 |
-
_LangID = ['arabic']
|
| 58 |
# TODO: Name of the dataset usually matches the script name with CamelCase instead of snake_case
|
| 59 |
|
| 60 |
class SubsceneConfig(datasets.BuilderConfig):
|
|
|
|
| 52 |
|
| 53 |
_N_FILES_PER_SPLIT = {
|
| 54 |
'arabic': {'train':33 },
|
| 55 |
+
'english': {'train': 82},
|
| 56 |
}
|
| 57 |
|
| 58 |
+
_LangID = ['arabic', 'english']
|
| 59 |
# TODO: Name of the dataset usually matches the script name with CamelCase instead of snake_case
|
| 60 |
|
| 61 |
class SubsceneConfig(datasets.BuilderConfig):
|