как сделать символ argmax в блокноте jupyter? - PullRequest
0 голосов
/ 03 ноября 2019

Я пытаюсь воспроизвести эту формулу из лекции по машинному обучению CMU .

enter image description here

этого кода

$\hat{\theta}^{MLE} =\argmax_{\theta} \operatorname {P}(D|\theta)=\dfrac{\alpha_1}{\alpha_1 + \alpha_0}$

генерирует это

enter image description here

в блокноте Jupyter (Mathjax)

как правильно отобразить этот символ argmax вблокнот jupyter?

1 Ответ

1 голос
/ 04 ноября 2019

Использование \underset команда

<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}$$
...