2

I tried to update keras.json on Google Colabs, but its throwing UnsupportedOperation error

Keras Theano update

Is there any other alternative to achieve this?

Laxmikant
  • 2,046
  • 3
  • 30
  • 44
  • I'm getting the `No such file or directory: '.keras/keras.json'` error. Could you share how you overcame with this? – talha06 Jul 06 '20 at 08:55
  • @talha06 - I never had such issue. Probably try re-installing tensorlfow or any relevant package... – Laxmikant Jul 06 '20 at 11:39

1 Answers1

1

You're opening the file as readonly -- pass 'w' to the open call on line 9. (docs)

Craig Citro
  • 6,505
  • 1
  • 31
  • 28