{"id":14958355,"url":"https://github.com/ozguraslank/flexml","last_synced_at":"2025-07-18T18:34:24.825Z","repository":{"id":255090963,"uuid":"817982466","full_name":"ozguraslank/flexml","owner":"ozguraslank","description":"Easy-to-use and flexible AutoML library for Python","archived":false,"fork":false,"pushed_at":"2025-04-10T20:52:43.000Z","size":1313,"stargazers_count":18,"open_issues_count":4,"forks_count":4,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-10T21:35:42.216Z","etag":null,"topics":["automl","data-science","machine-learning","python","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":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ozguraslank.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-06-20T21:26:15.000Z","updated_at":"2025-04-08T23:00:05.000Z","dependencies_parsed_at":"2024-11-29T20:21:20.996Z","dependency_job_id":"64274479-0a9f-4bd9-9b4b-cbec3c2a8832","html_url":"https://github.com/ozguraslank/flexml","commit_stats":{"total_commits":91,"total_committers":4,"mean_commits":22.75,"dds":"0.13186813186813184","last_synced_commit":"e0008f016a892e6ca5dffc574de482fd94d437e2"},"previous_names":["ozguraslank/flexml"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/ozguraslank/flexml","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozguraslank%2Fflexml","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozguraslank%2Fflexml/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozguraslank%2Fflexml/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozguraslank%2Fflexml/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ozguraslank","download_url":"https://codeload.github.com/ozguraslank/flexml/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozguraslank%2Fflexml/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265810135,"owners_count":23831946,"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","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":["automl","data-science","machine-learning","python","scikit-learn"],"created_at":"2024-09-24T13:16:49.743Z","updated_at":"2025-07-18T18:34:24.819Z","avatar_url":"https://github.com/ozguraslank.png","language":"Python","funding_links":[],"categories":["C++"],"sub_categories":["[Tools](#tools-1)"],"readme":"![](https://img.shields.io/pypi/v/flexml.svg) ![Python versions](https://img.shields.io/pypi/pyversions/flexml) [![Code Coverage](https://codecov.io/gh/ozguraslank/flexml/branch/main/graph/badge.svg)](https://codecov.io/gh/ozguraslank/flexml)\n# FlexML\n\n\u003cdiv align=\"center\"\u003e\n\u003cimg src=\"img/flexml_banner.jpeg\" alt=\"drawing\" width=\"500\"/\u003e\n\u003c/div\u003e\n\n## Introduction\n\nFlexML is an easy-to-use and flexible AutoML library for Python that simplifies the process of building machine learning models. It automates model selection and hyperparameter tuning, offering users the flexibility to customize the size of their experiments by allowing to train all available models in the library or only a subset of them for faster results, FlexML adapts to your needs! \u003cbr\u003e \u003cbr\u003e\nAt the moment, FlexML supports only regression and classification tasks and offers two experiment modes; 'quick' and 'wide' allowing users to choose between fitting the most used machine learning models in the field or the full range of models available in the library.\n\n## How to Install\n\n```bash\npip install flexml\n```\n\n## Start Guide with Regression Experiment\n\n```python\n# Experiment for a Regression problem on California House Value Prediction dataset in Quick mode\n\nfrom flexml import Regression\nfrom sklearn.datasets import fetch_california_housing\n\ndf = fetch_california_housing(as_frame=True)['frame']\n\nreg_exp = Regression(df, target_col=\"MedHouseVal\")\nreg_exp.start_experiment()\n```\n--\u003e Once **start_experiment()** process finishes, you will see the model leaderboard as below: \u003cbr\u003e\n\u003cdiv align=\"left\"\u003e\n\u003cimg src=\"img/start_guide_reg_output.jpg\" alt=\"drawing\" width=\"400\"/\u003e\n\u003c/div\u003e\n\n```python\n# Get the best model\nbest_model = reg_exp.get_best_models()\n\n# Get the best model by name (Alternative)\nbest_model = reg_exp.get_model_by_name(\"CatBoostRegressor\")\n\n# Tune model (default model is the best model and randomized search for tuning)\nreg_exp.tune_model()\n```\n\n--\u003e Once **tune_model()** process finishes, you will see the updated model leaderboard as below: \u003cbr\u003e\n\u003cdiv align=\"left\"\u003e\n\u003cimg src=\"img/start_guide_reg_tuning_output.jpg\" alt=\"drawing\" width=\"500\"/\u003e\n\u003c/div\u003e\n\n\u003cbr\u003e\nYou can also take a look to jupyter notebook files in the \u003cb\u003e'notebooks'\u003c/b\u003e folder in the repository for more detailed explanations of the usage\n\n## How to Contribute:\n\n1. **Fork the repository:** Click on the 'Fork' button at the top right corner of the GitHub repository page\n2. **Create a new branch:** Name your branch descriptively based on the feature or fix you're working on\n3. **Make your changes:** Write code and tests to add your feature or fix the issue\n   - You can take a look to **tests** folder in the repository to reach the current unittests\n4. **Run tests:** Ensure all existing and new tests pass\n5. **Submit a pull request:** Open a pull request with a clear description of your changes","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fozguraslank%2Fflexml","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fozguraslank%2Fflexml","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fozguraslank%2Fflexml/lists"}