spelling error: colloborative -> collaborative (#708)

This commit is contained in:
drake7707 2019-10-22 17:33:37 +02:00 коммит произвёл Justin Ormont
Родитель b965e33b1b
Коммит c89e5eaeb9
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -21,15 +21,15 @@ The sample takes insipiration from the popular Netflix application and even thou
* Recommendation Model
* The application builds a recommendation model using the MovieLens dataset. The model training code shows
uses colloborative filtering based recommendation approach.
uses collaborative filtering based recommendation approach.
## How does it work?
## Model Training
Movie Recommender uses Colloborative Filtering for recommendations.
Movie Recommender uses Collaborative Filtering for recommendations.
The underlying assumption with Colloborative filtering is that if a person A (e.g. Amy) has the same opinion as a person B (e.g. Cesar) on an issue, A (Amy) is more likely to have Bs (Cesar) opinion on a different issue than that of a random person.
The underlying assumption with Collaborative filtering is that if a person A (e.g. Amy) has the same opinion as a person B (e.g. Cesar) on an issue, A (Amy) is more likely to have Bs (Cesar) opinion on a different issue than that of a random person.
For this sample we make use of the http://files.grouplens.org/datasets/movielens/ml-latest-small.zip dataset.