Spaces:
Running
Running
File size: 21,486 Bytes
8db404a | 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 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Evolution Tracker</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.timeline-item::before {
content: '';
position: absolute;
width: 20px;
height: 20px;
left: -10px;
background: #3b82f6;
border-radius: 50%;
top: 0;
}
.gradient-bg {
background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}
.card-hover: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);
}
.fade-in {
animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.search-highlight {
background-color: #fef08a;
}
</style>
</head>
<body class="bg-gray-50">
<!-- Header -->
<header class="gradient-bg text-white shadow-lg">
<div class="container mx-auto px-4 py-6">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-3">
<i class="fas fa-robot text-3xl"></i>
<h1 class="text-2xl font-bold">AI Evolution Tracker</h1>
</div>
<div class="flex items-center space-x-4">
<button id="theme-toggle" class="p-2 rounded-full hover:bg-blue-700 transition">
<i class="fas fa-moon"></i>
</button>
<button class="bg-white text-blue-600 px-4 py-2 rounded-lg font-medium hover:bg-gray-100 transition">
Subscribe
</button>
</div>
</div>
<div class="mt-8 text-center">
<h2 class="text-4xl font-bold mb-4">Journey Through AI's Evolution</h2>
<p class="text-xl max-w-3xl mx-auto">Explore the milestones that shaped artificial intelligence from its theoretical foundations to today's cutting-edge breakthroughs.</p>
</div>
</div>
</header>
<!-- Main Content -->
<main class="container mx-auto px-4 py-8">
<!-- Search and Filter -->
<div class="bg-white rounded-xl shadow-md p-6 mb-8">
<div class="flex flex-col md:flex-row gap-4">
<div class="flex-1 relative">
<input type="text" id="search-input" placeholder="Search AI milestones (e.g., 'Neural Networks', 'GPT')"
class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
<i class="fas fa-search absolute right-3 top-3.5 text-gray-400"></i>
</div>
<div class="flex space-x-2">
<select id="decade-filter" class="px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
<option value="">All Decades</option>
<option value="1950">1950s</option>
<option value="1960">1960s</option>
<option value="1970">1970s</option>
<option value="1980">1980s</option>
<option value="1990">1990s</option>
<option value="2000">2000s</option>
<option value="2010">2010s</option>
<option value="2020">2020s</option>
</select>
<select id="category-filter" class="px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
<option value="">All Categories</option>
<option value="theory">Theory</option>
<option value="hardware">Hardware</option>
<option value="software">Software</option>
<option value="application">Application</option>
</select>
</div>
</div>
</div>
<!-- Timeline -->
<div class="relative">
<!-- Timeline line -->
<div class="absolute left-1/2 h-full w-1 bg-blue-200 transform -translate-x-1/2"></div>
<!-- Timeline items -->
<div id="timeline-container" class="space-y-12">
<!-- Items will be dynamically inserted here -->
</div>
</div>
<!-- Latest Research Section -->
<section class="mt-16">
<h2 class="text-3xl font-bold mb-6 flex items-center">
<i class="fas fa-flask mr-3 text-blue-600"></i> Latest Research (2023-2024)
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Research cards will be dynamically inserted here -->
</div>
</section>
<!-- Newsletter -->
<div class="mt-16 bg-gradient-to-r from-blue-50 to-indigo-50 rounded-xl p-8 text-center">
<h2 class="text-2xl font-bold mb-2">Stay Updated on AI Advancements</h2>
<p class="text-gray-600 mb-6">Get weekly updates on the latest AI research and breakthroughs</p>
<div class="max-w-md mx-auto flex">
<input type="email" placeholder="Your email address" class="flex-1 px-4 py-3 rounded-l-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500">
<button class="bg-blue-600 text-white px-6 py-3 rounded-r-lg hover:bg-blue-700 transition">Subscribe</button>
</div>
</div>
</main>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold mb-4">AI Evolution Tracker</h3>
<p class="text-gray-400">Tracking the journey of artificial intelligence from inception to innovation.</p>
</div>
<div>
<h4 class="font-bold mb-4">Explore</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Timeline</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Research Papers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Key Figures</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Datasets</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Tutorials</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Glossary</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Connect</h4>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter text-xl"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-github text-xl"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-linkedin text-xl"></i></a>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
<p>© 2023 AI Evolution Tracker. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// AI Milestones Data
const milestones = [
{
year: 1950,
title: "Turing Test Proposed",
description: "Alan Turing publishes 'Computing Machinery and Intelligence' introducing the Turing Test as a measure of machine intelligence.",
category: "theory",
icon: "fa-brain"
},
{
year: 1956,
title: "Dartmouth Conference",
description: "The term 'Artificial Intelligence' is coined at the Dartmouth Summer Research Project, marking the birth of AI as a field.",
category: "theory",
icon: "fa-users"
},
{
year: 1966,
title: "ELIZA Created",
description: "Joseph Weizenbaum develops ELIZA, one of the first natural language processing programs that could simulate conversation.",
category: "software",
icon: "fa-comments"
},
{
year: 1972,
title: "First Intelligent Robot",
description: "Stanford Research Institute builds Shakey, the first mobile robot with the ability to perceive and reason about its surroundings.",
category: "hardware",
icon: "fa-robot"
},
{
year: 1980,
title: "Expert Systems Boom",
description: "Commercialization of expert systems begins, with applications in medicine, chemistry, and other fields.",
category: "application",
icon: "fa-microscope"
},
{
year: 1986,
title: "Backpropagation Rediscovered",
description: "Rumelhart, Hinton, and Williams popularize backpropagation for training neural networks, reviving interest in connectionism.",
category: "theory",
icon: "fa-project-diagram"
},
{
year: 1997,
title: "Deep Blue Defeats Kasparov",
description: "IBM's Deep Blue becomes the first computer to defeat a reigning world chess champion under standard chess tournament time controls.",
category: "application",
icon: "fa-chess"
},
{
year: 2011,
title: "IBM Watson Wins Jeopardy!",
description: "Watson defeats former Jeopardy! champions Brad Rutter and Ken Jennings in a two-game match.",
category: "application",
icon: "fa-trophy"
},
{
year: 2012,
title: "AlexNet Revolution",
description: "AlexNet significantly outperforms all other competitors in the ImageNet competition, sparking the deep learning revolution.",
category: "software",
icon: "fa-image"
},
{
year: 2016,
title: "AlphaGo Defeats Lee Sedol",
description: "Google DeepMind's AlphaGo defeats world champion Lee Sedol in the complex board game Go, a major milestone for AI.",
category: "application",
icon: "fa-gamepad"
},
{
year: 2020,
title: "GPT-3 Released",
description: "OpenAI releases GPT-3, a 175 billion parameter language model that demonstrates remarkable few-shot learning capabilities.",
category: "software",
icon: "fa-language"
},
{
year: 2022,
title: "DALL-E 2 & Stable Diffusion",
description: "Text-to-image models like DALL-E 2 and Stable Diffusion demonstrate AI's creative potential in generating high-quality images from text prompts.",
category: "software",
icon: "fa-paint-brush"
},
{
year: 2023,
title: "GPT-4 & Multimodal AI",
description: "The release of GPT-4 and other multimodal models that can process both text and images, pushing the boundaries of general AI capabilities.",
category: "software",
icon: "fa-eye"
}
];
// Latest Research Data
const latestResearch = [
{
title: "Gemini: Google's Multimodal Model",
summary: "Google's latest AI model that can seamlessly understand and operate across text, images, audio, and video.",
date: "Dec 2023",
link: "#"
},
{
title: "AI for Scientific Discovery",
summary: "Breakthroughs in using AI to accelerate scientific research, from drug discovery to materials science.",
date: "Nov 2023",
link: "#"
},
{
title: "Autonomous Agent Frameworks",
summary: "New architectures for creating AI agents that can autonomously perform complex tasks with minimal human intervention.",
date: "Oct 2023",
link: "#"
},
{
title: "AI Safety Research",
summary: "Advances in aligning AI systems with human values and ensuring their safe deployment.",
date: "Sep 2023",
link: "#"
},
{
title: "Efficient LLM Training",
summary: "Techniques to reduce the computational cost of training large language models while maintaining performance.",
date: "Aug 2023",
link: "#"
},
{
title: "Neural Rendering Advances",
summary: "Improved methods for generating photorealistic 3D scenes from 2D images using neural networks.",
date: "Jul 2023",
link: "#"
}
];
// Initialize the page
document.addEventListener('DOMContentLoaded', function() {
renderTimeline();
renderLatestResearch();
setupEventListeners();
setupThemeToggle();
});
// Render the timeline
function renderTimeline(filteredMilestones = milestones) {
const container = document.getElementById('timeline-container');
container.innerHTML = '';
filteredMilestones.forEach((milestone, index) => {
const positionClass = index % 2 === 0 ? 'md:left-0 md:text-right' : 'md:left-1/2 md:pl-8';
const item = document.createElement('div');
item.className = `relative timeline-item pl-8 md:pl-0 md:w-1/2 mx-auto ${positionClass} fade-in`;
item.innerHTML = `
<div class="bg-white p-6 rounded-xl shadow-md card-hover transition-all duration-300">
<div class="flex items-center mb-2">
<i class="fas ${milestone.icon} text-blue-600 mr-2"></i>
<span class="inline-block px-2 py-1 text-xs font-semibold rounded-full
${milestone.category === 'theory' ? 'bg-purple-100 text-purple-800' :
milestone.category === 'hardware' ? 'bg-green-100 text-green-800' :
milestone.category === 'software' ? 'bg-blue-100 text-blue-800' :
'bg-yellow-100 text-yellow-800'}">
${milestone.category.charAt(0).toUpperCase() + milestone.category.slice(1)}
</span>
</div>
<h3 class="text-xl font-bold mb-2">${milestone.title}</h3>
<p class="text-gray-600 mb-3">${milestone.description}</p>
<div class="text-sm font-semibold text-blue-600">${milestone.year}</div>
</div>
`;
container.appendChild(item);
});
}
// Render latest research
function renderLatestResearch() {
const container = document.querySelector('#timeline-container + section .grid');
container.innerHTML = '';
latestResearch.forEach(research => {
const card = document.createElement('div');
card.className = 'bg-white rounded-xl shadow-md overflow-hidden card-hover transition-all duration-300';
card.innerHTML = `
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-lg font-bold">${research.title}</h3>
<span class="text-xs bg-gray-100 px-2 py-1 rounded">${research.date}</span>
</div>
<p class="text-gray-600 text-sm mb-4">${research.summary}</p>
<a href="${research.link}" class="text-blue-600 text-sm font-medium hover:underline">Read more →</a>
</div>
`;
container.appendChild(card);
});
}
// Setup event listeners
function setupEventListeners() {
const searchInput = document.getElementById('search-input');
const decadeFilter = document.getElementById('decade-filter');
const categoryFilter = document.getElementById('category-filter');
searchInput.addEventListener('input', filterMilestones);
decadeFilter.addEventListener('change', filterMilestones);
categoryFilter.addEventListener('change', filterMilestones);
}
// Filter milestones based on search and filters
function filterMilestones() {
const searchTerm = document.getElementById('search-input').value.toLowerCase();
const decade = document.getElementById('decade-filter').value;
const category = document.getElementById('category-filter').value;
const filtered = milestones.filter(milestone => {
// Search term matching
const matchesSearch = searchTerm === '' ||
milestone.title.toLowerCase().includes(searchTerm) ||
milestone.description.toLowerCase().includes(searchTerm);
// Decade filtering
const matchesDecade = decade === '' ||
(milestone.year >= parseInt(decade) && milestone.year < parseInt(decade) + 10);
// Category filtering
const matchesCategory = category === '' || milestone.category === category;
return matchesSearch && matchesDecade && matchesCategory;
});
renderTimeline(filtered);
}
// Theme toggle functionality
function setupThemeToggle() {
const themeToggle = document.getElementById('theme-toggle');
const icon = themeToggle.querySelector('i');
// Check for saved user preference or use system preference
const savedTheme = localStorage.getItem('theme');
const systemPrefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
if (savedTheme === 'dark' || (!savedTheme && systemPrefersDark)) {
document.documentElement.classList.add('dark');
icon.classList.replace('fa-moon', 'fa-sun');
} else {
document.documentElement.classList.remove('dark');
}
// Toggle theme on button click
themeToggle.addEventListener('click', () => {
const isDark = document.documentElement.classList.toggle('dark');
localStorage.setItem('theme', isDark ? 'dark' : 'light');
if (isDark) {
icon.classList.replace('fa-moon', 'fa-sun');
} else {
icon.classList.replace('fa-sun', 'fa-moon');
}
});
}
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Starboy001/tracking" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |