Bhupen commited on
Commit
c85d27d
·
1 Parent(s): d332070

Add Deep Learning intro py file

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -81,8 +81,11 @@ 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
- st.image("neuron.PNG", caption="Linear regression - single neuron unit", use_column_width ='auto')
85
- st.image("NN.PNG", caption=" Neural Network Illustration", use_column_width ='auto')
 
 
 
86
 
87
  # Expander for Perceptron Regression on California Housing Dataset
88
  with st.expander("➡️ Linear Regression on California Housing Dataset"):
 
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')
88
+ st.image(nn_image_url, caption=" Neural Network Illustration", use_column_width ='auto')
89
 
90
  # Expander for Perceptron Regression on California Housing Dataset
91
  with st.expander("➡️ Linear Regression on California Housing Dataset"):