Science in the age of foundation models

To transform scientific domains, foundation models will require physical-constraint satisfaction, uncertainty quantification, and specialized forecasting techniques that overcome data scarcity while maintaining scientific rigor.

Deep learning’s transformative impact has become widely evident with the advent and rapid adoption of large language models (LLMs). LLMs and other so-called foundation models are potentially powerful tools for advancing a wide range of both pure and applied sciences. However, despite the role foundation models have played in language and computer vision, there has been a slower rate of adoption in scientific domains, such as computational fluid dynamics (CFD). This raises a question: what would it take for deep-learning foundation models to play a more significant role in scientific applications?

We explored a similar idea in 2023 when we observed that deep-learning (DL) methods had “shown promise for scientific computing, where they can be used to predict solutions to partial differential equations (PDEs)” but required hard constraints for physically meaningful predictions. A year later, at ICLR 2024, we hosted a workshop aimed at bridging the gap between scientists interested in using machine learning (ML) to solve real-world problems and ML researchers who have attempted to apply ML methods to scientific problems but require more real-world test cases.

WiDS_Danielle.jpg
Danielle Maddix Robinson is a senior applied scientist with Amazon Web Services.

In this post, I'll explore potential applications of foundation models (FMs) for probabilistic time series forecasting for both univariate (one-dimensional) and spatiotemporal (two- and three-dimensional) data in scientific domains. In addition, I'll describe critical differences between LLMs and scientific foundation models, including a scarcity of available training data; the vital importance of strict adherence to physical laws; and the role of uncertainty quantification in robust decision making.

Probabilistic time series forecasting

We begin with univariate time series forecasting prediction, which has applications ranging from retail demand forecasting to scientific predictions. Here our task is to predict the future time points given the historical data and covariates. With probabilistic time series forecasting, we aim to provide a distribution of future points conditioned on these past observations.

Traditional or local statistical methods, which are designed to fit a separate model for each individual time series (e.g., autoregressive integrated moving average and exponential smoothing) have been widely utilized. More recently, we’ve seen a rise in global DL models trained across a large amount of related time series, including DeepAR and MQ-CNN/MQ-Transformer. But can we push this further and propose a foundation model for time series forecasting?

Inspired by the success of LLMs, last year we presented the time series foundation model (TSFM) Chronos, which aims to answer the question "Can an out-of-the-box language model be applied to time series?" Chronos treats every historical data point as a token and uses a T5 language model as a generative model to perform the next-token prediction, continuing autoregressively. Chronos significantly outperformed both classical statistical methods and specialized deep-learning models directly trained on individual datasets.

While Chronos used a language-modeling framework, some key distinctions remain between time series and language data. These include significantly less available pretraining data for time series relative to language data, how to represent continuous time series data as discrete tokens, and the frequency of time series data.

Generating diverse synthetic prior distributions leads to a tabular foundation model that outperforms task-specific baselines.

To deal with the data discrepancy, we relied on synthetic pretraining data for Chronos. We increased the amount of that data by applying a TSMix method that mixes time series of different frequencies while also relying on synthetic data generated from Gaussian processes. These techniques enhanced model robustness and generalization.

Another key challenge in designing a TSFM is how to map continuous time series data to discrete tokens as inputs to the LLM. There are various strategies for embedding continuous dynamics as discrete tokens. Chronos achieves this via simple binning or quantization as well as wavelet tokenization, whereas Chronos-Bolt utilizes continuous embeddings.

An interesting, and somewhat surprising, lesson has arisen here. While Chronos-Bolt and other follow-ups incorporated more classical forecasting methodology, leading to better performances on classical time series benchmark datasets, the original LLM-based Chronos has the strongest performance on chaotic and dynamical system datasets. This may be unexpected since Chronos was not designed for chaotic systems and does not use any such data in its pretraining process. The result owes to the intrinsic capability of Chronos to parrot or mimic past history without regressing to the mean, as classical time series methods or other TSFMs do. Chronos has already found wide applications in the sciences, including in water, energy, and traffic forecasting.

Scientific Applications of Chronos.
LLMs for Time Series talk at the Lawrence Berkeley Laboratory's Deep Learning for Science Summer School

Spatiotemporal forecasting

Unlike univariate temporal forecasting, spatiotemporal forecasting entails predicting future points that include both space and time dimensions. This kind of forecasting is important in CFD, weather forecasting, and even the prediction of earthquake aftershocks.

Traditionally, spatiotemporal dynamics for CFD have been solved by numerical methods, including finite-difference, finite-volume, and finite-element methods. These methods have long powered the solvers for PDEs, which are the physical equations (e.g., the Navier-Stokes equations) that govern fluid dynamics. Recently, DL models have shown promise, especially for short-term weather forecasting and aerodynamics.

Weather forecasting

Progress in the development of deep-learning weather prediction (DLWP) models has advanced to the point where they rival traditional numerical weather prediction (NWP) models. This owes in part to an abundance of real-world data, including the ERA5 dataset. The recent surge of DLWPs raises the question of which approach is most suitable.

AI systems that integrate meteorological, geospatial, and socioeconomic data can deliver warnings that are more localized and more timely.

That inspired us to compare and contrast the most prominent backbones used in DLWP models. We were the first to conduct a controlled study with the same parameter count, training protocol, and set of input variables for each DLWP model on both two-dimensional incompressible Navier-Stokes dynamics with various Reynolds numbers and on the real-world WeatherBench dataset.

Weather forecasting.
Spatio-temporal forecast from PreDiff of predicted rainfall at 10min intervals up to 1 hour ahead.

We find tradeoffs in terms of accuracy and memory consumption. For example, on the WeatherBench dataset, we show SwinTransformer to be effective for short- to medium-ranged forecasts. Importantly, for long-ranged weather rollouts of up to one year, we observe stability and physical soundness in architectures that formulate a spherical data representation of the globe, i.e., the graph-neural-network-based GraphCast and Spherical FNO.

While DLWP models are powerful, a perhaps surprising finding is that as we increase the number of parameters, these models tend to saturate and do not satisfy the neural scaling laws that LLMs do.

Aerodynamics

Recently, DL models have been investigated as a way to speed up simulations in areas where traditional numerical solvers are computationally expensive (approximating 3-D spatiotemporal data with high accuracy requires fine meshes). Even assuming a slight loss of accuracy relative to traditional solvers, DL models can be helpful in an iterative design process. For example, a fast approximation of flows can help engineers quickly test and iterate through several different car geometries or airplane designs.

The theme of data scarcity resurfaces here as well. Generating relevant training data is extremely expensive since it requires running numerical solvers. We have released high fidelity 3-D datasets, including  DrivAerML, WindsorML, and AhmedML. These open datasets have already proven valuable: EmmiAI used them as critical components in building their FMs for automotive dynamics.

Such datasets are vital for improved generalization in scientific domains where there is a deficiency of data. That need is widespread, which underscores the importance of abundant synthetic data, particularly in applications that represent different physics from various PDEs, boundary conditions, and geometries.

FoundationModels-AutoAirflow-16x9.png
Automotive. DrivAerML dataset surface plot of the normalized magnitude of the wall shear stress (wall friction coefficient).

Physical constraints and uncertainty quantification

Violations of physical constraints and deterministic predictions also limit the widespread adoption of DL and foundation models. DL models have been shown to violate known physical laws, e.g., conservation of mass, energy, and momentum, and known boundary conditions, e.g., allowing heat flux across an insulator.

Enforcing these constraints can lead to physically accurate solutions and guide the learning process to result in more accurate predictions. For instance, in the challenging case of two-phase flow problems, e.g., modeling the moving interface between air and water, our ProbConserv model, which enforces the conservation law, improves prediction accuracy, shock location detection, and out-of-domain performance.

Our initial research, which considered linear constraints, has also been extended to handle nonlinear constraints through a differentiable probabilistic projection framework. Our methodology can be used to enforce a wide range of constraints in various domains, including conservation law constraints in PDEs and coherency constraints in hierarchical time series forecasting. 

Amazon researchers draw inspiration from finite-volume methods and adapt neural operators to enforce conservation laws and boundary conditions in deep-learning models of physical systems.

We can also enforce physical constraints on generative models, e.g., diffusion or functional flow-matching models (FFMs) to guarantee physically meaningful generations. For instance, our latent diffusion model for precipitation nowcasting, PreDiff, incorporates physical knowledge as a soft constraint using a type of knowledge alignment: a lower probability is assigned to the less physical samples in the denoising generative process. Our FFM-based ECI sampling outputs generations of various PDEs that are guaranteed to satisfy known initial and boundary conditions and conservation laws by using a projection method similar to ProbConserv.

Another important property of these methods is that they provide uncertainty quantification (UQ) and probabilistic predictions, which are critical in scientific and safety-critical domains and for corresponding downstream tasks. For example, PreDiff inherently provides UQ, which results in higher resolution and sharper predictions than deterministic approaches. In ProbConserv, we also use the variance of the unconstrained model to update the solution the most, according to the constraint, in the region where the variance or uncertainty is the largest.

Conclusion

In conclusion, in order for FMs to achieve widespread adoption, ensuring reliable physical-constraint satisfaction and robust uncertainty quantification are essential to gain trust from domain scientists. With interdisciplinary collaborations between scientists and ML experts, the potential growth of these models is limitless.

Acknowledgments: Thank you to Bernie Wang, Michael W. Mahoney, Fatir Abdul Ansari, Boran Han, Xiyuan Zhang and Annan Yu.

Research areas

Related content

CN, 31, Shanghai
As an Applied Scientist, you will be responsible for bringing new product designs through to manufacturing. You will work closely with multi-disciplinary groups including Product Design, Industrial Design, Hardware Engineering, and Operations, to drive key aspects of engineering of consumer electronics products. In this role, you will use expertise in physical sciences, theoretical, numerical or empirical techniques to create scalable models representing response of physical systems or devices, including: * Applying domain scientific expertise towards developing innovative analysis and tests to study viability of new materials, designs or processes * Working closely with engineering teams to drive validation, optimization and implementation of hardware design or software algorithmic solutions to improve product and customer risks * Establishing scalable, efficient, automated processes to handle large scale design and data analysis * Conducting research into use conditions, materials and analysis techniques * Tracking general business activity including device health in field and providing clear, compelling reports to management on a regular basis * Developing, implementing guidelines to continually optimize design processes * Using simulation tools like LS-DYNA, and Abaqus for analysis and optimization of product design * Using of programming languages like Python and Matlab for analytical/statistical analyses and automation * Demonstrating strong understanding across multiple physical science domains, e.g. structural, thermal, fluid dynamics, and materials * Developing, analyzing and testing structural solutions from concept design, feature development, product architecture, through system validation * Supporting product development and optimization through application of analysis and testing of complex electronic assemblies using advanced simulation and experimentation tools and techniques
IL, Haifa
We are seeking an Applied Scientist to help build Amazon’s next-generation customer memory and personalization systems. Are you interested in building systems that move beyond reacting to customer behavior, to actually understanding and remembering it over time? Our team is building Amazon’s customer memory layer – a system that extracts, curates, and reasons over customer knowledge to power next-generation personalization. This includes transforming noisy, unstructured signals into durable, high-quality representations of customer preferences, intents, and life events, and using them in real time to improve customer experiences. We are part of Amazon’s Personalization organization, a high-performing group that leverages large-scale machine learning, generative AI, and distributed systems to deliver highly relevant customer experiences. We tackle challenging problems at the intersection of information extraction, knowledge representation, LLM reasoning, and recommendation systems. Our systems operate under real-world constraints of scale, latency, and quality, requiring careful tradeoffs between precision, recall, and responsiveness. This team plays a central role in defining how Amazon understands its customers, and how that understanding is applied across the shopping experience. As an Applied Scientist, you will design and build ML and LLM-powered solutions for Amazon's customer memory and personalization systems. You will work on how customer knowledge is extracted, validated, and applied in production systems. You will own the end-to-end delivery of ML solutions, from problem formulation and modeling to offline and online experimentation, and production deployment at scale. You will deliver high-quality, scalable systems that power customer-facing experiences. You will drive work across areas such as fact extraction, memory quality and lifecycle, temporal reasoning, and grounded personalization, while navigating tradeoffs between quality, latency, and coverage. You will collaborate closely with engineering and product teams to translate research into measurable customer impact. Please visit https://www.amazon.science for more information.
US, WA, Seattle
Are you passionate about solving big problems from ground-up? Do you enjoy building new state-of-the-art products at internet scale? Come lead the innovation in this startup team, vertical ad products. This is a green field problem without a known answer or a pattern to follow. We have ambitious vision to simplify full funnel advertising solutions, at scale, with specialized agentic AI-powered models and diversify the demand to strategic verticals including finserv, autos, locals.. etc. We are seeking an experienced Sr Data Scientist to drive innovation in our Ads Foundational Model. In this individual contributor role, you will apply advanced machine learning techniques to improve advertiser performance and customer experience. Key job responsibilities As a Data Scientist on this team, you will: 1. Develop and drive the science strategy for Ads Foundational Model (Ads-FM), aligning it with the program's objectives and overall business goals. 2. Identify high-impact opportunities within Ads-FM program and lead the ideation, planning, and execution of science initiatives to address them. 3. Build and deploy machine learning models using computer vision, natural language processing, and deep learning to evaluate and enhance ad effectiveness. 4. Develop algorithms that extract meaningful signals from image, video, and audio content to predict and improve customer engagement 5. Leverage Amazon's extensive data repository to create predictive models that generate actionable recommendations for more compelling ad creative 6. Collaborate with business leaders and cross-functional teams to implement ML-powered solutions 7. Contribute to the ML roadmap for the Ads-FM program through innovation and research.
US, WA, Seattle
You will build and lead the economics research agenda for measurement, experimentation, and value attribution for Amazon's Devices & Services organization. Your team is the "truth layer" of the Intelligence Core — the shared economics and causal inference capability that serves all Devices product lines, marketing pods, and Finance leadership with causal evidence of what Devices are worth and whether our investments are working. This is not a traditional analytics or measurement role. You will own an active research program in experimentation design — identifying and executing the causal studies that produce the causal inputs for pricing decisions, marketing optimization, and portfolio strategy. Your outputs provide the causal evidence base that L8 peers and senior leadership consume to make billions of dollars in investment decisions across the D&S portfolio. You will also own the economic models that validate and drive execution across the full surface area of marketing spend for devices and services. Key job responsibilities Economic Value: • Downstream value attribution for all Devices product lines — Impact on Prime, subscription lift, consumer spending, advertising value • Alexa+ value isolation and cross-PL attribution • Causal frameworks connecting device sales to Prime acquisition, subscription retention, and ecosystem engagement Marketing Science & Measurement: • Build the marketing science function from scratch • Incrementality measurement for marketing spend across all channels • Attribution methodology, measurement standards, and cross-pod governance • Marketing ROI frameworks for use by category marketers • CCM certification methodology and scenario planning models for optimal investment allocation Experimentation: • Owning the estimation methodology, identification strategies, data inputs/outputs, and refresh cadence • You will build this team's analytics function with AI at its core from day one • Experimentation governance — managing interference across teams, setting standards for causal validity • Evaluation framework for AI agents and autonomous optimization systems
US, WA, Seattle
Innovators wanted! Are you an entrepreneur? A builder? A dreamer? This role is part of an Amazon Special Projects team that takes the company’s Think Big leadership principle to the extreme. We focus on creating entirely new products and services with a goal of positively impacting the lives of our customers. No industries or subject areas are out of bounds. If you’re interested in innovating at scale to address big challenges in the world, this is the team for you. Here at Amazon, we embrace our differences. We are committed to furthering our culture of inclusion. We have thirteen employee-led affinity groups, reaching 40,000 employees in over 190 chapters globally. We are constantly learning through programs that are local, regional, and global. Amazon’s culture of inclusion is reinforced within our 16 Leadership Principles, which remind team members to seek diverse perspectives, learn and be curious, and earn trust. Our team highly values work-life balance, mentorship and career growth. We believe striking the right balance between your personal and professional life is critical to life-long happiness and fulfillment. We care about your career growth and strive to assign projects and offer training that will challenge you to become your best.
IN, KA, Bengaluru
Have you ever wondered how that Amazon box with the smile arrives so quickly, where it came from, and how much it cost Amazon to deliver? The WW Amazon Logistics, Business Analytics team manages the delivery of tens of millions of products every week to Amazon's customers, achieving on-time delivery in a cost-effective manner. We are seeking an enthusiastic, customer-obsessed Manager Research Science with strong analytical skills to join our team. This role is crucial in optimizing Amazon's vast delivery network and will have significant impact on the customer experience, particularly in the final phase of delivery. As a Manager Research Science, you will: 1. Address business challenges through building compelling cases and using data to influence change across the organization 2. Develop input and assumptions based on preexisting models to estimate costs and savings opportunities associated with varying levels of network growth and operations 3. Create metrics to measure business performance, identify root causes and trends, and prescribe action plans 4. Manage multiple high-impact projects simultaneously 5. Work with technology teams and product managers to develop new tools and systems supporting business growth 6. Communicate with and support various internal stakeholders and external audiences 7. Implement scheduling solutions, improve metrics, and develop scalable processes and tools The ideal candidate will have: - Extensive experience in operations research and data-driven decision making - Strong analytical and problem-solving skills - Robust program management and research science skills - Ability to work with a team and make independent decisions in ambiguous environments - Customer-obsessed mindset with a focus on improving the Amazon delivery experience This role offers the autonomy to think strategically and make data-driven decisions from day one. Join us in shaping the future of e-commerce delivery and addressing the core challenges in our world-class operations space! Key job responsibilities 1. Advanced Modeling and Algorithm Development: - Design and implement sophisticated machine learning models for logistics optimization - Develop complex time series forecasting algorithms for demand prediction and resource allocation 2. AI and Machine Learning Integration: - Architect and deploy AI-powered systems to enhance decision-making in logistics operations - Implement deep learning techniques for image recognition in package sorting and handling - Develop reinforcement learning algorithms for adaptive scheduling and resource management 3. Big Data Analytics and Processing: - Design and implement distributed computing solutions for processing massive logistics datasets - Utilize cloud computing platforms (e.g., AWS) for scalable data processing and analysis 4. AI-Driven Workflow Optimization: - Design and implement AI agents for autonomous decision-making in logistics processes - Create machine learning models for customer behavior analysis and personalized delivery options 5. Software Development and System Architecture: - Write efficient, scalable code in languages such as Python, Java, or C++ - Develop and maintain complex software systems for logistics optimization - Stay at the forefront of AI and ML research - Publish research findings in top-tier conferences and journals About the team We are Amazon's Last Mile Science and Analytics team, dedicated to improving e-commerce delivery. We work to optimize our vast network, forecast demand using machine learning, and enhance route efficiency. Our efforts focus on developing innovative delivery methods, applying AI to solve complex problems, and conducting geospatial analysis. We create simulations to refine processes and plan capacity effectively. Operating globally, we strive to develop adaptable solutions for diverse markets. We aim to advance logistics science, continually improving speed, efficiency, and customer satisfaction, in support of Amazon's mission to be Earth's most customer-centric company.
US, WA, Seattle
Ever wish you could use your quantitative and critical thinking skills to influence business decisions? Economists at Amazon partner closely with senior management, business stakeholders, scientist and engineers, and economist leadership to solve key business problems. As part of the Content Discovery and Experimentation Science team within Prime Video, you will leverage your expertise in causal inference and experimental design to make Prime Video the best-in-class digital video experience. Key job responsibilities - Build causal models and metrics that capture trade-off decisions when business and customer outcomes do not align - Partner with data scientists and product managers to integrate these metrics into Prime Video's experimentation tooling - Work with finance partners to ensure that the team's product metrics contribute to Prime Video's strategic business and financial objectives - Contribute to technical and business documents to communicate ideas and proposals to various audiences - Educate and advocate for best practices in experimentation and how to use it for decision-making
DE, BE, Berlin
As an Applied Scientist II in the Alexa Conversational Modelling Intelligence team within Alexa AI, you will drive model post-training for Large Language Models that power Alexa+. You'll adopt and adapt state-of-the-art techniques — including supervised fine-tuning, RLHF, and preference optimization — running rigorous experiments and translating findings into production-ready solutions that directly improve the customer experience for millions of users worldwide. You will own the full model development cycle from data curation through training, evaluation, and deployment. Your day-to-day will involve developing evaluation methods and metrics, diagnosing model defects, and iterating on recipes to move concrete quality and efficiency benchmarks. You'll write clean, reproducible code, contribute to shared tooling, and collaborate closely with scientists and engineers to bring models from experimentation to scale. You are technically curious, experiment-driven, and motivated by real customer impact. You will also advance the state of the art by publishing at top-tier NLP/ML conferences (ACL, EMNLP, NeurIPS, ICML, ICLR) — contributing to the broader research community while grounding your work in measurable outcomes. Key job responsibilities As an Applied Scientist II in the Alexa Conversational Modelling Intelligence team, you will own the end-to-end model development lifecycle for LLMs that power Alexa+. You'll design and execute training recipes — including supervised fine-tuning, reinforcement learning from human feedback, and preference optimization — iterating rapidly on data, hyperparameters, and architectures to move quality and efficiency metrics. Your work will directly shape how millions of customers interact with Alexa daily. You will build robust evaluation frameworks to measure model performance, diagnose failure modes, and quantify improvements. This includes developing benchmarks, implementing LLM-as-a-judge pipelines, and conducting rigorous defect analysis to identify where models fall short and why. You'll translate these insights into targeted improvements that close gaps in conversational quality, safety, and fluency. You will collaborate closely with research scientists and engineers to bring models from experimentation to production at scale. You'll contribute to shared tooling and infrastructure, write clean and reproducible code, and document your methods so the team can build on your work. You are also expected to advance the state of the art by publishing findings at top-tier NLP/ML venues (ACL, EMNLP, NeurIPS, ICML, ICLR), ensuring your research drives both customer impact and scientific contribution. A day in the life As an Applied Scientist II, your day will involve launching and monitoring training runs, analyzing experiment results, and iterating on model recipes based on evaluation data. You'll participate in science reviews with fellow researchers, sync with engineering partners on deployment readiness, and deep-dive into model outputs to understand behavioral patterns. You'll balance hands-on experimentation with collaborative problem-solving — working across the Alexa AI organization to align model improvements with customer-facing goals and product priorities. About the team The Alexa Conversational Modelling Intelligence team builds industry-leading LLM-based conversational technologies that customers love. Our mission is to push the envelope in LLMs for Alexa to deliver the best-possible customer experience. As an Applied Scientist, you'll contribute directly to that mission through model development and experimentation.
US, CA, Sunnyvale
MULTIPLE POSITIONS AVAILABLE Employer: AMAZON.COM SERVICES LLC Offered Position: Manager III, Economist Job Location: Sunnyvale, California Job Number: AMZ9803624 Position Responsibilities: Independently manage a team of economists and/or scientists in developing strategic economic analyses and demand estimation models. Translate business questions into econometric methodologies and causal inference analyses. Communicate economic insights to non-technical audiences to guide strategic-level, high-impact business decisions. Scale economic models through cross-functional collaboration with engineering teams. Establish scientific quality standards and research priorities. Drive operational efficiency and research excellence across the team. 40 hours / week, 8:00am-5:00pm, Salary Range: $201,300/year to $272,400/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, TX, Austin
What happens when you combine startup speed with Amazon-scale impact? You get this team. Amazon Enterprise Security Products is a newly launched group building intelligent, cloud-agnostic security tools using AI-first development practices. Here, you build AI and you build with AI at the same time. This role is a chance to define and lead the science strategy for the future of security tooling with a small, fast team that ships like a startup but deploys at Amazon scale. We're looking for a Senior Data Scientist who operates at the intersection of applied ML, agentic AI, and security; and who can set technical direction across ambiguous, undefined problem spaces. You won't just build models; you'll decide which problems are worth solving, architect the scientific approach for an entire product area, and raise the bar for how the team applies science. You'll partner with senior and principal engineers, applied scientists, security researchers, and PMs, and your judgment will shape roadmaps, not just deliverables. This is a role for someone who thrives in ambiguity, influences without authority, and turns "too ambitious" into shipped reality. Key job responsibilities - Set the science direction for a product area: Define the modeling strategy, scientific approach, and success metrics for entire categories of AI-first security capabilities, agentic systems, anomaly detection, threat classification, and automated response across multi-cloud environments. Decide where science can move the needle and where it can't. - Own the hardest, most ambiguous problems: Take on undefined, open-ended challenges where the path isn't clear, the data is messy or scarce, and the stakes are high. Frame the problem, choose the approach, and bring others along. - Build with AI to build AI and define how the team does it: Drive adoption of agentic coding tools, LLM-powered workflows, and experimental AI tooling across the science org. Establish the practices that multiply velocity for every scientist, not just yourself. - Architect agentic intelligence: Lead the design of models, embeddings, RAG pipelines, evaluation frameworks, and feedback loops that make multi-agent security systems smart, safe, and customer-ready at scale. Own the science architecture decisions others build on. - Drive technical strategy across teams: Influence roadmaps, dive deep with senior and principal scientists and engineers, and align cross-functional partners around a shared scientific vision. Your recommendations shape what the team invests in next. - Prototype, validate, and scale: Turn ambiguous hypotheses into prototypes in days, validate with real customer signal, and chart the path from prototype to production system that runs reliably at Amazon scale. - Communicate to influence at the executive level: Translate complex modeling results and scientific trade-offs into clear recommendations for engineers, product leaders, and senior executives. Drive organizational decisions with data and earn trust across the company. - Raise the bar and grow others: Mentor data scientists and applied scientists, lead technical and science reviews, and champion AI-first development practices. Shape the science culture and hiring bar of a fast-growing team from the ground floor. A day in the life No two days look the same on this fast-growing, AI-first team. You might start your morning setting direction in a roadmap review; making the call on which science investments will have the biggest customer impact and then dive into architecting an evaluation framework that the whole team will build on. Before lunch, you're pair-prompting with an agentic coding assistant to validate a new approach, then unblocking a teammate stuck on a thorny modeling problem. In the afternoon, you lead a design session with senior and principal scientists and engineers, then distill it into a crisp recommendation for senior leadership. You own ambiguous problems end to end, define how the team works, and see your decisions ripple across the product. This is where builders who want to lead with science come to do their best work. About the team 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 Here at AWS, it’s in our nature to learn and be curious. Our employee-led affinity groups foster a culture of inclusion that empower us to be proud of our differences. Ongoing events and learning experiences, including our Conversations on Race and Ethnicity (CORE) and AmazeCon conferences, inspire us to never stop embracing our uniqueness. 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 in the cloud. Hybrid Work We value innovation and recognize this sometimes requires uninterrupted time to focus on a build. We also value in-person collaboration and time spent face-to-face. Our team affords employees options to work in the office every day or in a flexible, hybrid work model near one of our U.S. Amazon offices.