Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken links in cpp_frontend.rst #3245

Merged
merged 2 commits into from
Jan 23, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions advanced_source/cpp_frontend.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ the right tool for the job. Examples for such environments include:
Multiprocessing is an alternative, but not as scalable and has significant
shortcomings. C++ has no such constraints and threads are easy to use and
create. Models requiring heavy parallelization, like those used in `Deep
Neuroevolution <https://eng.uber.com/deep-neuroevolution/>`_, can benefit from
Neuroevolution <https://www.uber.com/blog/deep-neuroevolution/>`_, can benefit from
this.
- **Existing C++ Codebases**: You may be the owner of an existing C++
application doing anything from serving web pages in a backend server to
Expand Down Expand Up @@ -662,7 +662,7 @@ Defining the DCGAN Modules
We now have the necessary background and introduction to define the modules for
the machine learning task we want to solve in this post. To recap: our task is
to generate images of digits from the `MNIST dataset
<http://yann.lecun.com/exdb/mnist/>`_. We want to use a `generative adversarial
<https://huggingface.co/datasets/ylecun/mnist>`_. We want to use a `generative adversarial
network (GAN)
<https://papers.nips.cc/paper/5423-generative-adversarial-nets.pdf>`_ to solve
this task. In particular, we'll use a `DCGAN architecture
Expand Down
Loading