mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
add explanation about overwriting behaviour (#12464)
* add explanation about overwriting behaviour * Update website/docs/api/spancategorizer.mdx Co-authored-by: Adriane Boyd <adrianeboyd@gmail.com> * Update website/docs/api/spancategorizer.mdx Co-authored-by: Adriane Boyd <adrianeboyd@gmail.com> * Update website/docs/api/spancategorizer.mdx Co-authored-by: Adriane Boyd <adrianeboyd@gmail.com> * format --------- Co-authored-by: Adriane Boyd <adrianeboyd@gmail.com>
This commit is contained in:
parent
fac457a509
commit
d1474fdd91
|
@ -20,8 +20,9 @@ output class probabilities are independent for each class. However, if you need
|
||||||
to predict at most one true class for a span, then use `spancat_singlelabel`. It
|
to predict at most one true class for a span, then use `spancat_singlelabel`. It
|
||||||
uses a `Softmax` layer and treats the task as a multi-class problem.
|
uses a `Softmax` layer and treats the task as a multi-class problem.
|
||||||
|
|
||||||
Predicted spans will be saved in a [`SpanGroup`](/api/spangroup) on the doc.
|
Predicted spans will be saved in a [`SpanGroup`](/api/spangroup) on the doc
|
||||||
Individual span scores can be found in `spangroup.attrs["scores"]`.
|
under `doc.spans[spans_key]`, where `spans_key` is a component config setting.
|
||||||
|
Individual span scores are stored in `doc.spans[spans_key].attrs["scores"]`.
|
||||||
|
|
||||||
## Assigned Attributes {id="assigned-attributes"}
|
## Assigned Attributes {id="assigned-attributes"}
|
||||||
|
|
||||||
|
@ -29,7 +30,9 @@ Predictions will be saved to `Doc.spans[spans_key]` as a
|
||||||
[`SpanGroup`](/api/spangroup). The scores for the spans in the `SpanGroup` will
|
[`SpanGroup`](/api/spangroup). The scores for the spans in the `SpanGroup` will
|
||||||
be saved in `SpanGroup.attrs["scores"]`.
|
be saved in `SpanGroup.attrs["scores"]`.
|
||||||
|
|
||||||
`spans_key` defaults to `"sc"`, but can be passed as a parameter.
|
`spans_key` defaults to `"sc"`, but can be passed as a parameter. The `spancat`
|
||||||
|
component will overwrite any existing spans under the spans key
|
||||||
|
`doc.spans[spans_key]`.
|
||||||
|
|
||||||
| Location | Value |
|
| Location | Value |
|
||||||
| -------------------------------------- | -------------------------------------------------------- |
|
| -------------------------------------- | -------------------------------------------------------- |
|
||||||
|
|
Loading…
Reference in New Issue
Block a user