109 lines
3.4 KiB
TeX
109 lines
3.4 KiB
TeX
|
|
\documentclass[aps,rmp,reprint,amsmath,amssymb,graphicx,longbibliography,twoside]{revtex4-1}
|
|
|
|
\usepackage{bm}
|
|
\usepackage{graphicx}
|
|
\usepackage{epstopdf}
|
|
\usepackage{wrapfig}
|
|
\usepackage{array}
|
|
\usepackage{listings}
|
|
\usepackage[para,online,flushleft]{threeparttablex}
|
|
\usepackage{booktabs,dcolumn}
|
|
\usepackage{color}
|
|
|
|
|
|
\usepackage{textpos}
|
|
\usepackage{booktabs}
|
|
\usepackage{multirow,bigdelim}
|
|
\usepackage{float}
|
|
\usepackage{todonotes}
|
|
|
|
% tikz decorations
|
|
\usepackage{tikz}
|
|
\usetikzlibrary{decorations.pathreplacing}
|
|
|
|
\usepackage{upgreek} %upalpha in Saxena2021 Reference
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage{hyperref}
|
|
\hypersetup{breaklinks=true,colorlinks=true,linkcolor=blue,citecolor=blue,filecolor=magenta,urlcolor=blue}
|
|
|
|
\usepackage{siunitx}
|
|
\usepackage{cleveref}
|
|
\usepackage{csquotes}
|
|
|
|
|
|
\usepackage{xcolor}
|
|
\definecolor{turq}{RGB}{64,224,208}
|
|
%\newcommand{\contrib}[1]{\textcolor{red}{#1}}
|
|
%\newcommand{\comment}[1]{\textcolor{blue}{#1}}
|
|
|
|
%\newcommand{\WN}[1]{{\color{red} #1}}
|
|
\newcommand{\norm}[1]{\left\lVert#1\right\rVert}
|
|
\newcommand{\cols}{C_\mathrm{OLS}}
|
|
\newcommand{\colr}{C_\mathrm{Ridge}}
|
|
\newcommand{\coll}{C_\mathrm{Lasso}}
|
|
\newcommand{\mse}{\mathrm{MSE}}
|
|
\newcommand{\bias}{\mathrm{Bias}}
|
|
\newcommand{\var}{\mathrm{Var}}
|
|
\newcommand{\E}{\mathbb{E}}
|
|
\newcommand{\N}{N_\mathrm{train}}
|
|
\newcommand{\Nt}{N_{\mathrm{test}}}
|
|
|
|
\makeatletter
|
|
\def\@bibdataout@aps{%
|
|
\immediate\write\@bibdataout{%
|
|
@CONTROL{%
|
|
apsrev41Control%
|
|
\longbibliography@sw{%
|
|
,author="08",editor="1",pages="1",title="0",year="1"%
|
|
}{%
|
|
,author="08",editor="1",pages="1",title="",year="1"%
|
|
}%
|
|
}%
|
|
}%
|
|
\if@filesw \immediate \write \@auxout {\string \citation {apsrev41Control}}\fi
|
|
}
|
|
\makeatother
|
|
|
|
|
|
%\usepackage[left]{lineno}
|
|
%\linenumbers
|
|
|
|
|
|
\begin{document}
|
|
%\pagenumbering{gobble}
|
|
|
|
\title{Regression Analysis and Resampling Methods}
|
|
|
|
\author{Lars Bogner}
|
|
\affiliation{\url{https://github.uio.no/larsbog/FYSSTK-Project1}}
|
|
|
|
|
|
\begin{abstract}
|
|
The basis for many data-driven methods is the optimization of numerical models to describe relations in data. With the increasing availability of large datasets and the growing complexity of models, there is an increasing need for efficient optimization techniques that can handle the computational challenges associated with big data. Furthermore, a good optimization metric can be crucial to find the best possible model to describe the data. In this paper different methods of such optimization are studied in the context of large datasets and big data with possibly noise-affected input data. To render the best possible fits a multitude of cost functions, minimization algorithms and other approaches to reduce the computation associated with the optimization process are studied and evaluated. Reducing the computational cost is also important to improve the economical and ecological footprint of training large models on big data, as the spread of datadriven methods in all areas of life is increasing rapidly.
|
|
\end{abstract}
|
|
|
|
\maketitle
|
|
|
|
\tableofcontents
|
|
|
|
|
|
\section{Introduction} \label{sec:introduction}
|
|
\input{chapters/introduction.tex}
|
|
|
|
|
|
\section{Methods} \label{sec:methods}
|
|
\input{chapters/methods.tex}
|
|
|
|
\section{Results and Discussion} \label{sec:results}
|
|
\input{chapters/results.tex}
|
|
|
|
\section{Conclusion} \label{sec:conclusion}
|
|
\input{chapters/conclusion.tex}
|
|
|
|
\section{Perspective} \label{sec:perspective}
|
|
\input{chapters/perspective.tex}
|
|
|
|
\bibliography{include/sources/references} % add references to this file
|
|
\end{document}
|