Improve dataset card: Add task category, correct paper/code links, and expand usage

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +49 -5
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
  license: cc-by-4.0
 
 
3
  ---
 
4
  # [Neurips 2025 DB] PartNeXt: A Next-Generation Dataset for Fine-Grained and Hierarchical 3D Part Understanding
5
  Official dataset release for _PartNeXt: A Next-Generation Dataset for Fine-Grained and Hierarchical 3D Part Understanding_.
6
 
7
- [![arXiv](https://img.shields.io/badge/arXiv-Paper-red?logo=arxiv&logoColor=white)](https://authoritywang.github.io/partnext/)
8
  [![Project Page](https://img.shields.io/badge/Project_Page-Website-green?logo=homepage&logoColor=white)](https://authoritywang.github.io/partnext/)
9
  [![🤗 Hugging Face Dataset](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Dataset-blue)](https://huggingface.co/datasets/AuWang/PartNeXt)
10
 
@@ -14,14 +17,55 @@ Official dataset release for _PartNeXt: A Next-Generation Dataset for Fine-Grain
14
 
15
  **Neurips 2025 Dataset and Benchmark Track**
16
 
17
- | [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>
 
 
 
 
 
 
18
 
19
- ## Usage
 
 
 
 
 
 
 
 
 
20
 
21
- For usage, please refer to our dataset toolkit repo [https://github.com/AuthorityWang/PartNeXt](https://github.com/AuthorityWang/PartNeXt)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
 
23
  ## Acknowledgement
24
- 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.
25
 
26
  Thanks for Benyuan AI data for data annotation.
27
 
 
1
  ---
2
  license: cc-by-4.0
3
+ task_categories:
4
+ - GRAPH_MACHINE_LEARNING
5
  ---
6
+
7
  # [Neurips 2025 DB] PartNeXt: A Next-Generation Dataset for Fine-Grained and Hierarchical 3D Part Understanding
8
  Official dataset release for _PartNeXt: A Next-Generation Dataset for Fine-Grained and Hierarchical 3D Part Understanding_.
9
 
10
+ [![arXiv](https://img.shields.io/badge/arXiv-Paper-red?logo=arxiv&logoColor=white)](https://arxiv.org/abs/2510.20155)
11
  [![Project Page](https://img.shields.io/badge/Project_Page-Website-green?logo=homepage&logoColor=white)](https://authoritywang.github.io/partnext/)
12
  [![🤗 Hugging Face Dataset](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Dataset-blue)](https://huggingface.co/datasets/AuWang/PartNeXt)
13
 
 
17
 
18
  **Neurips 2025 Dataset and Benchmark Track**
19
 
20
+ | [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>
21
+
22
+ ## Sample Usage
23
+
24
+ Here's how to get started with the PartNeXt dataset:
25
+
26
+ ### Toolkit Installation
27
 
28
+ You can install the PartNeXt dataset toolkit from PyPI:
29
+ ```bash
30
+ pip install partnext
31
+ ```
32
+ If you want to install the toolkit from source or refer to the code, you can clone the [toolkit repo](https://github.com/AuthorityWang/PartNeXt_lib.git):
33
+ ```bash
34
+ git clone https://github.com/AuthorityWang/PartNeXt_lib.git
35
+ cd PartNeXt_lib
36
+ pip install -e .
37
+ ```
38
 
39
+ ### Download the dataset
40
+
41
+ Our PartNeXt dataset contains two parts: 3D meshes in `.glb` format, and 3D part and hierarchy annotations. You can download them using `huggingface-cli`:
42
+ ```bash
43
+ hf download --repo-type dataset AuWang/PartNeXt_mesh --local-dir /your/own/path/PartNeXt_mesh
44
+ hf download --repo-type dataset AuWang/PartNeXt --local-dir /your/own/path/PartNeXt_annotations
45
+ ```
46
+
47
+ ### Load the dataset
48
+
49
+ You can load the PartNeXt annotations using the Hugging Face `datasets` library:
50
+ ```python
51
+ from datasets import load_dataset
52
+
53
+ # Load the annotation dataset
54
+ dataset = load_dataset("AuWang/PartNeXt")
55
+
56
+ # Access a sample from the 'train' split (or 'validation', 'test' if available)
57
+ print(dataset["train"][0])
58
+
59
+ # To use the PartNeXt dataset toolkit, import it:
60
+ import partnext
61
+
62
+ # For full usage examples, refer to the toolkit repository:
63
+ # https://github.com/AuthorityWang/PartNeXt_lib
64
+ # Specifically, check 'example/toolkit_example.py' for detailed usage.
65
+ ```
66
 
67
  ## Acknowledgement
68
+ Our PartNeXt dataset is based on [Objaverse](https://objaverse.allenai.org/), [ABO](https://amazon-berkeley-objects.s3.amazonaws.com/), [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.
69
 
70
  Thanks for Benyuan AI data for data annotation.
71