Update docs [ci skip]

This commit is contained in:
Ines Montani 2020-09-24 10:13:41 +02:00
parent 02008e9a55
commit e2ffe51fb5
4 changed files with 9 additions and 14 deletions

View File

@ -12,8 +12,8 @@ import { Help } from 'components/typography'; import Link from 'components/link'
<figcaption class="caption">
**Accuracy and speed on the
[OntoNotes 5.0](https://catalog.ldc.upenn.edu/LDC2013T19) corpus.**
**Full pipeline accuracy and speed** on the
[OntoNotes 5.0](https://catalog.ldc.upenn.edu/LDC2013T19) corpus.
</figcaption>

View File

@ -65,28 +65,22 @@ import Benchmarks from 'usage/\_benchmarks-models.md'
| System | UAS | LAS |
| ------------------------------------------------------------------------------ | ---: | ---: |
| spaCy RoBERTa (2020) | 96.8 | 95.0 |
| spaCy CNN (2020) | 93.7 | 91.8 |
| spaCy RoBERTa (2020)<sup>1</sup> | 96.8 | 95.0 |
| 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 |
| [Zhou and Zhao](https://www.aclweb.org/anthology/P19-1230/) (2019) | 97.2 | 95.7 |
<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
results.
results. **1. ** Project template:
[`benchmarks/parsing_penn_treebank`](%%GITHUB_PROJECTS/benchmarks/parsing_penn_treebank).
</figcaption>
</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}
-->

View File

@ -213,7 +213,7 @@ a quick web demo. It looks pretty similar to a config file used to define CI
pipelines.
```yaml
https://github.com/explosion/projects/tree/v3/pipelines/tagger_parser_ud/project.yml
%%GITHUB_PROJECTS/pipelines/tagger_parser_ud/project.yml
```
| Section | Description |

View File

@ -24,6 +24,7 @@ const branch = isNightly ? 'develop' : 'master'
// Those variables are going to be replaced in the Markdown, e.g. %%GITHUB_SPACY
const replacements = {
GITHUB_SPACY: `https://github.com/explosion/spaCy/tree/${branch}`,
GITHUB_PROJECTS: `https://github.com/${site.projectsRepo}`,
}
/**