{ "info": { "author": "", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: MacOS", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Operating System :: Unix", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering :: Artificial Intelligence" ], "description": "LightGBM Python-package\n=======================\n\n|License| |Python Versions| |PyPI Version| |Downloads|\n\nInstallation\n------------\n\nPreparation\n'''''''''''\n\n32-bit Python is not supported. Please install 64-bit version. If you have a strong need to install with 32-bit Python, refer to `Build 32-bit Version with 32-bit Python section <#build-32-bit-version-with-32-bit-python>`__.\n\n`setuptools `_ is needed.\n\nInstall from `PyPI `_ Using ``pip``\n''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''\n\nFor **Windows** users, `VC runtime `_ is needed if **Visual Studio** (2015 or newer) is not installed.\n\nFor **Linux** users, **glibc** >= 2.14 is required.\n\nFor **macOS** users:\n\n- Starting from version 2.2.1, the library file in distribution wheels is built by the **Apple Clang** (Xcode_8.3.3) compiler. This means that you don't need to install the **gcc** compiler anymore. Instead of that you need to install the **OpenMP** library, which is required for running LightGBM on the system with the **Apple Clang** compiler. You can install the **OpenMP** library by the following command: ``brew install libomp``.\n\n- For version smaller than 2.2.1 and not smaller than 2.1.2, **gcc-8** with **OpenMP** support must be installed first. Refer to `Installation Guide `__ for installation of **gcc-8** with **OpenMP** support.\n\n- For version smaller than 2.1.2, **gcc-7** with **OpenMP** is required.\n\nInstall `wheel `_ via ``pip install wheel`` first. After that download the wheel file and install from it:\n\n.. code:: sh\n\n pip install lightgbm\n\nBuild from Sources\n******************\n\n.. code:: sh\n\n pip install --no-binary :all: lightgbm\n\nFor **Linux** and **macOS** users, installation from sources requires installed `CMake`_.\n\nFor **macOS** users, you can perform installation either with **Apple Clang** or **gcc**.\n\n- In case you prefer **Apple Clang**, you should install **OpenMP** (details for installation can be found in `Installation Guide `__) first and **CMake** version 3.12 or higher is required.\n\n In some cases **OpenMP** cannot be found which causes installation failures. So, if you encounter errors during the installation process, try to pass paths to **CMake** via ``pip`` options, like\n\n .. code:: sh\n\n pip install lightgbm --install-option=\"--openmp-include-dir=/usr/local/opt/libomp/include/\" --install-option=\"--openmp-library=/usr/local/opt/libomp/lib/libomp.dylib\"\n\n- In case you prefer **gcc**, you need to install it (details for installation can be found in `Installation Guide `__) and specify compilers by running ``export CXX=g++-7 CC=gcc-7`` (replace \"7\" with version of **gcc** installed on your machine) first.\n\nFor **Windows** users, **Visual Studio** (or `VS Build Tools `_) is needed. If you get any errors during installation, you may need to install `CMake`_ (version 3.8 or higher).\n\nBuild Threadless Version\n~~~~~~~~~~~~~~~~~~~~~~~~\n\n.. code:: sh\n\n pip install lightgbm --install-option=--nomp\n\nAll remarks, except the **OpenMP** requirement for **macOS** users, from `Build from Sources section <#build-from-sources>`__ are actual in this case.\n\nIt is **strongly not recommended** to use this version of LightGBM!\n\nBuild MPI Version\n~~~~~~~~~~~~~~~~~\n\n.. code:: sh\n\n pip install lightgbm --install-option=--mpi\n\nAll remarks from `Build from Sources section <#build-from-sources>`__ are actual in this case.\n\nFor **Windows** users, compilation with **MinGW-w64** is not supported and `CMake`_ (version 3.8 or higher) is strongly required.\n\n**MPI** libraries are needed: details for installation can be found in `Installation Guide `__.\n\nBuild GPU Version\n~~~~~~~~~~~~~~~~~\n\n.. code:: sh\n\n pip install lightgbm --install-option=--gpu\n\nAll remarks from `Build from Sources section <#build-from-sources>`__ are actual in this case.\n\nFor **Windows** users, `CMake`_ (version 3.8 or higher) is strongly required.\n\n**Boost** and **OpenCL** are needed: details for installation can be found in `Installation Guide `__. Almost always you also need to pass ``OpenCL_INCLUDE_DIR``, ``OpenCL_LIBRARY`` options for **Linux** and ``BOOST_ROOT``, ``BOOST_LIBRARYDIR`` options for **Windows** to **CMake** via ``pip`` options, like\n\n.. code:: sh\n\n pip install lightgbm --install-option=--gpu --install-option=\"--opencl-include-dir=/usr/local/cuda/include/\" --install-option=\"--opencl-library=/usr/local/cuda/lib64/libOpenCL.so\"\n\nAll available options:\n\n- boost-root\n\n- boost-dir\n\n- boost-include-dir\n\n- boost-librarydir\n\n- opencl-include-dir\n\n- opencl-library\n\nFor more details see `FindBoost `__ and `FindOpenCL `__.\n\nBuild HDFS Version\n~~~~~~~~~~~~~~~~~~\n\n.. code:: sh\n\n pip install lightgbm --install-option=--hdfs\n\nNote that the installation process of HDFS version was tested only on **Linux**.\n\nBuild with MinGW-w64 on Windows\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n.. code:: sh\n\n pip install lightgbm --install-option=--mingw\n\n`CMake`_ and `MinGW-w64 `_ should be installed first.\n\nIt is recommended to use **Visual Studio** for its better multithreading efficiency in **Windows** for many-core systems\n(see `Question 4 `__ and `Question 8 `__).\n\nBuild 32-bit Version with 32-bit Python\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n.. code:: sh\n\n pip install lightgbm --install-option=--bit32\n\nBy default, installation in environment with 32-bit Python is prohibited. However, you can remove this prohibition on your own risk by passing ``bit32`` option.\n\nIt is **strongly not recommended** to use this version of LightGBM!\n\nInstall from GitHub\n'''''''''''''''''''\n\nAll remarks from `Build from Sources section <#build-from-sources>`__ are actual in this case.\n\nFor **macOS** users who compile with **Apple Clang**, to pass **OpenMP** paths to **CMake** use the following syntax: ``python setup.py install --openmp-include-dir=/usr/local/opt/libomp/include/ --openmp-library=/usr/local/opt/libomp/lib/libomp.dylib``.\n\nFor **Windows** users, if you get any errors during installation and there is the warning ``WARNING:LightGBM:Compilation with MSBuild from existing solution file failed.`` in the log, you should install `CMake`_ (version 3.8 or higher).\n\n.. code:: sh\n\n git clone --recursive https://github.com/microsoft/LightGBM.git\n cd LightGBM/python-package\n # export CXX=g++-7 CC=gcc-7 # macOS users, if you decided to compile with gcc, don't forget to specify compilers (replace \"7\" with version of gcc installed on your machine)\n python setup.py install\n\nNote: ``sudo`` (or administrator rights in **Windows**) may be needed to perform the command.\n\nRun ``python setup.py install --nomp`` to disable **OpenMP** support. All remarks from `Build Threadless Version section <#build-threadless-version>`__ are actual in this case.\n\nRun ``python setup.py install --mpi`` to enable **MPI** support. All remarks from `Build MPI Version section <#build-mpi-version>`__ are actual in this case.\n\nRun ``python setup.py install --mingw``, if you want to use **MinGW-w64** on **Windows** instead of **Visual Studio**. All remarks from `Build with MinGW-w64 on Windows section <#build-with-mingw-w64-on-windows>`__ are actual in this case.\n\nRun ``python setup.py install --gpu`` to enable GPU support. All remarks from `Build GPU Version section <#build-gpu-version>`__ are actual in this case. To pass additional options to **CMake** use the following syntax: ``python setup.py install --gpu --opencl-include-dir=/usr/local/cuda/include/``, see `Build GPU Version section <#build-gpu-version>`__ for the complete list of them.\n\nRun ``python setup.py install --hdfs`` to enable HDFS support. All remarks from `Build HDFS Version section <#build-hdfs-version>`__ are actual in this case.\n\nRun ``python setup.py install --bit32``, if you want to use 32-bit version. All remarks from `Build 32-bit Version with 32-bit Python section <#build-32-bit-version-with-32-bit-python>`__ are actual in this case.\n\nIf you get any errors during installation or due to any other reasons, you may want to build dynamic library from sources by any method you prefer (see `Installation Guide `__) and then just run ``python setup.py install --precompile``.\n\nTroubleshooting\n---------------\n\nIn case you are facing any errors during the installation process, you can examine ``$HOME/LightGBM_compilation.log`` file, in which all operations are logged, to get more details about occurred problem. Also, please attach this file to the issue on GitHub to help faster indicate the cause of the error.\n\nRefer to `FAQ `_.\n\nExamples\n--------\n\nRefer to the walk through examples in `Python guide folder `_.\n\nDevelopment Guide\n-----------------\n\nThe code style of Python-package follows `PEP 8 `_. If you would like to make a contribution and not familiar with PEP 8, please check the PEP 8 style guide first. Otherwise, the check won't pass. You should be careful about:\n\n- E1 Indentation (check PEP 8 link above)\n- E202 whitespace before and after brackets\n- E225 missing whitespace around operator\n- E226 missing whitespace around arithmetic operator\n- E261 at least two spaces before inline comment\n- E301 expected 1 blank line in front of and at the end of a method\n- E302 expected 2 blank lines in front of and at the end of a function or a class\n\nE501 (line too long) and W503 (line break occurred before a binary operator) can be ignored.\n\nDocumentation strings (docstrings) are written in the NumPy style.\n\n.. |License| image:: https://img.shields.io/badge/license-MIT-blue.svg\n :target: https://github.com/microsoft/LightGBM/blob/master/LICENSE\n.. |Python Versions| image:: https://img.shields.io/pypi/pyversions/lightgbm.svg\n :target: https://pypi.org/project/lightgbm\n.. |PyPI Version| image:: https://img.shields.io/pypi/v/lightgbm.svg\n :target: https://pypi.org/project/lightgbm\n.. |Downloads| image:: https://pepy.tech/badge/lightgbm\n :target: https://pepy.tech/project/lightgbm\n.. _CMake: https://cmake.org/\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/microsoft/LightGBM", "keywords": "", "license": "The MIT License (Microsoft)", "maintainer": "Guolin Ke", "maintainer_email": "guolin.ke@microsoft.com", "name": "lightgbm", "package_url": "https://pypi.org/project/lightgbm/", "platform": "", "project_url": "https://pypi.org/project/lightgbm/", "project_urls": { "Homepage": "https://github.com/microsoft/LightGBM" }, "release_url": "https://pypi.org/project/lightgbm/2.3.0/", "requires_dist": [ "numpy", "scipy", "scikit-learn" ], "requires_python": "", "summary": "LightGBM Python Package", "version": "2.3.0" }, "last_serial": 5901671, "releases": { "2.0.10": [ { "comment_text": "", "digests": { "md5": "ad1cf79b724d9beb8edd80c923d2df7e", "sha256": "fbd0eec963641053c21523b0b916702fb9b6e1ab099e015697c28ca148e078e0" }, "downloads": -1, "filename": "lightgbm-2.0.10-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "ad1cf79b724d9beb8edd80c923d2df7e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 598736, "upload_time": "2017-10-18T14:17:03", "url": "https://files.pythonhosted.org/packages/57/50/a82f9ba8367bf5d29e47c9c5aced5004716a1fda02cad1011549e592b70b/lightgbm-2.0.10-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c3b3ddaddd3dc7fdf1f447e602a48999", "sha256": "471a47c6e6eb381d6820850fe8db77ae68571929ceb5d95ad84f1f2557387003" }, "downloads": -1, "filename": "lightgbm-2.0.10-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c3b3ddaddd3dc7fdf1f447e602a48999", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 609278, "upload_time": "2017-10-18T14:17:05", "url": "https://files.pythonhosted.org/packages/5a/1b/7fa68b3588d77f06e2e6316bc4c079b4d9186cd92b16d3b06cdfce00a014/lightgbm-2.0.10-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "39bf2dea729391223dccb15b081783cc", "sha256": "a321499d21706ea174245a28e4b4d8d6bb5a8a3b48fbb2b539ee41fc8b4f3f93" }, "downloads": -1, "filename": "lightgbm-2.0.10-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "39bf2dea729391223dccb15b081783cc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 404458, "upload_time": "2017-10-18T14:17:07", "url": "https://files.pythonhosted.org/packages/fe/bb/60733527850c231d20d397edadf48e0b0e5bcbb48b68098441cfb47f6045/lightgbm-2.0.10-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "429e053c88ff386cf44983f6e025ff51", "sha256": "901b8d96f05ad104287fe4e7626c76502a616d865def362ed3d0e9a4c7cc2db8" }, "downloads": -1, "filename": "lightgbm-2.0.10.tar.gz", "has_sig": false, "md5_digest": "429e053c88ff386cf44983f6e025ff51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 592215, "upload_time": "2017-10-18T14:17:09", "url": "https://files.pythonhosted.org/packages/6f/52/21111cc38a0a4cc4f4c3c61e148d74511db363c947574edee472b267aeb5/lightgbm-2.0.10.tar.gz" } ], "2.0.11": [ { "comment_text": "", "digests": { "md5": "a4535f515c657e0d558ad878fee994c8", "sha256": "ebe39520de9328b5988ef9c6eb56584aef0b9f35a1b212eaefd9f7acc4040ac8" }, "downloads": -1, "filename": "lightgbm-2.0.11-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "a4535f515c657e0d558ad878fee994c8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 603758, "upload_time": "2017-11-25T02:31:07", "url": "https://files.pythonhosted.org/packages/8d/9f/ec61187a6c67ec83313cc1d1b4dd506536c16f33416123d078191fe05613/lightgbm-2.0.11-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "06019590b1c37bd7559e89d9b551216e", "sha256": "de49547af9a0e5a2a9bd52896c4e57047bdbf105a57e7b4d4f016339b964e5a6" }, "downloads": -1, "filename": "lightgbm-2.0.11-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "06019590b1c37bd7559e89d9b551216e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 624444, "upload_time": "2017-11-25T02:31:11", "url": "https://files.pythonhosted.org/packages/1e/04/d7cad86b3a2895c2c10bbbf5c29cfcb82ba22e2927e74d182cdc391d9f4e/lightgbm-2.0.11-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a3d1439fa5ca8a25a8a258c800b09cb7", "sha256": "cc2ecadd34d7aa05e472a8c07d1e128cbc5c1723ef1bc21f7901b46fdb9125d9" }, "downloads": -1, "filename": "lightgbm-2.0.11-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "a3d1439fa5ca8a25a8a258c800b09cb7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 412810, "upload_time": "2017-11-25T02:31:14", "url": "https://files.pythonhosted.org/packages/30/96/63a1d3c037020ac079e3bcd71611e327fecf9ffccf0cf2887c8beaa895ba/lightgbm-2.0.11-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "588480232cb4eee54cbb9cb7dd8887b7", "sha256": "34bd28339033310e1a403ebf5c53fdfd42778328065f638ae6333ce23c578cb2" }, "downloads": -1, "filename": "lightgbm-2.0.11.tar.gz", "has_sig": false, "md5_digest": "588480232cb4eee54cbb9cb7dd8887b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 597027, "upload_time": "2017-11-25T02:31:15", "url": "https://files.pythonhosted.org/packages/da/7b/4c7a329808f85fe48e74e3887ca6c8cd371cc9e60bd134d77055053c13a0/lightgbm-2.0.11.tar.gz" } ], "2.0.12": [ { "comment_text": "", "digests": { "md5": "903e05906fdfd99c7a1c46d6071eb085", "sha256": "22459c70e16281a159e77844ab05c5e27322f36ebbba41e5decb4511f8889caf" }, "downloads": -1, "filename": "lightgbm-2.0.12-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "903e05906fdfd99c7a1c46d6071eb085", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 608032, "upload_time": "2017-12-26T06:33:23", "url": "https://files.pythonhosted.org/packages/e8/77/3f3d8d8d60d49cfb4df5b831751a73106d8e55334d93718fc2b397035beb/lightgbm-2.0.12-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d386c79fa5293f6a7d5ce94077070f93", "sha256": "5cd41bfe02d4f790802850530af69e84b6773088ef3e7eaf2af69dc79a1ccaa3" }, "downloads": -1, "filename": "lightgbm-2.0.12-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d386c79fa5293f6a7d5ce94077070f93", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 627890, "upload_time": "2017-12-26T06:33:25", "url": "https://files.pythonhosted.org/packages/47/4a/c1048a8bc32ae7b8e23bce956289683f8a09033af7cd6af0195d64b7620e/lightgbm-2.0.12-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9053a9769a9c319cda945180772c6761", "sha256": "db8d52f2bfa1550ed945b6395064fc10143541b9ed650ce1b603390369f38030" }, "downloads": -1, "filename": "lightgbm-2.0.12-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "9053a9769a9c319cda945180772c6761", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 431899, "upload_time": "2017-12-26T06:33:28", "url": "https://files.pythonhosted.org/packages/58/7f/88ff4a8f0000c34df8040ca0a61d3e4c59082fe907c57c1658c22f936d49/lightgbm-2.0.12-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "29da8dd76206790a08ab9d52a17a0d0c", "sha256": "b5b036c46cb90a67ec58399d7bad634283c1b26158afd2c6fb14fecca14dc981" }, "downloads": -1, "filename": "lightgbm-2.0.12.tar.gz", "has_sig": false, "md5_digest": "29da8dd76206790a08ab9d52a17a0d0c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 598746, "upload_time": "2017-12-26T06:33:31", "url": "https://files.pythonhosted.org/packages/2e/02/8ae4eab1a9e852b96be86e6e4dd129094df8e4b635623396d288c323a8f6/lightgbm-2.0.12.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "6fc69a8ad10f7818013288356cd3d379", "sha256": "43e3d53ec53429bb7d497765336ad4886357244e020ae782f1c7425fbbdcaeb9" }, "downloads": -1, "filename": "lightgbm-2.0.2-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "6fc69a8ad10f7818013288356cd3d379", "packagetype": "bdist_wheel", "python_version": "any", "requires_python": null, "size": 1243705, "upload_time": "2017-06-24T15:52:24", "url": "https://files.pythonhosted.org/packages/0e/a5/1ff85acb5ac02db8a5d8c0e4ebef1376cdf1777a837a3bffb112b10ce784/lightgbm-2.0.2-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0def5fb67cf5da30af77adc68846a459", "sha256": "fa0dd0a3de2ba8174e44ab80ed8deec83028cfa0aec93b0ea2728491a25f8c91" }, "downloads": -1, "filename": "lightgbm-2.0.2-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0def5fb67cf5da30af77adc68846a459", "packagetype": "bdist_wheel", "python_version": "any", "requires_python": null, "size": 1264850, "upload_time": "2017-06-24T11:16:06", "url": "https://files.pythonhosted.org/packages/dd/6e/ad65a22a6bd4e12f6efd4575f127076dc3438ce146a7ac3d31d24556d6cc/lightgbm-2.0.2-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2148d41802d598269fa8c91c073d9534", "sha256": "9d23ae9da74190e6a556754399fa03c661d76269795392db2de35a90f1a64a94" }, "downloads": -1, "filename": "lightgbm-2.0.2-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "2148d41802d598269fa8c91c073d9534", "packagetype": "bdist_wheel", "python_version": "any", "requires_python": null, "size": 897007, "upload_time": "2017-06-24T05:39:04", "url": "https://files.pythonhosted.org/packages/f2/11/e1c69bf013666d7ba94ba83ff3a29d653647a061c6c0ba6ebbc4b0bbe564/lightgbm-2.0.2-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f659dfd348c889beee61b16ff30ff035", "sha256": "ba918c3f8eb8b7b8d79408e891e1c96debe3a5a30d56b2ab0fb8f94617d90382" }, "downloads": -1, "filename": "lightgbm-2.0.2.tar.gz", "has_sig": false, "md5_digest": "f659dfd348c889beee61b16ff30ff035", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 204639, "upload_time": "2017-06-20T04:52:45", "url": "https://files.pythonhosted.org/packages/c9/88/bd90f794406b5084e3414fa329906209501dd4327f6da8ce3d340ae3cc0a/lightgbm-2.0.2.tar.gz" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "3cd4601db52226cbd66fdcbbf8dce3f0", "sha256": "9bc00e95b0abc03ee681fb6564808801f790dac5e4b4489f003b6583ad07fb85" }, "downloads": -1, "filename": "lightgbm-2.0.3-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "3cd4601db52226cbd66fdcbbf8dce3f0", "packagetype": "bdist_wheel", "python_version": "any", "requires_python": null, "size": 1243669, "upload_time": "2017-06-25T02:35:35", "url": "https://files.pythonhosted.org/packages/89/d1/f1046d37dfe3006c44751394f572724b8cb952b6de1a90c0f2876ef4ba07/lightgbm-2.0.3-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e4dcd7bb50647fd13c39de5264286e7a", "sha256": "cbe0ad2fcfa115bdf236294744af43f91c20f99d524af93ef1b449735693710d" }, "downloads": -1, "filename": "lightgbm-2.0.3-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e4dcd7bb50647fd13c39de5264286e7a", "packagetype": "bdist_wheel", "python_version": "any", "requires_python": null, "size": 1264857, "upload_time": "2017-06-25T02:35:52", "url": "https://files.pythonhosted.org/packages/1f/0f/36af24776a1fb95957f1b3cd98112726c419d08e1eca00d07c31d3558d8a/lightgbm-2.0.3-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9548614cf91bd5eb54f62efa05179f0c", "sha256": "b146c9d569e7fa45be3e0768e00036feab76657017d7a394cfa081b923509f66" }, "downloads": -1, "filename": "lightgbm-2.0.3-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "9548614cf91bd5eb54f62efa05179f0c", "packagetype": "bdist_wheel", "python_version": "any", "requires_python": null, "size": 897007, "upload_time": "2017-06-25T02:36:29", "url": "https://files.pythonhosted.org/packages/6d/55/7fe39342310e2c60bd1da4672746b1fee331cd103108f398b175e1a2d58f/lightgbm-2.0.3-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "42724355df8f8552e253d42ee70c0e26", "sha256": "4407e7df6b21fdbed8a0731a61429ff71da7a0cc7f72134387860d45c895869f" }, "downloads": -1, "filename": "lightgbm-2.0.3.tar.gz", "has_sig": false, "md5_digest": "42724355df8f8552e253d42ee70c0e26", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 204145, "upload_time": "2017-06-25T02:20:02", "url": "https://files.pythonhosted.org/packages/c0/fb/a89d7c93affe6d834efb86ea72f52e0027d7bed28860f3233c4e39881430/lightgbm-2.0.3.tar.gz" } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "8b69ca16637e9474eaa7f4652db04e9b", "sha256": "e6b7f66ef3581b752559b82c04267cc4bd9df9fd95977e858a5cc29aa970a546" }, "downloads": -1, "filename": "lightgbm-2.0.4-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "8b69ca16637e9474eaa7f4652db04e9b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1022652, "upload_time": "2017-06-30T06:19:29", "url": "https://files.pythonhosted.org/packages/3d/77/43b253dab956c7dc0bf7d36cd66181dd5e1452a2af7279fe5591a2d24c7f/lightgbm-2.0.4-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "aac7b5987f3598816613a448c12c49e2", "sha256": "907299d4b3c0324292c66440d6afa30d2f403018023b41f5896cb9a302c61b08" }, "downloads": -1, "filename": "lightgbm-2.0.4-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "aac7b5987f3598816613a448c12c49e2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1043701, "upload_time": "2017-06-30T06:19:32", "url": "https://files.pythonhosted.org/packages/ab/8a/8a35fe1054686c8a0df855e39623111aa3ea6b83dcfed3d829135d74b134/lightgbm-2.0.4-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0029776b0292e3b1551f4e297449209f", "sha256": "912b2761d4307f8f2fe8c6a842a83b780f5847bca454b164c7d55b93e6f0dc3a" }, "downloads": -1, "filename": "lightgbm-2.0.4-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "0029776b0292e3b1551f4e297449209f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 895435, "upload_time": "2017-06-30T06:19:35", "url": "https://files.pythonhosted.org/packages/17/24/a88c2684950349a9a8ae2f45d7b62e14ef7497dcfb50d4560d3e012930b2/lightgbm-2.0.4-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5ba1a1dd975f077f81d3713be097fdfa", "sha256": "6472ded5b0df03504b9d53f4d0e8070a59c2ea015ae526137305c75eb2a77eec" }, "downloads": -1, "filename": "lightgbm-2.0.4.tar.gz", "has_sig": false, "md5_digest": "5ba1a1dd975f077f81d3713be097fdfa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 212884, "upload_time": "2017-06-30T05:49:08", "url": "https://files.pythonhosted.org/packages/25/87/d67c309e27b9e36c6701367a4d81fbce55cb982c60ed815277130a461ece/lightgbm-2.0.4.tar.gz" } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "5469bf31d3000132c6a941d24bbef9a7", "sha256": "267b0d0274de5a269d083b499b7a1739ab99d6f9cebca2ac4f170e218c659385" }, "downloads": -1, "filename": "lightgbm-2.0.5-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "5469bf31d3000132c6a941d24bbef9a7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1097408, "upload_time": "2017-08-07T04:44:52", "url": "https://files.pythonhosted.org/packages/97/0f/e496559f23caed29ad5775c5e0a4bafcebe4e411960ccc34760c89c2afea/lightgbm-2.0.5-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "002f120a8ffc8b53090b954824d6ac8a", "sha256": "af51291d8edbf5d93549d107d50cb2528dfb27560851adf50bd17a70960d2acc" }, "downloads": -1, "filename": "lightgbm-2.0.5-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "002f120a8ffc8b53090b954824d6ac8a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1107652, "upload_time": "2017-08-07T04:44:54", "url": "https://files.pythonhosted.org/packages/6e/28/bcdb8ce9d1ca54d75d41fd9f15ddfe6bc3cda032da37d7774f3518e5440f/lightgbm-2.0.5-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d9dbc03c6f6dcaa1768d0c1caf8f2b7c", "sha256": "66f6e935bd651061380bb8692148b447569b25a850f43026ff5db795e1f27874" }, "downloads": -1, "filename": "lightgbm-2.0.5-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "d9dbc03c6f6dcaa1768d0c1caf8f2b7c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 974767, "upload_time": "2017-08-07T04:44:56", "url": "https://files.pythonhosted.org/packages/22/31/46b05bfa63ac93f17427642ad891339a3352ffce5abe723da9360d0bc5f1/lightgbm-2.0.5-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7323a909ebe48b6f5517379a4d101d25", "sha256": "bd70f018de74369c3db6903a8701cb2f408c0bc53ea9d2a1708137091dfadf38" }, "downloads": -1, "filename": "lightgbm-2.0.5.tar.gz", "has_sig": false, "md5_digest": "7323a909ebe48b6f5517379a4d101d25", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 222576, "upload_time": "2017-08-07T04:44:25", "url": "https://files.pythonhosted.org/packages/27/e0/f4dfd45d74b636f95a26cfb6950c9f1ac41a23d0bba0525a3984d1683154/lightgbm-2.0.5.tar.gz" } ], "2.0.6": [ { "comment_text": "", "digests": { "md5": "2538c68cec72e36e64e6ed36bb3b0295", "sha256": "283b0761ac0145ca634a8182e68a691bc53501597e7bcc535b2c62444ee0c667" }, "downloads": -1, "filename": "lightgbm-2.0.6-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "2538c68cec72e36e64e6ed36bb3b0295", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1100053, "upload_time": "2017-08-18T07:43:54", "url": "https://files.pythonhosted.org/packages/e6/92/022c3123f10de5ebeff84132b20dab6e1db5a992b485ce91eae4fe129875/lightgbm-2.0.6-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "cb7f07e773ea7883117344aae736b2de", "sha256": "bf50086629ac7791c7cceb124a0ad765b08cef5205947b9f169b4dba42d50727" }, "downloads": -1, "filename": "lightgbm-2.0.6-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cb7f07e773ea7883117344aae736b2de", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1114731, "upload_time": "2017-08-18T07:43:56", "url": "https://files.pythonhosted.org/packages/31/74/bd22033cc0f4fd3a381cec2ecd144144eb6a7d74ce6cbb28f160a428b831/lightgbm-2.0.6-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ac00f132b3f3f2837e4ec80b13c55947", "sha256": "f593d28a6b56c3f199ee46df1198dc0923245630b465019cce4a619206876daa" }, "downloads": -1, "filename": "lightgbm-2.0.6-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "ac00f132b3f3f2837e4ec80b13c55947", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 987069, "upload_time": "2017-08-18T07:43:59", "url": "https://files.pythonhosted.org/packages/ef/df/8808f92e9a536108a92d7ea609acd0aeab56582400c551294e6d9a6c573b/lightgbm-2.0.6-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1f49e73ed004a586fe1b5a2591400440", "sha256": "7cc77559a52dfe42e0d848a4626a85a8420e2e7acd1db8d951436beeca81d2e8" }, "downloads": -1, "filename": "lightgbm-2.0.6.tar.gz", "has_sig": false, "md5_digest": "1f49e73ed004a586fe1b5a2591400440", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 216848, "upload_time": "2017-08-18T07:44:02", "url": "https://files.pythonhosted.org/packages/d7/cf/ff689343fe22750e051e915b07930e98eed484199e881239656b63b1c799/lightgbm-2.0.6.tar.gz" } ], "2.0.7": [ { "comment_text": "", "digests": { "md5": "e79eef50d38eaef6bf33898f36402acc", "sha256": "b8f57b8894cba81a6faa087dda645a3b1eb1844a58d823124e5ef5495b803f6c" }, "downloads": -1, "filename": "lightgbm-2.0.7-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "e79eef50d38eaef6bf33898f36402acc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 592015, "upload_time": "2017-09-28T06:53:20", "url": "https://files.pythonhosted.org/packages/8f/d6/761250ef2f7221a7ad317e18dffda690bb9111d5823626ab39869da52cc6/lightgbm-2.0.7-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a03f2fba4d737c1213aa2cbde8934025", "sha256": "43111b8ca308c609c2390fce6e164c41e2df6cedca8abc3257697957fff5e346" }, "downloads": -1, "filename": "lightgbm-2.0.7-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a03f2fba4d737c1213aa2cbde8934025", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 600983, "upload_time": "2017-09-28T06:53:22", "url": "https://files.pythonhosted.org/packages/3b/8f/d4ae7aa51efbc46951aa96bfeaeebdeb7e92485f1891e8f987ee0be707cb/lightgbm-2.0.7-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1e1a7dc15a9be0ca09149649b28e956b", "sha256": "36cdaebc4cfa36ee4b282b6df7a6e3534a4b05bf250f545634f207d110c0e028" }, "downloads": -1, "filename": "lightgbm-2.0.7-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "1e1a7dc15a9be0ca09149649b28e956b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 388773, "upload_time": "2017-09-28T06:53:25", "url": "https://files.pythonhosted.org/packages/c3/d5/7f92e087e40a0089774e94b3bd0a31bea5694483bedb9a1097dd2f5719a2/lightgbm-2.0.7-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8e7188b617274da78cfc7538bd60e3b9", "sha256": "4c0c5e20f36908db04c46918782c7c4a8ecce721a2d8a93f55591a7252350de1" }, "downloads": -1, "filename": "lightgbm-2.0.7.tar.gz", "has_sig": false, "md5_digest": "8e7188b617274da78cfc7538bd60e3b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 590416, "upload_time": "2017-09-28T06:53:27", "url": "https://files.pythonhosted.org/packages/b0/96/1556a33fae20cf7b9c7100621a89c9bc0cad47882d1b103d5bc44c64496f/lightgbm-2.0.7.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "9dd93da03b943a15c01677a290a4ddeb", "sha256": "76e454fb6563cf1938cd11c08f55c145575efa94a4fefa2461cdb7aafdeecda5" }, "downloads": -1, "filename": "lightgbm-2.1.0-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "9dd93da03b943a15c01677a290a4ddeb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 640767, "upload_time": "2018-01-25T09:18:23", "url": "https://files.pythonhosted.org/packages/3e/e3/54057cb01627880f7921810afa2205c05695532804ef08cbc2ba819e5cb6/lightgbm-2.1.0-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "621650326eaa728d5982ede12d454c34", "sha256": "b2f14ac8fc908428ccdef6c9462f8b3620c06d3133d49b6e913e87d103d551c9" }, "downloads": -1, "filename": "lightgbm-2.1.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "621650326eaa728d5982ede12d454c34", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 660683, "upload_time": "2018-01-25T09:18:26", "url": "https://files.pythonhosted.org/packages/83/30/6d227b1178db3772c3b3df38e7eb3c52c4765bddcb7311d1190963ee0f14/lightgbm-2.1.0-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "890ef516479b4045bf31ddfffb897499", "sha256": "6a04fddb749b24d22d26d417e4fa47d985d346583733633a31accf7a8d9122ed" }, "downloads": -1, "filename": "lightgbm-2.1.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "890ef516479b4045bf31ddfffb897499", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 453487, "upload_time": "2018-01-25T09:18:31", "url": "https://files.pythonhosted.org/packages/d0/1c/e427c64aa12f3c4ffc6e487c8d625ef61b4adb822bff743855b2d7c56e03/lightgbm-2.1.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "281fd71453325375b9fdd591e866c7d8", "sha256": "1bf2bab95688cfc085ce9a479015e8a97f71dd6bd31634a7fc400ff0bce28082" }, "downloads": -1, "filename": "lightgbm-2.1.0.tar.gz", "has_sig": false, "md5_digest": "281fd71453325375b9fdd591e866c7d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 604082, "upload_time": "2018-01-25T09:18:37", "url": "https://files.pythonhosted.org/packages/01/46/d49f4f295c5cc31968ed6aa3e662b0069fe5e530c8a48dee22305adf1ea5/lightgbm-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "611e18e6d6ee03c320323d68d4cc0d53", "sha256": "41b291c065dd8a4edc5d28ef8e2cb3b44b71fb8dac33fc6f5650743815d4336b" }, "downloads": -1, "filename": "lightgbm-2.1.1-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "611e18e6d6ee03c320323d68d4cc0d53", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 689338, "upload_time": "2018-05-01T02:16:28", "url": "https://files.pythonhosted.org/packages/33/2f/70fc7fce6f1ef6e058a6ba23fcbfa9db5593bfe03ffc608e3bb90f08c77a/lightgbm-2.1.1-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "922a8a258b06c0989f0617b0f8af66e7", "sha256": "6578132f2d8446905d1aec70859e5552e5076c5569f720bf0aa717ca45d87bb0" }, "downloads": -1, "filename": "lightgbm-2.1.1-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "922a8a258b06c0989f0617b0f8af66e7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 711703, "upload_time": "2018-05-01T02:16:31", "url": "https://files.pythonhosted.org/packages/bf/01/45e209af10fd16537df0c5d8a5474c286554c3eaf9ddb0ce04113f1e8506/lightgbm-2.1.1-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "16b0405e9c2ea17997e9402749026768", "sha256": "b9cdcdccfe5c5a282c87b060884ae61b3987c87bb3a3c1c4fcb7501628d3299f" }, "downloads": -1, "filename": "lightgbm-2.1.1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "16b0405e9c2ea17997e9402749026768", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 479961, "upload_time": "2018-05-01T02:16:33", "url": "https://files.pythonhosted.org/packages/7f/3d/a86e97071a36e5e346716c7fe4197c01a42156eeb688b22a824ac4d88c14/lightgbm-2.1.1-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "9f291b7903f3e57b88cd54553624b2e3", "sha256": "536d0358795665a18815a3de4bf283705a4fe7982503853af33cf1fd8ab2f410" }, "downloads": -1, "filename": "lightgbm-2.1.1.tar.gz", "has_sig": false, "md5_digest": "9f291b7903f3e57b88cd54553624b2e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 620932, "upload_time": "2018-05-01T02:16:37", "url": "https://files.pythonhosted.org/packages/e1/f7/f94225d7f91887df65b9c6bb58e6b2772217681647693faf2c70ce6b8c2b/lightgbm-2.1.1.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "c1c4391b16b41200d797bb98f41c235c", "sha256": "eb7dabf3bbb2cafa32efed5b389313ef38d92b9d2ae02931bd880ae115d8a3cb" }, "downloads": -1, "filename": "lightgbm-2.1.2-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "c1c4391b16b41200d797bb98f41c235c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 715935, "upload_time": "2018-06-22T05:38:21", "url": "https://files.pythonhosted.org/packages/c1/b7/1b9f8d50927ee4297dfc0b238ec63621d4b600120f3c5a3c0261ba601036/lightgbm-2.1.2-py2.py3-none-macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8b3bdb75a28bce91b5dae4c6fc5b83eb", "sha256": "5f6f4b5b9cc9e46283d275d691f2d75382c1a93c38c7211949e4a5dfd40def3d" }, "downloads": -1, "filename": "lightgbm-2.1.2-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8b3bdb75a28bce91b5dae4c6fc5b83eb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 730409, "upload_time": "2018-06-22T05:38:23", "url": "https://files.pythonhosted.org/packages/24/8d/783679697bdf1585dc96acfe7c8538d6fab33ad80e827cadb7b413e61da6/lightgbm-2.1.2-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b92f2236e3a62b936756ee41ecbedf75", "sha256": "ba378fe3a4c312d2623161807604af6ff35c6ebfb379dfd285f896179efd1c46" }, "downloads": -1, "filename": "lightgbm-2.1.2-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "b92f2236e3a62b936756ee41ecbedf75", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 483513, "upload_time": "2018-06-22T05:38:25", "url": "https://files.pythonhosted.org/packages/cf/26/98fdda319d4bfcf47058c0862ad9fc47266d76547c7f1fbb4819c921eec7/lightgbm-2.1.2-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5a8ff2104ff4443f44ed9a757c3e1750", "sha256": "951c4853d9fd824aff24dea10ffc9cc91f391f28a405160dfc63a68acc0417b1" }, "downloads": -1, "filename": "lightgbm-2.1.2.tar.gz", "has_sig": false, "md5_digest": "5a8ff2104ff4443f44ed9a757c3e1750", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 639705, "upload_time": "2018-06-22T05:38:27", "url": "https://files.pythonhosted.org/packages/53/96/a412bdfe80bb7cadfafea5c980385538bc2a91ff0086ff6684a51275992e/lightgbm-2.1.2.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "823eb3aedbd44ad264c4e00a1a685ee8", "sha256": "14fc99565ffe2d4323109a4376212cd214a660a95f841b094b7350e7da6925fe" }, "downloads": -1, "filename": "lightgbm-2.2.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "823eb3aedbd44ad264c4e00a1a685ee8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 976917, "upload_time": "2018-09-18T03:02:49", "url": "https://files.pythonhosted.org/packages/0b/75/db470b6c37ee6f43b05ebb7d75dae86a3f3fc99603a80f3c1b5feb9eda6b/lightgbm-2.2.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0f1a42b175bc9e74bce52354ba937b51", "sha256": "df1891896f852b37845915385cf635a5d17d3d10e232b9b9c06db8d97e305ef0" }, "downloads": -1, "filename": "lightgbm-2.2.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0f1a42b175bc9e74bce52354ba937b51", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1092425, "upload_time": "2018-09-18T03:02:51", "url": "https://files.pythonhosted.org/packages/1e/d7/a4cf8909d319aa9d4b3ef5f29fdc7c22d20802022f7b1243579c1b3e93c3/lightgbm-2.2.0-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "50c7bff909c5f4882659c55d95820108", "sha256": "2d47008f39aee8611d81d763026dd483c73a4ae771402a9e698fe715eee7deab" }, "downloads": -1, "filename": "lightgbm-2.2.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "50c7bff909c5f4882659c55d95820108", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 491507, "upload_time": "2018-09-18T03:02:53", "url": "https://files.pythonhosted.org/packages/64/29/04435544f9275a042e42c08f42b1658df953fd664003f3940152525ef4eb/lightgbm-2.2.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1b47c08f008dfe2cc0917e7a184b43c8", "sha256": "06a763b902dd7e18a42232c368afd9b8dca89df75862be4891db2bc540a04e67" }, "downloads": -1, "filename": "lightgbm-2.2.0.tar.gz", "has_sig": false, "md5_digest": "1b47c08f008dfe2cc0917e7a184b43c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 646282, "upload_time": "2018-09-18T03:02:55", "url": "https://files.pythonhosted.org/packages/5a/9a/a16003e94dd87d61d218b97182cd0dc3ea36e17889e54516500948dc5b77/lightgbm-2.2.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "217ba41f71412421608d903b156ef921", "sha256": "b5dcd8af664c0d8d64753da9389abd9c72f7f995046626f26c200d47336fb4cd" }, "downloads": -1, "filename": "lightgbm-2.2.1-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "217ba41f71412421608d903b156ef921", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 635188, "upload_time": "2018-10-03T17:16:54", "url": "https://files.pythonhosted.org/packages/8c/74/46db81bbeca374e8a7e55a1ad3d857e99f2fe73bfe92f3e760b0bf6cf779/lightgbm-2.2.1-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a5e6b63933b8c75be19e52e4f16fd774", "sha256": "c12474146c2598dd8b649227942f3880924291342e33f1258af1a4cd7f950768" }, "downloads": -1, "filename": "lightgbm-2.2.1-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a5e6b63933b8c75be19e52e4f16fd774", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1127838, "upload_time": "2018-10-03T17:17:01", "url": "https://files.pythonhosted.org/packages/78/7e/bc87e7951cfaa998cffaf39e6c721f5bd04efb2e139486206356edb289a5/lightgbm-2.2.1-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "72bbfa330ebbc248e1f593846caafeca", "sha256": "cba7e6b23c07e849ec03dee288c263b4ceee456840f1fabdc756c299efd06ac8" }, "downloads": -1, "filename": "lightgbm-2.2.1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "72bbfa330ebbc248e1f593846caafeca", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 492924, "upload_time": "2018-10-03T17:17:06", "url": "https://files.pythonhosted.org/packages/63/0a/0aa1e3afe54b75bceac1c85f534cf8a73036975296d439c699fbe4f48aa4/lightgbm-2.2.1-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "6bfd5c8064662d881a35d661c2c73805", "sha256": "d8940572333cbeb7a53ad10fccb34c97728e637a26997cc580975599012b3597" }, "downloads": -1, "filename": "lightgbm-2.2.1.tar.gz", "has_sig": false, "md5_digest": "6bfd5c8064662d881a35d661c2c73805", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 661554, "upload_time": "2018-10-03T17:17:13", "url": "https://files.pythonhosted.org/packages/ce/b2/f73801372dbe6e553177d2d077a53237a96f4ea9a098a434a1d3dc66da30/lightgbm-2.2.1.tar.gz" } ], "2.2.2": [ { "comment_text": "", "digests": { "md5": "7f60e898e0ac5d42378f9ea5fe3201ba", "sha256": "e7d1f111e475168053b79b64f5807e64882b18cf8103b0b17b59ef5d51e46863" }, "downloads": -1, "filename": "lightgbm-2.2.2-py2.py3-none-macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "7f60e898e0ac5d42378f9ea5fe3201ba", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 629276, "upload_time": "2018-11-06T04:06:40", "url": "https://files.pythonhosted.org/packages/38/5b/3d0eee91cde5de48acf34c4416b285f9f0117392f29a367b64440c08edea/lightgbm-2.2.2-py2.py3-none-macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.macosx_10_14_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a876c5f933c763cde483c0c4e479ff2e", "sha256": "6be5b8b8852dda4a9f72f41382b30cba52c3c59205a680c4608c57672e2272b0" }, "downloads": -1, "filename": "lightgbm-2.2.2-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a876c5f933c763cde483c0c4e479ff2e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1167381, "upload_time": "2018-11-06T04:02:18", "url": "https://files.pythonhosted.org/packages/4c/3b/4ae113193b4ee01387ed76d5eea32788aec0589df9ae7378a8b7443eaa8b/lightgbm-2.2.2-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6e8f78be5cc0a3db55e3652049731820", "sha256": "24b471d74e587aab43fc9b0bbbaf3cb81bf35b503ea36737863ceca4e8e81ff9" }, "downloads": -1, "filename": "lightgbm-2.2.2-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "6e8f78be5cc0a3db55e3652049731820", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 507193, "upload_time": "2018-11-06T04:02:21", "url": "https://files.pythonhosted.org/packages/83/16/fc6acdf63dc62773382c8e2cbbea5f01a098699f2eede3b349496ebad6bf/lightgbm-2.2.2-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a5d999a947da32b25d919652a728d2ae", "sha256": "664feade49d6b860ceaddc91419e7a6827ed4d599e85370d3480e44d59a46da3" }, "downloads": -1, "filename": "lightgbm-2.2.2.tar.gz", "has_sig": false, "md5_digest": "a5d999a947da32b25d919652a728d2ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 647487, "upload_time": "2018-11-06T04:02:23", "url": "https://files.pythonhosted.org/packages/63/a8/230413114c3b546a35d42ef7fa8d470c5bb6f96aaee840bc10cefa75cd84/lightgbm-2.2.2.tar.gz" } ], "2.2.3": [ { "comment_text": "", "digests": { "md5": "150ac479b53eac286073576da587cc8b", "sha256": "1106082265671d87b183a29aee2e849b5f0ad81474c889d38d1250cf6ef19583" }, "downloads": -1, "filename": "lightgbm-2.2.3-py2.py3-none-macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "150ac479b53eac286073576da587cc8b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 640920, "upload_time": "2019-02-05T01:32:38", "url": "https://files.pythonhosted.org/packages/9c/b3/7b6aec53a8cd0a1378279d9f06e647298f0c66299bce0e4b2b919f6557f7/lightgbm-2.2.3-py2.py3-none-macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.macosx_10_14_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "dbfecfafc54281356cb50b3250e2adf8", "sha256": "0dc1729b6974eaad3ded060ca3b508f400bf4976550a7d4a3d4091a3cbe3bf5f" }, "downloads": -1, "filename": "lightgbm-2.2.3-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dbfecfafc54281356cb50b3250e2adf8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1184697, "upload_time": "2019-02-05T01:33:18", "url": "https://files.pythonhosted.org/packages/77/0f/5157e6b153b3d4a70dc5fbe2ab6f209604197590f387f03177b7a249ac60/lightgbm-2.2.3-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b116e35de447d6b7614d32b2b47cfe70", "sha256": "fe4701e65b1151824375d23108d4098266edfe6c556f596f84577b3763dce977" }, "downloads": -1, "filename": "lightgbm-2.2.3-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "b116e35de447d6b7614d32b2b47cfe70", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 515854, "upload_time": "2019-02-05T01:33:28", "url": "https://files.pythonhosted.org/packages/00/37/a392e669a83fef72b916009c438a924d2a9d70bc8aea62662b207105ed98/lightgbm-2.2.3-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b9c95a074783ce2d25457c252465b33d", "sha256": "40354d21da6bfa73c7ada4d01b2e0b22eaae00f93e90bdaf3fc423020c273890" }, "downloads": -1, "filename": "lightgbm-2.2.3.tar.gz", "has_sig": false, "md5_digest": "b9c95a074783ce2d25457c252465b33d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 649981, "upload_time": "2019-02-05T01:34:13", "url": "https://files.pythonhosted.org/packages/c9/ce/3aff55e25e282383c19c5a5fb7387fd400e64b1a1036671aefa63ceeaaf4/lightgbm-2.2.3.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "1c71eab3deccc3851912cff9d157c12b", "sha256": "a3ca150fdb19370b120ec5b4d045b7b9ffbe73d2ff04d9f45e23395f91f6e050" }, "downloads": -1, "filename": "lightgbm-2.3.0-py2.py3-none-macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "1c71eab3deccc3851912cff9d157c12b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 678697, "upload_time": "2019-09-29T05:55:52", "url": "https://files.pythonhosted.org/packages/a4/83/6e4a9cc870c117bf8316e8aa2513c5070f9ae2f8bd69469476414cd42595/lightgbm-2.3.0-py2.py3-none-macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.macosx_10_14_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e5b0564ce0218d30f2748f64fffee6db", "sha256": "5b911e50224c769b5f3e348839a19c72c6d9c21f3f910d54647090450bea252a" }, "downloads": -1, "filename": "lightgbm-2.3.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e5b0564ce0218d30f2748f64fffee6db", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1252214, "upload_time": "2019-09-29T05:55:55", "url": "https://files.pythonhosted.org/packages/05/ec/756f13b25258e0aa6ec82d98504e01523814f95fc70718407419b8520e1d/lightgbm-2.3.0-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6ffb558d7598eed6df50b6b8575a23f0", "sha256": "f0938261116ddb4f9d146573819b2414db43b425bb10ee501c5b0f7ba0da7279" }, "downloads": -1, "filename": "lightgbm-2.3.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "6ffb558d7598eed6df50b6b8575a23f0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 543961, "upload_time": "2019-09-29T05:55:57", "url": "https://files.pythonhosted.org/packages/c7/0b/a183c06e7778893b2f12bb3e2cdab57f142b4e49cd25cc643047f714e74c/lightgbm-2.3.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0843bbf8a098ca18b16441df856a66c3", "sha256": "37225b9f816ea3365ff5988fc8a3717e46ac99a5f223986c86c86cec4f111b54" }, "downloads": -1, "filename": "lightgbm-2.3.0.tar.gz", "has_sig": false, "md5_digest": "0843bbf8a098ca18b16441df856a66c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 681024, "upload_time": "2019-09-29T05:56:00", "url": "https://files.pythonhosted.org/packages/d0/fc/0b303e78947c1c924cc805989063838ead0342a543feb71a09685a048d9e/lightgbm-2.3.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "1c71eab3deccc3851912cff9d157c12b", "sha256": "a3ca150fdb19370b120ec5b4d045b7b9ffbe73d2ff04d9f45e23395f91f6e050" }, "downloads": -1, "filename": "lightgbm-2.3.0-py2.py3-none-macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "1c71eab3deccc3851912cff9d157c12b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 678697, "upload_time": "2019-09-29T05:55:52", "url": "https://files.pythonhosted.org/packages/a4/83/6e4a9cc870c117bf8316e8aa2513c5070f9ae2f8bd69469476414cd42595/lightgbm-2.3.0-py2.py3-none-macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.macosx_10_14_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e5b0564ce0218d30f2748f64fffee6db", "sha256": "5b911e50224c769b5f3e348839a19c72c6d9c21f3f910d54647090450bea252a" }, "downloads": -1, "filename": "lightgbm-2.3.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e5b0564ce0218d30f2748f64fffee6db", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1252214, "upload_time": "2019-09-29T05:55:55", "url": "https://files.pythonhosted.org/packages/05/ec/756f13b25258e0aa6ec82d98504e01523814f95fc70718407419b8520e1d/lightgbm-2.3.0-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6ffb558d7598eed6df50b6b8575a23f0", "sha256": "f0938261116ddb4f9d146573819b2414db43b425bb10ee501c5b0f7ba0da7279" }, "downloads": -1, "filename": "lightgbm-2.3.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "6ffb558d7598eed6df50b6b8575a23f0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 543961, "upload_time": "2019-09-29T05:55:57", "url": "https://files.pythonhosted.org/packages/c7/0b/a183c06e7778893b2f12bb3e2cdab57f142b4e49cd25cc643047f714e74c/lightgbm-2.3.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0843bbf8a098ca18b16441df856a66c3", "sha256": "37225b9f816ea3365ff5988fc8a3717e46ac99a5f223986c86c86cec4f111b54" }, "downloads": -1, "filename": "lightgbm-2.3.0.tar.gz", "has_sig": false, "md5_digest": "0843bbf8a098ca18b16441df856a66c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 681024, "upload_time": "2019-09-29T05:56:00", "url": "https://files.pythonhosted.org/packages/d0/fc/0b303e78947c1c924cc805989063838ead0342a543feb71a09685a048d9e/lightgbm-2.3.0.tar.gz" } ] }