Instructions to use Naveengo/gpt2-medium-on-sql-create-context with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Naveengo/gpt2-medium-on-sql-create-context with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("gpt2-medium") model = PeftModel.from_pretrained(base_model, "Naveengo/gpt2-medium-on-sql-create-context") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -7,6 +7,13 @@ language:
|
|
| 7 |
metrics:
|
| 8 |
- rouge
|
| 9 |
pipeline_tag: question-answering
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
---
|
| 11 |
|
| 12 |
# GPT-2 Medium
|
|
|
|
| 7 |
metrics:
|
| 8 |
- rouge
|
| 9 |
pipeline_tag: question-answering
|
| 10 |
+
license: apache-2.0
|
| 11 |
+
tags:
|
| 12 |
+
- SQL
|
| 13 |
+
- PEFT
|
| 14 |
+
- GPT
|
| 15 |
+
- GPT2-Medium
|
| 16 |
+
- Question& Answer
|
| 17 |
---
|
| 18 |
|
| 19 |
# GPT-2 Medium
|