| | <!DOCTYPE html> |
| | <html lang="en"> |
| | <head> |
| | <meta charset="UTF-8"> |
| | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| | <title>{% block title %}Dataset Papers on ArXiv{% endblock %}</title> |
| |
|
| | |
| | <script src="https://cdn.tailwindcss.com"></script> |
| |
|
| | |
| | <script src="https://unpkg.com/htmx.org@1.9.12"></script> |
| |
|
| | |
| | <script defer src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"></script> |
| |
|
| | <style> |
| | |
| | [x-cloak] { display: none !important; } |
| | |
| | .htmx-indicator { display: none; } |
| | .htmx-request .htmx-indicator, |
| | .htmx-request.htmx-indicator { display: inline; } |
| | |
| | |
| | .htmx-request #paper-list { opacity: 0.5; transition: opacity 0.15s; } |
| | </style> |
| | </head> |
| | <body class="bg-white min-h-screen text-gray-900"> |
| | <header class="border-b border-gray-200"> |
| | <div class="max-w-3xl mx-auto px-4 py-6"> |
| | <h1 class="text-xl font-semibold">Dataset Papers on ArXiv</h1> |
| | <p class="text-sm text-gray-500 mt-1">CS papers predicted to introduce new ML datasets by <a href="https://huggingface.co/davanstrien/ModernBERT-base-is-new-arxiv-dataset" class="inline-flex items-center gap-1 text-gray-700 hover:text-blue-600 font-medium">this model <span class="text-base">🤗</span></a></p> |
| | </div> |
| | </header> |
| |
|
| | <main class="max-w-3xl mx-auto px-4 py-6"> |
| | {% block content %}{% endblock %} |
| | </main> |
| |
|
| | <footer class="border-t border-gray-100 mt-12"> |
| | <div class="max-w-3xl mx-auto px-4 py-4 text-gray-400 text-xs"> |
| | <a href="https://huggingface.co/datasets/librarian-bots/arxiv-cs-papers-lance" class="hover:text-gray-600">Data source</a> |
| | <span class="mx-2">·</span> |
| | <a href="https://huggingface.co/davanstrien/ModernBERT-base-is-new-arxiv-dataset" class="hover:text-gray-600">Model</a> |
| | </div> |
| | </footer> |
| | </body> |
| | </html> |
| |
|