tobiasaurer commited on
Commit
eb59333
1 Parent(s): ea43f50

minor changes to formatting

Browse files
pages/1 - Popularity-Based Recommender.py CHANGED
@@ -9,9 +9,11 @@ ratings = pd.read_csv('https://raw.githubusercontent.com/tobiasaurer/recommender
9
  st.title("Popularity-Based Recommender")
10
  st.write("""
11
  ### Instructions
12
- Move the slider to the desired number of recommendations you wish to receive.
13
- Afterwards, simply click the "Get Recommendations" button to receive recommendations of the most popular movies in our database.
14
- If you want, you can narrow it down by picking one or several genre(s).
 
 
15
  """)
16
 
17
  # FUNCTIONS:
 
9
  st.title("Popularity-Based Recommender")
10
  st.write("""
11
  ### Instructions
12
+ Move the slider to the desired number of recommendations you wish to receive.
13
+ Afterwards, simply click the "Get Recommendations" button to receive recommendations based on the most popular movies in our database.
14
+
15
+ __Optional__: You can narrow down the recommendations by picking one or several genre(s).
16
+ However, the more genres you choose, the fewer movies will be recommended.
17
  """)
18
 
19
  # FUNCTIONS:
pages/2 - User-Based Recommender.py CHANGED
@@ -25,11 +25,9 @@ st.write("""
25
  Type in the user-ID you want to receive recommendations for.
26
  Move the slider to the desired number of recommendations you wish to receive.
27
  Afterwards, simply click the "Get Recommendations" button to receive recommendations that are most suitable for the given user.
28
- """)
29
- st.write("""
30
- Optional: You can narrow down the recommendations by picking one or several genre(s).
31
 
32
- Note: The more genres you choose, the fewer movies will be recommended.
 
33
  """)
34
 
35
  # FUNCTIONS:
 
25
  Type in the user-ID you want to receive recommendations for.
26
  Move the slider to the desired number of recommendations you wish to receive.
27
  Afterwards, simply click the "Get Recommendations" button to receive recommendations that are most suitable for the given user.
 
 
 
28
 
29
+ __Optional__: You can narrow down the recommendations by picking one or several genre(s).
30
+ However, the more genres you choose, the fewer movies will be recommended.
31
  """)
32
 
33
  # FUNCTIONS:
pages/3 - Similarity-Based Recommender.py CHANGED
@@ -24,12 +24,10 @@ st.write("""
24
  ### Instructions
25
  Type in the title of a movie for which you would like to receive similar recommendations.
26
  Move the slider to the desired number of recommendations you wish to receive.
27
- Afterwards, simply click the "Get Recommendations" button to receive recommendations that are most similar to the given movie.
28
- """)
29
- st.write("""
30
- Optional: You can narrow down the recommendations by picking one or several genre(s).
31
 
32
- Note: The more genres you choose, the fewer movies will be recommended.
 
33
  """)
34
 
35
  # FUNCTIONS:
 
24
  ### Instructions
25
  Type in the title of a movie for which you would like to receive similar recommendations.
26
  Move the slider to the desired number of recommendations you wish to receive.
27
+ Afterwards, simply click the "Get Recommendations" button to receive recommendations that are most similar to the given movie.
 
 
 
28
 
29
+ __Optional__: You can narrow down the recommendations by picking one or several genre(s).
30
+ However, the more genres you choose, the fewer movies will be recommended.
31
  """)
32
 
33
  # FUNCTIONS: