Samuel CHAINEAU
commited on
Commit
•
ce48a3d
1
Parent(s):
5bdf3fa
QBGPT V1.0
Browse files
pages.py
CHANGED
@@ -90,22 +90,17 @@ def contacts_and_disclaimers():
|
|
90 |
|
91 |
st.title("QB-GPT - Your Football Playbook Powerhouse!")
|
92 |
|
93 |
-
qb_gpt_text_intro = """
|
94 |
-
Are you a data scientist, a machine learning enthusiast, or simply a die-hard NFL fan looking to explore the power of Transformers in the world of American football? Look no further!
|
95 |
-
"""
|
96 |
-
st.markdown(qb_gpt_text_intro)
|
97 |
-
|
98 |
with st.expander("***What is QB-GPT?***"):
|
99 |
|
100 |
qb_gpt_what = """
|
101 |
-
QuarterBack-GPT (QB-GPT) is a companion in the world of football strategy and analytics. It's an innovative application with a model relying on the remarkable capabilities of Transformers to generate football plays
|
102 |
"""
|
103 |
st.markdown(qb_gpt_what)
|
104 |
|
105 |
with st.expander("***What's inside QB-GPT***"):
|
106 |
|
107 |
qb_gpt_transf = """
|
108 |
-
At the heart of QB-GPT lies the cutting-edge Transformer model, a deep learning architecture known for its prowess in understanding sequential data.
|
109 |
|
110 |
A more detailed blogpost about the model QB-GPT can be found [here](https://medium.com/@sam.chaineau/transformers-can-generate-nfl-plays-introducing-qb-gpt-2d40f16a03eb)
|
111 |
"""
|
@@ -114,7 +109,7 @@ def contacts_and_disclaimers():
|
|
114 |
with st.expander("***QB-GPT in Action***"):
|
115 |
|
116 |
qb_gpt_act = """
|
117 |
-
With QB-GPT, you can explore a wide range of football scenarios.
|
118 |
"""
|
119 |
st.markdown(qb_gpt_act)
|
120 |
|
|
|
90 |
|
91 |
st.title("QB-GPT - Your Football Playbook Powerhouse!")
|
92 |
|
|
|
|
|
|
|
|
|
|
|
93 |
with st.expander("***What is QB-GPT?***"):
|
94 |
|
95 |
qb_gpt_what = """
|
96 |
+
QuarterBack-GPT (QB-GPT) is a companion in the world of football strategy and analytics. It's an innovative application with a model relying on the remarkable capabilities of Transformers to generate football plays in a realistic fashion.
|
97 |
"""
|
98 |
st.markdown(qb_gpt_what)
|
99 |
|
100 |
with st.expander("***What's inside QB-GPT***"):
|
101 |
|
102 |
qb_gpt_transf = """
|
103 |
+
At the heart of QB-GPT lies the cutting-edge Transformer model, a deep learning architecture known for its prowess in understanding sequential data.
|
104 |
|
105 |
A more detailed blogpost about the model QB-GPT can be found [here](https://medium.com/@sam.chaineau/transformers-can-generate-nfl-plays-introducing-qb-gpt-2d40f16a03eb)
|
106 |
"""
|
|
|
109 |
with st.expander("***QB-GPT in Action***"):
|
110 |
|
111 |
qb_gpt_act = """
|
112 |
+
With QB-GPT, you can explore a wide range of football scenarios. The eventual goal is to create a complete framework able to predict plays' results and optimize lineups, play calls etc.
|
113 |
"""
|
114 |
st.markdown(qb_gpt_act)
|
115 |
|