mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 09:56:28 +03:00
Update v2 details
This commit is contained in:
parent
008d7408cf
commit
6447b8e396
|
@ -111,8 +111,8 @@ include _includes/_mixins
|
||||||
| deliver accuracy in-line with the latest research systems,
|
| deliver accuracy in-line with the latest research systems,
|
||||||
| even when evaluated from raw text. With these innovations, spaCy
|
| even when evaluated from raw text. With these innovations, spaCy
|
||||||
| v2.0's models are #[strong 10× smaller],
|
| v2.0's models are #[strong 10× smaller],
|
||||||
| #[strong 20% more accurate], and #[strong just as fast] as the
|
| #[strong 20% more accurate], and #[strong even cheaper to run] than
|
||||||
| previous generation.
|
| the previous generation.
|
||||||
|
|
||||||
.o-block-small.u-text-right
|
.o-block-small.u-text-right
|
||||||
+button("/models", true, "secondary-light") Download models
|
+button("/models", true, "secondary-light") Download models
|
||||||
|
|
|
@ -20,8 +20,8 @@ include ../_includes/_mixins
|
||||||
| deliver #[strong accuracy in-line with the latest research systems],
|
| deliver #[strong accuracy in-line with the latest research systems],
|
||||||
| even when evaluated from raw text. With these innovations, spaCy
|
| even when evaluated from raw text. With these innovations, spaCy
|
||||||
| v2.0's models are #[strong 10× smaller],
|
| v2.0's models are #[strong 10× smaller],
|
||||||
| #[strong 20% more accurate], and #[strong just as fast] as the
|
| #[strong 20% more accurate], and #[strong even cheaper to run] than
|
||||||
| previous generation.
|
| the previous generation.
|
||||||
|
|
||||||
include ../usage/_models/_quickstart
|
include ../usage/_models/_quickstart
|
||||||
|
|
||||||
|
|
|
@ -91,7 +91,7 @@ p
|
||||||
| As of v2.0, spaCy's comes with neural network models that are implemented
|
| As of v2.0, spaCy's comes with neural network models that are implemented
|
||||||
| in our machine learning library, #[+a(gh("thinc")) Thinc]. For GPU
|
| in our machine learning library, #[+a(gh("thinc")) Thinc]. For GPU
|
||||||
| support, we've been grateful to use the work of
|
| support, we've been grateful to use the work of
|
||||||
| #[+a("http://chainer.org") Chainer]'s CuPy module, which provides
|
| Chainer's #[+a("https://cupy.chainer.org") CuPy] module, which provides
|
||||||
| a NumPy-compatible interface for GPU arrays.
|
| a NumPy-compatible interface for GPU arrays.
|
||||||
|
|
||||||
p
|
p
|
||||||
|
|
|
@ -10,8 +10,9 @@ p
|
||||||
+h(3, "features-models") Convolutional neural network models
|
+h(3, "features-models") Convolutional neural network models
|
||||||
|
|
||||||
+aside-code("Example", "bash")
|
+aside-code("Example", "bash")
|
||||||
for model in ["en", "de", "fr", "es", "pt", "it"]
|
for _, lang in MODELS
|
||||||
| spacy download #{model} # default #{LANGUAGES[model]} model!{'\n'}
|
if lang != "xx"
|
||||||
|
| spacy download #{lang} # default #{LANGUAGES[lang]} model!{'\n'}
|
||||||
| spacy download xx_ent_wiki_sm # multi-language NER
|
| spacy download xx_ent_wiki_sm # multi-language NER
|
||||||
|
|
||||||
p
|
p
|
||||||
|
@ -20,14 +21,22 @@ p
|
||||||
| been designed and implemented from scratch specifically for spaCy, to
|
| been designed and implemented from scratch specifically for spaCy, to
|
||||||
| give you an unmatched balance of speed, size and accuracy. The new
|
| give you an unmatched balance of speed, size and accuracy. The new
|
||||||
| models are #[strong 10× smaller], #[strong 20% more accurate],
|
| models are #[strong 10× smaller], #[strong 20% more accurate],
|
||||||
| and #[strong just as fast] as the previous generation.
|
| and #[strong even cheaper to run] than the previous generation.
|
||||||
| #[strong GPU usage] is now supported via
|
|
||||||
| #[+a("http://chainer.org") Chainer]'s CuPy module.
|
p
|
||||||
|
| spaCy v2.0's new neural network models bring significant improvements in
|
||||||
|
| accuracy, especially for English Named Entity Recognition. The new
|
||||||
|
| #[+a("/models/en#en_core_web_lg") #[code en_core_web_lg]] model makes
|
||||||
|
| about #[strong 25% fewer mistakes] than the corresponding v1.x model and
|
||||||
|
| is within #[strong 1% of the current state-of-the-art]
|
||||||
|
| (#[+a("https://arxiv.org/pdf/1702.02098.pdf") Strubell et al., 2017]).
|
||||||
|
| The v2.0 models are also cheaper to run at scale, as they require
|
||||||
|
| #[strong under 1 GB of memory] per process.
|
||||||
|
|
||||||
+infobox
|
+infobox
|
||||||
| #[+label-inline Usage:] #[+a("/models") Models directory],
|
| #[+label-inline Usage:] #[+a("/models") Models directory],
|
||||||
| #[+a("/models/comparison") Models comparison],
|
| #[+a("/models/comparison") Models comparison],
|
||||||
| #[+a("/usage/#gpu") Using spaCy with GPU]
|
| #[+a("#benchmarks") Benchmarks]
|
||||||
|
|
||||||
+h(3, "features-pipelines") Improved processing pipelines
|
+h(3, "features-pipelines") Improved processing pipelines
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ p
|
||||||
| #[strong deep learning-powered models] for spaCy's tagger,
|
| #[strong deep learning-powered models] for spaCy's tagger,
|
||||||
| parser and entity recognizer. The new models are
|
| parser and entity recognizer. The new models are
|
||||||
| #[strong 10× smaller], #[strong 20% more accurate] and
|
| #[strong 10× smaller], #[strong 20% more accurate] and
|
||||||
| just as fast as the previous generation.
|
| #[strong even cheaper to run] than the previous generation.
|
||||||
|
|
||||||
p
|
p
|
||||||
| We've also made several usability improvements that are
|
| We've also made several usability improvements that are
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
include ../_includes/_mixins
|
include ../_includes/_mixins
|
||||||
|
|
||||||
p
|
p
|
||||||
| As of v1.7.0, models for spaCy can be installed as #[strong Python packages].
|
| spaCy's models can be installed as #[strong Python packages].
|
||||||
| This means that they're a component of your application, just like any
|
| This means that they're a component of your application, just like any
|
||||||
| other module. They're versioned and can be defined as a dependency in your
|
| other module. They're versioned and can be defined as a dependency in your
|
||||||
| #[code requirements.txt]. Models can be installed from a download URL or
|
| #[code requirements.txt]. Models can be installed from a download URL or
|
||||||
|
|
Loading…
Reference in New Issue
Block a user