Generate the Experimental Setup section of a LaTeX research paper. Trigger when the user says "write experimental setup", "describe the experiments", "write setup section", or asks to document datasets, baselines, metrics, or hyperparameters. This section describes HOW experiments were run, not the results. Outputs to sections/experimental_setup.tex.
After methodology is drafted and before results. This section documents everything a reader needs to reproduce the experiments.
Ask the user for:
Subsection: Datasets For each dataset, one paragraph covering:
Use a table if there are 4+ datasets:
\begin{table}[t]
\caption{Dataset statistics.}
\label{tab:datasets}
\centering
\small
\begin{tabular}{lccc}
\toprule
\textbf{Dataset} & \textbf{Queries} & \textbf{Corpus} & \textbf{Task} \\
\midrule
MuSiQue & 2,417 & 24K & Multi-hop QA \\
\bottomrule
\end{tabular}
\end{table}
Subsection: Baselines List each compared method with a one-sentence description and citation. Group them logically (e.g., dense retrievers, graph-based methods, iterative methods).
Subsection: Evaluation Metrics Define each metric precisely. For example:
Subsection: Implementation Details
Write to sections/experimental_setup.tex. Git add, commit, push.