Dataset Viewer
The dataset viewer is not available for this dataset.
The JWT signature verification failed. Check the signing key and the algorithm.
Error code:   JWTInvalidSignature
Exception:    InvalidSignatureError
Message:      Signature verification failed
Traceback:    Traceback (most recent call last):
                File "/src/libs/libapi/src/libapi/jwt_token.py", line 286, in validate_jwt
                  decoded = jwt.decode(
                      jwt=token,
                  ...<2 lines>...
                      options=options,
                  )
                File "/usr/local/lib/python3.14/site-packages/jwt/api_jwt.py", line 368, in decode
                  decoded = self.decode_complete(
                      jwt,
                  ...<8 lines>...
                      leeway=leeway,
                  )
                File "/usr/local/lib/python3.14/site-packages/jwt/api_jwt.py", line 265, in decode_complete
                  decoded = self._jws.decode_complete(
                      jwt,
                  ...<3 lines>...
                      detached_payload=detached_payload,
                  )
                File "/usr/local/lib/python3.14/site-packages/jwt/api_jws.py", line 270, in decode_complete
                  self._verify_signature(
                  ~~~~~~~~~~~~~~~~~~~~~~^
                      signing_input,
                      ^^^^^^^^^^^^^^
                  ...<4 lines>...
                      options=merged_options,
                      ^^^^^^^^^^^^^^^^^^^^^^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/jwt/api_jws.py", line 417, in _verify_signature
                  raise InvalidSignatureError("Signature verification failed")
              jwt.exceptions.InvalidSignatureError: Signature verification failed

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.

Prox-E ShapeTalk Evaluation Benchmark Dataset

This is the official benchmark dataset for Prox-E: Fine-Grained 3D Shape Editing via Primitive-Based Abstractions (SIGGRAPH'26).

πŸ“„ Dataset Overview

This benchmark consists of a subset of random 600 samples from the ShapeTalk dataset. It is used to evaluate identity preservation, 3D quality, and edit fidelity.

πŸ“‚ Repository Structure

The repository is structured to seamlessly plug into the Prox-E unified evaluator:

  • input_shapes/: Directory containing 600 input 3D meshes in OBJ format (.obj).
  • rendered_images/: 600 high-resolution upright 2D renders (PNG) of the input shapes, produced from TRELLIS's inversion outputs.
  • point_cloud/: Directory containing 600 dense point cloud of the input meshes (.npz).
  • instructions.json: Key-value metadata containing evaluation prompts, object classes and part-specific keywords.
  • shapetalk_600_set.csv: Full detailed metadata from the original ShapeTalk dataset on this 600-sample subset.

πŸ› οΈ Usage with Prox-E Evaluation Tool

1. Download the Dataset

You can clone this dataset repository using Git LFS:

git lfs install
git clone https://huggingface.co/datasets/haopt/prox-e-shapetalk-benchmark

2. Run the Unified Evaluator

Once downloaded, plug this benchmark directly into the Prox-E unified evaluation pipeline to compute metric scores (e.g., l-GD, LPIPS, DINO-I, FID, PFD, CLIP, and VQA):

python -m evals.main \
  --pred_dir <flat folder of pred .glb/.obj/.ply> \
  --input_dir prox-e-shapetalk-benchmark/input_shapes \
  --instructions_json prox-e-shapetalk-benchmark/instructions.json \
  --input_render_dir prox-e-shapetalk-benchmark/rendered_images \
  --input_pcd_dir prox-e-shapetalk-benchmark/point_cloud \
  --output_dir <eval_run_dir> \
  --device cuda:0 \
  --metrics identity quality fidelity \
  --enable_vqa

Refer to the official Prox-E repo for setup and full usage options!

πŸ“œ Citation

If you use this benchmark dataset in your work, please cite the Prox-E paper and the ShapeTalk dataset:

@inproceedings{sella2026proxefinegrained3dshape,
    title={Prox-E: Fine-Grained 3D Shape Editing via Primitive-Based Abstractions},
    author={Etai Sella and Hao Phung and Nitay Amiel and Or Litany and Or Patashnik and Hadar Averbuch-Elor},
    booktitle={Special Interest Group on Computer Graphics and Interactive Techniques Conference Conference Papers},
    year={2026},
}

@inproceedings{achlioptas2023shapetalk,
    title={{ShapeTalk}: A Language Dataset and Framework for 3D Shape Edits and Deformations},
    author={Achlioptas, Panos and Huang, Ian and Sung, Minhyuk and Tulyakov, Sergey and Guibas, Leonidas},    
    booktitle={Conference on Computer Vision and Pattern Recognition (CVPR)},    
    year={2023}
}
Downloads last month
129