minko186 commited on
Commit
fc0edaa
·
verified ·
1 Parent(s): 1d6f4ea

Update gptzero_free.py

Browse files
Files changed (1) hide show
  1. gptzero_free.py +1 -1
gptzero_free.py CHANGED
@@ -33,7 +33,7 @@ class GPT2PPL:
33
  # else:
34
  # label = 1
35
  # return "The Text is written by Human.", label
36
- normalized_score = (score - 60) / 2
37
  # Cap the values at 0 and 100
38
  human_score = max(0, min(1, normalized_score))
39
  return {"HUMAN": human_score, "AI": 1 - human_score}
 
33
  # else:
34
  # label = 1
35
  # return "The Text is written by Human.", label
36
+ normalized_score = (threshold - 60) / 2
37
  # Cap the values at 0 and 100
38
  human_score = max(0, min(1, normalized_score))
39
  return {"HUMAN": human_score, "AI": 1 - human_score}