Papers
Topics
Authors
Recent
Search
2000 character limit reached

Hybrid Grasp Network (HGN) in Robotic Grasping

Updated 8 July 2026
  • The paper introduces a dual-network design that fuses a learned image-based grasp proposal (GPNet) with 3D shape reconstruction (SRNet) to achieve accurate 6-DOF grasp planning.
  • HGN is a design pattern integrating heterogeneous inference methods to overcome occlusion and novelty challenges by decomposing grasping into semantically and geometrically distinct tasks.
  • Edge-cloud HGN deploys a fast edge model with calibrated cloud fallback to balance low latency and high semantic projection accuracy for robust prosthetic grasp estimation.

Searching arXiv for the cited papers to ground the article in current records. arXiv search: (Yang et al., 2020) arXiv search: (Zandigohar et al., 11 Aug 2025) Hybrid Grasp Network (HGN) denotes a hybrid architectural pattern for robotic grasp estimation in which complementary models are combined to compensate for each other’s failure modes. In the grasping literature represented here, the term is applied to two distinct instantiations. One is a dual-network 6-DOF grasp planner that combines a learned image-based grasp proposal network with a learned 3D shape reconstruction network, then refines the proposal against reconstructed geometry from a single RGB-D view (Yang et al., 2020). The other is an edge-cloud deployment infrastructure for prosthetic grasp estimation that couples a fast edge model with a slower but more general cloud model, with routing controlled by calibrated confidence so as to improve semantic projection while meeting latency constraints (Zandigohar et al., 11 Aug 2025). In both cases, “hybrid” refers to the deliberate combination of heterogeneous inference mechanisms rather than a single monolithic predictor.

1. Conceptual scope and defining properties

An HGN is defined by the integration of at least two components with different strengths. In the 6-DOF robotic grasp planning formulation, those components are a Grasp Proposal Network (GPNet), a 3D Shape Reconstruction Network (SRNet), and a Grasp Refinement Module. The input is a single segmented RGB-D image, and the outputs are a 6-DOF grasp pose in the camera frame, a 3D point cloud reconstruction of the target object, and a final refined 6-DOF grasp pose projected onto the reconstructed object surface (Yang et al., 2020).

In the prosthetic grasp estimation formulation, HGN is a hybrid edge-cloud system composed of a fast, lightweight, edge-deployed specialized model, a highly accurate, universal, cloud-based model (Grasp-LLaVA), and an HGN controller that decides which model to trust on a per-inference basis using calibrated confidence. The motivating trade-off is explicit: accuracy and semantic projection improve with the cloud model, while low latency is obtained from the edge model (Zandigohar et al., 11 Aug 2025).

These two uses share a common systems principle. Each decomposes grasping into subproblems that are difficult to solve robustly with a single modality or deployment tier alone. This suggests that HGN is best understood not as one fixed network topology, but as a design pattern for combining complementary predictors, geometric representations, or compute locations in grasp-related decision making.

2. Dual-network HGN for 6-DOF robotic grasp planning

In the 2020 formulation, GPNet receives a masked grayscale image IgI^g and a masked depth image IdI^d through separate ResNet-34 ConvNets in parallel streams, concatenates the outputs, and passes them through 2 fully connected layers. The final output is t^R12\hat{t} \in \mathbb{R}^{12} representing a homogeneous transform, with the first 3 entries corresponding to gripper position (x,y,z)(x,y,z) and the last 9 to a serialized 3×33 \times 3 rotation matrix. The output is therefore a 6-DOF grasp pose in the camera frame (Yang et al., 2020).

SRNet is based on Higher-Order Function Networks (HOFNet). Given the masked grayscale and depth images, it implements a higher-order function g(I)g(I) that outputs the weights θ\theta of an MLP. That MLP defines an implicit mapping fθf_\theta from a canonical domain to points on the object’s 3D surface:

Y={fθ(x)xX},Y = \{ f_\theta(x) \mid x \in X \},

where XX is a set of points sampled in canonical space. The output is a complete 3D point cloud estimate, including occluded object areas. For real-world cases, the generated point cloud is aligned to the observed point cloud via Iterative Closest Point (ICP) (Yang et al., 2020).

The hybrid character of this architecture lies in the division of labor. GPNet uses image cues to propose semantically appropriate grasps, including grasps on object regions that are not visible in the input image. SRNet reconstructs full-object geometry, including occluded regions. The refinement module then bridges the two by projecting the proposed grasp to the nearest point on the reconstructed surface while preserving orientation. A plausible implication is that the system treats semantic grasp localization and geometric contact correction as separable but complementary estimation problems.

3. Training objectives and geometric refinement

The GPNet training objective is a weighted sum of translation and rotation errors between prediction IdI^d0 and ground truth IdI^d1:

IdI^d2

The translation term is

IdI^d3

and the rotation term is

IdI^d4

The training data consist of real RGB-D images of 25 shoes in the physical setting and YCB box-shaped objects in simulation, with ground-truth grasps via GraspIt!. Ground-truth grasps are semantically selected, such as the left side of a shoe or centroid/top-down for boxes. Data augmentation includes random offsets for object center and pose variations (Yang et al., 2020).

SRNet is trained using foreground-masked grayscale and depth images paired with ground-truth 3D models as point clouds. After sampling points IdI^d5 in the canonical domain and reconstructing IdI^d6, the loss is the Chamfer Distance:

IdI^d7

After reconstruction, the output is aligned to the visible point cloud via ICP (Yang et al., 2020).

The refinement mechanism is deliberately simple. Given the GPNet grasp pose IdI^d8 and the SRNet point cloud reconstruction, the system finds the closest point in the reconstructed point cloud to the proposed grasp position. The refined grasp pose IdI^d9 adjusts only the translation to that closest surface point while preserving orientation, and the final execution pose in the robot frame is

t^R12\hat{t} \in \mathbb{R}^{12}0

This refinement is particularly motivated by hidden-grasp cases, where the target region is fully occluded in the input image.

4. Edge-cloud HGN for prosthetic grasp estimation

In the 2025 formulation, HGN addresses a different grasping problem: robust prosthetic hand control under a joint accuracy-latency constraint. The system is built around an Edge Specialized Model, typically Grasp-CLIP+, deployed on hardware such as Jetson Orin NX; a Cloud Universal Model, Grasp-LLaVA, deployed on a GPU server; and an HGN Controller that decides whether to accept the edge result or escalate to the cloud. The edge model excels on seen object types but is weaker on unseen objects. The cloud model has high semantic projection, but is much slower due to model size and network round-trips (Zandigohar et al., 11 Aug 2025).

The paper defines semantic projection as the ability of a model to generalize to unseen object types. In that setting, conventional models like YOLO show 80% training accuracy but drop to 15% on unseen objects, whereas Grasp-LLaVA uses human-like reasoning to infer the suitable grasp type estimate based on the object’s physical characteristics. HGN is introduced specifically to bridge the performance-latency gap by using edge inference when confidence is sufficient and cloud inference as a fail-safe when the edge model is uncertain (Zandigohar et al., 11 Aug 2025).

The deployment logic is sequential. The edge always infers first. If the edge model’s confidence exceeds a calibrated threshold, the edge prediction is accepted. Otherwise, the sample is offloaded to the cloud model. The system can also transmit CLIP feature vectors rather than raw images for privacy and speed, because both models share the same vision backbone. This suggests that HGN in this setting is as much a systems architecture as a model architecture: it couples representation reuse, confidence estimation, and compute placement.

5. Confidence calibration, routing, and formal criteria

The edge model produces a probability distribution over grasp types, and the raw confidence is defined as

t^R12\hat{t} \in \mathbb{R}^{12}1

where t^R12\hat{t} \in \mathbb{R}^{12}2 is the input image and t^R12\hat{t} \in \mathbb{R}^{12}3 is the grasp-type class. The paper states that uncalibrated softmax scores are often overconfident and unreliable, which makes direct thresholding suboptimal for routing. Several calibration methods are explored: Temperature Scaling (TS), Dirichlet Calibration (DC), and Density-Aware Calibration (DAC). The best-performing method is Dirichlet Calibration, which achieves the best balance between accuracy and reliability and the lowest Expected Calibration Error (ECE) (Zandigohar et al., 11 Aug 2025).

ECE is defined as

t^R12\hat{t} \in \mathbb{R}^{12}4

where t^R12\hat{t} \in \mathbb{R}^{12}5 denotes the t^R12\hat{t} \in \mathbb{R}^{12}6-th bin, t^R12\hat{t} \in \mathbb{R}^{12}7 is bin accuracy, and t^R12\hat{t} \in \mathbb{R}^{12}8 is average confidence. The HGN controller uses a threshold t^R12\hat{t} \in \mathbb{R}^{12}9 on calibrated confidence (x,y,z)(x,y,z)0: if (x,y,z)(x,y,z)1, the edge decision is accepted; otherwise the cloud model is queried. The operational logic is therefore a thresholded abstention-and-escalation policy rather than model ensembling in the strict sense (Zandigohar et al., 11 Aug 2025).

Two misconceptions are directly addressed by this formulation. First, hybrid grasping here does not mean averaging edge and cloud predictions; it means dynamic switching between them. Second, the controller is not incidental. The paper’s results treat calibration as pivotal, reporting that Dirichlet Calibration showed the best overall F1, recall, and accuracy in controller decisions. A plausible implication is that routing quality, not just base-model quality, is a first-order determinant of end-to-end HGN performance.

6. Empirical performance, ablations, and acronym boundaries

The dual-network 6-DOF grasping system reports strong performance in both physical and simulated environments. On a physical robot with shoes, the full system (GPNet+SRNet) achieves 94% success on visible-grasp tasks, 88% on hidden-grasp tasks, and 91% overall, including 7/8 (87.5%) for a never-seen test shoe. In simulation on YCB box-shaped objects, the full system achieves 84% overall average and 82% on the never-seen sugar box. The ablations are central: GPNet + no refinement drops to 75% on hidden grasps, GPNet + visible refinement drops to 56% on hidden grasps, and Naive + SRNet reaches 38–50%, with baselines below 50% in all categories. The paper states that ablation studies unambiguously show that the hybrid approach yields higher success on occluded grasps and unknown objects, and that refinement based on SRNet strictly outperforms refinement based on visible geometry alone (Yang et al., 2020).

The edge-cloud prosthetic HGN reports different but structurally analogous results. On unseen objects, Grasp-LLaVA reaches 50.2% semantic projection accuracy, edge-only Grasp-CLIP+ reaches 36.7%, and HGN with Dirichlet Calibration reaches 42.3%, which is a 5.6% absolute improvement over edge-only. On a real-world sample mix with 80% seen and 20% unseen objects, edge-only reaches 71.3% accuracy, cloud-only reaches 88.4%, and HGN reaches 86.0%, described as a 12.2% gain over edge-only and 97.2% of cloud-only accuracy. In latency terms, HGN reaches 73 ms on unseen objects, providing a 3.5x speedup over running only Grasp-LLaVA, and 117.8 ms on the real-world sample mix, providing a 2.2x speedup over Grasp-LLaVA alone; both are within the 150 ms actuation deadline for prosthetic hand pre-shaping. The User Upsetness Index (UUI) also improves from 3.16 to 3.12 in the semantic projection case and from 1.40 to 1.12 on the 80/20 real-world mix (Zandigohar et al., 11 Aug 2025).

A concise comparison is useful because the same acronym names two different grasping hybrids.

HGN instantiation Core hybridization Representative result
GPNet + SRNet + refinement Image-based grasp proposal + 3D reconstruction + geometric snapping 91% overall physical robot success
Edge model + cloud model + controller Fast local inference + calibrated escalation to Grasp-LLaVA 86.0% average accuracy on 80/20 mix at 117.8 ms

The acronym also has a separate robotics meaning outside grasping. In "Robotic Hierarchical Graph Neurons. A novel implementation of HGN for swarm robotic behaviour control," HGN denotes Hierarchical Graph Neurons, not Hybrid Grasp Network. That work concerns swarm robotic behaviour selection, pseudo-continuous observations, dynamic neuron allocation, gated row connections, temporal fusion, and intra-swarm belief sharing. Its inclusion is relevant primarily as an acronym boundary: the paper is not about grasp planning or grasp estimation, even though it uses the same initials (Smith et al., 2019).

Taken together, the grasping literature represented here uses HGN to denote systems that exploit complementarity under uncertainty: semantic grasp proposal with geometric correction in one case, and edge efficiency with cloud generalization in the other. What remains constant is the architectural claim that hybridization is empirically justified when grasp execution must tolerate occlusion, novelty, or deployment-time latency constraints.

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Hybrid Grasp Network (HGN).