From 987a24c30fddb9106abb895540a9e4cdaea56504 Mon Sep 17 00:00:00 2001 From: Gary Miguel Date: Thu, 12 Sep 2024 15:37:55 -0700 Subject: [PATCH] fix link from gan to diffusion --- examples/deep_convolutional_gan.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/deep_convolutional_gan.ipynb b/examples/deep_convolutional_gan.ipynb index e82c4df0..31eae7b8 100644 --- a/examples/deep_convolutional_gan.ipynb +++ b/examples/deep_convolutional_gan.ipynb @@ -10,7 +10,7 @@ "\n", "This example builds a Generative Adversarial Network (GAN) using convolutional layers in the discriminator and generator.\n", "\n", - "In practice GANs are now used fairly rarely, because they're quite tricky to train stably. Modern applications tend to use [score-based diffusions](../score_based_diffusion/) instead. Nonetheless, here's an example for how we might set up a GAN in Equinox.\n", + "In practice GANs are now used fairly rarely, because they're quite tricky to train stably. Modern applications tend to use [score-based diffusions](score_based_diffusion.ipynb) instead. Nonetheless, here's an example for how we might set up a GAN in Equinox.\n", "\n", "This example is an implementation based on the paper: Unsupervised Representation Learning with Deep Convolutional Generative Adversarial Networks.\n", "\n",