diff --git a/examples/example_getai_stanfordnlp_imdb_dataset.py b/examples/example_getai_stanfordnlp_imdb_dataset.py new file mode 100644 index 0000000..6ef2425 --- /dev/null +++ b/examples/example_getai_stanfordnlp_imdb_dataset.py @@ -0,0 +1,13 @@ +from getai import download_dataset +import asyncio + +async def download_dataset_example(): + await download_dataset( + identifier="stanfordnlp/imdb", + hf_token="None", + max_connections=5, + output_dir="datasets/stardfordnlp/imdb" + ) + +if __name__ == "__main__": + asyncio.run(download_dataset_example())