Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -29,7 +29,8 @@ def predict(text, speaker):
|
|
29 |
|
30 |
# limit input length
|
31 |
input_ids = inputs["input_ids"]
|
32 |
-
input_ids = input_ids[..., :model.config.max_text_positions]
|
|
|
33 |
|
34 |
if speaker == "Surprise Me!":
|
35 |
# load one of the provided speaker embeddings at random
|
|
|
29 |
|
30 |
# limit input length
|
31 |
input_ids = inputs["input_ids"]
|
32 |
+
#input_ids = input_ids[..., :model.config.max_text_positions]
|
33 |
+
input_ids = input_ids[..., :5000]
|
34 |
|
35 |
if speaker == "Surprise Me!":
|
36 |
# load one of the provided speaker embeddings at random
|