Legacy Models
Collection
12 items • Updated • 1
How to use GoalZero/aidetector-legacy-12 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="GoalZero/aidetector-legacy-12") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("GoalZero/aidetector-legacy-12")
model = AutoModelForSequenceClassification.from_pretrained("GoalZero/aidetector-legacy-12")Goalzero legacy 12 is an AI text detector based on the RoBERTa architecture. As it has been designed to detect AI paragraphs, we call this approach PORoBERTaBD (Paragraph Orientated Robustly Optimized Bidirectional Encoder Representations from Transformers Approach Based Detection).
Base model
GoalZero/aidetector-legacy-11