Update app.py
Browse files
app.py
CHANGED
@@ -26,10 +26,8 @@ user_id = int(round(user_id))
|
|
26 |
|
27 |
# get recommendation and graph
|
28 |
|
29 |
-
make_1_hop_graph(data,user_id)
|
30 |
-
|
31 |
-
source_code2 = HtmlFile2.read()
|
32 |
-
components.html(source_code2, width=700, height=700)
|
33 |
|
34 |
ans = get_recommendation(model,data,user_id)
|
35 |
st.write(ans)
|
|
|
26 |
|
27 |
# get recommendation and graph
|
28 |
|
29 |
+
html = make_1_hop_graph(data,user_id)
|
30 |
+
components.html(html, height=1200, width=1000)
|
|
|
|
|
31 |
|
32 |
ans = get_recommendation(model,data,user_id)
|
33 |
st.write(ans)
|