{"id":20382868,"url":"https://github.com/Tole-k/SageML","last_synced_at":"2025-05-08T09:32:28.464Z","repository":{"id":252847497,"uuid":"822820490","full_name":"Tole-k/SageML","owner":"Tole-k","description":"Library providing all necessary tools to use automatically adjusted Machine Learning techniques. We aim to simplify the process of user input to maximum.","archived":false,"fork":false,"pushed_at":"2025-05-07T23:22:19.000Z","size":10969,"stargazers_count":5,"open_issues_count":4,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-05-08T00:20:32.725Z","etag":null,"topics":["artificial-intelligence","automl","library","machine-learning","optimization","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":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Tole-k.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-07-01T22:36:07.000Z","updated_at":"2025-02-01T13:44:07.000Z","dependencies_parsed_at":"2024-08-28T21:35:38.851Z","dependency_job_id":"9dd485c1-b43b-4424-b65d-ef43b7a60298","html_url":"https://github.com/Tole-k/SageML","commit_stats":null,"previous_names":["tole-k/quick-ai","tole-k/turbo-ml","tole-k/sageml"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tole-k%2FSageML","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tole-k%2FSageML/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tole-k%2FSageML/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tole-k%2FSageML/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Tole-k","download_url":"https://codeload.github.com/Tole-k/SageML/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252978686,"owners_count":21834913,"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":["artificial-intelligence","automl","library","machine-learning","optimization","python","scikit-learn"],"created_at":"2024-11-15T02:19:23.556Z","updated_at":"2025-05-08T09:32:28.449Z","avatar_url":"https://github.com/Tole-k.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SageML\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/SageML)](https://pypi.org/project/SageML/)\n\n**SageML** is an out-of-the-box AutoML solution designed to simplify the machine learning workflow. With minimal user input, SageML automates model selection, hyperparameter optimization, and provides a trained machine learning model ready for deployment.\n\n## Table of Contents\n\n- [Features](#features)\n- [Installation](#installation)\n- [Quick Start](#quick-start)\n- [Usage](#usage)\n  - [Data Preprocessing](#data-preprocessing)\n  - [Model Selection](#model-selection)\n  - [Hyperparameter Optimization](#hyperparameter-optimization)\n  - [Model Evaluation](#model-evaluation)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Features\n\n- **Automatic Model Selection**: Chooses the best algorithm based on data characteristics with pre-trained neural network.\n- **Hyperparameter Optimization**: Utilizes Optuna for efficient hyperparameter tuning.\n- **Data Preprocessing**: Handles missing values, categorical encoding, and feature scaling automatically.\n- **Interactive Interface**: User-friendly terminal interface with tutorials and step-by-step guidance.\n- **Extensibility**: Modular architecture allows for easy customization and extension.\n- **Compatibility**: Supports a wide range of algorithms from scikit-learn, CatBoost, XGBoost, and more.\n\n## Installation\n\nSageML is available on PyPI. You can install it using `pip`:\n\n```bash\npip install sageml\n```\n\n\u003e **Note**: For the latest features and updates, you might want to install from the GitHub repository.\n\n## Quick Start\n\nHere's how you can get started with SageML in just a few lines of code:\n\n```python\nfrom sageml import SageML\nimport pandas as pd\n# Initialize SageML with your dataset\nsageml = SageML(pd.read_csv('classified/data.csv'), target='target')\n\n# Make predictions\npredictions = sageml.predict(pd.read_csv('not/classified/data.csv'))\n```\n\n## Usage\n\n### Data Preprocessing\n\nSageML automatically preprocesses your data to make it suitable for machine learning algorithms.\n\n- Handles missing values with appropriate imputation methods.\n- Encodes categorical variables using techniques like One-Hot Encoding.\n- Scales numerical features for algorithms sensitive to feature scales.\n\n### Model Selection\n\n- Analyzes data characteristics (e.g., number of features, class balance).\n- Selects suitable algorithms from a pool that includes scikit-learn classifiers/regressors, CatBoost, XGBoost, etc.\n- Supports both classification and regression tasks.\n\n### Hyperparameter Optimization\n\n- Utilizes Optuna for efficient hyperparameter optimization.\n- Employs advanced features like pruning to reduce computation time.\n\n### Model Evaluation\n\n- Allows selection of evaluation metrics from scikit-learn or custom weighted sums.\n- Supports cross-validation and hold-out validation strategies.\n\n## Documentation\n\nDetailed documentation should be available soon.\n\n## Contributing\n\nWe welcome contributions from the community!\n\n- **Bug Reports \u0026 Feature Requests**: Use the [GitHub Issues](https://github.com/Tole-k/SageML/issues) to report bugs or suggest features.\n\n## License\n\nSageML is licensed under the [GNU General Public License v3.0](LICENSE).\n\n---\n\n*Disclaimer: This project is under active development. Features and interfaces are subject to change.*\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTole-k%2FSageML","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FTole-k%2FSageML","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTole-k%2FSageML/lists"}