Spaces:
Sleeping
Sleeping
File size: 9,387 Bytes
74dd3f1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
import streamlit as st
import pandas as pd
from datetime import datetime
def render_home():
"""Render the home page with model overview and statistics"""
st.title("π€ Hugging Face Model Manager")
st.markdown(
"""
Welcome to your personal Hugging Face model management dashboard.
From here, you can view, create, and manage your machine learning models.
"""
)
# Check if we have models loaded
if not st.session_state.get("models"):
with st.spinner("Loading your models..."):
try:
st.session_state.models = st.session_state.client.get_user_models()
except Exception as e:
st.error(f"Error loading models: {str(e)}")
# Model Statistics Dashboard
st.markdown("### π Model Statistics")
# Key statistics in cards
col1, col2, col3 = st.columns([1, 1, 1])
with col1:
# Total models count
total_models = len(st.session_state.models)
st.markdown(
f"""
<div class="tooltip" style="width: 100%;">
<div style="padding: 20px; background-color: #F9FAFB; border-radius: 10px; border: 1px solid #E5E7EB; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.05); transition: all 0.3s;">
<div style="font-size: 36px; color: #6366F1; font-weight: bold;">
{total_models}
</div>
<div style="color: #6B7280; font-weight: 500;">
Total Models
</div>
</div>
<span class="tooltip-text">Total number of models you've created</span>
</div>
""",
unsafe_allow_html=True,
)
with col2:
# Total downloads (sum from all models)
total_downloads = sum(
getattr(model, "downloads", 0) for model in st.session_state.models
)
st.markdown(
f"""
<div class="tooltip" style="width: 100%;">
<div style="padding: 20px; background-color: #F9FAFB; border-radius: 10px; border: 1px solid #E5E7EB; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.05); transition: all 0.3s;">
<div style="font-size: 36px; color: #10B981; font-weight: bold;">
{total_downloads:,}
</div>
<div style="color: #6B7280; font-weight: 500;">
Total Downloads
</div>
</div>
<span class="tooltip-text">Cumulative downloads across all your models</span>
</div>
""",
unsafe_allow_html=True,
)
with col3:
# Calculate total likes
total_likes = sum(
getattr(model, "likes", 0) for model in st.session_state.models
)
st.markdown(
f"""
<div class="tooltip" style="width: 100%;">
<div style="padding: 20px; background-color: #F9FAFB; border-radius: 10px; border: 1px solid #E5E7EB; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.05); transition: all 0.3s;">
<div style="font-size: 36px; color: #FF9D96; font-weight: bold;">
{total_likes}
</div>
<div style="color: #6B7280; font-weight: 500;">
Total Likes
</div>
</div>
<span class="tooltip-text">Cumulative likes across all your models</span>
</div>
""",
unsafe_allow_html=True,
)
# Quick Actions with improved styling
st.markdown("### π Quick Actions")
quick_actions_col1, quick_actions_col2 = st.columns([1, 1])
with quick_actions_col1:
if st.button(
"β Create New Repository", key="create_repo_home", use_container_width=True
):
st.session_state.page = "repository_management"
st.experimental_rerun()
with quick_actions_col2:
if st.button(
"π Refresh Models", key="refresh_models_home", use_container_width=True
):
with st.spinner("Refreshing models..."):
try:
st.session_state.models = st.session_state.client.get_user_models()
st.success("Models refreshed!")
except Exception as e:
st.error(f"Error refreshing models: {str(e)}")
# Your Models section
st.markdown("### π Your Models")
if not st.session_state.models:
st.info(
"You don't have any models yet. Click 'Create New Repository' to get started!"
)
else:
# Create dataframe from models list for display
models_data = []
for model in st.session_state.models:
try:
# Extract key data
last_modified = (
datetime.fromisoformat(model.lastModified.replace("Z", "+00:00"))
if hasattr(model, "lastModified")
else None
)
model_data = {
"Model Name": model.modelId.split("/")[-1],
"Full ID": model.modelId,
"Downloads": getattr(model, "downloads", 0),
"Likes": getattr(model, "likes", 0),
"Last Modified": last_modified,
"Private": getattr(model, "private", False),
}
models_data.append(model_data)
except Exception as e:
st.warning(f"Error processing model {getattr(model, 'modelId', 'unknown')}: {str(e)}")
# Sorting
sort_options = ["Last Modified", "Downloads", "Likes", "Model Name"]
sort_by = st.selectbox("Sort by", sort_options, index=0)
# Create DataFrame and sort
if models_data:
df = pd.DataFrame(models_data)
if sort_by == "Last Modified":
df = df.sort_values(by=sort_by, ascending=False)
elif sort_by in ["Downloads", "Likes"]:
df = df.sort_values(by=sort_by, ascending=False)
else:
df = df.sort_values(by=sort_by)
# Format the Last Modified date
df["Last Modified"] = df["Last Modified"].apply(
lambda x: x.strftime("%b %d, %Y") if pd.notnull(x) else "N/A"
)
# Display models as cards
for i, row in df.iterrows():
with st.container():
col1, col2 = st.columns([3, 1])
with col1:
st.markdown(
f"""
<div style="padding: 16px; background-color: #F9FAFB; border-radius: 8px; border: 1px solid #E5E7EB; margin-bottom: 16px; cursor: pointer; transition: all 0.3s;"
onclick="window.open('https://huggingface.co/{row['Full ID']}', '_blank')">
<div style="display: flex; justify-content: space-between; align-items: center;">
<div>
<h3 style="margin: 0; color: #111827;">{row['Model Name']}</h3>
<p style="margin: 4px 0 0 0; color: #6B7280; font-size: 14px;">{row['Full ID']}</p>
</div>
<div style="display: flex; align-items: center;">
<div style="margin-right: 16px; text-align: center;">
<div style="font-weight: bold; color: #10B981;">{row['Downloads']:,}</div>
<div style="font-size: 12px; color: #6B7280;">downloads</div>
</div>
<div style="margin-right: 16px; text-align: center;">
<div style="font-weight: bold; color: #FF9D96;">{row['Likes']}</div>
<div style="font-size: 12px; color: #6B7280;">likes</div>
</div>
<div style="text-align: center;">
<div style="font-weight: bold; color: #6366F1;">{row['Last Modified']}</div>
<div style="font-size: 12px; color: #6B7280;">updated</div>
</div>
</div>
</div>
</div>
""",
unsafe_allow_html=True,
)
with col2:
if st.button(
"π Manage",
key=f"manage_{row['Full ID']}",
use_container_width=True
):
st.session_state.selected_model = row["Full ID"]
st.session_state.page = "model_details"
st.experimental_rerun()
|