Update app.py
Browse files
app.py
CHANGED
|
@@ -11,6 +11,10 @@ from streamlit.components.v1 import html
|
|
| 11 |
import matplotlib.colors as mpl
|
| 12 |
from PIL import Image
|
| 13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
# Sidebar for selecting an option
|
| 15 |
sidebar_option = st.sidebar.radio("Select an option",
|
| 16 |
["Introductory Tutorial", "Basic: Properties",
|
|
@@ -38,9 +42,9 @@ st.sidebar.markdown("""
|
|
| 38 |
- **HuggingFace Profile**: [Click here to access the HuggingFace Profile](https://huggingface.co/shukdevdatta123)
|
| 39 |
""")
|
| 40 |
|
| 41 |
-
st.sidebar.markdown("""
|
| 42 |
-
|
| 43 |
-
|
| 44 |
|
| 45 |
|
| 46 |
# Display content when "Select an option" is chosen
|
|
|
|
| 11 |
import matplotlib.colors as mpl
|
| 12 |
from PIL import Image
|
| 13 |
|
| 14 |
+
st.sidebar.markdown("""
|
| 15 |
+
### Courtesy: [NetworkX](https://networkx.org/documentation/stable/index.html)
|
| 16 |
+
""")
|
| 17 |
+
|
| 18 |
# Sidebar for selecting an option
|
| 19 |
sidebar_option = st.sidebar.radio("Select an option",
|
| 20 |
["Introductory Tutorial", "Basic: Properties",
|
|
|
|
| 42 |
- **HuggingFace Profile**: [Click here to access the HuggingFace Profile](https://huggingface.co/shukdevdatta123)
|
| 43 |
""")
|
| 44 |
|
| 45 |
+
# st.sidebar.markdown("""
|
| 46 |
+
# ### Courtesy: [NetworkX](https://networkx.org/documentation/stable/index.html)
|
| 47 |
+
# """)
|
| 48 |
|
| 49 |
|
| 50 |
# Display content when "Select an option" is chosen
|