Pendrokar commited on
Commit
6973050
1 Parent(s): cfc792b

Asr for dataset draft

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py CHANGED
@@ -435,6 +435,15 @@ def generate_matching_pairs(samples: List[Sample]) -> List[Tuple[Sample, Sample]
435
 
436
  return matching_pairs
437
 
 
 
 
 
 
 
 
 
 
438
  # List[Tuple[Sample, Sample]]
439
  all_pairs = []
440
 
 
435
 
436
  return matching_pairs
437
 
438
+ cached_audio = []
439
+
440
+ @spaces.GPU(duration=10)
441
+ def asr_cached_for_dataset():
442
+
443
+ for caudio in cached_audio:
444
+ pass
445
+ return True
446
+
447
  # List[Tuple[Sample, Sample]]
448
  all_pairs = []
449