Bhupen
commited on
Commit
·
ea55009
1
Parent(s):
88eb883
Add Deep Learning intro py file
Browse files
app.py
CHANGED
@@ -81,7 +81,7 @@ def main():
|
|
81 |
- For a **Neural Network**, imagine adding layers of neurons. Each neuron applies a weighted sum, then an activation function. The model learns through backpropagation, adjusting weights to minimize the error over time.
|
82 |
""")
|
83 |
|
84 |
-
nn_image_url
|
85 |
neuron_image_url = "https://raw.githubusercontent.com/gridflowai/gridflowAI-datasets-icons/ab018053d82052aa9b7ce1b0e9a76410663af734/AI-icons-images/neuron.png"
|
86 |
|
87 |
st.image(neuron_image_url, caption="Linear regression - single neuron unit", use_column_width ='auto')
|
|
|
81 |
- For a **Neural Network**, imagine adding layers of neurons. Each neuron applies a weighted sum, then an activation function. The model learns through backpropagation, adjusting weights to minimize the error over time.
|
82 |
""")
|
83 |
|
84 |
+
nn_image_url = "https://raw.githubusercontent.com/gridflowai/gridflowAI-datasets-icons/ab018053d82052aa9b7ce1b0e9a76410663af734/AI-icons-images/NN.png"
|
85 |
neuron_image_url = "https://raw.githubusercontent.com/gridflowai/gridflowAI-datasets-icons/ab018053d82052aa9b7ce1b0e9a76410663af734/AI-icons-images/neuron.png"
|
86 |
|
87 |
st.image(neuron_image_url, caption="Linear regression - single neuron unit", use_column_width ='auto')
|