pannous / tensorflow-speech-recognition

🎙Speech recognition using the tensorflow deep learning framework, sequence-to-sequence neural networks
Other
2.16k stars 642 forks source link

Training Number #42

Open hjoshi123 opened 6 years ago

hjoshi123 commented 6 years ago

The Training keeps going on and on no matter what...I set the training_iters value to 3000 still it keeps going on .. what is the reason? screen shot 2017-08-03 at 11 07 59 pm

cristianccq commented 6 years ago

change the while loop, replace while 1 .... for while i in range(....

ngragaei commented 6 years ago

Hi, I have the same problem. Which while loop to change?

cristianccq commented 6 years ago

hi, something like this

while i < training_iters: #training_iters model.fit(trainX, trainY, n_epoch=10,show_metric=True, validation_set=(testX, testY), batch_size=batch_size) _y=model.predict(X) i = i + 1