write-math.tex 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. \subsection{Write Math}
  2. \begin{frame}{write-math.com}
  3. \begin{itemize}
  4. \item a website where users can add labeled training data
  5. \item works with desktop computers and touch devices
  6. \item symbol recognition can be done by multiple classifiers
  7. \item users can contribute formulas
  8. \item users can vote for formulas
  9. \item user who wrote the formula can accept one formula
  10. \end{itemize}
  11. \end{frame}
  12. \framedgraphic{Classify}{../images/classify.png}
  13. \framedgraphic{Workflow}{../images/workflow.png}
  14. % \framedgraphic{User page}{../images/user-page.png}
  15. % \framedgraphic{Information about recordings}{../images/view.png}
  16. % \framedgraphic{Symbol page}{../images/symbol.png}
  17. % \framedgraphic{Training}{../images/train.png}
  18. \framedgraphic{Ranking}{../images/ranking.png}
  19. \begin{frame}[fragile]{Statistics}
  20. \begin{itemize}
  21. \item 127 users with at least 5 recordings
  22. \item 1109 symbols, but only 369 used for experiments
  23. \item $\num{235831}$ recordings (e.g. $\num{3486}$ times \verb+\int+)
  24. \end{itemize}
  25. \end{frame}
  26. \begin{frame}{First classification worker}
  27. \begin{itemize}
  28. \item preprocessing: Scale to fit into unit square while keeping the aspect
  29. ratio
  30. \item applies dynamic time warping
  31. \item compares a new recording with every recording
  32. in the database
  33. \item[$\Rightarrow$] Classification time is in $\mathcal{O}(\text{recordings})$,
  34. but we rather would like $\mathcal{O}(\text{symbols})$
  35. \item the current server / workflow can only handle about 4000 recordings
  36. \item[$\Rightarrow$] Another way to classify is necessary
  37. \end{itemize}
  38. \end{frame}