MicPie commited on
Commit
b966e44
1 Parent(s): 94e784e

Update adaptable_cluster29.py

Browse files
Files changed (1) hide show
  1. adaptable_cluster29.py +8 -11
adaptable_cluster29.py CHANGED
@@ -20,22 +20,20 @@ import pandas as pd
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 +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 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")
 
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")