Loading...
The Adam optimizer combines momentum and RMSProp. Its update rule uses $m_t = \beta_1 m_{t-1} + (1-\beta_1)g_t$ and $v_t = \beta_2 v_{t-1} + (1-\beta_2)g_t^2$. What are the default values of $\beta_1$ and $\beta_2$? | MLQuiz