Skip to content

Commit

Permalink
Added logo for darkmode.
Browse files Browse the repository at this point in the history
  • Loading branch information
benedict-96 committed Nov 23, 2023
1 parent a514b2a commit ee17db8
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions docs/src/tikz/logo_with_name_dark.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
\documentclass[tikz]{standalone}

\definecolor{morange}{RGB}{255,127,14}
\definecolor{mblue}{RGB}{31,119,180}
\definecolor{mred}{RGB}{214,39,40}
\definecolor{mpurple}{RGB}{148,103,189}
\definecolor{mgreen}{RGB}{44,160,44}

\usepackage{neuralnetwork}

% for bigger font size
\usepackage{mathptmx}

\newcommand{\symplecticlayer}[1][] { \layer[bias=true,nodeclass={symplectic neuron},#1] }
\newcommand{\autoencoderlayer}[1][] { \layer[bias=true,nodeclass={autoencoder neuron},#1] }

\newcommand{\xin}[2]{$x_#2$}
\newcommand{\xout}[2]{$\hat x_#2$}

\begin{document}

\begin{neuralnetwork}[height=8, layertitleheight=30, toprow=true]

\tikzstyle{input neuron}=[neuron, fill=morange];
\tikzstyle{hidden neuron}=[neuron, fill=mred];
\tikzstyle{output neuron}=[neuron, fill=mgreen];
\tikzstyle{symplectic neuron}=[neuron, fill=mblue];
\tikzstyle{autoencoder neuron}=[neuron, fill=mpurple];

\inputlayer[count=8, bias=false, text=\xin]%, title=Input Layer

\symplecticlayer[count=8, bias=false]
\linklayers%[title=$\psi^1_\mathrm{symp}$]

\autoencoderlayer[count=4, bias=false]
\linklayers%[title=$A_\mathrm{Stiefel}$]

\symplecticlayer[count=4, bias=false]
\linklayers%[title=$\psi^2_\mathrm{symp}$]

\hiddenlayer[count=2, bias=false]%, title=\vspace{4cm}\\{Reduced Basis}]
\linklayers%[title=$\psi^2_\mathrm{symp}$]

\symplecticlayer[count=4, bias=false]
\linklayers%[title={$\tilde{A}_\mathrm{Stiefel}$}]

\autoencoderlayer[count=4, bias=false]
\linklayers%[title=$\tilde{\psi}^1_\mathrm{symp}$]

\symplecticlayer[count=8, bias=false]
\linklayers%[title={$\tilde{A}_\mathrm{Stiefel}$}]

\outputlayer[count=8, text=\xout]%, title=Output Layer
\linklayers%[title=$\tilde{\psi}^2_\mathrm{symp}$]

\node[xshift=10cm, yshift=-10cm] (gml) {\fontsize{50}{30} \texttt{{\color{morange}G}{\color{white}eometric}{\color{mblue}M}{\color{white}achine}{\color{mred}L}{\color{white}earning.}{\color{mpurple}j}{\color{mgreen}l}}};
\end{neuralnetwork}
\end{document}

0 comments on commit ee17db8

Please sign in to comment.