Skip to content

Commit 7fbf0ed

Browse files
[jupyter] update the invalid links for jupyter notebooks (#538)
1 parent d4b209b commit 7fbf0ed

7 files changed

+9
-9
lines changed

jupyter/mxnet/load_your_own_mxnet_bert.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@
461461
"Q: In what country is Normandy located?\n",
462462
"A: france\n",
463463
"\n",
464-
"For the full source code,see the [DJL repo](https://github.com/deepjavalibrary/djl/blob/master/examples/src/main/java/ai/djl/examples/inference/BertQaInference.java) and translator implementation [MXNet](https://github.com/deepjavalibrary/djl/blob/master/engines/mxnet/mxnet-model-zoo/src/main/java/ai/djl/mxnet/zoo/nlp/qa/MxBertQATranslator.java) [PyTorch](https://github.com/deepjavalibrary/djl/blob/master/engines/pytorch/pytorch-model-zoo/src/main/java/ai/djl/pytorch/zoo/nlp/qa/PtBertQATranslator.java)."
464+
"For the full source code,see the [DJL repo](https://github.com/deepjavalibrary/djl/blob/master/examples/src/main/java/ai/djl/examples/inference/nlp/BertQaInference.java) and translator implementation [MXNet](https://github.com/deepjavalibrary/djl/blob/master/engines/mxnet/mxnet-model-zoo/src/main/java/ai/djl/mxnet/zoo/nlp/qa/MxBertQATranslator.java) [PyTorch](https://github.com/deepjavalibrary/djl/blob/master/engines/pytorch/pytorch-model-zoo/src/main/java/ai/djl/pytorch/zoo/nlp/qa/PtBertQATranslator.java)."
465465
]
466466
}
467467
],

jupyter/pytorch/load_your_own_pytorch_bert.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@
417417
"Q: In what country is Normandy located?\n",
418418
"A: france\n",
419419
"\n",
420-
"For the full source code, see the [DJL repo](https://github.com/deepjavalibrary/djl/blob/master/examples/src/main/java/ai/djl/examples/inference/BertQaInference.java) and translator implementation [MXNet](https://github.com/deepjavalibrary/djl/blob/master/engines/mxnet/mxnet-model-zoo/src/main/java/ai/djl/mxnet/zoo/nlp/qa/MxBertQATranslator.java) [PyTorch](https://github.com/deepjavalibrary/djl/blob/master/engines/pytorch/pytorch-model-zoo/src/main/java/ai/djl/pytorch/zoo/nlp/qa/PtBertQATranslator.java)."
420+
"For the full source code, see the [DJL repo](https://github.com/deepjavalibrary/djl/blob/master/examples/src/main/java/ai/djl/examples/inference/nlp/BertQaInference.java) and translator implementation [MXNet](https://github.com/deepjavalibrary/djl/blob/master/engines/mxnet/mxnet-model-zoo/src/main/java/ai/djl/mxnet/zoo/nlp/qa/MxBertQATranslator.java) [PyTorch](https://github.com/deepjavalibrary/djl/blob/master/engines/pytorch/pytorch-model-zoo/src/main/java/ai/djl/pytorch/zoo/nlp/qa/PtBertQATranslator.java)."
421421
]
422422
}
423423
],

jupyter/tensorflow/pneumonia_detection.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"source": [
2424
"## Preparation\n",
2525
"\n",
26-
"This tutorial requires the installation of Java Kernel. To install the Java Kernel, see the [documentation](https://docs.djl.ai/jupyter/index.html).\n",
26+
"This tutorial requires the installation of Java Kernel. To install the Java Kernel, see the [documentation](https://docs.djl.ai/master/docs/demos/jupyter/index.html#install-ijava-kernel-for-jupyter).\n",
2727
"\n",
2828
"These are the dependencies we will use:"
2929
]

jupyter/transfer_learning_on_cifar10.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@
243243
"source": [
244244
"## What's next\n",
245245
"\n",
246-
"1. Try inference using the model you just trained. You can find an airplane image in [test resources](https://github.com/deepjavalibrary/djl/blob/master/examples/src/test/resources/airplane1.png) and follow the inference tutorials in the [Jupyter module](https://docs.djl.ai/docs/demos/jupyter).\n",
246+
"1. Try inference using the model you just trained. You can find an airplane image in [test resources](https://github.com/deepjavalibrary/djl/blob/master/examples/src/test/resources/airplane1.png) and follow the inference tutorials in the [Jupyter module](https://docs.djl.ai/master/docs/demos/jupyter/index.html).\n",
247247
"\n",
248248
"2. Follow the complete example with multi-GPU support, a validation dataset, and the fit API in the [examples module](https://github.com/deepjavalibrary/djl/tree/master/examples/docs).\n"
249249
]

jupyter/tutorial/01_create_your_first_network.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"\n",
99
"## Introduction\n",
1010
"\n",
11-
"This is the first part of our [beginner tutorial series](https://docs.djl.ai/docs/demos/jupyter/tutorial) that will take you through creating, training, and running inference on a neural network. In this part, you will learn how to use the built-in `Block` to create your first neural network - a Multilayer Perceptron.\n",
11+
"This is the first part of our [beginner tutorial series](https://docs.djl.ai/master/docs/demos/jupyter/tutorial/) that will take you through creating, training, and running inference on a neural network. In this part, you will learn how to use the built-in `Block` to create your first neural network - a Multilayer Perceptron.\n",
1212
"\n",
1313
"## Step 1: Setup development environment\n",
1414
"\n",

jupyter/tutorial/02_train_your_first_model.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"source": [
77
"# Train your first model\n",
88
"\n",
9-
"This is the second of our [beginner tutorial series](https://docs.djl.ai/docs/demos/jupyter/tutorial) that will take you through creating, training, and running inference on a neural network. In this tutorial, you will learn how to train an image classification model that can recognize handwritten digits.\n",
9+
"This is the second of our [beginner tutorial series](https://docs.djl.ai/master/docs/demos/jupyter/tutorial/) that will take you through creating, training, and running inference on a neural network. In this tutorial, you will learn how to train an image classification model that can recognize handwritten digits.\n",
1010
"\n",
1111
"## Preparation\n",
1212
"\n",

jupyter/tutorial/03_image_classification_with_your_model.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"source": [
77
"# Inference with your model\n",
88
"\n",
9-
"This is the third and final tutorial of our [beginner tutorial series](https://docs.djl.ai/docs/demos/jupyter/tutorial) that will take you through creating, training, and running inference on a neural network. In this tutorial, you will learn how to execute your image classification model for a production system.\n",
9+
"This is the third and final tutorial of our [beginner tutorial series](https://docs.djl.ai/master/docs/demos/jupyter/tutorial/) that will take you through creating, training, and running inference on a neural network. In this tutorial, you will learn how to execute your image classification model for a production system.\n",
1010
"\n",
1111
"In the [previous tutorial](02_train_your_first_model.ipynb), you successfully trained your model. Now, we will learn how to implement a `Translator` to convert between POJO and `NDArray` as well as a `Predictor` to run inference.\n",
1212
"\n",
@@ -179,9 +179,9 @@
179179
"source": [
180180
"## Summary\n",
181181
"\n",
182-
"Now, you've successfully built a model, trained it, and run inference. Congratulations on finishing the [beginner tutorial series](https://docs.djl.ai/docs/demos/jupyter/tutorial). After this, you should read our other [examples](https://github.com/deepjavalibrary/djl/tree/master/examples) and [jupyter notebooks](https://docs.djl.ai/docs/demos/jupyter) to learn more about DJL.\n",
182+
"Now, you've successfully built a model, trained it, and run inference. Congratulations on finishing the [beginner tutorial series](https://docs.djl.ai/master/docs/demos/jupyter/tutorial/). After this, you should read our other [examples](https://github.com/deepjavalibrary/djl/tree/master/examples) and [jupyter notebooks](https://docs.djl.ai/master/docs/demos/jupyter/index.html) to learn more about DJL.\n",
183183
"\n",
184-
"You can find the complete source code for this tutorial in the [examples project](https://github.com/deepjavalibrary/djl/blob/master/examples/src/main/java/ai/djl/examples/inference/ImageClassification.java)."
184+
"You can find the complete source code for this tutorial in the [examples project](https://github.com/deepjavalibrary/djl/blob/master/examples/src/main/java/ai/djl/examples/inference/cv/ImageClassification.java)."
185185
]
186186
}
187187
],

0 commit comments

Comments
 (0)