sklearn-crfsuite


Namesklearn-crfsuite JSON
Version 0.3.6 PyPI version JSON
download
home_pagehttps://github.com/TeamHG-Memex/sklearn-crfsuite
SummaryCRFsuite (python-crfsuite) wrapper which provides interface simlar to scikit-learn
upload_time2017-06-22 18:49:27
maintainer
docs_urlNone
authorMikhail Korobov
requires_python
licenseMIT license
keywords
VCS
bugtrack_url
requirements tqdm tabulate scikit-learn python-crfsuite
Travis-CI
coveralls test coverage
            ================
sklearn-crfsuite
================

.. image:: https://img.shields.io/pypi/v/sklearn-crfsuite.svg
   :target: https://pypi.python.org/pypi/sklearn-crfsuite
   :alt: PyPI Version

.. image:: https://img.shields.io/travis/TeamHG-Memex/sklearn-crfsuite/master.svg
   :target: https://travis-ci.org/TeamHG-Memex/sklearn-crfsuite
   :alt: Build Status

.. image:: https://codecov.io/github/TeamHG-Memex/sklearn-crfsuite/coverage.svg?branch=master
   :target: https://codecov.io/github/TeamHG-Memex/sklearn-crfsuite?branch=master
   :alt: Code Coverage

.. image:: https://readthedocs.org/projects/sklearn-crfsuite/badge/?version=latest
   :target: https://sklearn-crfsuite.readthedocs.io/en/latest/?badge=latest
   :alt: Documentation

sklearn-crfsuite is a thin CRFsuite_ (python-crfsuite_) wrapper which provides
interface simlar to scikit-learn_. ``sklearn_crfsuite.CRF`` is a scikit-learn
compatible estimator: you can use e.g. scikit-learn model
selection utilities (cross-validation, hyperparameter optimization) with it,
or save/load CRF models using joblib_.

.. _CRFsuite: http://www.chokkan.org/software/crfsuite/
.. _python-crfsuite: https://github.com/scrapinghub/python-crfsuite
.. _scikit-learn: http://scikit-learn.org/
.. _joblib: https://github.com/joblib/joblib

License is MIT.

Documentation can be found `here <https://sklearn-crfsuite.readthedocs.io>`_.


Changes
=======

0.3.6 (2017-06-22)
------------------

* added ``sklearn_crfsuite.metrics.flat_recall_score``.

0.3.5 (2017-03-21)
------------------

* Properly close file descriptor in ``FileResource.cleanup``;
* declare Python 3.6 support, stop testing on Python 3.3.

0.3.4 (2016-11-17)
------------------

* Small formatting fixes.

0.3.3 (2016-03-15)
------------------

* scikit-learn dependency is now optional for sklearn_crfsuite;
  it is required only when you use metrics and scorers;
* added ``metrics.flat_precision_score``.

0.3.2 (2015-12-18)
------------------

* Ignore more errors in ``FileResource.__del__``.

0.3.1 (2015-12-17)
------------------

* Ignore errors in ``FileResource.__del__``.

0.3 (2015-12-17)
----------------

* Added ``sklearn_crfsuite.metrics.sequence_accuracy_score()`` function and
  related ``sklearn_crfsuite.scorers.sequence_accuracy``;
* ``FileResource.__del__`` method made more robust.

0.2 (2015-12-11)
----------------

* **backwards-incompatible**: ``crf.tagger`` attribute is renamed to
  ``crf.tagger_``; when model is not trained accessing this attribute
  no longer raises an exception, its value is set to None instead.

* new CRF attributes available after training:

    * ``classes_``
    * ``size_``
    * ``num_attributes_``
    * ``attributes_``
    * ``state_features_``
    * ``transition_features_``

* Tutorial is added.

0.1 (2015-11-27)
----------------

Initial release.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/TeamHG-Memex/sklearn-crfsuite",
    "name": "sklearn-crfsuite",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Mikhail Korobov",
    "author_email": "kmike84@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/03/86/476b8eb59cbe316bd9d2d771c66c929630055fd509058683312bf4ebfb2b/sklearn-crfsuite-0.3.6.tar.gz",
    "platform": "",
    "description": "================\nsklearn-crfsuite\n================\n\n.. image:: https://img.shields.io/pypi/v/sklearn-crfsuite.svg\n   :target: https://pypi.python.org/pypi/sklearn-crfsuite\n   :alt: PyPI Version\n\n.. image:: https://img.shields.io/travis/TeamHG-Memex/sklearn-crfsuite/master.svg\n   :target: https://travis-ci.org/TeamHG-Memex/sklearn-crfsuite\n   :alt: Build Status\n\n.. image:: https://codecov.io/github/TeamHG-Memex/sklearn-crfsuite/coverage.svg?branch=master\n   :target: https://codecov.io/github/TeamHG-Memex/sklearn-crfsuite?branch=master\n   :alt: Code Coverage\n\n.. image:: https://readthedocs.org/projects/sklearn-crfsuite/badge/?version=latest\n   :target: https://sklearn-crfsuite.readthedocs.io/en/latest/?badge=latest\n   :alt: Documentation\n\nsklearn-crfsuite is a thin CRFsuite_ (python-crfsuite_) wrapper which provides\ninterface simlar to scikit-learn_. ``sklearn_crfsuite.CRF`` is a scikit-learn\ncompatible estimator: you can use e.g. scikit-learn model\nselection utilities (cross-validation, hyperparameter optimization) with it,\nor save/load CRF models using joblib_.\n\n.. _CRFsuite: http://www.chokkan.org/software/crfsuite/\n.. _python-crfsuite: https://github.com/scrapinghub/python-crfsuite\n.. _scikit-learn: http://scikit-learn.org/\n.. _joblib: https://github.com/joblib/joblib\n\nLicense is MIT.\n\nDocumentation can be found `here <https://sklearn-crfsuite.readthedocs.io>`_.\n\n\nChanges\n=======\n\n0.3.6 (2017-06-22)\n------------------\n\n* added ``sklearn_crfsuite.metrics.flat_recall_score``.\n\n0.3.5 (2017-03-21)\n------------------\n\n* Properly close file descriptor in ``FileResource.cleanup``;\n* declare Python 3.6 support, stop testing on Python 3.3.\n\n0.3.4 (2016-11-17)\n------------------\n\n* Small formatting fixes.\n\n0.3.3 (2016-03-15)\n------------------\n\n* scikit-learn dependency is now optional for sklearn_crfsuite;\n  it is required only when you use metrics and scorers;\n* added ``metrics.flat_precision_score``.\n\n0.3.2 (2015-12-18)\n------------------\n\n* Ignore more errors in ``FileResource.__del__``.\n\n0.3.1 (2015-12-17)\n------------------\n\n* Ignore errors in ``FileResource.__del__``.\n\n0.3 (2015-12-17)\n----------------\n\n* Added ``sklearn_crfsuite.metrics.sequence_accuracy_score()`` function and\n  related ``sklearn_crfsuite.scorers.sequence_accuracy``;\n* ``FileResource.__del__`` method made more robust.\n\n0.2 (2015-12-11)\n----------------\n\n* **backwards-incompatible**: ``crf.tagger`` attribute is renamed to\n  ``crf.tagger_``; when model is not trained accessing this attribute\n  no longer raises an exception, its value is set to None instead.\n\n* new CRF attributes available after training:\n\n    * ``classes_``\n    * ``size_``\n    * ``num_attributes_``\n    * ``attributes_``\n    * ``state_features_``\n    * ``transition_features_``\n\n* Tutorial is added.\n\n0.1 (2015-11-27)\n----------------\n\nInitial release.\n",
    "bugtrack_url": null,
    "license": "MIT license",
    "summary": "CRFsuite (python-crfsuite) wrapper which provides interface simlar to scikit-learn",
    "version": "0.3.6",
    "project_urls": {
        "Homepage": "https://github.com/TeamHG-Memex/sklearn-crfsuite"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25745b7befa513482e6dee1f3dd68171a6c9dfc14c0eaa00f885ffeba54fe9b0",
                "md5": "49245637f84dee4c793fc0c1bc05d21c",
                "sha256": "6e9a42bc3de96941d5f7262335130955b8c380b1356147622368f385075705d9"
            },
            "downloads": -1,
            "filename": "sklearn_crfsuite-0.3.6-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "49245637f84dee4c793fc0c1bc05d21c",
            "packagetype": "bdist_wheel",
            "python_version": "3.6",
            "requires_python": null,
            "size": 12679,
            "upload_time": "2017-06-22T18:49:34",
            "upload_time_iso_8601": "2017-06-22T18:49:34.841701Z",
            "url": "https://files.pythonhosted.org/packages/25/74/5b7befa513482e6dee1f3dd68171a6c9dfc14c0eaa00f885ffeba54fe9b0/sklearn_crfsuite-0.3.6-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0386476b8eb59cbe316bd9d2d771c66c929630055fd509058683312bf4ebfb2b",
                "md5": "14b51eb8a1195f2dc441a7164133008f",
                "sha256": "2f59aad3055e01a778a79a6352891cac04788e8b52688aa5bc8b11be7717861e"
            },
            "downloads": -1,
            "filename": "sklearn-crfsuite-0.3.6.tar.gz",
            "has_sig": false,
            "md5_digest": "14b51eb8a1195f2dc441a7164133008f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 24657,
            "upload_time": "2017-06-22T18:49:27",
            "upload_time_iso_8601": "2017-06-22T18:49:27.112770Z",
            "url": "https://files.pythonhosted.org/packages/03/86/476b8eb59cbe316bd9d2d771c66c929630055fd509058683312bf4ebfb2b/sklearn-crfsuite-0.3.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2017-06-22 18:49:27",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "TeamHG-Memex",
    "github_project": "sklearn-crfsuite",
    "travis_ci": true,
    "coveralls": true,
    "github_actions": false,
    "requirements": [
        {
            "name": "tqdm",
            "specs": [
                [
                    ">=",
                    "2.0"
                ]
            ]
        },
        {
            "name": "tabulate",
            "specs": [
                [
                    ">=",
                    "0.7.5"
                ]
            ]
        },
        {
            "name": "scikit-learn",
            "specs": [
                [
                    ">=",
                    "0.15"
                ]
            ]
        },
        {
            "name": "python-crfsuite",
            "specs": [
                [
                    ">=",
                    "0.8.3"
                ]
            ]
        }
    ],
    "tox": true,
    "lcname": "sklearn-crfsuite"
}
        
Elapsed time: 0.30398s