File size: 589 Bytes
73a393b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import gradio as gr
from transformers import pipeline

# Load the spam classifier model
classifier = pipeline("text-classification", model="sms-spam-classifier")

def spam_detector(text):
    result = classifier(text)
    return "Spam" if result[0]['label'] == 'spam' else "Not Spam"

# Create Gradio UI
app = gr.Interface(
    fn=spam_detector,
    inputs=gr.Textbox(label="Enter a message"),
    outputs=gr.Textbox(label="Prediction"),
    title="Spam Detector",
    description="Enter a message to check if it's spam or not."
)

# Run the app
if __name__ == "__main__":
    app.launch()