Skip to content

Commit bbb945e

Browse files
committed
Updated links in README and tutorials;
1 parent 20c6faf commit bbb945e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ start with
4444
[The First Tutorial](https://apple.github.io/parameterized-transforms/tutorials/)
4545
of our
4646
[Tutorial Series](https://apple.github.io/parameterized-transforms/).
47-
* However, for a quick starter, check out [Parameterized Transforms in a Nutshell](https://pages.github.com/apple/parameterized-transforms/tutorials/999-In-a-Nutshell.md).
47+
* However, for a quick starter, check out [Parameterized Transforms in a Nutshell](https://apple.github.io/parameterized-transforms/tutorials/999-In-a-Nutshell.md).
4848

4949
---
5050

docs/source/tutorials/999-In-a-Nutshell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ augmentation_1, empty_params = tx.consume_transform(image, params)
5858
# empty_params: (), as all params are extracted and used.
5959
```
6060

61-
3. You can [write your own transforms](https://pages.github.com/apple/parameterized-transforms/tutorials/002-How-to-Write-Your-Own-Transforms.html) that adhere to the structure of parameterized transforms.
61+
3. You can [write your own transforms](https://apple.github.io/parameterized-transforms/tutorials/002-How-to-Write-Your-Own-Transforms.html) that adhere to the structure of parameterized transforms.
6262
Then, your transforms will work seamlessly with those from the package!
6363
```python
6464
import parameterized_transforms.transforms as ptx
@@ -89,4 +89,4 @@ augmentation_1, empty_params = tx.consume_transform(image, params)
8989

9090
4. You can use parameterized transforms with `torch`/`torchvision` dataset directly.
9191
However, in order to have parameters output as a single tensor of shape `[batch_size=B, num_params=P]`, we recommend wrapping your transform in `CastParamsToTensor` wrapper.
92-
More on this in [tutorial on working with torch/torchvision](https://pages.github.com/apple/parameterized-transforms/tutorials/002-How-to-Write-Your-Own-Transforms.html).
92+
More on this in [tutorial on working with torch/torchvision](https://apple.github.io/parameterized-transforms/tutorials/002-How-to-Write-Your-Own-Transforms.html).

0 commit comments

Comments
 (0)