nishantguvvada commited on
Commit
cae39ee
1 Parent(s): 356a794

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,7 +16,7 @@ movies_list=movies['title'].values
16
 
17
  st.header("Movie Recommender System")
18
 
19
- st.text('The recommendation system is a content filtering system. Cosine similarity is used as a measure of closeness')
20
 
21
  import streamlit.components.v1 as components
22
 
 
16
 
17
  st.header("Movie Recommender System")
18
 
19
+ st.text('The movie recommendation application is a content-based filtering system. The attributes of user watched movies which include the title and tags, are used to recommend movies. Cosine similarity is used as a degree of similarity in the vector space')
20
 
21
  import streamlit.components.v1 as components
22