bulubula commited on
Commit
1fc6e42
1 Parent(s): c7d2022
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -130,7 +130,7 @@ def main():
130
  st.write("#### Select a competition to view more details and rankings.")
131
 
132
  # Create a header for the table
133
- cols = st.columns([1, 3, 2, 2, 1, 2])
134
  headers = ["Index", "Competition Name", "Date", "Miner hotkey", "Days on Top"]
135
  for col, header in zip(cols, headers):
136
  col.write(header)
@@ -139,7 +139,7 @@ def main():
139
  for index, (competition, details) in enumerate(COMPETITIONS.items(), start=1):
140
  leader_info = st.session_state.get("leader_info", {}).get(competition, {})
141
 
142
- cols = st.columns([1, 3, 2, 2, 1, 2])
143
  cols[0].write(index)
144
 
145
  if cols[1].button(competition):
@@ -156,7 +156,7 @@ def main():
156
  st.write(description)
157
 
158
  st.subheader("Competition Summary")
159
- competition_summary_df = competition_summaries.get(competition_name, pd.DataFrame())
160
  if not competition_summary_df.empty:
161
  st.dataframe(competition_summary_df, height=500)
162
  else:
@@ -165,7 +165,7 @@ def main():
165
  st.subheader("Models Evaluation")
166
  models_evaluation_df = model_evaluations.get(competition_name, pd.DataFrame())
167
  if not models_evaluation_df.empty:
168
- st.dataframe(models_evaluation_df.style.apply(highlight_score_column, axis=0))
169
  else:
170
  st.warning("No models evaluation data available.")
171
  else:
 
130
  st.write("#### Select a competition to view more details and rankings.")
131
 
132
  # Create a header for the table
133
+ cols = st.columns([1, 3, 2, 2, 2, 2])
134
  headers = ["Index", "Competition Name", "Date", "Miner hotkey", "Days on Top"]
135
  for col, header in zip(cols, headers):
136
  col.write(header)
 
139
  for index, (competition, details) in enumerate(COMPETITIONS.items(), start=1):
140
  leader_info = st.session_state.get("leader_info", {}).get(competition, {})
141
 
142
+ cols = st.columns([1, 3, 2, 2, 2, 2])
143
  cols[0].write(index)
144
 
145
  if cols[1].button(competition):
 
156
  st.write(description)
157
 
158
  st.subheader("Competition Summary")
159
+ competition_summary_df = competition_summaries.get(competition_name, pd.DataFrame(), use_container_width=True)
160
  if not competition_summary_df.empty:
161
  st.dataframe(competition_summary_df, height=500)
162
  else:
 
165
  st.subheader("Models Evaluation")
166
  models_evaluation_df = model_evaluations.get(competition_name, pd.DataFrame())
167
  if not models_evaluation_df.empty:
168
+ st.dataframe(models_evaluation_df.style.apply(highlight_score_column, axis=0), use_container_width=True)
169
  else:
170
  st.warning("No models evaluation data available.")
171
  else: