how to listen to audio starting from the feature extractions of the deep learning model?

38 Views Asked by At

How can I play audio from model.predict return

features_test = model.predict(X_test)

x = features_test\[0\]
x = np.expand_dims(x, 0)
ipd.Audio(x\[0,:,0\], rate=16000, autoplay=False)
0

There are 0 best solutions below