tensorflow-speech-recognition icon indicating copy to clipboard operation
tensorflow-speech-recognition copied to clipboard

Training Number

Open hjoshi123 opened this issue 7 years ago • 3 comments

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

hjoshi123 avatar Aug 03 '17 17:08 hjoshi123

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

cristianccq avatar Oct 17 '17 14:10 cristianccq

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

ngragaei avatar Dec 11 '17 18:12 ngragaei

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

cristianccq avatar Dec 14 '17 02:12 cristianccq