Spaces:
Runtime error
title: DeepfakeTextDetect
emoji: ๐ป
colorFrom: yellow
colorTo: blue
sdk: gradio
sdk_version: 3.35.2
app_file: app.py
pinned: false
license: mit
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
Deepfake Text Detection in the Wild
Yafu Liโ โก, Qintong Liยง, Leyang Cuiยถ, Wei Biยถ,
Longyue Wangยถ, Linyi Yangโก, Shuming Shiยถ, Yue Zhangโก
โ Zhejiang University, โก Westlake University, ยง The University of Hong Kong, ยถ Tencent AI Lab
Presenting a comprehensive benchmark dataset designed to assess the proficiency of deepfake detectors amidst real-world scenarios.
๐ Table of Contents
๐ Introduction
Recent advances in large language models have enabled them to reach a level of text generation comparable to that of humans. These models show powerful capabilities across a wide range of content, including news article writing, story generation, and scientific writing. Such capability further narrows the gap between human-authored and machine-generated texts, highlighting the importance of deepfake text detection to avoid potential risks such as fake news propagation and plagiarism. In practical scenarios, the detector faces texts from various domains or LLMs without knowing their sources.
To this end, we build a wild testbed for deepfake text detection, by gathering texts from various human writings and deepfake texts generated by different LLMs. This repository contains the data to testify deepfake detection methods described in our paper, Deepfake Text Detection in the Wild. Welcome to test your detection methods on our testbed!
๐ Activities
- May 25, 2023: Initial dataset release including texts from 10 domains and 27 LLMs, contributing to 6 testbeds with increasing detection difficulty.
- ๐ June 19, 2023: Update two 'wilder' testbeds! We go one step wilder by constructing an additional testset with texts from unseen domains generated by an unseen model, to testify the detection ability in more practical scenarios. We consider four new datasets: CNN/DailyMail, DialogSum, PubMedQA and IMDb to test the detection of deepfake news, deepfake dialogues, deepfake scientific answers and deepfake movie reviews. We sample 200 instances from each dataset and use a newly developed LLM, i.e., GPT-4, with specially designed prompts to create deepfake texts, establishing an "Unseen Domains & Unseen Model" scenario. Previous work demonstrates that detection methods are vulnerable to being deceived by target texts. Therefore, we also paraphrase each sentence individually for both human-written and machine-generated texts, forming an even more challenging testbed. We adopt gpt-3.5-trubo as the zero-shot paraphraser and consider all paraphrased texts as machine-generated.
๐ Dataset Description
The dataset consists of 447,674 human-written and machine-generated texts from a wide range of sources in the wild:
- Human-written texts from 10 datasets covering a wide range of writing tasks, e.g., news article writing, story generation, scientific writing, etc.
- Machine-generated texts generated by 27 mainstream LLMs from 7 sources, e.g., OpenAI, LLaMA, and EleutherAI, etc.
- 6 systematic testbeds with increasing wildness and detection difficulty.
- 2 wilder test sets: (1) texts collected from new datasets and generated by GPT-4; (2) paraphrased texts.
:computer: Try Detection
Model Access
Our Longformer detector, which has been trained on the entire dataset, is now accessible through Huggingface. Additionally, you can try detection directly using our online demo.
Deployment
We have refined the threshold based on out-of-distribution settings. To ensure optimal performance, we recommend preprocessing texts before sending them to the detector.
import torch
import os
from transformers import AutoModelForSequenceClassification,AutoTokenizer
from deployment import preprocess, detect
# init
device = 'cpu' # use 'cuda:0' if GPU is available
model_dir = "nealcly/detection-longformer"
tokenizer = AutoTokenizer.from_pretrained(model_dir)
model = AutoModelForSequenceClassification.from_pretrained(model_dir).to(device)
# preprocess
text = preprocess(text)
# detection
result = detect(text,tokenizer,model,device)
Detection Performance
In-distribution Detection
Testbed | HumanRec | MachineRec | AvgRec | AUROC |
---|---|---|---|---|
Domain-specific & Model-specific | 97.30% | 95.91% | 96.60% | 0.99 |
Cross-domains & Modelโspecific | 95.25% | 96.94% | 96.10% | 0.99 |
Domain-specific & Cross-models | 89.78% | 97.24% | 93.51% | 0.99 |
Cross-domains & Cross-models | 82.80% | 98.27% | 90.53% | 0.99 |
Out-of-distribution Detection
Testbed | HumanRec | MachineRec | AvgRec | AUROC |
---|---|---|---|---|
Unseen Model Sets | 86.09% | 89.15% | 87.62% | 0.95 |
Unseen Domains | 82.88% | 80.50% | 81.78% | 0.93 |
Wilder Testsets
Testbed | HumanRec | MachineRec | AvgRec | AUROC |
---|---|---|---|---|
Unseen Domains & Unseen Model | 88.78% | 84.12% | 86.54% | 0.94 |
Paraphrase | 88.78% | 37.05% | 62.92% | 0.75 |
๐ฅ How to Get the Data
Download
The dataset is available for download at๏ผ
The folder contains 4 packages:
- source.zip: Source texts of human-written texts and corresponding texts generated by LLMs.
- processed.zip: This is a refined version of the "source" that filters out low-quality texts and specifies sources as CSV file names. For example, the "cmv_machine_specified_gpt-3.5-trubo.csv" file contains texts from the CMV domain generated by the "gpt-3.5-trubo" model using specific prompts, while "cmv_human" includes human-written CMV texts. We suggest trying this version to test your detection methods.
- testbeds_processed.zip: 6 testbeds based on the ''processed'' version, which can be directly used for detecting in-distribution and out-of-distribution detection performance.
- wilder_testsets.zip: 2 wilder test sets with texts processed, aiming for (1) detecting deepfake text generated by GPT-4, and (2) detecting deepfake text in paraphrased versions.