0% found this document useful (0 votes)
51 views21 pages

Artificial Neural Network - Jaringan Saraf Tiruan - Python

The document discusses artificial intelligence and machine learning, explaining that machine learning uses techniques like supervised learning, unsupervised learning, and reinforcement learning to build artificial neural networks that can perform tasks like image recognition. Deep learning is described as an advanced form of machine learning using neural networks to gain insights from high-dimensional data and solve complex problems. Several real-world applications of deep learning like computer vision, natural language processing, and predictive analytics are also mentioned.

Uploaded by

Nurdeny Pribadi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
51 views21 pages

Artificial Neural Network - Jaringan Saraf Tiruan - Python

The document discusses artificial intelligence and machine learning, explaining that machine learning uses techniques like supervised learning, unsupervised learning, and reinforcement learning to build artificial neural networks that can perform tasks like image recognition. Deep learning is described as an advanced form of machine learning using neural networks to gain insights from high-dimensional data and solve complex problems. Several real-world applications of deep learning like computer vision, natural language processing, and predictive analytics are also mentioned.

Uploaded by

Nurdeny Pribadi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 21

Artificial Intelligence :: Machine Learning

Artificial Neural Network


#JaringanSarafTiruan
#MenggunakanPython
https://commons.w
youtube.com/@ProgrammerSehat ikimedia.org/wiki/F
ile:Neural_network
_explain.png
Salam Kenal
Ajang Rahmat

Software Engineer @KelasRobot

Sosial Media

instagram.com/ajangrahmat

youtube.com/@ProgrammerSehat

https://replicate.com/tencentarc
/gfpgan
The Age of A.I.

https://www.youtube.com/watch?
v=UwsrzCVZAb8
synthesia.io
What Is Artificial Intelligence?
The science and engineering of making intelligent machines.

John McCarthy, 1956.

Sumber:

https://www.edureka.co/bl
og/types-of-artificial-intelli
gence/
Stages Of Artificial Intelligence
1. Artificial Narrow Intelligence
2. Artificial General Intelligence
3. Artificial Super Intelligence
Sumber:

https://www.edureka.co/bl
og/types-of-artificial-intelli
gence/
Artificial Narrow Intelligence (ANI)
Also known as Weak AI.

Siri, Alexa, Self-driving cars, Alpha-Go, Sophia the humanoid.

Sumber:

https://www.edureka.co/bl
og/types-of-artificial-intelli
gence/
Artificial General Intelligence (AGI)
Also known as Strong AI.

There are currently no existing examples of Strong AI, however, it is believed


that we will soon be able to create machines that are as smart as humans.

Sumber:

https://www.edureka.co/bl
og/types-of-artificial-intelli
gence/
Artificial Super Intelligence (ASI)
When the capability of computers will surpass human beings.

ASI is currently a hypothetical situation as depicted in movies and science


fiction books, where machines have taken over the world.

Sumber:

https://www.edureka.co/bl
og/types-of-artificial-intelli
gence/
Branches Of Artifical Intelligence

Artificial Intelligence can be


used to solve real-world
problems by implementing the
following processes/
techniques:

Sumber:

https://www.edureka.co/bl
og/types-of-artificial-intelli
gence/
Machine Learning

Machine Learning is the science of getting machines to interpret, process and


analyze data in order to solve real-world problems.
1. Supervised Learning
2. Unsupervised Learning
3. Reinforcement Learning

Sumber:

https://www.edureka.co/bl
og/types-of-artificial-intelli
gence/
Supervised Learning

In Supervised machine learning algorithm, every instance of the training dataset consists of
input attributes and expected output. The training dataset can take any kind of data as an input
like values of a database row, the pixels of an image, or even an audio frequency
histogram.

Sumber:

https://www.edureka.co/bl
og/machine-learning-tutori
al/
Unsupervised Learning

Using the unsupervised learning algorithms you can detect patterns based on the typical
characteristics of the input data. Clustering can be considered as an example of machine
learning task that uses the unsupervised learning approach. The machine then groups similar
data samples and identify different clusters within the data.

Sumber:

https://www.edureka.co/bl
og/machine-learning-tutori
al/
Reinforcement Learning

Sumber:

https://www.edureka.co/bl
og/machine-learning-tutori
al/
Deep Learning

Deep Learning is the process of implementing Neural Networks on high


dimensional data to gain insights and form solutions. Deep Learning is an
advanced field of Machine Learning that can be used to solve more
advanced problems.

Sumber:

https://www.edureka.co/bl
og/types-of-artificial-intelli
gence/
Deep Learning

Sumber:

https://www.edureka.co/bl
og/what-is-deep-learning
Applications of Deep Learning

Sumber:

https://www.edureka.co/bl
og/what-is-deep-learning
Simple Definition Of A Neural Network

Modeled in accordance with the human brain, a Neural Network was built to mimic the
functionality of a human brain. The human brain is a neural network made up of multiple
neurons, similarly, an Artificial Neural Network (ANN) is made up of multiple perceptrons.

1. Input Layer: As the name suggests, this layer accepts all the inputs provided by the
programmer.
2. Hidden Layer: Between the input and the output layer is a set of layers known as Hidden
layers. In this layer, computations are performed which result in the output.
3. Output Layer: The inputs go through a series of transformations via the hidden layer
which finally results in the output that is delivered via this layer.

Sumber:

https://www.edureka.co/bl
og/what-is-a-neural-netwo
rk/
What Is A Perceptron?

A Perceptron is a single layer neural network


that is used to classify linear data. It has 4
important components:

1. Inputs
2. Weights and Bias
3. Summation Function
4. Activation or transformation Function

Sumber:

https://www.edureka.co/bl
og/what-is-a-neural-netwo
rk/
Neural Networks Explained With An Example

Sumber:

https://www.edureka.co/bl
og/what-is-a-neural-netwo
rk/
QnA

You might also like