Instructions to use Salesforce/codet5-base-codexglue-sum-javascript with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Salesforce/codet5-base-codexglue-sum-javascript with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("Salesforce/codet5-base-codexglue-sum-javascript") model = AutoModelForSeq2SeqLM.from_pretrained("Salesforce/codet5-base-codexglue-sum-javascript") - Notebooks
- Google Colab
- Kaggle
Commit ·
d447051
1
Parent(s): d7a104b
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
| 1 |
---
|
| 2 |
license: bsd-3-clause
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: bsd-3-clause
|
| 3 |
---
|
| 4 |
+
This is a finetuned CodeT5-base checkpoint on CodeXGLUE code summarization JavaScript data.
|
| 5 |
+
|
| 6 |
+
Pretrained model: https://huggingface.co/Salesforce/codet5-base
|
| 7 |
+
|
| 8 |
+
Finetuning dataset: https://huggingface.co/datasets/code_x_glue_ct_code_to_text (only the JavaScript split)
|