{% extends "edx/base.html" %} {% load staticfiles %} {% block title %}Course Recommendation Demo{% endblock title %} {% block navbar %}{% endblock navbar %} {% block stylesheets %} {% endblock %} {% block content %}

Course Recommendation Demo

This is a demonstration of a very basic recommendation engine. The engine offers two types of recommendations:

Course-specific
Given a course, what other courses might interest a learner?
Learner-specific
Given a learner's current enrollments, what other courses might interest the learner?

In both cases recommendations are based upon the enrollments of other students. For example, say Students A and B are both enrolled in a run of CS50x. Student A is also enrolled in LFS101x (the Linux course). If Student C expresses an interest (e.g. views the about page or enrolls) in CS50x, we might also recommend LFS101x.

Notes

{% endblock content %} {% block javascript %} {% endblock javascript %}