Skip to content

Commit

Permalink
Do not use " in keypoints
Browse files Browse the repository at this point in the history
  • Loading branch information
svenvanderburg committed Feb 18, 2024
1 parent bf13714 commit 1ea9ab6
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions episodes/1-introduction.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -461,13 +461,13 @@ You should get a version number reported. At the time of writing 1.2.2 is the la

:::::::::::::::::::::::::::::::::::::: keypoints

- "Machine learning is the process where computers learn to recognise patterns of data."
- "Artificial neural networks are a machine learning technique based on a model inspired by groups of neurons in the brain."
- "Artificial neural networks can be trained on example data."
- "Deep Learning is a machine learning technique based on using many artificial neurons arranged in layers."
- "Neural networks learn by minimizing a loss function."
- "Deep Learning is well suited to classification and prediction problems such as image recognition."
- "To use Deep Learning effectively we need to go through a workflow of: defining the problem, identifying inputs and outputs, preparing data, choosing the type of network, choosing a loss function, training the model, refine the model, measuring performance before we can classify data."
- "Keras is a Deep Learning library that is easier to use than many of the alternatives such as TensorFlow and PyTorch."
- Machine learning is the process where computers learn to recognise patterns of data.
- Artificial neural networks are a machine learning technique based on a model inspired by groups of neurons in the brain.
- Artificial neural networks can be trained on example data.
- Deep Learning is a machine learning technique based on using many artificial neurons arranged in layers.
- Neural networks learn by minimizing a loss function.
- Deep Learning is well suited to classification and prediction problems such as image recognition.
- To use Deep Learning effectively we need to go through a workflow of: defining the problem, identifying inputs and outputs, preparing data, choosing the type of network, choosing a loss function, training the model, refine the model, measuring performance before we can classify data.
- Keras is a Deep Learning library that is easier to use than many of the alternatives such as TensorFlow and PyTorch.

::::::::::::::::::::::::::::::::::::::::::::::::
4 changes: 2 additions & 2 deletions episodes/3-monitor-the-model.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -990,6 +990,6 @@ This will turn the data into time series data which in turn might also make it w


::: keypoints
- "Separate training, validation, and test sets allows monitoring and evaluating your model."
- "Batchnormalization scales the data as part of the model."
- Separate training, validation, and test sets allows monitoring and evaluating your model.
- Batchnormalization scales the data as part of the model.
:::
6 changes: 3 additions & 3 deletions episodes/4-advanced-layer-types.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,7 @@ model.save('cnn_model')
```

::: keypoints
- "Convolutional layers make efficient reuse of model parameters."
- "Pooling layers decrease the resolution of your input"
- "Dropout is a way to prevent overfitting"
- Convolutional layers make efficient reuse of model parameters.
- Pooling layers decrease the resolution of your input
- Dropout is a way to prevent overfitting
:::
6 changes: 3 additions & 3 deletions episodes/5-outlook.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ Tensorflow/Keras will automatically detect and use a GPU if it is available on y
A simple and quick way to get access to a GPU is to use [Google Colab](https://colab.google/)

::: keypoints
- "Although the data preparation and model architectures are somewhat more complex,
what we have learned in this course can directly be applied to real-world problems"
- "Use what you have learned in this course as a basis for your own learning trajectory in the world of deep learning"
- Although the data preparation and model architectures are somewhat more complex,
what we have learned in this course can directly be applied to real-world problems
- Use what you have learned in this course as a basis for your own learning trajectory in the world of deep learning
:::

0 comments on commit 1ea9ab6

Please sign in to comment.