Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Mineiro <paul-github@mineiro.com>2013-12-22 09:25:36 +0400
committerPaul Mineiro <paul-github@mineiro.com>2013-12-22 09:25:36 +0400
commitfe038a4046b31318b4d9604832003c444f856c31 (patch)
treed8f46ed856cd211aa89221d706ac51f32fa1c94b
parent6fca859f04a2b4d327d9c09c98229fa99bbd87e1 (diff)
movielens demo
-rwxr-xr-xdemo/movielens/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/demo/movielens/README.md b/demo/movielens/README.md
index 9a92d98a..1410ffbd 100755
--- a/demo/movielens/README.md
+++ b/demo/movielens/README.md
@@ -26,7 +26,7 @@ of flattery.
- `make shootout`: eventually produces three results indicating test MAE (mean absolute error) on movielens-1M for
- linear: a model without any interactions. basically this creates a user bias and item bias fit. this is a surprisingly strong baseline in terms of MAE, but is useless for recommendation as it induces the same item ranking for all users. It achieves test MAE of 0.733 (at the time of this writing).
- lrq: the linear model augmented with rank-5 interactions between users and movies, aka, "five latent factors". It achieves test MAE of 0.716. I determined that 5 was the best number to use through experimentation.
- - lrqdropout: the linear model augmented with rank-10 interactions between users and movies, and trained with dropout. It achieves test MAE of 0.693. Dropout effectively halves the number of latent factors, and unsurprisingly 10 factors seem to work best.
+ - lrqdropout: the linear model augmented with rank-10 interactions between users and movies, and trained with dropout. It achieves test MAE of 0.693. Dropout effectively halves the number of latent factors, so unsurprisingly 10 factors seem to work best.
- the first time you invoke `make shootout` there is a lot of other output. invoking it a second time will allow you to just see the cached results.
Details about how `vw` is invoked is in the `Makefile`.