Skip to content
This repository has been archived by the owner on Aug 25, 2024. It is now read-only.

Commit

Permalink
docs: examples: notebooks: Fix JSON from when we added link to video …
Browse files Browse the repository at this point in the history
…on setting up for ML tasks

Signed-off-by: John Andersen <[email protected]>
  • Loading branch information
pdxjohnny committed Oct 9, 2021
1 parent acd645a commit 3c03add
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/notebooks/ensemble_by_stacking.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"\n",
"In this demo, we'll be using the Red Wine Quality dataset. The dataset can be used with both regression and classification models. \n",
"\n",
"The purpose of this notebook is to build different models and use stacking, an ensemble learning technique, using the DFFML API."
"The purpose of this notebook is to build different models and use stacking, an ensemble learning technique, using the DFFML API.",
"\n",
"[![Video Explanation Thumbnail](http://img.youtube.com/vi/PCoSP-jO9Y8/0.jpg)](http://www.youtube.com/watch?v=PCoSP-jO9Y8)"
],
Expand Down
2 changes: 1 addition & 1 deletion examples/notebooks/multioutput_models.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"source": [
"# Working with Multi-Output models\n",
"\n",
"In this notebook, we'll be performing multi-output tasks with the help of DFFML. DFFML makes it so that users can use a range of different models to perform multi-output tasks with the usual worklow, but instantiating models with a list of targets/labels!"
"In this notebook, we'll be performing multi-output tasks with the help of DFFML. DFFML makes it so that users can use a range of different models to perform multi-output tasks with the usual worklow, but instantiating models with a list of targets/labels!",
"\n",
"[![Video Explanation Thumbnail](http://img.youtube.com/vi/7whKBThZDN4/0.jpg)](http://www.youtube.com/watch?v=7whKBThZDN4)"
],
Expand Down
2 changes: 1 addition & 1 deletion examples/notebooks/saving_and_loading_models.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"source": [
"# Saving and loading models\n",
"\n",
"In this notebook, we'll be using the red wine quality data set. The purpose of this notebook is to show how to save a trained model and load it again in a fresh session."
"In this notebook, we'll be using the red wine quality data set. The purpose of this notebook is to show how to save a trained model and load it again in a fresh session.",
"\n",
"[![Video Explanation Thumbnail](http://img.youtube.com/vi/ktVYFIH1K1g/0.jpg)](http://www.youtube.com/watch?v=ktVYFIH1K1g)"
],
Expand Down
2 changes: 1 addition & 1 deletion examples/notebooks/transferlearning.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"\n",
"2. **Fine-Tuning the CNN**: Unfreezing the weights of the top layers of a frozen model base and jointly training both the newly-added classifier layers and the last layers of the base model. This is done by setting the parameter `trainable = True`. This part of the tutorial will also focus on showing how to add custom layers to the model to perform fine-tuning of the CNN.\n",
"\n",
"We will be applying the first approach in this tutorial, ie. **Use CNN for Feature Extraction**. In this approach the only difference from **Fine-Tuning the CNN** is essentially setting `trainable = False` rather than `True`. Feel free to try and change the bool value as you please."
"We will be applying the first approach in this tutorial, ie. **Use CNN for Feature Extraction**. In this approach the only difference from **Fine-Tuning the CNN** is essentially setting `trainable = False` rather than `True`. Feel free to try and change the bool value as you please.",
"\n",
"[![Video Explanation Thumbnail](http://img.youtube.com/vi/xb3h_S8abZw/0.jpg)](http://www.youtube.com/watch?v=xb3h_S8abZw)"
],
Expand Down
2 changes: 1 addition & 1 deletion examples/notebooks/tuning_models.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"cell_type": "markdown",
"source": [
"# Tuning Models"
"# Tuning Models",
"\n",
"[![Video Explanation Thumbnail](http://img.youtube.com/vi/oo_SK7AHO4Y/0.jpg)](http://www.youtube.com/watch?v=oo_SK7AHO4Y)"
],
Expand Down

0 comments on commit 3c03add

Please sign in to comment.