I notice this warning during the end of my training(in last few epochs). Now I am done with training I believe. Please see the below code to know what I got at the end of my training.
D Sending Job (ID: 492, worker: 0, epoch: 13, set_name: test)...
D Computing Job (ID: 493, worker: 0, epoch: 13, set_name: test)...
D Starting batch...
D Finished batch step 364416.
D Sending Job (ID: 493, worker: 0, epoch: 13, set_name: test)...
D Computing Job (ID: 494, worker: 0, epoch: 13, set_name: test)...
D Starting batch...
D Finished batch step 364416.
D Sending Job (ID: 494, worker: 0, epoch: 13, set_name: test)...
I Test of Epoch 13 - WER: 0.361877, loss: 33.44531447021763, mean edit distance: 0.191006
I --------------------------------------------------------------------------------
I WER: 0.125000, loss: 0.200928, mean edit distance: 0.025641
I - src: "i guess i'm not quite the football type"
I - res: "i guess im not quite the football type"
I --------------------------------------------------------------------------------
I WER: 0.200000, loss: 0.058690, mean edit distance: 0.074074
I - src: "that's true the boy thought"
I - res: "thats true the boy thought "
I --------------------------------------------------------------------------------
I WER: 0.200000, loss: 0.117750, mean edit distance: 0.068966
I - src: "he doesn't have anything else"
I - res: "he doesnt have anything else "
I --------------------------------------------------------------------------------
I WER: 0.200000, loss: 0.129502, mean edit distance: 0.034483
I - src: "he doesn't have anything else"
I - res: "he doesnt have anything else"
I --------------------------------------------------------------------------------
I WER: 0.200000, loss: 0.136908, mean edit distance: 0.047619
I - src: "then i don't get paid"
I - res: "then i dont get paid"
I --------------------------------------------------------------------------------
I WER: 0.200000, loss: 0.185607, mean edit distance: 0.080000
I - src: "we've got to do something"
I - res: "weve got to do something "
I --------------------------------------------------------------------------------
I WER: 0.250000, loss: 0.010482, mean edit distance: 0.125000
I - src: "i don't know you"
I - res: "i dont know you "
I --------------------------------------------------------------------------------
I WER: 0.250000, loss: 0.011586, mean edit distance: 0.111111
I - src: "i don't believe it"
I - res: "i dont believe it "
I --------------------------------------------------------------------------------
I WER: 0.250000, loss: 0.026088, mean edit distance: 0.055556
I - src: "it isn't the money"
I - res: "it isnt the money"
I --------------------------------------------------------------------------------
I WER: 0.375000, loss: 0.199804, mean edit distance: 0.066667
I - src: "i say we don't go out any more"
I - res: "i say we dont go out anymore"
I --------------------------------------------------------------------------------
D Epochs - running: 0, done: 1
D Closing queues...
D Queues closed.
D Session closed.
D Done.
I Exporting the model...
2018-06-13 10:45:33.870094: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1312] Adding visible gpu devices: 0
2018-06-13 10:45:33.870228: I tensorflow/core/common_runtime/gpu/gpu_device.cc:993] Creating TensorFlow device (/job:localhost/replica:0/task:0/device:GPU:0 with 103 MB memory) -> physical GPU (device: 0, name: GeForce GTX 1060 6GB, pci bus id: 0000:01:00.0, compute capability: 6.1)
Traceback (most recent call last):
File "DeepSpeech.py", line 1838, in <module>
tf.app.run()
File "/home/megha/Alu_Meg/DeepSpeech_Alug_Meg/deepspeech-venv/local/lib/python2.7/site-packages/tensorflow/python/platform/app.py", line 126, in run
_sys.exit(main(argv))
File "DeepSpeech.py", line 1829, in main
export()
File "DeepSpeech.py", line 1739, in export
os.makedirs(FLAGS.export_dir)
File "/home/megha/Alu_Meg/DeepSpeech_Alug_Meg/deepspeech-venv/lib/python2.7/os.py", line 150, in makedirs
makedirs(head, mode)
File "/home/megha/Alu_Meg/DeepSpeech_Alug_Meg/deepspeech-venv/lib/python2.7/os.py", line 157, in makedirs
mkdir(name, mode)
OSError: [Errno 13] Permission denied: '/my_exportdir'
(deepspeech-venv) megha@megha-medion:~/Alu_Meg/DeepSpeech_Alug_Meg/DeepSpeech$
This means that there is a problem when exporting the model. I see that there is a permission denied error. Now, how can I give permission to the folder within the deepseech command or should I handle it separately. If so, please any hints.
Thanks 