데이터 업로드
SDK를 사용하여 Mindkosh에서 데이터셋을 업로드하고 관리하는 방법을 알아보세요
단일 유형의 데이터 업로드
from mindkosh import Client
## 지정된 디렉터리에서 찾은 모든 이미지 파일 업로드
client.upload_data(
dataset_id=dataset_id,
resources=['/example_images/'],
tags=['penguin'] ## 선택 사항
)
## 또는 업로드할 파일을 지정하세요
client.upload_data(
dataset_id=dataset_id,
resources=[
'/home/user/Downloads/test1.pcd',
'/home/user/Downloads/test2.pcd'
],
tags=['forest'] ## 선택 사항
)라이다 + 카메라 데이터 업로드
마지막 업데이트