When I add a caption to my algorithms, it appears on the top, just as I want, however, it is always preceded by a text like "Algorithm 1:". For example, this code
\documentclass{beamer}
\usepackage[linesnumbered,boxed,ruled,vlined]{algorithm2e}
\begin{document}
\begin{frame}
\begin{center}
\begin{algorithm}[H]
\DontPrintSemicolon
\KwIn{
array $v[0, ..., n-1]$,
$n \ge 1$
}
\KwOut{sum of odd entries of $v$}
$s \gets 0$
\For{$(i \gets 0; i < n; i++)$}{
\If{$v[i] \bmod 2 = 1$}{
$s \gets s + v[i]$
}
}
\Return $s$
\caption{$\mathtt{Add}(v, n)$}
\end{algorithm}
\end{center}
\end{frame}
\end{document}
generates this
How can I change it so that the caption is just "Add(v, n)" instead of "Algorithm 1: Add(v, n)"?

