Hello! Thanks for posting this. I'm excited to run speech recognition on files! I've been trying to use Deep Speech 2 for evaluating my denoising pipeline. However, I'm having some trouble with the installation, and most of it is from aeon and the data loading.
When I run:
python evaluate.py --manifest val:$TOPDIR/librispeech/test-clean/test-manifest.csv --model_file $TOPDIR/model/librispeech_16_epochs.prm
I get:
Traceback (most recent call last):
File "evaluate.py", line 21, in <module>
from aeon.dataloader import DataLoader
ModuleNotFoundError: No module named 'aeon.dataloader'
Here's how I did my installation. I installed Neon from scratch via the original github page, which I assumed installed aeon. It did, but dataloader apparently was not in that installation. So, I went to the aeon page. The instructions told me to install aeon via:
git clone https://github.com/NervanaSystems/private-aeon.git aeon
That seemed incorrect (since private-aeon.git seems to no longer be private). So, I just installed
git clone https://github.com/NervanaSystems/aeon.git aeon
I ran into some C++ problems, so I followed Aeon Issue 48, which installed it. However, even after I installed aeon, I still couldn't import aeon.datasetloader.
import aeon.datasetloader
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-2-2f90034cee08> in <module>()
----> 1 import aeon.datasetloader
ImportError: No module named datasetloader
Hello! Thanks for posting this. I'm excited to run speech recognition on files! I've been trying to use Deep Speech 2 for evaluating my denoising pipeline. However, I'm having some trouble with the installation, and most of it is from
aeonand the data loading.When I run:
python evaluate.py --manifest val:$TOPDIR/librispeech/test-clean/test-manifest.csv --model_file $TOPDIR/model/librispeech_16_epochs.prmI get:
Here's how I did my installation. I installed Neon from scratch via the original github page, which I assumed installed
aeon. It did, but dataloader apparently was not in that installation. So, I went to the aeon page. The instructions told me to install aeon via:That seemed incorrect (since private-aeon.git seems to no longer be private). So, I just installed
I ran into some C++ problems, so I followed Aeon Issue 48, which installed it. However, even after I installed aeon, I still couldn't import aeon.datasetloader.