Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ classifier = pipeline("text-classification", model='kithangw/phishing_link_detec
|
|
8 |
st.title("Please enter a suspicious link")
|
9 |
|
10 |
# Text input for user to enter the link to classify
|
11 |
-
|
12 |
|
13 |
# Perform text classification when the user clicks the "Classify" button
|
14 |
if st.button("Classify"):
|
|
|
8 |
st.title("Please enter a suspicious link")
|
9 |
|
10 |
# Text input for user to enter the link to classify
|
11 |
+
link = st.text_area("Enter the link to classify", "")
|
12 |
|
13 |
# Perform text classification when the user clicks the "Classify" button
|
14 |
if st.button("Classify"):
|