Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade mmyolo version to v0.6.0 #1

Merged
merged 44 commits into from
Oct 8, 2023
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
557f304
[Fix] Fix typos in the YOLOv8 diagram (#621)
RangeKing Mar 6, 2023
bda1050
[Feature] YOLOv5 supports using mask annotation to optimize bbox (#565)
Nioolek Mar 6, 2023
3568585
Add yolov8 deepstream config (#633)
triple-Mu Mar 6, 2023
69b43e6
[Feature] Support YOLOv5u inference (#624)
RangeKing Mar 7, 2023
421be53
[Docs] Add Multi-scale training and testing (#630)
hhaAndroid Mar 7, 2023
b4bf125
fix the browse_dataset for visualization of test and val (#641)
tang576225574 Mar 8, 2023
dab0548
optimize the convert_kd_ckpt_to_student.py file (#647)
tang576225574 Mar 9, 2023
3118eef
delete easydeploy register (#634)
triple-Mu Mar 9, 2023
cbf5a80
Adjust the order of package imports in boxam_vis_demo.py (#655)
RangeKing Mar 13, 2023
71fc567
[Docs] Add an ionogram example in MMYOLO application (#643)
VoyagerXvoyagerx Mar 13, 2023
6341f0e
Use num_base_priors to init bias instead of 3 (#658)
Nioolek Mar 14, 2023
624602c
fix installaion en doc error (#662)
zgzhengSEU Mar 17, 2023
8d67cea
fix yolox-l ckpt link (#677)
Ben-Louis Mar 20, 2023
5a96fcd
[Docs] Add training and testing tricks (#659)
hhaAndroid Mar 20, 2023
ae90f5a
add en doc warning_notes (#690)
kitecats Mar 27, 2023
ac6f7e1
FAQ translate (#693)
xin-li-67 Mar 29, 2023
77f9d1a
[Docs] Add en doc training_testing_tricks (#691)
kitecats Mar 29, 2023
bb43aa1
[Docs] Fix typos in the YOLOv7 diagram (#710)
RangeKing Apr 8, 2023
933fbb7
Fixed some errors in the documentation. (#714)
zhangrui-wolf Apr 8, 2023
e02c558
Add case_sensitive=False to get_files_list to also return images with…
kikefdezl Apr 17, 2023
1e266da
[Enhance] New easydeploy for extending new features. (#732)
triple-Mu Apr 17, 2023
927e0a4
Support setting the cache_size_limit parameter and support mmdet 3.0.…
hhaAndroid Apr 18, 2023
1aa1ecd
Support model-only inference (#733)
triple-Mu Apr 20, 2023
9f3adc4
[FEATURE] Support YOLOv6 3.0 inference (#744)
Qingrenn Apr 25, 2023
600343e
[Feature] Support YOLOv5 instance segmentation (#735)
JosonChan1998 Apr 27, 2023
5f447b2
update readme of project project (#757)
kitecats May 4, 2023
887d3dd
Update docs.txt (#766)
RangeKing May 10, 2023
e820315
Fix copypaste in yolov5-ins l/x config (#756)
JosonChan1998 May 10, 2023
6ecebdb
Support yolox-pose based on mmpose (#694)
yechenzhi May 15, 2023
37d5fcb
Update installation.md (#775)
danielhonies May 15, 2023
f08126a
Add 15_minutes_object_detection.ipynb (#632)
RangeKing May 15, 2023
65663d5
[Docs] Fixed the wrong url. (#764)
Lum1104 May 15, 2023
a3b6ae1
Fix lazy import of mmpose (#778)
hhaAndroid May 17, 2023
1e5372e
fix gardcam error using in mmdet (#779)
hhaAndroid May 17, 2023
106bec4
update deploy docs (#785)
huayuan4396 Jun 12, 2023
85958c8
[Fix] Fix ppyoloerandomcrop (#817)
Nioolek Jul 19, 2023
9aff22b
[Fix] fix path of analyze_logs.py in log_analysis.md (#831)
FeiGeChuanShu Aug 15, 2023
514a100
Fix typo (#828)
keonly Aug 15, 2023
729bdac
[Docs] Create 15 minutes instance segmentation tutorial. (#765)
Lum1104 Aug 15, 2023
fa86dd2
add changelog (#851)
hhaAndroid Aug 15, 2023
8c4d9dc
Bump version to 0.6.0
hhaAndroid Aug 15, 2023
f382d64
Merge remote-tracking branch 'upstream/main' into mmyolo-v0.6.0
guyleaf Oct 4, 2023
8e66bc8
Update scripts
guyleaf Oct 5, 2023
30d22f1
Revert "Update scripts"
guyleaf Oct 5, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Adjust the order of package imports in boxam_vis_demo.py (open-mmlab#655
)
  • Loading branch information
RangeKing authored Mar 13, 2023
commit cbf5a80a4466a5b320f6cb696c0879b8ad768025
12 changes: 6 additions & 6 deletions demo/boxam_vis_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@
from mmengine import Config, DictAction, MessageHub
from mmengine.utils import ProgressBar

from mmyolo.utils.boxam_utils import (BoxAMDetectorVisualizer,
BoxAMDetectorWrapper, DetAblationLayer,
DetBoxScoreTarget, GradCAM,
GradCAMPlusPlus, reshape_transform)
from mmyolo.utils.misc import get_file_list

try:
from pytorch_grad_cam import AblationCAM, EigenCAM
except ImportError:
raise ImportError('Please run `pip install "grad-cam"` to install '
'pytorch_grad_cam package.')

from mmyolo.utils.boxam_utils import (BoxAMDetectorVisualizer,
BoxAMDetectorWrapper, DetAblationLayer,
DetBoxScoreTarget, GradCAM,
GradCAMPlusPlus, reshape_transform)
from mmyolo.utils.misc import get_file_list

GRAD_FREE_METHOD_MAP = {
'ablationcam': AblationCAM,
'eigencam': EigenCAM,
Expand Down