Questions tagged [adadelta]

For questions about the ADADELTA optimization algorithm used to train neural networks. ADADELTA adaptively changes the learning rate during training. It was proposed in the paper "ADADELTA: An Adaptive Learning Rate Method" (2012) by Matthew D. Zeiler.

1 questions
2
votes
2 answers

Is the choice of the optimiser relevant when doing object detection?

Suppose that we have 4 types of dogs that we want to detect (Golden Retriever, Black Labrador, Cocker Spaniel, and Pit Bull). The training data consists of png images of a data set of dogs along with their annotations. We want to train a model using…