analogdevicesinc/ai8x-training

TENSORFLOW MODEL TRAINING

Doruk-Dilmen opened this issue · 1 comments

Hello,

I am working on tensorflow kws20. I need to ask something about training. According to the README.md I have completed the installation. But in the training part, it downloads the dataset and then does not train it.

image
image
image

Why could it be? Am I missing something about installation?

Generally speaking, our Tensorflow branch is outdated and no longer updated or maintained. We are actively supporting Pytorch. So it is highly recommended to move to Pytorch.

In your case, the dataset creation did not go through in the 2nd image. You should see all 35 labels processed. The problem is the librosa update does not like the librosa.effects.time_stretch to have the rate as a positional argument.
you can update ai8x-training/TensorFlow/datasets/kws20.py, line 294 as:
audio2 = librosa.effects.time_stretch(audio, rate=rate)