Last answered:

15 Feb 2021

Posted on:

10 Feb 2021

0

Failed to create a NewWriteableFile

In the File 7_1_cnn-mnist-example-with-tensorboard, when running the code

model.fit(
    train_data,
    epochs = NUM_EPOCHS,
    callbacks = [tensorboard_callback, early_stopping],
    validation_data = validation_data,
    verbose = 2
)

The kernel gives me an error.

NotFoundError: Failed to create a NewWriteableFile: logs\fit\20210208\train\plugins\profile\2021_02_09_05_20_25\DESKTOP-1.trace.json.gz : The system cannot find the path specified.
; No such process

I tried searching for a solution on stackoverflow and github. But no solution is provided.

Please help.

1 answers ( 0 marked as helpful)
Instructor
Posted on:

15 Feb 2021

1

Hi,
Try to run the fit method without the tensorboard callback. Does this problem persist in this case?
If not, add this parameter when initializing the tensorboard callback "profile_batch=0", and then run the fit method with the tensorboard callback included again.

Hope this helps!
Best,
365 Team

Submit an answer