Bananaware

classificação qualidade

Dec 19th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.23 KB | None | 0 0
  1. tl;dr:
  2. - executado YOLO em cima da "amostra boa" e "amostra ruim"
  3. - labels = Bad/Good
  4. - abordagem simples, VGG16 5-fold cross-validation
  5. - accuracy 78.13% (3097/3964)
  6.  
  7.  
  8.  
  9. detecções YOLO
  10.  
  11. Puruna_1-Bad
  12. Detected: 433/1983 (21.84)
  13. Narinas: [1035,514,433,1,0]
  14. Tempo: 905.15
  15.  
  16. Puruna_2-Bad
  17. Detected: 678/2900 (23.38)
  18. Narinas: [1242,980,678,0,0]
  19. Tempo: 1242.00
  20.  
  21. Puruna_3-Bad
  22. Detected: 977/3773 (25.89)
  23. Narinas: [1674,1122,977,0,0]
  24. Tempo: 1763.52
  25.  
  26.  
  27. Puruna_1-Good
  28. Detected: 442/722 (61.22)
  29. Narinas: [109,171,442,0,0]
  30. Tempo: 356.50
  31.  
  32. Puruna_2-Good
  33. Detected: 618/1126 (54.88)
  34. Narinas: [141,365,618,2,0]
  35. Tempo: 531.47
  36.  
  37. Puruna_3-Good
  38. Detected: 816/1403 (58.16)
  39. Narinas: [153,434,816,0,0]
  40. Tempo: 634.65
  41.  
  42.  
  43.  
  44. 5-fold CV
  45.  
  46. Train feature extraction finished in 273.651516 seconds.
  47. Test feature extraction finished in 68.686547 seconds.
  48. precision recall f1-score support
  49.  
  50. Bad 0.82 0.63 0.71 418
  51. Good 0.67 0.85 0.75 376
  52.  
  53. accuracy 0.73 794
  54. macro avg 0.75 0.74 0.73 794
  55. weighted avg 0.75 0.73 0.73 794
  56.  
  57. Acc: 0.7342569269521411 794 583
  58. Train Feature Extraction...
  59. Train feature extraction finished in 274.474096 seconds.
  60. Test feature extraction finished in 68.600150 seconds.
  61. precision recall f1-score support
  62.  
  63. Bad 0.80 0.73 0.76 418
  64. Good 0.73 0.80 0.76 375
  65.  
  66. accuracy 0.76 793
  67. macro avg 0.76 0.76 0.76 793
  68. weighted avg 0.77 0.76 0.76 793
  69.  
  70. Acc: 0.7629255989911727 793 605
  71. Train Feature Extraction...
  72. Train feature extraction finished in 274.467754 seconds.
  73. Test feature extraction finished in 68.850336 seconds.
  74. precision recall f1-score support
  75.  
  76. Bad 0.85 0.78 0.81 418
  77. Good 0.77 0.84 0.81 375
  78.  
  79. accuracy 0.81 793
  80. macro avg 0.81 0.81 0.81 793
  81. weighted avg 0.81 0.81 0.81 793
  82.  
  83. Acc: 0.8083228247162674 793 641
  84. Train Feature Extraction...
  85. Train feature extraction finished in 274.260627 seconds.
  86. Test feature extraction finished in 68.514654 seconds.
  87. precision recall f1-score support
  88.  
  89. Bad 0.80 0.76 0.78 417
  90. Good 0.75 0.79 0.77 375
  91.  
  92. accuracy 0.77 792
  93. macro avg 0.77 0.77 0.77 792
  94. weighted avg 0.78 0.77 0.77 792
  95.  
  96. Acc: 0.773989898989899 792 613
  97. Train Feature Extraction...
  98. Train feature extraction finished in 273.932529 seconds.
  99. Test feature extraction finished in 68.439771 seconds.
  100. precision recall f1-score support
  101.  
  102. Bad 0.85 0.81 0.83 417
  103. Good 0.80 0.84 0.82 375
  104.  
  105. accuracy 0.83 792
  106. macro avg 0.83 0.83 0.83 792
  107. weighted avg 0.83 0.83 0.83 792
  108.  
  109. Acc: 0.827020202020202 792 655
  110. End: 3097.0 3964 0.7812815338042381
Advertisement
Add Comment
Please, Sign In to add comment