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