transformers.js icon indicating copy to clipboard operation
transformers.js copied to clipboard

QuestionAnsweringOutput does not return start/end index

Open sleep9 opened this issue 9 months ago • 0 comments

Question

Question/Answering pipeline does not seem to return start/end index.

console output example

{ answer: 'anywhere', score: 0.8719829671013909 }

source code in pipeline.js

class QuestionAnsweringPipeline ...

// TODO add start and end?
// NOTE: HF returns character index
                toReturn.push({
                    answer, score
                });```

sleep9 avatar Mar 18 '25 21:03 sleep9