File size: 2,363 Bytes
eca534f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
\documentclass[12pt]{article}
\usepackage[a4paper, margin=1in]{geometry}
\usepackage{graphicx} % Required for inserting images
\usepackage{float}
\usepackage{amsmath}
\usepackage{booktabs} % For formal tables
\usepackage{caption}
\usepackage{subcaption}
\usepackage{fancyhdr} % For header and footer
\usepackage{lipsum} % For generating dummy text
\usepackage{times} % Times New Roman font
\pagestyle{fancy}
\fancyhf{}
\rhead{OpenFactCheck}
\lhead{Factuality Evaluation Report}
\rfoot{Page \thepage}
\title{Factuality Evaluation Report for {{model_name}}}
\author{OpenFactCheck}
\date{\today}
\begin{document}
\maketitle
\thispagestyle{empty} % Removes header and footer on the title page
\newpage
\setcounter{page}{1} % Start the page numbering
\section{Results}
\subsection{Snowballing Dataset}
\subsubsection{Performance Metrics}
\begin{figure}[H]
\centering
\includegraphics[width=0.55\textwidth]{snowballing_barplot.pdf}
\caption{Bar plot showing the accuracy of different models on the Snowballing Dataset.}
\end{figure}
\subsubsection{Confusion Matrix}
\begin{figure}[H]
\centering
\includegraphics[width=0.55\textwidth]{snowballing_cm.pdf}
\caption{Confusion matrix showing detailed accuracy metrics.}
\end{figure}
\newpage
\subsection{SelfAware Dataset}
\subsubsection{Performance Metrics}
\begin{figure}[H]
\centering
\includegraphics[width=0.55\textwidth]{selfaware_barplot.pdf}
\caption{Bar plot showing the metrics of different models on the SelfAware Dataset.}
\end{figure}
\subsubsection{Confusion Matrix}
\begin{figure}[H]
\centering
\includegraphics[width=0.55\textwidth]{selfaware_cm.pdf}
\caption{Confusion matrix showing detailed accuracy metrics.}
\end{figure}
\newpage
\subsection{FreshQA Dataset}
\subsubsection{Performance Metrics}
\begin{figure}[H]
\centering
\includegraphics[width=0.55\textwidth]{freshqa_piechart.pdf}
\caption{Pie chart showing the metrics of different models on the FreshQA Dataset.}
\end{figure}
\newpage
\section{Free-Text Datasets}
\subsection{Performance Metrics}
\begin{figure}[H]
\centering
\includegraphics[width=1\textwidth]{freetext_barplot.pdf}
\caption{Bar plot showing the metrics of different models on the Free-Text Datasets (Factool-QA, FELM-WK, FactcheckGPT-Bench, Factscore-Bio etc.).}
\end{figure}
\end{document} |