AIWintermuteAI / aXeleRate

Keras-based framework for AI on the Edge
MIT License
177 stars 71 forks source link

Training with our dataset #12

Closed GiordanoLucio closed 4 years ago

GiordanoLucio commented 4 years ago

Hey, thank you for the work.

I've been using your framework for a while and I was wondering how should a dataset be formed to be actually good for training yolo with mbnet0.5 or 0.75 as backend. I am training a person detector. I have parsed the pascal-voc to remove all the labels that are not 'person' but using the whole dataset for the training didn't bring good result. I have also used the inria dataset, which as I can see, is the one that you have partially provided in the colab notebook and got better results.

my question is this: is there a proportion to respect, between the number of images containing the objects we want to detect and images not containing them? Thanks!

AIWintermuteAI commented 4 years ago

Thank you for kind words! While I did not make tests to study this problem, theoretically because of the way how YOLO detection works you do not need any images without the object to train good model - all the pictures can contain object and it will train well. YOLO v2 has a number of outputs for each box in the grid cell:

AIWintermuteAI commented 4 years ago

Oh and as a side note - INRIA nowadays can be considered "a toy dataset' for pedestrian detection. The number of positive samples is quite few (for modern days standards) and there are some instances where not all people present in the image are annotated - you can see it if you browse through dataset with labeling tool. Which worsens the performance of the model (prediction made on a person NOT included annotation, but present in the image considered to be false positive and will be penalized by loss function). I did want to make BetterINRIA dataset, with all people annotated and more images added from PASCAL-VOC, but sadly no time for this now.

GiordanoLucio commented 4 years ago

Thank you very much for the explanation. I also tought that no images without person were needed but as the performances didn't improve like with your dataset did, I had this doubt because I saw that you have provided some images without the person. For the dataset, I'm working on it, if I get good result maybe I can give it to you. Thank you again, I'll close the issue!