Data Mining Notes

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/12

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 4:17 AM on 12/5/24
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

13 Terms

1
New cards

What is Data Mining?

Non-trivial extraction of implicit, previously unknown, and potentially useful information from data.

2
New cards

Data Mining Process

Involves data selection, pre-processing, exploration, and analysis to discover meaningful patterns.

3
New cards

Supervised Algorithms

Algorithms that use training data with known results to make predictions on new data.

4
New cards

Unsupervised Algorithms

Algorithms that do not use training data, allowing for the discovery of unknown classes.

5
New cards

Classification

The process of predicting class labels for new records based on model training with existing data.

6
New cards

k-Nearest Neighbor

A classification approach that identifies the class of an unknown record by examining the 'k' closest training examples.

7
New cards

Decision Trees

A supervised classification method that uses a tree-like model of decisions for classification.

8
New cards

Distance Metric in k-NN

A method used to compute the distance between stored records in k-Nearest Neighbor classification.

9
New cards

Classification Description

Given a collection of records, where each record has a set of attributes with one being the dependent variable/class, the goal is to build a model that predicts the class based on other attribute values.

10
New cards

Goal of Classification

The objective is to assign previously unseen records to a class as accurately as possible.

11
New cards

Division of Data Sets

In classification, the data set is typically divided into training and test sets, with the training set used to build the model and the test set used to validate it.

12
New cards

Role of Test Set in Classification

A test set is utilized to determine the accuracy of the classification model after it has been trained.

13
New cards

Dependent Variable in Classification

The dependent variable, also known as the class attribute, is the outcome that the classification model aims to predict based on the input attributes.