kushxrap commited on
Commit
a494a12
1 Parent(s): c2b818e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -34,7 +34,7 @@ st.title('Movie Recommender System ')
34
  # unsafe_allow_html=True
35
  # )
36
 
37
- add_bg_from_url()
38
  def recommend(movie):
39
  index = movies[movies['title'] == movie].index[0]
40
  distances = sorted(list(enumerate(similarity[index])), reverse=True, key=lambda x: x[1])
 
34
  # unsafe_allow_html=True
35
  # )
36
 
37
+ # add_bg_from_url()
38
  def recommend(movie):
39
  index = movies[movies['title'] == movie].index[0]
40
  distances = sorted(list(enumerate(similarity[index])), reverse=True, key=lambda x: x[1])