summaryrefslogtreecommitdiff
path: root/main.tex
blob: 1fce1552480a4a4fca666347f1cd3834233706d9 (plain) (blame)
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
\documentclass[12pt,a4paper,twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage{amsmath, amssymb, amsthm}
\usepackage{cite}
\usepackage[colorlinks=true, linkcolor=black, citecolor=black, urlcolor=black]{hyperref}
\usepackage[linesnumbered,ruled,vlined]{algorithm2e}
\usepackage[nameinlink]{cleveref}
\usepackage{xspace}
\usepackage[colorinlistoftodos]{todonotes}
\usepackage[scaled=.83]{beramono} 
\usepackage{lineno}
\usepackage{tikz-inet}
\usepackage{stmaryrd}
\usepackage{float}
\usepackage{tablefootnote}

\usetikzlibrary{calc}
\linenumbers
\crefname{algocf}{alg.}{algs.}
\Crefname{algocf}{Algorithm}{Algorithms}
\crefformat{footnote}{#2\footnotemark[#1]#3}

\input{macros}
\input{cmds}

\title{VEIN: VErification via Interaction Nets for Neural Networks}
\author{Eric Marin}
\date{\today}

\begin{document}

\maketitle

\begin{abstract}
	This thesis introduces \textbf{VEIN} (VErification via Interaction Nets), a framework for neural network
	verification with a focus on neural network equivalence. It acts as a	formally verified
	preprocessor that reduces neural networks to a normal form before they can be compared by a solver.
	To enable this reduction, \textbf{VEIN} translates neural networks into Interaction Nets, a graph rewriting
	computational model, and applies a set of graph rewriting rules to reduce the network into an
	Abstract Syntax Tree. We present the complete framework and provide in detail: the translation
	process, the graph rewriting rules and rigorous proofs of both soundness and termination for the
	reduction process.
\end{abstract}

\tableofcontents

% Introduction: Context -> Problem -> Solution -> Validation -> Outline
\input{chapters/01-introduction}

% Background
\input{chapters/02-background}

% Core
\input{chapters/03-core}

% Related Work
\input{chapters/04-related-work}

% Conclusion
\input{chapters/05-conclusion}

\bibliographystyle{plain}
\bibliography{references}

\end{document}