Metadata-Version: 2.1
Name: svmlight-loader
Version: 0.3.0
Summary: A Cython-less implementation of the svmlight / libsvm sparse data format
Home-page: https://github.com/Julian/svmlight-loader
Author: Julian Berman
Author-email: Julian+svmlight_loader@GrayVines.com
License: UNKNOWN
Project-URL: Source, https://github.com/Julian/svmlight-loader
Project-URL: Issues, https://github.com/Julian/svmlight-loader/issues/
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Dist: attrs
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: importlib-metadata ; python_version < "3.8"

===============
svmlight-loader
===============

|PyPI| |Pythons| |CI| |Codecov|

.. |PyPI| image:: https://img.shields.io/pypi/v/svmlight-loader.svg
  :alt: PyPI version
  :target: https://pypi.org/project/svmlight-loader/

.. |Pythons| image:: https://img.shields.io/pypi/pyversions/svmlight-loader.svg
  :alt: Supported Python versions
  :target: https://pypi.org/project/svmlight-loader/

.. |CI| image:: https://travis-ci.com/Julian/svmlight-loader.svg?branch=master
  :alt: Build status
  :target: https://travis-ci.com/Julian/svmlight-loader

.. |Codecov| image:: https://codecov.io/gh/Julian/svmlight-loader/branch/master/graph/badge.svg
  :alt: Codecov Code coverage
  :target: https://codecov.io/gh/Julian/svmlight-loader

``svmlight-loader`` is a Cython-less (and ``scikit-learn``-less)
implementation of the `svmlight / libsvm format
<http://svmlight.joachims.org/>`_.

It is designed simply to handle loading this format, which has become
somewhat prevalent in exchanging arbitrary sparse machine learning
datasets.

It also is specifically intended to support PyPy (though of course it also
supports CPython).


