shreyasiv commited on
Commit
f0239ea
β€’
1 Parent(s): 5d84ca0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -69,8 +69,8 @@ def recommend(movie):
69
  st.title('Movie Recommender 🎬')
70
 
71
  # Provide the correct absolute paths to the pickled data
72
- movie_list_path = "https://mega.nz/file/7Ak2HTyD#33YrguiOp2_YzJTWQE0MyrYWyajRMqEoQ6zw_l0znFk"
73
- similarity_path = "https://mega.nz/file/XIs3HBDI#KbR1DVV-2RE6-lJ6suwpRDZ1IJUMZU3ebFxZUfHxkv0"
74
 
75
  movies = pickle.load(open(movie_list_path, 'rb'))
76
  similarity = pickle.load(open(similarity_path, 'rb'))
 
69
  st.title('Movie Recommender 🎬')
70
 
71
  # Provide the correct absolute paths to the pickled data
72
+ movie_list_path = "https://drive.google.com/file/d/1OmueIayrvczEQKRWIOfEkKH5zLWGxCn1/view?usp=drive_link"
73
+ similarity_path = "https://drive.google.com/file/d/1RI6XgtbaNxlBqZM0cznOZXN88tQWo98a/view?usp=drive_link"
74
 
75
  movies = pickle.load(open(movie_list_path, 'rb'))
76
  similarity = pickle.load(open(similarity_path, 'rb'))