edsnlp.utils.inclusion
check_inclusion(span, start, end)
Checks whether the span overlaps the boundaries.
PARAMETER | DESCRIPTION |
---|---|
span |
Span to check.
TYPE:
|
start |
Start of the boundary
TYPE:
|
end |
End of the boundary
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
bool
|
Whether the span overlaps the boundaries. |
Source code in edsnlp/utils/inclusion.py
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
|
check_sent_inclusion(span, start, end)
Checks whether the span overlaps the boundaries.
PARAMETER | DESCRIPTION |
---|---|
span |
Span to check.
TYPE:
|
start |
Start of the boundary
TYPE:
|
end |
End of the boundary
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
bool
|
Whether the span overlaps the boundaries. |
Source code in edsnlp/utils/inclusion.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
|