Add PEFT metadata and link to research paper
#1
by
nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,28 +1,34 @@
|
|
| 1 |
---
|
| 2 |
-
|
|
|
|
| 3 |
datasets:
|
| 4 |
- infosense/frameref
|
| 5 |
language:
|
| 6 |
- en
|
| 7 |
-
|
| 8 |
-
|
|
|
|
| 9 |
---
|
| 10 |
|
|
|
|
| 11 |
|
| 12 |
-
|
| 13 |
|
| 14 |
-
|
| 15 |
|
|
|
|
| 16 |
|
| 17 |
-
|
| 18 |
|
| 19 |
-
|
| 20 |
|
|
|
|
|
|
|
|
|
|
| 21 |
|
| 22 |
## Citing FrameRef
|
| 23 |
|
| 24 |
-
If you use this resource in your projects, please cite the following paper
|
| 25 |
-
|
| 26 |
|
| 27 |
```bibtex
|
| 28 |
@misc{De_Lima_FrameRef_A_Framing_2025,
|
|
@@ -32,4 +38,4 @@ title = {{FrameRef: A Framing Dataset and Simulation Testbed for Modeling Bounde
|
|
| 32 |
url = {https://arxiv.org/abs/2602.15273},
|
| 33 |
year = {2025}
|
| 34 |
}
|
| 35 |
-
```
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model:
|
| 3 |
+
- meta-llama/Llama-3.1-8B-Instruct
|
| 4 |
datasets:
|
| 5 |
- infosense/frameref
|
| 6 |
language:
|
| 7 |
- en
|
| 8 |
+
license: llama3.1
|
| 9 |
+
library_name: peft
|
| 10 |
+
pipeline_tag: text-generation
|
| 11 |
---
|
| 12 |
|
| 13 |
+
# FrameRef Persona Adapters
|
| 14 |
|
| 15 |
+
This repository contains the persona adapter models presented in the paper [FrameRef: A Framing Dataset and Simulation Testbed for Modeling Bounded Rational Information Health](https://huggingface.co/papers/2602.15273).
|
| 16 |
|
| 17 |
+
## Model Information
|
| 18 |
|
| 19 |
+
All adapters in this repository are LoRA adapters trained on top of the `Llama-3.1-8B-Instruct` base model using 15k training samples. For each framing dimension (authoritative, consensus, emotional, prestige, and sensationalist), we release three independently trained adapters. The baseline adapters were trained with alpha = 1, while all other adapters were trained with alpha = 0.3.
|
| 20 |
|
| 21 |
+
Within the FrameRef framework, these framing-sensitive agent personas are constructed by fine-tuning language models with framing-conditioned loss attenuation, inducing targeted biases while preserving overall task competence. For full details, see the accompanying paper.
|
| 22 |
|
| 23 |
+
## Resources
|
| 24 |
|
| 25 |
+
- **Code Repository**: [GitHub - infosenselab/frameref](https://github.com/infosenselab/frameref)
|
| 26 |
+
- **Dataset**: [infosense/frameref](https://huggingface.co/datasets/infosense/frameref)
|
| 27 |
+
- **Paper**: [arXiv:2602.15273](https://arxiv.org/abs/2602.15273)
|
| 28 |
|
| 29 |
## Citing FrameRef
|
| 30 |
|
| 31 |
+
If you use this resource in your projects, please cite the following paper:
|
|
|
|
| 32 |
|
| 33 |
```bibtex
|
| 34 |
@misc{De_Lima_FrameRef_A_Framing_2025,
|
|
|
|
| 38 |
url = {https://arxiv.org/abs/2602.15273},
|
| 39 |
year = {2025}
|
| 40 |
}
|
| 41 |
+
```
|