├── .gitignore ├── LICENSE ├── README.md ├── data └── example_data.json ├── data_process.py ├── get_outlier.py ├── get_outlier_fast.py ├── image └── llms_leakage_detection.png ├── inference_logprobs.py └── inference_logprobs_dp.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishiwen1214/Benchmark-leakage-detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishiwen1214/Benchmark-leakage-detection/HEAD/README.md -------------------------------------------------------------------------------- /data/example_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishiwen1214/Benchmark-leakage-detection/HEAD/data/example_data.json -------------------------------------------------------------------------------- /data_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishiwen1214/Benchmark-leakage-detection/HEAD/data_process.py -------------------------------------------------------------------------------- /get_outlier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishiwen1214/Benchmark-leakage-detection/HEAD/get_outlier.py -------------------------------------------------------------------------------- /get_outlier_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishiwen1214/Benchmark-leakage-detection/HEAD/get_outlier_fast.py -------------------------------------------------------------------------------- /image/llms_leakage_detection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishiwen1214/Benchmark-leakage-detection/HEAD/image/llms_leakage_detection.png -------------------------------------------------------------------------------- /inference_logprobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishiwen1214/Benchmark-leakage-detection/HEAD/inference_logprobs.py -------------------------------------------------------------------------------- /inference_logprobs_dp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishiwen1214/Benchmark-leakage-detection/HEAD/inference_logprobs_dp.py --------------------------------------------------------------------------------