Polo123's picture
Update app.py
22650b8 verified
raw
history blame
674 Bytes
import streamlit as st
from logic2 import *
import streamlit.components.v1 as components
st.title('PyG - Movie Recommendation')
st.image('Image_graph.png', caption='Bi-Partite Graph')
st.write('Scatter Plot of embeddings')
HtmlFile = open("plot.html", 'r', encoding='utf-8')
source_code = HtmlFile.read()
components.html(source_code, width=500, height=500)
# load Hgraph
global data
st.write('Loading Data')
data = load_hetero_data()
# Load Model
st.write('Loading Model')
model = load_model(data)
#get user_id
user_id = st.number_input('Give User-Id')
user_id = int(round(user_id))
# get recommendation
ans = get_recommendation(model,data,user_id)
st.write(ans)