Datasets:
fix2
Browse files
README.md
CHANGED
@@ -9,7 +9,7 @@ license:
|
|
9 |
- apache-2.0
|
10 |
multilinguality:
|
11 |
- monolingual
|
12 |
-
pretty_name: UnpredicTable-bulbapedia
|
13 |
size_categories:
|
14 |
- 100K<n<1M
|
15 |
source_datasets: []
|
@@ -39,7 +39,7 @@ task_ids:
|
|
39 |
---
|
40 |
|
41 |
|
42 |
-
# Dataset Card for "UnpredicTable-bulbapedia
|
43 |
|
44 |
## Table of Contents
|
45 |
- [Dataset Description](#dataset-description)
|
@@ -90,7 +90,7 @@ There are several dataset versions available:
|
|
90 |
|
91 |
* UnpredicTable data subsets based on the website of origin:
|
92 |
* [UnpredicTable-baseball.fantasysports.yahoo.com](https://huggingface.co/datasets/MicPie/unpredictable_baseball.fantasysports.yahoo.com)
|
93 |
-
* [UnpredicTable-bulbapedia
|
94 |
* [UnpredicTable-cappex.com](https://huggingface.co/datasets/MicPie/unpredictable_cappex.com)
|
95 |
* [UnpredicTable-cram.com](https://huggingface.co/datasets/MicPie/unpredictable_cram.com)
|
96 |
* [UnpredicTable-dividend.com](https://huggingface.co/datasets/MicPie/unpredictable_dividend.com)
|
|
|
9 |
- apache-2.0
|
10 |
multilinguality:
|
11 |
- monolingual
|
12 |
+
pretty_name: UnpredicTable-bulbapedia-bulbagarden-net
|
13 |
size_categories:
|
14 |
- 100K<n<1M
|
15 |
source_datasets: []
|
|
|
39 |
---
|
40 |
|
41 |
|
42 |
+
# Dataset Card for "UnpredicTable-bulbapedia-bulbagarden-net" - Dataset of Few-shot Tasks from Tables
|
43 |
|
44 |
## Table of Contents
|
45 |
- [Dataset Description](#dataset-description)
|
|
|
90 |
|
91 |
* UnpredicTable data subsets based on the website of origin:
|
92 |
* [UnpredicTable-baseball.fantasysports.yahoo.com](https://huggingface.co/datasets/MicPie/unpredictable_baseball.fantasysports.yahoo.com)
|
93 |
+
* [UnpredicTable-bulbapedia-bulbagarden-net](https://huggingface.co/datasets/MicPie/unpredictable_bulbapedia-bulbagarden-net)
|
94 |
* [UnpredicTable-cappex.com](https://huggingface.co/datasets/MicPie/unpredictable_cappex.com)
|
95 |
* [UnpredicTable-cram.com](https://huggingface.co/datasets/MicPie/unpredictable_cram.com)
|
96 |
* [UnpredicTable-dividend.com](https://huggingface.co/datasets/MicPie/unpredictable_dividend.com)
|
data/{unpredictable_bulbapedia.bulbagarden.net.jsonl → unpredictable_bulbapedia-bulbagarden-net.jsonl}
RENAMED
File without changes
|
unpredictable_bulbapedia.bulbagarden.net.py → unpredictable_bulbapedia-bulbagarden-net.py
RENAMED
@@ -11,7 +11,7 @@
|
|
11 |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12 |
# See the License for the specific language governing permissions and
|
13 |
# limitations under the License.
|
14 |
-
"""This loads the UnpredicTable-bulbapedia
|
15 |
|
16 |
import json
|
17 |
import os
|
@@ -21,12 +21,7 @@ import datasets
|
|
21 |
|
22 |
|
23 |
_CITATION = """\
|
24 |
-
@misc{https://ethanperez.net/unpredictable,
|
25 |
-
author = {Chan, Jun Shern and Pieler, Michael and Jao, Jonathan and Scheurer, Jérémy and Perez, Ethan},
|
26 |
-
title = {Exploring Few-Shot Adaptation of Language Models with Tables},
|
27 |
-
publisher = {arXiv},
|
28 |
-
year = {2022},
|
29 |
-
}
|
30 |
"""
|
31 |
|
32 |
_DESCRIPTION = """\
|
@@ -37,7 +32,7 @@ _HOMEPAGE = "https://ethanperez.net/unpredictable"
|
|
37 |
|
38 |
_LICENSE = "Apache 2.0"
|
39 |
|
40 |
-
_URL = "https://huggingface.co/datasets/MicPie/unpredictable_bulbapedia
|
41 |
|
42 |
logger = datasets.logging.get_logger(__name__)
|
43 |
|
|
|
11 |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12 |
# See the License for the specific language governing permissions and
|
13 |
# limitations under the License.
|
14 |
+
"""This loads the UnpredicTable-bulbapedia-bulbagarden-net dataset."""
|
15 |
|
16 |
import json
|
17 |
import os
|
|
|
21 |
|
22 |
|
23 |
_CITATION = """\
|
24 |
+
@misc{https://ethanperez.net/unpredictable, author = {Chan, Jun Shern and Pieler, Michael and Jao, Jonathan and Scheurer, Jérémy and Perez, Ethan}, title = {Exploring Few-Shot Adaptation of Language Models with Tables}, publisher = {arXiv}, year = {2022}}
|
|
|
|
|
|
|
|
|
|
|
25 |
"""
|
26 |
|
27 |
_DESCRIPTION = """\
|
|
|
32 |
|
33 |
_LICENSE = "Apache 2.0"
|
34 |
|
35 |
+
_URL = "https://huggingface.co/datasets/MicPie/unpredictable_bulbapedia-bulbagarden-net/resolve/main/data/unpredictable_bulbapedia-bulbagarden-net.jsonl"
|
36 |
|
37 |
logger = datasets.logging.get_logger(__name__)
|
38 |
|