Tags starting with A:
A/B-testing:
- From A/B to RL (2/3): Bandits and Thompson Sampling 15 Jun 2026 Move from fixed A/B testing to online learning with Bayesian multi-armed bandits, probability matching, and Thompson sampling.
- From A/B to RL (1/3): Bayesian A/B Testing 15 Jun 2026 Connect fixed A/B testing to Bayesian posterior uncertainty over click-through rates, and use that uncertainty to make one final decision.
- Beta Priors and Pólya Urns for Binary Decisions 17 May 2026 See how Beta-Bernoulli updates work one observation at a time in A/B tests and bandits, and how the Pólya urn explains self-reinforcing feedback.
- Beta distribution: Probabilities and binary data 14 May 2026 Understand the Beta distribution as a model for unknown success probabilities, and derive the Beta-Bernoulli update for binary data.
- Multi-armed bandit implementation 26 Sep 2018 How to implement a Bayesian multi-armed bandit model in Python, and use it to simulate an online test. The model is based on the beta distribution and Thompson sampling.
Agents:
- ReAct agent with OpenAI function calling 21 Jan 2024 Learn how to build a basic ReAct agentic loop with OpenAI Function Calling, where an LLM reasons, chooses tools, and executes multi-step tasks in a Python notebook.
- ReAct REPL Agent 07 Apr 2023 GPT-Based ReAct Python REPL Agent with access to method retrieval. Can execute simple workflows by chaining API calls.