2
0
Fork 0
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:
Martin Thoma 2013-01-24 20:08:38 +01:00
parent 2c4da15048
commit b50841510e
7 changed files with 59 additions and 2 deletions

View file

@ -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}

View file

@ -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}

View 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}

View 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}

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

View file

@ -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}}}