Uploading data
See how you can upload and manage your datasets on Mindkosh using the SDK
Uploading data of a single type
from mindkosh import Client
## Upload all image files found in the specified directory
client.upload_data(
dataset_id=dataset_id,
resources=['/example_images/'],
tags=['penguin'] ## optional
)
## Or specify the files to be uploaded
client.upload_data(
dataset_id=dataset_id,
resources=[
'/home/user/Downloads/test1.pcd',
'/home/user/Downloads/test2.pcd'
],
tags=['forest'] ## optional
)Uploading lidar + camera data
Last updated