You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, if no targets are found for a particular input sentence, no output at all will be produced for this sentence. This causes problems if you are trying to get frame annotations for some raw input, and then try to map these frame annotations back to the corresponding sentences in the input, since the number of input sentences and output sentences won't match.
If pred is empty for a particular instance, nothing will be written.
Would it be possible to (optionally, to not break the CONLL format) write some kind of null output (e.g. "SKIPPED_SENTENCE"), so that, when processing the output, it's easier to find which sentences are missing?
The text was updated successfully, but these errors were encountered:
Currently, if no targets are found for a particular input sentence, no output at all will be produced for this sentence. This causes problems if you are trying to get frame annotations for some raw input, and then try to map these frame annotations back to the corresponding sentences in the input, since the number of input sentences and output sentences won't match.
The relevant code is:
open-sesame/sesame/targetid.py
Lines 312 to 322 in 26a6b4b
If
pred
is empty for a particular instance, nothing will be written.Would it be possible to (optionally, to not break the CONLL format) write some kind of null output (e.g.
"SKIPPED_SENTENCE"
), so that, when processing the output, it's easier to find which sentences are missing?The text was updated successfully, but these errors were encountered: