I am using colab and I have a folder with images. How to split them into three folders with images with random splitting? I want there to be 0.8 in train, 0.1 in val and 0.1 in test. I tried splitfolders library:
splitfolders.ratio("content/data", output="output", seed=1337, ratio=(.8, .1, .1), group_prefix=None)
but new folder didn't appear. and its not clear what would their names be. How to do that? Are there any other solutions?
Pytorch solutions are very welcomed