Merge branch 'main' of https://huggingface.co/yannis-papanikolaou/t5-code-generation into main
Browse files
README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# T5 for Semantic Parsing
|
| 2 |
+
|
| 3 |
+
## Model description
|
| 4 |
+
|
| 5 |
+
T5 (small and large) finetuned on CoNaLa for semantic parsing (Natural Language descriptions to Python code)
|
| 6 |
+
|
| 7 |
+
Paper: https://arxiv.org/pdf/2101.07138.pdf
|
| 8 |
+
|
| 9 |
+
Code, data and how to use: https://github.com/ypapanik/t5-for-code-generation
|
| 10 |
+
|
| 11 |
+
### Cite
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
```
|
| 15 |
+
@misc{papanikolaou2021teach,
|
| 16 |
+
title={Teach me how to Label: Labeling Functions from Natural Language with Text-to-text Transformers},
|
| 17 |
+
author={Yannis Papanikolaou},
|
| 18 |
+
year={2021},
|
| 19 |
+
eprint={2101.07138},
|
| 20 |
+
archivePrefix={arXiv},
|
| 21 |
+
primaryClass={cs.CL}
|
| 22 |
+
}
|
| 23 |
+
```
|