mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-19 11:38:05 +02:00
many changes
This commit is contained in:
parent
2c4da15048
commit
b50841510e
7 changed files with 59 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
\subsection{Idea}
|
\subsection{Idea}
|
||||||
\begin{frame}{The early days}
|
\begin{frame}{Basics}
|
||||||
\begin{itemize}[<+->]
|
\begin{itemize}[<+->]
|
||||||
\item Humans know what is good for them
|
\item Humans know what is good for them
|
||||||
\item Humans create Websites
|
\item Humans create Websites
|
||||||
|
@ -18,6 +18,43 @@
|
||||||
\end{itemize}
|
\end{itemize}
|
||||||
\end{frame}
|
\end{frame}
|
||||||
|
|
||||||
|
\framedgraphic{A brilliant idea}{../images/BrinPage.jpg}
|
||||||
|
|
||||||
|
\begin{frame}{Ideas of PageRank}
|
||||||
|
\begin{itemize}[<+->]
|
||||||
|
\item Decisions of humans are complicated
|
||||||
|
\item A lot of webpages get visited
|
||||||
|
\item[$\Rightarrow$] modellize clicks on links as random behaviour
|
||||||
|
\item Links are important
|
||||||
|
\item Links of page A get less important, if A has many links
|
||||||
|
\item Links of page A get more important, if many link to A
|
||||||
|
\item[$\Rightarrow$] if B has a link from A, the rank of B increases by $\frac{Rank(A)}{Links(A)}$
|
||||||
|
\end{itemize}
|
||||||
|
|
||||||
|
\pause[\thebeamerpauses]
|
||||||
|
|
||||||
|
\begin{algorithmic}
|
||||||
|
\If{A links to B}
|
||||||
|
\State $Rank(B)$ += $\frac{Rank(A)}{Links(A)}$
|
||||||
|
\EndIf
|
||||||
|
\end{algorithmic}
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
\begin{frame}{Ants}
|
||||||
|
\begin{itemize}[<+->]
|
||||||
|
\item Websites = nodes = anthill
|
||||||
|
\item Links = edges = paths
|
||||||
|
\item You place ants on each node
|
||||||
|
\item They walk over the paths
|
||||||
|
\item[] (at random, they are ants!)
|
||||||
|
\item After some time, some anthills will have more ants than
|
||||||
|
others
|
||||||
|
\item Those hills are more attractive than others
|
||||||
|
\item \# ants is probability that a random user would end on
|
||||||
|
a website
|
||||||
|
\end{itemize}
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
\begin{frame}{Mathematics}
|
\begin{frame}{Mathematics}
|
||||||
Let $x$ be a web page. Then
|
Let $x$ be a web page. Then
|
||||||
\begin{itemize}
|
\begin{itemize}
|
||||||
|
|
Binary file not shown.
|
@ -35,7 +35,8 @@
|
||||||
\input{PageRank}
|
\input{PageRank}
|
||||||
|
|
||||||
\section{End}
|
\section{End}
|
||||||
\subsection{Something...}
|
\input{wrapup}
|
||||||
|
\input{sources}
|
||||||
\framedgraphic{Thank you for your attention!}{../images/Teach-yourself-C++-in-21-days.png}
|
\framedgraphic{Thank you for your attention!}{../images/Teach-yourself-C++-in-21-days.png}
|
||||||
|
|
||||||
\end{document}
|
\end{document}
|
||||||
|
|
7
presentations/English/LaTeX/sources.tex
Normal file
7
presentations/English/LaTeX/sources.tex
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
\subsection{Image sources}
|
||||||
|
\begin{frame}{Image sources}
|
||||||
|
\begin{itemize}
|
||||||
|
\item \href{http://commons.wikimedia.org/wiki/File:Sergey_Brin.JPG}{Sergey Brin} by enlewof
|
||||||
|
\item \href{http://commons.wikimedia.org/wiki/File:Larry_Page_laughs.jpg}{Larry Page} by aweigend
|
||||||
|
\end{itemize}
|
||||||
|
\end{frame}
|
11
presentations/English/LaTeX/wrapup.tex
Normal file
11
presentations/English/LaTeX/wrapup.tex
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
\subsection{What you've learned}
|
||||||
|
\begin{frame}{What you've learned}
|
||||||
|
\begin{itemize}
|
||||||
|
\item Web catalogues
|
||||||
|
\item Webcrawler
|
||||||
|
\item Graph (nodes, eges)
|
||||||
|
\item Random walk (ants)
|
||||||
|
\item PageRank
|
||||||
|
\item Read Pseudocode
|
||||||
|
\end{itemize}
|
||||||
|
\end{frame}
|
BIN
presentations/English/images/BrinPage.jpg
Normal file
BIN
presentations/English/images/BrinPage.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 45 KiB |
|
@ -28,6 +28,7 @@
|
||||||
\algtext*{EndFunction} % Remove "end while" text
|
\algtext*{EndFunction} % Remove "end while" text
|
||||||
\algnewcommand\Global{\textbf{global }}
|
\algnewcommand\Global{\textbf{global }}
|
||||||
|
|
||||||
|
% http://tex.stackexchange.com/a/8388/5645
|
||||||
\newcommand{\alertline}{%
|
\newcommand{\alertline}{%
|
||||||
\usebeamercolor[fg]{normal text}%
|
\usebeamercolor[fg]{normal text}%
|
||||||
\only{\usebeamercolor[fg]{alerted text}}}
|
\only{\usebeamercolor[fg]{alerted text}}}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue