ga642381 commited on
Commit
08de1af
·
verified ·
1 Parent(s): 18aa2df

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -4
README.md CHANGED
@@ -56,7 +56,6 @@ basic_instructions/
56
  │ ├── *-dataset.json # per-dataset JSON manifest(s)
57
  ├── audios/
58
  │ ├── <dataset_id>/
59
- │ │ ├── train/*.wav
60
  │ │ └── test/*.wav
61
  ├── alignments/ # per-audio alignment files
62
  │ ├── <dataset_id>/
@@ -71,7 +70,6 @@ advanced_instructions/
71
  │ ├── *-dataset.json # per-dataset JSON manifest(s) with timing tokens
72
  ├── audios/
73
  │ ├── <dataset_id>/
74
- │ │ ├── train/*.wav
75
  │ │ └── test/*.wav
76
  ├── alignments/ # per-audio alignment files
77
  │ ├── <dataset_id>/
@@ -88,13 +86,11 @@ Download example (Hugging Face):
88
  from huggingface_hub import hf_hub_download
89
  import os
90
 
91
- token = os.getenv("HF_TOKEN") or "<YOUR_HF_TOKEN>"
92
  path = hf_hub_download(
93
  repo_id="gametime-benchmark/gametime",
94
  repo_type="dataset",
95
  filename="download/basic_instructions.zip",
96
  revision="main",
97
- token=token,
98
  local_dir=".",
99
  )
100
  print("saved to:", path)
 
56
  │ ├── *-dataset.json # per-dataset JSON manifest(s)
57
  ├── audios/
58
  │ ├── <dataset_id>/
 
59
  │ │ └── test/*.wav
60
  ├── alignments/ # per-audio alignment files
61
  │ ├── <dataset_id>/
 
70
  │ ├── *-dataset.json # per-dataset JSON manifest(s) with timing tokens
71
  ├── audios/
72
  │ ├── <dataset_id>/
 
73
  │ │ └── test/*.wav
74
  ├── alignments/ # per-audio alignment files
75
  │ ├── <dataset_id>/
 
86
  from huggingface_hub import hf_hub_download
87
  import os
88
 
 
89
  path = hf_hub_download(
90
  repo_id="gametime-benchmark/gametime",
91
  repo_type="dataset",
92
  filename="download/basic_instructions.zip",
93
  revision="main",
 
94
  local_dir=".",
95
  )
96
  print("saved to:", path)