Advancing AI for biology: Teaching models to design and characterize antibodies

Three new papers from Amazon Bio Discovery address bottlenecks in AI-driven antibody engineering, from benchmarking binding predictors to experimentally validating de novo design.

Key takeaways
  • Amazon Bio Discovery has developed three AI approaches to accelerating antibody drug design: MochiBind for ranking binding candidates by sequence alone, CA-MAP for predicting antibody developability properties while accounting for lab-specific batch effects, and an agent-guided design system validated experimentally on a novel cancer target.
  • MochiBind reframes binding affinity prediction as relative ranking rather than absolute values, achieving 10% higher accuracy than structure-based competitors while enabling 100-fold faster inference, scoring 200,000 antibody pairs in 13 seconds on a CPU.
  • CA-MAP addresses batch effects through context-aware learning, maintaining 0.99 correlation accuracy even with simulated batch offsets where standard models degrade to 0.58, while using 1/200th as many parameters and running 200x faster than competing large language models.
  • The end-to-end design campaign successfully generated 46 validated strong binders against a desmoplastic small round cell tumor target with no prior structural or antibody information.
Was this answer helpful?

Monoclonal antibodies are one of the workhorses of biopharmaceutical development, with over 100 FDA-approved drugs and well-established manufacturing, regulatory, and clinical-development pathways. Yet conventional antibody discovery remains hampered by mounting costs and long timelines, typically six to twelve months to get from a target to a lead candidate.

By designing and characterizing therapeutic antibodies computationally, AI promises to make development cheaper, faster, and more flexible. But scientific questions abound.

Development of an antibody-based drug hinges on three factors: the best binding site on the target, which candidates bind to it most tightly, and whether any of them can survive manufacturing and the clinic. For each, the field has predictive models that do well on familiar targets and assays but considerably worse on unfamiliar ones. Benchmarks built around in-distribution accuracy have made that gap difficult to measure — and to close.

Three papers from our science team at Amazon Bio Discovery, an AI-powered application that gives scientists access to biological AI models and integrated lab services to design and test novel drug candidates, tackle research questions about each of these three factors. Two are peer-reviewed journal papers on prediction: ranking candidates by binding strength and flexibly predicting developability. The third brings prediction into an end-to-end design process, navigates the selection of binding sites with an agent, and delivers experimentally validated antibody hits against a novel cancer target.

AI searches a vast molecular landscape to find the most promising target for antibody design.

Ranking binders from sequence alone

One of the biggest questions in antibody design is which candidates bind the best. In "A systematic evaluation framework for universal antibody-antigen binding affinity prediction and candidate recommendation", published in iScience, we propose a new framework to assess binding affinity predictors and train a new sequence-based predictor, MochiBind.

Most affinity predictors are evaluated on their ability to predict the absolute binding affinity, on antigens that appear in their training data, against test sets that contain few or no nonbinders. Each of these characteristics makes the evaluation easier than the intended application. Absolute affinity values are not comparable across assays, and performance degrades for antigens the model has not seen. The practical use case, meanwhile, involves ranking a pool of thousands of candidates, most of which don’t bind to the target at all, to pick the ones worth testing in the lab. Surveying seven prior studies, we found that none satisfied all the conditions necessary to train a reliable universal predictor.

We therefore reframed the task. Rather than predicting an absolute number, MochiBind predicts which of two antibodies against the same antigen binds more tightly. We begin by using a pretrained protein language model (ESM-2) to embed residues of antibody-antigen complexes in a representational space. We then compute the mean of each complex’s residue embeddings, to give it a single embedding.

A specially trained network layer projects these embeddings into a lower-dimensional space, and predicts relative binding strength from the difference between the two projections.[HL2]  Pairwise comparisons are then aggregated into a global ranking over the candidate pool using TrueSkill, a Bayesian rating algorithm originally developed for ranking video game players based on match outcomes. No structural input is required at any stage.

This formulation has two practical advantages: relative orderings are more consistent across assays than absolute values, so the training signal is less sensitive to measurement noise, and the output is the ranked list the discovery process needs.

Our paper also presents a novel evaluation framework. We used the AlphaBind dataset, which covers four antigen systems (targeting TIGIT, PD-1, HER2, and theSARS-CoV-1 RBD) with roughly 30,000 experimentally characterized variants for each and pairwise sequence similarity between antigens that’s close to zero. The protocol is strictly cross-antigen: train on two antigens, validate on a third, and test on the fourth, rotating so that each serves as the held-out system once. We then standardized two metrics: (1) pairwise accuracy and (2) retrieval accuracy and precision at top K, which measure how many of a model's K recommendations are experimentally confirmed strong binders.

MochiBind achieved higher pairwise accuracy than every structure-based baseline on all four held-out antigens, outperforming the closest competitor by almost 10% on average. In terms of ranking performance, MochiBind also achieved the highest retrieval accuracy on all four antigens and the highest retrieval precision (lowest false-positive rate) on three out of four. It also scored 200,000 antibody pairs in roughly 13 seconds on a CPU, a more than 100-fold inference speedup over competing methods that should enable the screening of very large design libraries.

BioDiscovery-Figure01.png
MochiBind architecture and the pairwise-to-ranking evaluation framework. (A) We benchmark on a large pool of antibodies per antigen, varying in mutations and affinity. (B) MochiBind embeds an antibody pair and their shared antigen with a protein language model, projects them into a common latent space, and predicts relative binding strength from the difference. (C) Pairwise winners are aggregated into a global ranking. (D) The ranking recommends top candidates, scored by retrieval accuracy and precision at top K.

Learning to predict antibody properties in context

Proteins that bind tightly to their targets but clump together or degrade in the bloodstream or provoke an immune response are not effective or safe as drugs. Most attempts to predict such properties from biological data encounter the same problem: batch effects, or systematic differences in the way different labs handle samples or conduct experiments that lead to predictable deviations in measurement — deviations known as batch offsets. A model fine-tuned on one lab's data quietly inherits its offsets.

In "Context-aware multi-property antibody predictor: A novel framework integrating text and protein language models", in npj Systems Biology and Applications, we address batch effects during inference. Our model — the context-aware multiproperty antibody predictor, or CA-MAP — takes a prompt containing a variable number of example antibodies with their measured properties, followed by a query antibody and the name of the property to predict. When the examples come from the same lab as the query, their measured properties capture the batch offset. The model’s input — its context — thus includes the information it needs to adjust for batch effects without retraining.

Getting a model to use that context, however, is not straightforward. A model trained on data from a single source can learn to ignore the examples — whose measurements are systematically skewed, after all — and rely on the query sequence alone. Our training strategy, AB-context-aware, prevents this by applying a hidden random transformation to both the context properties and the expected answer, resampled for every prompt. Under this scheme, the transformation can be recovered only from the context, so the model must use it.

We measured the effect on a fine-tuned domain-specific multimodal LLM, TxGemma, predicting hydrophobicity. Without batch effects, standard fine-tuning and AB-context-aware training perform comparably, a correlation with ground truth of 0.99 (according to Spearman’s rank correlation coefficient, where 1 is perfect correlation). With a simulated additive batch effect in the 0–0.3 range, standard fine tuning falls to a 0.58 correlation, while the context-aware model remains at 0.99.

CA-MAP has a relatively small multimodal architecture combining text and proteins. Sequences (encoded with ESM-2), property names (encoded with sentence embeddings), and numerical values each have dedicated encoders and projectors, and a state space model based on the sequence-modeling architecture MAMBA composes them. Trained on a synthetic dataset of 876,898 antibody-heavy chains covering six developability properties, CA-MAP achieves a Spearman correlation (denoted ρ) greater than 0.8 on several of them and outperforms the fine-tuned TxGemma baseline across all four properties tested jointly.

The architecture is also considerably cheaper to train and run, with roughly 182,000 trainable parameters to TxGemma’s 40 million, and it’s about 200 times as fast per prompt at inference.

Because properties are specified as text, CA-MAP can also be queried for properties absent from its training data. In one set of experiments, we trained CA-MAP on only four of the dataset’s six developability properties and tested it on the other two (positive-charge heterogeneity, or PosCh, and immunogenicity). When we used only the two target properties as context, immunogenicity prediction reached ρ = 0.25; with all six correlated properties in the context, ρ = 0.73. PosCh improved from ρ = 0.08 to ρ = 0.73 under the same comparison. These gains indicate that the model is drawing on correlations between developability properties, which suggests that expensive assays could be estimated in part from cheaper ones.

BioDiscovery-Figure02.png
CA-MAP architecture, tokenization scheme, and unseen-property results.

Designing antibodies with AI, validating them in the lab

In our third paper, "Agent-guided de novo design of nanobody binders against a novel cancer target", which was presented as a Spotlight at the ICML 2026 Workshop on Generative and Agentic AI for Biology and received the Best Paper Runner-Up Award, we bring predictive and generative antibody models together to design therapeutic nanobodies from scratch in a real drug discovery project.

The target antigen for the design project — or “campaign”, as it’s known in the industry — was chosen to reflect real clinical need: a cell surface target for desmoplastic small round-cell tumors, a rare and aggressive pediatric cancer. Our collaborators at the Dr. Nai-Kong V. Cheung’s Lab at Memorial Sloan Kettering Cancer Center in New York identified it by sequencing patient tumor specimens for proteins that (1) sit on the tumor cell surface, (2) are driven by a specific genetic error, and (3) are largely absent from healthy tissue. The target has no experimental structure and no public antibody information, so there was no template to graft, no prior campaign to affinity-mature from, and no possibility that the design models encountered this antigen during training.

One of the key decisions at the outset of a de novo design campaign is which specific regions on the antigen surface, known as epitopes or hotspots, to target. We designed a hotspot recommendation agent that orchestrates seven bioinformatics tools, which do things like determine solvent-accessible surface area, secondary structure, hydrophobicity, and sequence uniqueness against user-specified negative targets; match epitopes against 500,000 entries in NIAID’s Immune Epitope Database; and annotate domains according to the categories in the protein families (Pfam) database. Our model synthesizes these tools’ outputs into hotspot recommendations with an explicit biophysical rationale for each.

Grounding the recommendations in deterministic tool outputs focuses the search on evidence-supported regions rather than relying on the model's parametric knowledge of protein biology. Evaluated on antibody-antigen complexes from the SAbDab benchmark, the agent recovered at least one true epitope residue within its top five proposed regions about 80% of the time on a diverse holdout set. For the target antigen in our design campaign, it proposed eight hotspot regions.

We then used three generative models with different design principles — RFantibody (diffusion over protein backbones), IgGM (joint sequence-structure diffusion), and mBER (backpropagation through a structure prediction model) — to generate antibody designs that target those hotspots. Each model produced 96,000 designs, and each design was scored on properties like folding confidence (how likely the antibody is to fold into the shape necessary to bind to the target), complex quality (how likely the antibody is to form the correct binding interface with the target), and sequence liabilities (how likely the antibody sequence is to cause development or manufacturing problems), and MochiBind's sequence-based affinity estimate. Our candidate selection agent applied multi-objective Pareto filtering to ensure the retention of designs excelling on different metric combinations, and it prioritized 100,000 candidates for experimental screening.

Each candidate was synthesized and displayed on the surface of a yeast cell to be screened for whether it stuck to the target, and the designs that stuck most strongly were carried forward through two rounds of sorting and filtering. None of the 116 candidates that survived these rounds bound to an unrelated control protein, indicating that they bind specifically to the intended target, rather than being generally sticky. All 116 were then individually measured to determine how tightly they bind to the target antigen, and 46 were identified as strong binders.

These 46 binders, along with the binder and nonbinder labels from the full screen, become training data for the next design cycle: a lab-in-the-loop workflow where each round of experiments sharpens the models that propose the following round. Amazon is uniquely well positioned to run that loop , with the scientific expertise to build foundational ML for biology, the computational capacity to design and score hundreds of thousands of candidates, and a path to deliver these methods, including those like MochiBind and CA-MAP that aren’t available today, to customers through Amazon Bio Discovery, an AI-powered application that connects these biological AI models with integrated lab services so scientists can move from design to experimental validation in a single workflow.

BioDiscovery-Figure03.png
Integrated computational and experimental pipeline for de novo nanobody design.

Research areas

Related content

US, NY, New York
We are seeking a Human-Robot Interaction (HRI) Research Scientist to develop cutting-edge interactions that make robots feel alive, personal, and fun. In this role, you will focus on verbal and non-verbal conversational systems, social dynamics, memory, and long-term relationship formation between robots, their environments, and the people they interact with. Your contributions will be essential in advancing robotics by enabling expressive, socially intelligent, and trustworthy interactions between robots and humans.
US, MA, North Reading
Amazon Robotics is transforming warehouse automation through edge AI and machine learning applied to real-world robotics challenges. We're seeking a Research Scientist to advance our mobile manipulation capabilities by developing novel learning-based approaches that enable robots to navigate and manipulate objects in dynamic fulfillment environments. This role offers the opportunity to conduct original research and translate state-of-the-art findings into production systems operating at Amazon's unprecedented scale. Key job responsibilities Research and Algorithm Development: Formulate novel research problems in robot learning and manipulation, design new model architectures, validate hypotheses through rigorous experimentation, and advance the state of the art in learning-based robotics. Data Strategy and Pipeline Design: Define data requirements for research initiatives, design scalable collection and curation strategies, establish governance and provenance standards, and build reusable pipelines ensuring data quality and reproducibility. Experimentation and Scientific Validation: Design and execute experiments in simulation and real-world embodiments, develop evaluation methodologies and benchmarks, perform ablation studies and statistical analyses, and iterate systematically to advance model performance. Prototyping and Research Infrastructure: Develop clean, well-documented research codebases, build experimentation frameworks and evaluation tooling, contribute to shared training infrastructure, and implement interfaces for broader robotics integration. Scientific Leadership and Publication: Drive an independent research agenda aligned with team objectives, publish at top-tier venues (e.g., RSS, CoRL, ICRA, NeurIPS), identify research gaps through literature reviews, and present findings via technical reports and talks. Cross-Functional Collaboration: Partner with scientists, engineers, and leaders across teams to translate research into deployable solutions, mentor junior researchers, contribute to the team's scientific culture, and support integration with robotics hardware teams. A day in the life If you are not sure that every qualification on the list above describes you exactly, we'd still love to hear from you! At Amazon, we value people with unique backgrounds, experiences, and skillsets. If you’re passionate about this role and want to make an impact on a global scale, please apply! About the team Are you inspired by invention? Is problem solving through teamwork in your DNA? Do you like the idea of seeing how your work impacts the bigger picture? Answer yes to any of these and you’ll fit right in here at Amazon Robotics. We are a smart, collaborative team of enthusiastic doers that work passionately to apply innovative advances in robotics and software to solve real-world challenges that will transform our customers’ experiences in ways we can’t even image yet. We invent new improvements every day. We are Amazon Robotics and we will give you the tools and support you need to invent with us in ways that are rewarding, fulfilling and fun!
IN, HR, Gurugram
Building large-scale forecasting and optimization systems that power Amazon’s global transportation network and directly impact customer experience and cost. Key job responsibilities 1. Guide model and system design across a range of techniques, including tree-based models, deep learning (LSTMs, transformers), LLMs, and reinforcement learning. 2. Ensure models are production-ready, scalable, and robust through close partnership with stakeholders. 3. Partner with Product, Operations, and Engineering leaders to enable proactive decision-making and corrective actions. 4 Own end-to-end business metrics, directly influencing customer experience, cost optimization, and network reliability. 5. Help contribute to the broader ML community through publications, conference submissions, and internal knowledge sharing.
US, WA, Seattle
Prime Video is a first-stop entertainment destination offering customers a vast collection of premium programming in one app available across thousands of devices. Prime members can customize their viewing experience and find their favorite movies, series, documentaries, and live sports – including Amazon MGM Studios-produced series and movies; licensed fan favorites; and programming from Prime Video subscriptions such as Apple TV+, HBO Max, Peacock, Crunchyroll and MGM+. All customers, regardless of whether they have a Prime membership or not, can rent or buy titles via the Prime Video Store, and can enjoy even more content for free with ads. Are you interested in shaping the future of entertainment? Prime Video's technology teams are creating best-in-class digital video experience. As a Prime Video team member, you’ll have end-to-end ownership of the product, user experience, design, and technology required to deliver state-of-the-art experiences for our customers. You’ll get to work on projects that are fast-paced, challenging, and varied. You’ll also be able to experiment with new possibilities, take risks, and collaborate with remarkable people. We’ll look for you to bring your diverse perspectives, ideas, and skill-sets to make Prime Video even better for our customers. With global opportunities for talented technologists, you can decide where a career Prime Video Tech takes you!
US, CA, Sunnyvale
We are looking for a Senior Applied Scientist to help drive the research and development of real-time multimodal conversational AI. You will contribute across two focus areas: advancing foundation models for speech and audio, and building the post-training systems (reward modeling, reinforcement learning) that shape natural, human-like conversational behavior. You will own a significant research area and contribute across the full model lifecycle — from pre-training and architecture design through post-training alignment and real-time deployment. You will work at the frontier of what’s possible in conversational AI, with the compute, data, and runway to pursue problems that few teams in the world have the resources to tackle. As a Senior Scientist, you will drive the technical execution of your research area, contribute to the team’s roadmap, and work closely with inference engineers to ensure your models are designed for real-time production deployment. Key job responsibilities What You’ll Do Foundation Model Scaling - Help build and train large-scale multimodal foundation models for real-time speech and audio generation, from architecture design through production-scale training - Advance the scaling and efficiency of conversational models, including the relationship between data, model size, and real-time performance - Design model architectures informed by hardware constraints and inference requirements, working with inference engineers to ensure models are servable from inception - Develop training methodologies for multimodal models that jointly process and generate speech, language, and audio in real-time streaming contexts - Contribute to the state of the art on efficient architectures and training methods for conversational AI at scale Post-Training & Reinforcement Learning - Design and build reward models and reward functions for speech systems — capturing naturalness, fluency, conversational quality, and real-time responsiveness - Develop and apply reinforcement learning methods to shape conversational behavior — teaching models natural timing, responsiveness, and fluid interaction - Build parts of the post-training pipeline from SFT through RL alignment, optimized for real-time multimodal outputs rather than text-only generation - Design evaluation frameworks that capture the quality dimensions unique to real-time conversation (latency sensitivity, audio quality, prosody, interaction naturalness) Real-Time Perception & Generation - Advance the team’s capabilities in real-time perception — the ability of the model to process incoming audio/speech while simultaneously generating responses - Develop techniques for natural interactive systems where the model handles concurrent input and output with human-like timing - Work at the intersection of model architecture and production constraints to ensure multimodal capabilities function within hard real-time latency budgets
US, NY, New York
Are you excited about applying machine learning and statistical modeling to real-world systems that serve millions of customers? Amazon Connect is a cloud-based contact center service that helps businesses deliver personal, efficient customer experiences. Our team of scientists and engineers builds the AI and ML capabilities that power contact center operations and optimization. We are looking for a Senior Applied Scientist to tackle scientifically complex challenges in areas such as stochastic modeling, queueing theory, anomaly detection, and optimization. In this role, you will design and deploy novel ML models and algorithms that directly improve how businesses interact with their customers. You will work at the intersection of research and production, turning ambiguous problems into scalable solutions that shape the future of cloud-based customer service. Key job responsibilities - Design and deploy novel machine learning models and algorithms to solve complex problems in contact center operations, including forecasting, routing optimization, and anomaly detection. - Lead the scientific agenda for your team by identifying new research opportunities, proposing initiatives, and driving them from concept through production deployment. - Collaborate with engineering teams to architect and implement scalable ML systems, personally contributing significant portions of the critical scientific components. - Mentor fellow scientists and engineers through code reviews, design discussions, and scientific guidance, raising the overall technical bar of the team. - Evaluate and advance the team's ML methodology by benchmarking against current academic and industry research, and by publishing findings internally and externally when appropriate. A day in the life You might start your morning reviewing experiment results from a new forecasting model, then join a design session with engineers to discuss how to integrate it into the production pipeline. After lunch, you could be whiteboarding a novel approach to a queueing optimization problem with a fellow scientist, followed by a code review for a teammate. You will regularly present your research findings to stakeholders across the organization and contribute to the team's publication efforts. About the team Our team within Amazon Connect focuses on building intelligent, ML-driven capabilities that help businesses run their contact centers more effectively. We work closely with product, engineering, and science partners to turn research ideas into features that customers rely on every day. We value curiosity, collaboration, and scientific rigor, and we are investing in new AI capabilities that will continue to transform the customer service industry. If you want to see your research make a tangible impact at scale, this is the place to do it.
US, NY, New York
Want to work on building a Amazon Ads billion dollar business, innovate on a new product, and have a positive impact on millions of views while working with industry-leading technologies? We're growing a team to support the Sponsored Ads business that powers the advertising experience for millions of viewers and advertisers daily. Amazon is investing heavily in building a world-class advertising business and developing a collection of self-service performance advertising products that drive discovery and sales. We deliver billions of ad impressions and millions of clicks daily and are constantly challenging ourselves to create world-class products and an unparalleled shopping experience for our hundreds of millions of customers worldwide. Key job responsibilities We are building the next-gen smart ads campaign. At its core is an Intelligence Flywheel — an architecture where every component's output is designed to train models that improve every other component. The Model Layer that is meant to power every capability currently has no dedicated science ownership. As the Senior Applied Scientist on this team, you own the science that makes the flywheel turn. You will turn static, threshold-based logic into self-improving, closed-loop intelligence, and define the decision policies that let the system act autonomously with advertiser trust. Concretely, you will: * Build predictive issue-detection models that identify under-delivery, over-delivery, and performance degradation from campaign signals before they materially impact advertisers. * Design the intervention-selection policy — which autonomous action to take — framed as a contextual bandit: choose, observe, update. Engineers implement action execution; you define the policy that selects actions. * Establish causal attribution for autonomous optimization, separating the effect of our interventions from organic performance change, so improvements can be attributed and advertiser trust in autonomy can be earned. * Integrate and adapt cross-model signals. Combine creative-quality, product-relevance, and budget signals into a unified advertiser-intelligence picture, and adapt general-purpose partner models to our product reality via fine-tuning, re-ranking, or thin adaptation layers. * Close recommendation and grading feedback loops — define reward schemas for accept/reject and performance-vs-baseline signals, correlate creative-quality scores with real campaign outcomes, and feed empirical findings back to both our product and partner science teams. You will work backwards from ambiguous business problems, set the science roadmap for the Model Layer, and partner closely with the team's software engineers — who own the services, pipelines, and execution infrastructure — so that model artifacts you produce are deployed and served in production. This is a high-leverage, high-autonomy role: your outputs are consumed by multiple engineering workstreams at once, and you set the abstractions the team builds on. About the team We are focused on goal-oriented, AI powered workflows that help advertisers achieve their marketing objectives. We collect campaign goals, surface relevant data at key decision points, and provide reporting that validates decision-making. Our product suite guides advertisers in building campaigns with optimal targeting, creative formats, inventory, and bid models that are highly likely to hit their goals — reducing the need for manual intervention.
US, WA, Seattle
At Amazon Selection and Catalog Systems (ASCS), our mission is to power the online buying experience for customers worldwide so they can find, discover, and buy any product they want. We innovate on behalf of our customers to ensure uniqueness and consistency of product identity and to infer relationships between products in Amazon Catalog to drive the selection gateway for the search and browse experiences on the website. We're solving a fundamental AI challenge: establishing product relevant information at unprecedented scale with Frontier Models and Agents. The scale is staggering: billions of products, petabytes of multimodal data, millions of sellers, dozens of languages, and infinite product diversity ranging from electronics to groceries to digital content. The research challenges are immense. GenAI and VLMs hold transformative promise for catalog understanding, but we operate where traditional methods fail: ambiguous problem spaces, incomplete and noisy data, inherent uncertainty, reasoning across both images and textual data, and explaining decisions at scale. Enriching product information requires sophisticated models that reason across text, images, and structured data, all while maintaining accuracy and trust for high-stakes business decisions affecting millions of customers daily. Amazon's Catalog System Services Science team is looking for an innovative and customer-focused applied scientist to help us make the world's best product catalog even better. In this role, you will partner with technology and business leaders to build new state-of-the-art algorithms, models, and services. You will pioneer advanced GenAI solutions that power next-generation agentic shopping experiences, working in a collaborative environment where you can experiment with massive data from the world's largest product catalog, tackle problems at the frontier of AI research, rapidly implement and deploy your algorithmic ideas at scale, across millions of customers. Key job responsibilities - Formulate novel research problems at the intersection of GenAI, multimodal learning, and large-scale information retrieval. In essence, translating ambiguous business challenges into tractable scientific frameworks - Design and implement leading models leveraging frontier models, and agentic architectures to enrich catalog information at billion-product scale - Pioneer explainable AI methodologies that balance model performance with scalability requirements for production systems impacting millions of daily customer decisions - Own end-to-end ML pipelines from research ideation to production deployment, processing petabytes of multimodal data with rigorous evaluation frameworks - Represent the team in the broader science community - publishing findings, delivering tech talks, and staying at the forefront of GenAI, VLM, and agentic system research
US, WA, Seattle
What happens when you give AI the ability to remember? Not cached responses — real structured memory that compounds over time and transfers across contexts. We're building the science behind this, and we need researchers who want to own the problem end-to-end. This is a founding role on a new team. You won't inherit models or maintain someone else's pipeline. You'll define the research direction, run experiments at scale, and ship what works directly to production. Key job responsibilities As an Applied Scientist in our team, you will be responsible for the research, design, and development of new AI technologies for knowledge acquisition and retrieval. You will adopt or invent new machine learning and analytical techniques in the realm of information retrieval, knowledge representation, and large language models. Specific responsibilities include: 1. Design and implement novel approaches to knowledge extraction from heterogeneous, unstructured data sources at organizational scale. 2. Build retrieval systems that match intent to relevant knowledge across domains — solving the "right memory at the right time" problem. 3. Own the quality of memory generation: what to capture, how to structure it, when to surface it, and when to let it decay. 4. Run large-scale experiments using Amazon's compute infrastructure and massive real-world datasets. 5. Develop evaluation frameworks for a system where "quality" means something new — right knowledge, right context, right confidence level. 6. Collaborate with engineers to move from research prototype to production system in weeks, not quarters. 7. Invent new approaches to temporal knowledge management — how memories age, conflict, and compound over time. 8. Publish and patent novel approaches to knowledge acquisition and retrieval at top-tier venues. A day in the life You will solve real-world problems by getting and analyzing large amounts of data, generate insights and opportunities, execute experiments, and develop statistical and ML models. The team is driven by business needs, which requires collaboration with other Scientists, Engineers, and Product Managers across the organization. You get to influence stakeholders with clear communication skills. You innovate on behalf of the customer and strategically build features. You will mentor junior members and help them grow. About the team We're a new team within Personalization, focused on a different kind of recommendation: not "what product should this customer see" but "what knowledge should this AI use right now." Same scale, same rigor, entirely new problem space. The science is at the intersection of information retrieval, knowledge representation, and LLM reasoning — and the right approach hasn't been established yet. The team values innovation and offers a safe place to try, fail, and learn while fostering a culture of continuous improvement. Everyone is a leader and owner for everything we do as a team. We offer creative space with an entrepreneurial work environment focusing on customer obsession.
ES, B, Barcelona
How does Amazon decide which fulfillment center ships your order, which truck carries it, and how to keep promises across hundreds of millions of packages daily? How does it decide how many trucks and how much labor are required to ship orders across the network? SCOT Fulfillment Optimization (FO) owns the optimization and forecasting science behind these decisions. We are seeking Applied Scientists to join the FO Science & Tech team in Barcelona (alternatively: Luxembourg or London) with a strong academic background in optimization, machine learning, and/or time-series forecasting. • You will design and build state-of-the-art machine learning and optimization models that power Amazon's fulfillment decisions at an unprecedented scale across two core scientific pillars: • Large-Scale Optimization and Planning: Designing planning systems for order assignment and resource utilization, while balancing multi-objective cost-speed tradeoffs to enable controllers to steer millions of shipments per hour optimally. • Demand Forecasting & Predictive ML: Developing time-series forecasts for customer demand, incorporating contextual information (weather, sales, order properties), and modeling uncertainty for core planning systems. Basic qualifications • PhD in Operations Research, Applied Mathematics, Computer Science, or related field (or equivalent experience) • Strong programming skills (Python preferred; experience with optimization solvers a plus) • Research experience in one or more: • Large-scale mathematical programming (LP, MIP, decomposition methods) • Combinatorial optimization (assignment, scheduling, network flows) • Multi-objective optimization and control • Large-scale time-series forecasting (GenAI models, probabilistic forecasting, uncertainty quantification) • Causal inference (spatiotemporal causal modeling, offline policy evaluation) Preferred qualifications • Experience building optimization systems that run in production at scale • Being comfortable with ambiguity and fast iteration cycles • Publications in relevant venues Key job responsibilities Design and implement optimization and forecasting models for large-scale fulfillment problems, from order assignment to network flow control. Build research prototypes end-to-end: from problem formulation through scalable implementation to production validation. Analyse complex tradeoffs (cost, speed, capacity, accuracy) and translate findings into actionable recommendations for leadership and operations teams. Collaborate with engineers to bring science solutions into production systems serving millions of customer orders daily. A day in the life You formulate an optimization or forecasting problem on a whiteboard with teammates, then prototype it in Python with real data by the afternoon. You run experiments against production-scale datasets, iterate on the model, and present results to stakeholders who will use them to make network decisions next week. Some days you dive deep into solver performance; other days you're explaining a Pareto frontier to an operations leader. You collaborate with large engineering and product teams to bring your solutions into systems serving millions of customers. Alongside fast-turnaround prototypes, you own long-term research bets, the kind that reshape how Amazon's fulfillment network operates at scale. Your work goes live. About the team SCOT Fulfillment Optimization Science & Tech (FO SnT) is the applied research team behind Amazon's fulfillment decision-making systems. We decide how orders get assigned to warehouses, how capacity is allocated across the network, and how cost and speed tradeoffs are managed in real time, at global scale. Our models influence billions of euros in annual operational spend. They protect sites from overload during peak, reduce transportation costs and CO2 emissions, and ensure customers receive their packages when promised. Leadership relies on our science to make investment decisions worth hundreds of millions. We are practitioners of large-scale optimization: MIP formulations, decomposition methods, approximation algorithms, and parallelisation. We use machine learning where it sharpens our decisions, including forecasting, learned heuristics, and multi-armed bandits. We pick the right tool for the problem, not the fashionable one. You will work alongside Senior and Principal scientists, and collaborate with Amazon Scholars and academic partners who bring frontier research into our applied problems. We code our prototypes to be production-ready and collaborate with large engineering teams to ship systems, not papers. Above all, we have fun solving hard real-world problems at real-world speed, failing, learning, and shipping along the way.