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

[Fix] Fix testing without labels features #3649

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions mmseg/visualization/local_visualizer.py
Expand Up @@ -103,7 +103,7 @@ def _draw_sem_seg(self,
sem_seg: PixelData,
classes: Optional[List],
palette: Optional[List],
with_labels: Optional[bool] = True) -> np.ndarray:
with_labels: Optional[bool] = False) -> np.ndarray:
"""Draw semantic seg of GT or prediction.

Args:
Expand Down Expand Up @@ -265,7 +265,7 @@ def add_datasample(
# TODO: Supported in mmengine's Viusalizer.
out_file: Optional[str] = None,
step: int = 0,
with_labels: Optional[bool] = True) -> None:
with_labels: Optional[bool] = False) -> None:
"""Draw datasample and save to all backends.

- If GT and prediction are plotted at the same time, they are
Expand Down