Changing the dataset URLs
Browse files- aes_enem_dataset.py +11 -1
aes_enem_dataset.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Copyright 2023 Andre Barbosa, Igor
|
2 |
#
|
3 |
# Licensed under the Apache License, Version 2.0 (the "License");
|
4 |
# you may not use this file except in compliance with the License.
|
@@ -46,12 +46,22 @@ _HOMEPAGE = ""
|
|
46 |
# TODO: Add the licence for the dataset here if you can find it
|
47 |
_LICENSE = ""
|
48 |
|
|
|
|
|
49 |
_URLS = {
|
50 |
"sourceAOnly": "https://huggingface.co/datasets/kamel-usp/aes_enem_dataset/resolve/main/sourceAWithGraders.tar.gz?download=true",
|
51 |
"sourceAWithGraders": "https://huggingface.co/datasets/kamel-usp/aes_enem_dataset/resolve/main/sourceAWithGraders.tar.gz?download=true",
|
52 |
"sourceB": "https://huggingface.co/datasets/kamel-usp/aes_enem_dataset/resolve/main/sourceB.tar.gz?download=true",
|
53 |
"PROPOR2024": "https://huggingface.co/datasets/kamel-usp/aes_enem_dataset/resolve/main/propor2024.tar.gz?download=true"
|
54 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
|
56 |
PROMPTS_TO_IGNORE = [
|
57 |
"brasileiros-tem-pessima-educacao-argumentativa-segundo-cientista",
|
|
|
1 |
+
# Copyright 2023 Andre Barbosa, Igor Cataneo Silveira & The HuggingFace Datasets Authors
|
2 |
#
|
3 |
# Licensed under the Apache License, Version 2.0 (the "License");
|
4 |
# you may not use this file except in compliance with the License.
|
|
|
46 |
# TODO: Add the licence for the dataset here if you can find it
|
47 |
_LICENSE = ""
|
48 |
|
49 |
+
"""
|
50 |
+
#Previous URLs
|
51 |
_URLS = {
|
52 |
"sourceAOnly": "https://huggingface.co/datasets/kamel-usp/aes_enem_dataset/resolve/main/sourceAWithGraders.tar.gz?download=true",
|
53 |
"sourceAWithGraders": "https://huggingface.co/datasets/kamel-usp/aes_enem_dataset/resolve/main/sourceAWithGraders.tar.gz?download=true",
|
54 |
"sourceB": "https://huggingface.co/datasets/kamel-usp/aes_enem_dataset/resolve/main/sourceB.tar.gz?download=true",
|
55 |
"PROPOR2024": "https://huggingface.co/datasets/kamel-usp/aes_enem_dataset/resolve/main/propor2024.tar.gz?download=true"
|
56 |
}
|
57 |
+
"""
|
58 |
+
_URLS = {
|
59 |
+
"sourceAOnly": "https://huggingface.co/datasets/kamel-usp/aes_enem_dataset/resolve/main/sourceAWithGraders.tar.gz",
|
60 |
+
"sourceAWithGraders": "https://huggingface.co/datasets/kamel-usp/aes_enem_dataset/resolve/main/sourceAWithGraders.tar.gz",
|
61 |
+
"sourceB": "https://huggingface.co/datasets/kamel-usp/aes_enem_dataset/blob/main/sourceB.tar.gz",
|
62 |
+
"PROPOR2024": "https://huggingface.co/datasets/kamel-usp/aes_enem_dataset/resolve/main/propor2024.tar.gz"
|
63 |
+
}
|
64 |
+
|
65 |
|
66 |
PROMPTS_TO_IGNORE = [
|
67 |
"brasileiros-tem-pessima-educacao-argumentativa-segundo-cientista",
|