Metadata-Version: 1.1
Name: sklearn-crfsuite
Version: 0.2
Summary: CRFsuite (python-crfsuite) wrapper which provides interface simlar to scikit-learn
Home-page: https://github.com/TeamHG-Memex/sklearn-crfsuite
Author: Mikhail Korobov
Author-email: kmike84@gmail.com
License: MIT license
Description: ================
        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: http://travis-ci.org/TeamHG-Memex/sklearn-crfsuite
           :alt: Build Status
        
        .. image:: http://codecov.io/github/TeamHG-Memex/sklearn-crfsuite/coverage.svg?branch=master
           :target: http://codecov.io/github/TeamHG-Memex/sklearn-crfsuite?branch=master
           :alt: Code Coverage
        
        .. image:: https://readthedocs.org/projects/sklearn-crfsuite/badge/?version=latest
           :target: http://sklearn-crfsuite.readthedocs.org/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.
        
        .. _CRFsuite: http://www.chokkan.org/software/crfsuite/
        .. _python-crfsuite: https://github.com/tpeng/python-crfsuite
        .. _scikit-learn: http://scikit-learn.org/
        
        License is MIT.
        
        Documentation can be found `here <http://sklearn-crfsuite.readthedocs.org>`_.
        
        
        Changes
        =======
        
        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.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
