{"id":34748931,"url":"https://github.com/hrolfrc/score-regression","last_synced_at":"2026-05-25T02:34:42.805Z","repository":{"id":185999252,"uuid":"673864536","full_name":"hrolfrc/score-regression","owner":"hrolfrc","description":"Classifier that maximizes score as a function of features.","archived":false,"fork":false,"pushed_at":"2023-08-28T22:10:23.000Z","size":82,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-04-17T19:16:31.746Z","etag":null,"topics":["classification-algorithm"],"latest_commit_sha":null,"homepage":"https://www.nature.com/articles/s41598-022-09415-2","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hrolfrc.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}},"created_at":"2023-08-02T15:41:57.000Z","updated_at":"2024-04-17T19:16:31.747Z","dependencies_parsed_at":null,"dependency_job_id":"444afdd9-8cd6-4866-9a57-f92ba5390dc5","html_url":"https://github.com/hrolfrc/score-regression","commit_stats":null,"previous_names":["hrolfrc/score-regression"],"tags_count":0,"template":false,"template_full_name":"hrolfrc/sppam","purl":"pkg:github/hrolfrc/score-regression","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hrolfrc%2Fscore-regression","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hrolfrc%2Fscore-regression/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hrolfrc%2Fscore-regression/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hrolfrc%2Fscore-regression/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hrolfrc","download_url":"https://codeload.github.com/hrolfrc/score-regression/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hrolfrc%2Fscore-regression/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33458361,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-25T02:24:28.008Z","status":"ssl_error","status_checked_at":"2026-05-25T02:23:23.339Z","response_time":57,"last_error":"SSL_read: 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":["classification-algorithm"],"created_at":"2025-12-25T04:57:41.206Z","updated_at":"2026-05-25T02:34:42.800Z","avatar_url":"https://github.com/hrolfrc.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Quick Start\n\n```python\nfrom score_regression import ScoreRegression\nfrom sklearn.datasets import make_classification\nfrom sklearn.model_selection import train_test_split\n```\n\n#### Make a classification problem\n\n```python\nseed = 42\nX, y = make_classification(\n    n_samples=30,\n    n_features=5,\n    n_informative=2,\n    n_redundant=2,\n    n_classes=2,\n    random_state=seed\n)\nX_train, X_test, y_train, y_test = train_test_split(X, y, random_state=seed)\n```\n\n#### Train the classifier\n\n```python\ncls = ScoreRegression().fit(X_train, y_train)\n```\n\n#### Get the score on unseen data\n\n```python\ncls.score(X_test, y_test)\n```\n\n    1.0\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhrolfrc%2Fscore-regression","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhrolfrc%2Fscore-regression","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhrolfrc%2Fscore-regression/lists"}