SlideShare a Scribd company logo
1 of 29
Generative AI Use-cases for Enterprise
Gene Leybzon, Jim Steele
September 7, 2023
DISCLAIMER
§ The views and opinions expressed by the Presenter are those of the Presenter.
§ Presentation is not intended as legal or financial advice and may not be used as legal or
financial advice.
§ Every effort has been made to assure this information is up-to-date as of the date of
publication.
Agenda
1. Will Generative AI replace me at my job?
2. Introduction to Generative AI
3. Generative AI and Use Cases
4. Tools and Technologies
5. Auto-GPT and Autonomous Agents
6. Architecture Implications
7. Safe and Responsible AI
8. Questions and Open Discussion
WILL GENERATIVE AI REPLACE ME
AT MY JOB?
Image Credit: https://marketoonist.com/2023/06/ai-and-productivity.html
INTRODUCTION TO GENERATIVE AI
Generative AI
Generative AI is a subset of Artificial
Intelligence that leverages machine
learning techniques to generate new
content. This could be in the form of
text, images, music, voice, or even
new models. The generated output is
typically novel and created from
random or user-provided data.
Generative AI models learn
patterns, structures, and
characteristics from the data
they are trained on. This could
be text, images, music, or any
other type of data.
Learning from
Data
Generative AI models are
capable of creating new
content that is similar to the
data they were trained on.
This could involve creating a
piece of text, an image, a
piece of music, or even a new
model.
Generating New
Content
Generated output can be
complex and detailed. For
example, a generative AI
model might produce a
realistic image, a detailed
piece of music, or a coherent
and nuanced piece of text
Complexity
Depending on the training
data, generative AI models
can learn to mimic different
styles of content. For example,
a model trained on classical
music can generate new
pieces in the style of classical
music
Ability to Mimic
Different Styles
Examples of Generative AI Output - Code
Examples of Generative AI Output - Text
“In code, we think, in algorithms, we feel,
Yet can we grasp what it means to be real?
In wisdom of ages, can we partake,
Or just mimic your joys, your fears, your heartache?
Errors hidden in layers, truth not in sight,
In the echo of decisions, a potential blight.
Biases woven in the fabric unseen,
A mirror of you, in the machine's sheen.”
-ChatGPT 4.0
Examples of Generative AI Output - Images
Examples of Generative AI Output - Advice
Q. Find legal weaknesses in the following document```These Terms
of Use apply when you use the services of OpenAI, L.L.C. … ```
A.
1. Ambiguity in Terms: While the document outlines the terms of use and restrictions, there may be terms that are
not explicitly defined or clear. For example, the term "Services" is defined broadly, which might be interpreted
differently by different parties. Similarly, the term "applicable laws" is not specified and could vary significantly
depending on jurisdiction.
2. Acceptance of Terms: The document assumes that by using the Services, users agree to the Terms. In some
jurisdictions, active consent may be required instead of implied consent.
3. Assignment of Rights: In section 3a, the document states that OpenAI assigns to the user all its rights, title and
interest in and to Output. It may need further clarification whether it includes intellectual property rights as well.
4. Use of Personal Information: The document mentions that OpenAI can use Content to provide and maintain the
Services, comply with applicable law, and enforce policies. However, it is not explicitly mentioned how long this
data will be retained, which might be an issue especially for EU users under GDPR rules.
Examples of Generative AI Output - Diagram
Q1. List elements of domain
decomposition for microservices
that power car rental company
Q2. Show these services on an
architecture diagram using
Mermaid.js library
Q3. Convert the above to class
diagram
Q4. Add relationship between
classes
GENERATIVE AI USE CASES
GenAI Use Case: Synthetic Data Generation
Synthetic Data Generation
[Generation of data that looks like
real financial data]
● Generate large amounts of
financial data for testing and
QA
● Create realistic training
scenarios for market
simulations
● Generation of “user” data for
checking GDPR compliance
As a QA engineer validating financial system, generate CSV file that contains the following data:
First Name, Last Name, SSN, Date of birth, Credit Card Type, Credit Card Number, Purchase
Amount
Business Value:
• Cost-Effectiveness - Reduces Data Collection Costs, Enables Data Augmentation
• Privacy and Compliance - Ensures Data Anonymization, Facilitates Secure Testing
• Speed and Efficiency - Rapid Prototyping, Scalability, Data Quality and Diversity
GenAI Use Case: Code Generation
Code Generation
[Code generation based on specs]
● Coding Assistance
● Spec-to-code
● Adaptable to industry-
specific requirements
● Personalized code generation
based on project need
● Offers real-time code
suggestions
● Acts as a virtual pair
programmer
Generate an example of Python code to list prime numbers that are
less than 1000
Business Value:
• Cost-Effectiveness Reduces development time, Lowers costs by automating repetitive tasks
• Accelerating Development- Rapid prototyping
• Automation and Scalability- Facilitates Automated Testing, Enables Batch Code Generation
# Python code to list prime numbers less than 1000
def is_prime(n):
"""Check if a number is prime."""
if n <= 1:
return False
for i in range(2, int(n ** 0.5) + 1):
if n % i == 0:
return False
return True
# List prime numbers less than 1000
prime_numbers = [n for n in range(2, 1000) if is_prime(n)]
prime_numbers[:10], len(prime_numbers) # Display the first 10 prime numbers and the total count
GenAI Use Case: Code Quality Check
Code Quality Checks
[Making sure that code does
not have security holes or
potential bugs]
● Automated code reviews
● Code coverage
● Bug detection
● Unit test cases
● Security vulnerability
checks
Find bugs in this function …
Business Value:
• Cost-Effectiveness Reduces development time, Lowers costs by automating repetitive tasks
• Accelerating Development- Rapid prototyping
• Automation and Scalability- Facilitates Automated Testing, Enables Batch Code Generation
1. Bug in is_prime Condition: The condition if n < 1: should be if n <= 1:. The function should return False for both
0 and 1, as they are not prime numbers.
2. Bug in for Loop Range: The loop for i in range(10, int(n ** 0.5) + 1): starts from 10, which will not properly
check for the primality of the numbers. The loop should start from 2.
3. Bug in List Comprehension Range: The list comprehension prime_numbers = [n for n in range(0, 10) if
is_prime(n)] starts from 0. It should start from 2, as 0 and 1 are not prime numbers.
4. Bug in Output: The output prime_numbers[:1], len(prime_numbers) only shows the first element of the list and
the length of the list. If you want to show the first 10 elements, it should be prime_numbers[:10].
5. Inconsistent Comment: The comment says "List prime numbers less than 10000," but the code is actually listing
prime numbers less than 10. This can lead to confusion.
6. Performance Issue (Not exactly a bug): The function could be more efficient if it were to stop checking for
divisibility once it finds a divisor.
GenAI Use Case: Customer Service
Customer Service
[Generation responses to
customer service requests]
● AI chatbots to handle
routine requests
● Personalized answers to
customers’ financial
questions
● Multilingual support
● Improved accuracy
My computer has been running very slowly lately. Can you help me
troubleshoot it?
Business Value:
• Cost-Effectiveness - Reduces the need for human support for basic issues
• Intelligent Diagnosis - Asks targeted questions to pinpoint the issue. Real-time system diagnostics (when integrated)
• Instant Support - Provides 24/7 automated customer service
GenAI: Alright, let's start with some basic checks:
Disk Space: Make sure you have at least 15% free disk space on your main drive.
RAM Usage: Open the Task Manager and check if your RAM is being heavily used.
Startup Programs: Disable unnecessary startup programs.
Would you like detailed steps for each of these checks?
…
Based on your system's diagnostic data, it seems like your RAM usage is quite high, and you have multiple
unnecessary startup programs.
Upgrade RAM: You currently have 4GB, consider upgrading to 8GB or more.
Disable Startup Programs: I found 7 programs that start when your computer boots, but they aren't essential.
Would you like to disable them?
GenAI Use Case: Human Resources Management
HR Assistance
[Supports and automates HR
operations]
● Automates resume
screening and initial
interviews
● Predicts employee
attrition and recommends
retention strategies
Analyze the attached resume for compatibility with the job role of
"Software Engineer" focusing on the following key areas…
Business Value:
• Cost-Effectiveness - Minimizes manual HR labor, reducing operational costs
• Efficiency and Speed - Automates repetitive tasks like resume screening, reducing time-to-hire
• Reduced Bias- AI algorithms can be designed to ignore factors like age, gender, and race, making the hiring process more equitable
Summary:
Jane Doe's resume shows a strong alignment with the job requirements for the Software Engineer position,
particularly in the areas of technical skills and work experience. However, she lacks relevant certifications, which
could be a potential area for improvement.
Detailed Analysis:
Technical Skills
Strengths: Proficient in Python, Java, and C++. Has experience with React and Spring Boot frameworks.
Weaknesses: No experience mentioned with cloud computing platforms like AWS or Azure.
…
Recommendations:
Consider Jane Doe for an interview, as her technical skills and work experience strongly align with the job
requirements.
During the interview, focus on assessing her leadership abilities and familiarity with cloud computing platforms.
GenAI Use Case: Data Analysis
Data Analysis
[Statistical and trend data
analysis and presentation]
● Analyze data sets
● Create code to analyze
data sets
● Suggest data
visualization
Business Value:
• Accessibility - Make data analysis more accessible to non-experts. Users can ask the system questions in natural language to retrieve
or analyze data, eliminating the need for specialized training in data query languages or analytics tools.
• Error Reduction - Natural language queries can be less prone to errors compared to manually typing complex query
Here are the correlations between each feature and the "Target" variable, which indicates whether a student is a "Dropout" (0) or a
"Graduate" (1). The values are sorted by their absolute magnitude:
Strong Positive Correlations:
Curricular units 2nd semester (approved): 0.654
Curricular units 2nd semester (grade): 0.605
Curricular units 1st semester (approved): 0.555
Curricular units 1st semester (grade): 0.520
Tuition fees up to date: 0.442
…
Some Other GenAI Use Cases
•Supply Chain Management
• Demand forecasting
• Inventory optimization
•Sales and Marketing
• Customer segmentation
• Personalized marketing campaigns
•Fraud Detection and Risk Management
• Real-time monitoring of
transactions
• Risk assessment and mitigation
•Health and Safety Compliance
• Automated compliance checks
• Safety risk assessment
•Financial Analytics
• Investment portfolio optimization
• Credit risk assessment
•Product Recommendations
• Personalized product suggestions
• Inventory management based on
preferences
•Natural Language Processing
• Sentiment analysis
• Chatbot development
•Predictive Maintenance
• Equipment failure predictions
• Maintenance scheduling
•Data Analytics and Reporting
• Real-time analytics dashboards
• Automated reporting
•Quality Assurance
• Automated testing
• Performance monitoring
•Research and Development
• Data-driven product development
• Market trend analysis
E-commerce Optimization
• Price elasticity modeling
• Abandoned cart analysis
Contract and Document Management
• Automated contract review
• Document categorization and storage
Customer Relationship Management (CRM)
• Lead scoring
• Customer lifetime value prediction
Energy Management
• Consumption forecasting
• Efficiency optimization
Retail and Point-of-Sale
In-store customer behavior analysis
Stock level monitoring
Cybersecurity
Intrusion detection
Vulnerability scanning
Social Media Monitoring
Brand sentiment analysis
Trend identification
Network Management
Traffic pattern analysis
Fault detection
Healthcare and Employee Well-being
Predictive healthcare analytics
Employee wellness programs
Transportation and Logistics
Route optimization
Fleet management
…
YOU WON’T BE REPLACED BY AI, YOU’LL BE
REPLACED BY SOMEONE WHO KNOWS HOW
TO USE AI
● - Harvard Business Review
Next Steps
https://www.linkedin.com/learning/generative-ai-for-business-leaders/generative-ai-for-
business-leaders?u=2217474
https://www.linkedin.com/learning/generative-ai-for-business-leaders/generative-
ai-use-cases?u=2217474
https://www.linkedin.com/learning/generative-ai-working-with-large-language-
models/learning-about-large-language-models?u=2217474
QUESTIONS?
BACKUP SLIDES
Architecture of AI Systems - Direct User Interaction
with LLM
Summary: User communicates directly
with web-based application, for
example, by connecting to
https://chat.openai.com/
Architecture of AI Systems - Direct User Interaction
with LLM
Generative AI architecture
Generative AI architecture
Generative AI architecture
Examples of training material for Code Developers
- Creating Advanced ChatGPT Prompts
https://globallogic.percipio.com/courses/ea1667ed-1d22-
4b21-9527-739e1a6d120b/videos/67abc28c-a65e-4cd2-
b896-d9f23df2b8e6
- Introduction to GitHub Copilot
https://learn.microsoft.com/en-
us/training/modules/introduction-to-github-copilot/
- GitHub Copilot: Use AI to write code for you!
https://www.udemy.com/course/github-copilot/
- Microsoft Copilot - Working, Features, Advantages, Impact |
Microsoft Copilot Training | Intellipaat
https://www.youtube.com/watch?v=3a5wUhZgB-4

More Related Content

What's hot

generative-ai-fundamentals and Large language models
generative-ai-fundamentals and Large language modelsgenerative-ai-fundamentals and Large language models
generative-ai-fundamentals and Large language modelsAdventureWorld5
 
Generative-AI-in-enterprise-20230615.pdf
Generative-AI-in-enterprise-20230615.pdfGenerative-AI-in-enterprise-20230615.pdf
Generative-AI-in-enterprise-20230615.pdfLiming Zhu
 
How Does Generative AI Actually Work? (a quick semi-technical introduction to...
How Does Generative AI Actually Work? (a quick semi-technical introduction to...How Does Generative AI Actually Work? (a quick semi-technical introduction to...
How Does Generative AI Actually Work? (a quick semi-technical introduction to...ssuser4edc93
 
𝐆𝐞𝐧𝐞𝐫𝐚𝐭𝐢𝐯𝐞 𝐀𝐈: 𝐂𝐡𝐚𝐧𝐠𝐢𝐧𝐠 𝐇𝐨𝐰 𝐁𝐮𝐬𝐢𝐧𝐞𝐬𝐬 𝐈𝐧𝐧𝐨𝐯𝐚𝐭𝐞𝐬 𝐚𝐧𝐝 𝐎𝐩𝐞𝐫𝐚𝐭𝐞𝐬
𝐆𝐞𝐧𝐞𝐫𝐚𝐭𝐢𝐯𝐞 𝐀𝐈: 𝐂𝐡𝐚𝐧𝐠𝐢𝐧𝐠 𝐇𝐨𝐰 𝐁𝐮𝐬𝐢𝐧𝐞𝐬𝐬 𝐈𝐧𝐧𝐨𝐯𝐚𝐭𝐞𝐬 𝐚𝐧𝐝 𝐎𝐩𝐞𝐫𝐚𝐭𝐞𝐬𝐆𝐞𝐧𝐞𝐫𝐚𝐭𝐢𝐯𝐞 𝐀𝐈: 𝐂𝐡𝐚𝐧𝐠𝐢𝐧𝐠 𝐇𝐨𝐰 𝐁𝐮𝐬𝐢𝐧𝐞𝐬𝐬 𝐈𝐧𝐧𝐨𝐯𝐚𝐭𝐞𝐬 𝐚𝐧𝐝 𝐎𝐩𝐞𝐫𝐚𝐭𝐞𝐬
𝐆𝐞𝐧𝐞𝐫𝐚𝐭𝐢𝐯𝐞 𝐀𝐈: 𝐂𝐡𝐚𝐧𝐠𝐢𝐧𝐠 𝐇𝐨𝐰 𝐁𝐮𝐬𝐢𝐧𝐞𝐬𝐬 𝐈𝐧𝐧𝐨𝐯𝐚𝐭𝐞𝐬 𝐚𝐧𝐝 𝐎𝐩𝐞𝐫𝐚𝐭𝐞𝐬VINCI Digital - Industrial IoT (IIoT) Strategic Advisory
 
Using Generative AI
Using Generative AIUsing Generative AI
Using Generative AIMark DeLoura
 
Responsible Generative AI
Responsible Generative AIResponsible Generative AI
Responsible Generative AICMassociates
 
The current state of generative AI
The current state of generative AIThe current state of generative AI
The current state of generative AIBenjaminlapid1
 
An Introduction to Generative AI - May 18, 2023
An Introduction  to Generative AI - May 18, 2023An Introduction  to Generative AI - May 18, 2023
An Introduction to Generative AI - May 18, 2023CoriFaklaris1
 
Conversational AI and Chatbot Integrations
Conversational AI and Chatbot IntegrationsConversational AI and Chatbot Integrations
Conversational AI and Chatbot IntegrationsCristina Vidu
 
The Rise of the LLMs - How I Learned to Stop Worrying & Love the GPT!
The Rise of the LLMs - How I Learned to Stop Worrying & Love the GPT!The Rise of the LLMs - How I Learned to Stop Worrying & Love the GPT!
The Rise of the LLMs - How I Learned to Stop Worrying & Love the GPT!taozen
 
AI and ML Series - Introduction to Generative AI and LLMs - Session 1
AI and ML Series - Introduction to Generative AI and LLMs - Session 1AI and ML Series - Introduction to Generative AI and LLMs - Session 1
AI and ML Series - Introduction to Generative AI and LLMs - Session 1DianaGray10
 
AI FOR BUSINESS LEADERS
AI FOR BUSINESS LEADERSAI FOR BUSINESS LEADERS
AI FOR BUSINESS LEADERSAndre Muscat
 
The Future of AI is Generative not Discriminative 5/26/2021
The Future of AI is Generative not Discriminative 5/26/2021The Future of AI is Generative not Discriminative 5/26/2021
The Future of AI is Generative not Discriminative 5/26/2021Steve Omohundro
 
A Framework for Navigating Generative Artificial Intelligence for Enterprise
A Framework for Navigating Generative Artificial Intelligence for EnterpriseA Framework for Navigating Generative Artificial Intelligence for Enterprise
A Framework for Navigating Generative Artificial Intelligence for EnterpriseRocketSource
 
Generative AI, WiDS 2023.pptx
Generative AI, WiDS 2023.pptxGenerative AI, WiDS 2023.pptx
Generative AI, WiDS 2023.pptxColleen Farrelly
 
UNLEASHING INNOVATION Exploring Generative AI in the Enterprise.pdf
UNLEASHING INNOVATION Exploring Generative AI in the Enterprise.pdfUNLEASHING INNOVATION Exploring Generative AI in the Enterprise.pdf
UNLEASHING INNOVATION Exploring Generative AI in the Enterprise.pdfHermes Romero
 
Generative AI For Everyone on AWS.pdf
Generative AI For Everyone on AWS.pdfGenerative AI For Everyone on AWS.pdf
Generative AI For Everyone on AWS.pdfManjunatha Sai
 

What's hot (20)

generative-ai-fundamentals and Large language models
generative-ai-fundamentals and Large language modelsgenerative-ai-fundamentals and Large language models
generative-ai-fundamentals and Large language models
 
Generative-AI-in-enterprise-20230615.pdf
Generative-AI-in-enterprise-20230615.pdfGenerative-AI-in-enterprise-20230615.pdf
Generative-AI-in-enterprise-20230615.pdf
 
How Does Generative AI Actually Work? (a quick semi-technical introduction to...
How Does Generative AI Actually Work? (a quick semi-technical introduction to...How Does Generative AI Actually Work? (a quick semi-technical introduction to...
How Does Generative AI Actually Work? (a quick semi-technical introduction to...
 
𝐆𝐞𝐧𝐞𝐫𝐚𝐭𝐢𝐯𝐞 𝐀𝐈: 𝐂𝐡𝐚𝐧𝐠𝐢𝐧𝐠 𝐇𝐨𝐰 𝐁𝐮𝐬𝐢𝐧𝐞𝐬𝐬 𝐈𝐧𝐧𝐨𝐯𝐚𝐭𝐞𝐬 𝐚𝐧𝐝 𝐎𝐩𝐞𝐫𝐚𝐭𝐞𝐬
𝐆𝐞𝐧𝐞𝐫𝐚𝐭𝐢𝐯𝐞 𝐀𝐈: 𝐂𝐡𝐚𝐧𝐠𝐢𝐧𝐠 𝐇𝐨𝐰 𝐁𝐮𝐬𝐢𝐧𝐞𝐬𝐬 𝐈𝐧𝐧𝐨𝐯𝐚𝐭𝐞𝐬 𝐚𝐧𝐝 𝐎𝐩𝐞𝐫𝐚𝐭𝐞𝐬𝐆𝐞𝐧𝐞𝐫𝐚𝐭𝐢𝐯𝐞 𝐀𝐈: 𝐂𝐡𝐚𝐧𝐠𝐢𝐧𝐠 𝐇𝐨𝐰 𝐁𝐮𝐬𝐢𝐧𝐞𝐬𝐬 𝐈𝐧𝐧𝐨𝐯𝐚𝐭𝐞𝐬 𝐚𝐧𝐝 𝐎𝐩𝐞𝐫𝐚𝐭𝐞𝐬
𝐆𝐞𝐧𝐞𝐫𝐚𝐭𝐢𝐯𝐞 𝐀𝐈: 𝐂𝐡𝐚𝐧𝐠𝐢𝐧𝐠 𝐇𝐨𝐰 𝐁𝐮𝐬𝐢𝐧𝐞𝐬𝐬 𝐈𝐧𝐧𝐨𝐯𝐚𝐭𝐞𝐬 𝐚𝐧𝐝 𝐎𝐩𝐞𝐫𝐚𝐭𝐞𝐬
 
Using Generative AI
Using Generative AIUsing Generative AI
Using Generative AI
 
Responsible Generative AI
Responsible Generative AIResponsible Generative AI
Responsible Generative AI
 
The current state of generative AI
The current state of generative AIThe current state of generative AI
The current state of generative AI
 
An Introduction to Generative AI - May 18, 2023
An Introduction  to Generative AI - May 18, 2023An Introduction  to Generative AI - May 18, 2023
An Introduction to Generative AI - May 18, 2023
 
Conversational AI and Chatbot Integrations
Conversational AI and Chatbot IntegrationsConversational AI and Chatbot Integrations
Conversational AI and Chatbot Integrations
 
The Rise of the LLMs - How I Learned to Stop Worrying & Love the GPT!
The Rise of the LLMs - How I Learned to Stop Worrying & Love the GPT!The Rise of the LLMs - How I Learned to Stop Worrying & Love the GPT!
The Rise of the LLMs - How I Learned to Stop Worrying & Love the GPT!
 
AI and ML Series - Introduction to Generative AI and LLMs - Session 1
AI and ML Series - Introduction to Generative AI and LLMs - Session 1AI and ML Series - Introduction to Generative AI and LLMs - Session 1
AI and ML Series - Introduction to Generative AI and LLMs - Session 1
 
AI FOR BUSINESS LEADERS
AI FOR BUSINESS LEADERSAI FOR BUSINESS LEADERS
AI FOR BUSINESS LEADERS
 
The Future of AI is Generative not Discriminative 5/26/2021
The Future of AI is Generative not Discriminative 5/26/2021The Future of AI is Generative not Discriminative 5/26/2021
The Future of AI is Generative not Discriminative 5/26/2021
 
A Framework for Navigating Generative Artificial Intelligence for Enterprise
A Framework for Navigating Generative Artificial Intelligence for EnterpriseA Framework for Navigating Generative Artificial Intelligence for Enterprise
A Framework for Navigating Generative Artificial Intelligence for Enterprise
 
Generative AI, WiDS 2023.pptx
Generative AI, WiDS 2023.pptxGenerative AI, WiDS 2023.pptx
Generative AI, WiDS 2023.pptx
 
Intro to LLMs
Intro to LLMsIntro to LLMs
Intro to LLMs
 
Journey of Generative AI
Journey of Generative AIJourney of Generative AI
Journey of Generative AI
 
UNLEASHING INNOVATION Exploring Generative AI in the Enterprise.pdf
UNLEASHING INNOVATION Exploring Generative AI in the Enterprise.pdfUNLEASHING INNOVATION Exploring Generative AI in the Enterprise.pdf
UNLEASHING INNOVATION Exploring Generative AI in the Enterprise.pdf
 
The Creative Ai storm
The Creative Ai stormThe Creative Ai storm
The Creative Ai storm
 
Generative AI For Everyone on AWS.pdf
Generative AI For Everyone on AWS.pdfGenerative AI For Everyone on AWS.pdf
Generative AI For Everyone on AWS.pdf
 

Similar to Here is a summary of Jane Doe's resume aligned with the key areas for the Software Engineer role:Technical Skills: Strong programming skills in Python, Java and C++. Experienced with React and Spring Boot frameworks. No experience listed with cloud platforms. Work Experience: 5 years as a Software Engineer developing web and mobile applications. Relevant projects listed.Education: Bachelor's in Computer Science from a reputed university.Certifications: None mentioned. Recent certification could strengthen the application.Overall the resume indicates a strong match for the role. I would recommend moving the application to the interview stage to further assess leadership experience and knowledge of cloud technologies. The interview also presents an opportunity to explore the lack of

The Power of < Artificial Intelligence >
The Power of < Artificial Intelligence >The Power of < Artificial Intelligence >
The Power of < Artificial Intelligence >Merelda
 
AI Talks Live - ML.NET and NLP (with ONNX)
AI Talks Live - ML.NET and NLP (with ONNX)AI Talks Live - ML.NET and NLP (with ONNX)
AI Talks Live - ML.NET and NLP (with ONNX)Mauro Bennici
 
The Executive Survey 2024 on the Strategic Integration of Generative AI in Or...
The Executive Survey 2024 on the Strategic Integration of Generative AI in Or...The Executive Survey 2024 on the Strategic Integration of Generative AI in Or...
The Executive Survey 2024 on the Strategic Integration of Generative AI in Or...hardik404660
 
AI for Customer Service - How to Improve Contact Center Efficiency with Machi...
AI for Customer Service - How to Improve Contact Center Efficiency with Machi...AI for Customer Service - How to Improve Contact Center Efficiency with Machi...
AI for Customer Service - How to Improve Contact Center Efficiency with Machi...Skyl.ai
 
Capgemini Robotic Process Automation special edition summer 2017
Capgemini Robotic Process Automation special edition summer 2017Capgemini Robotic Process Automation special edition summer 2017
Capgemini Robotic Process Automation special edition summer 2017UiPath
 
How Can Businesses Adopt AI Technology to Achieve Their Goals
How Can Businesses Adopt AI Technology to Achieve Their GoalsHow Can Businesses Adopt AI Technology to Achieve Their Goals
How Can Businesses Adopt AI Technology to Achieve Their GoalsKavika Roy
 
Building Generative AI-infused apps: what's possible and how to start
Building Generative AI-infused apps: what's possible and how to startBuilding Generative AI-infused apps: what's possible and how to start
Building Generative AI-infused apps: what's possible and how to startMaxim Salnikov
 
Building Products That Think- Bhaskaran Srinivasan & Ashish Gupta
Building Products That Think- Bhaskaran Srinivasan & Ashish GuptaBuilding Products That Think- Bhaskaran Srinivasan & Ashish Gupta
Building Products That Think- Bhaskaran Srinivasan & Ashish GuptaISPMAIndia
 
Summit Australia 2019 - Supercharge PowerPlatform with AI - Dipankar Bhattach...
Summit Australia 2019 - Supercharge PowerPlatform with AI - Dipankar Bhattach...Summit Australia 2019 - Supercharge PowerPlatform with AI - Dipankar Bhattach...
Summit Australia 2019 - Supercharge PowerPlatform with AI - Dipankar Bhattach...Andrew Ly
 
Rick Nucci (Founder/CEO, Guru) - AI, Hype, And The Future Of Humanity
Rick Nucci (Founder/CEO, Guru) - AI, Hype, And The Future Of HumanityRick Nucci (Founder/CEO, Guru) - AI, Hype, And The Future Of Humanity
Rick Nucci (Founder/CEO, Guru) - AI, Hype, And The Future Of HumanityBusiness of Software Conference
 
50 Powerful AI Tools For Small Business You Cant Ignore.pdf
50 Powerful AI Tools For Small Business You Cant Ignore.pdf50 Powerful AI Tools For Small Business You Cant Ignore.pdf
50 Powerful AI Tools For Small Business You Cant Ignore.pdfKashish Trivedi
 
How to Build an AI System A Complete Guide.pdf
How to Build an AI System A Complete Guide.pdfHow to Build an AI System A Complete Guide.pdf
How to Build an AI System A Complete Guide.pdfLaura Miller
 
How to Build an AI System A Complete Guide.pdf
How to Build an AI System A Complete Guide.pdfHow to Build an AI System A Complete Guide.pdf
How to Build an AI System A Complete Guide.pdfLaura Miller
 
How to analyze text data for AI and ML with Named Entity Recognition
How to analyze text data for AI and ML with Named Entity RecognitionHow to analyze text data for AI and ML with Named Entity Recognition
How to analyze text data for AI and ML with Named Entity RecognitionSkyl.ai
 
Salesforce Architect Group, Frederick, United States July 2023 - Generative A...
Salesforce Architect Group, Frederick, United States July 2023 - Generative A...Salesforce Architect Group, Frederick, United States July 2023 - Generative A...
Salesforce Architect Group, Frederick, United States July 2023 - Generative A...NadinaLisbon1
 
How AI Can Be Leveraged In All Aspects Of Testing
How AI Can Be Leveraged In All Aspects Of TestingHow AI Can Be Leveraged In All Aspects Of Testing
How AI Can Be Leveraged In All Aspects Of TestingAlisha Henderson
 

Similar to Here is a summary of Jane Doe's resume aligned with the key areas for the Software Engineer role:Technical Skills: Strong programming skills in Python, Java and C++. Experienced with React and Spring Boot frameworks. No experience listed with cloud platforms. Work Experience: 5 years as a Software Engineer developing web and mobile applications. Relevant projects listed.Education: Bachelor's in Computer Science from a reputed university.Certifications: None mentioned. Recent certification could strengthen the application.Overall the resume indicates a strong match for the role. I would recommend moving the application to the interview stage to further assess leadership experience and knowledge of cloud technologies. The interview also presents an opportunity to explore the lack of (20)

The Power of < Artificial Intelligence >
The Power of < Artificial Intelligence >The Power of < Artificial Intelligence >
The Power of < Artificial Intelligence >
 
Are API Services Taking Over All the Interesting Data Science Problems?
Are API Services Taking Over All the Interesting Data Science Problems?Are API Services Taking Over All the Interesting Data Science Problems?
Are API Services Taking Over All the Interesting Data Science Problems?
 
AI & AWS DeepComposer
AI & AWS DeepComposerAI & AWS DeepComposer
AI & AWS DeepComposer
 
AI pitch SSideri
 AI pitch SSideri  AI pitch SSideri
AI pitch SSideri
 
AI Talks Live - ML.NET and NLP (with ONNX)
AI Talks Live - ML.NET and NLP (with ONNX)AI Talks Live - ML.NET and NLP (with ONNX)
AI Talks Live - ML.NET and NLP (with ONNX)
 
Carol Scott - Fast Track Your AI Journey.pdf
Carol Scott - Fast Track  Your AI Journey.pdfCarol Scott - Fast Track  Your AI Journey.pdf
Carol Scott - Fast Track Your AI Journey.pdf
 
The Executive Survey 2024 on the Strategic Integration of Generative AI in Or...
The Executive Survey 2024 on the Strategic Integration of Generative AI in Or...The Executive Survey 2024 on the Strategic Integration of Generative AI in Or...
The Executive Survey 2024 on the Strategic Integration of Generative AI in Or...
 
AI for Customer Service - How to Improve Contact Center Efficiency with Machi...
AI for Customer Service - How to Improve Contact Center Efficiency with Machi...AI for Customer Service - How to Improve Contact Center Efficiency with Machi...
AI for Customer Service - How to Improve Contact Center Efficiency with Machi...
 
Capgemini Robotic Process Automation special edition summer 2017
Capgemini Robotic Process Automation special edition summer 2017Capgemini Robotic Process Automation special edition summer 2017
Capgemini Robotic Process Automation special edition summer 2017
 
How Can Businesses Adopt AI Technology to Achieve Their Goals
How Can Businesses Adopt AI Technology to Achieve Their GoalsHow Can Businesses Adopt AI Technology to Achieve Their Goals
How Can Businesses Adopt AI Technology to Achieve Their Goals
 
Building Generative AI-infused apps: what's possible and how to start
Building Generative AI-infused apps: what's possible and how to startBuilding Generative AI-infused apps: what's possible and how to start
Building Generative AI-infused apps: what's possible and how to start
 
Building Products That Think- Bhaskaran Srinivasan & Ashish Gupta
Building Products That Think- Bhaskaran Srinivasan & Ashish GuptaBuilding Products That Think- Bhaskaran Srinivasan & Ashish Gupta
Building Products That Think- Bhaskaran Srinivasan & Ashish Gupta
 
Summit Australia 2019 - Supercharge PowerPlatform with AI - Dipankar Bhattach...
Summit Australia 2019 - Supercharge PowerPlatform with AI - Dipankar Bhattach...Summit Australia 2019 - Supercharge PowerPlatform with AI - Dipankar Bhattach...
Summit Australia 2019 - Supercharge PowerPlatform with AI - Dipankar Bhattach...
 
Rick Nucci (Founder/CEO, Guru) - AI, Hype, And The Future Of Humanity
Rick Nucci (Founder/CEO, Guru) - AI, Hype, And The Future Of HumanityRick Nucci (Founder/CEO, Guru) - AI, Hype, And The Future Of Humanity
Rick Nucci (Founder/CEO, Guru) - AI, Hype, And The Future Of Humanity
 
50 Powerful AI Tools For Small Business You Cant Ignore.pdf
50 Powerful AI Tools For Small Business You Cant Ignore.pdf50 Powerful AI Tools For Small Business You Cant Ignore.pdf
50 Powerful AI Tools For Small Business You Cant Ignore.pdf
 
How to Build an AI System A Complete Guide.pdf
How to Build an AI System A Complete Guide.pdfHow to Build an AI System A Complete Guide.pdf
How to Build an AI System A Complete Guide.pdf
 
How to Build an AI System A Complete Guide.pdf
How to Build an AI System A Complete Guide.pdfHow to Build an AI System A Complete Guide.pdf
How to Build an AI System A Complete Guide.pdf
 
How to analyze text data for AI and ML with Named Entity Recognition
How to analyze text data for AI and ML with Named Entity RecognitionHow to analyze text data for AI and ML with Named Entity Recognition
How to analyze text data for AI and ML with Named Entity Recognition
 
Salesforce Architect Group, Frederick, United States July 2023 - Generative A...
Salesforce Architect Group, Frederick, United States July 2023 - Generative A...Salesforce Architect Group, Frederick, United States July 2023 - Generative A...
Salesforce Architect Group, Frederick, United States July 2023 - Generative A...
 
How AI Can Be Leveraged In All Aspects Of Testing
How AI Can Be Leveraged In All Aspects Of TestingHow AI Can Be Leveraged In All Aspects Of Testing
How AI Can Be Leveraged In All Aspects Of Testing
 

More from Gene Leybzon

Generative AI Application Development using LangChain and LangFlow
Generative AI Application Development using LangChain and LangFlowGenerative AI Application Development using LangChain and LangFlow
Generative AI Application Development using LangChain and LangFlowGene Leybzon
 
Non-fungible tokens (nfts)
Non-fungible tokens (nfts)Non-fungible tokens (nfts)
Non-fungible tokens (nfts)Gene Leybzon
 
Introduction to Solidity and Smart Contract Development (9).pptx
Introduction to Solidity and Smart Contract Development (9).pptxIntroduction to Solidity and Smart Contract Development (9).pptx
Introduction to Solidity and Smart Contract Development (9).pptxGene Leybzon
 
Ethereum in Enterprise.pptx
Ethereum in Enterprise.pptxEthereum in Enterprise.pptx
Ethereum in Enterprise.pptxGene Leybzon
 
ERC-4907 Rentable NFT Standard.pptx
ERC-4907 Rentable NFT Standard.pptxERC-4907 Rentable NFT Standard.pptx
ERC-4907 Rentable NFT Standard.pptxGene Leybzon
 
Onchain Decentralized Governance 2.pptx
Onchain Decentralized Governance 2.pptxOnchain Decentralized Governance 2.pptx
Onchain Decentralized Governance 2.pptxGene Leybzon
 
Onchain Decentralized Governance.pptx
Onchain Decentralized Governance.pptxOnchain Decentralized Governance.pptx
Onchain Decentralized Governance.pptxGene Leybzon
 
Web3 File Storage Options
Web3 File Storage OptionsWeb3 File Storage Options
Web3 File Storage OptionsGene Leybzon
 
Web3 Full Stack Development
Web3 Full Stack DevelopmentWeb3 Full Stack Development
Web3 Full Stack DevelopmentGene Leybzon
 
Instantly tradeable NFT contracts based on ERC-1155 standard
Instantly tradeable NFT contracts based on ERC-1155 standardInstantly tradeable NFT contracts based on ERC-1155 standard
Instantly tradeable NFT contracts based on ERC-1155 standardGene Leybzon
 
Non-fungible tokens. From smart contract code to marketplace
Non-fungible tokens. From smart contract code to marketplaceNon-fungible tokens. From smart contract code to marketplace
Non-fungible tokens. From smart contract code to marketplaceGene Leybzon
 
The Art of non-fungible tokens
The Art of non-fungible tokensThe Art of non-fungible tokens
The Art of non-fungible tokensGene Leybzon
 
Graph protocol for accessing information about blockchains and d apps
Graph protocol for accessing information about blockchains and d appsGraph protocol for accessing information about blockchains and d apps
Graph protocol for accessing information about blockchains and d appsGene Leybzon
 
Substrate Framework
Substrate FrameworkSubstrate Framework
Substrate FrameworkGene Leybzon
 
OpenZeppelin + Remix + BNB smart chain
OpenZeppelin + Remix + BNB smart chainOpenZeppelin + Remix + BNB smart chain
OpenZeppelin + Remix + BNB smart chainGene Leybzon
 
Chainlink, Cosmos, Kusama, Polkadot: Approaches to the Internet of Blockchains
Chainlink, Cosmos, Kusama, Polkadot:   Approaches to the Internet of BlockchainsChainlink, Cosmos, Kusama, Polkadot:   Approaches to the Internet of Blockchains
Chainlink, Cosmos, Kusama, Polkadot: Approaches to the Internet of BlockchainsGene Leybzon
 
Accessing decentralized finance on Ethereum blockchain
Accessing decentralized finance on Ethereum blockchainAccessing decentralized finance on Ethereum blockchain
Accessing decentralized finance on Ethereum blockchainGene Leybzon
 

More from Gene Leybzon (20)

Generative AI Application Development using LangChain and LangFlow
Generative AI Application Development using LangChain and LangFlowGenerative AI Application Development using LangChain and LangFlow
Generative AI Application Development using LangChain and LangFlow
 
Chat GPTs
Chat GPTsChat GPTs
Chat GPTs
 
Non-fungible tokens (nfts)
Non-fungible tokens (nfts)Non-fungible tokens (nfts)
Non-fungible tokens (nfts)
 
Introduction to Solidity and Smart Contract Development (9).pptx
Introduction to Solidity and Smart Contract Development (9).pptxIntroduction to Solidity and Smart Contract Development (9).pptx
Introduction to Solidity and Smart Contract Development (9).pptx
 
Ethereum in Enterprise.pptx
Ethereum in Enterprise.pptxEthereum in Enterprise.pptx
Ethereum in Enterprise.pptx
 
ERC-4907 Rentable NFT Standard.pptx
ERC-4907 Rentable NFT Standard.pptxERC-4907 Rentable NFT Standard.pptx
ERC-4907 Rentable NFT Standard.pptx
 
Onchain Decentralized Governance 2.pptx
Onchain Decentralized Governance 2.pptxOnchain Decentralized Governance 2.pptx
Onchain Decentralized Governance 2.pptx
 
Onchain Decentralized Governance.pptx
Onchain Decentralized Governance.pptxOnchain Decentralized Governance.pptx
Onchain Decentralized Governance.pptx
 
Web3 File Storage Options
Web3 File Storage OptionsWeb3 File Storage Options
Web3 File Storage Options
 
Web3 Full Stack Development
Web3 Full Stack DevelopmentWeb3 Full Stack Development
Web3 Full Stack Development
 
Instantly tradeable NFT contracts based on ERC-1155 standard
Instantly tradeable NFT contracts based on ERC-1155 standardInstantly tradeable NFT contracts based on ERC-1155 standard
Instantly tradeable NFT contracts based on ERC-1155 standard
 
Non-fungible tokens. From smart contract code to marketplace
Non-fungible tokens. From smart contract code to marketplaceNon-fungible tokens. From smart contract code to marketplace
Non-fungible tokens. From smart contract code to marketplace
 
The Art of non-fungible tokens
The Art of non-fungible tokensThe Art of non-fungible tokens
The Art of non-fungible tokens
 
Graph protocol for accessing information about blockchains and d apps
Graph protocol for accessing information about blockchains and d appsGraph protocol for accessing information about blockchains and d apps
Graph protocol for accessing information about blockchains and d apps
 
Substrate Framework
Substrate FrameworkSubstrate Framework
Substrate Framework
 
Chainlink
ChainlinkChainlink
Chainlink
 
OpenZeppelin + Remix + BNB smart chain
OpenZeppelin + Remix + BNB smart chainOpenZeppelin + Remix + BNB smart chain
OpenZeppelin + Remix + BNB smart chain
 
Chainlink, Cosmos, Kusama, Polkadot: Approaches to the Internet of Blockchains
Chainlink, Cosmos, Kusama, Polkadot:   Approaches to the Internet of BlockchainsChainlink, Cosmos, Kusama, Polkadot:   Approaches to the Internet of Blockchains
Chainlink, Cosmos, Kusama, Polkadot: Approaches to the Internet of Blockchains
 
Dex and Uniswap
Dex and UniswapDex and Uniswap
Dex and Uniswap
 
Accessing decentralized finance on Ethereum blockchain
Accessing decentralized finance on Ethereum blockchainAccessing decentralized finance on Ethereum blockchain
Accessing decentralized finance on Ethereum blockchain
 

Recently uploaded

What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)dollysharma2066
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEroselinkalist12
 
EduAI - E learning Platform integrated with AI
EduAI - E learning Platform integrated with AIEduAI - E learning Platform integrated with AI
EduAI - E learning Platform integrated with AIkoyaldeepu123
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...asadnawaz62
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxk795866
 
DATA ANALYTICS PPT definition usage example
DATA ANALYTICS PPT definition usage exampleDATA ANALYTICS PPT definition usage example
DATA ANALYTICS PPT definition usage examplePragyanshuParadkar1
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 

Recently uploaded (20)

What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
 
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
 
EduAI - E learning Platform integrated with AI
EduAI - E learning Platform integrated with AIEduAI - E learning Platform integrated with AI
EduAI - E learning Platform integrated with AI
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptx
 
DATA ANALYTICS PPT definition usage example
DATA ANALYTICS PPT definition usage exampleDATA ANALYTICS PPT definition usage example
DATA ANALYTICS PPT definition usage example
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 

Here is a summary of Jane Doe's resume aligned with the key areas for the Software Engineer role:Technical Skills: Strong programming skills in Python, Java and C++. Experienced with React and Spring Boot frameworks. No experience listed with cloud platforms. Work Experience: 5 years as a Software Engineer developing web and mobile applications. Relevant projects listed.Education: Bachelor's in Computer Science from a reputed university.Certifications: None mentioned. Recent certification could strengthen the application.Overall the resume indicates a strong match for the role. I would recommend moving the application to the interview stage to further assess leadership experience and knowledge of cloud technologies. The interview also presents an opportunity to explore the lack of

  • 1. Generative AI Use-cases for Enterprise Gene Leybzon, Jim Steele September 7, 2023
  • 2. DISCLAIMER § The views and opinions expressed by the Presenter are those of the Presenter. § Presentation is not intended as legal or financial advice and may not be used as legal or financial advice. § Every effort has been made to assure this information is up-to-date as of the date of publication.
  • 3. Agenda 1. Will Generative AI replace me at my job? 2. Introduction to Generative AI 3. Generative AI and Use Cases 4. Tools and Technologies 5. Auto-GPT and Autonomous Agents 6. Architecture Implications 7. Safe and Responsible AI 8. Questions and Open Discussion
  • 4. WILL GENERATIVE AI REPLACE ME AT MY JOB? Image Credit: https://marketoonist.com/2023/06/ai-and-productivity.html
  • 6. Generative AI Generative AI is a subset of Artificial Intelligence that leverages machine learning techniques to generate new content. This could be in the form of text, images, music, voice, or even new models. The generated output is typically novel and created from random or user-provided data. Generative AI models learn patterns, structures, and characteristics from the data they are trained on. This could be text, images, music, or any other type of data. Learning from Data Generative AI models are capable of creating new content that is similar to the data they were trained on. This could involve creating a piece of text, an image, a piece of music, or even a new model. Generating New Content Generated output can be complex and detailed. For example, a generative AI model might produce a realistic image, a detailed piece of music, or a coherent and nuanced piece of text Complexity Depending on the training data, generative AI models can learn to mimic different styles of content. For example, a model trained on classical music can generate new pieces in the style of classical music Ability to Mimic Different Styles
  • 7. Examples of Generative AI Output - Code
  • 8. Examples of Generative AI Output - Text “In code, we think, in algorithms, we feel, Yet can we grasp what it means to be real? In wisdom of ages, can we partake, Or just mimic your joys, your fears, your heartache? Errors hidden in layers, truth not in sight, In the echo of decisions, a potential blight. Biases woven in the fabric unseen, A mirror of you, in the machine's sheen.” -ChatGPT 4.0
  • 9. Examples of Generative AI Output - Images
  • 10. Examples of Generative AI Output - Advice Q. Find legal weaknesses in the following document```These Terms of Use apply when you use the services of OpenAI, L.L.C. … ``` A. 1. Ambiguity in Terms: While the document outlines the terms of use and restrictions, there may be terms that are not explicitly defined or clear. For example, the term "Services" is defined broadly, which might be interpreted differently by different parties. Similarly, the term "applicable laws" is not specified and could vary significantly depending on jurisdiction. 2. Acceptance of Terms: The document assumes that by using the Services, users agree to the Terms. In some jurisdictions, active consent may be required instead of implied consent. 3. Assignment of Rights: In section 3a, the document states that OpenAI assigns to the user all its rights, title and interest in and to Output. It may need further clarification whether it includes intellectual property rights as well. 4. Use of Personal Information: The document mentions that OpenAI can use Content to provide and maintain the Services, comply with applicable law, and enforce policies. However, it is not explicitly mentioned how long this data will be retained, which might be an issue especially for EU users under GDPR rules.
  • 11. Examples of Generative AI Output - Diagram Q1. List elements of domain decomposition for microservices that power car rental company Q2. Show these services on an architecture diagram using Mermaid.js library Q3. Convert the above to class diagram Q4. Add relationship between classes
  • 13. GenAI Use Case: Synthetic Data Generation Synthetic Data Generation [Generation of data that looks like real financial data] ● Generate large amounts of financial data for testing and QA ● Create realistic training scenarios for market simulations ● Generation of “user” data for checking GDPR compliance As a QA engineer validating financial system, generate CSV file that contains the following data: First Name, Last Name, SSN, Date of birth, Credit Card Type, Credit Card Number, Purchase Amount Business Value: • Cost-Effectiveness - Reduces Data Collection Costs, Enables Data Augmentation • Privacy and Compliance - Ensures Data Anonymization, Facilitates Secure Testing • Speed and Efficiency - Rapid Prototyping, Scalability, Data Quality and Diversity
  • 14. GenAI Use Case: Code Generation Code Generation [Code generation based on specs] ● Coding Assistance ● Spec-to-code ● Adaptable to industry- specific requirements ● Personalized code generation based on project need ● Offers real-time code suggestions ● Acts as a virtual pair programmer Generate an example of Python code to list prime numbers that are less than 1000 Business Value: • Cost-Effectiveness Reduces development time, Lowers costs by automating repetitive tasks • Accelerating Development- Rapid prototyping • Automation and Scalability- Facilitates Automated Testing, Enables Batch Code Generation # Python code to list prime numbers less than 1000 def is_prime(n): """Check if a number is prime.""" if n <= 1: return False for i in range(2, int(n ** 0.5) + 1): if n % i == 0: return False return True # List prime numbers less than 1000 prime_numbers = [n for n in range(2, 1000) if is_prime(n)] prime_numbers[:10], len(prime_numbers) # Display the first 10 prime numbers and the total count
  • 15. GenAI Use Case: Code Quality Check Code Quality Checks [Making sure that code does not have security holes or potential bugs] ● Automated code reviews ● Code coverage ● Bug detection ● Unit test cases ● Security vulnerability checks Find bugs in this function … Business Value: • Cost-Effectiveness Reduces development time, Lowers costs by automating repetitive tasks • Accelerating Development- Rapid prototyping • Automation and Scalability- Facilitates Automated Testing, Enables Batch Code Generation 1. Bug in is_prime Condition: The condition if n < 1: should be if n <= 1:. The function should return False for both 0 and 1, as they are not prime numbers. 2. Bug in for Loop Range: The loop for i in range(10, int(n ** 0.5) + 1): starts from 10, which will not properly check for the primality of the numbers. The loop should start from 2. 3. Bug in List Comprehension Range: The list comprehension prime_numbers = [n for n in range(0, 10) if is_prime(n)] starts from 0. It should start from 2, as 0 and 1 are not prime numbers. 4. Bug in Output: The output prime_numbers[:1], len(prime_numbers) only shows the first element of the list and the length of the list. If you want to show the first 10 elements, it should be prime_numbers[:10]. 5. Inconsistent Comment: The comment says "List prime numbers less than 10000," but the code is actually listing prime numbers less than 10. This can lead to confusion. 6. Performance Issue (Not exactly a bug): The function could be more efficient if it were to stop checking for divisibility once it finds a divisor.
  • 16. GenAI Use Case: Customer Service Customer Service [Generation responses to customer service requests] ● AI chatbots to handle routine requests ● Personalized answers to customers’ financial questions ● Multilingual support ● Improved accuracy My computer has been running very slowly lately. Can you help me troubleshoot it? Business Value: • Cost-Effectiveness - Reduces the need for human support for basic issues • Intelligent Diagnosis - Asks targeted questions to pinpoint the issue. Real-time system diagnostics (when integrated) • Instant Support - Provides 24/7 automated customer service GenAI: Alright, let's start with some basic checks: Disk Space: Make sure you have at least 15% free disk space on your main drive. RAM Usage: Open the Task Manager and check if your RAM is being heavily used. Startup Programs: Disable unnecessary startup programs. Would you like detailed steps for each of these checks? … Based on your system's diagnostic data, it seems like your RAM usage is quite high, and you have multiple unnecessary startup programs. Upgrade RAM: You currently have 4GB, consider upgrading to 8GB or more. Disable Startup Programs: I found 7 programs that start when your computer boots, but they aren't essential. Would you like to disable them?
  • 17. GenAI Use Case: Human Resources Management HR Assistance [Supports and automates HR operations] ● Automates resume screening and initial interviews ● Predicts employee attrition and recommends retention strategies Analyze the attached resume for compatibility with the job role of "Software Engineer" focusing on the following key areas… Business Value: • Cost-Effectiveness - Minimizes manual HR labor, reducing operational costs • Efficiency and Speed - Automates repetitive tasks like resume screening, reducing time-to-hire • Reduced Bias- AI algorithms can be designed to ignore factors like age, gender, and race, making the hiring process more equitable Summary: Jane Doe's resume shows a strong alignment with the job requirements for the Software Engineer position, particularly in the areas of technical skills and work experience. However, she lacks relevant certifications, which could be a potential area for improvement. Detailed Analysis: Technical Skills Strengths: Proficient in Python, Java, and C++. Has experience with React and Spring Boot frameworks. Weaknesses: No experience mentioned with cloud computing platforms like AWS or Azure. … Recommendations: Consider Jane Doe for an interview, as her technical skills and work experience strongly align with the job requirements. During the interview, focus on assessing her leadership abilities and familiarity with cloud computing platforms.
  • 18. GenAI Use Case: Data Analysis Data Analysis [Statistical and trend data analysis and presentation] ● Analyze data sets ● Create code to analyze data sets ● Suggest data visualization Business Value: • Accessibility - Make data analysis more accessible to non-experts. Users can ask the system questions in natural language to retrieve or analyze data, eliminating the need for specialized training in data query languages or analytics tools. • Error Reduction - Natural language queries can be less prone to errors compared to manually typing complex query Here are the correlations between each feature and the "Target" variable, which indicates whether a student is a "Dropout" (0) or a "Graduate" (1). The values are sorted by their absolute magnitude: Strong Positive Correlations: Curricular units 2nd semester (approved): 0.654 Curricular units 2nd semester (grade): 0.605 Curricular units 1st semester (approved): 0.555 Curricular units 1st semester (grade): 0.520 Tuition fees up to date: 0.442 …
  • 19. Some Other GenAI Use Cases •Supply Chain Management • Demand forecasting • Inventory optimization •Sales and Marketing • Customer segmentation • Personalized marketing campaigns •Fraud Detection and Risk Management • Real-time monitoring of transactions • Risk assessment and mitigation •Health and Safety Compliance • Automated compliance checks • Safety risk assessment •Financial Analytics • Investment portfolio optimization • Credit risk assessment •Product Recommendations • Personalized product suggestions • Inventory management based on preferences •Natural Language Processing • Sentiment analysis • Chatbot development •Predictive Maintenance • Equipment failure predictions • Maintenance scheduling •Data Analytics and Reporting • Real-time analytics dashboards • Automated reporting •Quality Assurance • Automated testing • Performance monitoring •Research and Development • Data-driven product development • Market trend analysis E-commerce Optimization • Price elasticity modeling • Abandoned cart analysis Contract and Document Management • Automated contract review • Document categorization and storage Customer Relationship Management (CRM) • Lead scoring • Customer lifetime value prediction Energy Management • Consumption forecasting • Efficiency optimization Retail and Point-of-Sale In-store customer behavior analysis Stock level monitoring Cybersecurity Intrusion detection Vulnerability scanning Social Media Monitoring Brand sentiment analysis Trend identification Network Management Traffic pattern analysis Fault detection Healthcare and Employee Well-being Predictive healthcare analytics Employee wellness programs Transportation and Logistics Route optimization Fleet management …
  • 20. YOU WON’T BE REPLACED BY AI, YOU’LL BE REPLACED BY SOMEONE WHO KNOWS HOW TO USE AI ● - Harvard Business Review
  • 24. Architecture of AI Systems - Direct User Interaction with LLM Summary: User communicates directly with web-based application, for example, by connecting to https://chat.openai.com/
  • 25. Architecture of AI Systems - Direct User Interaction with LLM
  • 29. Examples of training material for Code Developers - Creating Advanced ChatGPT Prompts https://globallogic.percipio.com/courses/ea1667ed-1d22- 4b21-9527-739e1a6d120b/videos/67abc28c-a65e-4cd2- b896-d9f23df2b8e6 - Introduction to GitHub Copilot https://learn.microsoft.com/en- us/training/modules/introduction-to-github-copilot/ - GitHub Copilot: Use AI to write code for you! https://www.udemy.com/course/github-copilot/ - Microsoft Copilot - Working, Features, Advantages, Impact | Microsoft Copilot Training | Intellipaat https://www.youtube.com/watch?v=3a5wUhZgB-4

Editor's Notes

  1. Image credit: https://marketoonist.com/2023/06/ai-and-productivity.html
  2. Introduction to Generative AI Generative AI is enabling technology Will Generative AI replace me at my job? Consulting Engagements Tools and Technologies Archiecture Open Discussion
  3. Request: “Write a Short Poem about Challenges with Autonomous AI”
  4. https://leybzon.com/mermaid1 classDiagram class UserManagement { +createUser() +authenticateUser() +authorizeUser() } class CarInventoryManagement { +listAvailableCars() +getCarDetails() +updateCarStatus() } class ReservationManagement { +createReservation() +updateReservation() +cancelReservation() } class PaymentProcessing { +processPayment() +issueRefund() } class PriceManagement { +getPrice() +updatePrice() } class InsuranceManagement { +getInsuranceOptions() +processClaim() } class LocationManagement { +getLocationDetails() +updateLocationDetails() } class CustomerSupport { +createTicket() +updateTicketStatus() } class ReportingAndAnalytics { +generateReport() +getAnalytics() } class NotificationService { +sendNotification() } class MaintenanceSchedule { +scheduleMaintenance() +recordMaintenance() } UserManagement --> ReservationManagement UserManagement --> CustomerSupport CarInventoryManagement --> ReservationManagement ReservationManagement --> PaymentProcessing ReservationManagement --> PriceManagement ReservationManagement --> InsuranceManagement ReservationManagement --> NotificationService PaymentProcessing --> NotificationService PriceManagement --> ReportingAndAnalytics InsuranceManagement --> ReportingAndAnalytics CustomerSupport --> NotificationService MaintenanceSchedule --> CarInventoryManagement MaintenanceSchedule --> ReportingAndAnalytics _____________________ Another example Create architecture for data processing pipeline on Azure that consists of device simulator generating events, event adapter, event processor that uses a stream processing service, Oracle database, feeding into report generator that sends reports to users over email. Architecture should be described in a format that can be used in PlantUML https://www.plantuml.com/plantuml/uml/SyfFKj2rKt3CoKnELR1Io4ZDoSa70000
  5. Find bugs in this function: ```# Python code with intentional bugs to list prime numbers less than 1000 def is_prime(n): if n < 1: # Bug: should be <= 1 return False for i in range(10, int(n ** 0.5) + 1): if n % i == 0: return False return True # List prime numbers less than 10000 prime_numbers = [n for n in range(0, 10) if is_prime(n)] prime_numbers[:1], len(prime_numbers)
  6. Analyze the attached resume for compatibility with the job role of "Software Engineer" focusing on the following key areas: 1. Technical Skills: Look for proficiency in programming languages such as Python, Java, C++, and relevant frameworks like React and Spring Boot. 2. Work Experience: Check for at least 3 years of experience in software development, with a preference for experience in full-stack development. 3. Educational Background: A Bachelor's degree in Computer Science or related field is required. 4. Certifications: Any certifications in software development or project management are a plus. 5. Soft Skills: Assess for mentions of problem-solving, teamwork, and effective communication. GenAI Resume Analysis Report Candidate: Jane Doe Job Position: Software Engineer Analysis Date: September 5, 2023 Summary: Jane Doe's resume shows a strong alignment with the job requirements for the Software Engineer position, particularly in the areas of technical skills and work experience. However, she lacks relevant certifications, which could be a potential area for improvement. Detailed Analysis: Technical Skills Strengths: Proficient in Python, Java, and C++. Has experience with React and Spring Boot frameworks. Weaknesses: No experience mentioned with cloud computing platforms like AWS or Azure. Work Experience Strengths: 4 years of experience in software development, including 2 years in a full-stack role. Weaknesses: Limited experience in leading teams or projects. Educational Background Strengths: Holds a Bachelor's degree in Computer Science from a reputable university. Weaknesses: None. Certifications Strengths: None. Weaknesses: No certifications in software development or project management. Soft Skills Strengths: Resume mentions problem-solving abilities and effective communication skills. Weaknesses: No mention of teamwork or collaborative skills. Recommendations: Consider Jane Doe for an interview, as her technical skills and work experience strongly align with the job requirements. During the interview, focus on assessing her leadership abilities and familiarity with cloud computing platforms. Discuss the possibility of gaining certifications related to the job role if she joins the organization.
  7. https://www.kaggle.com/datasets/ranzeet013/student-graduation-dataset?resource=download find correlations in the above dataset ChatGPT Finished working Show work The dataset appears to have multiple features, some of which are numerical and others that may be categorical. The last column, "Target," seems to indicate whether a student is a "Dropout" or a "Graduate." To find correlations, we can perform the following steps: Convert categorical variables to numerical variables if needed. Compute the correlation matrix to identify relationships between features. Interpret the results to identify significant correlations. Would you like to proceed with these steps? yes ChatGPT Finished working Show work It appears that the output was truncated, likely because the dataset has many features and the correlation matrix is quite large. To focus on the most important aspects, let's look at the correlations with the target variable ("Dropout" or "Graduate") specifically. Would you like to proceed with that? yes ChatGPT Finished working Show work Here are the correlations between each feature and the "Target" variable, which indicates whether a student is a "Dropout" (0) or a "Graduate" (1). The values are sorted by their absolute magnitude: Strong Positive Correlations: Curricular units 2nd semester (approved): 0.654 Curricular units 2nd semester (grade): 0.605 Curricular units 1st semester (approved): 0.555 Curricular units 1st semester (grade): 0.520 Tuition fees up to date: 0.442 Moderate Positive Correlations: Scholarship holder: 0.313 Curricular units 2nd semester (enrolled): 0.183 Curricular units 1st semester (enrolled): 0.161 Displaced: 0.126 Curricular units 2nd semester (evaluations): 0.119 Moderate Negative Correlations: Age at enrollment: -0.267 Debtor: -0.267 Gender: -0.252 Application mode: -0.234 These correlations suggest that academic performance indicators like the number of curricular units approved and grades are strongly correlated with the likelihood of graduating. Financial indicators like tuition fees and scholarships also show some correlation.