Samuel CHAINEAU commited on
Commit
ce48a3d
1 Parent(s): 5bdf3fa

QBGPT V1.0

Browse files
Files changed (1) hide show
  1. pages.py +3 -8
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 that are not only strategic but also incredibly realistic. Imagine having an AI-powered coach in your corner, designing plays that could turn the tide of any game.
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. It doesn't just create plays; it understands the game at a granular level, taking into account player positions, game situations, and historical data. It relies on the same conceptual approach behind the now famous "GPT" model of OpenAI. It's the playbook of the future, driven by the technology of tomorrow.
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. Design plays that are tailored to your team's strengths, simulate game situations, and experiment with different strategies—all at your fingertips. Whether you're a coach looking to refine your playbook or an NFL enthusiast seeking the thrill of strategic gameplay, QB-GPT has something for everyone.
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