Spaces:
Running
Running
Build a digital research environment that hosts a next-generation AI Scientist, designed to explore, model, and simulate hypotheses toward Artificial General Intelligence (AGI) and superintelligent cognition.
83f407e
verified
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Research Dashboard | Synaptic Odyssey</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap'); | |
| body { | |
| font-family: 'Space Grotesk', sans-serif; | |
| overflow-x: hidden; | |
| } | |
| .gradient-text { | |
| background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%); | |
| -webkit-background-clip: text; | |
| background-clip: text; | |
| color: transparent; | |
| } | |
| .research-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
| } | |
| .neuron-path { | |
| stroke-dasharray: 1000; | |
| stroke-dashoffset: 1000; | |
| animation: dash 5s linear forwards; | |
| } | |
| @keyframes dash { | |
| to { | |
| stroke-dashoffset: 0; | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-900 text-gray-100 min-h-screen"> | |
| <!-- Navigation --> | |
| <nav class="border-b border-gray-800 bg-gray-900/80 backdrop-blur-sm sticky top-0 z-50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex items-center justify-between h-16"> | |
| <div class="flex items-center space-x-2"> | |
| <i data-feather="cpu" class="text-blue-500"></i> | |
| <span class="font-bold text-xl gradient-text">Synaptic Odyssey</span> | |
| </div> | |
| <div class="hidden md:block"> | |
| <div class="ml-10 flex items-baseline space-x-4"> | |
| <a href="index.html" class="text-gray-300 hover:bg-gray-800 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Home</a> | |
| <a href="dashboard.html" class="bg-gray-800 text-white px-3 py-2 rounded-md text-sm font-medium">Dashboard</a> | |
| <a href="research.html" class="text-gray-300 hover:bg-gray-800 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Research</a> | |
| <a href="simulation.html" class="text-gray-300 hover:bg-gray-800 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Simulation</a> | |
| </div> | |
| </div> | |
| <div class="flex items-center space-x-4"> | |
| <button class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium flex items-center"> | |
| <i data-feather="plus" class="w-4 h-4 mr-2"></i> | |
| New Experiment | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Main Content --> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8"> | |
| <!-- Dashboard Header --> | |
| <div class="mb-8"> | |
| <h1 class="text-3xl font-bold mb-2">Research Dashboard</h1> | |
| <p class="text-gray-400">Monitor ongoing experiments and research progress</p> | |
| </div> | |
| <!-- Stats Overview --> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-6 mb-8"> | |
| <div class="bg-gray-800 rounded-lg p-6"> | |
| <div class="flex items-center"> | |
| <div class="p-3 rounded-full bg-blue-500/20 mr-4"> | |
| <i data-feather="activity" class="w-6 h-6 text-blue-500"></i> | |
| </div> | |
| <div> | |
| <p class="text-gray-400 text-sm">Active Experiments</p> | |
| <p class="text-2xl font-bold">12</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-gray-800 rounded-lg p-6"> | |
| <div class="flex items-center"> | |
| <div class="p-3 rounded-full bg-green-500/20 mr-4"> | |
| <i data-feather="check-circle" class="w-6 h-6 text-green-500"></i> | |
| </div> | |
| <div> | |
| <p class="text-gray-400 text-sm">Completed</p> | |
| <p class="text-2xl font-bold">24</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-gray-800 rounded-lg p-6"> | |
| <div class="flex items-center"> | |
| <div class="p-3 rounded-full bg-yellow-500/20 mr-4"> | |
| <i data-feather="clock" class="w-6 h-6 text-yellow-500"></i> | |
| </div> | |
| <div> | |
| <p class="text-gray-400 text-sm">In Review</p> | |
| <p class="text-2xl font-bold">7</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-gray-800 rounded-lg p-6"> | |
| <div class="flex items-center"> | |
| <div class="p-3 rounded-full bg-purple-500/20 mr-4"> | |
| <i data-feather="cpu" class="w-6 h-6 text-purple-500"></i> | |
| </div> | |
| <div> | |
| <p class="text-gray-400 text-sm">Models Trained</p> | |
| <p class="text-2xl font-bold">8</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Charts Section --> | |
| <div class="grid grid-cols-1 lg:grid-cols-2 gap-8 mb-8"> | |
| <div class="bg-gray-800 rounded-lg p-6"> | |
| <h3 class="text-lg font-semibold mb-4">Research Progress</h3> | |
| <canvas id="progressChart" height="300"></canvas> | |
| </div> | |
| <div class="bg-gray-800 rounded-lg p-6"> | |
| <h3 class="text-lg font-semibold mb-4">Resource Utilization</h3> | |
| <canvas id="resourceChart" height="300"></canvas> | |
| </div> | |
| </div> | |
| <!-- Recent Experiments --> | |
| <div class="bg-gray-800 rounded-lg p-6 mb-8"> | |
| <div class="flex justify-between items-center mb-6"> | |
| <h3 class="text-lg font-semibold">Recent Experiments</h3> | |
| <button class="text-blue-500 hover:text-blue-400 text-sm">View All</button> | |
| </div> | |
| <div class="overflow-x-auto"> | |
| <table class="min-w-full divide-y divide-gray-700"> | |
| <thead> | |
| <tr> | |
| <th class="px-6 py-3 text-left text-xs font-medium text-gray-400 uppercase tracking-wider">Experiment</th> | |
| <th class="px-6 py-3 text-left text-xs font-medium text-gray-400 uppercase tracking-wider">Status</th> | |
| <th class="px-6 py-3 text-left text-xs font-medium text-gray-400 uppercase tracking-wider">Progress</th> | |
| <th class="px-6 py-3 text-left text-xs font-medium text-gray-400 uppercase tracking-wider">Last Updated</th> | |
| </tr> | |
| </thead> | |
| <tbody class="divide-y divide-gray-700"> | |
| <tr> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="text-sm font-medium">Neural Architecture Search</div> | |
| <div class="text-sm text-gray-400">AGI Frameworks</div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-500/20 text-green-400">Running</span> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="w-full bg-gray-700 rounded-full h-2"> | |
| <div class="bg-blue-600 h-2 rounded-full" style="width: 65%"></div> | |
| </div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-400">2 hours ago</td> | |
| </tr> | |
| <tr> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="text-sm font-medium">Causal Inference Model</div> | |
| <div class="text-sm text-gray-400">Reasoning Systems</div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-yellow-500/20 text-yellow-400">In Review</span> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="w-full bg-gray-700 rounded-full h-2"> | |
| <div class="bg-yellow-600 h-2 rounded-full" style="width: 100%"></div> | |
| </div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-400">1 day ago</td> | |
| </tr> | |
| <tr> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="text-sm font-medium">Meta-Learning Optimization</div> | |
| <div class="text-sm text-gray-400">Adaptive Systems</div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-500/20 text-green-400">Running</span> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap"> | |
| <div class="w-full bg-gray-700 rounded-full h-2"> | |
| <div class="bg-blue-600 h-2 rounded-full" style="width: 30%"></div> | |
| </div> | |
| </td> | |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-400">3 days ago</td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| </div> | |
| </div> | |
| <!-- Knowledge Graph Preview --> | |
| <div class="bg-gray-800 rounded-lg p-6"> | |
| <div class="flex justify-between items-center mb-6"> | |
| <h3 class="text-lg font-semibold">Knowledge Graph</h3> | |
| <button class="text-blue-500 hover:text-blue-400 text-sm">Explore</button> | |
| </div> | |
| <div class="bg-gray-900 rounded-lg p-4 h-64 flex items-center justify-center"> | |
| <div class="text-center"> | |
| <i data-feather="git-branch" class="w-12 h-12 text-gray-600 mx-auto mb-4"></i> | |
| <p class="text-gray-500">Interactive knowledge graph visualization</p> | |
| <p class="text-sm text-gray-600 mt-2">Showing connections between AGI concepts, theories, and research papers</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <script> | |
| feather.replace(); | |
| // Progress Chart | |
| const progressCtx = document.getElementById('progressChart').getContext('2d'); | |
| const progressChart = new Chart(progressCtx, { | |
| type: 'line', | |
| data: { | |
| labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'], | |
| datasets: [{ | |
| label: 'Experiments Completed', | |
| data: [5, 8, 12, 15, 18, 24], | |
| borderColor: '#3b82f6', | |
| backgroundColor: 'rgba(59, 130, 246, 0.1)', | |
| borderWidth: 2, | |
| fill: true, | |
| tension: 0.4 | |
| }] | |
| }, | |
| options: { | |
| responsive: true, | |
| maintainAspectRatio: false, | |
| plugins: { | |
| legend: { | |
| display: false | |
| } | |
| }, | |
| scales: { | |
| y: { | |
| beginAtZero: true, | |
| grid: { | |
| color: 'rgba(255, 255, 255, 0.1)' | |
| }, | |
| ticks: { | |
| color: '#9ca3af' | |
| } | |
| }, | |
| x: { | |
| grid: { | |
| color: 'rgba(255, 255, 255, 0.1)' | |
| }, | |
| ticks: { | |
| color: '#9ca3af' | |
| } | |
| } | |
| } | |
| } | |
| }); | |
| // Resource Chart | |
| const resourceCtx = document.getElementById('resourceChart').getContext('2d'); | |
| const resourceChart = new Chart(resourceCtx, { | |
| type: 'doughnut', | |
| data: { | |
| labels: ['Compute', 'Storage', 'Memory', 'Network'], | |
| datasets: [{ | |
| data: [45, 25, 20, 10], | |
| backgroundColor: [ | |
| '#3b82f6', | |
| '#10b981', | |
| '#8b5cf6', | |
| '#f59e0b' | |
| ], | |
| borderWidth: 0 | |
| }] | |
| }, | |
| options: { | |
| responsive: true, | |
| maintainAspectRatio: false, | |
| plugins: { | |
| legend: { | |
| position: 'right', | |
| labels: { | |
| color: '#9ca3af', | |
| padding: 20 | |
| } | |
| } | |
| } | |
| } | |
| }); | |
| </script> | |
| </body> | |
| </html> |