iSky commited on
Commit
3803ff3
1 Parent(s): 06e4146

spam detector

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import gradio as gr
2
+ gr.Interface.load("huggingface/mrm8488/bert-tiny-finetuned-sms-spam-detection",
3
+ title="Spam detector",
4
+ description="Label 1 means spam",
5
+ allow_flagging="never").launch(inbrowser=True)