seyia92coding commited on
Commit
f2b7050
1 Parent(s): f4f5441

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -15,10 +15,10 @@ from sklearn.metrics.pairwise import cosine_similarity
15
  from fuzzywuzzy import fuzz
16
  import gradio as gr
17
 
18
- meta_df = pd.read_csv("/content/Metacritic_Scores_File.csv", error_bad_lines=False, encoding='utf-8')
19
  meta_df = meta_df[['game', 'reviewer_ID', 'score']]
20
 
21
- df_game_names = pd.read_csv("/content/Game_Titles_IDs.csv", error_bad_lines=False, encoding='utf-8')
22
 
23
  #We will create a pivot table of users as rows and games as columns.
24
  #The pivot table will help us make the calcuations of similarity between the reviewers.
 
15
  from fuzzywuzzy import fuzz
16
  import gradio as gr
17
 
18
+ meta_df = pd.read_csv("Metacritic_Scores_File.csv", error_bad_lines=False, encoding='utf-8')
19
  meta_df = meta_df[['game', 'reviewer_ID', 'score']]
20
 
21
+ df_game_names = pd.read_csv("Game_Titles_IDs.csv", error_bad_lines=False, encoding='utf-8')
22
 
23
  #We will create a pivot table of users as rows and games as columns.
24
  #The pivot table will help us make the calcuations of similarity between the reviewers.