Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -4,7 +4,7 @@ import pickle
|
|
| 4 |
model = pickle.load(open("phishing_test.pkl", "rb"))
|
| 5 |
|
| 6 |
st.title("URL Checker")
|
| 7 |
-
st.subheader("Just type
|
| 8 |
url_to_predict = st.text_input("", value="google.com", placeholder="Enter URL")
|
| 9 |
|
| 10 |
prediction = model.predict([url_to_predict])
|
|
|
|
| 4 |
model = pickle.load(open("phishing_test.pkl", "rb"))
|
| 5 |
|
| 6 |
st.title("URL Checker")
|
| 7 |
+
st.subheader("Just type a URL below to see if it's good!")
|
| 8 |
url_to_predict = st.text_input("", value="google.com", placeholder="Enter URL")
|
| 9 |
|
| 10 |
prediction = model.predict([url_to_predict])
|