So from what I can tell by reading the docs, the default optimizer used in detectron2 is SGD with momentum. But I was wondering if there is a way to change the default optimizer to something like Adam for example.
The closest I was able to get to was by looking at cfg.SOLVER
attributes; specifically cfg.SOLVER.OPTIMIZER
. I even took a look at their source code to see if different optimizer options were available.
However, I was unable to change the optimizer type.
Any help will be greatly appreciated!