{"id":28720218,"url":"https://github.com/tetsumichiumada/student_intervention","last_synced_at":"2026-05-16T01:33:13.415Z","repository":{"id":299062866,"uuid":"92998341","full_name":"TetsumichiUmada/student_intervention","owner":"TetsumichiUmada","description":"Identify students for interventions","archived":false,"fork":false,"pushed_at":"2017-06-01T00:40:20.000Z","size":64,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-05T00:42:01.083Z","etag":null,"topics":["machine-learning","python","scikit-learn","supervised-learning"],"latest_commit_sha":null,"homepage":"","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/TetsumichiUmada.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,"zenodo":null}},"created_at":"2017-05-31T23:47:37.000Z","updated_at":"2018-11-24T04:16:20.000Z","dependencies_parsed_at":"2025-06-14T12:43:28.823Z","dependency_job_id":"2953957a-8e14-4f60-a0df-d39b47bac85d","html_url":"https://github.com/TetsumichiUmada/student_intervention","commit_stats":null,"previous_names":["tetsumichiumada/student_intervention"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TetsumichiUmada/student_intervention","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TetsumichiUmada%2Fstudent_intervention","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TetsumichiUmada%2Fstudent_intervention/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TetsumichiUmada%2Fstudent_intervention/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TetsumichiUmada%2Fstudent_intervention/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TetsumichiUmada","download_url":"https://codeload.github.com/TetsumichiUmada/student_intervention/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TetsumichiUmada%2Fstudent_intervention/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33087028,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T20:25:35.270Z","status":"ssl_error","status_checked_at":"2026-05-15T20:25:34.732Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["machine-learning","python","scikit-learn","supervised-learning"],"created_at":"2025-06-15T06:30:24.956Z","updated_at":"2026-05-16T01:33:13.399Z","avatar_url":"https://github.com/TetsumichiUmada.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Building a Student Intervention System\n\nThe main objective of this project is to build a supervised learning model that identifies students who may need early interventions before they fail to graduate.\n\n## Software Requirements\n### Install\n\nThis project requires **Python 2.7** and the following Python libraries installed:\n\n- [NumPy](http://www.numpy.org/)\n- [Pandas](http://pandas.pydata.org)\n- [scikit-learn](http://scikit-learn.org/stable/)\n\nYou will also need to have software installed to run and execute a [Jupyter Notebook](http://ipython.org/notebook.html)\n\nIf you do not have Python installed yet, it is highly recommended that you install the [Anaconda](http://continuum.io/downloads) distribution of Python, which already has the above packages and more included. Make sure that you select the Python 2.7 installer and not the Python 3.x installer.\n\n### Code\n\nTemplate code is provided in the `student_intervention.ipynb` notebook file. You will also be required to use the `student-data.csv` dataset file to complete your work. While some code has already been implemented to get you started, you will need to implement additional functionality when requested to successfully complete the project.\n\n### Run\n\nIn a terminal or command window, navigate to the top-level project directory `student_intervention/` (that contains this README) and run one of the following commands:\n\n```bash\nipython notebook student_intervention.ipynb\n```  \nor\n```bash\njupyter notebook student_intervention.ipynb\n```\n\nThis will open the Jupyter Notebook software and project file in your browser.\n\n### Data\n\nThe dataset used in this project is included as `student-data.csv`. This dataset has the following attributes:\n\n- `school` : student's school (binary: \"GP\" or \"MS\")\n- `sex` : student's sex (binary: \"F\" - female or \"M\" - male)\n- `age` : student's age (numeric: from 15 to 22)\n- `address` : student's home address type (binary: \"U\" - urban or \"R\" - rural)\n- `famsize` : family size (binary: \"LE3\" - less or equal to 3 or \"GT3\" - greater than 3)\n- `Pstatus` : parent's cohabitation status (binary: \"T\" - living together or \"A\" - apart)\n- `Medu` : mother's education (numeric: 0 - none,  1 - primary education (4th grade), 2 - 5th to 9th grade, 3 - secondary education or 4 - higher education)\n- `Fedu` : father's education (numeric: 0 - none,  1 - primary education (4th grade), 2 - 5th to 9th grade, 3 - secondary education or 4 - higher education)\n- `Mjob` : mother's job (nominal: \"teacher\", \"health\" care related, civil \"services\" (e.g. administrative or police), \"at_home\" or \"other\")\n- `Fjob` : father's job (nominal: \"teacher\", \"health\" care related, civil \"services\" (e.g. administrative or police), \"at_home\" or \"other\")\n- `reason` : reason to choose this school (nominal: close to \"home\", school \"reputation\", \"course\" preference or \"other\")\n- `guardian` : student's guardian (nominal: \"mother\", \"father\" or \"other\")\n- `traveltime` : home to school travel time (numeric: 1 - \u003c15 min., 2 - 15 to 30 min., 3 - 30 min. to 1 hour, or 4 - \u003e1 hour)\n- `studytime` : weekly study time (numeric: 1 - \u003c2 hours, 2 - 2 to 5 hours, 3 - 5 to 10 hours, or 4 - \u003e10 hours)\n- `failures` : number of past class failures (numeric: n if 1\u003c=n\u003c3, else 4)\n- `schoolsup` : extra educational support (binary: yes or no)\n- `famsup` : family educational support (binary: yes or no)\n- `paid` : extra paid classes within the course subject (Math or Portuguese) (binary: yes or no)\n- `activities` : extra-curricular activities (binary: yes or no)\n- `nursery` : attended nursery school (binary: yes or no)\n- `higher` : wants to take higher education (binary: yes or no)\n- `internet` : Internet access at home (binary: yes or no)\n- `romantic` : with a romantic relationship (binary: yes or no)\n- `famrel` : quality of family relationships (numeric: from 1 - very bad to 5 - excellent)\n- `freetime` : free time after school (numeric: from 1 - very low to 5 - very high)\n- `goout` : going out with friends (numeric: from 1 - very low to 5 - very high)\n- `Dalc` : workday alcohol consumption (numeric: from 1 - very low to 5 - very high)\n- `Walc` : weekend alcohol consumption (numeric: from 1 - very low to 5 - very high)\n- `health` : current health status (numeric: from 1 - very bad to 5 - very good)\n- `absences` : number of school absences (numeric: from 0 to 93)\n- `passed` : did the student pass the final exam (binary: yes or no)\n\nThis project is a part of the Machine Learning Engineer Nanodegree program at [Udacity](https://www.udacity.com/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftetsumichiumada%2Fstudent_intervention","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftetsumichiumada%2Fstudent_intervention","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftetsumichiumada%2Fstudent_intervention/lists"}