Spaces:
Runtime error
Runtime error
Commit
·
1d9cdf5
1
Parent(s):
e9e88ec
added model
Browse files
app.py
CHANGED
@@ -2,7 +2,7 @@ import gradio as gr
|
|
2 |
from transformers import pipeline
|
3 |
|
4 |
# Load the spam classifier model
|
5 |
-
classifier = pipeline("text-classification", model="
|
6 |
|
7 |
def spam_detector(text):
|
8 |
result = classifier(text)
|
|
|
2 |
from transformers import pipeline
|
3 |
|
4 |
# Load the spam classifier model
|
5 |
+
classifier = pipeline("text-classification", model="skandavivek2/spam-classifier")
|
6 |
|
7 |
def spam_detector(text):
|
8 |
result = classifier(text)
|