ncoop57 commited on
Commit ·
5af2ae3
1
Parent(s): 6689dd0
Update urls to data
Browse files- completeformer.py +9 -9
completeformer.py
CHANGED
|
@@ -51,19 +51,19 @@ _LICENSE = ""
|
|
| 51 |
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
| 52 |
_DATA_URLs = {
|
| 53 |
"long": {
|
| 54 |
-
"train": "https://huggingface.co/datasets/semeru/completeformer/resolve/main/long/
|
| 55 |
-
"valid": "https://huggingface.co/datasets/semeru/completeformer/resolve/main/long/
|
| 56 |
-
"test": "https://huggingface.co/datasets/semeru/completeformer/resolve/main/long/
|
| 57 |
},
|
| 58 |
"medium": {
|
| 59 |
-
"train": "https://huggingface.co/datasets/semeru/completeformer/resolve/main/medium/
|
| 60 |
-
"valid": "https://huggingface.co/datasets/semeru/completeformer/resolve/main/medium/
|
| 61 |
-
"test": "https://huggingface.co/datasets/semeru/completeformer/resolve/main/medium/
|
| 62 |
},
|
| 63 |
"short": {
|
| 64 |
-
"train": "https://huggingface.co/datasets/semeru/completeformer/resolve/main/short/
|
| 65 |
-
"valid": "https://huggingface.co/datasets/semeru/completeformer/resolve/main/short/
|
| 66 |
-
"test": "https://huggingface.co/datasets/semeru/completeformer/resolve/main/short/
|
| 67 |
},
|
| 68 |
}
|
| 69 |
|
|
|
|
| 51 |
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
| 52 |
_DATA_URLs = {
|
| 53 |
"long": {
|
| 54 |
+
"train": "https://huggingface.co/datasets/semeru/completeformer/resolve/main/long/training_long.csv",
|
| 55 |
+
"valid": "https://huggingface.co/datasets/semeru/completeformer/resolve/main/long/validation_long.csv",
|
| 56 |
+
"test": "https://huggingface.co/datasets/semeru/completeformer/resolve/main/long/test_long.csv",
|
| 57 |
},
|
| 58 |
"medium": {
|
| 59 |
+
"train": "https://huggingface.co/datasets/semeru/completeformer/resolve/main/medium/training_medium.csv",
|
| 60 |
+
"valid": "https://huggingface.co/datasets/semeru/completeformer/resolve/main/medium/validation_medium.csv",
|
| 61 |
+
"test": "https://huggingface.co/datasets/semeru/completeformer/resolve/main/medium/test_medium.csv",
|
| 62 |
},
|
| 63 |
"short": {
|
| 64 |
+
"train": "https://huggingface.co/datasets/semeru/completeformer/resolve/main/short/training_short.csv",
|
| 65 |
+
"valid": "https://huggingface.co/datasets/semeru/completeformer/resolve/main/short/validation_short.csv",
|
| 66 |
+
"test": "https://huggingface.co/datasets/semeru/completeformer/resolve/main/short/test_short.csv",
|
| 67 |
},
|
| 68 |
}
|
| 69 |
|