MicPie commited on
Commit
dbc3a49
1 Parent(s): 9a046de

Update adaptable_dummies.com.py

Browse files
Files changed (1) hide show
  1. adaptable_dummies.com.py +8 -12
adaptable_dummies.com.py CHANGED
@@ -19,23 +19,20 @@ import pandas as pd
19
 
20
  import datasets
21
 
22
-
23
- # TODO: Add BibTeX citation
24
  _CITATION = """\
25
- @InProceedings{huggingface:dataset,
26
- title = {TODO: UPDATE TITLE HERE},
27
- author={TODO: BUT AUTHORS HERE},
28
- year={2020}
 
29
  }
30
  """
31
 
32
- # TODO: Update description
33
  _DESCRIPTION = """\
34
- The AdapTable dataset consists of tables that naturally occur on the web, that are 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.
35
  """
36
 
37
- # TODO: Add a link to an official homepage for the dataset here
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 tables that naturally occur on the web, that are 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.
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")