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

Revise overview and remove inference instructions

Browse files
Files changed (1) hide show
  1. README.md +2 -23
README.md CHANGED
@@ -27,14 +27,14 @@ Accepted at **International Journal of Computer Vision (IJCV), 2026**.
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
 
@@ -48,27 +48,6 @@ 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/
68
- mesh_pose_dict/
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:
 
27
 
28
  ## Overview
29
 
30
+ Recent advances in predicting 6D grasp poses from a single depth image have led to promising performance in robotic grasping. However, previous grasping models face challenges in cluttered environments where nearby objects impact the target object's grasp. In this paper, we first establish a new benchmark dataset for TARget-driven Grasping under Occlusions, named TARGO. We make the following contributions: 1) We are the first to study the occlusion level of grasping. 2) We set up an evaluation benchmark consisting of large-scale synthetic data and part of real-world data, and we evaluated five grasp models and found that even the current SOTA model suffers when the occlusion level increases, leaving grasping under occlusion still a challenge. 3) We also generate a large-scale training dataset via a scalable pipeline, which can be used to boost the performance of grasping under occlusion and generalized to the real world. 4) We further propose a transformer-based grasping model involving a shape completion module, termed TARGO-Net, which performs most robustly as occlusion increases. Our benchmark dataset can be found at [this https URL](https://targo-benchmark.github.io/).
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 pipeline. |
38
 
39
  ## Download
40
 
 
48
  )
49
  ```
50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  ## Data
52
 
53
  The benchmark/dataset files are not included in this model repository. Please see the project page for code, data, and benchmark details: