Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 519 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 519 Bytes

GPTZero

GPTZero is an AI model with some mathematical formulation to determine if a particular text fed to it is written by AI or a human being. This repository is a fork of the open-source implementation of GPTZero, refactored as a Python package.

Installation

pip install gptzero@git+https://github.com/HassanJbara/gptzero

Usage

Script

python main.py

Code

from gptzero import GPTZero

zero_gpt = GPTZero()
text = "I love you"

zero_gpt.get_score(text)