Into to Applied data science w5

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

1/20

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 11:17 AM on 6/7/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

21 Terms

1
New cards

What are LLMs?

They are neutral networks to predict and generate text.

2
New cards

How do LLMs learn?

They learn patterns from vast amounts of text data

3
New cards

How are LLMs different from traditional text mining methods?

They understand context and relationships between words instead.

4
New cards

What are some task LLMs can do?

Answer questions, translate languages and write code.

5
New cards

What is next-word prediction in LLMs?

The task of predicting the next word that it learned a pattern.

6
New cards

What is tokenization?

The process of converting words into numbers/IDs so that models can work with these numerical representations.

7
New cards

What is Embedding?

The process where each token ID is converted into a vector( a list of numbers)

8
New cards

What does a 4-dimensional embedding look like?

[…,…,…,…]

9
New cards

What happens to the vectors when words have similar meanings?

They vectors become similar as well.

10
New cards

What is this famous example used for: king - man + woman = queen

It is used to show the mathematical relationship of Embeddings.

11
New cards

How many dimensions do LLMs have?

Hunderds or thousands

12
New cards

What is a neral network?

A neural network is a mathematical function that transforms inputs into outputs through layers. Wh

13
New cards

What is the formula for a layer?

Output = activation(weights x input + bias)

14
New cards

In the formula for a layer how are weights deffined?

They are parameters that the model learns during training.

15
New cards

What happens when multiple layers are stacked?

They allow the network to learn complex patterns.

16
New cards

What does word2vec/cbow do?

They allow us to make words numerical so that we can put them into a neral network.

17
New cards

What does One-hot encoding do?

Represent each word as a vector of length V(vocabulary size).

18
New cards

What is Win?

A V x N matrix where V is vocabulary size and N is embedding dimension.

19
New cards

What does each Row of Win represent?

The iput emdedding for a word. W

20
New cards

What is Wout?

An N x V matrix where each column represents the output embedding for a word.

21
New cards