Ive been looking over this for the past couple hours and think that there should be a better way of doing this.
{
updateRecs: false
// this will stop the update sequence for this rating
// and greatly speed up the time to input all the data
// however, there will not be any recommendations at the end.
// if you fire a like/dislike with updateRecs on it will only update
// recommendations for that user.
// default === true
}
I currently already have a dataset of ~115000 which takes quite a while to import without updateRecs off.
Im currently confused on how i would go about updating each user, would i have to fire 1 like or dislike for that user to update his sequence or how would that work.
Is there an update function for individual users or for the whole class having these would make this process a bit more logical / streamlined.
Ive been looking over this for the past couple hours and think that there should be a better way of doing this.
I currently already have a dataset of ~115000 which takes quite a while to import without updateRecs off.
Im currently confused on how i would go about updating each user, would i have to fire 1 like or dislike for that user to update his sequence or how would that work.
Is there an update function for individual users or for the whole class having these would make this process a bit more logical / streamlined.