I have a bucket which has multiple folders with images in them. I want to make a csv for image classification with [ML_USE],GCS_FILE_PATH,[LABEL] format. how do i get the gcs file path for it?
There is no built in way or straight forward way to get a GCS filepath/URI of different objects inside different folders.
Possible work around is:
eg. "my-bucket/" to concat with "your-folder/filename" will have you "my-bucket/your-folder/filename" through your code. Or if you want to transform it into a URI, you may concat "gs://my-bucket/" to all of your "your-folder/filename".
Then