Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 7

ARTIFICIAL INTELLIGENCE

IN HEALTHCARE

By – KHUSHI GANDHI
X-C
TERM 1
AI PRACTICAL
Artificial Intelligence refers to
the intelligence of machines.

Artificial Intelligence is the simulation of


human intelligence by machines. It is
probably the fastest-growing development in
the World of technology and innovation.
Furthermore, AI could solve major
challenges and crisis situations.
AI in medicine
• Researchers are studying how to
use AI to analyze large quantities
of health data and discover patterns
that could lead to new discoveries
in medicine and ways to improve
individual diagnostics.
• For example, researchers
developed an AI program for
answering emergency calls that
promises to recognize a cardiac
arrest during the call faster and
more frequently than medical
dispatchers.
AI for diagnosing
illness in humans
AI can correctly diagnose disease in
87% of the cases, whereas detection by
healthcare professionals yielded an 86%
accuracy rate. The specificity for deep
learning algorithms was 93%, compared
with humans' at 91%.
Personalized Treatment

• Different patients respond to drugs and treatment schedules differently

• Machine Learning can automate this complicated statistical work – and


help discover which characteristics indicate that a patient will have a
particular response to a particular treatment. So the algorithm can predict
a patient’s probable response to a particular treatment.
Develop drugs faster
Developing drugs is a notoriously expensive process. Many of the
analytical processes involved in drug development can be made more
efficient with Machine Learning.
This has the potential to shave off years of work and hundreds of
millions in investments.
            
PYTHON PROGRAM
• TO CHECK WEATHER THE • GENERATE A SERIES OF 10 EVEN NO.
GIVEN NO. IS PRIME OR NOT. AND FIND THE SUM

n = int(input("Enter a number:")) n = int(input("Enter the no. of values: "))


total = 0
if n > 1: for n in range(2,n*2+1):
for i in range(2,int(n/2)+1): if n%2 ==0:
if (n % i == 0): total = total + n
print(n, "is not a Prime Number") print("Sum of even numbers from 1 to", n, "is :", total)
break
else:
print(n,"is a Prime number")

You might also like