Spaces:
Sleeping
Sleeping
Jimin Park
commited on
Commit
·
ce3ddc6
1
Parent(s):
252f58e
added new structure
Browse files- util/app.py +27 -23
util/app.py
CHANGED
@@ -121,34 +121,36 @@ def show_stats(player_opgg_url):
|
|
121 |
.index.tolist()
|
122 |
)
|
123 |
|
124 |
-
print("training_features: \n", training_features)
|
|
|
|
|
125 |
|
126 |
# Extract additional stats
|
127 |
playstyle = training_features['playstyle'].mode()[0] if 'playstyle' in training_features else 'N/A'
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
#
|
132 |
# print("processed champion_loyalty_score.\n")
|
133 |
|
134 |
# Map numeric playstyle to descriptive text
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
|
153 |
stats_html = f"""
|
154 |
<div style='padding: 20px; background: #f5f5f5; border-radius: 10px;'>
|
@@ -156,10 +158,12 @@ def show_stats(player_opgg_url):
|
|
156 |
<p>Wins: {wins} | Losses: {losses}</p>
|
157 |
<p>Winrate: {winrate}</p>
|
158 |
<p>Favorite Champions: {', '.join(favorite_champions)}</p>
|
|
|
|
|
159 |
</div>
|
160 |
"""
|
161 |
-
#
|
162 |
-
#
|
163 |
# <p>Champion Loyalty Score: {champion_loyalty_score}</p>
|
164 |
|
165 |
return stats_html, None
|
|
|
121 |
.index.tolist()
|
122 |
)
|
123 |
|
124 |
+
print("training_features: \n", training_features['playstyle'])
|
125 |
+
print("training_features: \n", training_features['role_specialization'])
|
126 |
+
# print("training_features: \n", training_features[champion])
|
127 |
|
128 |
# Extract additional stats
|
129 |
playstyle = training_features['playstyle'].mode()[0] if 'playstyle' in training_features else 'N/A'
|
130 |
+
print("processed playstyle.\n")
|
131 |
+
role_specialization = training_features['role_specialization'].mode()[0] if 'role_specialization' in training_features else 'N/A' # Most common role
|
132 |
+
print("processed role_specialization.\n")
|
133 |
+
#champion_loyalty_score = training_features['champion_loyalty_score'].mean().round(2) if 'champion_loyalty_score' in training_features else 'N/A' # Average loyalty
|
134 |
# print("processed champion_loyalty_score.\n")
|
135 |
|
136 |
# Map numeric playstyle to descriptive text
|
137 |
+
playstyle_mapping = {
|
138 |
+
0: "Assassin/Carry",
|
139 |
+
1: "Support/Utility",
|
140 |
+
2: "Tank/Initiator",
|
141 |
+
3: "Split-pusher",
|
142 |
+
4: "Aggressive/Fighter",
|
143 |
+
5: "Undefined"
|
144 |
+
}
|
145 |
|
146 |
+
role_specialization_map = {
|
147 |
+
0: "Pure Specialist",
|
148 |
+
1: "Strong Dual Role",
|
149 |
+
2: "Primary Role with Backups",
|
150 |
+
3: "Role Swapper",
|
151 |
+
4: "True Flex",
|
152 |
+
5: "Undefined"
|
153 |
+
}
|
154 |
|
155 |
stats_html = f"""
|
156 |
<div style='padding: 20px; background: #f5f5f5; border-radius: 10px;'>
|
|
|
158 |
<p>Wins: {wins} | Losses: {losses}</p>
|
159 |
<p>Winrate: {winrate}</p>
|
160 |
<p>Favorite Champions: {', '.join(favorite_champions)}</p>
|
161 |
+
<p>Playstyle: {playstyle_mapping.get(playstyle, 'N/A')}</p>
|
162 |
+
<p>Role Specialization: {role_specialization_map.get(role_specialization, 'N/A')}</p>
|
163 |
</div>
|
164 |
"""
|
165 |
+
#
|
166 |
+
#
|
167 |
# <p>Champion Loyalty Score: {champion_loyalty_score}</p>
|
168 |
|
169 |
return stats_html, None
|