You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure why SQ_st is in the hundreds range which I believe it causes PQ to be in hundreds range too. Would appreciate help if anyone could point out any possible issues. Thanks.
You've chosen to report an unexpected problem or bug. Unless you already know the root cause of it, please include details about it by filling the issue template.
The following information is missing: "Instructions To Reproduce the Issue and Full Logs";
I'm using a custom dataset (fine-tuning) for the panoptic task using R101-FPN as COCO Panoptic Segmentation baseline (Panoptic FPN).
Both training and inferencing are able to obtain good result. However, when I perform model evaluation I got the following result:
Panoptic Evaluation Results:
Evaluation metrics:
{
'PQ': np.float64(669.4392318591345),
'SQ': np.float64(785.0691309166493),
'RQ': 68.47162219667933,
'PQ_th': np.float64(51.592946379865104),
'SQ_th': np.float64(75.23326285684394),
'RQ_th': 66.68010678527925,
'PQ_st': np.float64(687.3478198440408),
'SQ_st': np.float64(805.6440836140348),
'RQ_st': 68.52355017961847
}
I'm not sure why SQ_st is in the hundreds range which I believe it causes PQ to be in hundreds range too. Would appreciate help if anyone could point out any possible issues. Thanks.
Instructions To Reproduce the Issue:
Unable to provide data to reproduce the issue.
Source code:
self._cfg.merge_from_file(self._trained_config_path)
self._predictor = DefaultPredictor(self._cfg)
self._initialize_datasets()
evaluator = COCOPanopticEvaluator(
dataset_name=eval_dataset_name,
output_dir=self._output_dir,
)
val_loader = build_detection_test_loader(self._cfg, eval_dataset_name)
results = inference_on_dataset(self._predictor.model, val_loader, evaluator)
Environment:
sys.platform linux
Python 3.12.7 (main, Oct 16 2024, 04:37:19) [Clang 18.1.8 ]
numpy 1.26.4
detectron2 0.6 @/pvc-data/workspaces/xxx/xxx/.venv/lib/python3.12/site-packages/detectron2
Compiler clang 18.1.3
CUDA compiler not available
DETECTRON2_ENV_MODULE
PyTorch 2.5.1+cu124 @/pvc-data/workspaces/xxx/xxx/.venv/lib/python3.12/site-packages/torch
PyTorch debug build False
torch._C._GLIBCXX_USE_CXX11_ABI False
GPU available No: torch.cuda.is_available() == False
Pillow 11.0.0
torchvision 0.20.1+cu124 @/pvc-data/workspaces/xxx/xxx/.venv/lib/python3.12/site-packages/torchvision
fvcore 0.1.5.post20221221
iopath 0.1.9
cv2 4.10.0
PyTorch built with:
The text was updated successfully, but these errors were encountered: