Instructions to use joduor/adapter-analytics with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use joduor/adapter-analytics with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
init: adapter-analytics placeholder
Browse files
README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model: Qwen/Qwen2.5-7B-Instruct
|
| 4 |
+
tags:
|
| 5 |
+
- peft
|
| 6 |
+
- lora
|
| 7 |
+
- adaptive-ui
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# adapter-analytics
|
| 11 |
+
|
| 12 |
+
LoRA adapter for the **analytics** mode of [joduor/adaptive-model](https://huggingface.co/joduor/adaptive-model).
|
| 13 |
+
|
| 14 |
+
## Status
|
| 15 |
+
|
| 16 |
+
> **Not yet trained.** Weights will appear here after running the training script.
|
| 17 |
+
|
| 18 |
+
## Train it
|
| 19 |
+
|
| 20 |
+
`ash
|
| 21 |
+
git clone https://huggingface.co/joduor/adaptive-model
|
| 22 |
+
cd adaptive-model
|
| 23 |
+
pip install -r training/requirements.txt
|
| 24 |
+
huggingface-cli login
|
| 25 |
+
python training/train_adapter.py --mode analytics --hub-org joduor
|
| 26 |
+
`
|
| 27 |
+
|
| 28 |
+
Training takes ~30 min on a T4 (free Colab) with QLoRA enabled.
|