I am trying to reproduce this formula coming from the CMU Machine Learning lecture.
this code
$\hat{\theta}^{MLE} =\argmax_{\theta} \operatorname {P}(D|\theta)=\dfrac{\alpha_1}{\alpha_1 + \alpha_0}$
generates this one
in Jupyter notebook (Mathjax)
how to render that argmax symbol properly in jupyter notebook?
Use \underset
command
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS_SVG-full" type="text/javascript"></script>
$$\hat{\theta}^{MLE} =\underset{\theta}{\operatorname{arg max}}{P}(D|\theta)=\dfrac{\alpha_1}{\alpha_1 + \alpha_0}$$