Exam, neural diagnosis and monitoring Flashcards

1
Q

what does partition clustering method applied to feature-based data representation provide with?

A

The partition clustering methods provide a splitting of the feature space into a fixed number of clusters

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does the Naive Bayers classifiers assume under the supervised learning paradigm?

A

Class conditional independence between features

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What can be used as a performance index regarding the evaluation of the performance of a classifier system?

A

An estimate of the probability of classification error can be used as a performance index

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is visual evoked potentials (VEP)?

A
  • A visual evoked potential is a potential caused by a visual stimulus
  • (example an alternating checkerboard pattern on a computer screen)
  • Responses are recorded from electrodes that are placed on the back of your head and are observed as a reading on an (EEG)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Regarding the classification of VEPs?

A

A possible data representation that serves as input to the decision module for this problem is a feature vector containing latencies and amplitudes of particular peaks of the VEP signal

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

The miniskowski distance Equation of classification of VEPs?

A

d=[Number of features corresponding to amplitude]
r=2 vid Euclidean distance
r=1 using Manhattan distance

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is K-means?

A
  • A Clustering algorithm
  • Uses the least squared Euclidean distance which is the intuitive nearest mean
  • partitional
  • attempt to minimize the distance between points labeled to be in a cluster and a point designated as the center of the cluster
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q
  1. How should classification based on FDG-PET images of alzheimer disease vs normal population be made?
  2. What is a possible data prespresentation?

3-5. How can the feature space be reduced?

A
  1. Computed aided diagnosis systems for the classification of AD vs N may be based on support vector machines
  2. One possible feature-space data representation for the FDG-PET images is using the Voxel intensities as features
  3. Feature selection methods can be used to reduce the dimensionality of the feature space
  4. Mapping of the feature space into another space of lower dimensionality such as principal component analysis (PCA) is a form of dimensionality reduction
  5. Clustering methods can be used as a pre-processing step for the feature selection procedure
  6. The lower number of features used, the better classification result
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How can clustering algorithms be obtained?

A

Different clustering algorithms can be obtained by adopting different (di)similarity measures between objects or between clusters

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

why is clustering algoritms useful?

A

For exploratory data analysis, devising structure from unlabelled data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

what does MAP classifiers require?

A

the estimation/defenition of a priori class probabilities

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What does the Naive Bayes classifiers assume?

A

Class conditional independence between features

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is Bayesian classifiers?

A

A sub-class of statistical classification methods

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

what data is used in semi-supervised learning methods?

A

Semi-supervised learning methods use both labelled and unlabelled data for training, and labelled data for testing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Name one pre-processing step for the classification of VEPs!

A

One possible pre-processing step consists of averaging over multiple EEG segments synchronized with the visual stimuli onset, in order to recover the VEP signal from the background EEG activity

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is K-NN?

A
  • k-nearest neighbors algoritm
  • Method used for classification and regression
  • k= closest training examples in the feature space
  • output: class membership
  • a type of instance-based learning
  • among the simplest of all machine learning algoritms
  • NOT used for clustering
17
Q

what is K-medoids?

A

A clustering algoritm related to the k-means algoritm

  • partitional
  • attempt to minimize the distance between points labeled to be in a cluster and a point designated as the center of the cluster
  • k-medoids chooses datapoints as centers and uses a generalization of the Manhattan Norm(r=1) to define distance between datapoints instead of the neuclidig distance.
18
Q

what is DBSCAN?

A
  • Density-based spatial clustering of applications with noice
  • given a set of points in some space, it groups together points that are closely packed together, marking out outliers in low-density regions
  • one of the most common clustering algoritms
19
Q

what is normalized cuts algoritm?

A
  • A spectral clustering technique
  • commonly used for image segmentation
  • It partitions points into two sets, based on the eigenvector corresponding to the second-smallest eigenvalue of the symmetric normalized Laplacian
20
Q

How is the classification error probability (PE) often estimated?

A

often estimated experimentally based on training and test sets

21
Q

Name one of the possible indices for performance evaluation of a classification/decision system!

A

The classification error probability (PE)

22
Q

What happens when the size of the training set increases, when estimating the error probability?

A

The k-fold cross validation method converges to the true Pe