Update app.py
Browse files
app.py
CHANGED
|
@@ -48,27 +48,20 @@ st.write("Welcome to my blog on **Machine Learning (ML)**!")
|
|
| 48 |
st.markdown(generate_ml_blog())
|
| 49 |
|
| 50 |
# Display interactive elements if needed
|
| 51 |
-
st.sidebar.header("Contents")
|
| 52 |
st.sidebar.markdown("""
|
| 53 |
-
- [Introduction](#Introduction-to-Machine-Learning-ML)
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
- [
|
| 58 |
-
|
| 59 |
-
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
-
|
| 64 |
-
-
|
| 65 |
-
- [Decision Trees](#Decision-Trees)
|
| 66 |
-
- [K-Nearest Neighbors (KNN)](#K-Nearest-Neighbors-KNN)
|
| 67 |
-
- [Support Vector Machines (SVM)](#Support-Vector-Machines-SVM)
|
| 68 |
-
- [Neural Networks](#Neural-Networks)
|
| 69 |
-
""")
|
| 70 |
-
st.sidebar.markdown("""
|
| 71 |
-
- [Applications](#Applications-of-Machine-Learning)
|
| 72 |
-
- [Conclusion](#Conclusion)
|
| 73 |
""")
|
| 74 |
|
|
|
|
|
|
| 48 |
st.markdown(generate_ml_blog())
|
| 49 |
|
| 50 |
# Display interactive elements if needed
|
| 51 |
+
st.sidebar.header("π Contents")
|
| 52 |
st.sidebar.markdown("""
|
| 53 |
+
- π [Introduction](#Introduction-to-Machine-Learning-ML)
|
| 54 |
+
- π§ [Types of Machine Learning](#Types-of-Machine-Learning)
|
| 55 |
+
- π [Supervised Learning](#Supervised-Learning)
|
| 56 |
+
- π [Unsupervised Learning](#Unsupervised-Learning)
|
| 57 |
+
- πΉοΈ [Reinforcement Learning](#Reinforcement-Learning)
|
| 58 |
+
- π [Popular Algorithms](#Popular-Machine-Learning-Algorithms)
|
| 59 |
+
- π§ Linear Regression
|
| 60 |
+
- βοΈ Logistic Regression
|
| 61 |
+
- π³ Decision Trees
|
| 62 |
+
- π K-Nearest Neighbors
|
| 63 |
+
- βοΈ Support Vector Machines
|
| 64 |
+
- π§ Neural Networks
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
""")
|
| 66 |
|
| 67 |
+
|