RecSys.jl is an implementation of the algorithm from "Yunhong Zhou, Dennis Wilkinson, Robert Schreiber and Rong Pan. Large-Scale Parallel Collaborative Filtering for the Netflix Prize. Proceedings of the 4th international conference on Algorithmic Aspects in Information and Management. Shanghai, China pp. 337-348, 2008"
Pkg.clone("https://github.com/abhijithch/RecSys.jl.git")
$ julia -p 4
julia> @everywhere include(".julia/RecSys/src/EveryWhere.jl")
julia> using RecSys
julia> a = loadData("input.txt",'\t')
julia> x = ALSFactorization(a, 10, 1)
