Dataset Viewer
Duplicate
The dataset viewer is not available for this split.
Cannot load the dataset split (in streaming mode) to extract the first rows.
Error code:   StreamingRowsError
Exception:    CastError
Message:      Couldn't cast
dataset: struct<corpus_name: string, tier: int64, total_families: int64, total_assets: int64, representations (... 41 chars omitted)
  child 0, corpus_name: string
  child 1, tier: int64
  child 2, total_families: int64
  child 3, total_assets: int64
  child 4, representations_per_part: int64
  child 5, open3d_available: bool
n_assets_evaluated: int64
feature_dim: int64
tasks: struct<same_part_all_reps: struct<recall: struct<R@1: double, R@5: double, R@10: double>, mAP: doubl (... 598 chars omitted)
  child 0, same_part_all_reps: struct<recall: struct<R@1: double, R@5: double, R@10: double>, mAP: double>
      child 0, recall: struct<R@1: double, R@5: double, R@10: double>
          child 0, R@1: double
          child 1, R@5: double
          child 2, R@10: double
      child 1, mAP: double
  child 1, original_to_variant: struct<recall: struct<R@1: double, R@5: double, R@10: double>, mAP: double>
      child 0, recall: struct<R@1: double, R@5: double, R@10: double>
          child 0, R@1: double
          child 1, R@5: double
          child 2, R@10: double
      child 1, mAP: double
  child 2, PCD_NOISY_to_STEP: struct<recall: struct<R@1: double, R@5: double, R@10: double>, mAP: double>
      child 0, recall: struct<R@1: double, R@5: double, R@10: double>
          child 0, R@1: double
          child 1, R@5: double
          child 2, R@10: double
      child 1, mAP: double
  child 3, PCD_NOISY_to_MESH_FINE: struct<recall: struct<R@1: double, R@5: double, R@10: double>, mAP
...
ecall: struct<R@1: double, R@5: double, R@10: double>, mAP: double>
      child 0, recall: struct<R@1: double, R@5: double, R@10: double>
          child 0, R@1: double
          child 1, R@5: double
          child 2, R@10: double
      child 1, mAP: double
  child 5, DEPTH_MAP_to_MESH_FINE: struct<recall: struct<R@1: double, R@5: double, R@10: double>, mAP: double>
      child 0, recall: struct<R@1: double, R@5: double, R@10: double>
          child 0, R@1: double
          child 1, R@5: double
          child 2, R@10: double
      child 1, mAP: double
  child 6, PCD_SPARSE_to_PCD_CLEAN: struct<recall: struct<R@1: double, R@5: double, R@10: double>, mAP: double>
      child 0, recall: struct<R@1: double, R@5: double, R@10: double>
          child 0, R@1: double
          child 1, R@5: double
          child 2, R@10: double
      child 1, mAP: double
samples_to_threshold: list<item: struct<feature_dim: int64, mAP: double, gallery_size: int64>>
  child 0, item: struct<feature_dim: int64, mAP: double, gallery_size: int64>
      child 0, feature_dim: int64
      child 1, mAP: double
      child 2, gallery_size: int64
family_type: string
nuisance_parameters: string
functional_variant_group: list<item: string>
  child 0, item: string
near_duplicates: list<item: string>
  child 0, item: string
nominal_parameters: string
negative_pairs: list<item: string>
  child 0, item: string
same_part_group: list<item: string>
  child 0, item: string
variant_parameters: string
family_id: string
to
{'family_id': Value('string'), 'family_type': Value('string'), 'nominal_parameters': Value('string'), 'variant_parameters': Value('string'), 'nuisance_parameters': Value('string'), 'same_part_group': List(Value('string')), 'functional_variant_group': List(Value('string')), 'near_duplicates': List(Value('string')), 'negative_pairs': List(Value('string'))}
because column names don't match
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/utils.py", line 147, in get_rows_or_raise
                  return get_rows(
                      dataset=dataset,
                  ...<4 lines>...
                      column_names=column_names,
                  )
                File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
                  return func(*args, **kwargs)
                File "/src/services/worker/src/worker/utils.py", line 127, in get_rows
                  rows_plus_one = list(itertools.islice(safe_iter(ds, dataset=dataset), rows_max_number + 1))
                File "/src/services/worker/src/worker/utils.py", line 483, in safe_iter
                  yield from ds.decode(False) if ds.features else ds
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2840, in __iter__
                  for key, example in ex_iterable:
                                      ^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2373, in __iter__
                  for key, pa_table in self._iter_arrow():
                                       ~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2398, in _iter_arrow
                  for key, pa_table in self.ex_iterable._iter_arrow():
                                       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 536, in _iter_arrow
                  for key, pa_table in iterator:
                                       ^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 419, in _iter_arrow
                  for key, pa_table in self.generate_tables_fn(**gen_kwags):
                                       ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 343, in _generate_tables
                  self._cast_table(pa_table, json_field_paths=json_field_paths),
                  ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 132, in _cast_table
                  pa_table = table_cast(pa_table, self.info.features.arrow_schema)
                File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2378, in table_cast
                  return cast_table_to_schema(table, schema)
                File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2306, in cast_table_to_schema
                  raise CastError(
                  ...<3 lines>...
                  )
              datasets.table.CastError: Couldn't cast
              dataset: struct<corpus_name: string, tier: int64, total_families: int64, total_assets: int64, representations (... 41 chars omitted)
                child 0, corpus_name: string
                child 1, tier: int64
                child 2, total_families: int64
                child 3, total_assets: int64
                child 4, representations_per_part: int64
                child 5, open3d_available: bool
              n_assets_evaluated: int64
              feature_dim: int64
              tasks: struct<same_part_all_reps: struct<recall: struct<R@1: double, R@5: double, R@10: double>, mAP: doubl (... 598 chars omitted)
                child 0, same_part_all_reps: struct<recall: struct<R@1: double, R@5: double, R@10: double>, mAP: double>
                    child 0, recall: struct<R@1: double, R@5: double, R@10: double>
                        child 0, R@1: double
                        child 1, R@5: double
                        child 2, R@10: double
                    child 1, mAP: double
                child 1, original_to_variant: struct<recall: struct<R@1: double, R@5: double, R@10: double>, mAP: double>
                    child 0, recall: struct<R@1: double, R@5: double, R@10: double>
                        child 0, R@1: double
                        child 1, R@5: double
                        child 2, R@10: double
                    child 1, mAP: double
                child 2, PCD_NOISY_to_STEP: struct<recall: struct<R@1: double, R@5: double, R@10: double>, mAP: double>
                    child 0, recall: struct<R@1: double, R@5: double, R@10: double>
                        child 0, R@1: double
                        child 1, R@5: double
                        child 2, R@10: double
                    child 1, mAP: double
                child 3, PCD_NOISY_to_MESH_FINE: struct<recall: struct<R@1: double, R@5: double, R@10: double>, mAP
              ...
              ecall: struct<R@1: double, R@5: double, R@10: double>, mAP: double>
                    child 0, recall: struct<R@1: double, R@5: double, R@10: double>
                        child 0, R@1: double
                        child 1, R@5: double
                        child 2, R@10: double
                    child 1, mAP: double
                child 5, DEPTH_MAP_to_MESH_FINE: struct<recall: struct<R@1: double, R@5: double, R@10: double>, mAP: double>
                    child 0, recall: struct<R@1: double, R@5: double, R@10: double>
                        child 0, R@1: double
                        child 1, R@5: double
                        child 2, R@10: double
                    child 1, mAP: double
                child 6, PCD_SPARSE_to_PCD_CLEAN: struct<recall: struct<R@1: double, R@5: double, R@10: double>, mAP: double>
                    child 0, recall: struct<R@1: double, R@5: double, R@10: double>
                        child 0, R@1: double
                        child 1, R@5: double
                        child 2, R@10: double
                    child 1, mAP: double
              samples_to_threshold: list<item: struct<feature_dim: int64, mAP: double, gallery_size: int64>>
                child 0, item: struct<feature_dim: int64, mAP: double, gallery_size: int64>
                    child 0, feature_dim: int64
                    child 1, mAP: double
                    child 2, gallery_size: int64
              family_type: string
              nuisance_parameters: string
              functional_variant_group: list<item: string>
                child 0, item: string
              near_duplicates: list<item: string>
                child 0, item: string
              nominal_parameters: string
              negative_pairs: list<item: string>
                child 0, item: string
              same_part_group: list<item: string>
                child 0, item: string
              variant_parameters: string
              family_id: string
              to
              {'family_id': Value('string'), 'family_type': Value('string'), 'nominal_parameters': Value('string'), 'variant_parameters': Value('string'), 'nuisance_parameters': Value('string'), 'same_part_group': List(Value('string')), 'functional_variant_group': List(Value('string')), 'near_duplicates': List(Value('string')), 'negative_pairs': List(Value('string'))}
              because column names don't match

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

PNI-3D: Multimodal CAD & Geometric AI Benchmark

PNI-3D Multimodal Pipeline Overview

PNI-3D is a benchmark dataset designed for testing fine-grained 3D CAD matching, multimodal embedding alignment, and geometric retrieval under real-world sensor distortions.


Key Dataset Metrics

  • 100 Parametric CAD Families: Mechanical engineering primitives (flanges, mounting brackets, U-channels, spur gears, shafts, heat sinks, valve housings, and more).
  • 2,400 Total Assets: Pairs of nominal parts and functional variants, each in 12 representations.
  • 12 Multimodal Representations per Part: Native parametric CAD, polygon meshes, point clouds, voxel grids, and 2D depth projections.
  • Explicit Ground Truth: same-part groups, functional-variant groups, near-duplicate sets, negative pairs, and quantitative nuisance parameters.

12 Representations Per Part

Each parametric CAD instance is represented across 12 distinct formats to benchmark cross-modal embedding models:

Category Representation Description
Native CAD _STEP Boundary Representation (B-Rep) STEP file.
_OBJ Polygon mesh export.
Meshes _MESH_FINE High-density watertight triangulation.
_MESH_COARSE Decimated lightweight geometry (25% face count).
_MESH_CORRUPTED Non-manifold mesh with missing facets and flipped normals.
Point Clouds _PCD_CLEAN Dense uniform surface point sample (N = 10,000).
_PCD_NOISY Point cloud with Gaussian displacement along surface normals (σ = 0.5 mm).
_PCD_SPARSE Decimated low-density point cloud (N = 500).
Sensor / Spatial _DEPTH_MAP Multi-view 128 × 128 normalized depth array (.npy).
_VOXEL 32 × 32 × 32 spatial occupancy grid (.npy).
Transformations _NUISANCE_ROTATED Arbitrary SO(3) rotation (Euler angles recorded per family).
_NUISANCE_SCALED Anisotropic scaling factors in [0.80×, 1.25×] (recorded per family).

Part Varieties & Parameter Splits

PNI-3D isolates nominal CAD geometry from functional variants to evaluate whether geometric models recognize subtle topological changes (like bolt-hole counts or thickness adjustments):

{
  "family_id": "FAM_001",
  "family_type": "flange",
  "nominal_parameters": {
    "outer_diameter": 83.74,
    "bore_diameter": 25.14,
    "thickness": 13.19,
    "bolt_holes": 8,
    "bolt_circle_radius": 32.33,
    "fillet_radius": 2.82
  },
  "variant_parameters": {
    "outer_diameter": 83.74,
    "bore_diameter": 25.14,
    "thickness": 18.19,
    "bolt_holes": 10,
    "bolt_circle_radius": 32.33,
    "fillet_radius": 0.0
  },
  "nuisance_parameters": {
    "rotation_angles_deg": [127.3, 34.677, -159.243],
    "scale_factors": [1.0313, 1.1479, 1.1917],
    "noise_sigma_mm": 0.5,
    "decimation_ratio": 0.25,
    "voxel_resolution": 32
  },
  "same_part_group": [
    "P_001_ORIGINAL_STEP",
    "P_001_ORIGINAL_MESH_FINE",
    "P_001_ORIGINAL_PCD_CLEAN",
    "P_001_ORIGINAL_VOXEL"
  ],
  "near_duplicates": [
    "P_001_ORIGINAL_MESH_FINE",
    "P_001_ORIGINAL_MESH_COARSE",
    "P_001_ORIGINAL_OBJ"
  ]
}

The 12 CAD categories are: flange, spur gear, mounting bracket, heat sink, valve housing, pipe fitting, hex bolt, stepped shaft, pulley, gusset, collar, and U-channel.

Repository Contents

Path Description
metadata.parquet 100-row viewer table (schema above).
ground_truth_index.json Full ground-truth index (all groups + nuisance parameters).
manifest.csv Asset-level index (family, role, representation, path).
assets/FAM_*/ All 2,400 asset files (12 per part × 2 parts × 100 families).
generate_pni3d.py Parametric generator (reproduce / scale to 600k).
evaluate_pni3d.py Retrieval + Samples-to-Threshold benchmark harness.
pni3d_overview.png Pipeline overview.

Quick Start Usage

from datasets import load_dataset

dataset = load_dataset("tryforge/pni-3d-benchmark")

# Inspect a sample part family
sample = dataset["train"][0]
print("Family Type:", sample["family_type"])
print("Nominal Bolt Holes:", sample["nominal_parameters"]["bolt_holes"])
print("Variant Bolt Holes:", sample["variant_parameters"]["bolt_holes"])

Contact & Support

If you encounter any issues accessing the dataset or require additional parameter sweeps, reach out directly:

Email: ravi@getforge.tech

LinkedIn: https://www.linkedin.com/in/raveekumar1/

Downloads last month
86