ylacombe commited on
Commit
bd47b58
·
1 Parent(s): dd452e8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -162,7 +162,7 @@ def generate_audio_and_image(story_prompt, voice_preset="Speaker 6 (en)"):
162
 
163
  pieces = []
164
  for i in range(0, len(model_input), BATCH_SIZE):
165
- inputs = model_input[BATCH_SIZE*i:min(BATCH_SIZE*(i+1), len(model_input))]
166
 
167
  if len(inputs) != 0:
168
  inputs = processor(inputs, voice_preset=voice_presets_dict[voice_preset])
 
162
 
163
  pieces = []
164
  for i in range(0, len(model_input), BATCH_SIZE):
165
+ inputs = model_input[i:min(i + BATCH_SIZE, len(model_input))]
166
 
167
  if len(inputs) != 0:
168
  inputs = processor(inputs, voice_preset=voice_presets_dict[voice_preset])