AI (artificial intelligence)
314 courses 15 categories
Part of Learn Data & AI
AI and machine learning as a topic spans everything from classical statistical learning to the foundation models reshaping how software is built. The category covers two distinct skill tracks. The first is applied AI engineering — integrating language models, building RAG pipelines, designing agents, and shipping AI features in production. The second is traditional machine learning — supervised learning, neural networks from scratch, the math underneath modern systems.
The frontier moved fast through 2024-2025. Closed-model providers (OpenAI, Anthropic, Google, xAI) compete on benchmarks. Open-weight models (Llama, Qwen, Mistral, DeepSeek) reached parity for most tasks at a fraction of the cost when self-hosted. Toolchains stabilized: PyTorch dominates research, vLLM and llama.cpp run inference, Hugging Face hosts the ecosystem, and a new layer of agentic frameworks (LangGraph, OpenAI Agents SDK, CrewAI) handles orchestration.
What you'll find under this topic
- Large language models: transformers, fine-tuning, RLHF, DPO, model evaluation
- Applied AI: ChatGPT and Claude integration, prompt engineering, AI agents
- Retrieval-Augmented Generation: chunking, embeddings, vector stores (pgvector, Pinecone, Qdrant), reranking
- Computer vision: OpenCV, image generation (Stable Diffusion, FLUX), object detection
- Math foundations: linear algebra, probability, calculus for ML
- Production AI: cost control, evaluation, prompt-injection defense, observability
The roles hiring against this topic include ML engineers at companies like OpenAI, Anthropic, Google DeepMind, and Meta AI; AI product engineers at any SaaS company adding LLM features; and applied scientists at Spotify, Netflix, and Uber where recommendation systems still drive significant revenue.
Categories (15)
Courses (314)
Showing 1 – 30 of 314 courses
NewPractical course on AI development for engineers. Learn reproducible processes and improve your code with artificial intelligence.5/5
NewLearn to fully utilize the capabilities of Claude Code. Turn knowledge into effective skills and boost your productivity in software development.2h 46m
NewMaster Claude Code by acquiring practical knowledge and techniques necessary for working with the terminal and automation. A structured program will accelerate8h 21m5/5
NewStudy the creation of voice AI agents using AWS and Python. Develop an assistant with real functionalities and a deep understanding of the architecture.3h 1m5/5
NewMaster the creation of AI applications for investments using Python and LangChain. Practice developing a fintech application and understanding financial metrics7h 36m5/5
NewLearn core regression models and use them in Python. You study linear, logistic, log, and Cox models with clear steps and real data.6h 20m
NewYou learn core inferential stats like intervals, tests, ANOVA, and run them in Python. The course shows how to read messy data and make clear data decisions.9h 25m
New100% TypeScript. 100% Production-ready. 0% hype. Only real tools and experience.3h 2m5/5
NewBecome an expert in creating AI agent systems for production. Learn how to develop scalable AI agents and make them work in real-world conditions.7h 33m5/5
NewLearn to develop AI applications and agent systems with practical examples and theory. Master content generation and process automation using AI.4h 2m
NewLearn how to develop autonomous AI agents for business in practice. The course from Nomad Coders covers current frameworks and real projects.24h 27m5/5
NewThis course shows you how to build smarter AI apps with RAG. You use RAG to give LLMs fresh facts from your own data.17h 51m5/5
NewUnlock your potential as an AI/ML Engineer with five hands-on projects on AWS. This course is designed to offer you practical experience.5/5
Updated 1mo agoUnlock the full potential of AI chatbots with ChatRAG – a comprehensive Next.js build designed for launching a successful SaaS business.
Updated 1mo agoMaster AI workflow for accelerated development. Real cases and tools used by engineers. Trusted by over 200 developers.15h 31m5/5
Updated 1mo agoCreate mobile applications for iOS and Android using Cursor, mastering full-stack development and integration with modern tools.7h 39m
Updated 1mo agoStudy the principles of AI programming to remain an in-demand engineer. Accelerate the transition into the future of software development with AI coding.6h 13m
Updated 1mo agoExplore mindful development with artificial intelligence, understand the principles of how language models work, and learn to integrate them into workflows.3h 18m
Updated 1mo agoLearn how to safely and effectively integrate AI into everyday development. Practical methods, patterns, and tips will strengthen your skills without risks.1h 37m5/5
Updated 2mo agoMaster agent-based programming using AI models and tools like Claude and GPT-5.1. Create applications faster and become a systems architect.11h 58m5/5
Updated 2mo agoAn advanced course on the interaction of AI and design systems. Learn methods for implementing modern technologies to improve the quality of digital products.8h 15m5/5
Updated 2mo agoLearn to create a personal AI assistant using TypeScript in 5 days. Work with data, customize it to your needs, and apply modern techniques.3h 38m5/5
Updated 2mo agoLearn how AI and LLM models work in just a few hours. The course helps to master the technical aspects without delving into programming. Ideal for developers.8h 9m
Updated 2mo agoStudy the transition from AI coding to agent engineering. Create autonomous systems that design and test themselves, applying advanced practices.12h 53m5/5
Updated 2mo agoLearn how to turn an AI idea into a secure and compliant solution. Training on compliance and legal standards in AI projects.6h 48m
Updated 3mo agoMaster development using AI tools and create a portfolio. Prepare for a career as an AI developer and improve your skills faster and more efficiently.17h 52m
Updated 3mo agoEmbark on an interactive journey to build an AI chatbot from the ground up in this comprehensive three-hour workshop.2h 21m
Updated 3mo agoStart releasing features faster with ClaudeKit. Fifteen specialized AI agents replace boilerplate and cover the full development cycle, adapting to your stack.5/5
Updated 4mo agoStop memorizing random prompts. Instead, learn how Large Language Models (LLMs) actually work and how to use them effectively. This course will take you from be31h 45m5/5
Updated 4mo agoLearn to build streaming pipelines with Apache Kafka and Flink, create data lakes on AWS, run ML workflows on Spark, and integrate LLM models.16h 46m
Related topics
Frequently asked questions
- Is AI a good career path in 2026?
- Yes. Demand still outpaces supply across applied AI engineering, ML research, and AI product roles, and pay sits at the top of the engineering market. The biggest hiring shift since 2024 is that 'AI engineer' now usually means LLM-integration and agent work rather than training models from scratch, so a software-engineer background plus solid Python is enough to enter without a PhD.
- Do I need a math or PhD background to work in AI?
- Not for applied AI — building products with foundation models, RAG pipelines, agents, and evaluation only needs working Python and ML literacy. Deep math (linear algebra, probability, optimization) is required for ML research, model architecture work, and fine-tuning at scale. Most production AI engineering jobs sit firmly in the applied bucket.
- AI vs Machine Learning — which should I learn first?
- Start with applied AI (LLM APIs, prompts, RAG) if your goal is shipping features fast; classical ML and the math underneath make more sense if you want depth in model behaviour, fine-tuning, or research. Most engineers today learn applied AI first and pick up ML fundamentals as needed when LLM outputs need debugging or evaluation.
- What stack do AI engineers actually use day to day?
- Python is the default language. Inference talks to OpenAI, Anthropic, or open-weight models via vLLM or llama.cpp. Orchestration leans on LangGraph, OpenAI Agents SDK, or hand-rolled state machines. Storage uses pgvector, Qdrant, or Pinecone for retrieval. Evaluation runs on LangSmith, Braintrust, or in-house harnesses. PyTorch shows up for any custom training.
- How long until I can ship something real with AI?
- A working RAG prototype or simple agent is a weekend if you already write code — the APIs are well-documented and the toolchain is mature. Reaching production quality (latency budgets, eval harness, cost control, prompt-injection defense) is typically 2–4 months of consistent project work. Hireable depth in applied AI takes 6–12 months.