\usepackage{tikz}
\usepackage{pgfplots}
\usepackage{filecontents}
\pgfplotsset{compat=newest}


\begin{tikzpicture}
		\begin{axis}[grid=both,
		colormap/hot,
		xlabel = {$\alpha$},
		ylabel = {$\beta$},
		zlabel = {$F1$},
		mesh/ordering=y varies]
		\addplot3 [surf, mesh/rows=3, mesh/cols=3, shader=interp]
		table[x=alpha, y=beta, z=f, col sep=comma] {data.csv};
		\end{axis}
\end{tikzpicture}
