Improve dataset card: Add task categories, abstract, correct links, and sample usage

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +30 -4
README.md CHANGED
@@ -1,25 +1,51 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
 
 
3
  ---
4
 
5
  # [Neurips 2025 DB] PartNeXt: A Next-Generation Dataset for Fine-Grained and Hierarchical 3D Part Understanding
6
  Official dataset release for _PartNeXt: A Next-Generation Dataset for Fine-Grained and Hierarchical 3D Part Understanding_.
7
 
8
- [![arXiv](https://img.shields.io/badge/arXiv-Paper-red?logo=arxiv&logoColor=white)](https://authoritywang.github.io/partnext/)
9
  [![Project Page](https://img.shields.io/badge/Project_Page-Website-green?logo=homepage&logoColor=white)](https://authoritywang.github.io/partnext/)
10
  [![🤗 Hugging Face Dataset](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Dataset-blue)](https://huggingface.co/datasets/AuWang/PartNeXt)
11
 
 
 
 
12
  **[Penghao Wang](https://authoritywang.github.io/), Yiyang He, Xin Lv, Yukai Zhou, [Lan Xu](https://www.xu-lan.com/), [Jingyi Yu](http://www.yu-jingyi.com/cv/), [Jiayuan Gu†](https://jiayuan-gu.github.io/)**
13
 
14
  **ShanghaiTech University**
15
 
16
  **Neurips 2025 Dataset and Benchmark Track**
17
 
18
- | [Project Page](https://authoritywang.github.io/partnext/) | [Paper]() | [Dataset](https://huggingface.co/datasets/AuWang/PartNeXt) | [Dataset Toolkit](https://github.com/AuthorityWang/PartNeXt) | [Benchmark code (Soon)]() | [Annotation code (Soon)]() |<br>
 
 
19
 
20
- ## Usage
 
 
 
 
21
 
22
- For usage, please refer to our dataset toolkit repo [https://github.com/AuthorityWang/PartNeXt](https://github.com/AuthorityWang/PartNeXt)
 
 
 
 
 
 
 
 
 
 
23
 
24
  ## Acknowledgement
25
  Our PartNeXt dataset is based on [Objaverse](https://objaverse.allenai.org/), [ABO](https://amazon-berkeley-objects.s3.amazonaws.com/index.html), [3D-Future](https://tianchi.aliyun.com/dataset/98063), thanks for these awesome datasets. If there is any license issue, please contact us and we will remove the data.
 
1
  ---
2
  license: cc-by-4.0
3
+ task_categories:
4
+ - GRAPH_MACHINE_LEARNING
5
+ tags:
6
+ - 3d
7
+ - part-segmentation
8
+ - question-answering
9
+ - object-understanding
10
  ---
11
 
12
  # [Neurips 2025 DB] PartNeXt: A Next-Generation Dataset for Fine-Grained and Hierarchical 3D Part Understanding
13
  Official dataset release for _PartNeXt: A Next-Generation Dataset for Fine-Grained and Hierarchical 3D Part Understanding_.
14
 
15
+ [![arXiv](https://img.shields.io/badge/arXiv-Paper-red?logo=arxiv&logoColor=white)](https://arxiv.org/abs/2510.20155)
16
  [![Project Page](https://img.shields.io/badge/Project_Page-Website-green?logo=homepage&logoColor=white)](https://authoritywang.github.io/partnext/)
17
  [![🤗 Hugging Face Dataset](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Dataset-blue)](https://huggingface.co/datasets/AuWang/PartNeXt)
18
 
19
+ ## Abstract
20
+ Understanding objects at the level of their constituent parts is fundamental to advancing computer vision, graphics, and robotics. While datasets like PartNet have driven progress in 3D part understanding, their reliance on untextured geometries and expert-dependent annotation limits scalability and usability. We introduce PartNeXt, a next-generation dataset addressing these gaps with over 23,000 high-quality, textured 3D models annotated with fine-grained, hierarchical part labels across 50 categories. We benchmark PartNeXt on two tasks: (1) class-agnostic part segmentation, where state-of-the-art methods (e.g., PartField, SAMPart3D) struggle with fine-grained and leaf-level parts, and (2) 3D part-centric question answering, a new benchmark for 3D-LLMs that reveals significant gaps in open-vocabulary part grounding. Additionally, training Point-SAM on PartNeXt yields substantial gains over PartNet, underscoring the dataset's superior quality and diversity. By combining scalable annotation, texture-aware labels, and multi-task evaluation, PartNeXt opens new avenues for research in structured 3D understanding.
21
+
22
  **[Penghao Wang](https://authoritywang.github.io/), Yiyang He, Xin Lv, Yukai Zhou, [Lan Xu](https://www.xu-lan.com/), [Jingyi Yu](http://www.yu-jingyi.com/cv/), [Jiayuan Gu†](https://jiayuan-gu.github.io/)**
23
 
24
  **ShanghaiTech University**
25
 
26
  **Neurips 2025 Dataset and Benchmark Track**
27
 
28
+ | [Project Page](https://authoritywang.github.io/partnext/) | [Paper](https://huggingface.co/papers/2510.20155) | [Code](https://github.com/AuthorityWang/PartNeXt) | [Dataset](https://huggingface.co/datasets/AuWang/PartNeXt) | [Dataset Toolkit](https://github.com/AuthorityWang/PartNeXt_lib) | [Benchmark code (Soon)]() | [Annotation code (Soon)]() |<br>
29
+
30
+ ## Sample Usage
31
 
32
+ You can download the dataset using the Hugging Face CLI:
33
+ ```bash
34
+ hf download --repo-type dataset AuWang/PartNeXt_mesh --local-dir /your/own/path
35
+ hf download --repo-type dataset AuWang/PartNeXt --local-dir /your/own/path
36
+ ```
37
 
38
+ The PartNeXt dataset toolkit can be installed via pip:
39
+ ```bash
40
+ pip install partnext
41
+ ```
42
+ Alternatively, you can install it from source:
43
+ ```bash
44
+ git clone https://github.com/AuthorityWang/PartNeXt_lib.git
45
+ cd PartNeXt_lib
46
+ pip install -e .
47
+ ```
48
+ For examples on how to use the toolkit, please refer to `example/toolkit_example.py` in the [Dataset Toolkit repository](https://github.com/AuthorityWang/PartNeXt_lib).
49
 
50
  ## Acknowledgement
51
  Our PartNeXt dataset is based on [Objaverse](https://objaverse.allenai.org/), [ABO](https://amazon-berkeley-objects.s3.amazonaws.com/index.html), [3D-Future](https://tianchi.aliyun.com/dataset/98063), thanks for these awesome datasets. If there is any license issue, please contact us and we will remove the data.