-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodes.py
65 lines (65 loc) · 2.21 KB
/
codes.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
codes = {
'Disharmonious Listener Behaviors': {
'DISLLB': 'Listener Low-Level Backchannel',
'DISLBE': 'Listener Backchannel Emotional Content',
'DISLUA':'Listener Unilateral Assessment',
'DISLM': 'Listener Mimicry',
'DISLFD':'Listener Facial Display',
'DISLI': 'Listener Initiated laughter',
'DISLUL': 'Listener Unilateral laughter',
'DISLRT':'Listener Reference Token',
'DISLRec':'Listener Recognition Token',
'DISLF': 'Listener Formulation',
'DISLRF': 'Listen Reformulation',
'DISLE': 'Listener Extension',
'DISLIS': 'Listener Incipient Speakership'
},
'Listener Behaviors': {
'LLB': 'Listener Low-Level Backchannel',
'LBE': 'Listener Backchannel Emotional Content',
'LUA':'Listener Unilateral Assessment',
'LM': 'Listener Mimicry',
'LFD':'Listener Facial Display',
'LI': 'Listener Initiated laughter',
'LUL': 'Listener Unilateral laughter',
'LRT':'Listener Reference Token',
'LRec':'Listener Recognition Token',
'LF': 'Listener Formulation',
'LRF': 'Listen Reformulation',
'LE': 'Listener Extension',
'LIS': 'Listener Incipient Speakership'
},
'Speaker Behaviors': {
'SUA': 'Speaker Unilateral Assessment',
'SI': 'Speaker Initiated Laughter ',
'SUL': 'Speaker Unilateral Laughter ',
'SFS': 'Speaker Full Stop',
'SC': 'Speaker Continuer',
'STM': 'Speaker Try-Marker',
'AB': 'Abruptness',
'CH': 'Choppy',
'TOO': 'Talking On & On',
'JE': 'Justifying & Explaining'
},
'Speaker & Listener Behaviors': {
'JA': 'Joint Assessment',
'LP': 'Long Pause',
'FP': 'Filled Pause',
'JL': 'Joint laughter'
},
'Storytelling Elements': {
'Introduction': 'Introduction',
'Rising Action': 'Rising Action',
'Climax': 'Climax',
'Crux': 'Crux',
'Falling Action': 'Falling Action',
'Conclusion': 'Conclusion',
'Story Intro': 'Story Intro',
'Story Re-Intro': 'Story Re-Intro'
}
}
story_teller_markers = [
'Story Intro',
'Introduction',
'Intro'
]