Exame Flashcards
(125 cards)
What are the ingredients of machine learning?
- Tasks
- Models
- Features
__________ are the output of machine learning.
Models
_________ are the problems that can be solved with machine learning.
Tasks
_________ are the workhorses of machine learning.
Features
What is the most fundamental concept in machine learning?
Generalisation
_________ __________ are solved by learning algorithms that produce _________.
Learning problems/tasks; models
In linear classification, ___________ are attributed to the features and the class is assigned based on a previously defined ______________.
weights; threshold
Faça as correspondências corretas.
- ML models
- ML algorithms
A. Coded algorithm that learns the weights from being fed the training set.
B. The output of the ML algorithm having been given the training data.
1.B; 2.A
Overfitting is the only possible reason for poor performance on new data. True or False?
False. Sometimes it is just that the training data are not representative. A solution could be using different training data that exhibits the same characteristics.
Trying too hard to achieve a good performance on the training data can easily lead to _____________.
overfitting
What is underfitting?
Underfitting happens when the model is unable to capture the relationship between the input data accurately, generating a high error rate on both the training set and unseen data.
A Bayesian classifier maintains a vocabulary of words and phrases for which statistics are collected from a training set. True or False?
True
The Bayesian classification scheme does not allow repetition if there is further evidence/information. True or False?
False
Bayes’ Rule assumes that the two pieces of evidence are independent. However, the Naïve Bayes classifier assumes ______________ independence.
conditional
A rule-based classifier is a __________ model.
logical
Rule-based classifiers work on a case-by-case basis. Cases can be defined by several __________ features.
nested
Effective and efficient algorithms exist for identifying the most ___________ feature combinations and organise them as rules or ________.
predictive; trees
Tasks are addressed by __________, whereas learning problems are solved by learning algorithms that produce __________.
models; models
Define learning problem.
Obtaining a mapping from training data is what constitutes a learning problem.
Mathematically, features are ___________.
functions
A single feature is not enough to build a model. True or False?
False
In unsupervised learning, there is a label space involved. True or False?
False
In classification, the output space is a set of ____________. In regression, it is a set of real ___________.
classes; numbers
Name a few supervised learning of predictive models.
- Classification
- Scoring and ranking
- Probability estimation
- Regression