Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -107,10 +107,7 @@ st.write('Enter a URL to check if it is Phishing or Legitimate.')
|
|
107 |
# Load the trained model
|
108 |
with open('phishing_model.pkl', 'rb') as f:
|
109 |
model = pickle.load(f)
|
110 |
-
|
111 |
-
# Load the feature columns
|
112 |
-
with open('X_columns.pkl', 'rb') as f:
|
113 |
-
X_columns = pickle.load(f)
|
114 |
|
115 |
# Input URL
|
116 |
url_input = st.text_input('Enter URL:', '')
|
|
|
107 |
# Load the trained model
|
108 |
with open('phishing_model.pkl', 'rb') as f:
|
109 |
model = pickle.load(f)
|
110 |
+
|
|
|
|
|
|
|
111 |
|
112 |
# Input URL
|
113 |
url_input = st.text_input('Enter URL:', '')
|