Datasets:
| #Install hugging face package using the command below | |
| #pip install --upgrade huggingface_hub | |
| from huggingface_hub import dataset_info #Or model_info | |
| # This requires zero login or authentication | |
| info = dataset_info("TorontoMetropolitanUniversity/Network_Defense_Symmetric_Competitive", expand=["downloadsAllTime"]) | |
| print(f"Total History Downloads: {info.downloads_all_time}") |