Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -69,18 +69,32 @@ The relationship between input and output can be expressed as a function:
|
|
| 69 |
""")
|
| 70 |
st.latex(r"f(x_i) = y_i")
|
| 71 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 72 |
st.markdown("""
|
| 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 |
-
<u><b>NOTE:</b></u> The data given to the machine learning model should be **structured**
|
| 78 |
|
| 79 |
Machine Learning can be categorized into:
|
| 80 |
1. Supervised Learning
|
| 81 |
2. Unsupervised Learning
|
| 82 |
3. Semi-Supervised Learning
|
| 83 |
-
""")
|
|
|
|
| 84 |
|
| 85 |
# About the Author
|
| 86 |
st.markdown(
|
|
|
|
| 69 |
""")
|
| 70 |
st.latex(r"f(x_i) = y_i")
|
| 71 |
|
| 72 |
+
# st.markdown("""
|
| 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 |
+
# # <u><b>NOTE:</b></u> The data given to the machine learning model should be **structured**, if not then needs to be be converted to structured format.
|
| 78 |
+
|
| 79 |
+
# Machine Learning can be categorized into:
|
| 80 |
+
# 1. Supervised Learning
|
| 81 |
+
# 2. Unsupervised Learning
|
| 82 |
+
# 3. Semi-Supervised Learning
|
| 83 |
+
# """)
|
| 84 |
+
|
| 85 |
st.markdown("""
|
| 86 |
For machines to learn this function, they need two things:
|
| 87 |
- **Data** (data contains x and y where x are feature variables and y is class variable)
|
| 88 |
- **Algorithms** (used to capture the relationships between x and y)
|
| 89 |
|
| 90 |
+
<u><b>NOTE:</b></u> The data given to the machine learning model should be **structured**; if not, then it needs to be converted to a structured format.
|
| 91 |
|
| 92 |
Machine Learning can be categorized into:
|
| 93 |
1. Supervised Learning
|
| 94 |
2. Unsupervised Learning
|
| 95 |
3. Semi-Supervised Learning
|
| 96 |
+
""", unsafe_allow_html=True)
|
| 97 |
+
|
| 98 |
|
| 99 |
# About the Author
|
| 100 |
st.markdown(
|