resolverkatla commited on
Commit
73a393b
·
1 Parent(s): eaa6066
Files changed (1) hide show
  1. app.py +22 -0
app.py ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from transformers import pipeline
3
+
4
+ # Load the spam classifier model
5
+ classifier = pipeline("text-classification", model="sms-spam-classifier")
6
+
7
+ def spam_detector(text):
8
+ result = classifier(text)
9
+ return "Spam" if result[0]['label'] == 'spam' else "Not Spam"
10
+
11
+ # Create Gradio UI
12
+ app = gr.Interface(
13
+ fn=spam_detector,
14
+ inputs=gr.Textbox(label="Enter a message"),
15
+ outputs=gr.Textbox(label="Prediction"),
16
+ title="Spam Detector",
17
+ description="Enter a message to check if it's spam or not."
18
+ )
19
+
20
+ # Run the app
21
+ if __name__ == "__main__":
22
+ app.launch()