Datasets:
Update adaptable_cluster28.py
Browse files- adaptable_cluster28.py +8 -11
adaptable_cluster28.py
CHANGED
@@ -20,22 +20,20 @@ import pandas as pd
|
|
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 +43,8 @@ logger = datasets.logging.get_logger(__name__)
|
|
45 |
|
46 |
|
47 |
class AdapTableCluster(datasets.GeneratorBasedBuilder):
|
48 |
-
# TODO: Update docs:
|
49 |
"""
|
50 |
-
The AdapTable dataset consists of
|
51 |
"""
|
52 |
|
53 |
VERSION = datasets.Version("1.0.0")
|
|
|
20 |
import datasets
|
21 |
|
22 |
|
|
|
23 |
_CITATION = """\
|
24 |
+
@misc{https://ethanperez.net/adaptable,
|
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 = """\
|
33 |
+
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.
|
34 |
"""
|
35 |
|
36 |
+
_HOMEPAGE = "https://ethanperez.net/adaptable"
|
|
|
37 |
|
38 |
_LICENSE = "Apache 2.0"
|
39 |
|
|
|
43 |
|
44 |
|
45 |
class AdapTableCluster(datasets.GeneratorBasedBuilder):
|
|
|
46 |
"""
|
47 |
+
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.
|
48 |
"""
|
49 |
|
50 |
VERSION = datasets.Version("1.0.0")
|