scite
scite copied to clipboard
Some wrong in tag2triplet module
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)))