{"id":23483623,"url":"https://github.com/mathealgou/ml-jobs","last_synced_at":"2026-06-23T13:32:01.167Z","repository":{"id":213880031,"uuid":"735156126","full_name":"mathealgou/ml-jobs","owner":"mathealgou","description":"This project is a machine learning exercise, the application receives a set of skills from the user and returns a job title that matches the skills entered. It uses the Random Forest algorithm to make the prediction base on a jobs dataset.","archived":false,"fork":false,"pushed_at":"2023-12-23T22:27:44.000Z","size":912,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-12T00:27:37.000Z","etag":null,"topics":["machine-learning","python","random-forest-classifier","scikit-learn"],"latest_commit_sha":null,"homepage":"","language":"Python","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/mathealgou.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}},"created_at":"2023-12-23T21:36:12.000Z","updated_at":"2023-12-23T22:14:58.000Z","dependencies_parsed_at":"2023-12-23T23:49:36.249Z","dependency_job_id":"4a8925a7-1e9f-46d7-b14d-06fbd84b7fe7","html_url":"https://github.com/mathealgou/ml-jobs","commit_stats":null,"previous_names":["mathealgou/ml-jobs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mathealgou/ml-jobs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathealgou%2Fml-jobs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathealgou%2Fml-jobs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathealgou%2Fml-jobs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathealgou%2Fml-jobs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mathealgou","download_url":"https://codeload.github.com/mathealgou/ml-jobs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathealgou%2Fml-jobs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34691740,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-23T02:00:07.161Z","response_time":65,"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":["machine-learning","python","random-forest-classifier","scikit-learn"],"created_at":"2024-12-24T21:13:40.451Z","updated_at":"2026-06-23T13:32:01.138Z","avatar_url":"https://github.com/mathealgou.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Job Searcher (Machine Learning exercise 🤖)\r\n\r\n## 📖 Description\r\n\r\nThis project is a machine learning exercise, the application receives a set of skills from the user and returns a job title that matches the skills entered. It uses the [Random Forest algorithm](https://en.wikipedia.org/wiki/Random_forest) to make the prediction base on a [jobs dataset](https://www.kaggle.com/datasets/bishop36/jobs-data). You can also watch the [demo video](https://www.youtube.com/watch?v=TaRlhW6fiT4\u0026ab_channel=MatheusGoulart).\r\n\r\n- [Job Searcher (Machine Learning exercise 🤖)](#job-searcher-machine-learning-exercise-)\r\n  - [📖 Description](#-description)\r\n  - [⚙️ Installation](#️-installation)\r\n    - [Requirements:](#requirements)\r\n    - [Steps:](#steps)\r\n  - [▶️ Usage](#️-usage)\r\n\r\n## ⚙️ Installation\r\n\r\n### Requirements:\r\n\r\nYou need to have [Python](https://www.python.org/downloads/) and [venv](https://docs.python.org/3/library/venv.html) installed in your computer.\r\n\r\n### Steps:\r\n\r\n1. Download and extract the project.\r\n\r\n2. Open a terminal and navigate to the project's directory. (Alternatively, navigate to the project's directory and open a terminal).\r\n\r\n3. Create a virtual environment with the following command:\r\n\r\n```bash\r\npython -m venv .venv\r\n```\r\n\r\n4. Activate the virtual environment with the following command:\r\n\r\nWindows:\r\n\r\n```bash\r\n.venv\\Scripts\\activate\r\n```\r\n\r\nLinux:\r\n\r\n```bash\r\nsource .venv/bin/activate\r\n```\r\n\r\n5. Install the project's dependencies with the following command:\r\n\r\n```bash\r\npip install -r requirements.txt\r\n```\r\n\r\n6. Run the application with the following command:\r\n\r\n```bash\r\npython main.py\r\n```\r\n\r\nNote that, if your terminal application is not set to do this automatically, you will need to activate the virtual environment every time run the application on a new terminal.\r\n\r\n## ▶️ Usage\r\n\r\n1. (Optional) Activate the virtual environment with the following command:\r\n\r\nWindows:\r\n\r\n```bash\r\n.venv\\Scripts\\activate\r\n```\r\n\r\nLinux:\r\n\r\n```bash\r\nsource .venv/bin/activate\r\n```\r\n\r\n2. Run the application with the following command:\r\n\r\n```bash\r\npython main.py\r\n```\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmathealgou%2Fml-jobs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmathealgou%2Fml-jobs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmathealgou%2Fml-jobs/lists"}