Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -39,13 +39,20 @@ st.markdown('<h2 style="text-align: center;"><span style="color:red;">Introducti
|
|
| 39 |
st.markdown('<h3 style="text-align: left; color:red;">What is Artificial Intelligence (AI)?</h3>', unsafe_allow_html=True)
|
| 40 |
st.write("""
|
| 41 |
Artificial Intelligence (AI) refers to the simulation of human intelligence in machines that are programmed to think, learn, and make decisions like humans.
|
| 42 |
-
In simple terms,
|
| 43 |
|
| 44 |
It includes two main capabilities:
|
| 45 |
- **Learning Ability** (achieved using Machine Learning (ML) and Deep Learning (DL))
|
| 46 |
- **Generating Ability** (achieved using Generative AI)
|
| 47 |
""")
|
| 48 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
# Section: Data Science
|
| 50 |
st.markdown('<h3 style="text-align: left; color:red;">What is Data Science?</h3>', unsafe_allow_html=True)
|
| 51 |
st.write("""
|
|
@@ -56,7 +63,7 @@ It involves techniques and algorithms, including Machine Learning and Deep Learn
|
|
| 56 |
# Section: Machine Learning
|
| 57 |
st.markdown('<h3 style="text-align: left; color:red;">Machine Learning</h3>', unsafe_allow_html=True)
|
| 58 |
st.write("""
|
| 59 |
-
Machine Learning uses statistical concepts to give machines the ability to learn from data.
|
| 60 |
|
| 61 |
The relationship between input and output can be expressed as a function:
|
| 62 |
""")
|
|
@@ -64,8 +71,8 @@ st.latex(r"f(x_i) = y_i")
|
|
| 64 |
|
| 65 |
st.write("""
|
| 66 |
For machines to learn this function, they need two things:
|
| 67 |
-
- **Data**
|
| 68 |
-
- **Algorithms**
|
| 69 |
|
| 70 |
Machine Learning can be categorized into:
|
| 71 |
1. Supervised Learning
|
|
@@ -94,5 +101,5 @@ st.markdown(
|
|
| 94 |
st.markdown("<br><br>", unsafe_allow_html=True)
|
| 95 |
|
| 96 |
# Navigation button (optional if you have multi-page setup)
|
| 97 |
-
if st.button("
|
| 98 |
st.switch_page("pages/player stats.py")
|
|
|
|
| 39 |
st.markdown('<h3 style="text-align: left; color:red;">What is Artificial Intelligence (AI)?</h3>', unsafe_allow_html=True)
|
| 40 |
st.write("""
|
| 41 |
Artificial Intelligence (AI) refers to the simulation of human intelligence in machines that are programmed to think, learn, and make decisions like humans.
|
| 42 |
+
In simple terms, when machines mimic/copy natural intelligence i.e.(performing day-to-day tasks).
|
| 43 |
|
| 44 |
It includes two main capabilities:
|
| 45 |
- **Learning Ability** (achieved using Machine Learning (ML) and Deep Learning (DL))
|
| 46 |
- **Generating Ability** (achieved using Generative AI)
|
| 47 |
""")
|
| 48 |
|
| 49 |
+
# Section: Generative AI
|
| 50 |
+
st.markdown('<h3 style="text-align: left; color:red;">What is Generative AI?</h3>', unsafe_allow_html=True)
|
| 51 |
+
st.write("""
|
| 52 |
+
Generative AI is a tool which is used to mimic/copy the generating ability and provide this ability to machines. It is a type of artificial intelligence that creates new contents like text, images, music, or videos, by learning patterns from existing data.
|
| 53 |
+
""")
|
| 54 |
+
|
| 55 |
+
|
| 56 |
# Section: Data Science
|
| 57 |
st.markdown('<h3 style="text-align: left; color:red;">What is Data Science?</h3>', unsafe_allow_html=True)
|
| 58 |
st.write("""
|
|
|
|
| 63 |
# Section: Machine Learning
|
| 64 |
st.markdown('<h3 style="text-align: left; color:red;">Machine Learning</h3>', unsafe_allow_html=True)
|
| 65 |
st.write("""
|
| 66 |
+
Machine Learning uses statistical concepts to give machines the ability to learn from data.It is a tool used to mimic/copy the learning ability
|
| 67 |
|
| 68 |
The relationship between input and output can be expressed as a function:
|
| 69 |
""")
|
|
|
|
| 71 |
|
| 72 |
st.write("""
|
| 73 |
For machines to learn this function, they need two things:
|
| 74 |
+
- **Data** (data contains x and y where x are feature variables and y is class variable)
|
| 75 |
+
- **Algorithms** (used to capture the relationships between x and y)
|
| 76 |
|
| 77 |
Machine Learning can be categorized into:
|
| 78 |
1. Supervised Learning
|
|
|
|
| 101 |
st.markdown("<br><br>", unsafe_allow_html=True)
|
| 102 |
|
| 103 |
# Navigation button (optional if you have multi-page setup)
|
| 104 |
+
if st.button("Next Page"):
|
| 105 |
st.switch_page("pages/player stats.py")
|