# Copyright 2026 Toyota Research Institute.  All rights reserved.

import os
from anydata.converters.utils import list_s3

#######################################################

if __name__ == '__main__':
    """NOTE: this script is specific for the LBM dataset, hence the hardcoded stuff"""
    tasks = list_s3('s3://tri-ml-sandbox-16011-us-west-2-datasets/cv_unified/LBM')
    for task in sorted(tasks):
        command = f'python anydata/converters/misc/create_split.py LBM --download --upload --official --subfolder {task}'
        os.system(command)

#######################################################
