Instructions to use dklpp/llama3_ft_section_classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use dklpp/llama3_ft_section_classifier with PEFT:
from peft import PeftModel from transformers import AutoModelForSequenceClassification base_model = AutoModelForSequenceClassification.from_pretrained("meta-llama/Llama-3.1-8B-Instruct") model = PeftModel.from_pretrained(base_model, "dklpp/llama3_ft_section_classifier") - Transformers
How to use dklpp/llama3_ft_section_classifier with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("dklpp/llama3_ft_section_classifier", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Training in progress, epoch 1
Browse files- adapter_config.json +2 -2
- adapter_model.safetensors +1 -1
- training_args.bin +1 -1
adapter_config.json
CHANGED
|
@@ -28,8 +28,8 @@
|
|
| 28 |
"rank_pattern": {},
|
| 29 |
"revision": null,
|
| 30 |
"target_modules": [
|
| 31 |
-
"
|
| 32 |
-
"
|
| 33 |
],
|
| 34 |
"target_parameters": null,
|
| 35 |
"task_type": "SEQ_CLS",
|
|
|
|
| 28 |
"rank_pattern": {},
|
| 29 |
"revision": null,
|
| 30 |
"target_modules": [
|
| 31 |
+
"v_proj",
|
| 32 |
+
"q_proj"
|
| 33 |
],
|
| 34 |
"target_parameters": null,
|
| 35 |
"task_type": "SEQ_CLS",
|
adapter_model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 27370368
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b345f9ec23352eeb9dc17f86fbd1eee24044e7ca5140955633e344c25edb4d30
|
| 3 |
size 27370368
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 5905
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c81e5e20762049285a252595c620bb4a9a79ab552679900735e30e370ad73d5
|
| 3 |
size 5905
|