mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
38 lines
1.3 KiB
Plaintext
38 lines
1.3 KiB
Plaintext
//- 💫 DOCS > USAGE > MODELS
|
|
|
|
include ../_includes/_mixins
|
|
|
|
p
|
|
| As of v1.7.0, models for spaCy can be installed as #[strong Python packages].
|
|
| 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
|
|
| #[code requirements.txt]. Models can be installed from a download URL or
|
|
| a local directory, manually or via #[+a("https://pypi.python.org/pypi/pip") pip].
|
|
| Their data can be located anywhere on your file system.
|
|
|
|
+aside("Important note")
|
|
| If you're upgrading to spaCy v1.7.x or v2.x, you need to
|
|
| #[strong download the new models]. If you've trained statistical models
|
|
| that use spaCy's annotations, you should #[strong retrain your models]
|
|
| after updating spaCy. If you don't retrain, you may suffer train/test
|
|
| skew, which might decrease your accuracy.
|
|
|
|
+section("quickstart")
|
|
include _models/_quickstart
|
|
|
|
+section("available")
|
|
+h(2, "available") Available models
|
|
include _models/_available-models
|
|
|
|
+section("install")
|
|
+h(2, "download") Installing and using models
|
|
include _models/_install
|
|
|
|
+section("languages")
|
|
+h(2, "languages") Language support
|
|
include _models/_languages
|
|
|
|
+section("production")
|
|
+h(2, "production") Using models in production
|
|
include _models/_production
|