prezentacia ma logo fricky

This commit is contained in:
Priec
2026-05-05 23:17:46 +02:00
parent 5f7b151809
commit ee34368462
10 changed files with 1098 additions and 203 deletions

View File

@@ -17,10 +17,10 @@
% Neural Network Structure
\begin{scope}[local bounding box=network]
% Layer labels
\node[text width=2em, text centered] at (0,2) {\small Vstup};
\node[text width=2em, text centered] at (2,2) {\small Skrytá 1};
\node[text width=2em, text centered] at (4,2) {\small Skrytá 2};
\node[text width=2em, text centered] at (6,2) {\small Výstupná};
\node at (0,2) {\small Vstup};
\node at (2,2) {\small Skrytá 1};
\node at (4,2) {\small Skrytá 2};
\node at (6,2) {\small Výstupná};
% Input layer
\node[circle, draw=blue!60, fill=blue!20, minimum size=0.8cm, inner sep=0pt, text width=1.2em, align=center, font=\tiny] (I-1) at (0,1) {$V_{\text{out}}$};
@@ -43,7 +43,7 @@
% Connections
\foreach \i in {1,2,3} {
\draw[->, gray] (I-\i) -- (H1-1) node[midway, above, sloped, font=\tiny] (if \i=1 then {$w_{1,1}$} else {});
\draw[->, gray] (I-\i) -- (H1-1) node[midway, above, sloped, font=\tiny] {\ifnum\i=1 $w_{1,1}$\fi};
\draw[->, gray] (I-\i) -- (H1-2);
\draw[->, gray] (I-\i) -- (H1-3);
}