Add Vectors class

This commit is contained in:
ines 2017-06-05 13:33:11 +02:00
parent 040553ca59
commit 9f55c0d4f6
2 changed files with 14 additions and 0 deletions

View File

@ -24,6 +24,7 @@
"Lexeme": "lexeme",
"Vocab": "vocab",
"StringStore": "stringstore",
"Vectors": "vectors",
"GoldParse": "goldparse",
"GoldCorpus": "goldcorpus",
"Binder": "binder"
@ -164,6 +165,12 @@
"source": "spacy/tokens/binder.pyx"
},
"vectors": {
"title": "Vectors",
"tag": "class",
"source": "spacy/vectors.pyx"
},
"annotation": {
"title": "Annotation Specifications"
}

View File

@ -0,0 +1,7 @@
//- 💫 DOCS > API > VECTORS
include ../../_includes/_mixins
p A container class for vector data keyed by string.
+under-construction