{"id":23629681,"url":"https://github.com/ad1tyaraj/student-placement-model","last_synced_at":"2026-04-08T22:32:06.161Z","repository":{"id":278258269,"uuid":"915393054","full_name":"Ad1tyaRaj/Student-placement-model","owner":"Ad1tyaRaj","description":"Predicting student placement is a crucial step for universities and recruiters in understanding and enhancing the employability of students. This machine learning model uses CGPA and resume scores as input features to predict the likelihood of a student being placed.","archived":false,"fork":false,"pushed_at":"2025-01-11T18:36:21.000Z","size":6,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-23T21:52:51.729Z","etag":null,"topics":["django","flask","machine-learning","ml","python"],"latest_commit_sha":null,"homepage":"https://ad1tyaraj.github.io/Portfolio/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Ad1tyaRaj.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-11T18:19:53.000Z","updated_at":"2025-01-11T18:38:28.000Z","dependencies_parsed_at":"2025-02-18T20:44:52.727Z","dependency_job_id":"1cbf3305-c76e-4208-bcb2-9343fe5e75db","html_url":"https://github.com/Ad1tyaRaj/Student-placement-model","commit_stats":null,"previous_names":["ad1tyaraj/student-placement-model"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Ad1tyaRaj/Student-placement-model","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ad1tyaRaj%2FStudent-placement-model","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ad1tyaRaj%2FStudent-placement-model/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ad1tyaRaj%2FStudent-placement-model/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ad1tyaRaj%2FStudent-placement-model/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ad1tyaRaj","download_url":"https://codeload.github.com/Ad1tyaRaj/Student-placement-model/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ad1tyaRaj%2FStudent-placement-model/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280699779,"owners_count":26375697,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-23T02:00:06.710Z","response_time":142,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["django","flask","machine-learning","ml","python"],"created_at":"2024-12-28T01:16:52.072Z","updated_at":"2025-10-23T21:52:51.921Z","avatar_url":"https://github.com/Ad1tyaRaj.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"**Project Title**\n\n**Predicting Student Placement: CGPA and Resume Score**\n\n**Overview**\n\nThis project aims to create a machine learning model that can predict whether a student will be placed or not based on their CGPA and resume score.\n\n**Table of Contents**\n\n- [Project Description](https://github.com/Ad1tyaRaj/Student-placement-model#project-description)\n- [Technologies Used](https://github.com/Ad1tyaRaj/Student-placement-model#technologies-used)\n- [Dataset](https://github.com/Ad1tyaRaj/Student-placement-model#dataset)\n- [Installation Guide](https://github.com/Ad1tyaRaj/Student-placement-model#installation-guide)\n- [Usage](https://github.com/Ad1tyaRaj/Student-placement-model#usage)\n\n**Project Description**\n\nPredicting student placement is a crucial step for universities and recruiters in understanding and enhancing the employability of students. This machine learning model uses CGPA and resume scores as input features to predict the likelihood of a student being placed.\n\n**Features**\n\n- **Input Features**: CGPA, Resume Score\n- **Output**: Placement status (Placed/Not Placed)\n\n**Technologies Used**\n\n- Python\n- Scikit-learn\n- Pandas\n- Numpy\n- Matplotlib\n- Seaborn\n\n**Dataset**\n\nThe dataset contains information on students' CGPA and resume scores along with their placement status. It is sourced from university placement data and preprocessed for the model's use.\n\n**Dataset Structure**\n\n- **CGPA**: Cumulative Grade Point Average of the student\n- **Resume Score**: A score calculated based on resume attributes such as skills, projects, etc.\n- **Placement Status**: Binary target variable (Placed/Not Placed)\n\nThese models are trained to predict the placement status based on CGPA and resume score.\n\n**Installation Guide**\n\n1. Clone the repository:\n    \n    ```\n    git clone https://github.com/YourUsername/StudentPlacementPrediction.git\n    ```\n    \n2. Navigate to the project directory:\n    \n    ```\n    cd StudentPlacementPrediction\n    ```\n    \n3. Install required dependencies:\n    \n    ```\n    pip install -r requirements.txt\n    ```\n    \n\n**Usage**\n\n1. Prepare your data with CGPA and resume score.\n2. Load the trained model:\n    \n    ```\n    import pickle\n     import numpy as np\n     pipe = pickle.load(open('pipe.pkl','rb'))\n    ```\n    \n3. Use the model to predict placement:\n    \n    `input_data = [[cgpa, resume_score]]  # Replace with your data\n    prediction = model.predict(input_data)\n    print(prediction)`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fad1tyaraj%2Fstudent-placement-model","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fad1tyaraj%2Fstudent-placement-model","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fad1tyaraj%2Fstudent-placement-model/lists"}