Skip to content

Commit

Permalink
Fix burn book links (#2303)
Browse files Browse the repository at this point in the history
  • Loading branch information
laggui authored Sep 25, 2024
1 parent a6f7a5e commit 37d8795
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ functionalities of a backend implementation to suit your personal modeling requi

This versatility is advantageous in numerous ways, such as supporting custom operations like flash
attention or manually writing your own kernel for a specific backend to enhance performance. See
[this section](https://burn.dev/book/advanced/backend-extension/index.html) in the Burn Book 🔥 for
[this section](https://burn.dev/burn-book/advanced/backend-extension/index.html) in the Burn Book 🔥 for
more details.

</details>
Expand Down Expand Up @@ -244,7 +244,7 @@ you have written in another framework like TensorFlow or PyTorch to Burn to bene
advantages our framework offers.

Our ONNX support is further described in
[this section of the Burn Book 🔥](https://burn.dev/book/import/onnx-model.html).
[this section of the Burn Book 🔥](https://burn.dev/burn-book/import/onnx-model.html).

> **Note**: This crate is in active development and currently supports a
> [limited set of ONNX operators](./crates/burn-import/SUPPORTED-ONNX-OPS.md).
Expand All @@ -259,7 +259,7 @@ Importing PyTorch Models 🚚

Support for loading of PyTorch model weights into Burn’s native model architecture, ensuring
seamless integration. See
[Burn Book 🔥 section on importing PyTorch](https://burn.dev/book/import/pytorch-model.html)
[Burn Book 🔥 section on importing PyTorch](https://burn.dev/burn-book/import/pytorch-model.html)

</details>

Expand Down Expand Up @@ -480,7 +480,7 @@ The Burn Book 🔥

To begin working effectively with Burn, it is crucial to understand its key components and
philosophy. This is why we highly recommend new users to read the first sections of
[The Burn Book 🔥](https://burn.dev/book/). It provides detailed examples and explanations covering
[The Burn Book 🔥](https://burn.dev/burn-book/). It provides detailed examples and explanations covering
every facet of the framework, including building blocks like tensors, modules, and optimizers, all
the way to advanced usage, like coding your own GPU kernels.

Expand Down Expand Up @@ -526,7 +526,7 @@ impl<B: Backend> PositionWiseFeedForward<B> {
We have a somewhat large amount of [examples](./examples) in the repository that shows how to use
the framework in different scenarios.

Following [the book](https://burn.dev/book/):
Following [the book](https://burn.dev/burn-book/):

- [Basic Workflow](./examples/guide) : Creates a custom CNN `Module` to train on the MNIST dataset
and use for inference.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ learning framework written in Rust. It converts both ONNX models to Rust source
weights to Burn state files.

For an introduction to ONNX import in Burn, see
[this section of the Burn book](https://burn.dev/book/import/onnx-model.html).
[this section of the Burn book](https://burn.dev/burn-book/import/onnx-model.html).

## Table of Contents

Expand Down
2 changes: 1 addition & 1 deletion contributor-book/src/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ provide some detailed guidance on how to contribute to the project.

We have crafted some sections for you:

- [Getting Started](./getting-started): Much like the [Burn Book](https://burn.dev/book/) which
- [Getting Started](./getting-started): Much like the [Burn Book](https://burn.dev/burn-book/) which
targets users, we'll start with the fundamentals, guiding you through tasks like setting up the
development environment, running tests, and what you should check prior to each commit.

Expand Down
2 changes: 1 addition & 1 deletion examples/guide/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Basic Workflow: From Training to Inference

This example corresponds to the [book's guide](https://burn.dev/book/basic-workflow/).
This example corresponds to the [book's guide](https://burn.dev/burn-book/basic-workflow/).

## Example Usage

Expand Down

0 comments on commit 37d8795

Please sign in to comment.