AI (artificial intelligence)
328 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 (328)
Showing 1 – 30 of 328 courses
NewLearn how to use a system of rules to maintain high code quality by applying directives and recommendations in a project using Claude Code.53m
NewMaster the skills to adapt language models to your tasks. Learn how to create effective skills and avoid the risks of using off-the-shelf solutions.1h 51m
NewDiscover a rich set of custom skills for Claude Code. Simplify development and auditing with ready-made AI tools and commands.
NewLearn how to create an npm package for CLI Counselors using TypeScript and Node.js. A complete practical course with testing and automation through GitHub Actio38m
NewExplore the creation of the SOLO application: manage development in one place. A unified interface for npm, composer, and servers, with support for multiple pro2h 3m
NewLearn code audit skills to analyze and improve the codebase. The course covers tools for systematic analysis, project cleanup, and working with reports.30m
NewTake the course and create a desktop application called Loadout to manage AI tools using modern technologies such as Rust and React.11m
NewMaster the development of the AI-native platform faster.dev using modern technologies, including Laravel and React, to create efficient SaaS products.22m
NewStudy the universal principles of system design for AI applications and platforms. Apply the knowledge to develop complex digital systems and manage them.4h 22m
NewPractical Guide to Mastering Claude Code. Learn the basics and key features step by step to confidently use the tool.1h 7m
NewStudy Codex from the basics to advanced techniques. The course will help you use it as an intelligent assistant, enhancing your skills and increasing productivi3h 10m
NewLearn how to create robust automations with n8n and AI. This includes AI agents, email processing, content generation, and image generation.
NewStart learning Python from scratch: set up the environment, learn the basics, and gain confident programming skills for your own projects.2h 40m
NewStudy AI reasoning models from scratch. Learn how they work, are trained, and applied by exploring real-world behavior analysis and reasoning steps.4h 37m
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
Updated 1mo agoLearn core regression models and use them in Python. You study linear, logistic, log, and Cox models with clear steps and real data.6h 20m
Updated 1mo agoYou 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
Updated 1mo ago100% TypeScript. 100% Production-ready. 0% hype. Only real tools and experience.3h 2m5/5
Updated 1mo agoBecome 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
Updated 1mo agoLearn to develop AI applications and agent systems with practical examples and theory. Master content generation and process automation using AI.4h 2m
Updated 1mo agoLearn how to develop autonomous AI agents for business in practice. The course from Nomad Coders covers current frameworks and real projects.24h 27m5/5
Updated 1mo agoThis 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
Updated 1mo agoUnlock 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
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.