tensorflow-wavenet icon indicating copy to clipboard operation
tensorflow-wavenet copied to clipboard

Fix train and generate directories getting created

Open robdmac opened this issue 7 years ago • 0 comments

This addresses issue https://github.com/ibab/tensorflow-wavenet/issues/364

train.py was attempting to write to the 'train' directory and throwing a NotFoundError here: https://github.com/ibab/tensorflow-wavenet/blob/master/train.py#L274 which could happen before the makedirs() line in the save function was called.

generate.py did not have a call to makedirs() and so it was possible to get a NotFoundError here: https://github.com/ibab/tensorflow-wavenet/blob/master/generate.py#L263

robdmac avatar Mar 04 '19 02:03 robdmac