📚 The CoCalc Library - books, templates and other resources
License: OTHER
\documentclass[technote,a4paper,leqno]{IEEEtran}1\pdfoutput=123\usepackage[utf8]{inputenc} % this is needed for umlauts4\usepackage[USenglish]{babel} % this is needed for umlauts5\usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf6\usepackage{amsmath,amssymb}7\usepackage[table]{xcolor}8\usepackage[absolute,overlay]{textpos}9\usepackage{pgfplots}10\pgfplotsset{compat=1.13}11\usepackage{tikz}12\usetikzlibrary{arrows.meta}13\usetikzlibrary{decorations.pathreplacing}14\usetikzlibrary{positioning}15\usetikzlibrary{decorations.text}16\usetikzlibrary{decorations.pathmorphing}17\usetikzlibrary{shapes.multipart, calc}18\usepackage{csquotes}19\usepackage[binary-units,group-separator={,}]{siunitx}20\sisetup{per-mode=fraction,21binary-units=true,22group-separator = {\,},23range-phrase=-,24detect-weight=true,25detect-family=true}26\DeclareSIUnit\pixel{px}27\DeclareSIUnit\epoch{epoch}28\DeclareSIUnit\float{float}29\DeclareSIUnit\floats{floats}30\usepackage{caption} % nicer captions3132\usepackage{url}33\usepackage{breakurl}34\usepackage[raiselinks=true,35bookmarks=true,36bookmarksopenlevel=1,37bookmarksopen=true,38bookmarksnumbered=true,39breaklinks,40hyperindex=true,41plainpages=false,42pdfpagelabels=true,43pdfborder={0 0 0.5}]{hyperref}44\def\UrlBreaks{\do\/\do-}4546\usepackage{xspace}47\newcommand*\elide{\textup{[\,\dots]}\xspace}4849\usepackage[nameinlink, noabbrev,capitalise]{cleveref}5051\title{A review of activation functions for convolutional neural networks}52\author{%53\IEEEauthorblockN{Martin Thoma}\\54\IEEEauthorblockA{E-Mail: info@martin-thoma.de} % ORCID: http://orcid.org/0000-0002-6517-169055}5657\hypersetup{58pdfauthor = {Martin Thoma},59pdfkeywords = {activation functions, review},60pdfsubject = {activation functions},61pdftitle = {A review of activation functions for convolutional neural networks},62}63\usepackage[inline]{enumitem}64\usepackage{longtable}65\usepackage{booktabs} % \toprule66\usepackage{braket} % needed for \Set67\usepackage{algorithm,algpseudocode}6869\usepackage[xindy,toc,section=section]{glossaries}7071% Make document nicer72\DeclareMathOperator*{\argmin}{arg\,min}73\DeclareMathOperator*{\sech}{sech}74\DeclareMathOperator*{\conv}{conv}75\DeclareMathOperator*{\ReLU}{ReLU}76\DeclareMathOperator*{\StwoReLU}{S2ReLU}77\DeclareMathOperator*{\logistic}{logistic}78\newcommand*\diff{\mathop{}\!\mathrm{d}}79\usepackage{tensor}8081\usepackage{parskip}82\usepackage{multirow}83\usepackage{microtype}84\loadglsentries[main]{glossary}85\makeglossaries8687% % Variables88% \newcommand{\dbTotalClasses}{369}89% \newcommand{\dbTotalInstances}{\num{168233}}90% \newcommand{\dbName}{HASY}91% \newcommand{\dbNameVersion}{HASYv2}92% \newcommand{\dbSizeMB}{34.6}93% \newcommand{\dbDownloadURL}{\url{https://doi.org/10.5281/zenodo.259444}}94% \newcommand{\dbMDfivesum}{fddf23f36e24b5236f6b3a0880c778e3}9596% Start97\begin{document}98\maketitle99\input{abstract}100\input{content}101\bibliographystyle{IEEEtranSA}102\bibliography{bibliography}103\printglossaries%104\input{appendix}105106107\end{document}108109110