intro to machine learning

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

1/8

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 1:56 PM on 8/17/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

9 Terms

1
New cards

what is machine learning

a computer program is said to learn

  • from experience E

  • with respect to some class of tasks T

  • and performance measure P

if its performance at tasks in T, as measured by P, improves with experience E.

2
New cards

what is the difference between AI, machine learning and deep learning

AI: any technique which enables computers to mimic human behavior

Machine Learning: AI techniques that give computers the ability to learn without being explicitly programmed to do so

Deep Learning: A subset of Machine Learning which make the computation of multi-layer neural networks feasible

3
New cards

what are the types of machine learning

  1. supervised learning

  • input:

    • training samples

    • desired output (teacher/supervision)

  • output:

    • a rule that maps input to output

  1. unsupervised learning

  • input: samples

  • output: underlying patterns in data

  1. reinforcement learning

  • input: sequence of states, actions, and delayed rewards

  • output: action strategy: a rule that maps the environment to action

4
New cards

what are the 2 types of supervised learning

  • regression

  • classification

5
New cards

what is the difference between unsupervised learning and supervised learning

no label/supervision is given

6
New cards

what is a type of unsupervised learning

clustering

7
New cards

what is reinforcement learning

  • given a sequence of states S and actions A with (delayed) rewards R

  • output a policy to guide us what action to take in state S

8
New cards

what are 2 ways of classification

  1. feature extraction

  • extract attributes of samples

  1. sample classification

  • decide label for a sample

9
New cards

what are the 2 types of reasonings

  1. inductive inference

  • to reach probable conclusions

  • not all needed information is available, causing uncertainty

    • probability and statistics

  1. deductive inference

  • to reach logical conclusions deterministically

  • all information that can lead to the correct conclusion is available

    • rule-based reasoning