Instructions to use dudleymax/ludwig-llama2python with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use dudleymax/ludwig-llama2python with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-2-7b-hf") model = PeftModel.from_pretrained(base_model, "dudleymax/ludwig-llama2python") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -3,6 +3,7 @@ library_name: peft
|
|
| 3 |
base_model: meta-llama/Llama-2-7b-hf
|
| 4 |
datasets:
|
| 5 |
- jtatman/python-code-dataset-500k
|
|
|
|
| 6 |
---
|
| 7 |
|
| 8 |
## Citation
|
|
|
|
| 3 |
base_model: meta-llama/Llama-2-7b-hf
|
| 4 |
datasets:
|
| 5 |
- jtatman/python-code-dataset-500k
|
| 6 |
+
license: mit
|
| 7 |
---
|
| 8 |
|
| 9 |
## Citation
|