Instructions to use ai2sql/ai2sql-falcon-7b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use ai2sql/ai2sql-falcon-7b with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("ybelkada/falcon-7b-sharded-bf16") model = PeftModel.from_pretrained(base_model, "ai2sql/ai2sql-falcon-7b") - Notebooks
- Google Colab
- Kaggle
Added pipeline tag for filtering
#1
by mervenoyan - opened
README.md
CHANGED
|
@@ -12,6 +12,7 @@ datasets:
|
|
| 12 |
library_name: peft
|
| 13 |
language:
|
| 14 |
- en
|
|
|
|
| 15 |
---
|
| 16 |
|
| 17 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
|
|
| 12 |
library_name: peft
|
| 13 |
language:
|
| 14 |
- en
|
| 15 |
+
pipeline_tag: text-generation
|
| 16 |
---
|
| 17 |
|
| 18 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|