Hi,
I'm training a Mask R-CNN to detect tree species on RGB images. For this I'm using arcgis.learn in VS Code and the code you see below in the screenshots. The code runs smoothly on the GPU but takes very long. I guess that is because I have a lot of data and I applied data augmentation. The problem is that I can't see the progress/at which epoch I am. When I look at examples online, I always see that the epochs, train loss, valid loss etc. are displayed after they run the code model.fit(). That is not the case for me, does anyone know what might be the issue?
Also, I set "tensorboard = True" to see the progress but I don't see a "training_log" folder in my dataset-path. I have three different input folders for prepare_data and I checked all of them. When I tried model.fit() with just one input folder for prepare_data, it stored it in the input folder and I could access it via tensorboard. Does anyone know where the "training_log" folder is stored or how I can access it?
Or does anyone have another idea, how I can see the progress/the epochs my model has already trained with model.fit()?
Thanks for all your replies!