bracken576
commited on
Commit
·
c457f29
1
Parent(s):
9a76aa0
added frontpage
Browse files- app.py +21 -0
- frontpage.md +13 -0
app.py
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
st.set_page_config(
|
4 |
+
page_title="PLB-ML",
|
5 |
+
layout="wide",
|
6 |
+
initial_sidebar_state="expanded",
|
7 |
+
)
|
8 |
+
|
9 |
+
st.markdown(
|
10 |
+
"""
|
11 |
+
<div style="text-align: center;">
|
12 |
+
<h1>Pioneer League Baseball</h1>
|
13 |
+
</div>
|
14 |
+
""",
|
15 |
+
unsafe_allow_html=True,
|
16 |
+
)
|
17 |
+
|
18 |
+
with open("frontpage.md", "r") as file:
|
19 |
+
md_content = file.read()
|
20 |
+
|
21 |
+
st.markdown(md_content, unsafe_allow_html=True)
|
frontpage.md
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
## What we are doing
|
2 |
+
|
3 |
+
##### We are creating an area in which we can display the Data Science Society at _Brigham Young University - Idaho_ contributions to projects given by the Pioneer Baseball League.
|
4 |
+
|
5 |
+
**Projects**
|
6 |
+
* Pitch Sequence Classification (Link to be added in the future)
|
7 |
+
* Other projects to be added in the future
|
8 |
+
|
9 |
+
**Spaces**
|
10 |
+
* Machine Learning
|
11 |
+
* Data Analysis in Marketing and Sales
|
12 |
+
|
13 |
+
##### Through this we hope to gain a valuable relationship with the Pioneer Baseball League that will both benefit students at BYUI and the League.
|