petewarden/tensorflow_makefile

The mathematical formulas in word2vec tutorial are encoded in latex and can't be correctly displayed in MD viewers

Opened this issue · 0 comments

In the word2vec tutorial, there are pieces of text like:
$$ \begin{align} P(w_t | h) &= \text{softmax}(\text{score}(w_t, h)) \ &= \frac{\exp { \text{score}(w_t, h) } } {\sum_\text{Word w' in Vocab} \exp { \text{score}(w', h) } }. \end{align} $$
that are written in latex, but not converted into something that can be correctly visible in a Markdown document.

In this stackoverflow question they describe few ways to solve this problem.