Questions tagged [coco-dataset]

3 questions
2
votes
0 answers

How can I train YOLO with the COCO dataset?

I am trying to implement the original YOLO architecture for object detection, but I am using the COCO dataset. However, I am a bit confused about the image sizes of COCO. The original YOLO was trained on the VOC dataset and it is designed to take…
1
vote
1 answer

possible to combine multiple labeled objects as one object?

So I have labeled the entire skeletal muscles in detail. For example instead of just labeling shoulders I have labeled: Rear Delt Middle Delt Front Delt but now you want all of the delts to be combined as one object, shoulder. Is there anyway to…
0
votes
2 answers

Accuracy Not Going Above 30%

I am trying to make a big classification model using the coco2017 dataset. Here is my code: import tensorflow as tf from tensorflow import keras import numpy as np import matplotlib.pyplot as plt import IPython.display as display from PIL import…