I'm new to LaTex and it seems like there's a high learning curve. I have the following table:
\begin{table}[ht]
\centering\settowidth\rotheadsize{Next concept/}
\renewcommand\cellalign{cl}
\renewcommand\arraystretch{1.25}
\caption{Title}
\begin{tabular}{|l|c|c|c|c}
\toprule\noalign{\vskip-1pt}\hline
\diagbox[height=1.25\rotheadsize]{\raisebox{3ex}{Layers}}{\raisebox{-4ex}{Neurons}} & 10 & 20 & 64 \\
\hline
2 & (0.001, 0.008, 0.001, 0.001) & (0.001, 0.008, 0.001, 0.001) & (0.001, 0.008, 0.001, 0.001) \\
4 & (0.001, 0.008, 0.001, 0.001) & (0.001, 0.008, 0.001, 0.001) & (0.001, 0.008, 0.001, 0.001) \\
8 & (0.001, 0.008, 0.001, 0.001) & (0.001, 0.008, 0.001, 0.001) & (0.001, 0.008, 0.001, 0.001) \\
12 & (0.001, 0.008, 0.001, 0.001) & (0.001, 0.008, 0.001, 0.001) & (0.001, 0.008, 0.001, 0.001) \\
\hline\bottomrule
\end{tabular}
\end{table}
It's a bit hard to see, but it continues too much to the right which is my main concern. Is there an easy fix for this? I tried playing with the height and arraystretch, but it didn't seem to work.

