Added commit id in report

This commit is contained in:
Claudio Maggioni 2023-11-08 22:31:16 +01:00
parent 07885943d7
commit e2d6151c34
2 changed files with 113 additions and 101 deletions

Binary file not shown.

View file

@ -34,6 +34,7 @@
\usepackage{subcaption} \usepackage{subcaption}
\usepackage{amssymb} \usepackage{amssymb}
\usepackage{amsmath} \usepackage{amsmath}
\usepackage{changepage}
\usepackage{hyperref} \usepackage{hyperref}
\title{Knowledge Management and Analysis \\ Project 01: Code Search} \title{Knowledge Management and Analysis \\ Project 01: Code Search}
@ -44,6 +45,17 @@
\maketitle \maketitle
\begin{adjustwidth}{-4cm}{-4cm}
\centering
\begin{tabular}{cc}
\toprule
Repository URL & \url{https://github.com/kamclassroom2022/project-01-multi-search-maggicl} \\
Commit ID & \texttt{b8e0a2c3c41249e45b233b55607e0b04ebe1bad0} \\ \bottomrule
\end{tabular}
\end{adjustwidth}
\vspace{1cm}
\subsection*{Section 1 - Data Extraction} \subsection*{Section 1 - Data Extraction}
The data extraction (implemented in the script \texttt{extract-data.py}) process scans through the files in the The data extraction (implemented in the script \texttt{extract-data.py}) process scans through the files in the
@ -55,14 +67,14 @@ Additionally, the data shows that a class has slightly more than 2 methods in it
\begin{table}[H] \begin{table}[H]
\centering \centering
\begin{tabular}{cc} \begin{tabular}{cc}
\hline \toprule
Type & Number \\ Type & Number \\
\hline \midrule
Python files & 2817 \\ Python files & 2817 \\
Classes & 1882 \\ Classes & 1882 \\
Functions & 4565 \\ Functions & 4565 \\
Methods & 5817 \\ Methods & 5817 \\
\hline \bottomrule
\end{tabular} \end{tabular}
\caption{Count of created classes and properties.} \caption{Count of created classes and properties.}
\label{tab:count1} \label{tab:count1}
@ -243,14 +255,14 @@ model has the lowest precision ($73.33\%$) and lowest recall ($80.00\%$).
\begin{table}[H] \begin{table}[H]
\centering \centering
\begin{tabular}{ccc} \begin{tabular}{ccc}
\hline \toprule
Engine & Avg Precision & Recall \\ Engine & Avg Precision & Recall \\
\hline \midrule
Frequencies & 93.33\% & 100.00\% \\ Frequencies & 93.33\% & 100.00\% \\
TD-IDF & 90.00\% & 90.00\% \\ TD-IDF & 90.00\% & 90.00\% \\
LSI & 90.00\% & 90.00\% \\ LSI & 90.00\% & 90.00\% \\
Doc2Vec & 73.33\% & 80.00\% \\ Doc2Vec & 73.33\% & 80.00\% \\
\hline \bottomrule
\end{tabular} \end{tabular}
\caption{Evaluation of search engines.} \caption{Evaluation of search engines.}
\label{tab:tab2} \label{tab:tab2}