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, CA, Sunnyvale
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 add-on subscriptions such as Apple TV+, Max, 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 technologist, 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! We are looking for a self-motivated, passionate and resourceful Applied Scientist to bring diverse perspectives, ideas, and skill-sets to make Prime Video even better for our customers. You will spend your time as a hands-on machine learning practitioner and a research leader. You will play a key role on the team, building and guiding machine learning models from the ground up. At the end of the day, you will have the reward of seeing your contributions benefit millions of Amazon.com customers worldwide. Key job responsibilities - Develop AI solutions for various Prime Video Search systems using Deep learning, GenAI, Reinforcement Learning, and optimization methods; - Work closely with engineers and product managers to design, implement and launch AI solutions end-to-end; - Design and conduct offline and online (A/B) experiments to evaluate proposed solutions based on in-depth data analyses; - Effectively communicate technical and non-technical ideas with teammates and stakeholders; - Stay up-to-date with advancements and the latest modeling techniques in the field; - Publish your research findings in top conferences and journals. About the team Prime Video Search Science team owns science solution to power search experience on various devices, from sourcing, relevance, ranking, to name a few. We work closely with the engineering teams to launch our solutions in production.
US, NY, New York
We are seeking an Applied Scientist to lead the development of evaluation frameworks and data collection protocols for robotic capabilities. In this role, you will focus on designing how we measure, stress-test, and improve robot behavior across a wide range of real-world tasks. Your work will play a critical role in shaping how policies are validated and how high-quality datasets are generated to accelerate system performance. You will operate at the intersection of robotics, machine learning, and human-in-the-loop systems, building the infrastructure and methodologies that connect teleoperation, evaluation, and learning. This includes developing evaluation policies, defining task structures, and contributing to operator-facing interfaces that enable scalable and reliable data collection. The ideal candidate is highly experimental, systems-oriented, and comfortable working across software, robotics, and data pipelines, with a strong focus on turning ambiguous capability goals into measurable and actionable evaluation systems. Key job responsibilities - Design and implement evaluation frameworks to measure robot capabilities across structured tasks, edge cases, and real-world scenarios - Develop task definitions, success criteria, and benchmarking methodologies that enable consistent and reproducible evaluation of policies - Create and refine data collection protocols that generate high-quality, task-relevant datasets aligned with model development needs - Build and iterate on teleoperation workflows and operator interfaces to support efficient, reliable, and scalable data collection - Analyze evaluation results and collected data to identify performance gaps, failure modes, and opportunities for targeted data collection - Collaborate with engineering teams to integrate evaluation tooling, logging systems, and data pipelines into the broader robotics stack - Stay current with advances in robotics, evaluation methodologies, and human-in-the-loop learning to continuously improve internal approaches - Lead technical projects from conception through production deployment - Mentor junior scientists and engineers
IN, KA, Bangalore
Are you passionate about solving complex logistics challenges? Our Analytics team is at the forefront of enhancing delivery experiences through data-driven solutions and innovative technology. As a Research Scientist, you will join a team dedicated to optimizing our delivery network, ensuring reliable and efficient service to our customers. We are seeking an enthusiastic, customer-centric professional with strong analytical capabilities to drive impactful projects, implement advanced solutions, and develop scalable processes. In this role, you will have immediate ownership of business-critical challenges and the opportunity to make strategic, data-driven decisions that shape the future of our delivery operations. Your work will directly influence customer experience and operational excellence. The ideal candidate will possess both research science capabilities and program management skills, thriving in an environment that requires independent decision-making and comfort with ambiguity. This role offers the opportunity to make a significant impact on our advanced logistics network while working with pioneering technology and data science applications. Basic qualifications • 3+ years of building machine learning models for business application experience • Knowledge of programming languages such as C/C++, Python, Java or Perl • Experience programming in Java, C++, Python or related language • Experience with neural deep learning methods and machine learning Preferred qualifications: • PhD in engineering, technology, computer science, machine learning, robotics, operations research, statistics, mathematics or equivalent quantitative field • 3+ years of extensive relevant research experience • Deep expertise in Machine Learning • Proficiency in programming • Core competency in mathematics and statistics • Track record of successful projects in algorithm design and product development • Publications at peer-reviewed conferences or journals • Strategic thinker with good execution skills • Exhibits excellent business judgment • Effective verbal and written communication skills • Experience working with real-world data sets and building scalable models from big data • Experience with modern modeling tools and frameworks such as R, scikit-learn, Spark MLLib, MxNet, Tensorflow • Experience with large scale distributed systems
CN, 11, Beijing
北京职位 - 如果希望在北京工作,请投递本职位。 毕业时间:2026年10月 - 2027年9月之间毕业的应届毕业生 · 投递须知: 1 填写简历申请时,请把必填和非必填项都填写完整。提交简历之后就无法修改了哦! 2 学校的英文全称请准确填写。中英文对应表,请点击链接查看 https://docs.qq.com/sheet/DVmdaa1BCV0RBbnlR?tab=BB08J2 3 简历不限中英文。 如果您正在攻读计算机,AI,ML等相关专业的博士或硕士研究生,而且对应用科学家的工作感兴趣。如果您也喜爱深入研究棘手的技术问题并提出解决方案,用成功的产品显著地改善人们的生活。 那么,我们诚挚邀请您加入亚马逊的International Technology搜索团队改善Amazon的产品和服务。我们的目标是帮助亚马逊的客户找到他们所需的产品,并发现他们感兴趣的新产品。这会是一份收获满满的工作。您每天的工作都与全球数百万亚马逊客户的体验紧密相关。您将提出创新,基于TB级别的产品和流量数据设计模型。您将集成这些模型为客户提供服务,通过数据,建模和客户反馈来完成闭环。您对模型的选择需要能够平衡业务指标和响应时间的需求。 Key job responsibilities 基本要求 正在攻读计算机工程,计算机科学,AI,机器学习,运筹学,统计或相关领域的硕士或博士学位。 有AI,ML实验设计和统计分析的经验。 有使用代码和工具实现算法的经验。 至少能熟练地使用一种编程语言(例如Python,Java,C ++等)编码和解决问题。 加分项: 在顶级会议或者期刊上有论文发表。 技术视野好;能与技术团队成员深入讨论概念和算法,并对应用问题提出恰当的解决方案。 出色的批判性思维能力;能以口头和书面形式清楚地向团队沟通您的技术方案。
GB, London
Come build the future of entertainment with us. Are you interested in shaping the future of movies and television? Do you want to define the next generation of how and what Amazon customers are watching? Prime Video is a premium streaming service that offers customers a vast collection of TV shows and movies - all with the ease of finding what they love to watch in one place. We offer customers thousands of popular movies and TV shows including Amazon Originals and exclusive licensed content to exciting live sports events. We also offer our members the opportunity to subscribe to add-on channels which they can cancel at anytime and to rent or buy new release movies and TV box sets on the Prime Video Store. Prime Video is a fast-paced, growth business - available in over 200 countries and territories worldwide. The team works in a dynamic environment where innovating on behalf of our customers is at the heart of everything we do. If this sounds exciting to you, please read on. PV observability team's mission is to deliver efficient, zero-touch observability solutions that combine log management, tracing, and AI-powered analytics, enabling teams to detect, diagnose, and resolve Prime Video issues at unprecedented speed. We are looking for an Applied Scientist for our London office experienced in generative AI and large models. This is a wide impact role working with development teams across the UK, India, and the US. You will develop and deploy customized models for PV builders needs at scale, and explore emerging techniques that help us make better decisions faster for agentic solutions. This is a hands-on role working with a high performing and high visibility multidisciplinary group of engineers and scientists in the London office, focused on improving the PV builders experience for Prime Video organization. You will have strong technical ability, excellent teamwork and communication skills, and a strong motivation to deliver customer value from your research. Our position offers opportunities to grow your technical and non-technical skills and make a global impact immediately. Key job responsibilities - Develop machine learning algorithms for high-scale recommendations problems - Rapidly design, prototype and test many possible hypotheses in a high-ambiguity environment, making use of both quantitative analysis and business judgement - Collaborate with software engineers to integrate successful experimental results into Prime Video wide processes - Report and share results with the team and wider scientific community by authoring documents that are both statistically rigorous and compellingly relevant, exemplifying good scientific practice in a business environment A day in the life You will lead the design of machine learning models that scale to very large quantities of data across multiple dimensions. You will embody scientific rigor, designing and executing experiments to demonstrate the technical effectiveness and business value of your methods. You will work alongside other scientists and engineering teams to deliver your research into production systems. About the team Our team owns Prime Video observability features for development teams. We consume PBs of data daily which feed into multiple observability features focussed on reducing the customer impact time.
US, CA, Santa Clara
MULTIPLE POSITIONS AVAILABLE Employer: AMAZON.COM SERVICES LLC Offered Position: Data Scientist III Job Location: Santa Clara, California Job Number: AMZ9976173 Position Responsibilities: Own the data science elements of various products to help with data-based decision making, product performance optimization, and product performance tracking. Work directly with product managers to help drive the design of the product. Work with Technical Product Managers to help drive the build planning. Translate business problems and products into data requirements and metrics. Initiate the design, development, and implementation of scientific analysis projects or deliverables. Own the analysis, modelling, system design, and development of data science solutions for products. Write documents and make presentations that explain model/analysis results to the business. Bridge the degree of uncertainty in both problem definition and data scientific solution approaches. Build consensus on data, metrics, and analysis to drive business and system strategy. 40 hours / week, 8:00am-5:00pm, Salary Range: $183,000/year to $247,600/year. Amazon is a total compensation company. Dependent on the position offered, equity, sign-on payments, and other forms of compensation may be provided as part of a total compensation package, in addition to a full range of medical, financial, and/or other benefits. For more information, visit: https://www.aboutamazon.com/workplace/employee-benefits. Amazon.com is an Equal Opportunity-Affirmative Action Employer – Minority / Female / Disability / Veteran / Gender Identity / Sexual Orientation.#0000
US, CA, Sunnyvale
We are looking for a Principal Applied Scientist to drive the research and development of real-time multimodal conversational AI. You will operate 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 be the expert in your area while contributing 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 Principal Scientist, you will set the technical direction for your research area, influence the broader roadmap, and work closely with inference engineers to ensure your models are designed for real-time production deployment from inception. Key job responsibilities Foundation Model Scaling - 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 modes, 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 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 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 Real-Time Perception & Generation - Advance the team's capabilities in real-time perception - Work at the intersection of model architecture and production constraints to ensure multimodal capabilities function within hard real-time latency budgets
US, WA, Bellevue
The Amazon Fulfillment Technologies (AFT) Science team is looking for an exceptional Applied Scientist, with strong optimization and analytical skills, to develop production solutions for one of the most complex systems in the world: Amazon’s Fulfillment Network. At AFT Science, we design, build and deploy optimization, simulation, and machine learning solutions to power the production systems running at world wide Amazon Fulfillment Centers. We solve a wide range of problems that are encountered in the network, including labor planning and staffing, demand prioritization, pick assignment and scheduling, and flow process optimization. We are tasked to develop innovative, scalable, and reliable science-driven solutions that are beyond the published state of art in order to run frequently (ranging from every few minutes to every few hours per use case) and continuously in our large scale network. Key job responsibilities As an Applied Scientist, you will work with other scientists, software engineers, product managers, and operations leaders to develop scientific solutions and analytics using a variety of tools and observe direct impact to process efficiency and associate experience in the fulfillment network. Key responsibilities include: * Develop an understanding and domain knowledge of operational processes, system architecture and functions, and business requirements * Deep dive into data and code to identify opportunities for continuous improvement and/or disruptive new approach * Develop scalable mathematical models for production systems to derive optimal or near-optimal solutions for existing and new challenges * Create prototypes and simulations for agile experimentation of devised solutions * Advocate technical solutions to business stakeholders, engineering teams, and senior leadership * Partner with engineers to integrate prototypes into production systems * Design experiment to test new or incremental solutions launched in production and build metrics to track performance A day in the life Amazon offers a full range of benefits that support you and eligible family members, including domestic partners and their children. Benefits can vary by location, the number of regularly scheduled hours you work, length of employment, and job status such as seasonal or temporary employment. The benefits that generally apply to regular, full-time employees include: 1. Medical, Dental, and Vision Coverage 2. Maternity and Parental Leave Options 3. Paid Time Off (PTO) 4. 401(k) Plan 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 Amazon Fulfillment Technology (AFT) designs, develops and operates the end-to-end fulfillment technology solutions for all Amazon Fulfillment Centers (FC). We harmonize the physical and virtual world so Amazon customers can get what they want, when they want it. The AFT Science team has expertise in operations research, optimization, scheduling, planning, simulation, and machine learning. We also have domain expertise in the operational processes within the FCs and their defects. We prioritize advancements that support AFT tech teams and focus areas rather than specific fields of research or individual business partners. We influence each stage of innovation from inception to deployment which includes both developing novel solutions or improving existing approaches. Resulting production systems rely on a diverse set of technologies, our teams therefore invest in multiple specialties as the needs of each focus area evolves.
US, NY, New York
We are seeking a Human-Robot Interaction (HRI) Applied 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. Key job responsibilities - Develop interactive systems that leverage large language models, multimodal inputs and outputs, reinforcement learning from human feedback, or other advanced techniques to achieve fluid, engaging, and socially appropriate robot behavior - Design and implement intelligent conversational systems that handle turn-taking, grounding, interruption, and incorporates context drawn from a robot's physical environment and shared history with a user - Integrate perceptual sensor streams including gaze, facial expression, gesture, posture, and more to understand social context and produce coherent, lifelike interactions. - Develop memory and personalization systems that allow robots to form lasting relationships with individual users, learn their environments, and adapt their behavior over weeks and months - Stay updated on advancements in HRI, NLP, multimodal AI, and cognitive and social science to apply cutting-edge techniques to robot interaction challenges - Lead technical projects from conception through production deployment - Mentor junior scientists and engineers - Bridge research initiatives with practical engineering implementation
US, OR, Portland
AWS Science of Security is dedicated to making AWS the best computing service in the world for customers who require advanced and rigorous solutions for security, 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 Security 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 Security? At Amazon, security is central to maintaining customer trust and delivering delightful customer experiences. Our organization is responsible for creating and maintaining a high bar for security across all of Amazon’s products and services. We offer talented security 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 Security, 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 security 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.