work-done.tex 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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 handwritten-data}{../images/view.png}
  16. \framedgraphic{Non-mathematical symbols}{../images/yinyang.png}
  17. \framedgraphic{Training}{../images/train.png}
  18. \framedgraphic{Ranking}{../images/ranking.png}
  19. \framedgraphic{Symbol page}{../images/symbol.png}
  20. \begin{frame}{Statistics}
  21. \begin{itemize}
  22. \item 40 users
  23. \item 1076 symbols
  24. \item 5519 handwritten symbols (e.g. 195 times the letter \enquote{A})
  25. \begin{itemize}
  26. \item only 264 have 4 lines
  27. \item only 36 have 5 lines
  28. \item only 16 have 6 lines
  29. \item only 19 have 7 lines or more
  30. \item none has more than 12 lines
  31. \end{itemize}
  32. \end{itemize}
  33. \end{frame}
  34. \begin{frame}{First classification worker}
  35. \begin{itemize}
  36. \item preprocessing: Scale to fit into unit square while keeping the aspect
  37. ratio
  38. \item applies dynamic time warping
  39. \item compares a new handwritten symbol with every handwritten symbol
  40. in the database
  41. \item[$\Rightarrow$] Classification time is in $\mathcal{O}(\text{handwritten symbols})$,
  42. but we rather would like $\mathcal{O}(\text{symbols})$
  43. \item the current server / workflow can only handle about 4000 handwritten
  44. symbols
  45. \item[$\Rightarrow$] Another way to classify is necessary
  46. \end{itemize}
  47. \end{frame}