I tried to update keras.json
on Google Colabs, but its throwing UnsupportedOperation error
Is there any other alternative to achieve this?
I tried to update keras.json
on Google Colabs, but its throwing UnsupportedOperation error
Is there any other alternative to achieve this?
You're opening the file as readonly -- pass 'w'
to the open
call on line 9. (docs)