\documentclass[varwidth=598pt]{standalone} \usepackage{booktabs} % professional-quality tables \usepackage{multirow} % multi-row cells in tables \usepackage{colortbl} % color for tables (\cellcolor, \rowcolor) \usepackage[table]{xcolor} % enhanced colors for tables \usepackage{array} % more flexible column formats (often used) \usepackage{tabularx} % for tables with auto-stretch columns (if used) \usepackage{graphicx} % for images in tables or figure/table floats \usepackage{amssymb} % math symbols \usepackage{amsmath} % math environments \usepackage{soul} % highlighting (used for colored text/cells) \usepackage[normalem]{ulem} % underlining, strikethroughs \usepackage[T1]{fontenc} % font encoding \usepackage[utf8]{inputenc}% input encoding (legacy, fine for pdflatex) \usepackage{microtype} % better text appearance \usepackage{hyperref} % hyperlinks \usepackage{textcomp} % for extra symbols \usepackage{enumitem} % for compact lists (if used in table notes) \usepackage{adjustbox} \usepackage{tabu} \usepackage{pifont} % http://ctan.org/pkg/pifont \usepackage{bbding} % \XSolidBrush \usepackage{makecell} \begingroup \makeatletter \renewcommand{\fnum@table}{}% \long\def\@makecaption#1#2{% \vskip\abovecaptionskip \centering #2\par \vskip\belowcaptionskip } \makeatother \begin{document} \begin{table} \centering \begin{adjustbox}{max width=\textwidth} \begin{tabular}{c|cccc} \toprule \textbf{Method} & \textbf{GSM8K} & \textbf{StrategyQA} & \textbf{MBPP} & \textbf{HumanEval} \\ \midrule SCMoE & 66.94 & 76.29 & 48.80 & 41.46 \\ \midrule SCMoE w/ ideal strong activations & \textbf{68.92} & \textbf{76.42} & \textbf{50.60} & 41.46 \\ \bottomrule \end{tabular} \end{adjustbox} \caption{Table 2: Experimental results of different strong activations. We set the weak activation with rank-$2$ routing. For each benchmark, we select the top-$k$ routing yielding the best performance in Figure~fig:figure1 as the ideal strong activation. The specific hyperparameter settings can be found in Table~tab:a:strong.} \end{table} \end{document}