Spaces:
Sleeping
Sleeping
fifa19_streamlit
Browse files
app.py
CHANGED
@@ -121,6 +121,31 @@ def final_pred(num_of_players,b=[],c=[],d=[]):
|
|
121 |
def main():
|
122 |
st.title("FIFA 19 Player Recommender 🎮⚽")
|
123 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
# Sidebar inputs
|
125 |
st.sidebar.header("Search Parameters")
|
126 |
|
|
|
121 |
def main():
|
122 |
st.title("FIFA 19 Player Recommender 🎮⚽")
|
123 |
|
124 |
+
# Add business context and description
|
125 |
+
st.markdown("""
|
126 |
+
### About this App
|
127 |
+
This FIFA 19 Player Recommender helps football clubs and managers identify similar players and predict their market value.
|
128 |
+
It's particularly useful for:
|
129 |
+
- Scouting potential replacements for current players
|
130 |
+
- Finding undervalued talents in the market
|
131 |
+
- Discovering players that match your team's playing style
|
132 |
+
- Making informed decisions about player acquisitions
|
133 |
+
|
134 |
+
### How it Works
|
135 |
+
1. The app uses advanced machine learning to analyze player attributes and find similar players
|
136 |
+
2. It considers over 70 different player statistics and characteristics
|
137 |
+
3. Provides market value predictions to help with transfer budget planning
|
138 |
+
|
139 |
+
### How to Use
|
140 |
+
1. **Select Your Team** from the sidebar - this helps find players that would fit your team's style
|
141 |
+
2. **Choose Position** you're looking to fill
|
142 |
+
3. **Adjust Number of Recommendations** (1-10 players)
|
143 |
+
4. **Set Maximum Age** to focus on your preferred age range
|
144 |
+
5. Click "Get Recommendations" to see your matches!
|
145 |
+
|
146 |
+
---
|
147 |
+
""")
|
148 |
+
|
149 |
# Sidebar inputs
|
150 |
st.sidebar.header("Search Parameters")
|
151 |
|