Spaces:
Paused
Paused
Update app.py
Browse files
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[
|
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])
|