Hi,
So the think with BIO encoding is that it encodes a sequence of tokens with a single label.
The idea is that a sequence classifier can learn at which token a label begins (B),
continues (I) and which which tokens do not have a label at all (O).
So this is valid BIO encoding:
```
John[PER-B] Smith[PER-I] runs[O].
```
But this is not valid BIO encoding:
```
John[PER-B] bloody [O] Smith[PER-I]
```
The I always has to follow the B. It cannot appear on its own.
Thus, BIO encoding is not suitable for the annotation of discontinuous segments.
INCEpTION currently also does not have a direct support for discontinuous segments.
The best way you can currently model discontinuous segments is by:
Defining two layer, e.g.
* Entity (span)
* Entity fragment (span)
Then you would add a "Link (Entity fragment)" feature to the Entity layer.
In that way you could annotate like this:
```
John[Entity] bloody Smith[Entity Fragment] -- (link "Smith" to "John" via "fragments" feature)
```
You could even configure recommenders for the Entity and Entity fragment layers.
There is currently no built-in recommender that supports the link features like "fragments" though.
I hope that helps.
Best regards,
-- Richard