More Segmentation (6)

0.0(0)
studied byStudied by 0 people
full-widthCall with Kai
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/32

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

33 Terms

1
New cards

are transitional probabilities a solution for word segmentation

no

2
New cards

how do we evaluate a segmentation algorithm and what does it mean

it would work “well” - high-accuracy and human-like

3
New cards

what are true positives in the context of word segmentation

a segmentation was made where there should be one (correct)

4
New cards

what are false positives in the context of word segmentation

a segmentation was made were there shouldn’t be one (incorrect)

5
New cards

what are true negative in the context of word segmentation

a segmentation wasn’t made where there shouldn’t be one (correct)

6
New cards

what are false negative in the context of word segmentation

a segmentation wasn’t made were there should be one (incorrect)

7
New cards

what is “percision” in an algorithm

of all the things it chooses, how many where correct

8
New cards

what is “recall” in algorithms, what is a flaw in it

how many of the things did it get, error is it can take everything to get 100% recall 

9
New cards

what is an “f-score” in algorithms

a combonation measures of percision and recall

10
New cards

what is the equation for percision

P = TP / (TP+FP)

11
New cards

what is the equation for recall

R = TP / (TP+FN)

12
New cards

what is the equation for an F-score

F = 2 x [(PxR) / (P+R)]

13
New cards

what is gold and prediction

gold - what’s true

prediciton - our guess

14
New cards

what is a baseline in thinking ab segmentation

if we did something obvious and dumb, how well would it do? 

15
New cards

if we said every syll in eng was a boundary, how well would we do? is this helpful compared to CHILDES?

87.4% correct, 1.2 syll per word in CDS of CHILDES

16
New cards

what two things make english segmentation easier and why

high syll diversity (makes TransProb calculations cleaner)

words unlikely to be substrings of other words

17
New cards

what 2 things make langauge segmentation more difficult 

high-average syll in words
low syll diversity 

18
New cards

what forms edges within an utterance

prosodic boundaries

19
New cards

why do edges help w word segmentation

if the word is at an edge, you get a boundary for free

20
New cards

what has been experimentally showed about edges and why are they important

children are sensitive to edges, more important than TP

21
New cards

what is shown about edges algorithmically

they’re nessessary

22
New cards

what are the 2 parts of distibutional learning

batch + statistical/distibutional

23
New cards

what is batch in distibutional learning 

processing a lot of data at once 

24
New cards

what is statistical/distibutional in distibutional learning

they rely on probabilities to do most of the work

25
New cards

what are the two parts of mechanistic learning

online/incremental + mechanistic/algorithmic

26
New cards

what is online/incremental in mechanistic learning 

process data bit by bit as it comes in 

27
New cards

what is mechanistic/algorithmic in mechanistic learning

focuses on the process rather than the stats

28
New cards

what is the basic idea behind subtrastic segmentors and by when is it shown children start this

0;6

children keep track of words they already know (lexicon) and subtract them from new utts

29
New cards

describe the 3 steps of the subtractive algorithm 

(if utt starts w known word)

segment it off

increment the score of that word (repeat on remainder)

add what’s left of utt to lexicon 

30
New cards

can you add more rules to a subtractive algorithm for better results

yes

31
New cards

what 2 things are TP and what 2 things are subtractive

TP: batch + distibutional
Subtractive: online + mechanistic 

32
New cards

what are the cognitive implications of TP and subtractive methods

TP - chidlren track words and probabiliteis of B|A syll bigram

Subtractive - children count and track words

33
New cards

don’t confused consistancy with…

explanation