The most common tagging procedure for NER is IOB. But it seems that this kind of tagging is limited to cases where tokens from the same entity are contiguous.
So for instance,
Jane Smith is walking in the park would be tagged as: B-PER I-PER O O O O O
And here my PER entity is the concatenation of [Jane, Smith]
If we tweak the example:
Jane and James Smith are walking in the park
B-PER O B-PER I-PER O O O O O
Now the issue is that the entities we would get are [Jane] and [James, Smith] because the IOB tagging does not allow to link Jane to Smith.
Is there any tagging schema that would allow to mark as entities both [Jane, Smith] and [James, Smith]?