randing2000 commited on
Commit
2207bad
·
verified ·
1 Parent(s): fb54695

Update model card with IJCV paper information

Browse files
Files changed (1) hide show
  1. README.md +38 -16
README.md CHANGED
@@ -4,7 +4,10 @@ language:
4
  - en
5
  tags:
6
  - robotics
7
- - grasping
 
 
 
8
  - 3d-vision
9
  - shape-completion
10
  - pytorch
@@ -13,18 +16,27 @@ library_name: pytorch
13
 
14
  # TARGO-Net
15
 
16
- TARGO-Net is a PyTorch checkpoint release for target-oriented robotic grasping in cluttered scenes. This repository currently provides the model weights needed by the cleaned TARGO inference and training code.
17
 
18
- ## Files
 
 
 
 
 
 
 
 
 
 
 
19
 
20
  | File | Description |
21
  | --- | --- |
22
- | `checkpoints/targonet.pt` | TARGO grasp prediction network checkpoint. |
23
- | `checkpoints/adapointr.pth` | AdaPoinTr shape completion checkpoint used by the TARGO inference pipeline. |
24
 
25
- ## Usage
26
-
27
- Download the checkpoints with `huggingface_hub`:
28
 
29
  ```python
30
  from huggingface_hub import snapshot_download
@@ -36,20 +48,20 @@ snapshot_download(
36
  )
37
  ```
38
 
39
- For the cleaned TARGO code, place or link the downloaded files as:
40
 
41
  ```text
42
  checkpoints/targonet.pt
43
  checkpoints/adapointr.pth
44
  ```
45
 
46
- Then run inference with the processed VGN-format test data:
47
 
48
  ```bash
49
  python inference_targo.py --model checkpoints/targonet.pt --sc_model_path checkpoints/adapointr.pth --test_root /path/to/processed_vgn/test_set_gaussian_0.002
50
  ```
51
 
52
- The `--test_root` directory should contain:
53
 
54
  ```text
55
  scenes/
@@ -57,14 +69,24 @@ mesh_pose_dict/
57
  occ_level_dict.json
58
  ```
59
 
60
- ## Training / Evaluation Data
 
 
61
 
62
- The checkpoints are intended for the TARGO/VGN-style data pipeline. The processed dataset is not included in this model repository.
63
 
64
- ## Limitations
65
 
66
- These weights are research artifacts and are intended for offline robotics research workflows. Real-robot deployment requires additional calibration, safety checks, and environment-specific validation.
 
 
 
 
 
 
 
 
67
 
68
  ## License
69
 
70
- MIT.
 
4
  - en
5
  tags:
6
  - robotics
7
+ - robotic-grasping
8
+ - target-driven-grasping
9
+ - occlusion
10
+ - 6dof-grasping
11
  - 3d-vision
12
  - shape-completion
13
  - pytorch
 
16
 
17
  # TARGO-Net
18
 
19
+ This repository hosts the released checkpoints for **TARGO-Net**, the model from:
20
 
21
+ **TARGO and TARGO-Net: Benchmarking Target-Driven Object Grasping Under Occlusions**
22
+ Accepted at **International Journal of Computer Vision (IJCV), 2026**.
23
+
24
+ - Project page: https://targo-benchmark.github.io/
25
+ - Paper DOI: https://doi.org/10.1007/s11263-025-02716-9
26
+ - arXiv: https://arxiv.org/abs/2407.06168
27
+
28
+ ## Overview
29
+
30
+ TARGO studies target-driven 6-DoF robotic grasping under visual occlusion. Given a single RGB-D observation and a target object, TARGO-Net uses target shape completion and target-scene feature fusion to predict collision-aware grasp poses that remain robust when the target is partially occluded by clutter.
31
+
32
+ ## Checkpoints
33
 
34
  | File | Description |
35
  | --- | --- |
36
+ | `checkpoints/targonet.pt` | TARGO-Net grasp prediction checkpoint. |
37
+ | `checkpoints/adapointr.pth` | AdaPoinTr target shape completion checkpoint used by the TARGO-Net inference pipeline. |
38
 
39
+ ## Download
 
 
40
 
41
  ```python
42
  from huggingface_hub import snapshot_download
 
48
  )
49
  ```
50
 
51
+ For the cleaned TARGO code, place or link the files as:
52
 
53
  ```text
54
  checkpoints/targonet.pt
55
  checkpoints/adapointr.pth
56
  ```
57
 
58
+ ## Inference
59
 
60
  ```bash
61
  python inference_targo.py --model checkpoints/targonet.pt --sc_model_path checkpoints/adapointr.pth --test_root /path/to/processed_vgn/test_set_gaussian_0.002
62
  ```
63
 
64
+ The processed VGN-format `--test_root` should contain:
65
 
66
  ```text
67
  scenes/
 
69
  occ_level_dict.json
70
  ```
71
 
72
+ ## Data
73
+
74
+ The benchmark/dataset files are not included in this model repository. Please see the project page for code, data, and benchmark details:
75
 
76
+ https://targo-benchmark.github.io/
77
 
78
+ ## Citation
79
 
80
+ ```bibtex
81
+ @article{xia2026targo,
82
+ title={TARGO and TARGO-Net: Benchmarking Target-Driven Object Grasping Under Occlusions},
83
+ author={Xia, Yan and Ding, Ran and Qin, Ziyuan and Zhan, Guanqi and Zhou, Kaichen and Yang, Long and Dong, Hao and Cremers, Daniel},
84
+ journal={International Journal of Computer Vision},
85
+ year={2026},
86
+ doi={10.1007/s11263-025-02716-9}
87
+ }
88
+ ```
89
 
90
  ## License
91
 
92
+ The model repository is released under the MIT license. Please also check the licenses of the benchmark data and any third-party assets used in your experiments.