You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,14 +24,16 @@ This would be a **normalized three-way-tensor**.</br>
24
24
25
25
## Hyper Parameters 🔡
26
26
27
-
### What is it?
28
-
29
27
**Hyperparameters** contain the data that govern the training process itself. </br>
30
28
31
29
As an ex. if the **learning rate** is too big, our model may skip the optimal solution, if the **learning rate** is too small we may need to many iterations to get the best result, so we try to find a **learning rate** that fits for our purpose.
32
30
33
31

34
32
33
+
## What are Weights and Biases?
34
+
35
+
**Weights** and **Biases** are the **learnable parameters of your model**. As well as **neural networks**, they appear with the same names in related models such as linear regression. Most machine learning algorithms include some **learnable parameters** like this.
36
+
35
37
## 📝 Example Code with Comments 📝
36
38
```
37
39
import tensorflow as tf # deep learning library. Tensors are just multi-dimensional arrays
0 commit comments