python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to use detectron2's augmentation with datasets loaded using register_coco_instances
I've trained a detectron2 model on custom data I labeled and exported in the coco format, but I now want to apply augmentation and train using the augmented data. How can I do that if I'm not using a ...
Ramon Griffo
Votes: 0
Answers: 1
In detectron2 there are class IDs instead of class names
I finished training model for instance segmentation in detectron2 when I test images in training files there is no problem class names(apple,banana,orange) are written on the image but I downloaded so...
Onur Aygun
Votes: 0
Answers: 4
Difficulty with installing detectron2
I am trying to create a project using python, detectron2, opencv and tkinter. I created a virtual environment with anaconda and created part of my code with opencv, tkinter and python successefully. B...
user10693041
Votes: 0
Answers: 1
How to use gradient accumulation in detectron2
def do_train(cfg, model, resume=False):
model.train()
optimizer = my_build_optimizer(cfg, model)
scheduler = build_lr_scheduler(cfg, optimizer)
checkpointer = DetectionCheckpointer(
...
Guyot Christina
Votes: 0
Answers: 1