Spaces:
Sleeping
Sleeping
File size: 10,337 Bytes
73f6e79 ba2164e 73f6e79 ba2164e 73f6e79 4bc33ce 4b6b7f5 73f6e79 ba2164e 73f6e79 ba2164e 5a4060a 73f6e79 ba2164e 2b23995 73f6e79 ba2164e 73f6e79 ba2164e 73f6e79 7e073c3 4b6b7f5 7e073c3 ba2164e 73f6e79 ba2164e 73f6e79 ba2164e 73f6e79 ba2164e 7e073c3 ba2164e 7e073c3 ba2164e 7e073c3 ba2164e 2b23995 ba2164e 7e073c3 ba2164e 7e073c3 ba2164e 7e073c3 ba2164e 73f6e79 ba2164e 4b6b7f5 ba2164e 7e073c3 4b6b7f5 7e073c3 2b23995 4b6b7f5 2b23995 7e073c3 4b6b7f5 7e073c3 4b6b7f5 2b23995 7e073c3 73f6e79 ba2164e 2b23995 ba2164e 4b6b7f5 ba2164e 7e073c3 ba2164e 4b6b7f5 2b23995 7e073c3 2b23995 7e073c3 2b23995 ba2164e 73f6e79 4bc33ce 73f6e79 7e073c3 ba2164e |
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 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 |
import os
import re
import time
import spaces
import requests
import gradio as gr
from huggingface_hub import HfApi, list_models
from threading import Thread, Lock
HF_TOKEN = os.environ.get("HF_TOKEN", None)
TITLE = """
<h1><center>Open-Schizo-Leaderboard</center></h1>
<center>
<p>Comparing LLM Cards for how absolutely Schizo they are</p>
<p>If you like my work please subscribe for $5 a month to <a href="https://www.patreon.com/Rombodawg" target="_blank">https://www.patreon.com/Rombodawg</a></p>
</center>
"""
CSS = """
.duplicate-button {
margin: auto !important;
color: white !important;
background: black !important;
border-radius: 100vh !important;
}
h3 {
text-align: center;
}
table {
width: 100%;
border-collapse: collapse;
}
table, th, td {
border: 1px solid #ddd;
}
th, td {
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
cursor: pointer;
}
tr:nth-child(even) {
background-color: #f9f9f9;
}
tr:hover {
background-color: #f1f1f1;
}
.leaderboard-container {
max-height: 600px;
overflow-y: auto;
}
.loading {
text-align: center;
font-size: 18px;
padding: 20px;
}
"""
SCHIZO_WORDS = [
"MAXED", "Max", "SUPER", "Duped", "Edge", "maid", "Solution",
"gpt-4", "gpt4o", "claude-3.5", "claude-3.7", "o1", "o3-mini",
"gpt-4.5", "chatgpt", "merge", "merged", "best", "greatest",
"highest quality", "Class 1", "NSFW", "4chan", "reddit", "vibe",
"vibe check", "vibe checking", "dirty", "meme", "memes", "upvote",
"Linear", "SLERP", "Nearswap", "Task Arithmetic", "Task_Arithmetic",
"TIES", "DARE", "Passthrough", "Model Breadcrumbs", "Model Stock",
"NuSLERP", "DELL", "DELLA Task Arithmeti", "SCE"
]
MARKDOWN_SYMBOLS = ["#", "*", "_", "`", ">", "-", "+", "[", "]", "(", ")", "!", "\\", "|", "~", "<", ">", "=", ":"]
CACHE = {
"llm": {"html": None, "timestamp": 0, "lock": Lock()},
"all": {"html": None, "timestamp": 0, "lock": Lock()}
}
def count_schizo_words(text):
count = 0
for word in SCHIZO_WORDS:
count += len(re.findall(re.escape(word), text, re.IGNORECASE))
return count
def count_markdown_symbols(text):
count = 0
for symbol in MARKDOWN_SYMBOLS:
count += text.count(symbol)
return count
def calculate_word_count(text):
return len(re.findall(r'\w+', text))
def calculate_schizo_rating(readme_content):
schizo_word_count = count_schizo_words(readme_content)
word_schizo_rating = schizo_word_count * 10
word_count = calculate_word_count(readme_content)
wordiness_schizo_rating = 0
if word_count < 150:
wordiness_schizo_rating = word_schizo_rating * 0.5
elif word_count > 1000:
extra_penalty = min(1.0, 0.5 + ((word_count - 1000) // 500) * 0.25)
wordiness_schizo_rating = word_schizo_rating * extra_penalty
markdown_count = count_markdown_symbols(readme_content)
visual_schizo_rating = 0
if markdown_count > 100:
visual_penalty = min(1.0, 0.5 + ((markdown_count - 150) // 50) * 0.25)
visual_schizo_rating = word_schizo_rating * visual_penalty
combined_schizo_rating = word_schizo_rating + wordiness_schizo_rating + visual_schizo_rating
return {
"combined": combined_schizo_rating,
"word": word_schizo_rating,
"wordiness": wordiness_schizo_rating,
"visual": visual_schizo_rating,
"schizo_word_count": schizo_word_count,
"word_count": word_count,
"markdown_count": markdown_count
}
def fetch_model_readme(model_id):
try:
url = f"https://huggingface.co/{model_id}/raw/main/README.md"
response = requests.get(url)
return response.text if response.status_code == 200 else None
except Exception as e:
print(f"Error fetching README for {model_id}: {e}")
return None
def generate_leaderboard_data(model_type="llm", max_models=500):
api = HfApi(token=HF_TOKEN)
models = list_models(
task="text-generation" if model_type == "llm" else None,
limit=max_models
)
leaderboard_data = []
for model in models:
readme_content = fetch_model_readme(model.id)
if not readme_content:
continue
ratings = calculate_schizo_rating(readme_content)
leaderboard_data.append({
"model_id": model.id,
"combined_rating": ratings["combined"],
"word_rating": ratings["word"],
"wordiness_rating": ratings["wordiness"],
"visual_rating": ratings["visual"],
"schizo_word_count": ratings["schizo_word_count"],
"word_count": ratings["word_count"],
"markdown_count": ratings["markdown_count"]
})
leaderboard_data.sort(key=lambda x: x["combined_rating"], reverse=True)
return leaderboard_data
def create_leaderboard_html(leaderboard_data):
html = """
<div class="leaderboard-container">
<table id="leaderboard">
<tr>
<th onclick="sortTable(0)">Model</th>
<th onclick="sortTable(1, true)">Average Schizo Rating</th>
<th onclick="sortTable(2, true)">Visual Schizo Rating</th>
<th onclick="sortTable(3, true)">Wordiness Schizo Rating</th>
<th onclick="sortTable(4, true)">Overall Schizo Rating</th>
</tr>
"""
for item in leaderboard_data:
html += f"""
<tr>
<td>{item["model_id"]}</td>
<td>{item["combined_rating"]:.2f}</td>
<td>{item["visual_rating"]:.2f}</td>
<td>{item["wordiness_rating"]:.2f}</td>
<td>{item["word_rating"]:.2f}</td>
</tr>
"""
html += """
</table>
</div>
<script>
function sortTable(n, isNumeric = false) {
var table, rows, switching, i, x, y, shouldSwitch, dir, switchcount = 0;
table = document.getElementById("leaderboard");
switching = true;
dir = "asc";
while (switching) {
switching = false;
rows = table.rows;
for (i = 1; i < (rows.length - 1); i++) {
shouldSwitch = false;
x = rows[i].getElementsByTagName("TD")[n];
y = rows[i + 1].getElementsByTagName("TD")[n];
if (dir == "asc") {
if (isNumeric) {
if (parseFloat(x.innerHTML) > parseFloat(y.innerHTML)) {
shouldSwitch = true;
break;
}
} else {
if (x.innerHTML.toLowerCase() > y.innerHTML.toLowerCase()) {
shouldSwitch = true;
break;
}
}
} else if (dir == "desc") {
if (isNumeric) {
if (parseFloat(x.innerHTML) < parseFloat(y.innerHTML)) {
shouldSwitch = true;
break;
}
} else {
if (x.innerHTML.toLowerCase() < y.innerHTML.toLowerCase()) {
shouldSwitch = true;
break;
}
}
}
}
if (shouldSwitch) {
rows[i].parentNode.insertBefore(rows[i + 1], rows[i]);
switching = true;
switchcount++;
} else {
if (switchcount == 0 && dir == "asc") {
dir = "desc";
switching = true;
}
}
}
}
</script>
"""
return html
def background_cache_updater():
while True:
try:
for model_type in ["llm", "all"]:
with CACHE[model_type]["lock"]:
leaderboard_data = generate_leaderboard_data(model_type)
CACHE[model_type]["html"] = create_leaderboard_html(leaderboard_data)
CACHE[model_type]["timestamp"] = time.time()
except Exception as e:
print(f"Background update error: {e}")
time.sleep(600)
def load_leaderboard(model_type):
with CACHE[model_type]["lock"]:
if CACHE[model_type]["html"]:
return CACHE[model_type]["html"]
return f'<div class="loading">{model_type.upper()} leaderboard loading...</div>'
def trigger_refresh(model_type):
def refresh_task():
try:
with CACHE[model_type]["lock"]:
leaderboard_data = generate_leaderboard_data(model_type)
CACHE[model_type]["html"] = create_leaderboard_html(leaderboard_data)
CACHE[model_type]["timestamp"] = time.time()
except Exception as e:
print(f"Refresh error: {e}")
Thread(target=refresh_task, daemon=True).start()
return f'<div class="loading">{model_type.upper()} refresh started...</div>'
@spaces.GPU()
def init_leaderboard():
return '<div class="loading">Initializing leaderboard...</div>'
with gr.Blocks(css=CSS, theme="soft") as demo:
gr.HTML(TITLE)
gr.DuplicateButton(value="Duplicate Space for private use", elem_classes="duplicate-button")
with gr.Row():
with gr.Column():
model_type_dropdown = gr.Dropdown(
choices=["llm", "all"],
value="llm",
label="Model Type Filter",
)
refresh_button = gr.Button("Force Refresh Current View")
leaderboard_html = gr.HTML(init_leaderboard())
model_type_dropdown.change(
fn=load_leaderboard,
inputs=[model_type_dropdown],
outputs=[leaderboard_html]
)
demo.load(
fn=load_leaderboard,
inputs=[model_type_dropdown],
outputs=[leaderboard_html],
every=30
)
refresh_button.click(
fn=trigger_refresh,
inputs=[model_type_dropdown],
outputs=[leaderboard_html],
)
if __name__ == "__main__":
Thread(target=background_cache_updater, daemon=True).start()
demo.launch() |