rocket

David Ng

Blog Projects AboutRSS

Building a machine learning recommender using Recommendation.jl

  • ml
  • ai
  • machinelearning
  • dev

Recommendation.jl is a Julia package for building recommender systems.

Julia

To begin, you will need to get Juila. Julia is a new (2012) programming language developed by computer scientists at MIT widely used for data science.

Download Julia at Julialang.org

Recommendation.jl Installation

julia> using Pkg; Pkg.add("Recommendation")

Import

using Recommendation

Import data

WIP

All in one

WIP

Use in your application

The most tricky part for machine learning is always application. How could you apply the trained model in your applications?

Let’s assume we have a web app.

WIP