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
Fetching metadata from the HF Docker repository...
184f8f2
spam-detector
/
app.py
iSky
Update app.py
184f8f2
about 3 years ago
raw
Copy download link
history
blame
Wrap lines
268 Bytes
import
gradio
as
gr
gr.Interface.load(
"huggingface/mrm8488/bert-tiny-finetuned-sms-spam-detection"
,
title=
"Spam detector"
,
description=
"Label 1 means message is spam"
,
allow_flagging=
"never"
).launch(inbrowser=
True
)