File size: 1,045 Bytes
568da45
 
 
 
 
 
 
 
eb17be3
568da45
 
 
 
 
 
 
 
a5a9283
e9ea56c
 
6da6fb5
568da45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7897a5e
568da45
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import gradio as gr
import torch
import os
import transformers
from transformers import (
    AutoModelForSequenceClassification,
    AutoTokenizer,
)
from utils import preprocess

device = 'cpu'
model_dir = "nealcly/detection-longformer"

# load the Longformer detector
tokenizer = AutoTokenizer.from_pretrained(model_dir)
model = AutoModelForSequenceClassification.from_pretrained(model_dir).to(device)

def detect(input_text,th=-3.08583984375):
    if len(input_text.split()) < 30:
        return 'It is not reliable to detect text with less than 30 words.'
    
    label2decisions = {
        0: "machine-generated",
        1: "human-written",
    }
    tokenize_input = tokenizer(input_text)
    tensor_input = torch.tensor([tokenize_input["input_ids"]]).to(device)
    outputs = model(tensor_input)
    is_machine = -outputs.logits[0][0].item()
    if is_machine < th:
        decision = 0
    else:
        decision = 1

    return label2decisions[decision]

iface = gr.Interface(fn=detect, inputs="text", outputs="text")
iface.launch()