while(1):
means that it would never stop ,i have been train for few days ,but just never get finished.
And the code was also wrong in some ways. The train data would be always the initial 64 audios.and train it with while(true), so we'd always training our model with the same initial 64 audios
In face , X,Y=nextbatch should be get inside of the whlie loop,Then each epoch can get the next 64 audio'data to training modle.
while(1):
means that it would never stop ,i have been train for few days ,but just never get finished.
And the code was also wrong in some ways. The train data would be always the initial 64 audios.and train it with while(true), so we'd always training our model with the same initial 64 audios
In face , X,Y=nextbatch should be get inside of the whlie loop,Then each epoch can get the next 64 audio'data to training modle.