1 kNN Classification Flashcards
What is DL?
DL is ML with the addition of the learning process being handled by a NN.
- Layered architecture of computational units.
- High-capacity models possible, called ANN’s or DNN’s
- Restricted to DNN (mores than 1 hidden layer)
What are S+C cells?
Simple → Complex → Hypercomplex cells
What is Marr’s theory on visual cortex?
- s+c cells compute a primal skecth
- The brain computes a 2.5D sketch using texture
- A 3D model is computed
What is texture based descriptors?
Methods that cann identify and use these patterns for tasks like image recognition or classification.
- SIFT, SURF, HoG
Texture - visual patterns
What is Representation learning?
Learn both the representation an dhow to produce the required output.
Refers to ML techniques focused on learning and extracting meaningful representations or features from raw data.
What are well known datasets?
- MNIST → small and fast
- PASCAL → classification, detection and more
- ImageNet → classification + localization, deection
- COCO → detection, segmentation
Both YOLO and SSD is able to do real time detection.
What types of ML tasks are there?
- Classification
- Regression
- Compression
- Clustering
…
What advances does DL have?
Måske overflødig?
- Sequence (e.g. speech) processing
- Machine translation
- Image segmentation
- Image captioning
What does Bayes rule say?
p(C_k│x)=( p(x│C_k )p(C_k) ) / ( p(x) )
What is AI?
- The concept of “human-like” machines.
- Many, many subdisciplines
What is ML?
- Focus on data
- Instead of being designed, the machine learns a model from the data.
What do texture based (local) descriptors do?
Go from image gradients to keypoint descriptor
How does testing work in the kNN classifier?
For each data point (image), find the k nearest training examples.
Decide on label by majority vote.
How does training work in the kNN classifier?
Simply store the images and labels.
What parameters are needed for kNN?
Data point x → given class C → result
K nearest datapoints → hyperparameter
Total number of training data points N → Countable