|
2405 | 2405 | { |
2406 | 2406 | "id": "spacy-conll", |
2407 | 2407 | "title": "spacy_conll", |
2408 | | - "slogan": "Parsing to CoNLL with spaCy, spacy-stanza, and spacy-udpipe", |
2409 | | - "description": "This module allows you to parse text into CoNLL-U format. You can use it as a command line tool, or embed it in your own scripts by adding it as a custom pipeline component to a spaCy, spacy-stanfordnlp, spacy-stanza, or spacy-udpipe pipeline. It also provides an easy-to-use function to quickly initialize a parser. CoNLL-related properties are added to Doc elements, sentence Spans, and Tokens.", |
| 2408 | + "slogan": "Parsing from and to CoNLL-U format with `spacy`, `spacy-stanza` and `spacy-udpipe`", |
| 2409 | + "description": "This module allows you to parse text into CoNLL-U format or read ConLL-U into a spaCy `Doc`. You can use it as a command line tool, or embed it in your own scripts by adding it as a custom pipeline component to a `spacy`, `spacy-stanza` or `spacy-udpipe` pipeline. It also provides an easy-to-use function to quickly initialize any spaCy-wrapped parser. CoNLL-related properties are added to `Doc` elements, `Span` sentences, and `Token` objects.", |
2410 | 2410 | "code_example": [ |
2411 | 2411 | "from spacy_conll import init_parser", |
2412 | 2412 | "", |
2413 | 2413 | "", |
2414 | 2414 | "# Initialise English parser, already including the ConllFormatter as a pipeline component.", |
2415 | 2415 | "# Indicate that we want to get the CoNLL headers in the string output.", |
2416 | | - "# `use_gpu` and `verbose` are specific to stanza (and stanfordnlp). These keywords arguments", |
2417 | | - "# are passed onto their Pipeline() initialisation", |
| 2416 | + "# `use_gpu` and `verbose` are specific to stanza. These keywords arguments are passed onto their Pipeline() initialisation", |
2418 | 2417 | "nlp = init_parser(\"en\",", |
2419 | 2418 | " \"stanza\",", |
2420 | 2419 | " parser_opts={\"use_gpu\": True, \"verbose\": False},", |
|
2435 | 2434 | }, |
2436 | 2435 | "github": "BramVanroy/spacy_conll", |
2437 | 2436 | "category": ["standalone", "pipeline"], |
2438 | | - "tags": ["linguistics", "computational linguistics", "conll"] |
| 2437 | + "tags": ["linguistics", "computational linguistics", "conll", "conll-u"] |
2439 | 2438 | }, |
2440 | 2439 | { |
2441 | 2440 | "id": "spacy-langdetect", |
|
0 commit comments