Datasets:
File size: 378 Bytes
d84a351 ad560ed | 1 2 3 4 5 6 7 8 | #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}") |