2-mlconcepts Flashcards
What is an instance?
An instance is an individual, independent example of a concept. (Rows)
What is an instance also known as?
Instances are also known as exemplars
What is an attribute?
Attributes are the measuring aspects of an instance. (Columns)
What are attributes also known as?
Attributes are also known as feature
What are concepts?
Concepts are the things we aim to learn, generally in the form of labels or classes
What is a supervised learning method?
Supervised learning methods have prior knowledge of a closed set of classes
and set out to discover and categorise new instances according to those
classes
What is an unsupervised learning method?
Unsupervised learning methods do not have access to an inventory of classes, and instead discover groups of ‘similar’ examples in a given dataset
What is “strong” unsupervised learning?
Strong unsupervised learning dynamically discovers the “classes” (implicitly derived from grouping of instances) in the process of categorising the instances
What is “weak” unsupervised learning?
Weak unsupervised learning categorises instances as certain labels without the aid of pre-classified data
What are nominal quantities?
Nominal quantities are distinct symbols, serving only as labels or names. No relationship is implied on nominal values
What are ordinal quantities?
A set of labels with an explicit total order.
What are numeric quantities?
Numeric quantities are real valued attributes
How can nominal values be converted to numeric values?
- Map categories to numbers (creates artificial ordering)
- One hot encoding (increases dimensionality)
What is feature standardisation?
Feature standardisation rescales features to be distributed around a 0
mean with a unit standard deviation
What is feature scaling?
Feature scaling rescales features to a given range. For example, min-max scaling rescales values between 0 and 1 using the minimum and maximum feature value observed in the data