Closed Taeyoung96 closed 1 year ago
Hi, I'm really thankful for your great code! I have a question about categories_id. When referring to COCO 2017 data, the category id starts from 1.
So, When you make variable new_id in _filter_categories function, I think It should start at 1.
new_id
_filter_categories
In filter.py line 66, new_id = 1 is more appropriate.
filter.py
new_id = 1
Do you have any opinions? Thanks.
That’s a good point. Yes it probably should start at 1.
@akTwelve If you don't mind, Could I make a Pull Request on these issues?
Hi, I'm really thankful for your great code!
I have a question about categories_id.
When referring to COCO 2017 data, the category id starts from 1.
So, When you make variable
new_id
in_filter_categories
function, I think It should start at 1.In
filter.py
line 66,new_id = 1
is more appropriate.Do you have any opinions? Thanks.