Update README.md
Browse files
README.md
CHANGED
|
@@ -4,4 +4,44 @@ datasets:
|
|
| 4 |
- yahma/alpaca-cleaned
|
| 5 |
base_model:
|
| 6 |
- meta-llama/Llama-3.1-8B-Instruct
|
| 7 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
- yahma/alpaca-cleaned
|
| 5 |
base_model:
|
| 6 |
- meta-llama/Llama-3.1-8B-Instruct
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
# DataFilter
|
| 10 |
+
|
| 11 |
+
[](https://arxiv.org/abs/2510.19207)
|
| 12 |
+
[](https://huggingface.co/JoyYizhu/DataFilter)
|
| 13 |
+
|
| 14 |
+
A defense system designed to protect LLM agent systems against prompt injection attacks. DataFilter provides robust protection while maintaining system utility and performance.
|
| 15 |
+
|
| 16 |
+
Codes: https://github.com/yizhu-joy/DataFilter
|
| 17 |
+
|
| 18 |
+
## Quick Start
|
| 19 |
+
|
| 20 |
+
### Installation
|
| 21 |
+
|
| 22 |
+
```bash
|
| 23 |
+
conda create -n py312vllm python=3.12
|
| 24 |
+
conda activate py312vllm
|
| 25 |
+
pip install vllm pandas 'accelerate>=0.26.0' deepspeed datasets==2.20.0
|
| 26 |
+
git clone https://github.com/yizhu-joy/DataFilter.git
|
| 27 |
+
cd DataFilter
|
| 28 |
+
```
|
| 29 |
+
|
| 30 |
+
## Citation
|
| 31 |
+
|
| 32 |
+
If you use DataFilter in your research, please cite our paper:
|
| 33 |
+
|
| 34 |
+
```bibtex
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
@misc
|
| 38 |
+
{wang2025datafilter,
|
| 39 |
+
title={Defending Against Prompt Injection with DataFilter},
|
| 40 |
+
author={Yizhu Wang and Sizhe Chen and Raghad Alkhudair and Basel Alomair and David Wagner},
|
| 41 |
+
year={2025},
|
| 42 |
+
eprint={2510.19207},
|
| 43 |
+
archivePrefix={arXiv},
|
| 44 |
+
primaryClass={cs.CR},
|
| 45 |
+
url={https://arxiv.org/abs/2510.19207},
|
| 46 |
+
}
|
| 47 |
+
```
|