Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add sklearn-crfsuite #11188

Merged
merged 11 commits into from
Apr 3, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions recipes/sklearn-crfsuite/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{% set name = "sklearn-crfsuite" %}
{% set version = "0.3.6" %}

package:
name: "{{ name|lower }}"
version: "{{ version }}"

source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: 2f59aad3055e01a778a79a6352891cac04788e8b52688aa5bc8b11be7717861e

build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . -vv"

requirements:
host:
- pip
- python
run:
ndmaxar marked this conversation as resolved.
Show resolved Hide resolved
- python
- python-crfsuite >=0.8.3
- six
- tabulate
- tqdm >=2.0

test:
imports:
- sklearn_crfsuite

about:
home: "https://github.com/TeamHG-Memex/sklearn-crfsuite"
license: MIT
license_family: MIT
license_file: # No packaged license file, issue here: https://github.com/TeamHG-Memex/sklearn-crfsuite/issues/48
summary: "CRFsuite (python-crfsuite) wrapper which provides interface simlar to scikit-learn"
doc_url: https://sklearn-crfsuite.readthedocs.io/en/latest/
dev_url: https://github.com/TeamHG-Memex/sklearn-crfsuite
description: |
sklearn-crfsuite is thin a CRFsuite (python-crfsuite) wrapper which provides scikit-learn-compatible
sklearn_crfsuite.CRF estimator: you can use e.g. scikit-learn model selection utilities (cross-validation,
hyperparameter optimization) with it, or save/load CRF models using joblib.
extra:
recipe-maintainers:
- ndmaxar
- oblute
- rluria14