Spaces:
Runtime error
Runtime error
fixed output text length at 4000 characters
Browse files
app.py
CHANGED
@@ -103,7 +103,7 @@ def asr_transcript_long(input_file,tokenizer=tokenizer, model=model ):
|
|
103 |
transcript += correct_casing(transcription.lower())
|
104 |
#transcript += " "
|
105 |
|
106 |
-
return transcript[:
|
107 |
|
108 |
|
109 |
# In[ ]:
|
|
|
103 |
transcript += correct_casing(transcription.lower())
|
104 |
#transcript += " "
|
105 |
|
106 |
+
return transcript[:4000]
|
107 |
|
108 |
|
109 |
# In[ ]:
|