Datasets:
Update adaptable_wkdu.org.py
Browse files- adaptable_wkdu.org.py +8 -12
adaptable_wkdu.org.py
CHANGED
@@ -19,23 +19,20 @@ import pandas as pd
|
|
19 |
|
20 |
import datasets
|
21 |
|
22 |
-
|
23 |
-
# TODO: Add BibTeX citation
|
24 |
_CITATION = """\
|
25 |
-
@
|
26 |
-
|
27 |
-
|
28 |
-
|
|
|
29 |
}
|
30 |
"""
|
31 |
|
32 |
-
# TODO: Update description
|
33 |
_DESCRIPTION = """\
|
34 |
-
The AdapTable dataset consists of
|
35 |
"""
|
36 |
|
37 |
-
|
38 |
-
_HOMEPAGE = ""
|
39 |
|
40 |
_LICENSE = "Apache 2.0"
|
41 |
|
@@ -45,9 +42,8 @@ logger = datasets.logging.get_logger(__name__)
|
|
45 |
|
46 |
|
47 |
class AdapTableSite(datasets.GeneratorBasedBuilder):
|
48 |
-
# TODO: Update docs:
|
49 |
"""
|
50 |
-
The AdapTable dataset consists of
|
51 |
"""
|
52 |
|
53 |
VERSION = datasets.Version("1.0.0")
|
|
|
19 |
|
20 |
import datasets
|
21 |
|
|
|
|
|
22 |
_CITATION = """\
|
23 |
+
@misc{https://ethanperez.net/adaptable,
|
24 |
+
author = {Chan, Jun Shern and Pieler, Michael and Jao, Jonathan and Scheurer, Jérémy and Perez, Ethan},
|
25 |
+
title = {Exploring Few-Shot Adaptation of Language Models with Tables},
|
26 |
+
publisher = {arXiv},
|
27 |
+
year = {2022},
|
28 |
}
|
29 |
"""
|
30 |
|
|
|
31 |
_DESCRIPTION = """\
|
32 |
+
The AdapTable dataset consists of web tables formatted as few-shot tasks for fine-tuning language models to improve their few-shot performance. For more details please see the accompanying dataset card.
|
33 |
"""
|
34 |
|
35 |
+
_HOMEPAGE = "https://ethanperez.net/adaptable"
|
|
|
36 |
|
37 |
_LICENSE = "Apache 2.0"
|
38 |
|
|
|
42 |
|
43 |
|
44 |
class AdapTableSite(datasets.GeneratorBasedBuilder):
|
|
|
45 |
"""
|
46 |
+
The AdapTable dataset consists of web tables formatted as few-shot tasks for fine-tuning language models to improve their few-shot performance. For more details please see the accompanying dataset card.
|
47 |
"""
|
48 |
|
49 |
VERSION = datasets.Version("1.0.0")
|