Files
alicia-ai-terminology/index.html

121 lines
4.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Cheat Sheet</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav>
<div class="nav-inner">
<a href="/" class="nav-brand active">AI Cheat Sheet</a>
<div class="nav-links">
<a href="/pages/terminology.html">Terminology</a>
<a href="/pages/techniques.html">Techniques</a>
<a href="/pages/use-cases.html">Use Cases</a>
<a href="/pages/model-types.html">Model Types</a>
<a href="/pages/prompts.html">Prompt Guide</a>
<a href="/pages/math.html">Math & Concepts</a>
<a href="/pages/chat.html">Chat</a>
</div>
<button class="dark-toggle" id="darkToggle" aria-label="Toggle dark mode">🌙</button>
</div>
</nav>
<script>
(function(){
var btn = document.getElementById('darkToggle');
var saved = localStorage.getItem('theme');
if(saved === 'dark' || (!saved && window.matchMedia('(prefers-color-scheme: dark)').matches)){
document.documentElement.setAttribute('data-theme','dark');
btn.textContent = '☀️';
}
btn.addEventListener('click', function(){
var isDark = document.documentElement.getAttribute('data-theme') === 'dark';
if(isDark){
document.documentElement.removeAttribute('data-theme');
btn.textContent = '🌙';
localStorage.setItem('theme','light');
} else {
document.documentElement.setAttribute('data-theme','dark');
btn.textContent = '☀️';
localStorage.setItem('theme','dark');
}
});
})();
</script>
<div class="hero">
<h1>AI Cheat Sheet</h1>
<p>Your quick reference for artificial intelligence terminology, techniques, and real-world applications.</p>
</div>
<div class="container">
<h2 class="section-title">Browse Topics</h2>
<div class="cards">
<a href="/pages/terminology.html" class="card-link">
<div class="card">
<h3>📖 Terminology</h3>
<p>Key AI terms from ML and NLP — supervised learning, fine-tuning, tokens, embeddings, and more.</p>
</div>
</a>
<a href="/pages/techniques.html" class="card-link">
<div class="card">
<h3>⚙️ Techniques</h3>
<p>How AI models are trained and improved — backpropagation, RLHF, quantization, RAG, and more.</p>
</div>
</a>
<a href="/pages/use-cases.html" class="card-link">
<div class="card">
<h3>🎯 Use Cases</h3>
<p>Where AI is used in the real world — healthcare, finance, creative work, customer support, and more.</p>
</div>
</a>
<a href="/pages/model-types.html" class="card-link">
<div class="card">
<h3>🤖 Model Types</h3>
<p>LLMs, diffusion models, CNNs, GANs, transformers, and other AI architectures explained.</p>
</div>
</a>
<a href="/pages/prompts.html" class="card-link">
<div class="card">
<h3>✍️ Prompt Engineering</h3>
<p>How to write effective prompts — zero-shot, few-shot, chain-of-thought, and structured prompts.</p>
</div>
</a>
<a href="/pages/math.html" class="card-link">
<div class="card">
<h3>📐 Math & Concepts</h3>
<p>Underlying concepts — loss functions, attention, temperature, perplexity, and accuracy metrics.</p>
</div>
</a>
</div>
<h2 class="section-title">Quick Start</h2>
<div class="def-card">
<span class="category">Core Concept</span>
<h3>What is Artificial Intelligence?</h3>
<p>AI refers to computer systems designed to perform tasks that normally require human intelligence — including learning, reasoning, problem-solving, perception, and language understanding. Modern AI is powered by machine learning, where models learn patterns from data rather than following explicit rules.</p>
</div>
<div class="def-card">
<span class="category">Quick Fact</span>
<h3>LLM vs Traditional ML</h3>
<p>Traditional ML models are built for one specific task (e.g., classify spam). Large Language Models are general-purpose — trained on massive text corpora to understand and generate human language across countless tasks.</p>
</div>
<h2 class="section-title">Interactive</h2>
<a href="/pages/chat.html" class="card-link">
<div class="card">
<h3>💬 Chat</h3>
<p>Try AI right now — ask questions, brainstorm ideas, get explanations, or just experiment. Powered by a real LLM API.</p>
</div>
</a>
</div>
<footer>AI Cheat Sheet &mdash; A learning reference for artificial intelligence</footer>
</body>
</html>