From 69df67d3187ca82bb8b94c08e63e604fecad978f Mon Sep 17 00:00:00 2001 From: "majiahui@haimaqingfan.com" Date: Fri, 18 Jul 2025 17:03:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=A3=80=E6=B5=8B=E6=A8=A1?= =?UTF-8?q?=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- chatgpt_detector_model_predict.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chatgpt_detector_model_predict.py b/chatgpt_detector_model_predict.py index 66789f6..533e686 100644 --- a/chatgpt_detector_model_predict.py +++ b/chatgpt_detector_model_predict.py @@ -126,14 +126,14 @@ def main(content_list: list): reference_bool = is_reference_sentence(content_list[i]) if reference_bool == False: - if res["robot"] > 0.8: + if res["robot"] > 0.9: for _ in range(len(content_list[i])): gpt_score_list.append(res["robot"]) gpt_score_sentence_list.append(res["robot"]) sim_word += len(content_list[i]) gpt_content.append( "".format(str(i)) + content_list[i] + "\n" + "") - elif 0.8 >= res["robot"] > 0.3: + elif 0.9 >= res["robot"] > 0.5: for _ in range(len(content_list[i])): gpt_score_list.append(res["robot"]) gpt_score_sentence_list.append(res["robot"])