avfranco commited on
Commit
41b2864
1 Parent(s): eecda59

batch_size increased to 8

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -53,7 +53,7 @@ def asr_transcriber(audio_file):
53
  json_output = pipe(
54
  audio_file_wav,
55
  chunk_length_s=30,
56
- batch_size=2,
57
  generate_kwargs={"task": task, "language": language},
58
  return_timestamps=ts
59
  )
 
53
  json_output = pipe(
54
  audio_file_wav,
55
  chunk_length_s=30,
56
+ batch_size=8,
57
  generate_kwargs={"task": task, "language": language},
58
  return_timestamps=ts
59
  )