All checks were successful
Build and Push Container / build-and-push (push) Successful in 13s
100 lines
3.8 KiB
HTML
100 lines
3.8 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="index.html" 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>
|
|
</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">
|
|
<div class="card">
|
|
<h3>📖 Terminology</h3>
|
|
<p>Key AI terms from ML and NLP — supervised learning, fine-tuning, tokens, embeddings, and more.</p>
|
|
</div>
|
|
<div class="card">
|
|
<h3>⚙️ Techniques</h3>
|
|
<p>How AI models are trained and improved — backpropagation, RLHF, quantization, RAG, and more.</p>
|
|
</div>
|
|
<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>
|
|
<div class="card">
|
|
<h3>🤖 Model Types</h3>
|
|
<p>LLMs, diffusion models, CNNs, GANs, transformers, and other AI architectures explained.</p>
|
|
</div>
|
|
<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>
|
|
<div class="card">
|
|
<h3>📐 Math & Concepts</h3>
|
|
<p>Underlying concepts — loss functions, attention, temperature, perplexity, and accuracy metrics.</p>
|
|
</div>
|
|
</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>
|
|
</div>
|
|
|
|
<footer>AI Cheat Sheet — A learning reference for artificial intelligence</footer>
|
|
|
|
</body>
|
|
</html>
|