forte
forte copied to clipboard
Allow `is_span` and `is_audio_span` to process entries in primitive form
Is your feature request related to a problem? Please describe.
Currently, the in_span and in_audio_span methods only handle entries of type Union[int, Entry]. We want to allow these methods to also handle entries that are stored in a dictionary form according to the interface suggested in #900.
Describe the solution you'd like There are two ways in which this problem can be approached.
- Modify each conditional branch of the methods to handle entries of the type
Dict[str, Any] - Create new methods
in_span_rawandin_audio_span_rawwhich would specifically be focused on handling entries of typeDict[str,Any].