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
The Checker.check function in line 221 fails in the cli.py. The most likely reason is that the triples list in not in the correct format.
A possible solution is to make a change in line 208 : triplets = item["triplets"] --> triplets = item["triplets"][0]
The text was updated successfully, but these errors were encountered:
The Checker.check function in line 221 fails in the cli.py. The most likely reason is that the triples list in not in the correct format.
A possible solution is to make a change in line 208 :
triplets = item["triplets"]
-->triplets = item["triplets"][0]
The text was updated successfully, but these errors were encountered: