Artificial Neural Networks (ANN)

0.0(0)
studied byStudied by 6 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/22

flashcard set

Earn XP

Description and Tags

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

23 Terms

1
New cards
What problem does machine learning solve?
Solving pattern recognition problems
2
New cards
Machine Learning
studies computing algorithms for learning to do stuff.
3
New cards
The emphasis on machine learning is on ______ methods.
automatic
4
New cards
Machine Learning is about learning to do better in the future based on what was experienced in the past.(T/F)
True
5
New cards
Artificial Neural Network
Uses much simpler and abstract neurons, which captures the essence of neural computation. A collection of mathematical functions(instead of collection of neurons).
6
New cards
What are the components of an artificial neural network?
node, input, output, weight, fast
7
New cards
ANN is a brain metaphor for ___________.
information processing
8
New cards
Neural network
A set of connected input/output units where each connection has a weight associated with it
9
New cards
What is ANN good at capturing?
Highly complex non-linear functions
10
New cards
How does the ANN learn in the learning phase?
By adjusting the weights to be able to predict the correct class label of the inputs
11
New cards
What are the uses of ANN?
Prediction(classification, regression) and clustering/segmentation
12
New cards
What are the application areas of ANN?
finance, medicine, marketing, manufacturing, service operations, information systems
13
New cards
What does each node have?
Input and output
14
New cards
What does each node perform?
a simple computation by its node function
15
New cards
_________ connections between nodes.
Weighted
16
New cards
What gives the structure/architecture of the net?
Connectivity
17
New cards
What determines what ANN can compute?
By the connections and their weights
18
New cards
When do you use ANN?
The inputs are well understood, Input is high-dimensional discrete or real valued, Output is discrete or real valued, Output could be a vector of values, Possibly noisy data
19
New cards
What are other things to use ANN for?
Human readability/interpretability of result is unimportant
, Do not have existing knowledge about the patterns of interest, Have a large set of ‘training data’, in data mining and knowledge discovery
20
New cards
What is ANN commonly used for?
Data mining and knowledge discovery
21
New cards
What are the properties of ANN?
Many neuron-like threshold switching units, Highly parallel, distributed process, Emphasis on tuning weights automatically, knows how to process inputs to create an output.
The calculation is quite complex and difficult to understand, yet the results are often useful.
22
New cards
What is the structure of ANN?
A single neuron (processing element – PE) with inputs and outputs
23
New cards
What are the types of activation functions?
Identity, Step, Logistic, TanH, ReLU, Softmax,