{"id":28619053,"url":"https://github.com/itbert/hyperboost","last_synced_at":"2026-03-06T10:05:58.448Z","repository":{"id":292595490,"uuid":"981369876","full_name":"itbert/hyperboost","owner":"itbert","description":"Инструмент для оптимизации гиперпараметров с использованием байесовской оптимизации и эволюционных алгоритмов","archived":false,"fork":false,"pushed_at":"2025-05-23T22:35:11.000Z","size":22,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-21T17:38:55.293Z","etag":null,"topics":["ml","optimizer"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/itbert.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":"2025-05-11T00:21:10.000Z","updated_at":"2025-05-23T22:35:14.000Z","dependencies_parsed_at":null,"dependency_job_id":"c3ac6db5-5d01-465c-87e3-739b3326fd5b","html_url":"https://github.com/itbert/hyperboost","commit_stats":null,"previous_names":["itbert/hyperboost"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/itbert/hyperboost","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itbert%2Fhyperboost","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itbert%2Fhyperboost/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itbert%2Fhyperboost/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itbert%2Fhyperboost/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/itbert","download_url":"https://codeload.github.com/itbert/hyperboost/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itbert%2Fhyperboost/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30171657,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T07:56:45.623Z","status":"ssl_error","status_checked_at":"2026-03-06T07:55:55.621Z","response_time":250,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["ml","optimizer"],"created_at":"2025-06-12T04:20:10.822Z","updated_at":"2026-03-06T10:05:58.415Z","avatar_url":"https://github.com/itbert.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# hyperboost\n\nПодходит как для исследовательских задач, так и для практического использования в реальных проектах.\n\n\n## ✅ Поддерживаемые методы\n\n| Метод                  | Описание |\n|------------------------|----------|\n| `BayesianOptimizer`    | Байесовская оптимизация с использованием Gaussian Process |\n| `EvolutionaryOptimizer` | Простой генетический алгоритм (GA) |\n\n\n## 📦 Установка\n\n```bash\npip install hyperboost\n```\n\n## 🧪 Пример использования\n\n```python\nfrom sklearn.datasets import load_iris\nfrom sklearn.ensemble import RandomForestClassifier\nfrom sklearn.model_selection import train_test_split\nfrom hyperboost.space import SearchSpace\nfrom hyperboost.space import Real, Integer, Categorical\nfrom hyperboost.optimizers import BayesianOptimizer\nfrom hyperboost.optimizers import EvolutionaryOptimizer\n\nX, y = load_iris(return_X_y=True)\nX_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)\n\nspace = SearchSpace({\n    \"n_estimators\": Integer(50, 300),\n    \"max_depth\": Integer(3, 20),\n    \"criterion\": Categorical([\"gini\", \"entropy\"]),\n})\n\ndef objective(params):\n    model = RandomForestClassifier(**params, random_state=42)\n    model.fit(X_train, y_train)\n    score = model.score(X_test, y_test)\n    return -score  # минимизируем ошибку\n\n# Байесовская оптимизация\nbo = BayesianOptimizer(space, objective)\nbest_bo = bo.optimize(n_iter=30)\nprint(\"Bayesian best:\", best_bo)\n\n# Эволюционный алгоритм\nea = EvolutionaryOptimizer(space, objective)\nbest_ea = ea.optimize(population_size=20, generations=10)\nprint(\"Evolutionary best:\", best_ea)\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitbert%2Fhyperboost","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitbert%2Fhyperboost","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitbert%2Fhyperboost/lists"}