{"id":20433331,"url":"https://github.com/jpcadena/hackathon-kin","last_synced_at":"2026-04-07T20:31:19.395Z","repository":{"id":68396389,"uuid":"587902257","full_name":"jpcadena/hackathon-kin","owner":"jpcadena","description":"Hackathon Kin: Customers churn (Finance and Risk).","archived":false,"fork":false,"pushed_at":"2023-01-11T22:20:26.000Z","size":3129,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-05T06:23:09.007Z","etag":null,"topics":["algorithms","ann","churn-prediction","classification","data-science","keras","machine-learning","python","scikit-learn","supervised-learning","tensorflow"],"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/jpcadena.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":"2023-01-11T21:19:21.000Z","updated_at":"2023-01-11T21:50:26.000Z","dependencies_parsed_at":"2023-04-13T04:32:45.145Z","dependency_job_id":null,"html_url":"https://github.com/jpcadena/hackathon-kin","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jpcadena/hackathon-kin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpcadena%2Fhackathon-kin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpcadena%2Fhackathon-kin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpcadena%2Fhackathon-kin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpcadena%2Fhackathon-kin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jpcadena","download_url":"https://codeload.github.com/jpcadena/hackathon-kin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpcadena%2Fhackathon-kin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31528262,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"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":["algorithms","ann","churn-prediction","classification","data-science","keras","machine-learning","python","scikit-learn","supervised-learning","tensorflow"],"created_at":"2024-11-15T08:18:39.351Z","updated_at":"2026-04-07T20:31:19.377Z","avatar_url":"https://github.com/jpcadena.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# hackathon-kin\r\n\r\n## Hackathon Kin: Customers churn (Finance and Risk).\r\n\r\nClassification project based on Supervised Machine Learning using Logistic\r\nRegression, Random Forest, K-Neighbours, SVC, Decision Tree, Gradient Boosting,\r\nXGB, LGBM, Cat Boost, Ada Boost and ANN.\\\r\n\r\n![Churn](https://www.diplomadosonline.com/wp-content/uploads/2020/09/customer-churn-imagen.jpeg)\r\n\r\n\r\n### Requirements\r\n\r\nPython 3.10+\r\n\r\n### Git\r\n\r\n- First, clone repository:\r\n\r\n```\r\ngit clone https://github.com/jpcadena/hackathon-kin.git\r\n```\r\n\r\n- Change directory to root project with:\r\n\r\n```\r\n  cd hackathon-kin\r\n\r\n```\r\n\r\n- Create your git branch with the following:\r\n\r\n```\r\ngit checkout -b \u003cnew_branch\u003e\r\n```\r\n\r\nFor _\u003cnew_branch\u003e_ use some convention as following:\r\n\r\n```\r\nyourgithubusername\r\n```\r\n\r\nOr if some work in progress (WIP) or bug shows up, you can use:\r\n\r\n```\r\nyourgithubusername_feature\r\n```\r\n\r\n- Switch to your branch:\r\n\r\n```\r\ngit checkout \u003cnew_branch\u003e\r\n```\r\n\r\n- **Before** you start working on some section, retrieve the latest changes\r\n  with:\r\n\r\n```\r\ngit pull\r\n```\r\n\r\n- Add your new files and changes:\r\n\r\n```\r\ngit add .\r\n```\r\n\r\n- Make your commit with a reference message about the fix/changes.\r\n\r\n```\r\ngit commit -m \"Commit message\"\r\n```\r\n\r\n- First push for remote branch:\r\n\r\n```\r\ngit push --set-upstream origin \u003cnew_branch\u003e\r\n```\r\n\r\n- Latter pushes:\r\n\r\n```\r\ngit push origin\r\n```\r\n\r\n### Environment\r\n\r\n- Create a **virtual environment** 'sample_venv' with:\r\n\r\n```\r\npython3 -m venv sample_venv\r\n```\r\n\r\n- Activate environment in Windows with:\r\n\r\n```\r\n.\\sample_venv\\Scripts\\activate\r\n```\r\n\r\n- Or with Unix or Mac:\r\n\r\n```\r\nsource sample_venv/bin/activate\r\n```\r\n\r\n### Installation of libraries and dependencies\r\n\r\n```\r\npip install -r requirements.txt\r\n```\r\n\r\n### Execution\r\n\r\n```\r\npython main.py\r\n```\r\n\r\n\r\n### Documentation\r\n\r\nUse docstrings with **reStructuredText** format by adding triple double quotes\r\n**\"\"\"** after function definition.\\\r\nAdd a brief function description, also for the parameters including the return\r\nvalue and its corresponding data type.\r\n\r\n### Additional information\r\n\r\nIf you want to give more style and a better format to this README.md file,\r\ncheck documentation\r\nat [GitHub Docs](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax).\\\r\nPlease use **linting** to check your code quality\r\nfollowing [PEP 8](https://peps.python.org/pep-0008/). Check documentation\r\nfor [Visual Studio Code](https://code.visualstudio.com/docs/python/linting#_run-linting)\r\nor\r\nfor [Jetbrains Pycharm](https://github.com/leinardi/pylint-pycharm/blob/master/README.md).\\\r\nRecommended plugin for\r\nautocompletion: [Tabnine](https://www.tabnine.com/install)\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjpcadena%2Fhackathon-kin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjpcadena%2Fhackathon-kin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjpcadena%2Fhackathon-kin/lists"}