Datasets:

Modalities:
Text
Formats:
parquet
Size:
< 1K
ArXiv:
Libraries:
Datasets
pandas
arjunguha commited on
Commit
3b7daab
·
verified ·
1 Parent(s): f82140d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -0
README.md CHANGED
@@ -53,4 +53,18 @@ validation = ds.filter(lambda item: item['task_id'] >= 511 and item['task_id'] <
53
  train = ds.filter(lambda item: item['task_id'] >= 601 and item['task_id'] <= 974)
54
  ds = datasets.DatasetDict({ "train": train, "few_shot": few_shot, "validation": validation, "test": test })
55
  ds.push_to_hub("arjunguha/mbpp")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  ```
 
53
  train = ds.filter(lambda item: item['task_id'] >= 601 and item['task_id'] <= 974)
54
  ds = datasets.DatasetDict({ "train": train, "few_shot": few_shot, "validation": validation, "test": test })
55
  ds.push_to_hub("arjunguha/mbpp")
56
+ ```
57
+
58
+ Credit:
59
+
60
+ ```bibtex
61
+ @misc{austin2021programsynthesislargelanguage,
62
+ title={Program Synthesis with Large Language Models},
63
+ author={Jacob Austin and Augustus Odena and Maxwell Nye and Maarten Bosma and Henryk Michalewski and David Dohan and Ellen Jiang and Carrie Cai and Michael Terry and Quoc Le and Charles Sutton},
64
+ year={2021},
65
+ eprint={2108.07732},
66
+ archivePrefix={arXiv},
67
+ primaryClass={cs.PL},
68
+ url={https://arxiv.org/abs/2108.07732},
69
+ }
70
  ```