I am training a unet model. I started training with my pc, but it was too slow as it didn't run with GPU. Therefore I started using Google colab for faster training (using GPU). I have the same dataset saved locally and in Google Drive and I also have the exact same code in colab and in my pc, except paths as I need to change them to read from my Google Drive files.
My problem is that the results of training the unet in my computer differ a lot from those obtained training the unet with Google colab.
I don't know why this happens (I use the same seed in both and I have tested that I always obtain the same results locally if I use that seed). When I train the unet in my pc I obtain more or less 90% accuracy. However, when I train it using colab with GPU I only obtain 65%. I've also tried to use CPU in colab and I get the same issue.
Thanks