Update app.py
Browse files
app.py
CHANGED
|
@@ -775,7 +775,7 @@ with st.sidebar:
|
|
| 775 |
|
| 776 |
spaces_data.append([f"{rank_display}{owner}", count])
|
| 777 |
|
| 778 |
-
ranking_data_spaces = pd.DataFrame(spaces_data, columns=["Contributor", "Spaces Count"])
|
| 779 |
ranking_data_spaces.index = ranking_data_spaces.index + 1 # Start index from 1 for ranking
|
| 780 |
|
| 781 |
st.dataframe(
|
|
@@ -806,7 +806,7 @@ with st.sidebar:
|
|
| 806 |
|
| 807 |
models_data.append([f"{rank_display}{owner}", count])
|
| 808 |
|
| 809 |
-
ranking_data_models = pd.DataFrame(models_data, columns=["Contributor", "Models Count"])
|
| 810 |
ranking_data_models.index = ranking_data_models.index + 1 # Start index from 1 for ranking
|
| 811 |
|
| 812 |
st.dataframe(
|
|
|
|
| 775 |
|
| 776 |
spaces_data.append([f"{rank_display}{owner}", count])
|
| 777 |
|
| 778 |
+
ranking_data_spaces = pd.DataFrame(spaces_data, columns=["Contributor", "Spaces Count(Top 500 positions)"])
|
| 779 |
ranking_data_spaces.index = ranking_data_spaces.index + 1 # Start index from 1 for ranking
|
| 780 |
|
| 781 |
st.dataframe(
|
|
|
|
| 806 |
|
| 807 |
models_data.append([f"{rank_display}{owner}", count])
|
| 808 |
|
| 809 |
+
ranking_data_models = pd.DataFrame(models_data, columns=["Contributor", "Models Count(Top 500 positions)"])
|
| 810 |
ranking_data_models.index = ranking_data_models.index + 1 # Start index from 1 for ranking
|
| 811 |
|
| 812 |
st.dataframe(
|