bzhangGo / sltunet

SLTUNET: A Simple Unified Model for Sign Language Translation (ICLR 2023)
27 stars 7 forks source link

DGS3-T dataset download #9

Open XinS0909 opened 3 weeks ago

XinS0909 commented 3 weeks ago

Thank you very much for sharing your work. I encountered the following issue while building DGS3-T: “tensorflow_datasets.core.download.downloader.DownloadError: Failed to get url https://nlp.biu.ac.il/~amit/datasets/dgs.json. HTTP code: 404.”

It seems that the previously saved URL is no longer valid. Could you please provide an alternative method to download the data?

bzhangGo commented 3 weeks ago

Hey @XinS0909, there seems to be an update in another repository; could you please try this dgs.json instead?

XinS0909 commented 3 weeks ago

Thank you very much for your response. I download the document-level data using the new code.

config = DgsCorpusConfig(name="only-annotations-sentence-level", version="1.0.0", include_video=False, include_pose=None, data_type="sentence") dgs_corpus = tfds.load('dgs_corpus', builder_kwargs=dict(config=config))

I noticed that there are no corresponding train, val, and test splits. Could you please provide those?