search
HomeTechnology peripheralsAIIdentifying ChatGPT fraud, the effect surpasses OpenAI: Peking University and Huawei's AI-generated detectors are here

Heart of Machine Column

Heart of Machine Editorial Department

The success rate of AI fraud is very high. A few days ago, "4.3 million defrauded in 10 minutes" was a hot search topic. Building on the hottest large language model, researchers have recently explored a recognition method.

With the continuous progress of large generative models, the corpus they generate is gradually approaching that of humans. Although large models are liberating the hands of countless clerks, their powerful ability to fake fake ones has also been used by some criminals, causing a series of social problems:

Identifying ChatGPT fraud, the effect surpasses OpenAI: Peking University and Huaweis AI-generated detectors are here

Identifying ChatGPT fraud, the effect surpasses OpenAI: Peking University and Huaweis AI-generated detectors are here

Identifying ChatGPT fraud, the effect surpasses OpenAI: Peking University and Huaweis AI-generated detectors are here

Researchers from Peking University and Huawei have proposed a reliable text detector for identifying various AI-generated corpora. According to the different characteristics of long and short texts, a multi-scale AI-generated text detector training method based on PU learning is proposed. By improving the detector training process, considerable improvements in detection capabilities on long and short ChatGPT corpus can be achieved under the same conditions, solving the pain point of low accuracy of short text recognition by current detectors.

Identifying ChatGPT fraud, the effect surpasses OpenAI: Peking University and Huaweis AI-generated detectors are here

Paper address:

https://arxiv.org/abs/2305.18149

Code address (MindSpore):

https://github.com/mindspore-lab/mindone/tree/master/examples/detect_chatgpt

Code address (PyTorch):

https://github.com/YuchuanTian/AIGC_text_detector

Introduction

As the generation effects of large language models become more and more realistic, various industries urgently need a reliable AI-generated text detector. However, different industries have different requirements for detection corpus. For example, in academia, it is generally necessary to detect large and complete academic texts; on social platforms, relatively short and fragmented fake news needs to be detected. However, existing detectors often cannot meet various needs. For example, some mainstream AI text detectors generally have poor prediction capabilities for shorter corpus.

Regarding the different detection effects of corpus of different lengths, the author observed that there may be some "uncertainty" in the attribution of shorter AI-generated texts; or to put it more bluntly, because some AI-generated short sentences are often also It is used by humans, so it is difficult to determine whether the short text generated by AI comes from humans or AI. Here are several examples of humans and AI answering the same question:

Identifying ChatGPT fraud, the effect surpasses OpenAI: Peking University and Huaweis AI-generated detectors are here

It can be seen from these examples that it is difficult to identify short answers generated by AI: the difference between this type of corpus and humans is too small, and it is difficult to strictly judge its true attributes. Therefore, it is inappropriate to simply annotate short texts as human/AI and follow the traditional binary classification problem for text detection.

In response to this problem, this study transforms the human/AI binary classification detection part into a partial PU (Positive-Unlabeled) learning problem, that is, in shorter sentences, the human language is positive (Positive), and the machine The language is Unlabeled, which improves the training loss function. This improvement significantly improves the detector's classification performance on various corpora.

Algorithm details

Under the traditional PU learning setting, a two-classification model can only learn based on positive training samples and unlabeled training samples. A commonly used PU learning method is to estimate the binary classification loss corresponding to negative samples by formulating PU loss:

Identifying ChatGPT fraud, the effect surpasses OpenAI: Peking University and Huaweis AI-generated detectors are here

Among them, represents the binary classification loss calculated by positive samples and positive labels; represents the binary classification loss calculated by assuming all unlabeled samples to be negative labels; represents the binary classification loss calculated by assuming positive samples as negative labels; represents The prior positive sample probability is the estimated proportion of positive samples in all PU samples. In traditional PU learning, the prior is usually set to a fixed hyperparameter. However, in the text detection scenario, the detector needs to process various texts of different lengths; and for texts of different lengths, the estimated proportion of positive samples among all PU samples of the same length as the sample is also different. . Therefore, this study improves PU Loss and proposes a length-sensitive multi-scale PU (MPU) loss function.

Specifically, this study proposes an abstract recurrent model to model shorter text detection. When traditional NLP models process sequences, they usually have a Markov chain structure, such as RNN, LSTM, etc. The process of this type of cyclic model can usually be understood as a gradually iterative process, that is, the prediction of each token output is obtained by transforming and merging the prediction results of the previous token and the previous sequence with the prediction results of this token. That is the following process:

Identifying ChatGPT fraud, the effect surpasses OpenAI: Peking University and Huaweis AI-generated detectors are here

In order to estimate the prior probability based on this abstract model, it is necessary to assume that the output of the model is the confidence that a certain sentence is positive, that is, the probability of judging it to be a sample spoken by a person. It is assumed that the contribution size of each token is the inverse proportion of the length of the sentence token, it is positive, that is, unlabeled, and the probability of being unlabeled is much greater than the probability of being positive. Because as the vocabulary of large models gradually approaches that of humans, most words will appear in both AI and human corpora. Based on this simplified model and the set positive token probability, the final prior estimate is obtained by finding the total expectation of the model output confidence under different input conditions.

Identifying ChatGPT fraud, the effect surpasses OpenAI: Peking University and Huaweis AI-generated detectors are here

Through theoretical derivation and experiments, it is estimated that the prior probability increases as the length of the text increases, and eventually stabilizes. This phenomenon is also expected, because as the text becomes longer, the detector can capture more information, and the "source uncertainty" of the text gradually weakens:

Identifying ChatGPT fraud, the effect surpasses OpenAI: Peking University and Huaweis AI-generated detectors are here

After that, for each positive sample, the PU loss is calculated based on the unique prior obtained from its sample length. Finally, since shorter texts only have some "uncertainty" (that is, shorter texts will also contain text features of some people or AI), the binary loss and MPU loss can be weighted and added as the final optimization goal:

Identifying ChatGPT fraud, the effect surpasses OpenAI: Peking University and Huaweis AI-generated detectors are here

In addition, it should be noted that MPU loss adapts to training corpus of various lengths. If the existing training data is obviously homogeneous and most of the corpus consists of long and lengthy texts, the MPU method cannot fully exert its effectiveness. In order to make the length of the training corpus more diverse, this study also introduces a multi-scaling module at the sentence level. This module randomly covers some sentences in the training corpus and reorganizes the remaining sentences while retaining the original order. After multi-scale operation of the training corpus, the training text has been greatly enriched in length, thus making full use of PU learning for AI text detector training.

Experimental results

Identifying ChatGPT fraud, the effect surpasses OpenAI: Peking University and Huaweis AI-generated detectors are here

As shown in the table above, the author first tested the effect of MPU loss on the shorter AI-generated corpus data set Tweep-Fake. The corpus in this data set is all relatively short segments on Twitter. The author also replaces the traditional two-category loss with an optimization goal containing MPU loss based on traditional language model fine-tuning. The improved language model detector is more effective and surpasses other baseline algorithms.

Identifying ChatGPT fraud, the effect surpasses OpenAI: Peking University and Huaweis AI-generated detectors are here

The author also tested the text generated by chatGPT. The language model detector obtained through traditional fine-tuning performed poorly on short sentences; the detector trained under the same conditions through MPU method performed well on short sentences, and At the same time, it can achieve considerable performance improvement on the complete corpus, with the F1-score increasing by 1%, surpassing SOTA algorithms such as OpenAI and DetectGPT.

Identifying ChatGPT fraud, the effect surpasses OpenAI: Peking University and Huaweis AI-generated detectors are here

As shown in the table above, the author observed the effect gain brought by each part in the ablation experiment. MPU loss enhances the classification effect of long and short materials.

Identifying ChatGPT fraud, the effect surpasses OpenAI: Peking University and Huaweis AI-generated detectors are here

The author also compared traditional PU and Multiscale PU (MPU). It can be seen from the above table that the MPU effect is better and can better adapt to the task of AI multi-scale text detection.

Summarize

The author solved the problem of short sentence recognition by text detectors by proposing a solution based on multi-scale PU learning. With the proliferation of AIGC generation models in the future, the detection of this type of content will become increasingly important. This research has taken a solid step forward in the issue of AI text detection. It is hoped that there will be more similar research in the future to better control AIGC content and prevent the abuse of AI-generated content.

The above is the detailed content of Identifying ChatGPT fraud, the effect surpasses OpenAI: Peking University and Huawei's AI-generated detectors are here. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:搜狐. If there is any infringement, please contact admin@php.cn delete
Gemma Scope: Google's Microscope for Peering into AI's Thought ProcessGemma Scope: Google's Microscope for Peering into AI's Thought ProcessApr 17, 2025 am 11:55 AM

Exploring the Inner Workings of Language Models with Gemma Scope Understanding the complexities of AI language models is a significant challenge. Google's release of Gemma Scope, a comprehensive toolkit, offers researchers a powerful way to delve in

Who Is a Business Intelligence Analyst and How To Become One?Who Is a Business Intelligence Analyst and How To Become One?Apr 17, 2025 am 11:44 AM

Unlocking Business Success: A Guide to Becoming a Business Intelligence Analyst Imagine transforming raw data into actionable insights that drive organizational growth. This is the power of a Business Intelligence (BI) Analyst – a crucial role in gu

How to Add a Column in SQL? - Analytics VidhyaHow to Add a Column in SQL? - Analytics VidhyaApr 17, 2025 am 11:43 AM

SQL's ALTER TABLE Statement: Dynamically Adding Columns to Your Database In data management, SQL's adaptability is crucial. Need to adjust your database structure on the fly? The ALTER TABLE statement is your solution. This guide details adding colu

Business Analyst vs. Data AnalystBusiness Analyst vs. Data AnalystApr 17, 2025 am 11:38 AM

Introduction Imagine a bustling office where two professionals collaborate on a critical project. The business analyst focuses on the company's objectives, identifying areas for improvement, and ensuring strategic alignment with market trends. Simu

What are COUNT and COUNTA in Excel? - Analytics VidhyaWhat are COUNT and COUNTA in Excel? - Analytics VidhyaApr 17, 2025 am 11:34 AM

Excel data counting and analysis: detailed explanation of COUNT and COUNTA functions Accurate data counting and analysis are critical in Excel, especially when working with large data sets. Excel provides a variety of functions to achieve this, with the COUNT and COUNTA functions being key tools for counting the number of cells under different conditions. Although both functions are used to count cells, their design targets are targeted at different data types. Let's dig into the specific details of COUNT and COUNTA functions, highlight their unique features and differences, and learn how to apply them in data analysis. Overview of key points Understand COUNT and COU

Chrome is Here With AI: Experiencing Something New Everyday!!Chrome is Here With AI: Experiencing Something New Everyday!!Apr 17, 2025 am 11:29 AM

Google Chrome's AI Revolution: A Personalized and Efficient Browsing Experience Artificial Intelligence (AI) is rapidly transforming our daily lives, and Google Chrome is leading the charge in the web browsing arena. This article explores the exciti

AI's Human Side: Wellbeing And The Quadruple Bottom LineAI's Human Side: Wellbeing And The Quadruple Bottom LineApr 17, 2025 am 11:28 AM

Reimagining Impact: The Quadruple Bottom Line For too long, the conversation has been dominated by a narrow view of AI’s impact, primarily focused on the bottom line of profit. However, a more holistic approach recognizes the interconnectedness of bu

5 Game-Changing Quantum Computing Use Cases You Should Know About5 Game-Changing Quantum Computing Use Cases You Should Know AboutApr 17, 2025 am 11:24 AM

Things are moving steadily towards that point. The investment pouring into quantum service providers and startups shows that industry understands its significance. And a growing number of real-world use cases are emerging to demonstrate its value out

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment