Spaces:
Sleeping
Sleeping
Create pages/introduction.py
Browse files- pages/introduction.py +27 -0
pages/introduction.py
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
st.title("Welcome to Machine Learning Introduction")
|
| 3 |
+
st.write("Let's start with AI Concept:")
|
| 4 |
+
st.header("What is AI?")
|
| 5 |
+
st.write("In AI, we are trying to guide the machinec an **mimic/copy** Natural Intelligence and creating AI " \
|
| 6 |
+
"to perform daily tasks without involvment of Human Being.")
|
| 7 |
+
st.write("""
|
| 8 |
+
+ AI Stand for **Artificial Intelligence**, machines are trying to **mimic\copy** the Natural intelligence
|
| 9 |
+
by acheving this , we are using tools like **Machine Learning** , **Deep Lreaning** and **GenAI**.
|
| 10 |
+
|
| 11 |
+
+ Example : Artifical Satelites.
|
| 12 |
+
""")
|
| 13 |
+
st.image(r"https://cdn.prod.website-files.com/622642781cd7e96ac1f66807/673e9ee3e9b1e81476da83d8_623181dc3e86bfd57f53416b_image-24.png")
|
| 14 |
+
|
| 15 |
+
st.header("What is ML?")
|
| 16 |
+
st.write("""
|
| 17 |
+
ML Stands for Machine Learning. ML is a tool in AL that uses **"Mathematical Algorithms"** to allow machines to **"learn from the data and make decisions or preductions"** without being explicity programmed.
|
| 18 |
+
""")
|
| 19 |
+
|
| 20 |
+
st.image(r"https://media.geeksforgeeks.org/wp-content/uploads/20250122123657100043/introduction_to_machine_learning.webp")
|
| 21 |
+
|
| 22 |
+
st.header("What is DL?")
|
| 23 |
+
st.write("""
|
| 24 |
+
DL Stands For Deep Learning. DL is a subset of ML that users **"Natural Networks with many layers"** to learn from large amount of data. it is especcially usefull for **"Complex tasks lime image recognization, speech processing and Natural Language Understanding"**.
|
| 25 |
+
""")
|
| 26 |
+
|
| 27 |
+
st.image(r"https://vinodsblog.com/wp-content/uploads/2023/01/0d0e0-deep-learning-high-level-image.png")
|