ValueError: invalid literal for int() with base 10: ''
Created by: ArtemiyFirsov
Getting the error on Ubuntu 18.04 Docker installation.
Running docker with
sudo docker run --gpus=all -it -v $(pwd)/DeepSpeech:/DeepSpeech hub.baidubce.com/paddlepaddle/deep_speech_fluid:latest-gpu /bin/bash
Updated the code to the latest develop branch.
Error happens on infer
CUDA_VISIBLE_DEVICES=0 python infer.py --infer_manifest test_deep_speech.txt
Manifest I am trying to infer
{"audio_filepath": "/DeepSpeech/test_deep_speech.wav", "duration": 30.960, "text": ""}
So it does not even goes to the infer, it fails on data read, because the code tried to convert text to int.
UPDATE: sorry, this is in the DeepSpeech repo