English
Recommendation
Jmilagres commited on
Commit
064fa95
1 Parent(s): b60ceaf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -112,11 +112,11 @@ The databases (ml_100k, ml_1m and jester) are built-in the surprise package for
112
  self.df = pd.DataFrame(data.__dict__['raw_ratings'], columns=['user_id','item_id','rating','timestamp'])
113
  self.df.drop(columns=['timestamp'],inplace=True)
114
  self.df.rename({'user_id':'userID','item_id':'itemID'},axis=1,inplace=True)
115
- ````
116
 
117
  Hyperparameters -
118
- n_users` : number of simulated users in the database;
119
- n_ratings` : number of simulated rating events in the database.
120
 
121
  This is a fictional dataset based in the choice of an uniformly distributed random rating
122
  (from 1 to 5) for one of the simulated users of the recommender-system that is being designed in
 
112
  self.df = pd.DataFrame(data.__dict__['raw_ratings'], columns=['user_id','item_id','rating','timestamp'])
113
  self.df.drop(columns=['timestamp'],inplace=True)
114
  self.df.rename({'user_id':'userID','item_id':'itemID'},axis=1,inplace=True)
115
+ ```
116
 
117
  Hyperparameters -
118
+ n_users : number of simulated users in the database;
119
+ n_ratings : number of simulated rating events in the database.
120
 
121
  This is a fictional dataset based in the choice of an uniformly distributed random rating
122
  (from 1 to 5) for one of the simulated users of the recommender-system that is being designed in