Skip to content
/ couReco Public

A basic Course Recommendation app project built with Streamlit

Notifications You must be signed in to change notification settings

ry05/couReco

Repository files navigation

CouReco 🎓

Building a Simple Course Recommendation system for online courses

About the Project

CouReco is a minimalistic system built on the idea to help learners navigate through the courses on Coursera, aided by a data-driven strategy. Currently, CouReco only performs the task of identifying the most similar and most dissimilar courses to a selected course that is chosen by the learner from a pool of courses relevant to the skills the learner is interested in.

NOTE: This is a personal project initiated with the author's requirement for an end-to-end data science project that could help learn the skills of creating a dataset through web scraping, deploying a web-app via Streamlit and a basic primer into content-based recommendation systems. Though this tool makes reasonable recommendations as of now, it is far from being "intelligent". However, you could download this repo and work on it and make it "smarter"! 😄

Dataset Used

For the purpose of building CouReco, data from Coursera was scraped using the requests and beautifulsoup4 libraries. The scraper.py file contains code for scraping data from https://www.coursera.org/courses and generates coursera-courses-overview.csv. The course_scraper.py file contains code to scrape details of each individual course and the output is coursera-individual-courses.csv.

Both these above datasets have been combined to give coursera-courses.csv. This file consists of 1000 instances and 14 features and has a size of 1.41 MB.

Features in the Dataset

The following features have been extracted for the dataset created above:

course_url: The URL to the course homepage
course_name: The name of the course
learning_product: The type of product that the instance is. It can be a course, professional certificate or a specialization. (While all instances of the dataset are referred to as courses , this is not be confused with the learning_product of a particular instance)
course_provided_by: The organization/partner that is providing the course
course_rating: Overall rating of the course
course_rated_by: The number of students who have rated the course
enrolled_student_count: The number of learners who have enrolled into this course
course_difficulty: The difficulty level of the course. It can take values of beginner, intermeditae, advanced and mixed
skills: The main skills that the course works at developing in a learner
description: About the course
percentage_of_new_career_starts: Percentage of learners who have had a new career start after completing this course
percentage_of_pay_increase_or_promotion: Percentage of learners who have had a pay increment or received a promotion after completing this course
estimated_time_to_complete: The estimated tome to complete the course
instructors: The instructors taking the course

Usage

The instructions to run CouReco on your local system are as follows:

  1. Create a virtual environment on your local system to install this project's dependencied and run it
  2. Download or clone this repository into your virtual environment
  3. Run the following command to install necessary libraries for CouReco to run
pip install -r requirements.txt
  1. Run the streamlit app with
streamlit run recommender.py
  1. The app should open at http:https://localhost:8501

Screenshots


Fig.1. The CouReco Interface
Fig.2. Applying the Skill Filter
Fig.3. Recommendations Generated

What can CouReco do?

In a nutshell CouReco can perform the following tasks:

  • Select courses for you based on the skills you want to learn
  • Recommend courses that are most similar and dissimilar to the course you select

References

If you liked the concept and implementation of CouReco, do check out the following resources that provided me with some much needed help while working on this:

About

A basic Course Recommendation app project built with Streamlit

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages