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
We support multiple predictions per input, and soon we will add a confidence score for each prediction. Keeping the tsv format will make things difficult down the line. I propose using jsonl instead.
The text was updated successfully, but these errors were encountered:
jsonl means one JSON blob per line right? I don't mind. One of the requirements is being able to concatenate files, and process files line by line in a streaming fashion, so this will still work. A single JSON blob on the other hand would not work, because Python has no streaming JSON library.
We support multiple predictions per input, and soon we will add a confidence score for each prediction. Keeping the
tsv
format will make things difficult down the line. I propose usingjsonl
instead.The text was updated successfully, but these errors were encountered: