PortableReasoning-Hero-16x9.png
Reasoning ability doesn't automatically carry across modalities. A model that solves equations fluently in text can falter when the same problem is embedded in an interactive interface. Bridging that gap requires training that explicitly reinforces reasoning under interaction.

Portable reasoning: Releasing text-bound intelligence into agentic interaction

Large language models today can solve algebra, pass academic benchmarks, and generate highly structured chain-of-thought explanations. In text-only settings, they often feel startlingly intelligent — methodical, articulate, even strategic. But place those models inside an interactive environment — ask them to click buttons, scroll pages, fill out forms, and submit answers — and their behavior changes. Their careful reasoning falters. They guess where they once deduced. They adhere to templates and produce limited procedural narration: stating what they see and what they will click next, without first forming a structured plan and acting in accordance with plan. It’s as if part of their intelligence has quietly gone offline the moment the cursor appears.

This discrepancy reveals a critical limitation: Reasoning ability doesn’t seamlessly carry across modalities. A model that can reason effectively when a question is presented as plain text does not necessarily reason as effectively when the same question is embedded inside an interactive interface. When the problem appears in a text-only prompt, the model’s objective is clear: interpret the question, deliberate, and produce an answer. But when the identical question is rendered inside a webpage — with visual layout, HTML structure, input fields, and the requirement to click or type — the cognitive demands change. The model must parse the UI, decide how to act within it, and manage state transitions, all while preserving the underlying reasoning process. In practice, this shift in modality often disrupts reasoning. Bridging this gap requires more than additional demonstrations. It requires training that explicitly reinforces reasoning under interaction. This is where reasoning reinforcement learning (Reasoning RL) becomes essential.

Reasoning is the stability layer beneath agentic behavior

Reasoning is not an optional enhancement layered onto language models; it is the core capability that enables planning, adaptation, and generalization. Strong reasoning underpins the ability to decompose complex goals into manageable steps, recover from mistakes, adapt to changing interface states, and handle tasks that deviate from familiar templates. Without it, models tend to overfit to narrow benchmarks and surface patterns.

Web environments are interactive, stateful, and often require exploration beyond familiar patterns. Every click reshapes the interface. Every new page updates the underlying state. A misread button or overlooked field can quietly snowball into total task failure. If we expect agents to handle real-world workflows reliably — booking travel, managing dashboards, navigating enterprise tools — their reasoning can’t just survive these dynamics; it has to remain stable and even sharpen under interactive pressure.

Same model, same question — when intelligence fails to transfer

During large-scale pretraining and continued fine-tuning, models are exposed to canonical academic datasets such as GSM8K, MMLU, MMMU, and ChartQA. These datasets equip models with substantial world knowledge and reasoning skills. In text-only evaluations, the results are strong. Present a mathematical equation as plain text, and the model produces a coherent chain-of-thought and a correct solution.

PortableReasoning-Spot02-1x1.png
In interactive environments, reasoning that was stable in text becomes precarious. The model still has the knowledge — but the shift in modality disrupts its ability to deploy it.

However, when the identical problem is embedded inside an interactive webpage — rendered in HTML, requiring the model read the question from the page, click into an input box and type the answer — performance drops sharply. Instead of solving the equation, the agent often generates procedural narration: it acknowledges the presence of an input field and declares its intention to type the answer, but omits meaningful symbolic reasoning.

The knowledge is still encoded in the model’s weights. The reasoning patterns were learned during pretraining, but in agent mode, they fail to activate properly. This isn’t a loss of intelligence, but a failure of transfer across modalities. The shift from text-only prompts to interactive, multimodal environments disrupts the deployment of reasoning capabilities. Understanding and addressing this gap became a focus of our experiments within Amazon AGI.

Diagnosing the modality gap with interactive benchmarks

To systematically investigate the problem, we built agentic versions of academic benchmarks—interactive “reasoning gyms” that wrap canonical datasets inside controlled environments. These gyms preserve the core intellectual challenge of the task while introducing interaction. Questions are rendered in webpages. Answers must be submitted through input fields. The model operates in agent mode rather than pure text generation.

math-gym-interface-v1.png.001.png
Sample task displayed in the math gym interface.

We built environments for multiple classic benchmarks, and each benchmark was evaluated in multiple configurations: traditional text-only zero-shot prompts, few-shot prompts where applicable, fully rendered gym environments, and variants where the question text was explicitly included in the prompt to isolate potential OCR issues.

The results clearly exposed the modality gap. On MATH, for instance, text-only zero-shot performance substantially exceeded gym performance. On GSM8K, text-only accuracy was high, but performance in the interactive environment collapsed. The model could solve the problems in principle; it simply struggled to reason when required to act within a webpage. This gap suggested that supervised fine-tuning alone was insufficient. We needed a training signal that directly reinforced reasoning under interaction.

Mathematics as a launchpad for agentic intelligence

We began by applying reinforcement learning directly to the training split of MATH gym (agentified questions from the MATH dataset). Instead of teacher-forcing step-by-step solutions, we required the model to generate fully on-policy rollouts — reasoning, acting, observing, and adapting within the live interface. Rewards were issued only when a trajectory ended in a correct submission.

The model didn't just get better at math — it became better at reasoning in interactive settings.

The early results were encouraging. After roughly one epoch over just a few thousand questions, the gap between text-only evaluation and gym evaluation shrank drastically. The model learned to parse rendered equations, carry out symbolic reasoning while navigating the page, and type correct answers into the input box. The same reasoning that previously faltered under interaction began to hold steady across perception, action, and state updates.

More surprisingly, the gains were not confined to mathematics. Although the reinforcement learning tasks focused solely on mathematics, improvements carried over to entirely different domains. Performance also improved on agentic MMLU tasks, which assess high school- to college-level world knowledge and reasoning across subjects such as history, economics, law, medicine, biology, physics, and other academic disciplines.

This suggests the improvement wasn’t just domain-specific memorization or narrow skill tuning. The model didn’t just get better at math — it became better at reasoning in interactive settings. By learning to think, act, and adapt coherently within a structured environment, it developed skills that transfer to other tasks requiring state tracking, careful reading, and deliberate decision-making. Sharpening the model on MATH produced meaningful spillover effects, strengthening its agentic abilities across a broad range of domains.

Beyond math: A reasoning curriculum

Training web agents ultimately requires reinforcement learning on full, end-to-end interactive workflows. In these settings, the model is expected to navigate real webpages, fill out forms, apply filters, and scroll through dynamically loaded content. Encouraged by early experiment results and aiming to further advance the model’s agentic intelligence, we decided to introduce a dedicated reasoning RL phase prior to the web-task reinforcement learning stage. In this phase, rather than optimizing over step-level instruction execution, we confined training to domains with precise, automatically verifiable answers. This allowed us to shape the model’s internal reasoning process — problem decomposition, intermediate deduction, and self-verification — without the confounding noise of complex UI interaction. By strengthening this cognitive substrate in isolation, we ensured that subsequent web-task RL would build on a more deliberate and structured reasoning policy.

PortableReasoning-Spot01-1x1.png
After reasoning RL training, the same capabilities stabilize. The model learns not just to act but to reason while acting — and that stability transfers across domains.

We expanded the training curriculum to include multiple reasoning domains with reliable verification. In mathematics, we expanded to increasingly difficult competition problems from AMC and AIME to encourage deeper logical deduction and structured skill progression. We added coding tasks from MBPP (training split) to develop procedural and algorithmic reasoning. We also incorporated structured information understanding tasks—including ChartQA, WikiTable extraction, and scientific question answering — that require interpreting tabular and visual inputs. These environments strengthen the model’s capacity for grounded quantitative reasoning, such as extracting key values, comparing magnitudes, and inferring patterns from structured data. They encourage robust grounding by forcing the model to tie its answers directly to structured evidence.

All tasks share a key advantage: clear ground truth and dependable reward signals. Because the correct outcomes are easy to verify and inexpensive to scale, they provide an efficient source of tasks for training and systematic evaluations.

As training progressed, we observed qualitative changes. The model began generating longer, more detailed chains-of-thought. It became more willing to backtrack when intermediate deductions failed. It exhibited stronger schema understanding when parsing tables and improved quantitative interpretation of charts. Importantly, these improvements generalized across domains.

Stability and on-policy training

Maintaining stability during RL was essential. We relied on on-policy training to ensure that reasoning traces reflected the model’s own internal state rather than teacher-forced guidance. At the same time, mechanisms such as KL regularization helped prevent reward collapse and excessive invalid actions. Preserving sufficient entropy during Stage 1 training was critical to maintaining exploration capacity for subsequent large-scale web RL. The outcome was a base policy that not only strengthened core agentic intelligence, but also consistently outperformed pure supervised fine-tuning across real-world web workflows.

Structured reasoning in the wild

The benefits of reasoning-focused reinforcement learning extend beyond controlled base intelligence gym environments and become especially evident in real-world web workflows. Consider a multi-step task that involves searching, selecting dates, navigating listings, scrolling, and inspecting a detailed amenities section. In such scenarios, a baseline agent trained directly with RL on web workflow tasks often overfits to superficial chain-of-thought templates rather than developing robust reasoning capabilities. As a result, it would misinterpret the task requirements, prematurely conclude that it has completed the task, or return information without verifying the current page state.

In contrast, an agent trained with reasoning RL demonstrates more deliberate and state-aware behavior. It checks for and handles pop-up windows, reflects on the outcomes of its actions, and explicitly inspects relevant sections of the page before proceeding. Rather than following memorized navigation patterns, it interprets the task requirements and validates that the necessary conditions are met before returning an answer. The key difference is the emergence of structured, context-sensitive reasoning grounded in the current state of the environment.

This contrast becomes even clearer in tasks that require more precise interpretation of page content. For example, in a workflow that involved counting reviews containing a specific term, the baseline agent again exhibited brittle behavior: it scrolled aimlessly, failed to isolate the relevant information, and ultimately terminated with an error. In contrast, the agent trained with reasoning-focused RL approached the task methodically. It recognized when critical information was not immediately visible, navigated deliberately to the appropriate sections, and refined its search. Rather than executing arbitrary action sequences, it formed and tested hypotheses, using intermediate observations to guide subsequent steps. This pattern of deliberate exploration and verification further illustrates how reasoning RL promotes coherent, state-aware problem solving rather than superficial pattern matching.

Reasoning as a reinforced habit

During large-scale pretraining, models internalize latent reasoning patterns across text, code, and instruction data. However, downstream fine-tuning for agent efficiency can suppress these patterns, encouraging shorter, more procedural outputs. Reasoning RL reactivates and amplifies these latent capabilities by rewarding structured, goal-directed reasoning under interaction.

The training loop repeatedly reinforces a pattern: observe the environment, think through its implications, execute a targeted action, verify the result, and adjust if necessary. Over time, this loop becomes internalized. The model stops treating webpages as scripts to execute and begins treating them as environments to reason within.

Reliable agents start with portable reasoning

The key lesson is that modality alignment depends on deliberately strengthening reasoning capabilities. Before scaling complex web RL on open-ended tasks, it is beneficial to first reinforce the model’s reasoning substrate in controlled, verifiable domains. A structured curriculum of reasoning gyms enables reliable transfer across modalities, restores suppressed capabilities, and promotes cross-domain generalization — ultimately producing a more stable and intelligent base policy for subsequent web-scale training.

Reliable agents do not emerge solely from larger models or more trajectories. They emerge when reasoning is deliberately strengthened as a fundamental skill for web interactions. If we want agents that can plan, recover, adapt, and generalize in real-world workflows, we must train them not just to act—but to reason while acting. Reasoning RL is not an auxiliary optimization: it is a foundational step toward agentic intelligence that is coherent, transferable, and robust.

Meiqi Sun joins cognitive scientist Dr. Danielle Perszyk to discuss the shift from simple action execution to high-reasoning agents and why teaching models to reason requires letting them struggle.

Research areas
  • Machine learning

Related content

US, WA, Bellevue
The Amazon Middle Mile Science team is seeking an Applied Scientist to be part of a team solving complex airline operations problems to reduce cost and improve performance. You will work closely with product, research science and technical leaders throughout Amazon Air, Amazon Delivery Technology and and will be responsible for influencing funding decisions in areas of investment that you identify as critical future product offerings. You will partner with software developers and data scientists to build end-to-end data pipelines and production code, and you will have exposure to senior leadership as we communicate results and provide scientific guidance to the business. You will analyze large amounts of business data, build the or models that will enable us to continually delight our customers worldwide. The ideal candidate will have extensive experience in Science work, business analytics and have the aptitude to incorporate new approaches and methodologies while dealing with ambiguities. Excellent business and communication skills are a must to develop and define key business questions and build models that answer those questions. You should have a demonstrated ability to think strategically and analytically about business, product, and technical challenges. Further, you must have the ability to build and communicate compelling value propositions, and work across the organization to achieve consensus. This role requires a strong passion for customers, a high level of comfort navigating ambiguity, and a keen sense of ownership and drive to deliver results. Key job responsibilities - Partnership with the engineering and operations to drive modeling and design for complex business problems. - Drive full life-cycle projects. - Design and prototype decision support tools (product) to automate standardized processes and optimize trade-offs across the full decision space. - Execute complex modeling analyses to aid management in making key business decisions and set new policies.
US, CA, Pasadena
The Amazon Center for Quantum Computing in Pasadena, CA, is looking to hire a Fabrication R&D Scientist with experience in semiconductor process development who will aid in Amazon’s effort to bring cloud quantum computing services to its worldwide customer base. You will join a multi-disciplinary team of scientists, and hardware and software engineers working at the forefront of quantum computing. Through your work inside and outside of the cleanroom environment in the fabrication research and development group, you will solve problems related to developing next-generation quantum processors. Candidates must have a demonstrated background in sound scientific and engineering principles, and must have excellent data analysis, bias for action, problem solving, and communication skills, and be highly motivated and curious to research and learn new technical topics as needed. As a Fab R&D scientist you will be expected to work on new ideas and stay abreast of novel approaches in fabricating and packaging superconducting quantum processors. Working effectively within a team environment is critical. Diverse Experiences Amazon values diverse experiences. Even if you do not meet all the preferred qualifications and skills listed in the job description, we encourage candidates to apply. If your career is just starting, hasn’t followed a traditional path, or includes alternative experiences, don’t let it stop you from applying. Work/Life Balance Our team puts a high value on work-life balance. It isn’t about how many hours you spend at home or at work; it’s about the flow you establish that brings energy to both parts of your life. We believe striking the right balance between your personal and professional life is critical to life-long happiness and fulfillment. We offer flexibility in working hours and encourage you to find your own balance between your work and personal lives. Mentorship & Career Growth We’re continuously raising our performance bar as we strive to become Earth’s Best Employer. That’s why you’ll find endless knowledge-sharing, mentorship and other career-advancing resources here to help you develop into a better-rounded professional. Export Control Requirement Due to applicable export control laws and regulations, candidates must be either a U.S. citizen or national, U.S. permanent resident (i.e., current Green Card holder), or lawfully admitted into the U.S. as a refugee or granted asylum, or be able to obtain a US export license. If you are unsure if you meet these requirements, please apply and Amazon will review your application for eligibility. Key job responsibilities Responsibilities include developing and optimizing processes to fabricate high-coherence superconducting qubits; developing advanced 3DI interconnect and routing technologies for integrating superconducting quantum technologies; analyzing inline metrology and electrical test data; developing and maintaining integration documentation, design rules, and standard operating procedures; interacting with project leads to provide feedback that continuously improves different processes; staying updated with the latest advancements and industry trends in process integration and apply knowledge to improve processes and drive innovation providing technical guidance and support to junior colleagues, fostering a collaborative and knowledge-sharing work environment. A day in the life The candidate will develop novel technologies using micro-/nano-fabrication techniques inside the cleanroom (independently or in collaboration with other scientists, engineers, and technicians) for next-generation quantum computing. Outside the cleanroom, the candidate will plan experiments, analyze data, and conceive future innovations.
US, WA, Seattle
As part of the AWS Applied AI Solutions organization, we're advancing the frontier of trust and safety systems for cloud-based communication services. Our vision is to be the trusted foundation for transforming every business with Amazon AI teammates. Our mission is to deliver turnkey, enterprise-grade foundational AI capabilities that create delightful AI powered solutions. We're building sophisticated AI systems that protect infrastructure from evolving threats while enabling legitimate high-volume users to operate without friction, with messaging services at scale as a key application area. Key job responsibilities - Develop advanced machine learning approaches and agentic systems that autonomously adapt to evolving threat patterns across cloud communication services - Create behavioral detection models that quickly identify malicious patterns after onboarding rather than creating friction during signup - Design intelligent resource allocation algorithms that optimize service delivery based on real-time feedback - Develop frameworks operating at scale across diverse usage patterns, analyzing hundreds of thousands of daily active customers - Research novel approaches combining AI agents with trust and safety systems to solve complex security problems - Collaborate with engineering teams to integrate science components into production systems - Conduct rigorous experimentation and establish evaluation frameworks to measure solution performance A day in the life As an Applied Scientist, you'll develop fraud detection algorithms and AI-powered security systems while maintaining a clear path to customer impact. You'll investigate novel approaches to behavioral analysis, develop methods for real-time reputation assessment, and validate ideas through rigorous experimentation. You'll collaborate with other scientists and engineers to transform research insights into scalable solutions, work directly with enterprise customers to understand requirements, and help shape the future of cloud security technology. About the team Our team is a central science organization supporting multiple product teams across AWS Core Services. We tackle fundamental challenges in AI and machine learning that require novel approaches beyond off-the-shelf solutions. Working at the intersection of machine learning, large language models, and domain-specific applications, we develop practical techniques that advance the state-of-the-art while maintaining a clear path to customer impact. Our team builds deep domain expertise across geospatial intelligence, trust and safety systems, autonomous operations, and other critical areas, collaborating closely with engineering teams to transform research insights into scalable production solutions.
US, CA, San Francisco
We are seeking a Product Manager, Data Strategy & Physical AI to define and execute the long-term product vision for FAR's AI-powered robotics platform. The intersection of foundation models and physical intelligence is creating a once-in-a-generation opportunity to reimagine how intelligent systems perceive, reason, and act in the real world. We need a visionary product leader who can treat data as our primary competitive moat and translate research frontiers into scalable, production-grade capabilities. In this role, you will champion our core data strategy for foundation model creation, building a partner and tool ecosystem to systematically acquire, label, and iteratively improve physical AI datasets. You will architect a continuous data collection flywheel across deployed robot fleets, transforming real-world kinematics, video, and force-torque telemetry from edge operations back into high-fidelity training tokens. Recognizing the limitations of real-world environments, you will also lead the strategy to create high-fidelity synthesized datasets, utilizing advanced physics engines and simulation to generate diverse training tokens at massive scale. Key job responsibilities Data Acquisition & Labeling Ecosystem: Establish the partnerships, tools, and vendor pipelines necessary to acquire, curate, and continuously label multi-modal datasets for training large-scale models. Fleet Data Flywheel Infrastructure: Architect the framework for a continuous data flywheel that securely streams high-frequency kinematics, egocentric video, and force-torque telemetry from real-world robot fleets back into the training loop. Synthetic Data & Simulation Strategy: Define the strategy for generating high-fidelity, physics-aligned synthesized datasets using advanced simulation environments to scale training tokens for edge-case scenarios and long-horizon tasks. Data Compliance & Governance: Partner with operations, privacy, legal, and security teams to build enterprise-grade data management pipelines that programmatically enforce data minimization, anonymization, and CCPA/GDPR compliance. Data Quality & Token Curation: Implement automated telemetry filtering and dataset pruning strategies to identify high-value operational logs, eliminate redundant fleet data, and optimize training compute costs. Cross-Functional Physical AI Delivery: Act as the strategic bridge between machine learning research scientists, simulation developers, robotics engineers, and hardware teams to deliver data-ready platform features that improve physical reliability. About the team At Frontier AI & Robotics, we're not just advancing robotics - we're reimagining it from the ground up. Our team is building the future of intelligent robotics through frontier foundation models and end-to-end learned systems. We tackle some of the most challenging problems in AI and robotics, from developing sophisticated perception systems to creating adaptive manipulation strategies that work in complex, real-world scenarios. What sets us apart is our unique combination of ambitious research vision and practical impact. We leverage Amazon's computational infrastructure and rich real-world datasets to train and deploy state-of-the-art foundation models. Our work spans the full spectrum of robotics intelligence - from multimodal perception using images, videos, and sensor data, to sophisticated manipulation strategies that can handle diverse real-world scenarios. We're building systems that don't just work in the lab, but scale to meet the demands of Amazon's global operations. Join us if you're excited about pushing the boundaries of what's possible in robotics, working with world-class researchers, and seeing your innovations deployed at unprecedented scale.
ES, M, Madrid
Are you interested in building the measurement foundation that proves whether targeted, cohort-based marketing actually changes customer behavior at Amazon scale? We are seeking an Applied Scientist to own measurement and experimentation for our Lifecycle Marketing Experimentation roadmap within the PRIMAS (Prime & Marketing Analytics and Science) team. In this role, you will design and execute rigorous experiments that measure the effectiveness of audience-based marketing campaigns across multiple channels, providing the evidence that guides marketing strategy and investment decisions. This is a high-impact role where you will build measurement frameworks from scratch, design experiments that isolate causal effects, and establish the experimental standards for lifecycle marketing across EU. You will work closely with business leaders and the senior science lead to answer critical questions: does targeting specific cohorts (Bargain hunters, Young adults) improve efficiency vs. broad campaigns? Which creative strategies drive behavior change? How should we optimize marketing spend across channels? Key job responsibilities Measurement & Experimentation Ownership: 1. Own measurement end-to-end for lifecycle marketing campaigns – design experiments (RCTs, geo-tests, audience holdouts) that measure campaign effectiveness across marketing channels 2. Build measurement frameworks and experimental best practices that work across different activation platforms and can scale to multiple campaigns 3. Establish experimental standards and tooling for lifecycle marketing, ensuring statistical rigor while balancing business constraints Causal Inference & Analysis: 1. Apply causal inference methods to measure incremental impact of marketing campaigns vs. counterfactual 2. Navigate measurement challenges across different platforms (Meta attribution, LiveRamp, clean rooms, onsite tracking) 3. Analyze experiment results and provide optimization recommendations based on statistical evidence 4. Establish guardrails and success criteria for campaign evaluation About the team The PRIMAS team, is part of a larger tech tech team called WIMSI (WW Integrated Marketing Systems and Intelligence). WIMSI core mission is to accelerate marketing technology capabilities that enable de-averaged customer experiences across the marketing funnel: awareness, consideration, and conversion.
US, WA, Seattle
Amazon Search is reinventing how customers find products through natural-language and semantic understanding. We are looking for an Applied Scientist II to push the science behind Natural Language Search that interprets complex, constraint-rich shopping queries, retrieves and ranks the most relevant products. You will build and ship large-scale relevance and ranking models that measurably reduce the rate at which customers see irrelevant results, working on problems that span query understanding, semantic matching, and contextual ranking at Amazon scale. Key job responsibilities - Design, train, and ship deep-learning ranking and semantic-matching models that improve search relevance and reduce how often customers see irrelevant results, across hard query types. - Build the training data and evaluation methods that make these models work: synthetic and historical labels, hard-negative mining, and targeted sampling at the cases where search fails. - Develop signals that match product attributes to what the customer actually asked for. - Run offline and online A/B experiments, analyze precision/recall tradeoffs, and iterate to launch. - Work with engineers and scientists across teams to take models from prototype to production at Amazon scale. A day in the life You work alongside scientists and engineers on some of the hardest open problems in search relevance, teaching models to understand what customers really mean when they ask for something specific and nuanced. A typical day blends model development and data curation with sharp experiment analysis: diagnosing where search breaks down for a query segment, designing the fix, and proving the gains through offline metrics and live A/B tests that reach real Amazon customers. The work spans the full range, from surgical fixes that resolve stubborn failure pattern to broad modeling changes that move relevance for millions of queries at once. You'll see your ideas go from whiteboard to production fast, present results regularly to wider team, and help shape the team's relevance roadmap worldwide. About the team We are the science team behind Amazon's semantic search relevance and ranking. We own the models that understand nuanced, multi-constraint shopping queries and show products customers actually want. We operate close to production, measure ourselves on real customer-impact metrics, and run a culture of fast, rigorous experimentation. Every model decision is grounded in data.
IN, KA, Bengaluru
Alexa International is looking for passionate, talented, and inventive Senior Applied Scientists to help build industry-leading technology with Large Language Models (LLMs) and multimodal systems, requiring strong deep learning and generative models knowledge. Senior applied scientists will drive cross-team scientific strategy, influence partner teams, and deliver solutions that have broad impact across Alexa's international products and services. Key job responsibilities As a Applied Scientist II with the Alexa International team, you will work with talented peers to develop novel algorithms and modeling techniques to advance the state of the art with LLMs, particularly delivering industry-leading scientific research and applied AI for multi-lingual applications — a challenging area for the industry globally. Your work will directly impact our global customers in the form of products and services that support Alexa+. You will leverage Amazon's heterogeneous data sources and large-scale computing resources to accelerate advances in text, speech, and vision domains. The ideal candidate possesses a solid understanding of machine learning, speech and/or natural language processing, modern LLM architectures, LLM evaluation & tooling, and a passion for pushing boundaries in this vast and quickly evolving field. They thrive in fast-paced environment, like to tackle complex challenges, excel at swiftly delivering impactful solutions while iterating based on user feedback, and are able to influence and align multiple teams around a shared scientific vision. A day in the life * Analyze, understand, and model customer behavior and the customer experience based on large-scale data. * Build novel online & offline evaluation metrics and methodologies for multimodal personal digital assistants. * Fine-tune/post-train LLMs using advanced and innovative techniques like SFT, DPO, Reinforcement Learning (RLHF and RLAIF) for supporting model performance specific to a customer’s location and language. * Quickly experiment and set up experimentation framework for agile model and data analysis or A/B testing. * Contribute through industry-first research to drive innovation forward. * Drive cross-team scientific strategy and influence partner teams on LLM evaluation frameworks, post-training methodologies, and best practices for international speech and language systems. * Lead end-to-end delivery of scientifically complex solutions from research to production, including reusable science components and services that resolve architecture deficiencies across teams. * Serve as a scientific thought leader, communicating solutions clearly to partners, stakeholders, and senior leadership. * Actively mentor junior scientists and contribute to the broader internal and external scientific community through publications and community engagement.
US, WA, Seattle
About us As part of the AWS Applied AI Solutions organization, our vision is to provide business applications, leveraging Amazon’s unique experience and expertise, that are used by millions of companies worldwide to manage day-to-day operations. We will accomplish this by accelerating our customers’ businesses through delivery of intuitive and differentiated technology solutions that solve enduring business challenges. Our team combines Amazon's real-world experience with state-of-art AI to create opinionated, turnkey solutions that are no-brainers to buy and easy to use. We're building applied AI solutions that businesses love and trust. Our ambition is to become the partner companies rely on to run their business every day—putting AI to work to deliver better customer experiences, operational excellence, and faster innovation. We're a fast-moving, scrappy team building a new agentic product from the ground up. If bias for action is your favorite leadership principle, you'll fit right in. The Role We're seeking a talented Senior Applied Scientist with expertise in large language models, agentic systems, and foundational models. You will be responsible for building the state-of-art multi-agent system, using a handful of methods including fine-tunning, reinforcement learning, etc. You'll accelerate our customer-facing features, contribute to our collaborative and innovative culture, and bring state-of-art applied research that raises the bar for the entire team. Key job responsibilities • Drive end-to-end GenAI projects with high complexity and ambiguity from conception to production • Build, optimize, and deploy ML models while collaborating with software engineers for productionization • Research innovative machine learning approaches and identify new opportunities for GenAI applications • Perform hands-on analysis and modeling of large datasets to develop actionable insights • Establish scalable, automated processes for data analysis, model development, and validation • Present results to senior leadership and collaborate with cross-functional teams About the team Diverse Experiences AWS values diverse experiences. Even if you do not meet all of the preferred qualifications and skills listed in the job description, we encourage candidates to apply. If your career is just starting, hasn’t followed a traditional path, or includes alternative experiences, don’t let it stop you from applying. Why AWS? Amazon Web Services (AWS) is the world’s most comprehensive and broadly adopted cloud platform. We pioneered cloud computing and never stopped innovating — that’s why customers from the most successful startups to Global 500 companies trust our robust suite of products and services to power their businesses. Inclusive Team Culture AWS values curiosity and connection. Our employee-led and company-sponsored affinity groups promote inclusion and empower our people to take pride in what makes us unique. Our inclusion events foster stronger, more collaborative teams. Our continual innovation is fueled by the bold ideas, fresh perspectives, and passionate voices our teams bring to everything we do. Mentorship & Career Growth We’re continuously raising our performance bar as we strive to become Earth’s Best Employer. That’s why you’ll find endless knowledge-sharing, mentorship and other career-advancing resources here to help you develop into a better-rounded professional. Work/Life Balance We value work-life harmony. Achieving success at work should never come at the expense of sacrifices at home, which is why we strive for flexibility as part of our working culture. When we feel supported in the workplace and at home, there’s nothing we can’t achieve.
US, MA, Boston
Applied Scientists in AWS Automated Reasoning are dedicated to making AWS the best computing service in the world for customers who require advanced and rigorous solutions for automated reasoning, privacy, and sovereignty. Key job responsibilities The successful candidate will: - Solve large or significantly complex problems that require deep knowledge and understanding of your domain and scientific innovation. - Own strategic problem solving, and take the lead on the design, implementation, and delivery for solutions that have a long-term quantifiable impact. - Provide cross-organizational technical influence, increasing productivity and effectiveness by sharing your deep knowledge and experience. - Develop strategic plans to identify fundamentally new solutions for business problems. - Assist in the career development of others, actively mentoring individuals and the community on advanced technical issues. A day in the life This is a unique and rare opportunity to get in early on a fast-growing segment of AWS and help shape the technology, product and the business. You will have a chance to utilize your deep technical experience within a fast moving, start-up environment and make a large business and customer impact. About the team Diverse Experiences Amazon Automated Reasoning values diverse experiences. Even if you do not meet all of the qualifications and skills listed in the job description, we encourage candidates to apply. If your career is just starting, hasn't followed a traditional path, or includes alternative experiences, don't let it stop you from applying. Why Amazon Automated Reasoning? At Amazon, automated reasoning is central to maintaining customer trust and delivering delightful customer experiences. Our organization is responsible for creating and maintaining a high bar for automated reasoning across all of Amazon's products and services. We offer talented automated reasoning professionals the chance to accelerate their careers with opportunities to build experience in a wide variety of areas including cloud, devices, retail, entertainment, healthcare, operations, and physical stores. Inclusive Team Culture In Amazon Automated Reasoning, it's in our nature to learn and be curious. Ongoing DEI events and learning experiences inspire us to continue learning and to embrace our uniqueness. Addressing the toughest automated reasoning challenges requires that we seek out and celebrate a diversity of ideas, perspectives, and voices. Training & Career Growth We're continuously raising our performance bar as we strive to become Earth's Best Employer. That's why you'll find endless knowledge-sharing, training, and other career-advancing resources here to help you develop into a better-rounded professional. Work/Life Balance We value work-life harmony. Achieving success at work should never come at the expense of sacrifices at home, which is why flexible work hours and arrangements are part of our culture. When we feel supported in the workplace and at home, there's nothing we can't achieve.
US, CA, Culver City
Prime Video is an industry leading, high-growth business and a critical driver of Amazon Prime subscriptions, which contributes to customer loyalty and lifetime value. Prime Video is a digital video streaming and download service that offers Amazon customers the ability to rent, purchase or subscribe to a huge catalog of videos. In addition, Prime Video offers a variety of live sport streaming services in multiple locales. The Prime Video Economist team is looking for an Economist to support PV content valuation. As an economist focusing on Prime Video, you will be responsible for understanding the value that the business creates for our customers and to develop new, disruptive innovations to grow global Prime Video usage and customer value. This role requires an individual with strong quantitative modeling skills and the ability to apply statistical/machine learning, structural models, and experimental design methods to large amount of individual level data. The candidate should have strong communication skills, be able to work closely with stakeholders and translate data-driven findings into actionable insights. The successful candidate will be a self-starter comfortable with ambiguity, with strong attention to detail and ability to work in a fast-paced and ever-changing environment. Key job responsibilities The candidate's responsibilities will include: - Build scalable analytic solutions using state of the art tools based on large datasets - Build causal inference models, conduct statistical/machine learning analyses, or design experiments to measure the value of the business and its many features - Partner closely with Business, Finance, Science, and Tech partners to build prototypes and implement production solutions - Independently identify new opportunities for leveraging economic insights and models in the Video business - Develop and execute product workplans from concept, prototype to production incorporating feedback from customers, scientists and business leaders - Write both technical white papers and business-facing documents to clearly explain complex technical concepts to audiences with diverse business/scientific backgrounds