{"id":13751822,"url":"https://github.com/augboost-anon/augboost","last_synced_at":"2025-05-09T18:32:22.708Z","repository":{"id":55041351,"uuid":"172386077","full_name":"augboost-anon/augboost","owner":"augboost-anon","description":"Gradient Boosting Enhanced with Step-Wise Feature Augmentation","archived":false,"fork":false,"pushed_at":"2021-01-13T14:43:55.000Z","size":53,"stargazers_count":16,"open_issues_count":3,"forks_count":17,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-08-03T09:03:18.804Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/augboost-anon.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}},"created_at":"2019-02-24T20:24:35.000Z","updated_at":"2024-02-29T04:52:12.000Z","dependencies_parsed_at":"2022-08-14T09:50:52.401Z","dependency_job_id":null,"html_url":"https://github.com/augboost-anon/augboost","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/augboost-anon%2Faugboost","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/augboost-anon%2Faugboost/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/augboost-anon%2Faugboost/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/augboost-anon%2Faugboost/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/augboost-anon","download_url":"https://codeload.github.com/augboost-anon/augboost/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224876976,"owners_count":17384699,"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":[],"created_at":"2024-08-03T09:00:55.332Z","updated_at":"2024-11-16T04:31:44.652Z","avatar_url":"https://github.com/augboost-anon.png","language":"Python","funding_links":[],"categories":["梯度提升和树模型"],"sub_categories":[],"readme":"# AugBoost\nGradient Boosting Enhanced with Step-Wise Feature Augmentation. \n## About\nThe code in this repository is based heavily on scikit-learn's 'gradient_boosting.py'. \nWe started this as a fork of sklearn, but split away when we saw it would be more convenient. Thanks! =]\n\n## Prerequisites\n* Python 3.6.5 (Ubuntu)\n* sklearn.__version__ = '0.19.1'\n* keras.__version__ = '2.2.0'\n* tensorflow.__version__ = '1.8.0'\n\nAnd a number of small packages which are included in Anaconda.\nThe most important prerequisite is probably the version of sklearn, although we haven't checked if any of them are necessary.\n\n## Getting Started\nAfter cloning the repository, the 2 modules in can be imported using these lines of code:\n```python\nfrom AugBoost import AugBoostClassifier as ABC\nfrom AugBoost import AugBoostRegressor as ABR    #regression module has an issue and doesn't work yet\n```\nMeanwhile, only the code for classification tasks works =[\n\nCreate your model using code that looks like this:\n\n```python\nmodel = ABC(n_estimators=10, max_epochs=1000, learning_rate=0.1, \\\n    n_features_per_subset=round(len(X_train.columns)/3), trees_between_feature_update=10,\\\n    augmentation_method='nn', save_mid_experiment_accuracy_results=False)\n```\nAnd then train and predict like this:\n```python\nmodel.fit(X_train, y_train)\nmodel.predict(X_val)\n```\n\nIn the file 'notebook for experiments.ipynb' there is example of code for running experiments with AugBoost.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faugboost-anon%2Faugboost","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faugboost-anon%2Faugboost","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faugboost-anon%2Faugboost/lists"}