diff --git a/website/docs/api/lexeme.md b/website/docs/api/lexeme.md index 5ec2aaf0c..018dc72d8 100644 --- a/website/docs/api/lexeme.md +++ b/website/docs/api/lexeme.md @@ -128,7 +128,6 @@ The L2 norm of the lexeme's vector representation. | `text` | unicode | Verbatim text content. | | `orth` | int | ID of the verbatim text content. | | `orth_` | unicode | Verbatim text content (identical to `Lexeme.text`). Exists mostly for consistency with the other attributes. | -| `lex_id` | int | ID of the lexeme's lexical type. | | `rank` | int | Sequential ID of the lexemes's lexical type, used to index into tables, e.g. for word vectors. | | `flags` | int | Container of the lexeme's binary flags. | | `norm` | int | The lexemes's norm, i.e. a normalized form of the lexeme text. | diff --git a/website/docs/api/token.md b/website/docs/api/token.md index 2085a02c6..356cffb59 100644 --- a/website/docs/api/token.md +++ b/website/docs/api/token.md @@ -468,7 +468,7 @@ The L2 norm of the token's vector representation. | `prob` | float | Smoothed log probability estimate of token's word type (context-independent entry in the vocabulary). | | `idx` | int | The character offset of the token within the parent document. | | `sentiment` | float | A scalar value indicating the positivity or negativity of the token. | -| `lex_id` | int | Sequential ID of the token's lexical type. | +| `lex_id` | int | Sequential ID of the token's lexical type, used to index into tables, e.g. for word vectors. | | `rank` | int | Sequential ID of the token's lexical type, used to index into tables, e.g. for word vectors. | | `cluster` | int | Brown cluster ID. | | `_` | `Underscore` | User space for adding custom [attribute extensions](/usage/processing-pipelines#custom-components-attributes). |