Spaces:
Running
Running
import streamlit as st | |
import logging | |
st.set_page_config(page_title='About TopShelf', layout="wide", | |
page_icon="π₯ ") | |
st.title('Welcome To Top Shelf :goal_net:', | |
help=':video_camera: + :ice_hockey_stick_and_puck: = :clipboard:') | |
st.subheader('Artificial Intelligence for Hockey Coaches and Players', | |
help='Proof of concept application') | |
overview = '''**Top Shelf** helps coaches and players analyze their gameplay, providing helpful suggestions on areas for improvement. | |
The secret behind **Top Shelf** is *Computer Vision* AI technology that recognizes various hockey related objects in videos. | |
This model can recognize players, nets, referees, rink markings and more. | |
**Top Shelf** uses this technology to analyze game play and provide insightful suggestions on areas for improvement. | |
''' | |
st.markdown(overview) | |