Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
iSky
/
spam-detector
like
2
Runtime error
App
Files
Files
Community
iSky
commited on
Mar 25, 2022
Commit
3803ff3
•
1 Parent(s):
06e4146
spam detector
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -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)