mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-27 09:44:36 +03:00
Update docs [ci skip]
This commit is contained in:
parent
02008e9a55
commit
e2ffe51fb5
|
@ -12,8 +12,8 @@ import { Help } from 'components/typography'; import Link from 'components/link'
|
||||||
|
|
||||||
<figcaption class="caption">
|
<figcaption class="caption">
|
||||||
|
|
||||||
**Accuracy and speed on the
|
**Full pipeline accuracy and speed** on the
|
||||||
[OntoNotes 5.0](https://catalog.ldc.upenn.edu/LDC2013T19) corpus.**
|
[OntoNotes 5.0](https://catalog.ldc.upenn.edu/LDC2013T19) corpus.
|
||||||
|
|
||||||
</figcaption>
|
</figcaption>
|
||||||
|
|
||||||
|
|
|
@ -65,28 +65,22 @@ import Benchmarks from 'usage/\_benchmarks-models.md'
|
||||||
|
|
||||||
| System | UAS | LAS |
|
| System | UAS | LAS |
|
||||||
| ------------------------------------------------------------------------------ | ---: | ---: |
|
| ------------------------------------------------------------------------------ | ---: | ---: |
|
||||||
| spaCy RoBERTa (2020) | 96.8 | 95.0 |
|
| spaCy RoBERTa (2020)<sup>1</sup> | 96.8 | 95.0 |
|
||||||
| spaCy CNN (2020) | 93.7 | 91.8 |
|
| spaCy CNN (2020)<sup>1</sup> | 93.7 | 91.8 |
|
||||||
| [Mrini et al.](https://khalilmrini.github.io/Label_Attention_Layer.pdf) (2019) | 97.4 | 96.3 |
|
| [Mrini et al.](https://khalilmrini.github.io/Label_Attention_Layer.pdf) (2019) | 97.4 | 96.3 |
|
||||||
| [Zhou and Zhao](https://www.aclweb.org/anthology/P19-1230/) (2019) | 97.2 | 95.7 |
|
| [Zhou and Zhao](https://www.aclweb.org/anthology/P19-1230/) (2019) | 97.2 | 95.7 |
|
||||||
|
|
||||||
<figcaption class="caption">
|
<figcaption class="caption">
|
||||||
|
|
||||||
**Accuracy on the Penn Treebank.** See
|
**Dependency parsing accuracy** on the Penn Treebank. See
|
||||||
[NLP-progress](http://nlpprogress.com/english/dependency_parsing.html) for more
|
[NLP-progress](http://nlpprogress.com/english/dependency_parsing.html) for more
|
||||||
results.
|
results. **1. ** Project template:
|
||||||
|
[`benchmarks/parsing_penn_treebank`](%%GITHUB_PROJECTS/benchmarks/parsing_penn_treebank).
|
||||||
|
|
||||||
</figcaption>
|
</figcaption>
|
||||||
|
|
||||||
</figure>
|
</figure>
|
||||||
|
|
||||||
<Project id="benchmarks/parsing_penn_treebank">
|
|
||||||
|
|
||||||
The easiest way to reproduce spaCy's benchmarks on the Penn Treebank is to clone
|
|
||||||
our project template.
|
|
||||||
|
|
||||||
</Project>
|
|
||||||
|
|
||||||
<!-- TODO: ## Citing spaCy {#citation}
|
<!-- TODO: ## Citing spaCy {#citation}
|
||||||
|
|
||||||
-->
|
-->
|
||||||
|
|
|
@ -213,7 +213,7 @@ a quick web demo. It looks pretty similar to a config file used to define CI
|
||||||
pipelines.
|
pipelines.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
https://github.com/explosion/projects/tree/v3/pipelines/tagger_parser_ud/project.yml
|
%%GITHUB_PROJECTS/pipelines/tagger_parser_ud/project.yml
|
||||||
```
|
```
|
||||||
|
|
||||||
| Section | Description |
|
| Section | Description |
|
||||||
|
|
|
@ -24,6 +24,7 @@ const branch = isNightly ? 'develop' : 'master'
|
||||||
// Those variables are going to be replaced in the Markdown, e.g. %%GITHUB_SPACY
|
// Those variables are going to be replaced in the Markdown, e.g. %%GITHUB_SPACY
|
||||||
const replacements = {
|
const replacements = {
|
||||||
GITHUB_SPACY: `https://github.com/explosion/spaCy/tree/${branch}`,
|
GITHUB_SPACY: `https://github.com/explosion/spaCy/tree/${branch}`,
|
||||||
|
GITHUB_PROJECTS: `https://github.com/${site.projectsRepo}`,
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue
Block a user