Skip to content

Priyanka7011/Inclusion

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 

Repository files navigation

MyGit Explorer

An opensource community is a loosely organized, ad-hoc community of contributors from all over the world who share an interest in meeting a common need, ranging from minor projects to huge developments. The diverse and highly motivated open source community is the harbinger of innovation and collaboration in today's competitive world.

One of the main hectic things in open source is to find a good repository to contribute especially issues that fall under your skillsets. It becomes more painful with beginners as they go through the process of finding communities and projects to contribute. The similar issue is faced by maintainers and project-owners who find it laborious to find suitable contributors whose skills align with project requirements.

A lot of time and energy can be saved if users can get personalized recommendations based on their interests and activities.

Therefore we came with this end-to-end solution for a GitHub recommendation system known as OpenSource Buddy. It provides personalized recommendations to both the project owners and the contributors alike by leveraging various AI/ML tools for its purpose.

So let's unleash the world of open source by using personalized recommendation.

Features

  • Find projects
  • Find Contributors
  • Find Organisation

Project and Contributors recommendation use Context-Based recommendation model

For project recommendation it creates a corpus of description of all 900 repositories which are used to train the model . Corpus is created using Bag of words concept and then tf-idf is appliend on bag of words to find out the importance of each term in the context. After that Latent Semantic Indexing is applied to dentify patterns in the relationships between the terms and concepts contained in a corpus. Finally similarity between the user requirement and database repos is calculated using cosine similarity.

For Organisation recommendation we used user-user collaborative filtering model

For this we created user profile based on their activity and work done in past. Then we calculated cosine simalirity among all profiles and finally recommended those organisation where similar users are part of it.

How to Run Locally

  1. Clone the repo to your local system

    git clone https://github.com/Priyanka7011/Inclusion.git

  2. Go inside Recommender folder:

    cd Inclusion\recommender

  3. Create a virtual environment. You can use this link for reference.

    python -m venv env

  4. Activate your virtual environment using :

    source env/Scripts/activate

    Here venv is the name of virtual environment.

  5. Install all the requirements required to run the project :

    pip install -r requirements.txt

  6. Run the django server

    python manage.py runserver

Screenshots

Home Page

App Screenshot

Project repository recommendation

App Screenshot

Finding contributors form

App Screenshot

Contributors recommendation

App Screenshot

Organisation recommendation

App Screenshot

Tech Stack

Web framework: Django

Database: PostgreSQL

Backend : Django

Frontend : HTML/CSS/JS

API : Github API for collecting data

Authors

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors