Spaces:
Runtime error
Runtime error
Update app.py
Browse filesAdded exploration and conclusion posts
app.py
CHANGED
|
@@ -39,7 +39,12 @@ def get_page_data(post_path: Path):
|
|
| 39 |
|
| 40 |
def main():
|
| 41 |
st.set_page_config(layout="wide")
|
| 42 |
-
posts = ['posts/welcome.md',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
page_to_show = 'posts/welcome.md'
|
| 44 |
with st.sidebar:
|
| 45 |
|
|
|
|
| 39 |
|
| 40 |
def main():
|
| 41 |
st.set_page_config(layout="wide")
|
| 42 |
+
posts = ['posts/welcome.md',
|
| 43 |
+
'posts/context.md',
|
| 44 |
+
'posts/dataset_exploration.md',
|
| 45 |
+
'posts/model_exploration.md',
|
| 46 |
+
'posts/conclusion.md'
|
| 47 |
+
]
|
| 48 |
page_to_show = 'posts/welcome.md'
|
| 49 |
with st.sidebar:
|
| 50 |
|