File size: 275 Bytes
bcac607 | 1 2 3 4 5 6 7 8 9 10 11 | from huggingface_hub import hf_hub_download
local_path = hf_hub_download(
repo_id="longevity-genie/aging-expressions",
repo_type="dataset",
filename="data/gtex_bulkformer_estimated_age_tpm.parquet",
revision="c595b34",
)
print("Downloaded to:", local_path)
|