scite icon indicating copy to clipboard operation
scite copied to clipboard

Some wrong in tag2triplet module

Open SimLif opened this issue 4 years ago • 0 comments

https://github.com/Das-Boot/scite/blob/1e082be765810f40e37c328f452d5ded69b06fa8/models/tag2triplet.py#L205

For record.append(([np.abs(e[0]-e[1]) for e in i], list(i))), I think the code should be like that: record.append((sum([np.abs(e[0]-e[1]) for e in i]), list(i)))

SimLif avatar May 04 '21 15:05 SimLif