BacemKarray commited on
Commit
962eed1
·
verified ·
1 Parent(s): 11c7487

Update README.md

Browse files

Lightweight LoRA adapters trained on the EdinburghNLP/XSum dataset for abstractive news summarization.

The adapters fine-tune Mistral-7B-Instruct-v0.3 using ~50k training and 2k validation samples prepared via a summarization prompt.

Training used the following parameters:
r=8,
lora_alpha=16,
lora_dropout=0.1,
target_modules=["q_proj", "k_proj", "v_proj", "o_proj"]

Adapters can be merged into the base model for inference using PeftModel.merge_and_unload().

Files changed (1) hide show
  1. README.md +9 -3
README.md CHANGED
@@ -1,3 +1,9 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ datasets:
4
+ - EdinburghNLP/xsum
5
+ metrics:
6
+ - accuracy
7
+ base_model:
8
+ - mistralai/Mistral-7B-Instruct-v0.3
9
+ ---