fix: links iframe-safe — switch markdown links to HTML <a target=_blank>; footer uses gr.HTML for raw anchor support
Browse files
app.py
CHANGED
|
@@ -51,8 +51,8 @@ HEADER_MD = f"""
|
|
| 51 |
Ingest a git repository (up to 256K tokens, FP8) on a single GPU and
|
| 52 |
reason across the whole codebase with multi-step tool use.
|
| 53 |
|
| 54 |
-
> 📦 GitHub:
|
| 55 |
-
> 🏆 Built for the
|
| 56 |
> 🤗 HF Special Prize candidate · 🛡 Conservative claim discipline applied
|
| 57 |
|
| 58 |
### Why AMD MI300X (verified 2026-05-05 on real hardware)
|
|
@@ -217,23 +217,29 @@ with gr.Blocks(
|
|
| 217 |
"| Largest repo tested | **pytorch/vision (1.3M tokens)** |\n"
|
| 218 |
"| Tuning attempt: AITER backend | regression — 137/144 cells broken under FP8 KV cache; default Triton stays production-safe |\n"
|
| 219 |
"| Cost | $1.99/hr cloud, $45.75/1M completion tokens |\n\n"
|
| 220 |
-
"Full evidence pack — JSON results, plots, raw model outputs — "
|
| 221 |
-
"
|
| 222 |
-
"
|
| 223 |
-
|
| 224 |
-
"(https://github.com/SRKRZ23/repomind/tree/main/benchmarks/2026-05-05-mi300x-stress-test/extended)."
|
| 225 |
)
|
| 226 |
|
| 227 |
-
gr.
|
| 228 |
-
"
|
| 229 |
-
|
| 230 |
-
|
| 231 |
-
|
| 232 |
-
|
| 233 |
-
|
| 234 |
-
|
| 235 |
-
|
| 236 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 237 |
)
|
| 238 |
|
| 239 |
|
|
|
|
| 51 |
Ingest a git repository (up to 256K tokens, FP8) on a single GPU and
|
| 52 |
reason across the whole codebase with multi-step tool use.
|
| 53 |
|
| 54 |
+
> 📦 GitHub: <a href="https://github.com/SRKRZ23/repomind" target="_blank" rel="noopener noreferrer">SRKRZ23/repomind</a> · MIT
|
| 55 |
+
> 🏆 Built for the <a href="https://lablab.ai/ai-hackathons/amd-developer" target="_blank" rel="noopener noreferrer">AMD Developer Hackathon 2026</a>
|
| 56 |
> 🤗 HF Special Prize candidate · 🛡 Conservative claim discipline applied
|
| 57 |
|
| 58 |
### Why AMD MI300X (verified 2026-05-05 on real hardware)
|
|
|
|
| 217 |
"| Largest repo tested | **pytorch/vision (1.3M tokens)** |\n"
|
| 218 |
"| Tuning attempt: AITER backend | regression — 137/144 cells broken under FP8 KV cache; default Triton stays production-safe |\n"
|
| 219 |
"| Cost | $1.99/hr cloud, $45.75/1M completion tokens |\n\n"
|
| 220 |
+
"Full evidence pack — JSON results, plots, raw model outputs — is at "
|
| 221 |
+
'<a href="https://github.com/SRKRZ23/repomind/tree/main/benchmarks/2026-05-05-mi300x-stress-test" target="_blank" rel="noopener noreferrer">github.com/SRKRZ23/repomind/tree/main/benchmarks/2026-05-05-mi300x-stress-test</a>. '
|
| 222 |
+
"Extended PHASE 1+2 narrative + AITER A/B in the "
|
| 223 |
+
'<a href="https://github.com/SRKRZ23/repomind/tree/main/benchmarks/2026-05-05-mi300x-stress-test/extended" target="_blank" rel="noopener noreferrer">extended/SUMMARY.md</a>.'
|
|
|
|
| 224 |
)
|
| 225 |
|
| 226 |
+
gr.HTML(
|
| 227 |
+
"""
|
| 228 |
+
<hr/>
|
| 229 |
+
<p><strong>Author:</strong> Sardor Razikov — Tashkent 🇺🇿</p>
|
| 230 |
+
<p>
|
| 231 |
+
<a href="https://github.com/SRKRZ23/repomind" target="_blank" rel="noopener noreferrer">GitHub</a> ·
|
| 232 |
+
<a href="https://www.linkedin.com/in/sardor-razikov-569a5327b" target="_blank" rel="noopener noreferrer">LinkedIn</a> ·
|
| 233 |
+
<a href="https://x.com/SardorRazi99093" target="_blank" rel="noopener noreferrer">X / Twitter</a> ·
|
| 234 |
+
<a href="https://doi.org/10.5281/zenodo.19791329" target="_blank" rel="noopener noreferrer">Zenodo (ECB)</a>
|
| 235 |
+
</p>
|
| 236 |
+
<p>📧
|
| 237 |
+
<a href="mailto:razikovsardor1@gmail.com">razikovsardor1@gmail.com</a> ·
|
| 238 |
+
<a href="mailto:razikovs777@gmail.com">razikovs777@gmail.com</a>
|
| 239 |
+
</p>
|
| 240 |
+
<p><em>If the MI300X memory-architecture story resonates,
|
| 241 |
+
<strong>a like on this Space helps with the Hugging Face Special Prize judging.</strong> 🤗</em></p>
|
| 242 |
+
"""
|
| 243 |
)
|
| 244 |
|
| 245 |
|