mj-new commited on
Commit
4d73d6d
1 Parent(s): 3104dd4

Updated build script

Browse files
Files changed (2) hide show
  1. pl-asr-bigos-v2.py +1 -1
  2. test.py +6 -4
pl-asr-bigos-v2.py CHANGED
@@ -46,7 +46,7 @@ BIGOS (Benchmark Intended Grouping of Open Speech) dataset goal is to simplify a
46
  enable systematic benchmarking of open and commercial Polish ASR systems.
47
  """
48
 
49
- _HOMEPAGE = "https://huggingface.co/datasets/amu-cai/pl-asr-bigos-v2
50
 
51
  _LICENSE = "CC-BY-SA-4.0"
52
 
 
46
  enable systematic benchmarking of open and commercial Polish ASR systems.
47
  """
48
 
49
+ _HOMEPAGE = "https://huggingface.co/datasets/amu-cai/pl-asr-bigos-v2"
50
 
51
  _LICENSE = "CC-BY-SA-4.0"
52
 
test.py CHANGED
@@ -15,13 +15,15 @@ hf_account = "amu-cai"
15
  hf_db_name="/".join([hf_account,dataset_name])
16
  print(hf_db_name, hf_db_name)
17
 
18
- print("Testing dataset: ${dataset_name} from account ${hf_account} for all subsets")
19
 
20
  print("Checking build script locally - test split")
21
- #dataset_local = load_dataset(f"{dataset_name}.py", "all", split="test")
22
 
23
- print("Checking build script locally - test split")
24
- #dataset_local = load_dataset(f"{dataset_name}.py", "all", split="validation")
 
 
25
 
26
  print("Checking build script on huggingface.co")
27
  dataset_hf = load_dataset(hf_db_name, "all")
 
15
  hf_db_name="/".join([hf_account,dataset_name])
16
  print(hf_db_name, hf_db_name)
17
 
18
+ print(f"Testing dataset: {dataset_name} from account {hf_account} for all subsets")
19
 
20
  print("Checking build script locally - test split")
21
+ dataset_local = load_dataset(f"{dataset_name}.py", "all")
22
 
23
+ print(dataset_local)
24
+ print(dataset_local["test"][0])
25
+ print(dataset_local["validation"][0])
26
+ print(dataset_local["train"][0])
27
 
28
  print("Checking build script on huggingface.co")
29
  dataset_hf = load_dataset(hf_db_name, "all")