Instructions to use mskov/falcon-7b-completion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use mskov/falcon-7b-completion 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, "mskov/falcon-7b-completion") - Notebooks
- Google Colab
- Kaggle
Delete results/checkpoint-100/config.json
Browse files
results/checkpoint-100/config.json
DELETED
|
@@ -1,14 +0,0 @@
|
|
| 1 |
-
{
|
| 2 |
-
"model_type": "ybelkada/falcon-7b-sharded-bf16",
|
| 3 |
-
"lora_alpha": 16,
|
| 4 |
-
"lora_dropout": 0.1,
|
| 5 |
-
"r": 64,
|
| 6 |
-
"bias": "none",
|
| 7 |
-
"task_type": "CAUSAL_LM",
|
| 8 |
-
"target_modules": [
|
| 9 |
-
"query_key_value",
|
| 10 |
-
"dense",
|
| 11 |
-
"dense_h_to_4h",
|
| 12 |
-
"dense_4h_to_h"
|
| 13 |
-
]
|
| 14 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|