Questions tagged [coco-dataset]

4 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
0 answers

is it possible to make use of classes of coco-pretrained weights on custom dataset just training on custom dataset?

I am trying to use detcetron2 panoptic_FPN and panoptic_deeplab models for optimization on custom dataset. You might already now that coco has around 133 classes (both thing and stuff). And my custom dataset contains 7 classes ( both thing and…
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…