An open-source Pytorch implementation of DetectGPT
DetectGPT is an amazing method to determine whether a piece of text is written by large language models (like ChatGPT, GPT3, GPT2, BLOOM etc). However, we couldn't find any open-source implementation of it. Therefore this is the implementation of the paper.
pip install -r requirements.txt
Here v1.1 refers to DetectGPT, v1.0 is GPTZero
python3 infer.py
from model import GPT2PPL
model = GPT2PPL()
sentence = "your text here"
model(sentence, "number of words per chunk", "v1.1")
python3 local_infer.py
Please enter your sentence: (Press Enter twice to start processing)
Hello World.
My name is mike.
(empty line)
- Mitchell, Eric, et al. "DetectGPT: Zero-Shot Machine-Generated Text Detection using Probability Curvature." arXiv preprint arXiv:2301.11305 (2023).