Skip to content

Commit

Permalink
Merge pull request #11188 from ndmaxar/sklearn-crfsuite
Browse files Browse the repository at this point in the history
Add sklearn-crfsuite
  • Loading branch information
synapticarbors committed Apr 3, 2020
2 parents 957dc1e + 846c1d7 commit 8d42717
Showing 1 changed file with 49 additions and 0 deletions.
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:
- 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

0 comments on commit 8d42717

Please sign in to comment.