Skip to content

Commit 2c2ff60

Browse files
committed
2 parents 16107cd + 0229143 commit 2c2ff60

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+5270
-70
lines changed

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build:
66
python: "3.12"
77

88
sphinx:
9-
configuration: docs/conf.py
9+
configuration: docs/source/conf.py
1010
fail_on_warning: true
1111

1212
python:

docs/index.md

Lines changed: 0 additions & 51 deletions
This file was deleted.

docs/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Sphinx-related requirements.
22
sphinx
3+
sphinx-book-theme>=1.0.1
34
myst-nb
45
myst-parser[linkify]
56
sphinx-book-theme

docs/JAX_examples_image_segmentation.ipynb renamed to docs/source/JAX_examples_image_segmentation.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@
693693
"In this section we will implement the [UNETR](https://arxiv.org/abs/2103.10504) model from scratch using Flax NNX. The reference PyTorch implementation of this model can be found on the [MONAI Library GitHub repository](https://github.com/Project-MONAI/MONAI/blob/dev/monai/networks/nets/unetr.py).\n",
694694
"\n",
695695
"The UNETR model utilizes a transformer as the encoder to learn sequence representations of the input and to capture the global multi-scale information, while also following the “U-shaped” network design like [UNet](https://arxiv.org/abs/1505.04597) model:\n",
696-
"![image.png](./_static/unetr_architecture.png)\n",
696+
"![image.png](./_static/images/unetr_architecture.png)\n",
697697
"\n",
698698
"The UNETR architecture on the image above is processing 3D inputs, but it can be easily adapted to 2D input.\n",
699699
"\n",

docs/JAX_examples_image_segmentation.md renamed to docs/source/JAX_examples_image_segmentation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ for img, mask in zip(images[:3], masks[:3]):
367367
In this section we will implement the [UNETR](https://arxiv.org/abs/2103.10504) model from scratch using Flax NNX. The reference PyTorch implementation of this model can be found on the [MONAI Library GitHub repository](https://github.com/Project-MONAI/MONAI/blob/dev/monai/networks/nets/unetr.py).
368368

369369
The UNETR model utilizes a transformer as the encoder to learn sequence representations of the input and to capture the global multi-scale information, while also following the “U-shaped” network design like [UNet](https://arxiv.org/abs/1505.04597) model:
370-
![image.png](./_static/unetr_architecture.png)
370+
![image.png](./_static/images/unetr_architecture.png)
371371

372372
The UNETR architecture on the image above is processing 3D inputs, but it can be easily adapted to 2D input.
373373

0 commit comments

Comments
 (0)