-
Notifications
You must be signed in to change notification settings - Fork 664
Comparing changes
Open a pull request
base repository: open-mmlab/mmdeploy
base: v1.3.0
head repository: open-mmlab/mmdeploy
compare: main
Commits on Sep 28, 2023
-
export get_simcc_maximum for simcc (#2449)
* update * update for simcc csrc * fix docker ci * update simcc_label
Configuration menu - View commit details
-
Copy full SHA for 4cf0f92 - Browse repository at this point
Copy the full SHA 4cf0f92View commit details
Commits on Oct 8, 2023
-
* Update the document of building mmdeploy with ncnn backend on Windows platform * fix a bug * fix lint error * fix lint error
Configuration menu - View commit details
-
Copy full SHA for 59449cc - Browse repository at this point
Copy the full SHA 59449ccView commit details -
* add nms ops * add some file * new file * some change * Update nms_match.cpp * Update nms_match.cpp * Update __init__.py * Delete test_onnx_match.onnx * Delete tests/test_ops/test_onnx_match.onnx * Update test_nms_match_small.py * Update test_nms_match_small.py * Update nms_match.cpp remove allocate * Update nms_match.py remove some test print * Update test_nms_match_small.py * Update nms_match.cpp * Update nms_match.py * Update test_nms_match_small.py * fix the lint fix the lint * Update test_nms_match_small.py * Update test_nms_match_small.py * Update nms_match.cpp * Update test_nms_match_small.py * Update test_nms_match_small.py add input_names * Update onnxruntime.md * Update onnxruntime.md * Update test_nms_match_small.py * Update onnxruntime.md * Update onnxruntime.md * Update test_nms_match_small.py Add UT in nmsmatch * Update test_nms_match_small.py * Update test_nms_match_small.py
Configuration menu - View commit details
-
Copy full SHA for e74901f - Browse repository at this point
Copy the full SHA e74901fView commit details -
* support condinst from mmdet * remove * update * update * support batch inference * add condinst head unit testing * fix lint error * remove * fix bug in postprocess * remove * update --------- Co-authored-by: RunningLeon <mnsheng@yeah.net>
Configuration menu - View commit details
-
Copy full SHA for 4c376d9 - Browse repository at this point
Copy the full SHA 4c376d9View commit details
Commits on Oct 10, 2023
-
Configuration menu - View commit details
-
Copy full SHA for c4dc10d - Browse repository at this point
Copy the full SHA c4dc10dView commit details
Commits on Oct 17, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 1090fb6 - Browse repository at this point
Copy the full SHA 1090fb6View commit details
Commits on Oct 23, 2023
-
[Fix] fix the onnx exportation for yoloxpose in mmpose (#2466)
* fix the onnx exportation for yoloxpose * remove deprecated func * refine code * fix the rescaling process of top-down models * fix ut * add yoloxpose in regression test * fix comment * rebase & fix conflict
Configuration menu - View commit details
-
Copy full SHA for 6edd802 - Browse repository at this point
Copy the full SHA 6edd802View commit details
Commits on Oct 26, 2023
-
Roman duris/fix jetson wheel platform (#2497)
* generate_build_config.py now selects <any> wheel platform for system flag <jetson> * Revert "generate_build_config.py now selects <any> wheel platform for system flag <jetson>" This reverts commit d722bee. * generate_build_config.py now selects <any> wheel platform for system flag <jetson>
Configuration menu - View commit details
-
Copy full SHA for e31f5a6 - Browse repository at this point
Copy the full SHA e31f5a6View commit details
Commits on Nov 9, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 2882c64 - Browse repository at this point
Copy the full SHA 2882c64View commit details
Commits on Nov 23, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 8b19586 - Browse repository at this point
Copy the full SHA 8b19586View commit details
Commits on Nov 30, 2023
-
Configuration menu - View commit details
-
Copy full SHA for db73d55 - Browse repository at this point
Copy the full SHA db73d55View commit details -
Added the ability to build a project with PyTorch 2.0. (#2553)
* Added the ability to build a project with PyTorch 2.0. Namely, I added the flag -std=c++17 to extra_compile_args depending on the version of Torch. * Lost the condition for the presence of nvcc * Lost the condition for the presence of nvcc * Add parse_version * fix lint --------- Co-authored-by: Xin Chen <irexyc@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 660af62 - Browse repository at this point
Copy the full SHA 660af62View commit details
Commits on Dec 14, 2023
-
There was an error when using a model from the mmyolo repository duri…
…ng image preprocessing, provided that an array was supplied as input. If you input the path to the image, everything works fine. (#2554)
Configuration menu - View commit details
-
Copy full SHA for 6ff3c93 - Browse repository at this point
Copy the full SHA 6ff3c93View commit details -
[Feature] Support ONNX and TensorRT exportation of RTMO models (#2597)
* support ONNX&TensorRT exportation of RTMO * add configs for rtmo * replace bbox expansion factor with parameter bbox_padding * refine code * refine comment * apply model.switch_to_deploy in BaseTask.build_pytorch_model * fix lint * add rtmo into regression test * add rtmo with trt backend into regression test * add rtmo into supported model list
Configuration menu - View commit details
-
Copy full SHA for 1e3d06d - Browse repository at this point
Copy the full SHA 1e3d06dView commit details
Commits on Dec 21, 2023
-
Fix "has no attribute startswith" (#2498)
The value needs to be converted to string first.
Configuration menu - View commit details
-
Copy full SHA for 2b4abc6 - Browse repository at this point
Copy the full SHA 2b4abc6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7079ec2 - Browse repository at this point
Copy the full SHA 7079ec2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 97c1dc5 - Browse repository at this point
Copy the full SHA 97c1dc5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9ccf2f1 - Browse repository at this point
Copy the full SHA 9ccf2f1View commit details
Commits on Dec 25, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 1e79b48 - Browse repository at this point
Copy the full SHA 1e79b48View commit details -
Configuration menu - View commit details
-
Copy full SHA for bc75c9d - Browse repository at this point
Copy the full SHA bc75c9dView commit details
Commits on Sep 30, 2024
-
fix(mmdet/base_dense_head): 🐛 correct slicing issue in score softmax …
…for single-class models (#2827) The softmax function previously sliced out the background class, which caused an IndexError in single-class model export. This update removes the slicing of background class scores, fixing the issue when exporting RetinaNet with single-class configurations. - Updated `base_dense_head__predict_by_feat` to prevent IndexError when handling single-class outputs. - This change is particularly relevant for RetinaNet model exports.
chuzhdontcode authoredSep 30, 2024 Loading Loading status checks…Configuration menu - View commit details
-
Copy full SHA for 3f8604b - Browse repository at this point
Copy the full SHA 3f8604bView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v1.3.0...main