| { |
| "name": "GraspNet", |
| "id": "iodtp8ht0400", |
| "description": "GraspNet是一种基于点云输入的多阶段抓取姿态预测模型,由抓取视角估计和抓取姿态生成两个阶段组成,通过特征提取、视角估计、局部特征提取、抓取参数估计和预测解码一系列处理,最终生成包含抓取评分、抓取宽度、抓取高度、抓取深度、旋转矩阵、抓取中心点和物体ID的预测结果,旨在解决机器人抓取任务中的6D抓取姿态估计问题。", |
| "category": "计算机视觉", |
| "framework": [ |
| "PyTorch" |
| ], |
| "supportOs": [ |
| "OpenEuler" |
| ], |
| "computingPower": [ |
| "Hi3591PV100" |
| ], |
| "tags": [ |
| "具身智能" |
| ], |
| "repositoryUrl": "https://gitee.com/HiSpark/modelzoo/blob/master/samples/built-in/embodied_intelligence/GraspNet/README.md", |
| "licenseUrl": "https://github.com/graspnet/graspnet-baseline/blob/main/LICENSE", |
| "downloads": [ |
| { |
| "fileName": "graspnet[该模型文件仅用于非商用].onnx", |
| "variants": [ |
| "源模型 / 源模型下载", |
| "源模型 / 源模型元数据" |
| ] |
| } |
| ], |
| "apiDetail": { |
| "createdBy": 139761718403620, |
| "creationDate": "2026-02-09 19:42:15", |
| "creationUserCN": "bazinga", |
| "lastUpdatedBy": null, |
| "lastUpdateDate": "2026-02-12 11:24:22", |
| "lastUpdateUserCN": "bazinga", |
| "rowIdx": -1, |
| "id": "iodtp8ht0400", |
| "name": "GraspNet", |
| "isBeta": 1, |
| "betaVersionDesc": "该模型跟随Hi3591P配套版本正式发布", |
| "description": "GraspNet是一种基于点云输入的多阶段抓取姿态预测模型,由抓取视角估计和抓取姿态生成两个阶段组成,通过特征提取、视角估计、局部特征提取、抓取参数估计和预测解码一系列处理,最终生成包含抓取评分、抓取宽度、抓取高度、抓取深度、旋转矩阵、抓取中心点和物体ID的预测结果,旨在解决机器人抓取任务中的6D抓取姿态估计问题。", |
| "parentId": "ikh50q5l0400", |
| "coverImageId": 1726646426140674, |
| "coverImageUrl": "https://openxinhuo-board-image.obs.cn-east-3.myhuaweicloud.com/1726646426140674%2Fgraspnet_16_9.jpg", |
| "modelEffectId": null, |
| "modelEffectUrl": "", |
| "computerVersion": [ |
| "具身智能" |
| ], |
| "naturalLanguageProcess": [], |
| "multimodal": [], |
| "video": [], |
| "framework": [ |
| "PyTorch" |
| ], |
| "modelRepository": "https://gitee.com/HiSpark/modelzoo/blob/master/samples/built-in/embodied_intelligence/GraspNet/README.md", |
| "originModel": [ |
| { |
| "id": "1727953687937027", |
| "name": "graspnet[该模型文件仅用于非商用].onnx", |
| "url": null, |
| "size": "4942215" |
| } |
| ], |
| "originModelLink": "", |
| "dataSet": "https://github.com/graspnet/graspnet-baseline/blob/main/doc/example_data", |
| "modelLicense": "https://github.com/graspnet/graspnet-baseline/blob/main/LICENSE", |
| "detailParams": [ |
| { |
| "name": "计算量", |
| "value": "71.121GFLOPs" |
| }, |
| { |
| "name": "输入", |
| "value": "720x1280" |
| }, |
| { |
| "name": "参数量", |
| "value": "2.397M" |
| } |
| ], |
| "quickStart": { |
| "url": "https://gitee.com/HiSpark/modelzoo/tree/master/samples/built-in/embodied_intelligence/GraspNet", |
| "markDownUrl": "https://gitee.com/HiSpark/modelzoo/tree/master/samples/built-in/embodied_intelligence/GraspNet/README.md", |
| "developLanguage": [ |
| { |
| "language": "C++", |
| "context": "{\"ops\":[{\"insert\":\"模型可以通过以下代码完成快速推理\"},{\"attributes\":{\"blockquote\":true},\"insert\":\"\\n\"},{\"insert\":\"#include \\\"model.h\\\"\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\"#include \\\"log.h\\\"\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\\n\"},{\"insert\":\"using namespace Infer;\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\\n\"},{\"insert\":\"int main()\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\"{\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\" EnvInit();\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\" std::string omModelPath = \\\"/path/to/model.om\\\"; // 模型文件路径 \"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\" std::string filePath= \\\"/path/to/file_list_1.json\\\"; // 输入文本文件路径\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\" std::unique_ptr<Model> model = std::make_unique<Model>();\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\" if (model->Load(omModelPath, ModelType::GraspNet) != 0) {\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\" LOG(ERROR) << \\\"fail to load model\\\";\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\" return -1;\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\" }\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\" auto ret = model->Infer(filePath, FileType::JsonFile);\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\" if (ret.size() == 0) {\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\" LOG(ERROR) << \\\"fail to infer model\\\";\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\" model->Unload();\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\" return -1;\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\" }\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\" if (model->Unload() != 0) {\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\" LOG(ERROR) << \\\"fail to unload model\\\";\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\" return -1;\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\" }\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\" EnvDeinit();\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\" return 0;\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"insert\":\"}\"},{\"attributes\":{\"code-block\":\"plain\"},\"insert\":\"\\n\"},{\"attributes\":{\"background\":\"#ffffff\",\"size\":\"16px\",\"color\":\"#40485b\",\"line-height\":\"1.6\"},\"insert\":\"备注:上述C++代码依赖的动态库与头文件位于\"},{\"attributes\":{\"background\":\"transparent\",\"size\":\"16px\",\"color\":\"#095eab\",\"line-height\":\"1.6\",\"link\":\"https://gitee.com/HiSpark/modelzoo/tree/master/samples/common\"},\"insert\":\"/samples/common\"},{\"attributes\":{\"background\":\"#ffffff\",\"size\":\"16px\",\"color\":\"#40485b\",\"line-height\":\"1.6\"},\"insert\":\"目录下,编译相关配置参考\"},{\"attributes\":{\"background\":\"transparent\",\"size\":\"16px\",\"color\":\"#095eab\",\"line-height\":\"1.6\",\"link\":\"https://gitee.com/HiSpark/modelzoo/blob/master/samples/built-in/embodied_intelligence/GraspNet/src/CMakeLists.txt\"},\"insert\":\"CMakeLists.txt\"},{\"attributes\":{\"background\":\"#ffffff\",\"size\":\"16px\",\"color\":\"#40485b\",\"line-height\":\"1.6\"},\"insert\":\"。\"},{\"attributes\":{\"blockquote\":true},\"insert\":\"\\n\"}]}" |
| } |
| ] |
| }, |
| "status": "released", |
| "currentHandler": "", |
| "currentHandlerName": "", |
| "jsonPath": "https://gitee.com/HiSpark/modelzoo/blob/master/samples/built-in/embodied_intelligence/GraspNet/GraspNet.json", |
| "modelAdaptor": [ |
| { |
| "createdBy": null, |
| "creationDate": null, |
| "creationUserCN": null, |
| "lastUpdatedBy": null, |
| "lastUpdateDate": null, |
| "lastUpdateUserCN": null, |
| "rowIdx": -1, |
| "id": "il5vp5msp400", |
| "name": "Hi3591PV100", |
| "modelId": "iodtp8ht0400", |
| "modelName": "GraspNet", |
| "supportNames": [ |
| "fp16" |
| ], |
| "toolkit": [ |
| { |
| "name": "CANN工具", |
| "url": "", |
| "desc": "7.7.0.1.238-linux.aarch64-spc001;(请联系FAE获取)", |
| "imgId": "cann" |
| }, |
| { |
| "name": "SDK", |
| "url": "", |
| "desc": "7.7.0.1.231-openEuler24.03.aarch64-rc-spc001;(请联系FAE获取)", |
| "imgId": "sdk" |
| } |
| ], |
| "supportOs": [ |
| "OpenEuler" |
| ], |
| "supportQuantify": [ |
| { |
| "createdBy": 139761718403620, |
| "creationDate": "2026-02-10 11:53:25", |
| "creationUserCN": "bazinga", |
| "lastUpdatedBy": 139761718403620, |
| "lastUpdateDate": "2026-02-10 11:53:25", |
| "lastUpdateUserCN": "bazinga", |
| "rowIdx": -1, |
| "id": "ioks29390400", |
| "name": "fp16", |
| "computingId": "il5vp5msp400", |
| "computingName": "Hi3591PV100", |
| "omOfflineModelUrl": null, |
| "omOfflineModelId": null, |
| "omOfflineModelSize": null, |
| "omOfflineModelName": null, |
| "omOfflineModel": [ |
| { |
| "id": "1727953442570241", |
| "name": "graspnet_linux_aarch64[该模型文件仅用于非商用].om", |
| "url": null, |
| "size": "427026639" |
| } |
| ], |
| "omOfflineModelLink": "", |
| "releaseTime": "2026-01-31", |
| "boardOs": null, |
| "modelLicense": "https://gitee.com/HiSpark/modelzoo/blob/master/samples/built-in/embodied_intelligence/GraspNet/LICENSE", |
| "modelPerformance": [ |
| { |
| "performanceValue": "1337.75", |
| "unit": "耗时(ms)", |
| "desc": "" |
| }, |
| { |
| "performanceValue": "0.75", |
| "unit": "性能(fps)", |
| "desc": "" |
| }, |
| { |
| "performanceValue": "2842.42", |
| "unit": "内存(MB)", |
| "desc": "" |
| } |
| ], |
| "deleted": 0 |
| } |
| ], |
| "deleted": 0 |
| } |
| ], |
| "saveType": null, |
| "deleteType": null, |
| "latest": "Y", |
| "deleted": 0, |
| "modelPhase": "released", |
| "remark": null, |
| "fileInfo": null, |
| "reviewType": null, |
| "owner": "bazinga", |
| "ownerBy": 139761718403620, |
| "optional": null, |
| "optionalList": [ |
| "0e900d99dee8461b8" |
| ], |
| "optionalBy": null, |
| "downloadNum": 21, |
| "collectNum": null, |
| "isCollect": null |
| } |
| } |
|
|