I am using google-colaboratory GPU to train NN models. My python/pytorch code is stored in google-drive. I am able to mount my drive in colaboratory and train models. But any python code changes in the "my drive" is not updated to google-colaboratory even after rebooting my PC and start all again.
To clear the google-colaboratory cache I tried :
!google-drive-ocamlfuse -cc
But it does not work:
/bin/bash: google-drive-ocamlfuse: command not found
How to clean this cache and avoid waiting hours before my code being taken into account by google-colaboratory ? Thanks in advance
PS : the method I used to mount:
from google.colab import drive
drive.mount('/content/drive/')