Instructions to use Defalt-404/LoRA_Falcon with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Defalt-404/LoRA_Falcon with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("tiiuae/falcon-40b") model = PeftModel.from_pretrained(base_model, "Defalt-404/LoRA_Falcon") - Notebooks
- Google Colab
- Kaggle
| { | |
| "base_model_name_or_path": "tiiuae/falcon-40b", | |
| "bias": "none", | |
| "fan_in_fan_out": false, | |
| "inference_mode": true, | |
| "init_lora_weights": true, | |
| "layers_pattern": null, | |
| "layers_to_transform": null, | |
| "lora_alpha": 32, | |
| "lora_dropout": 0.05, | |
| "modules_to_save": null, | |
| "peft_type": "LORA", | |
| "r": 8, | |
| "revision": null, | |
| "target_modules": [ | |
| "query_key_value", | |
| "dense", | |
| "dense_h_to_4h", | |
| "dense_4h_to_h" | |
| ], | |
| "task_type": "CAUSAL_LM" | |
| } |