Jimin Park commited on
Commit
ce3ddc6
·
1 Parent(s): 252f58e

added new structure

Browse files
Files changed (1) hide show
  1. 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
- # print("processed playstyle.\n")
129
- # role_specialization = training_features['role_specialization'].mode()[0] if 'role_specialization' in training_features else 'N/A' # Most common role
130
- # print("processed role_specialization.\n")
131
- # champion_loyalty_score = training_features['champion_loyalty_score'].mean().round(2) if 'champion_loyalty_score' in training_features else 'N/A' # Average loyalty
132
  # print("processed champion_loyalty_score.\n")
133
 
134
  # Map numeric playstyle to descriptive text
135
- # playstyle_mapping = {
136
- # 0: "Assassin/Carry",
137
- # 1: "Support/Utility",
138
- # 2: "Tank/Initiator",
139
- # 3: "Split-pusher",
140
- # 4: "Aggressive/Fighter",
141
- # 5: "Undefined"
142
- # }
143
 
144
- # role_specialization_map = {
145
- # 0: "Pure Specialist",
146
- # 1: "Strong Dual Role",
147
- # 2: "Primary Role with Backups",
148
- # 3: "Role Swapper",
149
- # 4: "True Flex",
150
- # 5: "Undefined"
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
- # <p>Playstyle: {playstyle_mapping.get(playstyle, 'N/A')}</p>
162
- # <p>Role Specialization: {role_specialization_map.get(role_specialization, 'N/A')}</p>
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