Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
|
@@ -6,7 +6,7 @@ from apify_client import ApifyClient
|
|
| 6 |
model = joblib.load("classifier.pkl")
|
| 7 |
client = ApifyClient("apify_api_nscRkHOyMh3mytIWftXpHpZlIzBhgF4mZyPV")
|
| 8 |
st.title("Fake Instagram Profile Detection")
|
| 9 |
-
st.write("
|
| 10 |
n = st.text_input("Enter username ")
|
| 11 |
run_input = { "usernames": [n] }
|
| 12 |
run = client.actor("dSCLg0C3YEZ83HzYX").call(run_input=run_input)
|
|
|
|
| 6 |
model = joblib.load("classifier.pkl")
|
| 7 |
client = ApifyClient("apify_api_nscRkHOyMh3mytIWftXpHpZlIzBhgF4mZyPV")
|
| 8 |
st.title("Fake Instagram Profile Detection")
|
| 9 |
+
st.write("Please provide instagram account details you would like to predict")
|
| 10 |
n = st.text_input("Enter username ")
|
| 11 |
run_input = { "usernames": [n] }
|
| 12 |
run = client.actor("dSCLg0C3YEZ83HzYX").call(run_input=run_input)
|