When loading the dgs_corpus dataset, an AssertionError occurs due to unsynchronized pose shapes within one of the documents.
Here is the error message:
AssertionError: Document 1177918: The poses are not synchronized ([(28254, 1, 543, 3), (14127, 1, 543, 3)])
Assertion Code: datasets/sign_language_datasets/datasets/dgs_corpus/dgs_corpus.py
assert all(p.body.data.shape == first_pose.body.data.shape for p in poses_values), f"Document {document_id}: The poses are not synchronized ({[p.body.data.shape for p in poses_values]})"