Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Universal dataset import for FiftyOne supporting all media types (images, videos, point clouds, 3D scenes), all label formats (COCO, YOLO, VOC, CVAT, KITTI, etc.), and multimodal grouped datasets. Use when users want to import any dataset regardless of format, automatically detect folder structure, handle autonomous driving data with multiple cameras and LiDAR, or create grouped datasets from multimodal data. Requires FiftyOne MCP server.
.claude/skills/aiskillstore-fiftyone-dataset-import/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-05 | ✗→✓ | ▲ Improved | 545% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 363% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 733% | 0% |
| case-15 | ✗→✓ | ▲ Improved | 708% | 0% |
| case-18 | ✗→✓ | ▲ Improved | 660% | 0% |
Import any dataset into FiftyOne regardless of media type, label format, or folder structure. Automatically detects and handles:
Use this skill when:
@voxel51/io plugin for importing data@voxel51/utils plugin for dataset managementALWAYS follow these rules:
Before any import, deeply scan the directory to understand its structure:
bash# Use bash to explore find /path/to/data -type f | head -50 ls -la /path/to/data
Detect media types, label formats, and grouping patterns automatically. Never ask the user to specify format if it can be inferred.
Look for patterns that indicate grouped data:
scene_001_left.jpg, scene_001_right.jpg)Many specialized dataset formats require external Python packages. After detecting the format:
pip show <package>Common format-to-package mappings:
| Dataset Format | Package Name | Install Command | |---------------|--------------|-----------------| | PandaSet | pandaset | pip install "git+https://github.com/scaleapi/pandaset-devkit.git#subdirectory=python" | | nuScenes | nuscenes-devkit | pip install nuscenes-devkit | | Waymo Open | waymo-open-dataset-tf | See Waymo docs (requires TensorFlow) | | Argoverse 2 | av2 | pip install av2 | | KITTI 3D | pykitti | pip install pykitti | | Lyft L5 | l5kit | pip install l5kit | | A2D2 | a2d2 | See Audi A2D2 docs |
Additional packages for 3D processing:
| Purpose | Package Name | Install Command | |---------|--------------|-----------------| | Point cloud conversion to PCD | open3d | pip install open3d | | Point cloud processing | pyntcloud | pip install pyntcloud | | LAS/LAZ point clouds | laspy | pip install laspy |
Installation methods (in order of preference):
bash pip install <package-name>
bash # Standard GitHub install pip install "git+https://github.com/<org>/<repo>.git"
# With subdirectory (for monorepos) pip install "git+https://github.com/<org>/<repo>.git#subdirectory=python"
# Specific branch or tag pip install "git+https://github.com/<org>/<repo>.git@v1.0.0"
bash git clone https://github.com/<org>/<repo>.git cd <repo> pip install .
Dynamic package discovery workflow:
If the format is not in the table above:
<format-name>, <format-name>-devkit, or <format-name>-sdk<format-name> devkit or <format-name> pythonAfter installation:
pip show <package-name>python -c "from <package> import ..."Present findings to user and explicitly ask for confirmation before creating the dataset. Always end your scan summary with a clear question like:
Wait for user response before proceeding. Do not create the dataset until the user confirms.
Before creating a dataset, check if the proposed name already exists:
pythonlist_datasets()
If the dataset name exists, ask the user:
dataset-name-v2)Compare imported sample count with source file count. Report any discrepancies.
Keep error messages simple for the user. Use detailed error info internally to diagnose issues.
Scan the target directory to understand its structure:
bash# Count files by extension find /path/to/data -type f | sed 's/.*\.//' | sort | uniq -c | sort -rn # List directory structure (2 levels deep) find /path/to/data -maxdepth 2 -type d # Sample some files ls -la /path/to/data/* | head -20 # IMPORTANT: Scan for ALL annotation/label directories ls -la /path/to/data/annotations/ 2>/dev/null || ls -la /path/to/data/labels/ 2>/dev/null
Build an inventory of:
For 3D/Autonomous Driving datasets, specifically check:
bash# List all annotation subdirectories find /path/to/data -type d -name "annotations" -o -name "labels" | xargs -I {} ls -la {} # Sample an annotation file to understand its structure python3 -c "import pickle, gzip; print(pickle.load(gzip.open('path/to/annotation.pkl.gz', 'rb'))[:2])"
Classify files by extension:
| Extensions | Media Type | FiftyOne Type | |------------|------------|---------------| | .jpg, .jpeg, .png, .gif, .bmp, .webp, .tiff | Image | image | | .mp4, .avi, .mov, .mkv, .webm | Video | video | | .pcd, .ply, .las, .laz | Point Cloud | point-cloud | | .fo3d, .obj, .gltf, .glb | 3D Scene | 3d |
Identify label format from file patterns:
| Pattern | Format | Dataset Type | |---------|--------|--------------| | annotations.json or instances*.json with COCO structure | COCO | COCO | | *.xml files with Pascal VOC structure | VOC | VOC | | *.txt per image + classes.txt | YOLOv4 | YOLOv4 | | data.yaml + labels/*.txt | YOLOv5 | YOLOv5 | | *.txt per image (KITTI format) | KITTI | KITTI | | Single annotations.xml (CVAT format) | CVAT | CVAT Image | | *.json with OpenLABEL structure | OpenLABEL | OpenLABEL Image | | Folder-per-class structure | Classification | Image Classification Directory Tree | | *.csv with filepath column | CSV | CSV | | *.json with GeoJSON structure | GeoJSON | GeoJSON | | .dcm DICOM files | DICOM | DICOM | | .tiff with geo metadata | GeoTIFF | GeoTIFF |
Specialized Autonomous Driving Formats (require external packages):
| Directory Pattern | Format | Required Package | |------------------|--------|------------------| | camera/, lidar/, annotations/cuboids/ with .pkl.gz | PandaSet | pandaset-devkit | | samples/, sweeps/, v1.0-* folders | nuScenes | nuscenes-devkit | | segment-* with .tfrecord files | Waymo Open | waymo-open-dataset-tf | | argoverse-tracking/ structure | Argoverse | argoverse-api | | training/, testing/ with calib/, velodyne/ | KITTI 3D | pykitti | | scenes/, aerial_map/ | Lyft L5 | l5kit |
After identifying the format, check if external packages are needed:
bash# Check if package is installed (use the actual package name, not repo name) pip show pandaset # If not found, the package needs to be installed
If packages are required:
pip search <package> or check pypi.org This dataset appears to be in PandaSet format, which requires the pandaset package.
The package is not on PyPI and must be installed from GitHub: pip install "git+https://github.com/scaleapi/pandaset-devkit.git#subdirectory=python"
Would you like me to:
bash # PyPI (if available) pip install <package-name>
# GitHub URL (if not on PyPI) pip install "git+https://github.com/<org>/<repo>.git#subdirectory=python"
# Clone and install (for complex builds) git clone https://github.com/<org>/<repo>.git && cd <repo> && pip install .
bash pip show <package-name>
bash python -c "from <package> import <main_class>; print('OK')"
Determine if data should be grouped:
Pattern A: Scene Folders (Most Common for Multimodal)
/data/
├── scene_001/
│ ├── left.jpg
│ ├── right.jpg
│ ├── lidar.pcd
│ └── labels.json
├── scene_002/
│ └── ...Detection: Each subfolder = one group, files inside = slices
Pattern B: Filename Prefix
/data/
├── 001_left.jpg
├── 001_right.jpg
├── 001_lidar.pcd
├── 002_left.jpg
├── 002_right.jpg
├── 002_lidar.pcdDetection: Common prefix = group ID, suffix = slice name
Pattern C: No Grouping (Flat)
/data/
├── image_001.jpg
├── image_002.jpg
├── image_003.jpgDetection: Single media type, no clear grouping pattern
Before importing, present a clear summary that includes ALL detected labels:
Scan Results for /path/to/data:
Media Found:
- 3,000 images (.jpg, .png)
- 1,000 point clouds (.pkl.gz → will convert to .pcd)
- 0 videos
Grouping Detected:
- Pattern: Scene folders
- Groups: 1,000 scenes
- Slices: left (image), right (image), front (image), lidar (point-cloud)
ALL Labels Detected:
├── cuboids/ (3D bounding boxes, 1,000 files)
│ └── Format: pickle, Fields: label, position, dimensions, rotation, track_id
├── semseg/ (Semantic segmentation, 1,000 files)
│ └── Format: pickle, point-wise class labels
└── instances.json (2D detections, COCO format)
└── Classes: 10 (car, pedestrian, cyclist, ...)
Required Packages:
- ✅ pandaset (installed)
- ⚠️ open3d (needed for PCD conversion) → pip install open3d
Proposed Configuration:
- Dataset name: my-dataset
- Type: Grouped (multimodal)
- Default slice: front_camera
- Labels to import:
- detections_3d (from cuboids/)
- point_labels (from semseg/)
- detections (from instances.json)
Proceed with import? (yes/no)IMPORTANT:
Before creating, check if the dataset name already exists:
python# Check existing datasets list_datasets()
If the proposed dataset name exists in the list:
my-dataset-v2, my-dataset-20240107)If user chooses to overwrite:
python# Delete existing dataset set_context(dataset_name="my-dataset") execute_operator( operator_uri="@voxel51/utils/delete_dataset", params={"name": "my-dataset"} )
python# Create the dataset execute_operator( operator_uri="@voxel51/utils/create_dataset", params={ "name": "my-dataset", "persistent": true } ) # Set context set_context(dataset_name="my-dataset")
For flat datasets without grouping:
python# Import media only execute_operator( operator_uri="@voxel51/io/import_samples", params={ "import_type": "MEDIA_ONLY", "style": "DIRECTORY", "directory": {"absolute_path": "/path/to/images"} } ) # Import with labels execute_operator( operator_uri="@voxel51/io/import_samples", params={ "import_type": "MEDIA_AND_LABELS", "dataset_type": "COCO", "data_path": {"absolute_path": "/path/to/images"}, "labels_path": {"absolute_path": "/path/to/annotations.json"}, "label_field": "ground_truth" } )
For multimodal data with groups, use Python directly. Guide the user:
pythonimport fiftyone as fo # Create dataset dataset = fo.Dataset("multimodal-dataset", persistent=True) # Add group field dataset.add_group_field("group", default="front") # Create samples for each group import os from pathlib import Path data_dir = Path("/path/to/data") samples = [] for scene_dir in sorted(data_dir.iterdir()): if not scene_dir.is_dir(): continue # Create a group for this scene group = fo.Group() # Add each file as a slice for file in scene_dir.iterdir(): if file.suffix in ['.jpg', '.png']: # Determine slice name from filename slice_name = file.stem # e.g., "left", "right", "front" samples.append(fo.Sample( filepath=str(file), group=group.element(slice_name) )) elif file.suffix == '.pcd': samples.append(fo.Sample( filepath=str(file), group=group.element("lidar") )) elif file.suffix == '.mp4': samples.append(fo.Sample( filepath=str(file), group=group.element("video") )) # Add all samples dataset.add_samples(samples) print(f"Added {len(dataset)} samples in {len(dataset.distinct('group.id'))} groups")
For datasets requiring external packages (PandaSet, nuScenes, etc.), use the devkit to load data and convert to FiftyOne format.
General approach:
.pcd files)fo.Scene objects for 3D visualization with point cloudsMany autonomous driving datasets store LiDAR data in proprietary formats (.pkl.gz, .bin, .npy). Convert to PCD for FiftyOne:
pythonimport numpy as np import open3d as o3d from pathlib import Path def convert_to_pcd(points, output_path): """ Convert point cloud array to PCD file. Args: points: numpy array of shape (N, 3) or (N, 4) with XYZ or XYZI output_path: path to save .pcd file """ pcd = o3d.geometry.PointCloud() pcd.points = o3d.utility.Vector3dVector(points[:, :3]) # If intensity is available, store as colors (grayscale) if points.shape[1] >= 4: intensity = points[:, 3] intensity_normalized = (intensity - intensity.min()) / (intensity.max() - intensity.min() + 1e-8) colors = np.stack([intensity_normalized] * 3, axis=1) pcd.colors = o3d.utility.Vector3dVector(colors) o3d.io.write_point_cloud(str(output_path), pcd) return output_path
Note: Install open3d if needed: pip install open3d
For each LiDAR frame, create an fo.Scene that references the PCD file:
pythonimport fiftyone as fo # Create a 3D scene for the point cloud scene = fo.Scene() # Add point cloud to the scene scene.add_point_cloud( name="lidar", pcd_path="/path/to/frame.pcd", flag_for_projection=True # Enable projection to camera views ) # Create sample with the scene sample = fo.Sample(filepath="/path/to/scene.fo3d") # Or use scene directly sample["scene"] = scene
During the folder scan (Step 1), identify ALL label types present:
bash# Example: List all annotation directories/files ls -la /path/to/dataset/annotations/ # Output might show: cuboids/, semseg/, tracking/, instances.json, etc.
Map detected labels to FiftyOne label types:
| Annotation Type | FiftyOne Label Type | Field Name | |-----------------|---------------------|------------| | 3D Cuboids/Bounding Boxes | fo.Detection with 3D attributes | detections_3d | | Semantic Segmentation | fo.Segmentation | segmentation | | Instance Segmentation | fo.Detections with masks | instances | | Tracking IDs | Add track_id to detections | tracks | | Classification | fo.Classification | classification | | Keypoints/Pose | fo.Keypoints | keypoints |
Example: PandaSet Full Import with Labels
pythonimport fiftyone as fo import numpy as np import open3d as o3d from pathlib import Path import gzip import pickle data_path = Path("/path/to/pandaset") pcd_output_dir = data_path / "pcd_converted" pcd_output_dir.mkdir(exist_ok=True) # Create dataset with groups dataset = fo.Dataset("pandaset", persistent=True) dataset.add_group_field("group", default="front_camera") # Get camera names camera_names = [d.name for d in (data_path / "camera").iterdir() if d.is_dir()] frame_count = len(list((data_path / "camera" / "front_camera").glob("*.jpg"))) # Check what labels exist labels_dir = data_path / "annotations" available_labels = [d.name for d in labels_dir.iterdir() if d.is_dir()] print(f"Found label types: {available_labels}") # e.g., ['cuboids', 'semseg'] samples = [] for frame_idx in range(frame_count): frame_id = f"{frame_idx:02d}" group = fo.Group() # === Add camera images === for cam_name in camera_names: img_path = data_path / "camera" / cam_name / f"{frame_id}.jpg" if img_path.exists(): sample = fo.Sample(filepath=str(img_path)) sample["group"] = group.element(cam_name) sample["frame_idx"] = frame_idx samples.append(sample) # === Convert and add LiDAR point cloud === lidar_pkl = data_path / "lidar" / f"{frame_id}.pkl.gz" if lidar_pkl.exists(): # Load pickle with gzip.open(lidar_pkl, 'rb') as f: lidar_data = pickle.load(f) # Extract points (adjust based on actual data structure) if isinstance(lidar_data, dict): points = lidar_data.get('points', lidar_data.get('data')) else: points = np.array(lidar_data) # Convert to PCD pcd_path = pcd_output_dir / f"{frame_id}.pcd" pcd = o3d.geometry.PointCloud() pcd.points = o3d.utility.Vector3dVector(points[:, :3]) o3d.io.write_point_cloud(str(pcd_path), pcd) # Create 3D sample with scene lidar_sample = fo.Sample(filepath=str(pcd_path)) lidar_sample["group"] = group.element("lidar") lidar_sample["frame_idx"] = frame_idx # === Load 3D cuboid labels if available === # IMPORTANT: Store 3D attributes as flat scalar fields, NOT lists # Using lists (e.g., location=[x,y,z]) causes "Symbol.iterator" errors in 3D viewer if "cuboids" in available_labels: cuboids_pkl = labels_dir / "cuboids" / f"{frame_id}.pkl.gz" if cuboids_pkl.exists(): with gzip.open(cuboids_pkl, 'rb') as f: cuboids_df = pickle.load(f) # PandaSet uses pandas DataFrame detections = [] for _, row in cuboids_df.iterrows(): detection = fo.Detection( label=row.get("label", "object"), bounding_box=[0, 0, 0.01, 0.01], # minimal 2D placeholder ) # Store 3D attributes as FLAT SCALAR fields (not lists!) detection["pos_x"] = float(row.get("position.x", 0)) detection["pos_y"] = float(row.get("position.y", 0)) detection["pos_z"] = float(row.get("position.z", 0)) detection["dim_x"] = float(row.get("dimensions.x", 1)) detection["dim_y"] = float(row.get("dimensions.y", 1)) detection["dim_z"] = float(row.get("dimensions.z", 1)) detection["yaw"] = float(row.get("yaw", 0)) detection["track_id"] = str(row.get("uuid", "")) detection["stationary"] = bool(row.get("stationary", False)) detections.append(detection) lidar_sample["ground_truth"] = fo.Detections(detections=detections) # === Load semantic segmentation if available === if "semseg" in available_labels: semseg_pkl = labels_dir / "semseg" / f"{frame_id}.pkl.gz" if semseg_pkl.exists(): with gzip.open(semseg_pkl, 'rb') as f: semseg_data = pickle.load(f) # Store as custom field (point-wise labels) lidar_sample["point_labels"] = semseg_data.tolist() if hasattr(semseg_data, 'tolist') else semseg_data samples.append(lidar_sample) # Add all samples dataset.add_samples(samples) dataset.save() print(f"Imported {len(dataset)} groups with {len(dataset.select_group_slices())} total samples") print(f"Slices: {dataset.group_slices}") print(f"Labels imported: {available_labels}")
Dynamic Import Discovery: If no example exists for the format:
python import pickle, gzip with gzip.open("annotations/cuboids/00.pkl.gz", "rb") as f: data = pickle.load(f) print(type(data), data[0] if isinstance(data, list) else data)
If labels weren't imported with the specialized format, add them separately:
python# For COCO labels that reference filepaths execute_operator( operator_uri="@voxel51/io/import_samples", params={ "import_type": "LABELS_ONLY", "dataset_type": "COCO", "labels_path": {"absolute_path": "/path/to/annotations.json"}, "label_field": "ground_truth" } )
python# Load and verify load_dataset(name="my-dataset") # Check counts match dataset_summary(name="my-dataset")
Compare:
pythonlaunch_app(dataset_name="my-dataset") # For grouped datasets, view different slices # In the App, use the slice selector dropdown
| Type | Extensions | Description | |------|------------|-------------| | image | .jpg, .jpeg, .png, .gif, .bmp, .webp, .tiff | Static images | | video | .mp4, .avi, .mov, .mkv, .webm | Video files with frames | | point-cloud | .pcd, .ply, .las, .laz | 3D point cloud data | | 3d | .fo3d, .obj, .gltf, .glb | 3D scenes and meshes |
| Format | Dataset Type Value | Label Types | File Pattern | |--------|-------------------|-------------|--------------| | COCO | COCO | detections, segmentations, keypoints | *.json | | VOC/Pascal | VOC | detections | *.xml per image | | KITTI | KITTI | detections | *.txt per image | | YOLOv4 | YOLOv4 | detections | *.txt + classes.txt | | YOLOv5 | YOLOv5 | detections | data.yaml + labels/*.txt | | CVAT Image | CVAT Image | classifications, detections, polylines, keypoints | Single *.xml | | CVAT Video | CVAT Video | frame labels | XML directory | | OpenLABEL Image | OpenLABEL Image | all types | *.json directory | | OpenLABEL Video | OpenLABEL Video | all types | *.json directory | | TF Object Detection | TF Object Detection | detections | TFRecords | | TF Image Classification | TF Image Classification | classification | TFRecords | | Image Classification Tree | Image Classification Directory Tree | classification | Folder per class | | Video Classification Tree | Video Classification Directory Tree | classification | Folder per class | | Image Segmentation | Image Segmentation | segmentation | Mask images | | CSV | CSV | custom fields | *.csv | | DICOM | DICOM | medical metadata | .dcm files | | GeoJSON | GeoJSON | geolocation | *.json | | GeoTIFF | GeoTIFF | geolocation | .tiff with geo | | FiftyOne Dataset | FiftyOne Dataset | all types | Exported format |
python# Scan directory # Found: 5000 images, annotations.json (COCO format) execute_operator( operator_uri="@voxel51/utils/create_dataset", params={"name": "coco-dataset", "persistent": true} ) set_context(dataset_name="coco-dataset") execute_operator( operator_uri="@voxel51/io/import_samples", params={ "import_type": "MEDIA_AND_LABELS", "dataset_type": "COCO", "data_path": {"absolute_path": "/path/to/images"}, "labels_path": {"absolute_path": "/path/to/annotations.json"}, "label_field": "ground_truth" } ) launch_app(dataset_name="coco-dataset")
python# Scan directory # Found: data.yaml, images/, labels/ (YOLOv5 format) execute_operator( operator_uri="@voxel51/utils/create_dataset", params={"name": "yolo-dataset", "persistent": true} ) set_context(dataset_name="yolo-dataset") execute_operator( operator_uri="@voxel51/io/import_samples", params={ "import_type": "MEDIA_AND_LABELS", "dataset_type": "YOLOv5", "dataset_dir": {"absolute_path": "/path/to/yolo/dataset"}, "label_field": "ground_truth" } ) launch_app(dataset_name="yolo-dataset")
python# Scan directory # Found: 1000 .pcd files, labels/ with KITTI format execute_operator( operator_uri="@voxel51/utils/create_dataset", params={"name": "lidar-dataset", "persistent": true} ) set_context(dataset_name="lidar-dataset") # Import point clouds execute_operator( operator_uri="@voxel51/io/import_samples", params={ "import_type": "MEDIA_ONLY", "style": "GLOB_PATTERN", "glob_patt": {"absolute_path": "/path/to/data/*.pcd"} } ) launch_app(dataset_name="lidar-dataset")
This is the most complex case - multiple cameras + LiDAR per scene:
pythonimport fiftyone as fo from pathlib import Path # Create dataset with group support dataset = fo.Dataset("driving-dataset", persistent=True) dataset.add_group_field("group", default="front_camera") data_dir = Path("/path/to/driving_data") samples = [] # Process each scene folder for scene_dir in sorted(data_dir.iterdir()): if not scene_dir.is_dir(): continue group = fo.Group() # Map files to slices slice_mapping = { "front": "front_camera", "left": "left_camera", "right": "right_camera", "rear": "rear_camera", "lidar": "lidar", "radar": "radar" } for file in scene_dir.iterdir(): # Determine slice from filename for key, slice_name in slice_mapping.items(): if key in file.stem.lower(): samples.append(fo.Sample( filepath=str(file), group=group.element(slice_name) )) break dataset.add_samples(samples) dataset.save() print(f"Created {len(dataset.distinct('group.id'))} groups") print(f"Slices: {dataset.group_slices}") print(f"Media types: {dataset.group_media_types}") # Launch app session = fo.launch_app(dataset)
python# Scan directory # Found: cats/, dogs/, birds/ folders with images inside execute_operator( operator_uri="@voxel51/utils/create_dataset", params={"name": "classification-dataset", "persistent": true} ) set_context(dataset_name="classification-dataset") execute_operator( operator_uri="@voxel51/io/import_samples", params={ "import_type": "MEDIA_AND_LABELS", "dataset_type": "Image Classification Directory Tree", "dataset_dir": {"absolute_path": "/path/to/classification"}, "label_field": "ground_truth" } ) launch_app(dataset_name="classification-dataset")
python# Scan directory # Found: images/, videos/ folders # Create dataset execute_operator( operator_uri="@voxel51/utils/create_dataset", params={"name": "mixed-media", "persistent": true} ) set_context(dataset_name="mixed-media") # Import images execute_operator( operator_uri="@voxel51/io/import_samples", params={ "import_type": "MEDIA_ONLY", "style": "DIRECTORY", "directory": {"absolute_path": "/path/to/images"}, "tags": ["image"] } ) # Import videos execute_operator( operator_uri="@voxel51/io/import_samples", params={ "import_type": "MEDIA_ONLY", "style": "DIRECTORY", "directory": {"absolute_path": "/path/to/videos"}, "tags": ["video"] } ) launch_app(dataset_name="mixed-media")
In a grouped dataset:
group.idgroup.name indicating its slicepython# Access group information print(dataset.group_slices) # ['front_camera', 'left_camera', 'lidar'] print(dataset.group_media_types) # {'front_camera': 'image', 'lidar': 'point-cloud'} print(dataset.default_group_slice) # 'front_camera' # Iterate over groups for group in dataset.iter_groups(): print(f"Group has {len(group)} slices") for slice_name, sample in group.items(): print(f" {slice_name}: {sample.filepath}") # Get specific slice view front_images = dataset.select_group_slices("front_camera") all_point_clouds = dataset.select_group_slices(media_type="point-cloud")
After launching the app:
Error: "Dataset already exists"
execute_operator("@voxel51/utils/delete_dataset", {"name": "dataset-name"})Error: "No samples found"
Error: "Labels path not found"
Error: "Invalid group configuration"
3d slice allowed per groupImport is slow
Point clouds not rendering
.pcd files are validGroups not detected
Import time estimates:
Memory requirements:
Copyright 2017-2025, Voxel51, Inc. Apache 2.0 License
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-14 | fail→fail | 20,240 | 4,405 | -78% | 1 | 1 | 0% | 1,550 | 10,869 | +601% | 0 | 0 | — |
case-02 | fail→fail | 19,026 | 4,052 | -79% | 1 | 1 | 0% | 3,109 | 10,457 | +236% | 0 | 0 | — |
case-03 | fail→fail | 16,400 | 7,146 | -56% | 1 | 1 | 0% | 3,160 | 10,646 | +237% | 0 | 0 | — |
case-04 | fail→fail | 7,190 | 3,278 | -54% | 1 | 1 | 0% | 1,516 | 10,447 | +589% | 0 | 0 | — |
case-01 | fail→fail | 2,913 | 5,779 | +98% | 1 | 1 | 0% | 430 | 10,339 | +2304% | 0 | 0 | — |
case-05 | fail→pass | 8,503 | 3,179 | -63% | 1 | 1 | 0% | 1,660 | 10,700 | +545% | 0 | 0 | — |
case-06 | fail→pass | 13,745 | 8,774 | -36% | 1 | 1 | 0% | 2,556 | 11,825 | +363% | 0 | 0 | — |
case-07 | pass→pass | 6,604 | 4,211 | -36% | 1 | 1 | 0% | 1,340 | 10,907 | +714% | 0 | 0 | — |
case-08 | pass→pass | 3,945 | 4,183 | +6% | 1 | 1 | 0% | 761 | 10,875 | +1329% | 0 | 0 | — |
case-09 | fail→pass | 6,182 | 3,397 | -45% | 1 | 1 | 0% | 1,286 | 10,709 | +733% | 0 | 0 | — |
case-10 | pass→pass | 4,293 | 2,542 | -41% | 1 | 1 | 0% | 727 | 10,472 | +1340% | 0 | 0 | — |
case-11 | pass→pass | 10,164 | 6,377 | -37% | 1 | 1 | 0% | 2,072 | 11,357 | +448% | 0 | 0 | — |
case-12 | pass→pass | 3,220 | 2,741 | -15% | 1 | 1 | 0% | 668 | 10,522 | +1475% | 0 | 0 | — |
case-13 | pass→pass | 9,290 | 2,698 | -71% | 1 | 1 | 0% | 1,693 | 10,492 | +520% | 0 | 0 | — |
case-15 | fail→pass | 6,633 | 3,079 | -54% | 1 | 1 | 0% | 1,318 | 10,656 | +708% | 0 | 0 | — |
case-16 | pass→pass | 4,709 | 3,524 | -25% | 1 | 1 | 0% | 852 | 10,735 | +1160% | 0 | 0 | — |
case-17 | pass→pass | 6,850 | 4,811 | -30% | 1 | 1 | 0% | 1,251 | 11,020 | +781% | 0 | 0 | — |
case-18 | fail→pass | 7,987 | 2,712 | -66% | 1 | 1 | 0% | 1,372 | 10,427 | +660% | 0 | 0 | — |
case-19 | pass→pass | 7,020 | 2,807 | -60% | 1 | 1 | 0% | 1,352 | 10,520 | +678% | 0 | 0 | — |
case-20 | pass→pass | 4,392 | 6,167 | +40% | 1 | 1 | 0% | 827 | 11,227 | +1258% | 0 | 0 | — |
case-21 | pass→pass | 7,426 | 5,772 | -22% | 1 | 1 | 0% | 1,328 | 11,109 | +737% | 0 | 0 | — |
case-22 | pass→pass | 13,382 | 18,246 | +36% | 1 | 1 | 0% | 2,487 | 13,075 | +426% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted, and 21 counted toward the lift figure. The other 1 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +23 percentage points is the difference between those two pass rates over the 21 comparable cases. 2 cases got worse with the skill loaded, and they are included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.