-
Notifications
You must be signed in to change notification settings - Fork 1
/
gd_arcosg-ud-dev.conllu
13426 lines (12771 loc) · 655 KB
/
gd_arcosg-ud-dev.conllu
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# comment = Conversation 3
# newdoc id = c03
# sent_id = c03_000
# speaker = [1]
# text = dè ghabh thu?
1 dè dè PRON Uq PronType=Int 0 root _ _
2 ghabh gabh VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 1 acl:relcl _ _
3 thu thu PRON Pp2s Number=Sing|Person=2|PronType=Prs 2 nsubj _ SpaceAfter=No
4 ? ? PUNCT Fg _ 1 punct _ _
# sent_id = c03_001
# speaker = [2]
# text = turkey burger
1 turkey turkey NOUN Xfe _ 0 root _ _
2 burger burger NOUN Xfe _ 1 flat _ _
# sent_id = c03_002
# speaker = [1]
# text = turkey burger an robh e math?
1 turkey turkey NOUN Xfe _ 0 root _ _
2 burger burger NOUN Xfe _ 1 flat _ _
3 an an PART Qq PartType=Vb|PronType=Int 4 mark:prt _ _
4 robh bi VERB V-s--d Mood=Ind|Tense=Past|VerbForm=Fin 1 parataxis _ _
5 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 4 nsubj _ _
6 math math ADJ Ap _ 4 xcomp:pred _ SpaceAfter=No
7 ? ? PUNCT Fg _ 1 punct _ _
# sent_id = c03_003
# speaker = [2]
# text = bha bha e okay
1 bha bi VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 2 discourse _ _
2 bha bi VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
3 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 2 nsubj _ _
4 okay okay ADJ Xfe Foreign=Yes 2 xcomp:pred _ _
# sent_id = c03_004
# speaker = [3]
# text = 's dè fhuair thu leis?
1 's 's CCONJ Cc _ 2 cc _ _
2 dè dè PRON Uq PronType=Int 0 root _ _
3 fhuair faigh VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 2 acl:relcl _ _
4 thu thu PRON Pp2s Number=Sing|Person=2|PronType=Prs 3 nsubj _ _
5-6 leis _ _ _ _ _ _ _ SpaceAfter=No
5 le le ADP Sp _ 6 case _ _
6 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 3 obl _ _
7 ? ? PUNCT Fg _ 2 punct _ _
# sent_id = c03_005
# speaker = [2]
# text = cha bhi thu a’ gabhail dad leis
1 cha cha PART Qn PartType=Vb|Polarity=Neg 2 mark:prt _ _
2 bhi bi VERB V-f--d Mood=Ind|Tense=Fut|VerbForm=Fin 0 root _ _
3 thu thu PRON Pp2s Number=Sing|Person=2|PronType=Prs 2 nsubj _ _
4 a’ ag PART Sa _ 5 case _ _
5 gabhail gabh NOUN Nv VerbForm=Vnoun 2 xcomp:pred _ _
6 dad dad NOUN Ncsmg Case=Gen|Gender=Masc|Number=Sing 5 obj _ _
7-8 leis _ _ _ _ _ _ _ _
7 le le ADP Sp _ 8 case _ _
8 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 5 obl _ _
# sent_id = c03_006a
# speaker = [3]
# text = cha bhi thu a’ gabhail buntàta no càil nach bi?
1 cha cha PART Qn PartType=Vb|Polarity=Neg 2 mark:prt _ _
2 bhi bi VERB V-f--d Mood=Ind|Tense=Fut|VerbForm=Fin 0 root _ _
3 thu thu PRON Pp2s Number=Sing|Person=2|PronType=Prs 2 nsubj _ _
4 a’ ag PART Sa _ 5 case _ _
5 gabhail gabh NOUN Nv VerbForm=Vnoun 2 xcomp:pred _ _
6 buntàta buntàta NOUN Ncsmg Case=Gen|Gender=Masc|Number=Sing 5 obj _ _
7 no no CCONJ Cc _ 8 cc _ _
8 càil càil NOUN Ncsfg Case=Gen|Gender=Fem|Number=Sing 6 conj _ _
9 nach nach PART Qn PartType=Vb|Polarity=Neg 10 mark:prt _ _
10 bi bi VERB V-f--d Mood=Ind|Tense=Fut|VerbForm=Fin 2 parataxis _ SpaceAfter=No
11 ? ? PUNCT Fg _ 2 punct _ _
# sent_id = c03_006b
# text = slaod a-steach do shèithear ceart faisg air a’ bhòrd
1 slaod slaod VERB Vm-2s Mood=Ind|Person=2|VerbForm=Fin 0 root _ _
2 a-steach a-steach ADV Rs _ 1 advmod _ _
3 do do DET Dp2s Number=Sing|Person=2|Poss=Yes|PronType=Prs 4 nmod:poss _ _
4 shèithear sèithear NOUN Ncsmn Case=Nom|Gender=Masc|Number=Sing 1 obj _ _
5 ceart ceart ADV Rg _ 6 advmod _ _
6 faisg faisg ADJ Ap _ 9 advmod _ _
7 air air ADP Sp _ 9 case _ _
8 a’ an DET Tdsm Definite=Def|Gender=Masc|Number=Sing|PronType=Art 9 det _ _
9 bhòrd bòrd NOUN Ncsmd Case=Dat|Gender=Masc|Number=Sing 1 obl _ _
# sent_id = c03_006c
# text = an do dh’ith thusa na sandwiches a’d an-diugh [Name]?
1 an an PART Qq PartType=Vb|PronType=Int 3 mark:prt _ _
2 do do PART Q--s Tense=Past 3 mark:prt _ _
3 dh’ith ith VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
4 thusa thu PRON Pp2s--e Form=Emp|Number=Sing|Person=2|PronType=Prs 3 nsubj _ _
5 na an DET Tdp Definite=Def|Number=Plur|PronType=Art 6 det _ _
6 sandwiches sandwiches NOUN Xfe Foreign=Yes 3 obj _ _
7-8 a’d _ _ _ _ _ _ _ _
7 aig aig ADP Sp _ 8 case _ _
8 thu thu PRON Pp2s Number=Sing|Person=2|PronType=Prs 6 nmod _ _
9 an-diugh an-diugh ADV Rt _ 3 advmod _ _
10 [Name] [Name] PROPN Nn-mv Case=Voc|Gender=Masc 3 vocative _ Anonymised=Yes|SpaceAfter=No
11 ? ? PUNCT Fg _ 3 punct _ _
# sent_id = c03_007
# speaker = [4]
# text = mmhmm
1 mmhmm mmhmm INTJ I _ 0 root _ _
# sent_id = c03_008c
# speaker = [3]
# text = agus ciamar a bha a’ homework an do choimhead an tidsear ris?
1 agus agus CCONJ Cc _ 2 cc _ _
2 ciamar ciamar PRON Uq PronType=Int 0 root _ _
3 a a PART Q-r PartType=Vb|PronType=Rel 4 xcomp:pred _ _
4 bha bi VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 2 acl:relcl _ _
5 a’ an DET Tds Definite=Def|Number=Sing|PronType=Art 6 det _ _
6 homework homework NOUN Xfe Foreign=Yes 4 nsubj _ _
7 an an PART Qq PartType=Vb|PronType=Int 9 mark:prt _ _
8 do do PART Q--s Tense=Past 9 mark:prt _ _
9 choimhead coimhead VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 6 acl:relcl _ _
10 an an DET Tdsm Definite=Def|Gender=Masc|Number=Sing|PronType=Art 11 det _ _
11 tidsear tidsear NOUN Ncsmn Case=Nom|Gender=Masc|Number=Sing 9 nsubj _ _
12-13 ris _ _ _ _ _ _ _ SpaceAfter=No
12 ri ri ADP Sp _ 13 case _ _
13 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 9 obl _ _
14 ? ? PUNCT Fg _ 2 punct _ _
# sent_id = c03_009
# speaker = [4]
# text = cha do choimhead fhathast
1 cha cha PART Qn PartType=Vb|Polarity=Neg 3 mark:prt _ _
2 do do PART Q--s Tense=Past 3 mark:prt _ _
3 choimhead coimhead VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
4 fhathast fhathast ADV Rt _ 3 advmod _ _
# sent_id = c03_010
# speaker = [3]
# text = ‘s an robh a h-uile duine eile air na trì duilleagan a dhèanamh?
1 ‘s 's CCONJ Cc _ 3 cc _ _
2 an an PART Qq PartType=Vb|PronType=Int 3 mark:prt _ _
3 robh bi VERB V-s--d Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
4 a a DET Dq PronType=Art 6 det _ _
5 h-uile uile DET Dq PronType=Art 4 fixed _ _
6 duine duine NOUN Ncsmn Case=Nom|Gender=Masc|Number=Sing 3 nsubj _ _
7 eile eile ADJ Aq-smn Case=Nom|Gender=Masc|Number=Sing 6 amod _ _
8 air air PART Sa _ 13 case _ _
9 na an DET Tdpf Definite=Def|Gender=Fem|Number=Plur|PronType=Art 10 det _ _
10 trì trì NUM Mc NumForm=Word|NumType=Card 11 nummod _ _
11 duilleagan duilleag NOUN Ncpfn Case=Nom|Gender=Fem|Number=Plur 13 obj _ _
12 a a PART Ug PartType=Inf 13 mark:prt _ _
13 dhèanamh dèan NOUN Nv VerbForm=Inf 3 xcomp:pred _ SpaceAfter=No
14 ? ? PUNCT Fg _ 3 punct _ _
# sent_id = c03_011
# speaker = [4]
# text = mmhmm
1 mmhmm mmhmm INTJ I _ 0 root _ _
# sent_id = c03_012a
# speaker = [3]
# text = bha?
1 bha bi VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ SpaceAfter=No
2 ? ? PUNCT Fg _ 1 punct _ _
# sent_id = c03_012b
# speaker = [3]
# text = ‘s an d’ fhuair iad [?]
1 ‘s 's CCONJ Cc _ 4 cc _ _
2 an an PART Qq PartType=Vb|PronType=Int 4 mark:prt _ _
3 d’ do PART Q--s Tense=Past 4 mark:prt _ _
4 fhuair faigh VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
5 iad iad PRON Pp3p Number=Plur|Person=3|PronType=Prs 4 nsubj _ _
6 [?] [?] X Xx _ 4 discourse _ _
# sent_id = c03_013
# speaker = [4]
# text = uh?
1 uh uh INTJ I _ 0 root _ SpaceAfter=No
2 ? ? PUNCT Fg _ 1 punct _ _
# sent_id = c03_014
# speaker = [3]
# text = an robh e doirbh?
1 an an PART Qq PartType=Vb|PronType=Int 2 mark:prt _ _
2 robh bi VERB V-s--d Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
3 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 2 nsubj _ _
4 doirbh doirbh ADJ Ap _ 2 xcomp:pred _ SpaceAfter=No
5 ? ? PUNCT Fg _ 2 punct _ _
# sent_id = c03_015
# speaker = [1]
# text = an robh e doirbh aca?
1 an an PART Qq PartType=Vb|PronType=Int 2 mark:prt _ _
2 robh bi VERB V-s--d Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
3 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 2 nsubj _ _
4 doirbh doirbh ADJ Ap _ 2 xcomp:pred _ _
5-6 aca _ _ _ _ _ _ _ SpaceAfter=No
5 aig aig ADP Sp _ 6 case _ _
6 iad iad PRON Pp3p Number=Plur|Person=3|PronType=Prs 4 obl _ _
7 ? ? PUNCT Fg _ 2 punct _ _
# sent_id = c03_016
# speaker = [4]
# text = thuirt [Name] gun robh e ag obair gu anmoch so [?]
1 thuirt abair VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
2 [Name] [Name] PROPN Nn-mn Case=Nom|Gender=Masc 1 nsubj _ Anonymised=Yes
3 gun gu PART Qa PartType=Cmpl 4 mark:prt _ _
4 robh bi VERB V-s--d Mood=Ind|Tense=Past|VerbForm=Fin 1 ccomp _ _
5 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 4 nsubj _ _
6 ag ag PART Sa _ 7 case _ _
7 obair obraich NOUN Nv VerbForm=Vnoun 4 xcomp:pred _ _
8 gu gu PART Ua PartType=Ad 9 mark:prt _ _
9 anmoch anmoch ADV Rt _ 7 advmod _ _
10 so so CCONJ Xfe Foreign=Yes 11 cc _ _
11 [?] [?] X Xx _ 1 conj _ _
# sent_id = c03_017
# speaker = [3]
# text = dè thuirt [Name]?
1 dè dè PRON Uq PronType=Int 0 root _ _
2 thuirt abair VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 1 acl:relcl _ _
3 [Name] [Name] PROPN Nn-fn Case=Nom|Gender=Fem 2 nsubj _ Anonymised=Yes|SpaceAfter=No
4 ? ? PUNCT Fg _ 1 punct _ _
# sent_id = c03_018
# speaker = [4]
# text = ach tha ise cho brainy co-dhiubh
1 ach ach CCONJ Cc _ 2 cc _ _
2 tha bi VERB V-p Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _
3 ise i PRON Pp3sf-e Form=Emp|Gender=Fem|Number=Sing|Person=3|PronType=Prs 2 nsubj _ _
4 cho cho ADV Rg _ 5 advmod _ _
5 brainy brainy ADJ Xfe Foreign=Yes 2 xcomp:pred _ _
6 co-dhiubh co-dhiubh ADV Rg _ 2 advmod _ _
# sent_id = c03_019
# speaker = [3]
# text = cha do shaoil ise dad dhe
1 cha cha PART Qn PartType=Vb|Polarity=Neg 3 mark:prt _ _
2 do do PART Q--s Tense=Past 3 mark:prt _ _
3 shaoil saoil VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
4 ise i PRON Pp3sf-e Form=Emp|Gender=Fem|Number=Sing|Person=3|PronType=Prs 3 nsubj _ _
5 dad dad NOUN Ncsmn Case=Nom|Gender=Masc|Number=Sing 3 obj _ _
6-7 dhe _ _ _ _ _ _ _ _
6 de de ADP Sp _ 7 case _ _
7 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 3 obl _ _
# sent_id = c03_020
# speaker = [2]
# text = Dad an geàrr thu am pie agam?
1 Dad dad NOUN Xfe Foreign=Yes 3 vocative _ _
2 an an PART Qq PartType=Vb|PronType=Int 3 mark:prt _ _
3 geàrr geàrr VERB V-f--d Mood=Ind|Tense=Fut|VerbForm=Fin 0 root _ _
4 thu thu PRON Pp2s Number=Sing|Person=2|PronType=Prs 3 nsubj _ _
5 am an DET Tds Definite=Def|Number=Sing|PronType=Art 6 det _ _
6 pie pie NOUN Xfe Foreign=Yes 3 obj _ _
7-8 agam _ _ _ _ _ _ _ SpaceAfter=No
7 aig aig ADP Sp _ 8 case _ _
8 mi mi PRON Pp1s Number=Sing|Person=1|PronType=Prs 6 nmod _ _
9 ? ? PUNCT Fg _ 3 punct _ _
# sent_id = c03_021a
# speaker = [1]
# text = carson nach gabh thu gearr thu am pie agad fhèin?
1 carson carson PRON Uq PronType=Int 0 root _ _
2 nach nach PART Qnr PartType=Vb|Polarity=Neg|PronType=Rel 3 obl _ _
3 gabh gabh VERB V-f--d Mood=Ind|Tense=Fut|VerbForm=Fin 5 reparandum _ _
4 thu thu PRON Pp2s Number=Sing|Person=2|PronType=Prs 3 nsubj _ _
5 gearr gearr VERB V-f--d Mood=Ind|Tense=Fut|VerbForm=Fin 1 acl:relcl _ _
6 thu thu PRON Pp2s Number=Sing|Person=2|PronType=Prs 5 nsubj _ _
7 am an DET Tds Definite=Def|Number=Sing|PronType=Art 8 det _ _
8 pie pie NOUN Xfe Foreign=Yes 5 obj _ _
9-10 agad _ _ _ _ _ _ _ _
9 aig aig ADP Sp _ 10 case _ _
10 thu thu PRON Pp2s Number=Sing|Person=2|PronType=Prs 8 nmod _ _
11 fhèin fèin PRON Px PronType=Prs|Reflex=Yes 10 nmod _ SpaceAfter=No
12 ? ? PUNCT Fg _ 5 punct _ _
# sent_id = c03_022
# speaker = [2]
# text = uill chan urrainn dhomh
1 uill uill INTJ I _ 3 discourse _ _
2 chan is AUX Wp-in Polarity=Neg|Tense=Pres 3 cop _ _
3 urrainn urrainn NOUN Uf _ 0 root _ _
4-5 dhomh _ _ _ _ _ _ _ _
4 do do ADP Sp _ 5 case _ _
5 mi mi PRON Pp1s Number=Sing|Person=1|PronType=Prs 3 nmod _ _
# sent_id = c03_023a
# speaker = [1]
# text = och ‘s urrainn dhut
1 och och INTJ I _ 3 discourse _ _
2 ‘s is AUX Wp-i Tense=Pres 3 cop _ _
3 urrainn urrainn NOUN Uf _ 0 root _ _
4-5 dhut _ _ _ _ _ _ _ _
4 do do ADP Sp _ 5 case _ _
5 thu thu PRON Pp2s Number=Sing|Person=2|PronType=Prs 3 nmod _ _
# sent_id = c03_023b
# speaker = [1]
# text = tha thusa nad ghille mhòr a-neist a [Name]
1 tha bi VERB V-p Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _
2 thusa thu PRON Pp2s--e Form=Emp|Number=Sing|Person=2|PronType=Prs 1 nsubj _ _
3-4 nad _ _ _ _ _ _ _ _
3 nad an ADP Sp _ 5 case _ _
4 do do PRON Dp2s Number=Sing|Person=2|Poss=Yes|PronType=Prs 5 nmod:poss _ _
5 ghille gille NOUN Ncsmd Case=Dat|Gender=Masc|Number=Sing 1 xcomp:pred _ _
6 mhòr mòr ADJ Aq-smd Case=Dat|Gender=Masc|Number=Sing 5 amod _ _
7 a-neist a-neist ADV Rt _ 5 advmod _ _
8 a a PART Uv PartType=Voc 9 case:voc _ _
9 [Name] [Name] PROPN Nn-mv Case=Voc|Gender=Masc 1 vocative _ Anonymised=Yes
# sent_id = c03_024
# speaker = [3]
# text = an robh d’ amhaich goirt an-diugh a [Name]
1 an an PART Qq PartType=Vb|PronType=Int 2 mark:prt _ _
2 robh bi VERB V-s--d Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
3 d’ do DET Dp2s Number=Sing|Person=2|Poss=Yes|PronType=Prs 4 nmod:poss _ _
4 amhaich amhaich NOUN Ncsfn Case=Nom|Gender=Fem|Number=Sing 2 nsubj _ _
5 goirt goirt ADJ Ap _ 2 xcomp:pred _ _
6 an-diugh an-diugh ADV Rt _ 2 advmod _ _
7 a a PART Uv PartType=Voc 8 case:voc _ _
8 [Name] [Name] PROPN Nn-mv Case=Voc|Gender=Masc 2 vocative _ Anonymised=Yes
# sent_id = c03_025
# speaker = [4]
# text = mmhmm
1 mmhmm mmhmm INTJ I _ 0 root _ _
# sent_id = c03_026
# speaker = [3]
# text = bha?
1 bha bi VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ SpaceAfter=No
2 ? ? PUNCT Fg _ 1 punct _ _
# sent_id = c03_027
# speaker = [4]
# text = àidh
1 àidh àidh INTJ I _ 0 root _ _
# sent_id = c03_028
# speaker = [1]
# text = an toil leat mince pies?
1 an is AUX Wpdqa Mood=Int|Polarity=Aff|Tense=Pres 2 cop _ _
2 toil toil NOUN Uf _ 0 root _ _
3-4 leat _ _ _ _ _ _ _ _
3 le le ADP Sp _ 4 case _ _
4 thu thu PRON Pp2s Number=Sing|Person=2|PronType=Prs 2 nmod _ _
5 mince mince NOUN Xfe _ 2 nsubj _ _
6 pies pies NOUN Xfe _ 5 flat _ SpaceAfter=No
7 ? ? PUNCT Fg _ 2 punct _ _
# sent_id = c03_029
# speaker = [4]
# text = ‘s toil
1 ‘s is AUX Wp-i Tense=Pres 2 cop _ _
2 toil toil NOUN Uf _ 0 root _ _
# sent_id = c03_030
# speaker = [3]
# text = ‘s ciamar a tha an cnatan agad fhèin a [Name]?
1 ‘s 's CCONJ Cc _ 2 cc _ _
2 ciamar ciamar PRON Uq PronType=Int 0 root _ _
3 a a PART Q-r PartType=Vb|PronType=Rel 4 xcomp:pred _ _
4 tha bi VERB V-p Mood=Ind|Tense=Pres|VerbForm=Fin 2 acl:relcl _ _
5 an an DET Tdsm Definite=Def|Gender=Masc|Number=Sing|PronType=Art 6 det _ _
6 cnatan cnatan NOUN Ncsmn Case=Nom|Gender=Masc|Number=Sing 4 nsubj _ _
7-8 agad _ _ _ _ _ _ _ _
7 aig aig ADP Sp _ 8 case _ _
8 thu thu PRON Pp2s Number=Sing|Person=2|PronType=Prs 6 nmod _ _
9 fhèin fèin PRON Px PronType=Prs|Reflex=Yes 8 nmod _ _
10 a a PART Uv PartType=Voc 11 case:voc _ _
11 [Name] [Name] PROPN Nn-mv Case=Voc|Gender=Masc 2 vocative _ Anonymised=Yes|SpaceAfter=No
12 ? ? PUNCT Fg _ 2 punct _ _
# sent_id = c03_031
# speaker = [2]
# text = mm rud beag nas fhearr
1 mm mm INTJ I _ 2 discourse _ _
2 rud rud NOUN Ncsmn Case=Nom|Gender=Masc|Number=Sing 0 root _ _
3 beag beag ADJ Aq-smn Case=Nom|Gender=Masc|Number=Sing 2 amod _ _
4 nas nas PART Uc PartType=Comp 5 mark:prt _ _
5 fhearr math ADJ Apc Degree=Cmp,Sup 2 amod _ _
# sent_id = c03_032
# speaker = [3]
# text = ò a bheil?
1 ò ò INTJ I _ 3 discourse _ _
2 a a PART Qq PartType=Vb|PronType=Int 3 mark:prt _ _
3 bheil bi VERB V-p--d Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ SpaceAfter=No
4 ? ? PUNCT Fg _ 3 punct _ _
# sent_id = c03_033
# speaker = [2]
# text = chan fhairich mi idir e anns a [?]
1 chan cha PART Qn PartType=Vb|Polarity=Neg 2 mark:prt _ _
2 fhairich fairich VERB V-f--d Mood=Ind|Tense=Fut|VerbForm=Fin 0 root _ _
3 mi mi PRON Pp1s Number=Sing|Person=1|PronType=Prs 2 nsubj _ _
4 idir idir ADV Rg _ 2 advmod _ _
5 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 2 obj _ _
6 anns an ADP Sp _ 8 case _ _
7 a a DET Xsi PronType=Art 8 det _ _
8 [?] [?] X Xx _ 2 obl _ _
# sent_id = c03_034
# speaker = [3]
# text = an robh thu a’ casadaich an-diugh?
1 an an PART Qq PartType=Vb|PronType=Int 2 mark:prt _ _
2 robh bi VERB V-s--d Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
3 thu thu PRON Pp2s Number=Sing|Person=2|PronType=Prs 2 nsubj _ _
4 a’ ag PART Sa _ 5 case _ _
5 casadaich casad NOUN Nv VerbForm=Vnoun 2 xcomp:pred _ _
6 an-diugh an-diugh ADV Rt _ 5 advmod _ SpaceAfter=No
7 ? ? PUNCT Fg _ 2 punct _ _
# sent_id = c03_035
# speaker = [2]
# text = bha
1 bha bi VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
# sent_id = c03_036a
# speaker = [3]
# text = dè thuirt [?] nach [?] sibh
1 dè dè PRON Uq PronType=Int 0 root _ _
2 thuirt abair VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 1 acl:relcl _ _
3 [?] [?] X Xx _ 2 nsubj _ _
4 nach nach PART Qn PartType=Cmpl|Polarity=Neg 5 mark:prt _ _
5 [?] [?] X Xx _ 2 parataxis _ _
6 sibh sibh PRON Pp2p Number=Plur|Person=2|PronType=Prs 5 nsubj _ _
# sent_id = c03_036b
# speaker = [3]
# text = tha sibh uile [?]
1 tha bi VERB V-p Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _
2 sibh sibh PRON Pp2p Number=Plur|Person=2|PronType=Prs 1 nsubj _ _
3 uile uile ADV Rg _ 1 advmod _ _
4 [?] [?] X Xx _ 1 xcomp:pred _ _
# sent_id = c03_036c
# speaker = [3]
# text = dè thuirt Mrs [Name] riut an-diugh?
1 dè dè PRON Uq PronType=Int 0 root _ _
2 thuirt abair VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 1 acl:relcl _ _
3 Mrs Mrs NOUN Y _ 2 nsubj _ _
4 [Name] [Name] PROPN Nn _ 3 flat:name _ Anonymised=Yes
5-6 riut _ _ _ _ _ _ _ _
5 ri ri ADP Sp _ 6 case _ _
6 thu thu PRON Pp2s Number=Sing|Person=2|PronType=Prs 2 obl _ _
7 an-diugh an-diugh ADV Rt _ 2 advmod _ SpaceAfter=No
8 ? ? PUNCT Fg _ 1 punct _ _
# sent_id = c03_037
# speaker = [1]
# text = a [Name]
1 a a PART Uv PartType=Voc 2 case:voc _ _
2 [Name] [Name] PROPN Nn-mv Case=Voc|Gender=Masc 0 root _ Anonymised=Yes
# sent_id = c03_038
# speaker = [2]
# text = o sorry thuirt i um dìreach an aon rud
1 o o INTJ I _ 3 discourse _ _
2 sorry sorry INTJ Xfe Foreign=Yes 3 discourse _ _
3 thuirt abair VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
4 i i PRON Pp3sf Gender=Fem|Number=Sing|Person=3|PronType=Prs 3 nsubj _ _
5 um um INTJ I _ 3 discourse _ _
6 dìreach dìreach ADV Rg _ 9 advmod _ _
7 an an DET Tdsm Definite=Def|Gender=Masc|Number=Sing|PronType=Art 9 det _ _
8 aon aon NUM Mc NumForm=Word|NumType=Card 9 nummod _ _
9 rud rud NOUN Ncsmn Case=Nom|Gender=Masc|Number=Sing 3 obj _ _
# sent_id = c03_039a
# speaker = [1]
# text = ciamar a bha an cnatan a’d
1 ciamar ciamar PRON Uq PronType=Int 0 root _ _
2 a a PART Q-r PartType=Vb|PronType=Rel 3 xcomp:pred _ _
3 bha bi VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 1 acl:relcl _ _
4 an an DET Tdsm Definite=Def|Gender=Masc|Number=Sing|PronType=Art 5 det _ _
5 cnatan cnatan NOUN Ncsmn Case=Nom|Gender=Masc|Number=Sing 3 nsubj _ _
6-7 a’d _ _ _ _ _ _ _ _
6 aig aig ADP Sp _ 7 case _ _
7 thu thu PRON Pp2s Number=Sing|Person=2|PronType=Prs 5 nmod _ _
# sent_id = c03_039b
# speaker = [1]
# text = an e?
1 an is AUX Wpdqa Mood=Int|Polarity=Aff|Tense=Pres 2 cop _ _
2 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 0 root _ SpaceAfter=No
3 ? ? PUNCT Fg _ 2 punct _ _
# sent_id = c03_040
# speaker = [2]
# text = uh uh
1 uh uh INTJ I _ 0 root _ _
2 uh uh INTJ I _ 1 discourse _ _
# sent_id = c03_041
# speaker = [1]
# text = a bheil an cnatan air duine sam bith eile thall an sin a [Name]?
1 a a PART Qq PartType=Vb|PronType=Int 2 mark:prt _ _
2 bheil bi VERB V-p--d Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _
3 an an DET Tdsm Definite=Def|Gender=Masc|Number=Sing|PronType=Art 4 det _ _
4 cnatan cnatan NOUN Ncsmn Case=Nom|Gender=Masc|Number=Sing 2 nsubj _ _
5 air air ADP Sp _ 6 case _ _
6 duine duine NOUN Ncsmd Case=Dat|Gender=Masc|Number=Sing 2 xcomp:pred _ _
7 sam sam ADJ Aq _ 6 amod _ _
8 bith bi ADJ Aq _ 7 fixed _ _
9 eile eile ADJ Aq-smd Case=Dat|Gender=Masc|Number=Sing 6 amod _ _
10 thall thall ADV Rs _ 11 advmod _ _
11 an an ADV Rs _ 6 advmod _ _
12 sin sin ADV Rs _ 11 fixed _ _
13 a a PART Uv PartType=Voc 14 case:voc _ _
14 [Name] [Name] PROPN Nn-mv Case=Voc|Gender=Masc 6 vocative _ Anonymised=Yes|SpaceAfter=No
15 ? ? PUNCT Fg _ 2 punct _ _
# sent_id = c03_042
# speaker = [2]
# text = àidh tha e aig tòrr dhaoine
1 àidh àidh INTJ I _ 2 discourse _ _
2 tha bi VERB V-p Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _
3 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 2 nsubj _ _
4 aig aig ADP Sp _ 5 case _ _
5 tòrr tòrr NOUN Ncsmd Case=Dat|Gender=Masc|Number=Sing 2 xcomp:pred _ _
6 dhaoine duine NOUN Ncpmg Case=Gen|Gender=Masc|Number=Plur 5 nmod _ _
# sent_id = c03_043
# speaker = [1]
# text = a bheil
1 a a PART Qq PartType=Vb|PronType=Int 2 mark:prt _ _
2 bheil bi VERB V-p--d Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _
# sent_id = c03_044
# speaker = [2]
# text = àidh ‘s e bug a tha a’ dol timcheall
1 àidh àidh INTJ I _ 4 discourse _ _
2 ‘s is AUX Wp-i Tense=Pres 4 cop _ _
3 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 2 fixed _ _
4 bug bug X Xfe Foreign=Yes 0 root _ _
5 a a PART Q-r PartType=Vb|PronType=Rel 6 nsubj _ _
6 tha bi VERB V-p Mood=Ind|Tense=Pres|VerbForm=Fin 4 csubj:cleft _ _
7 a’ ag PART Sa _ 8 case _ _
8 dol rach NOUN Nv VerbForm=Vnoun 6 xcomp:pred _ _
9 timcheall timcheall ADV Rs _ 8 advmod _ _
# sent_id = c03_045
# speaker = [1]
# text = och na bugs grànda tha sin
1 och och INTJ I _ 3 discourse _ _
2 na an DET Tdp Definite=Def|Number=Plur|PronType=Art 3 det _ _
3 bugs bugs NOUN Xfe Foreign=Yes 0 root _ _
4 grànda grànda ADJ Aq-p Number=Plur 3 amod _ _
5 tha bi VERB V-p Mood=Ind|Tense=Pres|VerbForm=Fin 3 acl:relcl _ _
6 sin sin PRON Pd PronType=Dem 5 nsubj _ _
# sent_id = c03_046
# speaker = [3]
# text = an robh duine dheth an-diugh?
1 an an PART Qq PartType=Vb|PronType=Int 2 mark:prt _ _
2 robh bi VERB V-s--d Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
3 duine duine NOUN Ncsmn Case=Nom|Gender=Masc|Number=Sing 2 nsubj _ _
4-5 dheth _ _ _ _ _ _ _ _
4 de de ADP Sp _ 5 case _ _
5 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 2 xcomp:pred _ _
6 an-diugh an-diugh ADV Rt _ 2 advmod _ SpaceAfter=No
7 ? ? PUNCT Fg _ 2 punct _ _
# sent_id = c03_047
# speaker = [2]
# text = uh cha robh
1 uh uh INTJ I _ 3 discourse _ _
2 cha cha PART Qn PartType=Vb|Polarity=Neg 3 mark:prt _ _
3 robh bi VERB V-s--d Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
# sent_id = c03_048
# speaker = [1]
# text = [Name]?
1 [Name] [Name] PROPN Nn-mn Case=Nom|Gender=Masc 0 root _ Anonymised=Yes|SpaceAfter=No
2 ? ? PUNCT Fg _ 1 punct _ _
# sent_id = c03_049
# speaker = [2]
# text = cha robh
1 cha cha PART Qn PartType=Vb|Polarity=Neg 2 mark:prt _ _
2 robh bi VERB V-s--d Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
# sent_id = c03_050a
# speaker = [1]
# text = cà robh e an dè?
1 cà PRON ADV Uq _ 0 root _ _
2 robh bi VERB V-s--d Mood=Ind|Tense=Past|VerbForm=Fin 1 acl:relcl _ _
3 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 2 nsubj _ _
4 an an ADV Rt _ 2 advmod _ _
5 dè dè ADV Rt _ 4 fixed _ SpaceAfter=No
6 ? ? PUNCT Fg _ 2 punct _ _
# sent_id = c03_050b
# speaker = [1]
# text = an ann aig na bales a bha e?
1 an is AUX Wpdqa Mood=Int|Polarity=Aff|Tense=Pres 6 cop _ _
2-3 ann _ _ _ _ _ _ _ _
2 an an ADP Sp _ 1 fixed _ _
3 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 1 fixed _ _
4 aig aig ADP Sp _ 6 case _ _
5 na an DET Tdp Definite=Def|Number=Plur|PronType=Art 6 det _ _
6 bales bales NOUN Xfe Foreign=Yes 0 root _ _
7 a a PART Q-r PartType=Vb|PronType=Rel 8 xcomp:pred _ _
8 bha bi VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 6 csubj:cleft _ _
9 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 8 nsubj _ SpaceAfter=No
10 ? ? PUNCT Fg _ 6 punct _ _
# sent_id = c03_051
# speaker = [2]
# text = cha do dh’fhoighneachd mi idir dha
1 cha cha PART Qn PartType=Vb|Polarity=Neg 3 mark:prt _ _
2 do do PART Q--s Tense=Past 3 mark:prt _ _
3 dh’fhoighneachd foighneachd VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
4 mi mi PRON Pp1s Number=Sing|Person=1|PronType=Prs 3 nsubj _ _
5 idir idir ADV Rg _ 3 advmod _ _
6-7 dha _ _ _ _ _ _ _ _
6 do do ADP Sp _ 7 case _ _
7 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 3 obl _ _
# sent_id = c03_052a
# speaker = [3]
# text = ‘s dè bha sibhse a’ dèanamh
1 ‘s 's CCONJ Cc _ 2 cc _ _
2 dè dè PRON Uq PronType=Int 0 root _ _
3 bha bi VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 2 acl:relcl _ _
4 sibhse sibh PRON Pp2p--e Form=Emp|Number=Plur|Person=2|PronType=Prs 3 nsubj _ _
5 a’ ag PART Sa _ 6 case _ _
6 dèanamh dèan NOUN Nv VerbForm=Vnoun 3 xcomp:pred _ _
# sent_id = c03_052b
# speaker = [3]
# text = an robh gym no dad agaibh an-diugh [Name]?
1 an an PART Qq PartType=Vb|PronType=Int 2 mark:prt _ _
2 robh bi VERB V-s--d Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
3 gym gym NOUN Xfe Foreign=Yes 2 nsubj _ _
4 no no CCONJ Cc _ 5 cc _ _
5 dad dad NOUN Ncsmn Case=Nom|Gender=Masc|Number=Sing 3 conj _ _
6-7 agaibh _ _ _ _ _ _ _ _
6 aig aig ADP Sp _ 7 case _ _
7 sibh sibh PRON Pp2p Number=Plur|Person=2|PronType=Prs 2 xcomp:pred _ _
8 an-diugh an-diugh ADV Rt _ 2 advmod _ _
9 [Name] [Name] PROPN Nn-mv Case=Voc|Gender=Masc 2 vocative _ Anonymised=Yes|SpaceAfter=No
10 ? ? PUNCT Fg _ 2 punct _ _
# sent_id = c03_053
# speaker = [4]
# text = mmhmm
1 mmhmm mmhmm INTJ I _ 0 root _ _
# sent_id = c03_054
# speaker = [3]
# text = an tidsear agaibh fhèin an e?
1 an an DET Tdsm Gender=Masc|Number=Sing|PronType=Art 2 det _ _
2 tidsear tidsear NOUN Ncsmn Case=Nom|Gender=Masc|Number=Sing 0 root _ _
3-4 agaibh _ _ _ _ _ _ _ _
3 aig aig ADP Sp _ 4 case _ _
4 sibh sibh PRON Pp2p Number=Plur|Person=2|PronType=Prs 2 nmod _ _
5 fhèin fèin PRON Px PronType=Prs|Reflex=Yes 4 nmod _ _
6 an is AUX Wpdqa Mood=Int|Polarity=Aff|Tense=Pres 7 cop _ _
7 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 2 parataxis _ SpaceAfter=No
8 ? ? PUNCT Fg _ 7 punct _ _
# sent_id = c03_055
# speaker = [4]
# text = no gym tidsear
1 no no INTJ Xfe _ 2 discourse _ OrigLang=en
2 gym gym NOUN Xfe _ 0 root _ _
3 tidsear tidsear NOUN Ncsmn Case=Nom|Gender=Masc|Number=Sing 2 flat _ _
# sent_id = c03_056
# speaker = [3]
# text = gym tidsear ‘s dè bha sibh a’ dèanamh?
1 gym gym NOUN Xfe Foreign=Yes 0 root _ _
2 tidsear tidsear NOUN Ncsmn Case=Nom|Gender=Masc|Number=Sing 1 flat _ _
3 ‘s 's CCONJ Cc _ 4 cc _ _
4 dè dè PRON Uq PronType=Int 1 conj _ _
5 bha bi VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 4 acl:relcl _ _
6 sibh sibh PRON Pp2p Number=Plur|Person=2|PronType=Prs 5 nsubj _ _
7 a’ ag PART Sa _ 8 case _ _
8 dèanamh dèan NOUN Nv VerbForm=Vnoun 5 xcomp:pred _ SpaceAfter=No
9 ? ? PUNCT Fg _ 1 punct _ _
# sent_id = c03_057
# speaker = [4]
# text = football
1 football football NOUN Xfe Foreign=Yes 0 root _ _
# sent_id = c03_058a
# speaker = [3]
# text = an e?
1 an is AUX Wpdqa Mood=Int|Polarity=Aff|Tense=Pres 2 cop _ _
2 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 0 root _ SpaceAfter=No
3 ? ? PUNCT Fg _ 2 punct _ _
# sent_id = c03_058b
# speaker = [3]
# text = cò bhuannaich?
1 cò cò PRON Uq PronType=Int 0 root _ _
2 bhuannaich buannaich VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 1 acl:relcl _ SpaceAfter=No
3 ? ? PUNCT Fg _ 1 punct _ _
# sent_id = c03_059
# speaker = [4]
# text = bha sinn dìreach a’ dèanamh ball control
1 bha bi VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
2 sinn sinn PRON Pp1p Number=Plur|Person=1|PronType=Prs 1 nsubj _ _
3 dìreach dìreach ADV Rg _ 5 advmod _ _
4 a’ ag PART Sa _ 5 case _ _
5 dèanamh dèan NOUN Nv VerbForm=Vnoun 1 xcomp:pred _ _
6 ball ball NOUN Xfe _ 5 obj _ _
7 control control NOUN Xfe _ 6 flat _ _
# sent_id = c03_060
# speaker = [3]
# text = ò seadh
1 ò ò INTJ I _ 2 discourse _ _
2 seadh seadh INTJ I _ 0 root _ _
# sent_id = c03_061
# speaker = [4]
# text = [?]
1 [?] [?] X Xx _ 0 root _ _
# sent_id = c03_062
# speaker = [3]
# text = mmm
1 mmm mmm INTJ I _ 0 root _ _
# sent_id = c03_063
# speaker = [2]
# text = thachair sin do dh’[Name]
1 thachair tachair VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
2 sin sin PRON Pd PronType=Dem 1 nsubj _ _
3 do do ADP Sp _ 4 case _ _
4 dh’[Name] [Name] PROPN Nn-md Case=Dat|Gender=Masc 1 obl _ Anonymised=Yes
# sent_id = c03_064
# speaker = [4]
# text = ach ‘s e làmh left hand aig [Name]
1 ach ach CCONJ Cc _ 4 cc _ _
2 ‘s is AUX Wp-i Tense=Pres 4 cop _ _
3 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 2 fixed _ _
4 làmh làmh NOUN Ncsfn Case=Nom|Gender=Fem|Number=Sing 0 root _ _
5 left left ADJ Xfe _ 4 amod _ _
6 hand hand NOUN Xfe _ 5 flat _ _
7 aig aig ADP Sp _ 8 case _ _
8 [Name] [Name] PROPN Nn-md Case=Dat|Gender=Masc 4 xcomp:pred _ Anonymised=Yes
# sent_id = c03_065a
# speaker = [3]
# text = agus cò bha a’ coimhead
1 agus agus CCONJ Cc _ 2 cc _ _
2 cò cò PRON Uq PronType=Int 0 root _ _
3 bha bi VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 2 acl:relcl _ _
4 a’ ag PART Sa _ 5 case _ _
5 coimhead coimhead NOUN Nv VerbForm=Vnoun 3 xcomp:pred _ _
# sent_id = c03_065b
# speaker = [3]
# text = cò na tidsearan a bha a’ sealltainn dhuibh?
1 cò cò PRON Uq PronType=Int 3 nmod _ _
2 na an DET Tdpm Definite=Def|Gender=Masc|Number=Plur|PronType=Art 3 det _ _
3 tidsearan tidsear NOUN Ncpmn Case=Nom|Gender=Masc|Number=Plur 0 root _ _
4 a a PART Q-r PartType=Vb|PronType=Rel 5 nsubj _ _
5 bha bi VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 3 acl:relcl _ _
6 a’ ag PART Sa _ 7 case _ _
7 sealltainn seall NOUN Nv VerbForm=Vnoun 5 xcomp:pred _ _
8-9 dhuibh _ _ _ _ _ _ _ SpaceAfter=No
8 do do ADP Sp _ 9 case _ _
9 sibh sibh PRON Pp2p Number=Plur|Person=2|PronType=Prs 7 obl _ _
10 ? ? PUNCT Fg _ 3 punct _ _
# sent_id = c03_066
# speaker = [4]
# text = an janitor
1 an an DET Tds Number=Sing|PronType=Art 2 det _ _
2 janitor janitor NOUN Xfe Foreign=Yes 0 root _ _
# sent_id = c03_067a
# speaker = [3]
# text = an janitor
1 an an DET Tds Number=Sing|PronType=Art 2 det _ _
2 janitor janitor X Xfe Foreign=Yes 0 root _ _
# sent_id = c03_067b
# speaker = [3]
# text = ciamar a chaidh dhut anns an test [Name]?
1 ciamar ciamar PRON Uq PronType=Int 0 root _ _
2 a a PART Q-r PartType=Vb|PronType=Rel 3 xcomp:pred _ _
3 chaidh rach VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 1 acl:relcl _ _
4-5 dhut _ _ _ _ _ _ _ _
4 do do ADP Sp _ 5 case _ _
5 thu thu PRON Pp2s Number=Sing|Person=2|PronType=Prs 3 obl _ _
6 anns an ADP Sp _ 8 case _ _
7 an an DET Tds Definite=Def|Number=Sing|PronType=Art 8 det _ _
8 test test NOUN Xfe Foreign=Yes 3 obl _ _
9 [Name] [Name] PROPN Nn-fv Case=Voc|Gender=Fem 3 vocative _ Anonymised=Yes|SpaceAfter=No
10 ? ? PUNCT Fg _ 3 punct _ _
# sent_id = c03_068
# speaker = [5]
# text = cha d’ fhuair sinn idir e
1 cha cha PART Qn PartType=Vb|Polarity=Neg 3 mark:prt _ _
2 d’ do PART Q--s Tense=Past 3 mark:prt _ _
3 fhuair faigh VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
4 sinn sinn PRON Pp1p Number=Plur|Person=1|PronType=Prs 3 nsubj _ _
5 idir idir ADV Rg _ 3 advmod _ _
6 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 3 obj _ _
# sent_id = c03_069
# speaker = [3]
# text = cha d’ fhuair sibh an test no cha d’ fhuair sibh na results
1 cha cha PART Qn PartType=Vb|Polarity=Neg 3 mark:prt _ _
2 d’ do PART Q--s Tense=Past 3 mark:prt _ _
3 fhuair faigh VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
4 sibh sibh PRON Pp2p Number=Plur|Person=2|PronType=Prs 3 nsubj _ _
5 an an DET Tds Definite=Def|Number=Sing|PronType=Art 6 det _ _
6 test test NOUN Xfe Foreign=Yes 3 obj _ _
7 no no CCONJ Cc _ 10 cc _ _
8 cha cha PART Qn PartType=Vb|Polarity=Neg 10 mark:prt _ _
9 d’ do PART Q--s Tense=Past 10 mark:prt _ _
10 fhuair faigh VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 3 conj _ _
11 sibh sibh PRON Pp2p Number=Plur|Person=2|PronType=Prs 10 nsubj _ _
12 na an DET Tdp Definite=Def|Number=Plur|PronType=Art 13 det _ _
13 results results NOUN Xfe Foreign=Yes 10 obj _ _
# sent_id = c03_070
# speaker = [5]
# text = neither
1 neither neither X Xfe Foreign=Yes 0 root _ _
# sent_id = c03_071a
# speaker = [3]
# text = nach d’ fhuair?
1 nach nach PART Qn PartType=Vb|Polarity=Neg 3 mark:prt _ _
2 d’ do PART Q--s Tense=Past 3 mark:prt _ _
3 fhuair faigh VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ SpaceAfter=No
4 ? ? PUNCT Fg _ 3 punct _ _
# sent_id = c03_071b
# speaker = [3]
# text = carson?
1 carson carson PRON Uq PronType=Int 0 root _ SpaceAfter=No
2 ? ? PUNCT Fg _ 1 punct _ _
# sent_id = c03_072
# speaker = [5]
# text = dh’fhàg Mr [Name] na sheets aig an taigh
1 dh’fhàg fàg VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
2 Mr Mr NOUN Y _ 1 nsubj _ _
3 [Name] [Name] PROPN Nn _ 2 flat:name _ Anonymised=Yes
4 na an DET Tdp Definite=Def|Number=Plur|PronType=Art 5 det _ _
5 sheets sheets X Xfe Foreign=Yes 1 obj _ _
6 aig aig ADP Sp _ 8 case _ _
7 an an DET Tdsm Definite=Def|Gender=Masc|Number=Sing|PronType=Art 8 det _ _
8 taigh taigh NOUN Ncsmd Case=Dat|Gender=Masc|Number=Sing 1 obl _ _
# sent_id = c03_073
# speaker = [3]
# text = oh thì fhios gun robh e ag obair orra an-raoir
1 oh oh INTJ I _ 3 discourse _ _
2 thì thì INTJ I _ 3 discourse _ _
3 fhios fios NOUN Ncsmn Case=Nom|Gender=Masc|Number=Sing 0 root _ _
4 gun gu PART Qa PartType=Cmpl 5 mark:prt _ _
5 robh bi VERB V-s--d Mood=Ind|Tense=Past|VerbForm=Fin 3 acl _ _
6 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 5 nsubj _ _
7 ag ag PART Sa _ 8 case _ _
8 obair obraich NOUN Nv VerbForm=Vnoun 5 xcomp:pred _ _
9-10 orra _ _ _ _ _ _ _ _
9 air air ADP Sp _ 10 case _ _
10 iad iad PRON Pp3p Number=Plur|Person=3|PronType=Prs 8 obl _ _
11 an-raoir an-raoir ADV Rt _ 8 advmod _ _
# sent_id = c03_074
# speaker = [1]
# text = an d’ thuirt thu gun robh homework agad [Name]?
1 an an PART Qq PartType=Vb|PronType=Int 3 mark:prt _ _
2 d’ do PART Q--s Tense=Past 3 mark:prt _ _
3 thuirt abair VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
4 thu thu PRON Pp2s Number=Sing|Person=2|PronType=Prs 3 nsubj _ _
5 gun gu PART Qa PartType=Cmpl 6 mark:prt _ _
6 robh bi VERB V-s--d Mood=Ind|Tense=Past|VerbForm=Fin 3 ccomp _ _
7 homework homework NOUN Xfe Foreign=Yes 6 nsubj _ _
8-9 agad _ _ _ _ _ _ _ _
8 aig aig ADP Sp _ 9 case _ _
9 thu thu PRON Pp2s Number=Sing|Person=2|PronType=Prs 6 xcomp:pred _ _
10 [Name] [Name] PROPN Nn-mv Case=Voc|Gender=Masc 3 vocative _ Anonymised=Yes|SpaceAfter=No
11 ? ? PUNCT Fg _ 3 punct _ _
# sent_id = c03_075a
# speaker = [4]
# text = tha dà dhuilleag agam
1 tha bi VERB V-p Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _
2 dà dà NUM Mc NumForm=Word|NumType=Card 3 nummod _ _
3 dhuilleag duilleag NOUN Ncsfn Case=Nom|Gender=Fem|Number=Sing 1 nsubj _ _
4-5 agam _ _ _ _ _ _ _ _
4 aig aig ADP Sp _ 5 case _ _
5 mi mi PRON Pp1s Number=Sing|Person=1|PronType=Prs 1 xcomp:pred _ _
# sent_id = c03_075b
# speaker = [4]
# text = so dèan mi aonan airson a-nochd agus aonan a-màireach
1 so so CCONJ Xfe Foreign=Yes 2 cc _ _
2 dèan dèan VERB V-f Mood=Ind|Tense=Fut|VerbForm=Fin 0 root _ _
3 mi mi PRON Pp1s Number=Sing|Person=1|PronType=Prs 2 nsubj _ _
4 aonan aonan NOUN Ncsmn Case=Nom|Gender=Masc|Number=Sing 3 obj _ _
5 airson airson ADP Nf _ 6 case _ _
6 a-nochd a-nochd ADV Rt _ 2 advmod _ _
7 agus agus CCONJ Cc _ 8 cc _ _
8 aonan aonan NOUN Ncsmn Case=Nom|Gender=Masc|Number=Sing 2 conj _ _
9 a-màireach a-màireach ADV Rt _ 8 advmod _ _
# sent_id = c03_076
# speaker = [3]
# text = ‘s a bheil an tè eile agad ri dhèanamh cuideachd?
1 ‘s 's CCONJ Cc _ 3 cc _ _
2 a a PART Qq PartType=Vb|PronType=Int 3 mark:prt _ _
3 bheil bi VERB V-p--d Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _
4 an an DET Tdsf Definite=Def|Gender=Fem|Number=Sing|PronType=Art 5 det _ _
5 tè tè NOUN Ncsfn Case=Nom|Gender=Fem|Number=Sing 3 nsubj _ _
6 eile eile ADJ Aq-sfn Case=Nom|Gender=Fem|Number=Sing 5 amod _ _
7-8 agad _ _ _ _ _ _ _ _
7 aig aig ADP Sp _ 8 case _ _
8 thu thu PRON Pp2s Number=Sing|Person=2|PronType=Prs 5 nmod _ _
9 ri ri PART Sa _ 10 case _ _
10 dhèanamh dèan NOUN Nv VerbForm=Vnoun 8 xcomp:pred _ _
11 cuideachd cuideachd ADV Rg _ 10 advmod _ SpaceAfter=No
12 ? ? PUNCT Fg _ 3 punct _ _
# sent_id = c03_077a
# speaker = [4]
# text = chan eil
1 chan cha PART Qn PartType=Vb|Polarity=Neg 2 mark:prt _ _
2 eil bi VERB V-p--d Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _
# sent_id = c03_077b
# speaker = [4]
# text = uill thà ach airson Dihaoine so dìreach fàgaidh mi e
1 uill uill INTJ I _ 2 discourse _ _
2 thà bi VERB V-p Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _
3 ach ach CCONJ Cc _ 5 cc _ _
4 airson airson ADP Nf _ 5 case _ _
5 Dihaoine dihaoine NOUN Ncsmg Case=Gen|Gender=Masc|Number=Sing 2 conj _ _
6 so so CCONJ Xfe Foreign=Yes 8 cc _ _
7 dìreach dìreach ADV Rg _ 8 advmod _ _
8 fàgaidh fàg VERB V-f Mood=Ind|Tense=Fut|VerbForm=Fin 2 conj _ _
9 mi mi PRON Pp1s Number=Sing|Person=1|PronType=Prs 8 nsubj _ _
10 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 8 obj _ _
# sent_id = c03_078
# speaker = [3]
# text = chan fhàg thu
1 chan cha PART Qn PartType=Vb|Polarity=Neg 2 mark:prt _ _
2 fhàg fàg VERB V-f--d Mood=Ind|Tense=Fut|VerbForm=Fin 0 root _ _
3 thu thu PRON Pp2s Number=Sing|Person=2|PronType=Prs 2 nsubj _ _
# sent_id = c03_079
# speaker = [1]
# text = ‘s e [?]
1 ‘s is AUX Wp-i Tense=Pres 2 cop _ _
2 e e PRON Pp3sm Gender=Masc|Number=Sing|Person=3|PronType=Prs 0 root _ _
3 [?] [?] X Xx _ 2 nsubj _ _
# sent_id = c03_080
# speaker = [1]
# text = uill bha sin math
1 uill uill INTJ I _ 2 discourse _ _
2 bha bi VERB V-s Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _
3 sin sin PRON Pd PronType=Dem 2 nsubj _ _
4 math math ADJ Ap _ 2 xcomp:pred _ _
# sent_id = c03_081a
# speaker = [3]
# text = ‘s dè mu do dheidhinn-sa a [Name]
1 ‘s 's CCONJ Cc _ 2 cc _ _
2 dè dè PRON Uq PronType=Int 0 root _ _
3 mu mu ADP Sp _ 5 case _ _
4 do do DET Dp2s Number=Sing|Person=2|Poss=Yes|PronType=Prs 5 nmod:poss _ _
5 dheidhinn-sa deidhinn ADP Nf---e Form=Emp 2 nmod _ _
6 a a PART Uv PartType=Voc 7 case:voc _ _
7 [Name] [Name] PROPN Nn-mv Case=Voc|Gender=Masc 2 vocative _ Anonymised=Yes
# sent_id = c03_081b
# speaker = [3]
# text = a bheil Stamh agus Putag a’d ri leughadh an-nochd?
1 a a PART Qq PartType=Vb|PronType=Int 2 mark:prt _ _
2 bheil bi VERB V-p--d Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _
3 Stamh Stamh PROPN Nn-mn Case=Nom|Gender=Masc 2 nsubj _ _
4 agus agus CCONJ Cc _ 5 cc _ _
5 Putag Putag PROPN Nn-mn Case=Nom|Gender=Masc 2 conj _ _
6-7 a’d _ _ _ _ _ _ _ _
6 aig aig ADP Sp _ 7 case _ _
7 thu thu PRON Pp2s Number=Sing|Person=2|PronType=Prs 3 nmod _ _
8 ri ri PART Sa _ 9 case _ _
9 leughadh leugh NOUN Nv VerbForm=Vnoun 2 xcomp:pred _ _
10 an-nochd an-nochd ADV Rt _ 9 advmod _ SpaceAfter=No
11 ? ? PUNCT Fg _ 2 punct _ _
# sent_id = c03_082
# speaker = [2]