Augmentation and transformations in Detectron2 #4996
Unanswered
agosdorano
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm working on a custom Faster RCNN with Detectron2 framework and I have a doubt about transformation during training and inference. I created a custom
Trainer
inheriting fromDefaultTrainer
class and I overriddenbuild_train_loader
andbuild_test_loader
. the following code represent what I did:I did equivalent with
is_train=False
forbuild_test_loader(...)
method. Now I don't know if only transformation incustom_aug are
executed or also the transformation specified into cfg file. In particular, for Faster-RCNN, I referred to these string into configuration file:So, my question is, these transformations will be executed along these into custom_aug or will be "overridden" by
custom_aug
?Beta Was this translation helpful? Give feedback.
All reactions