As I am using checkpoint, I believe every time I start the training, it is continuing from that point. But I get the below message in between the training. Can you tell me if its just a warning or any thing wrong in the process.
D Starting batch…
2018-03-26 11:26:10.350260: W tensorflow/core/util/ctc/ctc_loss_calculator.cc:144]No valid path found.
D Finished batch step 104690.
D Sending Job (ID: 84, worker: 0, epoch: 3, set_name: train)…
D Computing Job (ID: 85, worker: 0, epoch: 3, set_name: train)…
D Starting batch…
D Finished batch step 104691.
D Sending Job (ID: 85, worker: 0, epoch: 3, set_name: train)…
D Computing Job (ID: 86, worker: 0, epoch: 3, set_name: train)…
D Starting batch…
D Finished batch step 104692.
D Sending Job (ID: 86, worker: 0, epoch: 3, set_name: train)…
D Computing Job (ID: 87, worker: 0, epoch: 3, set_name: train)…
Thank you
lissyx
((slow to reply) [NOT PROVIDING SUPPORT])
4
It’s not an error, just a warning, as you can deduce from the ‘W’. As much as I remember, it’s happening in the begining with CTC but it should not happen too much after.
Training my model means I am making the leaning for the existing model. Is my assumption correct ?
In my case , I want to create the transcripts for the audio songs. Till now I have written the script for the conversion as below. if its useful for some 1 please refer the below code
print ’ converting mp4 to wav file’
from pydub import AudioSegment
print ‘mp4 file data before conversion’
sound = AudioSegment.from_file(“a.mp4”,format = “mp4”)
print "channels(mono :1, streo:2 )= ", sound.channels,"Frequency in Hz= ",sound.frame_rate,"bits(1: 8bit, 2: 16bit) = ", sound.sample_width
new_sound = sound.set_frame_rate(16000).set_channels(1)
new_sound.export(“a.wav”,format=“wav”)
print ‘wav file data after conversion’
print "channels(mono :1, streo:2 )= ", new_sound.channels,"Frequency in Hz= ",new_sound.frame_rate,"bits(1: 8bit, 2: 16bit) = ", new_sound.sample_width
But I am afraid about the background music in the songs. Any comments on that please?
Thanks,
lissyx
((slow to reply) [NOT PROVIDING SUPPORT])
6
I don’t get your point.
I also don’t understand what you mean there: you are mixing training and existing model, I’m not sure what it is you want exactly.
Your script is barely readable, I don’t understand what it does.
You have one audio file that is music + song ? If so, yes, the background music will be noise that makes it harder.