Skip to content

Fix broken markdown table #164

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,12 +192,12 @@ The following attributes are available via the `._` property of `Token` and
`Span` objects – for example `token._.in_s2v`:

| Name | Attribute Type | Return Type | Description |
| ------------------ | -------------- | ------------------ | ---------------------------------------------------------------------------------- | --------------- | ------- |
| `in_s2v` | property | bool | Whether a key exists in the vector map. |
| `s2v_key` | property | unicode | The sense2vec key of the given object, e.g. `"duck | NOUN"`. |
| ------------------ | -------------- | ------------------ | ---------------------------------------------------------------------------------- |
| `in_s2v` | property | bool | Whether a key exists in the vector map. |
| `s2v_key` | property | unicode | The sense2vec key of the given object, e.g. `"duck\|NOUN"`. |
| `s2v_vec` | property | `ndarray[float32]` | The vector of the given key. |
| `s2v_freq` | property | int | The frequency of the given key. |
| `s2v_other_senses` | property | list | Available other senses, e.g. `"duck | VERB"`for`"duck | NOUN"`. |
| `s2v_other_senses` | property | list | Available other senses, e.g. `"duck\|VERB"` for `"duck\|NOUN"`. |
| `s2v_most_similar` | method | list | Get the `n` most similar terms. Returns a list of `((word, sense), score)` tuples. |
| `s2v_similarity` | method | float | Get the similarity to another `Token` or `Span`. |

Expand Down