I'm currently working with facebooks detectron2 framework and have a problem training my model. I have an image path variable train_images_path = "arachne_images/images"
which points to a folder containing images, which is used to train the model. On my own windows system i have no problem running it, but im currently working remotely on a different machine which is using Ubuntu, where im working inside a docker container.
When im trying to train on that system i get the error:
FileNotFoundError: [Errno 2] No such file or directory: 'arachne_images/images/..\\images\\Entity604510.jpeg'
The path is obviously wrong and i dont understand why that is.
Thanks in Advance.