File size: 23,898 Bytes
a36b767 a9b83fb dcb244c 61e0745 a9b83fb a36b767 7e3ae19 2e9467b 1b99834 c645d3f cae66fb a36b767 a9b83fb dcb244c 61e0745 a36b767 7e3ae19 2e9467b 1b99834 c645d3f cae66fb a36b767 |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 |
---
dataset_info:
- config_name: ami
features:
- name: Utterance
dtype: string
- name: Dialogue_Act
dtype: string
- name: Speaker
dtype: string
- name: Dialogue_Id
dtype: string
- name: Dialogue_Act_ISO
dtype: string
- name: Label
dtype:
class_label:
names:
'0': el.und
'1': 'off'
'2': und
'3': ass
'4': oth
'5': stl
'6': OOD
'7': be.pos
'8': fra
'9': inf
'10': el.sug
'11': el.ass
'12': be.neg
'13': bck
'14': el.inf
'15': sug
- name: Label_ISO
dtype:
class_label:
names:
'0': commissive
'1': directive
'2': inform
'3': feedback
'4': OOD
- name: Dialogue_Act_Base
dtype: string
- name: Label_Base
dtype:
class_label:
names:
'0': Elicit-Assessment
'1': Be-Positive
'2': Elicit-Inform
'3': Suggest
'4': Fragment
'5': OOD
'6': Elicit-Offer-Or-Suggestion
'7': Inform
'8': Be-Negative
'9': Stall
'10': Elicit-Comment-Understanding
'11': Backchannel
'12': Offer
'13': Other
'14': Comment-About-Understanding
'15': Assess
- name: Idx
dtype: int32
- name: Speaker_Id
dtype:
class_label:
names:
'0': A
'1': B
'2': D
'3': C
splits:
- name: train
num_bytes: 11063056
num_examples: 94684
- name: test
num_bytes: 1893512
num_examples: 15851
download_size: 3488959
dataset_size: 12956568
- config_name: dstc3
features:
- name: Speaker
dtype: string
- name: Utterance
dtype: string
- name: Dialogue_Act
dtype: string
- name: Dialogue_Id
dtype: string
- name: Dialogue_Act_ISO
dtype: string
- name: Label
dtype:
class_label:
names:
'0': negate
'1': ack
'2': affirm
'3': repeat
'4': bye
'5': canthelp
'6': reqalts
'7': request
'8': thankyou
'9': reqmore
'10': inform
'11': expl-conf
'12': OOD
'13': welcomemsg
'14': hello
'15': canthelp.missing_slot_value
'16': restart
'17': select
'18': deny
'19': confirm
'20': offer
- name: Label_ISO
dtype:
class_label:
names:
'0': commissive
'1': disagreement
'2': greeting
'3': answer
'4': directive
'5': goodbye
'6': inform
'7': thanking
'8': feedback
'9': OOD
- name: Dialogue_Act_Base
dtype: string
- name: Label_Base
dtype:
class_label:
names:
'0': Deny
'1': Explicit Confirmation
'2': Thank you
'3': Goodbye
'4': Repeat
'5': Request More
'6': Select
'7': Acknowledge
'8': Affirmation
'9': OOD
'10': Welcome
'11': Restart
'12': Request Alternative
'13': Can not help
'14': Inform
'15': Confirm
'16': Hello
'17': Offer
'18': Request
'19': Negate
- name: Idx
dtype: int32
- name: Speaker_Id
dtype:
class_label:
names:
'0': SYS
'1': USR
splits:
- name: train
num_bytes: 36830
num_examples: 279
- name: test
num_bytes: 6823590
num_examples: 50179
download_size: 1085375
dataset_size: 6860420
- config_name: dstc8-sgd
features:
- name: Speaker
dtype: string
- name: Utterance
dtype: string
- name: Dialogue_Act
dtype: string
- name: Dialogue_Id
dtype: string
- name: Dialogue_Act_ISO
dtype: string
- name: Label
dtype:
class_label:
names:
'0': AFFIRM
'1': AFFIRM_INTENT
'2': OFFER_INTENT
'3': REQ_MORE
'4': NEGATE_INTENT
'5': SELECT
'6': INFORM
'7': NOTIFY_SUCCESS
'8': CONFIRM
'9': INFORM_INTENT
'10': THANK_YOU
'11': OFFER
'12': REQUEST_ALTS
'13': NEGATE
'14': REQUEST
'15': NOTIFY_FAILURE
'16': GOODBYE
- name: Label_ISO
dtype:
class_label:
names:
'0': commissive
'1': disagreement
'2': answer
'3': directive
'4': goodbye
'5': inform
'6': thanking
'7': OOD
- name: Dialogue_Act_Base
dtype: string
- name: Label_Base
dtype:
class_label:
names:
'0': Request More
'1': Thank you
'2': Offer
'3': Notify Failure
'4': Negate Intent
'5': Select
'6': Inform Intention
'7': Request
'8': Negate
'9': Inform
'10': Goodbye
'11': Confirm
'12': Notify Success
'13': Affirmation
'14': Request Alternatives
'15': Offer Intent
'16': Affirm Intent
- name: Idx
dtype: int32
- name: Speaker_Id
dtype:
class_label:
names:
'0': USER
'1': SYSTEM
splits:
- name: train
num_bytes: 48308449
num_examples: 329964
- name: validation
num_bytes: 7070173
num_examples: 48726
- name: test
num_bytes: 12608825
num_examples: 84594
download_size: 17090668
dataset_size: 67987447
- config_name: dyda
features:
- name: Speaker
dtype: string
- name: Utterance
dtype: string
- name: Dialogue_Act
dtype: string
- name: Emotion
dtype: string
- name: Dialogue_Id
dtype: string
- name: Dialogue_Act_ISO
dtype: string
- name: Label
dtype:
class_label:
names:
'0': directive
'1': inform
'2': question
'3': commissive
- name: Label_ISO
dtype:
class_label:
names:
'0': directive
'1': inform
'2': OOD
'3': commissive
- name: Dialogue_Act_Base
dtype: string
- name: Label_Base
dtype:
class_label:
names:
'0': Directive
'1': Question
'2': Commissive
'3': Inform
- name: Idx
dtype: int32
- name: Speaker_Id
dtype:
class_label:
names:
'0': sp0
'1': sp1
splits:
- name: train
num_bytes: 14114497
num_examples: 87170
- name: validation
num_bytes: 1302961
num_examples: 8069
- name: test
num_bytes: 1252126
num_examples: 7740
download_size: 5211740
dataset_size: 16669584
- config_name: frames
features:
- name: Speaker
dtype: string
- name: Utterance
dtype: string
- name: Dialogue_Act
dtype: string
- name: Dialogue_Id
dtype: string
- name: Dialogue_Act_ISO
dtype: string
- name: Label
dtype:
class_label:
names:
'0': negate
'1': affirm
'2': canthelp
'3': request
'4': thankyou
'5': inform
'6': OOD
'7': you_are_welcome
'8': hearmore
'9': greeting
'10': moreinfo
'11': no_result
'12': reject
'13': request_compare
'14': request_alts
'15': suggest
'16': confirm
'17': switch_frame
'18': goodbye
'19': offer
'20': sorry
- name: Label_ISO
dtype:
class_label:
names:
'0': commissive
'1': disagreement
'2': apology
'3': greeting
'4': directive
'5': answer
'6': goodbye
'7': inform
'8': thanking
'9': OOD
- name: Dialogue_Act_Base
dtype: string
- name: Label_Base
dtype:
class_label:
names:
'0': Thank you
'1': Goodbye
'2': Request Compare
'3': Sorry
'4': Affirm
'5': Switch Frame
'6': OOD
'7': Welcome
'8': Inform
'9': Can not help
'10': Request Alternative
'11': Confirm
'12': Hear More
'13': Greeting
'14': Offer
'15': No Result
'16': Suggest
'17': Request
'18': Reject
'19': Negate
'20': Request More information
- name: Idx
dtype: int32
- name: Speaker_Id
dtype:
class_label:
names:
'0': USR
'1': SYS
splits:
- name: train
num_bytes: 4011644
num_examples: 29639
- name: test
num_bytes: 115403
num_examples: 881
download_size: 1184447
dataset_size: 4127047
- config_name: maptask
features:
- name: Speaker
dtype: string
- name: Utterance
dtype: string
- name: Dialogue_Act
dtype: string
- name: Dialogue_Id
dtype: string
- name: Dialogue_Act_ISO
dtype: string
- name: Label
dtype:
class_label:
names:
'0': reply_y
'1': query_yn
'2': clarify
'3': reply_w
'4': ready
'5': explain
'6': align
'7': acknowledge
'8': check
'9': reply_n
'10': query_w
'11': instruct
- name: Label_ISO
dtype:
class_label:
names:
'0': setq
'1': discourse
'2': answer
'3': directive
'4': inform
'5': feedback
'6': propq
'7': OOD
- name: Dialogue_Act_Base
dtype: string
- name: Label_Base
dtype:
class_label:
names:
'0': Explain
'1': Non Yes-No-Question
'2': Non Yes-No-Reply
'3': Check Attention
'4': Acknowledge
'5': No-Reply
'6': Yes-Reply
'7': Ready
'8': Instruct
'9': Yes-No-Question
'10': Check
'11': Clarify
- name: Idx
dtype: int32
- name: Speaker_Id
dtype:
class_label:
names:
'0': g
'1': f
splits:
- name: train
num_bytes: 2471636
num_examples: 21051
- name: validation
num_bytes: 345811
num_examples: 2928
- name: test
num_bytes: 322940
num_examples: 2761
download_size: 681304
dataset_size: 3140387
- config_name: mrda
features:
- name: Speaker
dtype: string
- name: Utterance
dtype: string
- name: Basic_DA
dtype: string
- name: General_DA
dtype: string
- name: Dialogue_Act
dtype: string
- name: Dialogue_Id
dtype: string
- name: Dialogue_Act_ISO
dtype: string
- name: Label
dtype:
class_label:
names:
'0': f
'1': 'no'
'2': fg
'3': arp
'4': qrr
'5': qo
'6': cs
'7': bd
'8': by
'9': ar
'10': h
'11': fw
'12': fa
'13': df
'14': br
'15': qh
'16': r
'17': '%'
'18': aa
'19': aap
'20': bs
'21': fh
'22': e
'23': bu
'24': ft
'25': fe
'26': cc
'27': t1
'28': nd
'29': qy
'30': qr
'31': qw
'32': ng
'33': d
'34': '2'
'35': m
'36': bh
'37': na
'38': t
'39': s
'40': b
'41': bc
'42': rt
'43': t3
'44': j
'45': am
'46': bsc
'47': tc
'48': bk
'49': ba
'50': g
'51': co
- name: Label_ISO
dtype:
class_label:
names:
'0': agreement
'1': setq
'2': commissive
'3': disagreement
'4': discourse
'5': choiceq
'6': apology
'7': answer
'8': directive
'9': inform
'10': feedback
'11': thanking
'12': turn
'13': propq
'14': OOD
- name: Dialogue_Act_Base
dtype: string
- name: Label_Base
dtype:
class_label:
names:
'0': Rhetorical-Question
'1': Self-talk
'2': Maybe
'3': Open-Question
'4': 3rd-party-talk
'5': Reject-part
'6': Repeat
'7': Interrupted/Abandoned/Uninterpretable
'8': Wh-Question
'9': Exclamation
'10': Signal-non-understanding
'11': Apology
'12': Follow Me
'13': Commit
'14': Continuer (backchannel)
'15': Mimic Other
'16': Correct-misspeaking
'17': Reformulate/Summarize
'18': Defending/Explanation
'19': Statement
'20': Other Answers
'21': Topic Change
'22': Accept-part
'23': Sympathy
'24': About-task
'25': Understanding Check
'26': Downplayer
'27': Welcome
'28': Rising Tone
'29': Floor Holder
'30': Tag-Question
'31': Or-Clause
'32': Accept
'33': Declarative-Question
'34': Humorous Material
'35': Affirmative Non-yes Answers
'36': Offer
'37': Action-directive
'38': Dispreferred Answers
'39': Floor Grabber
'40': Rhetorical-question Continue
'41': Thanking
'42': Yes-No-question
'43': Acknowledge-answer
'44': Assessment/Appreciation
'45': Reject
'46': Misspeak Self-Correction
'47': Collaborative Completion
'48': Or-Question
'49': Hold Before Answer/Agreement
'50': Expansions of y/n Answers
'51': Negative Non-no Answers
- name: Idx
dtype: int32
- name: Speaker_Id
dtype:
class_label:
names:
'0': me003
'1': me012
'2': fe004
'3': mn015
'4': me010
'5': me045
'6': mn036
'7': me013
'8': me001
'9': me011
'10': mn005
'11': fe016
'12': fe008
'13': mn017
'14': me018
'15': mn014
'16': mn009
'17': me026
'18': me051
'19': mn007
'20': me034
'21': me006
'22': fn002
'23': mn058
'24': mn052
'25': fe046
'26': fn050
'27': me025
'28': mn048
'29': mn047
'30': mn059
'31': me022
'32': me028
'33': mn082
'34': mn021
'35': fn083
'36': mn030
'37': mn081
'38': mn035
'39': mn040
'40': mn049
'41': me055
'42': mn038
'43': me056
'44': mn057
'45': fe068
'46': fe069
'47': fe066
'48': me070
'49': fe067
'50': fe041
'51': fn043
splits:
- name: train
num_bytes: 10415095
num_examples: 75067
- name: validation
num_bytes: 2287858
num_examples: 16432
- name: test
num_bytes: 2289107
num_examples: 16701
download_size: 3926806
dataset_size: 14992060
- config_name: oasis
features:
- name: Speaker
dtype: string
- name: Utterance
dtype: string
- name: Dialogue_Act
dtype: string
- name: Dialogue_Id
dtype: string
- name: Dialogue_Act_ISO
dtype: string
- name: Label
dtype:
class_label:
names:
'0': expressWish
'1': directElab
'2': appreciate
'3': negate
'4': expressRegret
'5': exclaim
'6': echo
'7': hold
'8': bye
'9': init
'10': direct
'11': identifySelf
'12': informIntent
'13': thank-identifySelf
'14': answ
'15': correctSelf
'16': expressPossibility
'17': reqDirect
'18': inform
'19': pardon
'20': refer
'21': expressRegret-inform
'22': thank
'23': refuse
'24': selfTalk
'25': reqInfo
'26': raiseIssue
'27': informCont
'28': informIntent-hold
'29': answElab
'30': backch
'31': informDisc
'32': accept
'33': reqModal
'34': suggest
'35': confirm
'36': expressOpinion
'37': ackn
'38': greet
'39': offer
'40': complete
'41': correct
- name: Label_ISO
dtype:
class_label:
names:
'0': agreement
'1': commissive
'2': discourse
'3': disagreement
'4': greeting
'5': answer
'6': directive
'7': apology
'8': goodbye
'9': inform
'10': feedback
'11': thanking
'12': turn
'13': OOD
- name: Dialogue_Act_Base
dtype: string
- name: Label_Base
dtype:
class_label:
names:
'0': Raise Issue
'1': Correct Self
'2': Initialise
'3': Express Wish
'4': Express Regret
'5': Direct Elaborate
'6': Complete
'7': Inform Intent Hold
'8': Express Opinion
'9': Exclaim
'10': Greet
'11': Acknowledge
'12': Answer
'13': Correct
'14': Backchannel
'15': Refer
'16': Inform Intention
'17': Bye
'18': Identify Self
'19': Inform Continue
'20': Self Talk
'21': Hold
'22': Answer Elaborate
'23': Refuse
'24': Accept
'25': Inform
'26': Confirm
'27': Inform Discontinue
'28': Offer
'29': Suggest
'30': Echo
'31': Thank
'32': Request Modal
'33': Appreciate
'34': Express Regret Inform
'35': Request Direct
'36': Thank Identify Self
'37': Request Inform
'38': Express Possibility
'39': Negate
'40': Pardon
'41': Direct
- name: Idx
dtype: int32
- name: Speaker_Id
dtype:
class_label:
names:
'0': b
'1': a
splits:
- name: train
num_bytes: 1621059
num_examples: 12075
- name: validation
num_bytes: 203381
num_examples: 1501
- name: test
num_bytes: 209616
num_examples: 1488
download_size: 476879
dataset_size: 2034056
- config_name: swda
features:
- name: Speaker
dtype: string
- name: Utterance
dtype: string
- name: Dialogue_Act
dtype: string
- name: Dialogue_Id
dtype: string
- name: Dialogue_Act_ISO
dtype: string
- name: Label
dtype:
class_label:
names:
'0': 'no'
'1': qo
'2': fp
'3': qrr
'4': ^g
'5': by
'6': bd
'7': qw^d
'8': h
'9': fw
'10': ar
'11': o_"_bc
'12': fa
'13': b^m
'14': br
'15': sv
'16': qh
'17': sd
'18': '%'
'19': nn
'20': aa
'21': ad
'22': bf
'23': ny
'24': oo
'25': fc
'26': ft
'27': ^h
'28': ^q
'29': qy^d
'30': t1
'31': qy
'32': qw
'33': ng
'34': co_cc
'35': aap_am
'36': arp_nd
'37': bh
'38': ^2
'39': na
'40': ba
'41': b
'42': t3
'43': bk
'44': fo
- name: Label_ISO
dtype:
class_label:
names:
'0': agreement
'1': setq
'2': commissive
'3': discourse
'4': disagreement
'5': choiceq
'6': apology
'7': answer
'8': directive
'9': inform
'10': feedback
'11': thanking
'12': turn
'13': propq
'14': OOD
- name: Dialogue_Act_Base
dtype: string
- name: Label_Base
dtype:
class_label:
names:
'0': Conventional-opening
'1': Self-talk
'2': Rhetorical-Question
'3': Open-Question
'4': Hedge
'5': 3rd-party-talk
'6': Yes Answers
'7': Declarative Yes-No-Question
'8': No Answers
'9': Wh-Question
'10': Signal-non-understanding
'11': Apology
'12': Conventional-closing
'13': Other forward-looking functions
'14': Quotation
'15': Statement-non-opinion
'16': Other Answers
'17': Agree/Accept
'18': Uninterpretable
'19': Yes-No-Question
'20': Sympathy
'21': Downplayer
'22': Welcome
'23': Tag-Question
'24': Or-Clause
'25': Statement-opinion
'26': Repeat-phrase
'27': Affirmative Non-yes Answers
'28': Other
'29': Action-directive
'30': Acknowledge (Backchannel)
'31': Dispreferred Answers
'32': Options Commits
'33': Offers
'34': Summarize/Reformulate
'35': Thanking
'36': Maybe/Accept-part
'37': Reject
'38': Declarative Wh-Question
'39': Collaborative Completion
'40': Backchannel in Question Form
'41': Hold Before Answer/Agreement
'42': Response Acknowledgement
'43': Negative Non-no Answers
'44': Appreciation
- name: Idx
dtype: int32
- name: Speaker_Id
dtype:
class_label:
names:
'0': A
'1': B
splits:
- name: train
num_bytes: 24856950
num_examples: 192385
- name: validation
num_bytes: 426055
num_examples: 3271
- name: test
num_bytes: 521289
num_examples: 4077
download_size: 7250737
dataset_size: 25804294
configs:
- config_name: ami
data_files:
- split: train
path: ami/train-*
- split: test
path: ami/test-*
- config_name: dstc3
data_files:
- split: train
path: dstc3/train-*
- split: test
path: dstc3/test-*
- config_name: dstc8-sgd
data_files:
- split: train
path: dstc8-sgd/train-*
- split: validation
path: dstc8-sgd/validation-*
- split: test
path: dstc8-sgd/test-*
- config_name: dyda
data_files:
- split: train
path: dyda/train-*
- split: validation
path: dyda/validation-*
- split: test
path: dyda/test-*
default: true
- config_name: frames
data_files:
- split: train
path: frames/train-*
- split: test
path: frames/test-*
- config_name: maptask
data_files:
- split: train
path: maptask/train-*
- split: validation
path: maptask/validation-*
- split: test
path: maptask/test-*
- config_name: mrda
data_files:
- split: train
path: mrda/train-*
- split: validation
path: mrda/validation-*
- split: test
path: mrda/test-*
- config_name: oasis
data_files:
- split: train
path: oasis/train-*
- split: validation
path: oasis/validation-*
- split: test
path: oasis/test-*
- config_name: swda
data_files:
- split: train
path: swda/train-*
- split: validation
path: swda/validation-*
- split: test
path: swda/test-*
---
|