Questions tagged [coco]

A CoffeeScript dialect that aims to be more radical and practical.

A CoffeeScript dialect that aims to be more radical and practical.

Read More.

Online shell

66 questions
0
votes
1 answer

How Can I change the value of "maxdets" in Faster R-CNN by Pytorch?

I am implementing a faster RCNN network on pytorch. I have followed the next tutorial. https://pytorch.org/tutorials/intermediate/torchvision_tutorial.html There are images in which I have more than 100 objects to classify. However, with this…
Jose David
  • 39
  • 9
0
votes
1 answer

How can I crop coco dataset for preprocessing purpose?

I want to use coco datasets for training ssd(single shot multibox detector) network in tensorflow 2.1 The paper said that they use image cropping for robustness so, I tried to use tf.image.sample_distorted_bounding_box() However, I realized that…
0
votes
0 answers

How can I add one new class to MS COCO dataset and do transfer learning to achieve more classes?

I've annotated new image with new class according to the approach is recommended by http://www.immersivelimit.com/tutorials/create-coco-annotations-from-scratch then I combined new class annotations with coco json annotate files and create TFrecord…
0
votes
1 answer

Understanding Detection API config file

I want to use "coco_detection_metrics". I read in forums that I should add metrics_set: "coco_detection_metrics" to eval_config: eval_config: { num_examples:2000 max_evals: 10 eval_interval_secs: 5 metrics_set:…
Rahimi R
  • 47
  • 1
  • 7
0
votes
1 answer

How to return array in coco?

The following function returns an object in coco: -> a: "1" b: "2" The next will result in multiple statements and returns the result of the last one (as expected): -> "a" "b" How to return an array without using brackets? I was trying…
TN.
  • 18,874
  • 30
  • 99
  • 157
-1
votes
1 answer

How can I remove some of the objects from COCO dataset for YOLOv3

I have fallowed Train Custom Data to train my custom model. But there are some classes/objects in COCO dataset that want to include as well. Is there fast way to extract only those classes from the dataset. I'm thinking to write a script to do so…
1 2 3 4
5