Skip to content

Commit 4fd8553

Browse files
authored
🔁 Update README
1 parent 62a1230 commit 4fd8553

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

README.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,25 @@
11
# 🐍 AI Deep Learning TensorFlow Python 🐍
22
🐍 **Deep Learning** with **TensorFlow** 🐍
33

4-
Learning **Deep Learning** with the Tutorials from Sentdex and Siraj Raval.</br>
5-
Link(Sentdex): https://pythonprogramming.net/introduction-deep-learning-python-tensorflow-keras/ </br>
6-
Link(Siraj Raval): https://www.youtube.com/watch?v=2FmcHiLCwTU
4+
Learning **AI Deep Learning** / **Machine Learning**.</br>
75

86
## What is a neural network?
97

108
A basic **neural network** consists of an **input layer**, which is just **your data, in numerical form**. After your **input layer**, you will have some number of what are called **"hidden" layers**. **A hidden layer** is just in between your input and output layers.</br> ***One hidden layer means you just have a neural network. Two or more hidden layers? you've got a deep neural network!***
119

1210
![neural network](Images/artificial-neural-network-model.png)
11+
12+
## What is a Tensor?
13+
14+
Each operation takes a **Tensor** as an Input and outputs a **Tensor**.</br>
15+
A **Tensor** is how Data is represented in **TensorFlow**.</br>
16+
A **Tensor is a multidimensional array** ex: </br>
17+
([0.245,0.618,0.723], </br>[0.245,0.618,0.723], </br>[0.245,0.618,0.723]). </br>
18+
This would be a **normalized three-way-tensor**.</br>
19+
**normalized** in **TensorFlow** means that the numbers are converted to a value between 0 and 1. The Data needs to be normalized, to be actually useable in **TensorFlow**.
20+
21+
![neural network](Images/tensor.png)
22+
23+
## Resources & Links:
24+
Deep Learning: https://pythonprogramming.net/introduction-deep-learning-python-tensorflow-keras/ </br>
25+
TensorFlow Overview: https://www.youtube.com/watch?v=2FmcHiLCwTU

0 commit comments

Comments
 (0)