consolidation
This commit is contained in:
parent
61b9504a6f
commit
52b0817175
8 changed files with 181 additions and 5 deletions
|
@ -0,0 +1,12 @@
|
|||
@book{csd,
|
||||
author = "Jean Beney",
|
||||
title = "Classification supervisée de documents : théorie et pratique",
|
||||
year = "2008",
|
||||
publisher = "Hermes Science",
|
||||
}
|
||||
@article{svm,
|
||||
author = "Ricco Rakotomalala",
|
||||
title = "SVM : Support Vector Machine",
|
||||
year = "????",
|
||||
publisher = "Université Lumière Lyon 2",
|
||||
}
|
|
@ -1,12 +1,104 @@
|
|||
\documentclass[12pt]{extarticle}
|
||||
\newcommand{\import}[1]{\input{document/#1}}
|
||||
|
||||
% imports ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
\import{packages}
|
||||
|
||||
%–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
\bibliography{document}
|
||||
|
||||
\hypersetup{colorlinks,
|
||||
citecolor=blue,
|
||||
filecolor=blue,
|
||||
linkcolor=blue,
|
||||
urlcolor=blue,
|
||||
}
|
||||
\setcounter{secnumdepth}{3}
|
||||
\setmainfont{DejaVu Sans}
|
||||
\setmonofont{DejaVu Sans Mono}
|
||||
\setlength{\parindent}{0em}
|
||||
\setlength{\parskip}{1em}
|
||||
% commands –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
\renewcommand{\baselinestretch}{1.1}
|
||||
%⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||
\newcommand{\cnam}{\begin{center}
|
||||
\includegraphics[height=6em]{../cnam.png}\end{center}}
|
||||
%⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||
\newcommand{\hr}{\rule{\textwidth}{1pt}}
|
||||
% definitions ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
\def\fulltitle{\begin{center}\textbf{
|
||||
SVM\\
|
||||
Machine à Vecteurs de Support
|
||||
}\end{center}}
|
||||
%⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||
\def\goal{%
|
||||
Mémoire probatoire présenté en vue d’obtenir\\
|
||||
UE « Information et communication pour ingénieur »\\
|
||||
Spécialité :\\
|
||||
Informatique, Réseaux, Systèmes et Multimédia
|
||||
}
|
||||
% environments –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
\newenvironment{enum}{\begin{enumerate}
|
||||
\setlength{\itemsep}{0.2em}
|
||||
\setlength{\parsep}{0em}
|
||||
\setlength{\parskip}{0em}
|
||||
}{\end{enumerate}}
|
||||
%⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||
\newenvironment{itmz}{\begin{itemize}
|
||||
\setlength{\itemsep}{0.2em}
|
||||
\setlength{\parsep}{0em}
|
||||
\setlength{\parskip}{0em}
|
||||
}{\end{itemize}}
|
||||
% processing –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
\makeglossaries
|
||||
% begin ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
\begin{document}
|
||||
%⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||
\import{glossaries}
|
||||
%⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||
\import{toc}
|
||||
%–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
\import{introduction}
|
||||
%⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||
\section{Principes}
|
||||
|
||||
\cite{csd}
|
||||
|
||||
…
|
||||
|
||||
\pagebreak
|
||||
%⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||
\section{Exemple d’application}
|
||||
|
||||
\cite{svm}
|
||||
|
||||
…
|
||||
|
||||
\pagebreak
|
||||
%⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||
\section{Avantages}
|
||||
|
||||
…
|
||||
|
||||
\pagebreak
|
||||
%⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||
\section{Inconvénients}
|
||||
|
||||
…
|
||||
|
||||
\pagebreak
|
||||
%⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||
\section{Limitations}
|
||||
|
||||
…
|
||||
|
||||
\pagebreak
|
||||
%⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||
\import{conclusion}
|
||||
%–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
\printbibliography[heading=bibintoc,title=Références]
|
||||
\pagebreak
|
||||
% appendicies ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
\appendix
|
||||
%⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||
%–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
\import{back}
|
||||
% document –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
\end{document}
|
||||
|
|
30
cnam/travaux/probatoire/document/back.tex
Normal file
30
cnam/travaux/probatoire/document/back.tex
Normal file
|
@ -0,0 +1,30 @@
|
|||
\phantomsection
|
||||
\addcontentsline{toc}{section}{Résumé}
|
||||
|
||||
\cnam
|
||||
|
||||
\begin{large}\fulltitle\end{large}
|
||||
|
||||
\textbf{\goal}
|
||||
|
||||
\textbf{Bordeaux, 2020}
|
||||
|
||||
\hr
|
||||
|
||||
\textbf{RÉSUMÉ}
|
||||
|
||||
…
|
||||
|
||||
\textbf{Mots clés : .}
|
||||
|
||||
\hr
|
||||
|
||||
\textbf{SUMMARY}
|
||||
|
||||
…
|
||||
|
||||
\textbf{Key words: .}
|
||||
|
||||
\thispagestyle{empty}
|
||||
|
||||
\pagebreak
|
5
cnam/travaux/probatoire/document/conclusion.tex
Normal file
5
cnam/travaux/probatoire/document/conclusion.tex
Normal file
|
@ -0,0 +1,5 @@
|
|||
\section{Conclusion}
|
||||
|
||||
…
|
||||
|
||||
\pagebreak
|
11
cnam/travaux/probatoire/document/glossaries.tex
Normal file
11
cnam/travaux/probatoire/document/glossaries.tex
Normal file
|
@ -0,0 +1,11 @@
|
|||
\printglossary[title=Abréviations,type=\acronymtype]
|
||||
|
||||
\newacronym{svm}{SVM}{Support Vector Machine}
|
||||
|
||||
\pagebreak
|
||||
|
||||
%\printglossary[title=Glossaire]
|
||||
|
||||
%\pagebreak
|
||||
|
||||
%\printglossaries
|
8
cnam/travaux/probatoire/document/introduction.tex
Normal file
8
cnam/travaux/probatoire/document/introduction.tex
Normal file
|
@ -0,0 +1,8 @@
|
|||
\section{Introduction}
|
||||
|
||||
La prédominance des data sets de très grande taille
|
||||
a fait émerger de nouvelles méthodes d’analyse de ces données.
|
||||
Faisant suite aux méthodes de clustering,
|
||||
les SVM permettent de classifier automatiquement les grands jeux de données.
|
||||
|
||||
\pagebreak
|
|
@ -1,13 +1,16 @@
|
|||
\usepackage[a4paper,portrait,
|
||||
bmargin=20mm,lmargin=20mm,rmargin=20mm,tmargin=20mm]{geometry}
|
||||
\usepackage{extsizes}
|
||||
\usepackage{fontspec}
|
||||
\usepackage[a4paper,portrait,
|
||||
bmargin=20mm,lmargin=20mm,rmargin=20mm,tmargin=20mm]{geometry}
|
||||
\usepackage{graphicx}
|
||||
\usepackage{hyperref}
|
||||
|
||||
\usepackage{csquotes}
|
||||
\usepackage{polyglossia}
|
||||
\setmainlanguage{french}
|
||||
|
||||
\usepackage[acronym,toc]{glossaries}
|
||||
\usepackage{tocloft}
|
||||
|
||||
\usepackage[backend=biber,sorting=anyt]{biblatex}
|
||||
\usepackage{tocbibind}
|
||||
|
|
15
cnam/travaux/probatoire/document/toc.tex
Normal file
15
cnam/travaux/probatoire/document/toc.tex
Normal file
|
@ -0,0 +1,15 @@
|
|||
\cnam
|
||||
|
||||
\begin{large}\fulltitle\end{large}
|
||||
|
||||
\renewcommand{\contentsname}{Plan}
|
||||
|
||||
\cftsetindents{section}{1em}{1.5em}
|
||||
\cftsetindents{subsection}{2.5em}{2.5em}
|
||||
\cftsetindents{subsubsection}{5em}{3.25em}
|
||||
\renewcommand{\cftsecleader}{\cftdotfill{\cftdotsep}}
|
||||
%\renewcommand{\cftsubsecleader}{\hfill}
|
||||
|
||||
\tableofcontents
|
||||
|
||||
\pagebreak
|
Loading…
Add table
Add a link
Reference in a new issue