Instructions to use ray-2908/educational-rewriter-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use ray-2908/educational-rewriter-lora with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-3.2-3B") model = PeftModel.from_pretrained(base_model, "ray-2908/educational-rewriter-lora") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Educational Content Rewriter — LLaMA 3.2 3B LoRA
|
| 2 |
|
| 3 |
## Model Summary
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model: meta-llama/Llama-3.2-3B
|
| 4 |
+
tags:
|
| 5 |
+
- lora
|
| 6 |
+
- qlora
|
| 7 |
+
- llama
|
| 8 |
+
- educational
|
| 9 |
+
- text-rewriting
|
| 10 |
+
- peft
|
| 11 |
+
language:
|
| 12 |
+
- en
|
| 13 |
+
library_name: peft
|
| 14 |
+
pipeline_tag: text-generation
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
# Educational Content Rewriter — LLaMA 3.2 3B LoRA
|
| 18 |
|
| 19 |
## Model Summary
|