March 18, 2024

Reinforcement Learning with Susan Shu Chang

Delve into the practical applications of reinforcement learning in real-world scenarios
Subscribe on
The Deep Learning Podcast
The Deep Learning Podcast
Reinforcement Learning with Susan Shu Chang
Loading
/

Show Notes

Unravel the complexities of reinforcement learning with Susan Shu Chang, Principal Data Scientist at Elastic, in this enlightening discussion on “The Deep Learning Podcast by Deci.” Susan’s expertise in implementing machine learning at scale offers valuable insights into the practical applications of reinforcement learning in real-world scenarios.

Key Highlights:

Guest Introduction: Meet Susan Shu Chang, Principal Data Scientist at Elastic, as she shares her extensive expertise in implementing machine learning at scale, particularly focusing on real-world applications of reinforcement learning.

Understanding Reinforcement Learning: Delve into the concepts of reinforcement learning, distinguishing between supervised learning and reinforcement learning, and exploring the key differences between model-free and model-based learning approaches.

Reinforcement Learning Iterations: Explore the iterative nature of reinforcement learning, understanding the concepts of policy-based and value-based methods, reward functions, and the fundamentals of Q-learning.

Deep Reinforcement Learning: Transition into deep reinforcement learning, exploring the role of neural networks and transfer learning in enhancing the capabilities of reinforcement learning agents.

Real-world Applications: Susan exemplifies reinforcement learning using real-world examples, such as improving customer support workflows, showcasing the practical impact and efficiency gains achieved through reinforcement learning implementations.

Challenges and Considerations: Gain insights into the challenges and considerations in deploying reinforcement learning models, including reward design, training processes, and the complexities of deploying models in real-world environments.

Interactive Q&A Sessions: Engage in interactive Q&A sessions covering topics such as reinforcement learning in natural language generation, further expanding on the practical applications and challenges in deploying reinforcement learning models.

Closing Remarks: Conclude the discussion with reflections on the role of reinforcement learning in driving innovation and efficiency in various industries, emphasizing the ongoing journey of exploration and adaptation in the dynamic field of artificial intelligence.

Join us in this insightful conversation with Susan Shu Chang, as we unpack the intricacies of reinforcement learning and its transformative impact on real-world applications, paving the way for future advancements in machine learning and AI technologies.

The Deep Learning Podcast
The Deep Learning Podcast
Reinforcement Learning with Susan Shu Chang
Loading
/

Join the Deep Learning Daily
Community on Discord​

The Deep Learning Daily Discord community is a dedicated space for meeting deep learning experts. Here you can ask and answer questions, have open-ended conversations and stay up to date on everything deep learning.

Share
Add Your Heading Text Here
				
					from transformers import AutoFeatureExtractor, AutoModelForImageClassification

extractor = AutoFeatureExtractor.from_pretrained("microsoft/resnet-50")

model = AutoModelForImageClassification.from_pretrained("microsoft/resnet-50")