{ "info": { "author": "Chen Wang", "author_email": "chen.wang.cs@rutgers.edu", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "# Imbalance-Xgboost\nThis software includes the codes of Weighted Loss and Focal Loss [1] implementations for Xgboost [2](<\\url> https://github.com/dmlc/xgboost) in binary classification problems. The principal reason for us to use Weighted and Focal Loss functions is to address the problem of label-imbalanced data. The original Xgboost program provides a convinient way to customize the loss function, but one will be needing to compute the first and second order derivatives to implement them. The major contribution of the software is the drivation of the gradients and the implementations of them.
\n\n## Software Release\n**The project has been posted on github for several months, and now a correponding API on Pypi is released. Special thanks to @icegrid and @shaojunchao for help correct errors in the previous versions. The codes are now updated to version 0.7 and it now allows users to specify the weighted parameter \\alpha and focal parameter \\gamma outside the script. Also it supports higher version of XGBoost now.**
\n\n## Version Notification\n**From version 0.7.0 on Imbalance-XGBoost starts to support higher versions of XGBoost and removes supports of versions earlier than 0.4a30(XGBoost>=0.4a30). This contradicts with the previous requirement of XGBoost<=0.4a30. Please choose the version fits your system accordingly.**\n\n## Installation\nInstalling with Pypi will be easiest way, you can run:
\n\n```\npip install imbalance-xgboost\n```\nIf you have multiple versions of Python, make sure you're using Python 3 (run with `pip3 install imbalance-xgboost`). Currently, the program only supports Python 3.5 and 3.6.
\n\nThe package has hard depedency on numpy, sklearn and xgboost.
\n\n## Usage\nTo use the wrapper, one needs to import *imbalance_xgboost* from module **imxgboost.imbalance_xgb**. An example is given as bellow:
\n\n```Python\nfrom imxgboost.imbalance_xgb import imbalance_xgboost as imb_xgb\n```\nThe specific loss function could be set through *special_objective* parameter. Specificly, one could construct a booster with:
\n```Python\nxgboster = imb_xgb(special_objective='focal')\n```\nfor *focal loss* and
\n```Python\nxgboster = imb_xgb(special_objective='weighted')\n```\nfor *weighted* loss. The prarameters $\\alpha$ and $\\gamma$ can be specified by giving a value when constructing the object. In addition, the class is designed to be compatible with scikit-learn package, and you can treat it as a sk-learn classifier object. Thus, it will be easy to use methods in Sklearn such as *GridsearchCV* to perform grid search for the parameters of focal and weighted loss functions.
\n```Python\nfrom sklearn.model_selection import GridSearchCV\nxgboster_focal = imb_xgb(special_objective='focal')\nxgboster_weight = imb_xgb(special_objective='weighted')\nCV_focal_booster = GridSearchCV(xgboster_focal, {\"focal_gamma\":[1.0,1.5,2.0,2.5,3.0]})\nCV_weight_booster = GridSearchCV(xgboster_weight, {\"imbalance_alpha\":[1.5,2.0,2.5,3.0,4.0]})\n```\nThe data fed to the booster should be of numpy type and following the convention of:
\nx: [nData, nDim]
\ny: [nData,]
\nIn other words, the x_input should be row-major and labels should be flat.
\nAnd finally, one could fit the data with Cross-validation and retreive the optimal model:
\n```Python\nCV_focal_booster.fit(records, labels)\nCV_weight_booster.fit(records, labels)\nopt_focal_booster = CV_focal_booster.best_estimator_\nopt_weight_booster = CV_weight_booster.best_estimator_\n```\nAfter getting the optimal booster, one will be able to make predictions. There are following methods to make predictions with imabalnce-xgboost:
\nMethod `predict`
\n```Python\nraw_output = opt_focal_booster.predict(data_x, y=None) \n```\nThis will return the value of 'zi' before applying sigmoid.
\nMethod `predict_sigmoid`
\n```Python\nsigmoid_output = opt_focal_booster.predict_sigmoid(data_x, y=None) \n```\nThis will return the \\hat{y} value, which is p(y=1|x) for 2-lcass classification.
\nMethod `predict_determine`
\n```Python\nclass_output = opt_focal_booster.predict_determine(data_x, y=None) \n```\nThis will return the predicted logit, which 0 or 1 in the 2-class scenario.
\nMethod `predict_two_class`
\n```Python\nprob_output = opt_focal_booster.predict_two_class(data_x, y=None) \n```\nThis will return the predicted probability of 2 classes, in the form of [nData * 2]. The first column is the probability of classifying the datapoint to 0 and the second column is the prob of classifying as 1.
\nTo assistant the evluation of classification results, the package provides a score function `score_eval_func()` with multiple metrics. One can use `make_scorer()` method in sk-learn and `functools` to specify the evaluation score. The method will be compatible with sk-learn cross validation and model selection processes.
\n```Python\nimport functools\nfrom sklearn.metrics import make_scorer\nfrom sklearn.model_selection import LeaveOneOut, cross_validate\n# retrieve the best parameters\nxgboost_opt_param = CV_focal_booster.best_params_\n# instantialize an imbalance-xgboost instance\nxgboost_opt = imb_xgb(special_objective='focal', **xgboost_opt_param)\n# cross-validation\n# initialize the splitter\nloo_splitter = LeaveOneOut()\n# initialize the score evalutation function by feeding the 'mode' argument\n# 'mode' can be [\\'accuracy\\', \\'precision\\',\\'recall\\',\\'f1\\',\\'MCC\\']\nscore_eval_func = functools.partial(xgboost_opt.score_eval_func, mode='accuracy')\n# Leave-One cross validation\nloo_info_dict = cross_validate(xgboost_opt, X=x, y=y, cv=loo_splitter, scoring=make_scorer(score_eval_func))\n```\nIn the new version, we can also collect the information of the confusion matrix through the `correct_eval_func` provided. This enables the users to evluate the metrics like accuracy, precision, and recall for the average/overall test sets in the cross-validation process.
\n```Python\n# initialize the correctness evalutation function by feeding the 'mode' argument\n# 'mode' can be ['TP', 'TN', 'FP', 'FN']\nTP_eval_func = functools.partial(xgboost_opt.score_eval_func, mode='TP')\nTN_eval_func = functools.partial(xgboost_opt.score_eval_func, mode='FP')\nFP_eval_func = functools.partial(xgboost_opt.score_eval_func, mode='TN')\nFN_eval_func = functools.partial(xgboost_opt.score_eval_func, mode='FN')\n# define the score function dictionary\nscore_dict = {'TP': make_scorer(TP_eval_func), \n 'FP': make_scorer(TN_eval_func), \n 'TN': make_scorer(FP_eval_func), \n 'FN': make_scorer(FN_eval_func)}\n# Leave-One cross validation\nloo_info_dict = cross_validate(xgboost_opt, X=x, y=y, cv=loo_splitter, scoring=score_dict)\noverall_tp = np.sum(loo_info_dict['test_TP']).astype('float')\n```\nMore soring function may be added in later versions.\n\n## Theories and derivatives\nYou don't have to understand the equations if you find they are hard to grasp, you can simply use it with the API. However, for the purpose of understanding, the derivatives of the two loss functions are listed.
\nFor both of the loss functions, since the task is 2-class classification, the activation would be sigmoid:
\n
\nAnd bellow the two types of loss will be discussed respectively.
\n### 1. Weighted Imbalance (Cross-entropoy) Loss\nAnd combining with $\\hat{y}$, which are the true labels, the weighted imbalance loss for 2-class data could be denoted as:
\n\n
\nWhere $\\alpha$ is the 'imbalance factor'. And $\\alpha$ value greater than 1 means to put extra loss on 'classifying 1 as 0'.
\nThe gradient would be:
\n
\nAnd the second order gradient would be:
\n
\n\n### 2. Focal Loss\nThe focal loss is proposed in [1] and the expression of it would be:
\n
\nThe first order gradient would be:
\n
\nAnd the second order gradient would be a little bit complex. To simplify the expression, we firstly denotes the terms in the 1-st order gradient as the following notations:
\n
\nUsing the above notations, the 1-st order drivative will be:
\n
\nThen the 2-nd order derivative will be:
\n\n
\n\n## Enjoy Using!\n@author: Chen Wang, Dept. of Computer Science, School of Art and Science, Rutgers University (previously affiliated with University College London, Sichuan University and Northwestern Polytechnical University)
\n@version: 0.7.2\n\n## References\n[1] Lin, Tsung-Yi, Priyal Goyal, Ross Girshick, Kaiming He, and Piotr Doll\u00e1r. \"Focal loss for dense object detection.\" IEEE transactions on pattern analysis and machine intelligence (2018).
\n[2] Chen, Tianqi, and Carlos Guestrin. \"Xgboost: A scalable tree boosting system.\" In Proceedings of the 22nd acm sigkdd international conference on knowledge discovery and data mining, pp. 785-794. ACM, 2016.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/jhwjhw0123/Xgboost-With-Imbalance-And-Focal-Loss", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/jhwjhw0123/Xgboost-With-Imbalance-And-Focal-Loss", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "imbalance-xgboost", "package_url": "https://pypi.org/project/imbalance-xgboost/", "platform": "", "project_url": "https://pypi.org/project/imbalance-xgboost/", "project_urls": { "Download": "https://github.com/jhwjhw0123/Xgboost-With-Imbalance-And-Focal-Loss", "Homepage": "https://github.com/jhwjhw0123/Xgboost-With-Imbalance-And-Focal-Loss" }, "release_url": "https://pypi.org/project/imbalance-xgboost/0.7.4/", "requires_dist": [ "numpy (>=1.11)", "scikit-learn (>=0.19)", "xgboost (>=0.4a30)" ], "requires_python": "", "summary": "XGBoost for label-imbalanced data: XGBoost with weighted and focal loss functions", "version": "0.7.4" }, "last_serial": 5579784, "releases": { "0.6.0": [ { "comment_text": "", "digests": { "md5": "839d800f3e61e03db0e49eea826ddcc9", "sha256": "576ef5c422d388b977b051ae00e7dad76d310061d2d43fc9b081898179700498" }, "downloads": -1, "filename": "imbalance_xgboost-0.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "839d800f3e61e03db0e49eea826ddcc9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16559, "upload_time": "2019-06-30T04:02:22", "url": "https://files.pythonhosted.org/packages/1a/63/0dc8ff59df21725ab511e3f39c690ef487ac60a81ddfc7e2678659189b8e/imbalance_xgboost-0.6.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "56e42890308f92bf51b5c34547aaaca0", "sha256": "cd48cacd78a6f2e904aec8b74f5f29b85ee9b5609c5019e1258745b49aba5f82" }, "downloads": -1, "filename": "imbalance-xgboost-0.6.0.tar.gz", "has_sig": false, "md5_digest": "56e42890308f92bf51b5c34547aaaca0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8406, "upload_time": "2019-06-30T04:02:24", "url": "https://files.pythonhosted.org/packages/f3/3c/99a9a3d2fddfe8161767aadd192ac03f692dc0dead7a1940a33ede4bc834/imbalance-xgboost-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "de68eaee833097bae926f2f2066ea4bc", "sha256": "75d0feb01ce4e5ee53f603ea5f280318954220d6b7321bfca2560085f93a2cd3" }, "downloads": -1, "filename": "imbalance_xgboost-0.6.1-py3-none-any.whl", "has_sig": false, "md5_digest": "de68eaee833097bae926f2f2066ea4bc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16721, "upload_time": "2019-07-02T03:25:44", "url": "https://files.pythonhosted.org/packages/6e/13/88feef66a59b9242b4388f3d61c3bdbbe76503efff4a869241a5ff7b489b/imbalance_xgboost-0.6.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7d296dddf333475c0fefaff9cf9936a8", "sha256": "a7c0f054101e06a8997e6613e6ca2193c6b89ec28d6c61ec4049f217ea4e8432" }, "downloads": -1, "filename": "imbalance-xgboost-0.6.1.tar.gz", "has_sig": false, "md5_digest": "7d296dddf333475c0fefaff9cf9936a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8455, "upload_time": "2019-07-02T03:25:46", "url": "https://files.pythonhosted.org/packages/f5/bd/36a82449a64b9ef324e8cee512cb92b8a009658fc9c3259a572a6f8ae9a3/imbalance-xgboost-0.6.1.tar.gz" } ], "0.6.3a0": [ { "comment_text": "", "digests": { "md5": "2e89373815e09b557305a00fe562c7f5", "sha256": "d6b40d471f96966d0432176b7a0d916ba255dd859d24ea864d18b5f2ff11b8c6" }, "downloads": -1, "filename": "imbalance_xgboost-0.6.3a0-py3-none-any.whl", "has_sig": false, "md5_digest": "2e89373815e09b557305a00fe562c7f5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 20772, "upload_time": "2019-07-02T04:00:24", "url": "https://files.pythonhosted.org/packages/e2/70/c38ada3311014f373a3022bb37765872304d5a88f7e4b75ee6ef556566a9/imbalance_xgboost-0.6.3a0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "408d19e6ee4fc29091607f90603de370", "sha256": "2973b88d9028cea4022ba92b7b293cebfa3e3426478cf58ae298824afb9d8546" }, "downloads": -1, "filename": "imbalance-xgboost-0.6.3a0.tar.gz", "has_sig": false, "md5_digest": "408d19e6ee4fc29091607f90603de370", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8531, "upload_time": "2019-07-02T04:00:25", "url": "https://files.pythonhosted.org/packages/c6/d1/3a468050d262d31a321b0207e57963e88d02bc383657568f892487b9f2ea/imbalance-xgboost-0.6.3a0.tar.gz" } ], "0.6.4a0": [ { "comment_text": "", "digests": { "md5": "08cc53b7408d897a962ef8cf8efa0e2a", "sha256": "fc51891bbf12ff2652bcd49e839079c12bd751dcd76d61db3c30747235a3a407" }, "downloads": -1, "filename": "imbalance_xgboost-0.6.4a0-py3-none-any.whl", "has_sig": false, "md5_digest": "08cc53b7408d897a962ef8cf8efa0e2a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 20771, "upload_time": "2019-07-02T04:22:42", "url": "https://files.pythonhosted.org/packages/40/f9/28d3fc7c1eab347b6f0a177c6fec74106395cae770b70c23e476a6f13f68/imbalance_xgboost-0.6.4a0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b3b5f6dbcc0c7db78a8bcd9c0e0f450f", "sha256": "24f7247ba7c3d24554dd249fe24dec0620f54d50753290bdb2d159520ad65c50" }, "downloads": -1, "filename": "imbalance-xgboost-0.6.4a0.tar.gz", "has_sig": false, "md5_digest": "b3b5f6dbcc0c7db78a8bcd9c0e0f450f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8530, "upload_time": "2019-07-02T04:22:43", "url": "https://files.pythonhosted.org/packages/59/fc/d786890ec4e1eef28e8127b73fb9a23e23362175d41c1333bc926d51004c/imbalance-xgboost-0.6.4a0.tar.gz" } ], "0.6.4a10": [ { "comment_text": "", "digests": { "md5": "d25e52eea69d003a12ec91eb31b634c2", "sha256": "a43c91fe34374007c77392ca5bc724bcd6d8e9c6f5e7d4311d27f4555b194622" }, "downloads": -1, "filename": "imbalance_xgboost-0.6.4a10-py3-none-any.whl", "has_sig": false, "md5_digest": "d25e52eea69d003a12ec91eb31b634c2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 20825, "upload_time": "2019-07-02T04:40:57", "url": "https://files.pythonhosted.org/packages/7b/12/11644809e029cbe5920b73085d7462b9881211e42f2cf2f87011408619d5/imbalance_xgboost-0.6.4a10-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "31d079ea466bdf12bb261532684195db", "sha256": "c018b184226c8f9b51e53145732f58455e5a5ce6fb913ba55d8fe73643a1d348" }, "downloads": -1, "filename": "imbalance-xgboost-0.6.4a10.tar.gz", "has_sig": false, "md5_digest": "31d079ea466bdf12bb261532684195db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8535, "upload_time": "2019-07-02T04:40:59", "url": "https://files.pythonhosted.org/packages/eb/65/6aa43ada14dcfd8efb3a0116aa170f94039da0c926c00b4d909879c84323/imbalance-xgboost-0.6.4a10.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "8086433aac8908fd461f589a6b55982b", "sha256": "ad190e4659ab1a722a4d89b938649700b755b4e5a0d9eeffca80acadfd26aa5b" }, "downloads": -1, "filename": "imbalance_xgboost-0.6.5-py3-none-any.whl", "has_sig": false, "md5_digest": "8086433aac8908fd461f589a6b55982b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 20767, "upload_time": "2019-07-02T04:59:44", "url": "https://files.pythonhosted.org/packages/d8/ff/458ba88aa6f790202c6a2bcf5e744c14b2fb2a093958e271f041ef194575/imbalance_xgboost-0.6.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5fdb7331bb1dd408ad10c017f4c3e67e", "sha256": "af8df57e4cde7a587e0660342e598ac21abc693e3b59ba13ac0ead7a59534cbb" }, "downloads": -1, "filename": "imbalance-xgboost-0.6.5.tar.gz", "has_sig": false, "md5_digest": "5fdb7331bb1dd408ad10c017f4c3e67e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8532, "upload_time": "2019-07-02T04:59:45", "url": "https://files.pythonhosted.org/packages/6e/41/0d9b9e4462fe568999fe3a9967f6bce4309cf5980f4fac1db792f540256e/imbalance-xgboost-0.6.5.tar.gz" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "ad9885431d08069c3dc6bc9420e8ee3a", "sha256": "b452ab19d9a9a8c0fcb48303950892cf50d7d94e3ca51b52a619cc091922a627" }, "downloads": -1, "filename": "imbalance_xgboost-0.6.6-py3-none-any.whl", "has_sig": false, "md5_digest": "ad9885431d08069c3dc6bc9420e8ee3a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21417, "upload_time": "2019-07-02T19:03:15", "url": "https://files.pythonhosted.org/packages/5c/4e/3169cb84c6eac5601487df37ed6cf1e9bdda25319efb01c5893e0d2858b3/imbalance_xgboost-0.6.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1969d819d01a108b2a0942eb759b4676", "sha256": "a9d4304e853e2bcc10d265893ab309bbc389215ec32a66837f393b3f269d7efd" }, "downloads": -1, "filename": "imbalance-xgboost-0.6.6.tar.gz", "has_sig": false, "md5_digest": "1969d819d01a108b2a0942eb759b4676", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8891, "upload_time": "2019-07-02T19:03:16", "url": "https://files.pythonhosted.org/packages/06/a2/74346fde0177851b4a60738ceb0fe9135afa6eb8144dc740ea8224363ca7/imbalance-xgboost-0.6.6.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "0ece55b9d80c5adab8436cd735c2cf57", "sha256": "6644ad2fbae3a8d9b4c2f8725d87696b5ce4078c26e10393880c9c868416cfe3" }, "downloads": -1, "filename": "imbalance_xgboost-0.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "0ece55b9d80c5adab8436cd735c2cf57", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21665, "upload_time": "2019-07-17T17:27:30", "url": "https://files.pythonhosted.org/packages/20/88/316ccf26cd3c5bb2732f131e90956228dac2469f875fc7f96da2afd6ca8d/imbalance_xgboost-0.7.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "33ab6acf8734228fe4a2196940848172", "sha256": "5e19ffa01a289d4adbf439454c616498cfa0bf3e2fffbcdf870a0f2073df0f01" }, "downloads": -1, "filename": "imbalance-xgboost-0.7.0.tar.gz", "has_sig": false, "md5_digest": "33ab6acf8734228fe4a2196940848172", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9002, "upload_time": "2019-07-17T17:27:31", "url": "https://files.pythonhosted.org/packages/ad/9a/94cc996366066329f8ea1800601e325835b827720f736780b44e1ce650ab/imbalance-xgboost-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "130c9148d8aaebec8382704805c8fd35", "sha256": "197d9114a6ea0fb02ac0b63bcaa1fde1c800c065151936b04a7a8ffedc71efc4" }, "downloads": -1, "filename": "imbalance_xgboost-0.7.1-py3-none-any.whl", "has_sig": false, "md5_digest": "130c9148d8aaebec8382704805c8fd35", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21793, "upload_time": "2019-07-17T21:34:26", "url": "https://files.pythonhosted.org/packages/fa/3f/e0be1738f15080366c956fc4a51bec697f7fc2b970c0beab9bc81a88b039/imbalance_xgboost-0.7.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9ba7054fb50e7e9d30dc81c522676d5d", "sha256": "10f30a8791789a2966b664bae04b70e399ac5be94db38ea900249aa791cdba21" }, "downloads": -1, "filename": "imbalance-xgboost-0.7.1.tar.gz", "has_sig": false, "md5_digest": "9ba7054fb50e7e9d30dc81c522676d5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9143, "upload_time": "2019-07-17T21:34:28", "url": "https://files.pythonhosted.org/packages/e4/1d/592434fe7e4d549444335a19cc238f86309972ecc12dd54a61575e1df244/imbalance-xgboost-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "0517b3e190229716caf10d943faf2cfc", "sha256": "9962ddebebb84043e21ed09f9f9711db5f665e3fb2052a5c3b9fa105d3264b10" }, "downloads": -1, "filename": "imbalance_xgboost-0.7.2-py3-none-any.whl", "has_sig": false, "md5_digest": "0517b3e190229716caf10d943faf2cfc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22947, "upload_time": "2019-07-18T03:11:57", "url": "https://files.pythonhosted.org/packages/77/57/a35d8ae2793904ad1834dcf4f8bb22a83a024e323b1cfd5dd932d5e67172/imbalance_xgboost-0.7.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d7048baf6c071c91e59d8ce17121a934", "sha256": "9f9b1b85ce491457d96bf9dfb844fc8e6af87ab529ff10ecfd7f37f70b4dfe0c" }, "downloads": -1, "filename": "imbalance-xgboost-0.7.2.tar.gz", "has_sig": false, "md5_digest": "d7048baf6c071c91e59d8ce17121a934", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12612, "upload_time": "2019-07-18T03:11:59", "url": "https://files.pythonhosted.org/packages/77/f8/fc9a78df73cf0d27d4838ba5d9f9e7f86debc2cd4a915110ea01ef784025/imbalance-xgboost-0.7.2.tar.gz" } ], "0.7.3a10": [ { "comment_text": "", "digests": { "md5": "1657251884419345e3954f4a4eed5e32", "sha256": "e66470672f299cebeea245c32d4c6f4aa5bdb1a3008dbeec0fffffc73993d554" }, "downloads": -1, "filename": "imbalance_xgboost-0.7.3a10-py3-none-any.whl", "has_sig": false, "md5_digest": "1657251884419345e3954f4a4eed5e32", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23339, "upload_time": "2019-07-24T20:50:55", "url": "https://files.pythonhosted.org/packages/01/76/f5eb1deb64f72abb7c3b9cc6f25e3aaf8d86c77297ac7b0adc750255e9c3/imbalance_xgboost-0.7.3a10-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "220babb6e1d67eb8deae24c6bdc2e814", "sha256": "cd4dd4367a991a3919e3155e830c7259f5b7d00183161798c928793c8d50dfec" }, "downloads": -1, "filename": "imbalance-xgboost-0.7.3a10.tar.gz", "has_sig": false, "md5_digest": "220babb6e1d67eb8deae24c6bdc2e814", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12864, "upload_time": "2019-07-24T20:50:57", "url": "https://files.pythonhosted.org/packages/95/a2/7e96ec69bdeb702baea288ac130664f3724d036cd512a4554fc682d2123f/imbalance-xgboost-0.7.3a10.tar.gz" } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "0753f030a9fd1ac01ada36ebf529f8fd", "sha256": "19e359d5f8b31de9b3870de39434d4e9ec59168527677c661b89898e46825547" }, "downloads": -1, "filename": "imbalance_xgboost-0.7.4-py3-none-any.whl", "has_sig": false, "md5_digest": "0753f030a9fd1ac01ada36ebf529f8fd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18633, "upload_time": "2019-07-24T21:13:46", "url": "https://files.pythonhosted.org/packages/92/5e/f3817e9d7471e5d3031ca2711fae821908458d25fa320db93f26af01395a/imbalance_xgboost-0.7.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ed3a227085ae79db630c559f8198b328", "sha256": "2be832fe1b5bcf6c502080844b667765c43178321abff0c6db1cb9070794aa6e" }, "downloads": -1, "filename": "imbalance-xgboost-0.7.4.tar.gz", "has_sig": false, "md5_digest": "ed3a227085ae79db630c559f8198b328", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13406, "upload_time": "2019-07-24T21:13:48", "url": "https://files.pythonhosted.org/packages/5b/9b/083d23de905f3fb6e3c66c196b309dc0da259683639dd194d70396a79e1b/imbalance-xgboost-0.7.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "0753f030a9fd1ac01ada36ebf529f8fd", "sha256": "19e359d5f8b31de9b3870de39434d4e9ec59168527677c661b89898e46825547" }, "downloads": -1, "filename": "imbalance_xgboost-0.7.4-py3-none-any.whl", "has_sig": false, "md5_digest": "0753f030a9fd1ac01ada36ebf529f8fd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18633, "upload_time": "2019-07-24T21:13:46", "url": "https://files.pythonhosted.org/packages/92/5e/f3817e9d7471e5d3031ca2711fae821908458d25fa320db93f26af01395a/imbalance_xgboost-0.7.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ed3a227085ae79db630c559f8198b328", "sha256": "2be832fe1b5bcf6c502080844b667765c43178321abff0c6db1cb9070794aa6e" }, "downloads": -1, "filename": "imbalance-xgboost-0.7.4.tar.gz", "has_sig": false, "md5_digest": "ed3a227085ae79db630c559f8198b328", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13406, "upload_time": "2019-07-24T21:13:48", "url": "https://files.pythonhosted.org/packages/5b/9b/083d23de905f3fb6e3c66c196b309dc0da259683639dd194d70396a79e1b/imbalance-xgboost-0.7.4.tar.gz" } ] }