I drew the following graph with tkz-berge, but only want vertices "v" and "u" to show up, how can I do this?
I've tried with \AssignVertexLabel but I seem to lack understanding of how to use it.
\documentclass[border=5mm,tikz]{standalone}
\usepackage{tikz}
\usepackage{tkz-berge}
\begin{document}
\begin{tikzpicture}[scale=1]
\GraphInit[vstyle=Classic]
% \SetVertexNoLabel
\SetUpVertex[FillColor=black, MinSize=8pt]
\SetGraphUnit{2}
\begin{scope}[rotate=0]
\Vertices{circle}{u,b,v,d,e,f}
\end{scope}
% \AssignVertexLabel{u}{u}
% \AssignVertexLabel{v}{v}
\SetUpEdge[lw=1.5pt, color=black]
\Edges(u,b,v,d,e,f,u)
\SetUpEdge[lw=1.5pt, color=gray!70]
\Edges(v,f,d)
\Edges(d,b,e)
\end{tikzpicture}
\end{document}

