-
Notifications
You must be signed in to change notification settings - Fork 274
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
Best model architecture + Backbone for accuracy ? #332
Comments
Hello @sudo-vinnie
|
@Gyx-One Thaks for the answer I tried training the network with Vgg19 as a backbone, but I get the following error when evaluating the network (This does not happen with the ResNet18): Config:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What is the best combination model architecture - backbone for accuracy?
I trained two networks
1.- Lightweight OpenPose + ResNet18
2.- OpenPose + ResNet50
After performing the evaluation here are the results:
I got better performance with resnet18 and with fewer iterations.
I added a couple of example images.
I also noticed the images used for evaluation are inconsistent. but regardless of the variation, 7-11 images is a very small sample for evaluation.
ResNet 18 ( 100 000 iterations)
Evluating on total 11 images...
Average Precision (AP) @[ IoU=0.50:0.95 | area= all | maxDets= 20 ] = 0.188
Average Precision (AP) @[ IoU=0.50 | area= all | maxDets= 20 ] = 0.587
Average Precision (AP) @[ IoU=0.75 | area= all | maxDets= 20 ] = 0.104
Average Precision (AP) @[ IoU=0.50:0.95 | area=medium | maxDets= 20 ] = 0.182
Average Precision (AP) @[ IoU=0.50:0.95 | area= large | maxDets= 20 ] = 0.281
Average Recall (AR) @[ IoU=0.50:0.95 | area= all | maxDets= 20 ] = 0.265
Average Recall (AR) @[ IoU=0.50 | area= all | maxDets= 20 ] = 0.650
Average Recall (AR) @[ IoU=0.75 | area= all | maxDets= 20 ] = 0.200
Average Recall (AR) @[ IoU=0.50:0.95 | area=medium | maxDets= 20 ] = 0.180
Average Recall (AR) @[ IoU=0.50:0.95 | area= large | maxDets= 20 ] = 0.520
ResNet 50 ( 1 000 000 iterations)
Evluating on total 7 images
Average Precision (AP) @[ IoU=0.50:0.95 | area= all | maxDets= 20 ] = 0.007
Average Precision (AP) @[ IoU=0.50 | area= all | maxDets= 20 ] = 0.059
Average Precision (AP) @[ IoU=0.75 | area= all | maxDets= 20 ] = 0.000
Average Precision (AP) @[ IoU=0.50:0.95 | area=medium | maxDets= 20 ] = 0.027
Average Precision (AP) @[ IoU=0.50:0.95 | area= large | maxDets= 20 ] = 0.033
Average Recall (AR) @[ IoU=0.50:0.95 | area= all | maxDets= 20 ] = 0.029
Average Recall (AR) @[ IoU=0.50 | area= all | maxDets= 20 ] = 0.176
Average Recall (AR) @[ IoU=0.75 | area= all | maxDets= 20 ] = 0.000
Average Recall (AR) @[ IoU=0.50:0.95 | area=medium | maxDets= 20 ] = 0.025
Average Recall (AR) @[ IoU=0.50:0.95 | area= large | maxDets= 20 ] = 0.100
The text was updated successfully, but these errors were encountered: