gouthamvgk / SuperGlue_training

This repository contains the training code for SuperGlue. Uses COCO dataset by generating random homographies.
Other
107 stars 24 forks source link

Rare condiiton executed #20

Open Shuhul24 opened 9 months ago

Shuhul24 commented 9 months ago

When I am training the SuperGlue model with a custom dataset, following is the warning (or maybe an error, I guess) that pops up after every epoch Rare condition executed What does this error/warning indicates? Should I be worried regarding the same as I observe that my loss value is decreasing as usual (not much but still it does).

1061700625 commented 8 months ago

不影响。提示来自superpoint.py文件第230行,对于不足数量的关键点,superpoint会随机添加一些像素位置。改成这个比较易懂:

print(f"Rare condition executed [{len(k)}/{self.config['max_keypoints']}]")