Fix typos <noupdate>

This commit is contained in:
2025-01-26 10:24:20 +01:00
parent 62507994b7
commit 88245db064
4 changed files with 7 additions and 7 deletions

View File

@ -290,7 +290,7 @@
\item[Generative adversarial network (GAN)] \marginnote{Generative adversarial network (GAN)}
Given:
\begin{itemize}
\item A generator $G(z; \theta)$ that takes an input latent vector $z_i \sim p_\text{lat}(z)$ and produces an image $\hat{x}_j \sim p_\text{gen}(x)$,
\item A generator $G(z; \theta)$ that takes as input a latent vector $z_i \sim p_\text{lat}(z)$ and produces an image $\hat{x}_j \sim p_\text{gen}(x)$,
\item A discriminator $D(x; \phi)$ that determines whether $x_i$ is a real image from $p_\text{real}(x)$.
\end{itemize}
A generative adversarial network trains both $D$ and $G$ with the aim of making $p_\text{gen}$ converge to $p_\text{real}$.