PWAI/src/main.tex

158 lines
4.6 KiB
TeX
Raw Normal View History

2024-04-29 21:54:43 +02:00
\def\ieee{0}
\if\ieee1
2024-04-10 13:59:03 +02:00
\documentclass[sigconf]{acmart}
\else
\documentclass{llncs}
\fi
2024-04-10 13:59:03 +02:00
\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{hyperref}
2024-04-26 07:07:44 +02:00
\usepackage{listings}
2024-04-10 13:59:03 +02:00
2024-04-29 21:54:43 +02:00
\usepackage{xcolor}
\usepackage{subfig}
\usepackage[inline]{enumitem}
\usepackage{color}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric, arrows}
\tikzstyle{startstop} = [rectangle, rounded corners, minimum width=3cm, minimum height=1cm,text centered, draw=black, fill=red!30]
\tikzstyle{io} = [rectangle, rounded corners,minimum width=3cm, minimum height=1cm, text centered, draw=black, fill=blue!30]
\tikzstyle{process} = [rectangle, minimum width=3cm, minimum height=1cm, text centered, draw=black, fill=orange!30]
\tikzstyle{decision} = [diamond, minimum width=3cm, minimum height=1cm, text centered, draw=black, fill=green!30]
\tikzstyle{arrow} = [thick,->,>=stealth]
2024-04-29 21:54:43 +02:00
\definecolor{codegreen}{rgb}{0,0.6,0}
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
\definecolor{codepurple}{rgb}{0.58,0,0.82}
\definecolor{backcolour}{rgb}{0.95,0.95,0.92}
\lstdefinestyle{mystyle}{
backgroundcolor=\color{backcolour},
commentstyle=\color{codegreen},
keywordstyle=\color{magenta},
numberstyle=\tiny\color{codegray},
stringstyle=\color{codepurple},
basicstyle=\ttfamily\scriptsize,
breakatwhitespace=false,
breaklines=true,
captionpos=b,
keepspaces=true,
numbers=left,
numbersep=5pt,
showspaces=false,
showstringspaces=false,
showtabs=false,
tabsize=2
}
\lstset{style=mystyle}
%\lstset{basicstyle=\ttfamily, keywordstyle=\bfseries}
\if\ieee1
2024-04-10 13:59:03 +02:00
\settopmatter{printacmref=false} % Removes citation information below abstract
\renewcommand\footnotetextcopyrightpermission[1]{} % removes footnote with conference information in first column
\pagestyle{plain} % removes running headers
\fi
2024-04-10 13:59:03 +02:00
%%
%% \BibTeX command to typeset BibTeX logo in the docs
2024-04-24 16:59:21 +02:00
\if\ieee1
2024-04-10 13:59:03 +02:00
\AtBeginDocument{%
\providecommand\BibTeX{{%
\normalfont B\kern-0.5em{\scshape i\kern-0.25em b}\kern-0.8em\TeX}}}
2024-04-12 16:49:33 +02:00
\acmConference{Minimize labeling effort of Binary classification Tasks with Active learning}{2023}{Linz}
\fi
2024-04-10 13:59:03 +02:00
%%
%% end of the preamble, start of the body of the document source.
\begin{document}
%%
%% The "title" command has an optional parameter,
%% allowing the author to define a "short title" to be used in page headers.
\title{Minimize labeling effort of binary classification tasks with active learning\\ Practical Work for AI}
2024-04-10 13:59:03 +02:00
%%
%% The "author" command and its associated commands are used to define
%% the authors and their affiliations.
%% Of note is the shared affiliation of the first two authors, and the
%% "authornote" and "authornotemark" commands
%% used to denote shared contribution to the research.
\author{Lukas Heiligenbrunner}
\if\ieee1
2024-04-10 13:59:03 +02:00
\email{k12104785@students.jku.at}
\affiliation{%
\institution{Johannes Kepler University Linz}
\city{Linz}
\state{Upperaustria}
\country{Austria}
\postcode{4020}
2024-04-10 13:59:03 +02:00
}
2024-04-29 21:54:43 +02:00
\else
\institute{Johannes Kepler University Linz}
\fi
2024-04-10 13:59:03 +02:00
%%
%% By default, the full list of authors will be used in the page
%% headers. Often, this list is too long, and will overlap
%% other information printed in the page headers. This command allows
%% the author to define a more concise list
%% of authors' names for this purpose.
% \renewcommand{\shortauthors}{Lukas Heilgenbrunner}
2024-04-10 13:59:03 +02:00
%%
%% The abstract is a short summary of the work to be presented in the
%% article.
\if\ieee0
\maketitle
\fi
2024-04-10 13:59:03 +02:00
\begin{abstract}
Active learning might result in a faster model convergence and thus less labeled samples would be required. This method might be beneficial in areas where labeling datasets is demanding and reducing computational effort is not the main objective.
\end{abstract}
%%
%% Keywords. The author(s) should pick words that accurately describe
%% the work being presented. Separate the keywords with commas.
\if\ieee1
2024-04-10 13:59:03 +02:00
\keywords{neural networks, ResNET, pseudo-labeling, active-learning}
\fi
2024-04-10 13:59:03 +02:00
%\received{20 February 2007}
%\received[revised]{12 March 2009}
%\received[accepted]{5 June 2009}
%%
%% This command processes the author and affiliation and title
%% information and builds the first part of the formatted document.
\if\ieee1
2024-04-10 13:59:03 +02:00
\maketitle
\fi
2024-04-10 19:21:26 +02:00
\input{introduction}
\input{materialandmethods}
\input{implementation}
\input{experimentalresults}
\input{conclusionandoutlook}
2024-04-10 13:59:03 +02:00
%% The next two lines define the bibliography style to be used, and
%% the bibliography file.
\bibliographystyle{ACM-Reference-Format}
\bibliography{../src/sources}
2024-04-10 13:59:03 +02:00
%%
%% If your work has an appendix, this is the place to put it.
\appendix
% appendix
\end{document}
\endinput