Replies: 2 comments
-
|
The client log would give a better answer, but looking at the code, seems it is not retried, which is correct. That is an out of memory issue, your GPU loaded the model fine, but it doesn't have enough free memory to run inference on arbitrary audios. Retrying would trigger the error again and processing could never end. Generally just connection errors are retried. I suggest you trying a smaller model or using a GPU with more memory. Another possibility is tweaking the hard coded max audio chunk to be transcribed from 59s to a smaller value (MAX_WAV_TIME in AbstractTranscriptionTask class), maybe transcribing audios in smaller chunks may use less memory, but that would cause more transcription errors because more words could be cut. And you would need to compile the application from the source. |
Beta Was this translation helpful? Give feedback.
-
|
Understood, thank you very much Nassif. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
When I receive the below error, IPED tries to run again the audio or it goes to next one? The large wav2vec2 dataset uses almost all of the 6GB GPU RAM, but its still faster than our other 8GB GPU model. But I cant figure if its just ignoring those audios or not.
Beta Was this translation helpful? Give feedback.
All reactions