diff --git a/.env.example b/.env.example index 49f7493..c08f24d 100644 --- a/.env.example +++ b/.env.example @@ -1,2 +1,3 @@ HF_TOKEN=YOUR_SECRET_TOKEN_HERE HUB_MODEL_ID=YOUR_HUGGING_FACE_MODEL_ID_HERE # e.g., username/schedulebot-nlu-engine +HUB_DS_ID=andreaceto/hasd # if you want to use my dataset diff --git a/.gitignore b/.gitignore index 87aeaa4..568c706 100644 --- a/.gitignore +++ b/.gitignore @@ -212,3 +212,4 @@ __marimo__/ # Models models/ +logs/ diff --git a/data/__init__.py b/data/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/data/appointment_id_generator.py b/data/appointment_id_generator.py new file mode 100644 index 0000000..22d23fe --- /dev/null +++ b/data/appointment_id_generator.py @@ -0,0 +1,45 @@ +import pandas as pd +import random +import string +import os + + +def generate_appointment_id(): + """ + Generates a random appointment ID in the format #123456. + """ + numbers = "".join(random.choices(string.digits, k=6)) + return f"#{numbers}" + + +def create_id_file(num_to_generate, output_path): + """ + Generates a specified number of IDs and saves them to a CSV file. + """ + print(f"Generating {num_to_generate} appointment IDs...") + + # Create a list of dictionaries + id_log = [ + {"text": generate_appointment_id(), "entity": "appointment_id"} + for _ in range(num_to_generate) + ] + + # Convert to DataFrame + ids_df = pd.DataFrame(id_log) + + # Ensure the directory exists + output_dir = os.path.dirname(output_path) + os.makedirs(output_dir, exist_ok=True) + + # Save to CSV + ids_df.to_csv(output_path, index=False) + print(f"✅ Successfully saved IDs to '{output_path}'") + + +# This part runs when you execute the script directly +if __name__ == "__main__": + # --- Configuration --- + NUM_IDS_TO_GENERATE = 150 + OUTPUT_FILE = os.path.join("data", "raw", "entities", "appointment_id.csv") + + create_id_file(NUM_IDS_TO_GENERATE, OUTPUT_FILE) diff --git a/data/processed/hasd_processed/dataset_dict.json b/data/processed/hasd_processed/dataset_dict.json new file mode 100644 index 0000000..c9e82c7 --- /dev/null +++ b/data/processed/hasd_processed/dataset_dict.json @@ -0,0 +1 @@ +{"splits": ["train", "validation", "test"]} diff --git a/data/processed/hasd_processed/test/data-00000-of-00001.arrow b/data/processed/hasd_processed/test/data-00000-of-00001.arrow new file mode 100644 index 0000000..7150554 Binary files /dev/null and b/data/processed/hasd_processed/test/data-00000-of-00001.arrow differ diff --git a/data/processed/hasd_processed/test/dataset_info.json b/data/processed/hasd_processed/test/dataset_info.json new file mode 100644 index 0000000..d565559 --- /dev/null +++ b/data/processed/hasd_processed/test/dataset_info.json @@ -0,0 +1,97 @@ +{ + "builder_name": "json", + "citation": "", + "config_name": "default", + "dataset_name": "json", + "dataset_size": 249489, + "description": "", + "download_checksums": { + "C:/Users/aceto/Documents/GitHub/schedulebot-plus/data/raw/train.jsonl": { + "num_bytes": 248004, + "checksum": null + }, + "C:/Users/aceto/Documents/GitHub/schedulebot-plus/data/raw/validation.jsonl": { + "num_bytes": 51624, + "checksum": null + }, + "C:/Users/aceto/Documents/GitHub/schedulebot-plus/data/raw/test.jsonl": { + "num_bytes": 52346, + "checksum": null + } + }, + "download_size": 351974, + "features": { + "input_ids": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "List" + }, + "attention_mask": { + "feature": { + "dtype": "int8", + "_type": "Value" + }, + "_type": "List" + }, + "intent_label": { + "names": [ + "bye", + "cancel", + "greeting", + "negative_reply", + "oos", + "positive_reply", + "query_avail", + "reschedule", + "schedule" + ], + "_type": "ClassLabel" + }, + "labels": { + "feature": { + "names": [ + "O", + "B-appointment_id", + "I-appointment_id", + "B-appointment_type", + "I-appointment_type", + "B-practitioner_name", + "I-practitioner_name" + ], + "_type": "ClassLabel" + }, + "_type": "List" + } + }, + "homepage": "", + "license": "", + "size_in_bytes": 601463, + "splits": { + "train": { + "name": "train", + "num_bytes": 175986, + "num_examples": 2045, + "dataset_name": "json" + }, + "validation": { + "name": "validation", + "num_bytes": 36476, + "num_examples": 438, + "dataset_name": "json" + }, + "test": { + "name": "test", + "num_bytes": 37027, + "num_examples": 439, + "dataset_name": "json" + } + }, + "version": { + "version_str": "0.0.0", + "major": 0, + "minor": 0, + "patch": 0 + } +} diff --git a/data/processed/hasd_processed/test/state.json b/data/processed/hasd_processed/test/state.json new file mode 100644 index 0000000..4a4ac5e --- /dev/null +++ b/data/processed/hasd_processed/test/state.json @@ -0,0 +1,18 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "8a7c1f454b53d81c", + "_format_columns": [ + "input_ids", + "attention_mask", + "intent_label", + "labels" + ], + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": "test" +} diff --git a/data/processed/hasd_processed/train/data-00000-of-00001.arrow b/data/processed/hasd_processed/train/data-00000-of-00001.arrow new file mode 100644 index 0000000..801e439 Binary files /dev/null and b/data/processed/hasd_processed/train/data-00000-of-00001.arrow differ diff --git a/data/processed/hasd_processed/train/dataset_info.json b/data/processed/hasd_processed/train/dataset_info.json new file mode 100644 index 0000000..d565559 --- /dev/null +++ b/data/processed/hasd_processed/train/dataset_info.json @@ -0,0 +1,97 @@ +{ + "builder_name": "json", + "citation": "", + "config_name": "default", + "dataset_name": "json", + "dataset_size": 249489, + "description": "", + "download_checksums": { + "C:/Users/aceto/Documents/GitHub/schedulebot-plus/data/raw/train.jsonl": { + "num_bytes": 248004, + "checksum": null + }, + "C:/Users/aceto/Documents/GitHub/schedulebot-plus/data/raw/validation.jsonl": { + "num_bytes": 51624, + "checksum": null + }, + "C:/Users/aceto/Documents/GitHub/schedulebot-plus/data/raw/test.jsonl": { + "num_bytes": 52346, + "checksum": null + } + }, + "download_size": 351974, + "features": { + "input_ids": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "List" + }, + "attention_mask": { + "feature": { + "dtype": "int8", + "_type": "Value" + }, + "_type": "List" + }, + "intent_label": { + "names": [ + "bye", + "cancel", + "greeting", + "negative_reply", + "oos", + "positive_reply", + "query_avail", + "reschedule", + "schedule" + ], + "_type": "ClassLabel" + }, + "labels": { + "feature": { + "names": [ + "O", + "B-appointment_id", + "I-appointment_id", + "B-appointment_type", + "I-appointment_type", + "B-practitioner_name", + "I-practitioner_name" + ], + "_type": "ClassLabel" + }, + "_type": "List" + } + }, + "homepage": "", + "license": "", + "size_in_bytes": 601463, + "splits": { + "train": { + "name": "train", + "num_bytes": 175986, + "num_examples": 2045, + "dataset_name": "json" + }, + "validation": { + "name": "validation", + "num_bytes": 36476, + "num_examples": 438, + "dataset_name": "json" + }, + "test": { + "name": "test", + "num_bytes": 37027, + "num_examples": 439, + "dataset_name": "json" + } + }, + "version": { + "version_str": "0.0.0", + "major": 0, + "minor": 0, + "patch": 0 + } +} diff --git a/data/processed/hasd_processed/train/state.json b/data/processed/hasd_processed/train/state.json new file mode 100644 index 0000000..86a4deb --- /dev/null +++ b/data/processed/hasd_processed/train/state.json @@ -0,0 +1,18 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "bbf42d4f1a796c18", + "_format_columns": [ + "input_ids", + "attention_mask", + "intent_label", + "labels" + ], + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": "train" +} diff --git a/data/processed/hasd_processed/validation/data-00000-of-00001.arrow b/data/processed/hasd_processed/validation/data-00000-of-00001.arrow new file mode 100644 index 0000000..f160b24 Binary files /dev/null and b/data/processed/hasd_processed/validation/data-00000-of-00001.arrow differ diff --git a/data/processed/hasd_processed/validation/dataset_info.json b/data/processed/hasd_processed/validation/dataset_info.json new file mode 100644 index 0000000..d565559 --- /dev/null +++ b/data/processed/hasd_processed/validation/dataset_info.json @@ -0,0 +1,97 @@ +{ + "builder_name": "json", + "citation": "", + "config_name": "default", + "dataset_name": "json", + "dataset_size": 249489, + "description": "", + "download_checksums": { + "C:/Users/aceto/Documents/GitHub/schedulebot-plus/data/raw/train.jsonl": { + "num_bytes": 248004, + "checksum": null + }, + "C:/Users/aceto/Documents/GitHub/schedulebot-plus/data/raw/validation.jsonl": { + "num_bytes": 51624, + "checksum": null + }, + "C:/Users/aceto/Documents/GitHub/schedulebot-plus/data/raw/test.jsonl": { + "num_bytes": 52346, + "checksum": null + } + }, + "download_size": 351974, + "features": { + "input_ids": { + "feature": { + "dtype": "int64", + "_type": "Value" + }, + "_type": "List" + }, + "attention_mask": { + "feature": { + "dtype": "int8", + "_type": "Value" + }, + "_type": "List" + }, + "intent_label": { + "names": [ + "bye", + "cancel", + "greeting", + "negative_reply", + "oos", + "positive_reply", + "query_avail", + "reschedule", + "schedule" + ], + "_type": "ClassLabel" + }, + "labels": { + "feature": { + "names": [ + "O", + "B-appointment_id", + "I-appointment_id", + "B-appointment_type", + "I-appointment_type", + "B-practitioner_name", + "I-practitioner_name" + ], + "_type": "ClassLabel" + }, + "_type": "List" + } + }, + "homepage": "", + "license": "", + "size_in_bytes": 601463, + "splits": { + "train": { + "name": "train", + "num_bytes": 175986, + "num_examples": 2045, + "dataset_name": "json" + }, + "validation": { + "name": "validation", + "num_bytes": 36476, + "num_examples": 438, + "dataset_name": "json" + }, + "test": { + "name": "test", + "num_bytes": 37027, + "num_examples": 439, + "dataset_name": "json" + } + }, + "version": { + "version_str": "0.0.0", + "major": 0, + "minor": 0, + "patch": 0 + } +} diff --git a/data/processed/hasd_processed/validation/state.json b/data/processed/hasd_processed/validation/state.json new file mode 100644 index 0000000..923e65b --- /dev/null +++ b/data/processed/hasd_processed/validation/state.json @@ -0,0 +1,18 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00001.arrow" + } + ], + "_fingerprint": "fce69ecf80791876", + "_format_columns": [ + "input_ids", + "attention_mask", + "intent_label", + "labels" + ], + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": "validation" +} diff --git a/data/processed/test.csv b/data/processed/test.csv deleted file mode 100644 index beb5178..0000000 --- a/data/processed/test.csv +++ /dev/null @@ -1,14685 +0,0 @@ -intent,user_utterance,origin,new_intent,label -schedule_meeting,schedule a meeting with saul,parrot,book,1 -greeting,aho,parrot,greet,4 -no,negatory,original,cancel,3 -calendar,show me what i want to do tomorrow?,parrot,avail,0 -calendar_update,"can you remove this event from my calendar, please?",original,resched,5 -how_busy,how much time will i wait to be seated in an italian restaurant?,parrot,avail,0 -goodbye,great chat goodbye,lambada,bye,2 -greeting,hey fellow,parrot,greet,4 -yes,is true,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -date,a year?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -thank_you,so grateful,parrot,bye,2 -thank_you,i appreciate your gesture,lambada,bye,2 -date,in 10 days?,parrot,avail,0 -yes,right,parrot,book,1 -goodbye,greetings,parrot,bye,2 -greeting,aho,parrot,greet,4 -greeting,hi how're things going,lambada,greet,4 -no,so that's no,parrot,cancel,3 -yes,approved,original,book,1 -yes,yes,original,book,1 -greeting,how's my doing?,parrot,greet,4 -thank_you,i have to thank you for your time,parrot,bye,2 -thank_you,i'm glad you did it for me,parrot,bye,2 -greeting,how are you treated?,parrot,greet,4 -thank_you,that's what you did,parrot,bye,2 -no,it's negative,parrot,cancel,3 -date,i need a date,parrot,avail,0 -yes,good,parrot,book,1 -yes,roger that,original,book,1 -greeting,"hello, good morning",lambada,greet,4 -calendar_update,clear my calendar for february,parrot,resched,5 -thank_you,i'm grateful,original,bye,2 -goodbye,adios!,original,bye,2 -thank_you,thanks for the cooperation,parrot,bye,2 -goodbye,i'll go,parrot,bye,2 -no,negation,parrot,cancel,3 -greeting,how is idy doing?,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -thank_you,thankyou,parrot,bye,2 -goodbye,goodbye ai,parrot,bye,2 -thank_you,thanks again!,original,bye,2 -yes,certainly true,parrot,book,1 -greeting,hola!,original,greet,4 -no,negation,parrot,cancel,3 -date,what is that day?,parrot,avail,0 -greeting,how's the ai?,parrot,greet,4 -goodbye,it's over,parrot,bye,2 -reminder_update,i need to remember,parrot,resched,5 -yes,huh,parrot,book,1 -calendar_update,clear my calendar for february,parrot,resched,5 -yes,it's true that this information is true,lambada,book,1 -schedule_meeting,please give me a meeting room between 1pm and 2pm,parrot,book,1 -goodbye,greetings,parrot,bye,2 -goodbye,"goodbye, helpful ai device!",original,bye,2 -no,that isn't right,original,cancel,3 -yes,yup,original,book,1 -no,negative,original,cancel,3 -how_busy,list the wait times for tiburon beers?,parrot,avail,0 -greeting,how're you today?,parrot,greet,4 -goodbye,nice chat today,lambada,bye,2 -goodbye,nice seeing you bye,original,bye,2 -goodbye,i'm out of here,original,bye,2 -yes,approved,original,book,1 -goodbye,i'm out,parrot,bye,2 -goodbye,i'll go,parrot,bye,2 -schedule_meeting,you can schedule a meeting with kim at 10 o'clock,parrot,book,1 -goodbye,fairwell?,parrot,bye,2 -goodbye,the talk was nice,lambada,bye,2 -thank_you,thanks a million,original,bye,2 -calendar,show me the dates in my calendar?,parrot,avail,0 -thank_you,much obliged,original,bye,2 -greeting,hey,original,greet,4 -goodbye,goodbye,original,bye,2 -thank_you,thanks again,original,bye,2 -no,naw,original,cancel,3 -date,what date?,parrot,avail,0 -yes,"yes, you got it",original,book,1 -no,but it's wrong,parrot,cancel,3 -greeting,how's ai feeling?,parrot,greet,4 -greeting,"hello, ai",original,greet,4 -no,nope,original,cancel,3 -yes,confirm,original,book,1 -goodbye,my way,parrot,bye,2 -goodbye,regards,original,bye,2 -yes,10-Apr,original,book,1 -no,not happening,original,cancel,3 -yes,"yep, that's correct",lambada,book,1 -goodbye,have fun?,lambada,bye,2 -no,the negator,parrot,cancel,3 -yes,definitely,original,book,1 -date,what's the date tomorrow,original,avail,0 -greeting,bonjour,original,greet,4 -calendar,tell me my calendar?,parrot,avail,0 -greeting,hello siri,original,greet,4 -greeting,heller,original,greet,4 -greeting,hi what's going on?,parrot,greet,4 -greeting,hi what's up?,parrot,greet,4 -yes,i know,parrot,book,1 -thank_you,thanks for helping me,original,bye,2 -greeting,how's life going?,parrot,greet,4 -cancel_reservation,delete my dinner reservation,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -yes,i guess,parrot,book,1 -yes,so it works,parrot,book,1 -thank_you,you did it,parrot,bye,2 -greeting,welcome,parrot,greet,4 -no,no?,parrot,cancel,3 -greeting,hola,original,greet,4 -meeting_schedule,when i'll meet roger?,parrot,avail,0 -date,list the next week?,parrot,avail,0 -greeting,how are you this day,original,greet,4 -yes,absolutely!,original,book,1 -greeting,hiya!,original,greet,4 -goodbye,bye!,original,bye,2 -calendar_update,a meeting of the iep on april 15th should be added to my calendar,parrot,resched,5 -goodbye,on the road,parrot,bye,2 -how_busy,should i be concerned about the wait time at kwu tei,lambada,avail,0 -yes,yup,original,book,1 -yes,that seems true,original,book,1 -yes,confirm,original,book,1 -greeting,"hi, ai",original,greet,4 -yes,affirmitive,original,book,1 -no,nothing,parrot,cancel,3 -reminder_update,set a reminder for me to sing in the morning,lambada,resched,5 -yes,certainly,parrot,book,1 -greeting,what's happened?,parrot,greet,4 -no,this is false,parrot,cancel,3 -how_busy,is there a wait at orchid?,lambada,avail,0 -greeting,yo,original,greet,4 -yes,yay,lambada,book,1 -goodbye,bye,original,bye,2 -thank_you,thanks for my answer,parrot,bye,2 -greeting,you good?,parrot,greet,4 -goodbye,goodbye thank you,parrot,bye,2 -reminder_update,create a reminder to exercise this week,parrot,resched,5 -no,is a lie?,parrot,cancel,3 -yes,affirmative,original,book,1 -yes,positive,parrot,book,1 -calendar,do i have any events on my calendar on march 2nd?,lambada,avail,0 -yes,very true,original,book,1 -yes,ya,original,book,1 -greeting,hey how's life,original,greet,4 -goodbye,great talk,lambada,bye,2 -no,nothing good,parrot,cancel,3 -meeting_schedule,when is today's meeting?,lambada,avail,0 -greeting,how does it go?,parrot,greet,4 -greeting,good morning,parrot,greet,4 -calendar,tell me what's on my calendar for march 12th?,parrot,avail,0 -goodbye,adios ai,original,bye,2 -no,no way!,original,cancel,3 -thank_you,"awesome, thanks",original,bye,2 -yes,that's right,original,book,1 -yes,ya,original,book,1 -cancel_reservation,just cancel my reservation,lambada,cancel,3 -yes,definitely,original,book,1 -yes,that's definitely true,original,book,1 -thank_you,thanks for that answer,original,bye,2 -goodbye,have fun?,lambada,bye,2 -thank_you,good looking out,original,bye,2 -date,date please,original,avail,0 -greeting,aloha,original,greet,4 -yes,and you're right,parrot,book,1 -thank_you,i appreciate the answer,parrot,bye,2 -goodbye,see ya,original,bye,2 -yes,certainly true,parrot,book,1 -no,nothing good,parrot,cancel,3 -no,no!,original,cancel,3 -how_busy,wait for us at a pizza factory out of town?,parrot,avail,0 -schedule_meeting,let me know if i can schedule a meeting,parrot,book,1 -yes,it's certainly true,parrot,book,1 -greeting,hello,original,greet,4 -yes,yes,original,book,1 -goodbye,adios,original,bye,2 -date,what's the day today,original,avail,0 -greeting,you good?,parrot,greet,4 -thank_you,you've tried,parrot,bye,2 -how_busy,how long will the wait be for oottos at 5 pm,lambada,avail,0 -goodbye,im leaving,parrot,bye,2 -yes,affirmative,original,book,1 -yes,ok,original,book,1 -thank_you,thank you?,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -yes,i vote yes,original,book,1 -yes,yes,original,book,1 -greeting,how's it going,lambada,greet,4 -thank_you,again thanks,parrot,bye,2 -goodbye,"thanks for chatting, later",original,bye,2 -how_busy,how long will it take before i can get a table at the cheese cake company?,parrot,avail,0 -yes,positive,parrot,book,1 -goodbye,talk later,original,bye,2 -how_busy,is the restaurant packed around 7?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -greeting,hello good morning,parrot,greet,4 -greeting,wassup,original,greet,4 -thank_you,i'm pleased with my answer,parrot,bye,2 -how_busy,tell me the wait time at chili's?,parrot,avail,0 -greeting,how's it hanging,original,greet,4 -thank_you,appreciated,original,bye,2 -greeting,how's ai doing today?,parrot,greet,4 -yes,perfect,parrot,book,1 -no,nada,original,cancel,3 -yes,my answer is yes,parrot,book,1 -how_busy,how busy will i be at red robin at 730?,parrot,avail,0 -yes,ya,original,book,1 -greeting,how's life,original,greet,4 -yes,"yes, that is right",original,book,1 -thank_you,merci beaucoup,original,bye,2 -goodbye,later gater,original,bye,2 -greeting,how are you doing?,parrot,greet,4 -meeting_schedule,meeting today,parrot,avail,0 -greeting,aho,parrot,greet,4 -meeting_schedule,when is my meeting with dan scheduled to start?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -goodbye,peace,original,bye,2 -thank_you,appreciate it,original,bye,2 -yes,i think you've got it,parrot,book,1 -no,not right?,parrot,cancel,3 -goodbye,cya later,original,bye,2 -yes,good yes,lambada,book,1 -yes,TRUE,original,book,1 -cancel_reservation,i have to cancel my reservation for dinner at the outback steakhouse,parrot,cancel,3 -greeting,how does ai feel?,parrot,greet,4 -no,nope,original,cancel,3 -no,nada,original,cancel,3 -yes,do that?,original,book,1 -date,in five days?,parrot,avail,0 -yes,agreed,original,book,1 -no,it's false,parrot,cancel,3 -thank_you,"good job, thanks",lambada,bye,2 -yes,affirmitive,original,book,1 -no,no that isn't right,original,cancel,3 -greeting,hello,original,greet,4 -goodbye,nice chat today,lambada,bye,2 -yes,yes,original,book,1 -goodbye,good talk,parrot,bye,2 -no,it's indeed false,parrot,cancel,3 -yes,okay,original,book,1 -how_busy,how busy will the olive garden be around five?,parrot,avail,0 -calendar,21st what's on my calendar?,parrot,avail,0 -no,not true,original,cancel,3 -no,i disagree with this,parrot,cancel,3 -no,i think it's incorrect,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -goodbye,later!,original,bye,2 -date,and what's my day today?,parrot,avail,0 -goodbye,i must catch up,parrot,bye,2 -reminder_update,"create a reminder, please",lambada,resched,5 -thank_you,thanks,original,bye,2 -goodbye,"i had a nice chat, goodbye",lambada,bye,2 -goodbye,bye bye,lambada,bye,2 -no,no please,parrot,cancel,3 -how_busy,will the wait be long at olive garden,lambada,avail,0 -thank_you,thanks for my cooperation,original,bye,2 -date,today?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -reminder_update,please remind me later,original,resched,5 -yes,okay,original,book,1 -reminder_update,remember to write later,parrot,resched,5 -goodbye,bye!,original,bye,2 -goodbye,just relax,parrot,bye,2 -greeting,bonjour,original,greet,4 -yes,you are correct,original,book,1 -reminder_update,can you add a reminder to my reminder list?,lambada,resched,5 -greeting,hey hey!,original,greet,4 -goodbye,we chatted well,parrot,bye,2 -how_busy,how many people will be seated in the restaurant at 6,parrot,avail,0 -greeting,yo how yo feelin,lambada,greet,4 -goodbye,great conversation,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -how_busy,is chili busy around 730?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -yes,that statement is really correct,lambada,book,1 -goodbye,buhbye,original,bye,2 -date,what's the date now,parrot,avail,0 -yes,confirm,original,book,1 -no,it's a wrong answer,parrot,cancel,3 -yes,it's positive,parrot,book,1 -yes,TRUE,original,book,1 -thank_you,thanks for telling me,parrot,bye,2 -yes,all right,parrot,book,1 -no,it seems not,original,cancel,3 -meeting_schedule,when's my meeting?,parrot,avail,0 -goodbye,goodbyes soon,parrot,bye,2 -greeting,are you good?,original,greet,4 -no,negation,parrot,cancel,3 -no,certainly not,original,cancel,3 -yes,this is true,lambada,book,1 -greeting,what do you feel like doing?,original,greet,4 -thank_you,much obliged,original,bye,2 -thank_you,oh sweet thanks,original,bye,2 -goodbye,fairwell,original,bye,2 -yes,TRUE,lambada,book,1 -goodbye,fairwell,original,bye,2 -no,it's no,parrot,cancel,3 -greeting,salutations!,original,greet,4 -date,today?,parrot,avail,0 -goodbye,sign off,parrot,bye,2 -greeting,hi,original,greet,4 -greeting,how're you today?,parrot,greet,4 -goodbye,very nice conversation,parrot,bye,2 -no,nope that's not true,parrot,cancel,3 -date,are you providing me with today's date?,lambada,avail,0 -date,what's my day?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -no,nothing,parrot,cancel,3 -thank_you,many thanks,original,bye,2 -goodbye,goodbye thank you,parrot,bye,2 -thank_you,"nice, excellent!",original,bye,2 -yes,positive,original,book,1 -reminder_update,remind me something,parrot,resched,5 -greeting,aho,parrot,greet,4 -no,that's a lie,parrot,cancel,3 -yes,ya,original,book,1 -goodbye,farewell,original,bye,2 -goodbye,i'm leaving,parrot,bye,2 -date,can you tell me what tomorrow's date is?,lambada,avail,0 -calendar,do i have appointments for april 1?,parrot,avail,0 -calendar,what day did you set on my calendar for the first day of school?,parrot,avail,0 -goodbye,next time we'll talk,parrot,bye,2 -yes,affirmative,original,book,1 -goodbye,my friend,parrot,bye,2 -goodbye,later,original,bye,2 -no,that's certainly false,parrot,cancel,3 -how_busy,learn about the olive garden at 730 pm,parrot,avail,0 -no,that's incorrect,original,cancel,3 -greeting,"hello, good morning",lambada,greet,4 -schedule_meeting,what should we do to schedule a meeting?,parrot,book,1 -goodbye,thanks for talking,original,bye,2 -greeting,good morning ai,parrot,greet,4 -greeting,wassup,original,greet,4 -no,that would be wrong,lambada,cancel,3 -date,today?,parrot,avail,0 -greeting,how does ai do?,parrot,greet,4 -goodbye,good conversation,parrot,bye,2 -yes,ok,original,book,1 -yes,absolutely!,original,book,1 -greeting,how are things going?,parrot,greet,4 -goodbye,later,original,bye,2 -calendar,tell me what my calendar looks like for march 12th?,original,avail,0 -yes,accept,parrot,book,1 -yes,"yes, please",parrot,book,1 -date,what's the day today?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -yes,great,original,book,1 -reminder_update,can we set a reminder?,parrot,resched,5 -cancel_reservation,stop making the reservation for me,lambada,cancel,3 -cancel_reservation,please let my saturday reservation in my favorite restaurant expire,parrot,cancel,3 -date,in 8 days?,parrot,avail,0 -yes,is true,parrot,book,1 -no,nothing,parrot,cancel,3 -yes,indeed,original,book,1 -no,no,lambada,cancel,3 -how_busy,chili's busy around 730?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -goodbye,"bye-bye, my friend",lambada,bye,2 -goodbye,talk later,original,bye,2 -goodbye,i had a great time talking with you,parrot,bye,2 -how_busy,tell me the time it will take to get a seat in a pizz,parrot,avail,0 -greeting,"hello, friend",original,greet,4 -yes,yes,original,book,1 -date,what date tomorrow?,parrot,avail,0 -yes,"yes, that's true",lambada,book,1 -no,that's totally wrong,parrot,cancel,3 -thank_you,thanks for that,original,bye,2 -goodbye,bye,original,bye,2 -no,certainly not,original,cancel,3 -no,negative definitely,parrot,cancel,3 -yes,perfect,parrot,book,1 -thank_you,i appreciate your gesture,lambada,bye,2 -how_busy,how busy is krmo at 6 pm,lambada,avail,0 -how_busy,tell me the time to wait if we want to go to the cheesecake factory?,parrot,avail,0 -goodbye,bye,original,bye,2 -yes,so it's real,parrot,book,1 -yes,yes,original,book,1 -goodbye,see ya,lambada,bye,2 -greeting,hey,original,greet,4 -schedule_meeting,can you have a meeting room set for 12 noon today?,lambada,book,1 -yes,seems true,parrot,book,1 -thank_you,many thanks,original,bye,2 -how_busy,what's the wait?,parrot,avail,0 -date,current date,original,avail,0 -goodbye,goodbye later,parrot,bye,2 -yes,i'm sure that's true,parrot,book,1 -greeting,what's happened to you?,parrot,greet,4 -goodbye,take a break,parrot,bye,2 -thank_you,you helped,parrot,bye,2 -goodbye,as regards,parrot,bye,2 -how_busy,how long do we have to wait for the restaurant?,parrot,avail,0 -no,negatory?,parrot,cancel,3 -how_busy,how busy is mc donald at 8 in the morning,original,avail,0 -goodbye,i've got to go now,lambada,bye,2 -no,naw,original,cancel,3 -goodbye,please talk soon,parrot,bye,2 -yes,TRUE,original,book,1 -yes,facts,original,book,1 -yes,affirmitive,original,book,1 -yes,not false,parrot,book,1 -greeting,how's life in my city?,parrot,greet,4 -how_busy,what is the expected wait time for a table at olive garden at 6 pm?,lambada,avail,0 -how_busy,what's the wait time for red lobster?,parrot,avail,0 -goodbye,i'll go,parrot,bye,2 -no,it's a negative,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -calendar,search my calendar for birthday parties,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -goodbye,thank you for the conversation,parrot,bye,2 -yes,facts,original,book,1 -no,is a lie?,parrot,cancel,3 -no,what isn't true?,parrot,cancel,3 -calendar,tell me what my appointment is for march 25?,parrot,avail,0 -no,negation,parrot,cancel,3 -goodbye,cya later,original,bye,2 -thank_you,thanks for that response,original,bye,2 -thank_you,you've helped,parrot,bye,2 -cancel_reservation,at dinner i don't need the table anymore,parrot,cancel,3 -yes,affirmitive,original,book,1 -yes,oh-huh,parrot,book,1 -goodbye,thanks for talking to me,original,bye,2 -no,"nope, that's false",original,cancel,3 -date,what will be tomorrow?,parrot,avail,0 -thank_you,thanks,original,bye,2 -yes,good,parrot,book,1 -calendar,what do i need to know about the march date?,parrot,avail,0 -yes,confirmed,original,book,1 -goodbye,adios,original,bye,2 -date,give me a date today?,parrot,avail,0 -date,today?,parrot,avail,0 -thank_you,thanks for everything you said,lambada,bye,2 -goodbye,bye bye now,lambada,bye,2 -yes,"yes, that's a fact",lambada,book,1 -how_busy,how busy is red robin when they open at 5,lambada,avail,0 -no,that's not right,original,cancel,3 -thank_you,thanks for helping me today,parrot,bye,2 -how_busy,wait in the restaurant right now?,parrot,avail,0 -greeting,what's new here?,parrot,greet,4 -date,give me the date tomorrow,parrot,avail,0 -yes,"yes, please",parrot,book,1 -meeting_schedule,meeting today,parrot,avail,0 -greeting,what's new?,parrot,greet,4 -goodbye,send a goodbye,lambada,bye,2 -greeting,what's new?,parrot,greet,4 -yes,perfect,parrot,book,1 -how_busy,is red lobster busy around noon?,parrot,avail,0 -yes,positive,original,book,1 -yes,all right,parrot,book,1 -goodbye,goodbye!,original,bye,2 -yes,it appears true,parrot,book,1 -goodbye,i'm going,parrot,bye,2 -greeting,how's everything,original,greet,4 -no,nothing,parrot,cancel,3 -no,that's not right?,parrot,cancel,3 -calendar,display my calendar,lambada,avail,0 -yes,ya,original,book,1 -yes,huh,parrot,book,1 -no,so that's no,parrot,cancel,3 -yes,ok,original,book,1 -yes,"affirmative, go ahead",original,book,1 -goodbye,", goodbye",lambada,bye,2 -goodbye,regards,original,bye,2 -yes,huh,parrot,book,1 -calendar_update,delete the doctor's visit for saturday,parrot,resched,5 -how_busy,tell me how busy the olive garden is at 6 am,parrot,avail,0 -goodbye,sign off,parrot,bye,2 -no,sorry but not true,parrot,cancel,3 -no,"please, no",original,cancel,3 -yes,correct,original,book,1 -meeting_schedule,will we have meetings today?,parrot,avail,0 -no,no!,original,cancel,3 -no,don't agree,parrot,cancel,3 -meeting_schedule,is my schedule clear?,parrot,avail,0 -no,naw,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -no,it's not a good sign,parrot,cancel,3 -thank_you,what a way to thank you?,lambada,bye,2 -goodbye,have fun?,lambada,bye,2 -goodbye,goodnight,original,bye,2 -no,naw,original,cancel,3 -calendar_update,i'd like to remove fishing from my calendar for soccer,parrot,resched,5 -no,negative certainly,parrot,cancel,3 -goodbye,i was really happy to chat with you,parrot,bye,2 -reminder_update,pay taxes on monday,parrot,resched,5 -goodbye,farewell,original,bye,2 -date,what today?,parrot,avail,0 -no,no good,original,cancel,3 -greeting,how's my day?,parrot,greet,4 -calendar,i need my calendar,parrot,avail,0 -greeting,"hello, what's up",original,greet,4 -meeting_schedule,meetings today,original,avail,0 -goodbye,im leaving,parrot,bye,2 -calendar,what do i have planned for january 14th?,parrot,avail,0 -reminder_update,set up a reminder to give the cat flea medication,parrot,resched,5 -goodbye,good-bye,parrot,bye,2 -goodbye,goodbye bye,parrot,bye,2 -thank_you,i'm grateful,original,bye,2 -no,that is not right,original,cancel,3 -date,what's tomorrow's date,original,avail,0 -greeting,hi,original,greet,4 -calendar,tell me what's on my calendar for march 19?,lambada,avail,0 -greeting,hello ai,parrot,greet,4 -no,FALSE,original,cancel,3 -date,what's the date,original,avail,0 -goodbye,for now,parrot,bye,2 -how_busy,how busy is olive garden at 11 pm,lambada,avail,0 -yes,TRUE,original,book,1 -yes,absolutely correct,original,book,1 -no,the statement is completely wrong,parrot,cancel,3 -meeting_schedule,what meetings do i have today between 1 pm and 3pm?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -yes,all right,parrot,book,1 -thank_you,thanks,original,bye,2 -reminder_update,please remember something,parrot,resched,5 -yes,sure,original,book,1 -thank_you,really great!,original,bye,2 -goodbye,i enjoy our chat,lambada,bye,2 -date,what's the date of tomorrow,lambada,avail,0 -greeting,hey there,original,greet,4 -how_busy,outback steakhouse at 7 pm,parrot,avail,0 -thank_you,you've tried,parrot,bye,2 -greeting,hola!,original,greet,4 -goodbye,good bye,original,bye,2 -yes,thats right,original,book,1 -meeting_schedule,talk to me about my schedule please,parrot,avail,0 -greeting,aho,parrot,greet,4 -goodbye,adios ai,original,bye,2 -yes,very true,original,book,1 -yes,accepted,original,book,1 -goodbye,greetings,parrot,bye,2 -yes,my answer is yes,parrot,book,1 -greeting,"hello, hello, hello",lambada,greet,4 -goodbye,it was nice to talk to you about this,parrot,bye,2 -yes,right,parrot,book,1 -yes,"yep, that's correct",lambada,book,1 -greeting,hiya!,original,greet,4 -yes,that statement is true,lambada,book,1 -goodbye,buhbye,original,bye,2 -greeting,heller,original,greet,4 -how_busy,how long is the wait at ihope at 6:00,lambada,avail,0 -date,what the day?,parrot,avail,0 -thank_you,good job doing what you're doing,lambada,bye,2 -how_busy,is kaya very busy at 5pm?,parrot,avail,0 -schedule_meeting,please set a meeting with john at 10 o'clock the morning,parrot,book,1 -no,ill pass,original,cancel,3 -how_busy,will the tomato garden be busy around 5pm?,parrot,avail,0 -thank_you,you helped me,parrot,bye,2 -greeting,how is my day going?,parrot,greet,4 -yes,indeed,original,book,1 -how_busy,can you tell me what the wait is at cracker barrel?,parrot,avail,0 -no,but that's not true,parrot,cancel,3 -no,that's inaccurate,original,cancel,3 -greeting,hola,original,greet,4 -thank_you,you've helped,parrot,bye,2 -yes,yup,original,book,1 -calendar,what time is it for my haircut on wednesday?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -no,that's false,original,cancel,3 -calendar,what's tuesday's calendar?,parrot,avail,0 -greeting,so how's everything going?,parrot,greet,4 -no,no it's not right,parrot,cancel,3 -yes,yes,original,book,1 -no,that's wrong,original,cancel,3 -calendar,is there anything scheduled for march 2?,parrot,avail,0 -date,tell me the date of today,parrot,avail,0 -greeting,hello,original,greet,4 -goodbye,later!,original,bye,2 -no,that's absolutely false,parrot,cancel,3 -goodbye,have fun?,lambada,bye,2 -reminder_update,remind me to write a letter?,parrot,resched,5 -yes,"yup, that's correct",lambada,book,1 -goodbye,later,original,bye,2 -how_busy,how busy is red robin around 5 pm,original,avail,0 -greeting,how's the ai?,parrot,greet,4 -greeting,are you okay??,parrot,greet,4 -goodbye,we'll talk later ai,original,bye,2 -no,nothing,parrot,cancel,3 -yes,yes please,original,book,1 -yes,sure,original,book,1 -greeting,how're you?,parrot,greet,4 -greeting,welcome,parrot,greet,4 -greeting,wassup,original,greet,4 -yes,great,original,book,1 -goodbye,i'll be on the road,parrot,bye,2 -yes,yes please,original,book,1 -greeting,wassup,original,greet,4 -thank_you,thank a bunch,original,bye,2 -goodbye,goodbye no problem,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -yes,a fact,parrot,book,1 -how_busy,can you tell me how busy the olive garden is at 7:30?,lambada,avail,0 -goodbye,i'll be on the way,parrot,bye,2 -no,negating,parrot,cancel,3 -no,negative sure,parrot,cancel,3 -greeting,wassup,original,greet,4 -no,that's not correct,original,cancel,3 -how_busy,how busy is geoff's grill at 9pm?,parrot,avail,0 -yes,good,parrot,book,1 -greeting,ai how you're doing,lambada,greet,4 -no,it's not necessarily true,parrot,cancel,3 -yes,i say yes,lambada,book,1 -goodbye,nice conversation today,parrot,bye,2 -no,naw,parrot,cancel,3 -how_busy,can you tell me how busy the olive garden is?,parrot,avail,0 -goodbye,later!,original,bye,2 -no,negative definitely,parrot,cancel,3 -yes,uh-huh,original,book,1 -thank_you,appreciated,original,bye,2 -yes,absolutely,original,book,1 -no,that's wrong,original,cancel,3 -how_busy,how busy are macaroni and cheese?,parrot,avail,0 -meeting_schedule,how much time is my meeting scheduled to last for,parrot,avail,0 -yes,TRUE,original,book,1 -yes,indeed,original,book,1 -thank_you,thanks for the response,lambada,bye,2 -yes,positive,parrot,book,1 -greeting,how're you?,parrot,greet,4 -how_busy,tell me how busy olive garden will be at 6 pm?,lambada,avail,0 -greeting,hi,original,greet,4 -thank_you,well done,parrot,bye,2 -calendar_update,remove dinner at tiffany's from my calendar on march 6,lambada,resched,5 -greeting,hiya!,original,greet,4 -yes,i believe that's true,original,book,1 -goodbye,adios,original,bye,2 -goodbye,buhbye,original,bye,2 -greeting,what's going on,original,greet,4 -yes,positive,parrot,book,1 -no,negatory?,parrot,cancel,3 -no,i prefer not to,parrot,cancel,3 -yes,i agree,original,book,1 -no,that is so false,original,cancel,3 -yes,it makes sense,parrot,book,1 -goodbye,talk later,original,bye,2 -how_busy,how many people come to the restaurant before dinner,parrot,avail,0 -thank_you,i'm grateful for the answer,parrot,bye,2 -greeting,how's it going,lambada,greet,4 -goodbye,peace,original,bye,2 -reminder_update,let me know,parrot,resched,5 -thank_you,good job thanks,parrot,bye,2 -thank_you,i'm thankful,original,bye,2 -no,that's not factual,parrot,cancel,3 -greeting,heller,original,greet,4 -greeting,hey there,original,greet,4 -schedule_meeting,how can i apply for a meeting?,parrot,book,1 -goodbye,cya later,original,bye,2 -thank_you,you're the best!,original,bye,2 -thank_you,thanks for cooperating,parrot,bye,2 -goodbye,talk to you later,original,bye,2 -greeting,how's life going?,parrot,greet,4 -no,it's the wrong answer,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,that's not going to be true,lambada,cancel,3 -how_busy,what time do you eat red lobster?,parrot,avail,0 -yes,good yes,lambada,book,1 -no,no that isn't correct,original,cancel,3 -goodbye,see ya!,original,bye,2 -yes,absolutely,original,book,1 -greeting,hey bs,lambada,greet,4 -meeting_schedule,meeting today,parrot,avail,0 -no,negating,parrot,cancel,3 -greeting,hi there alexa,original,greet,4 -meeting_schedule,when are my meetings scheduled today between noon and 1?,parrot,avail,0 -no,false sure,parrot,cancel,3 -greeting,"hello there, good morning",original,greet,4 -goodbye,tootles?,parrot,bye,2 -reminder_update,make me a reminder to listen to music tomorrow,parrot,resched,5 -reminder_update,how do you remind me to put my clothes in the dryer?,parrot,resched,5 -yes,TRUE,lambada,book,1 -date,current day,parrot,avail,0 -greeting,how ya been,original,greet,4 -thank_you,i'm grateful,original,bye,2 -date,what's my date tomorrow?,parrot,avail,0 -no,no that isn't correct,original,cancel,3 -thank_you,i'm so grateful,parrot,bye,2 -no,indeed it's false,parrot,cancel,3 -thank_you,thanks again,original,bye,2 -calendar_update,remove scott's birthday party from my calendar,parrot,resched,5 -greeting,hows it going,lambada,greet,4 -goodbye,farewell,original,bye,2 -how_busy,what's the typical time to get a table in this restaurant?,parrot,avail,0 -date,date tomorrow?,parrot,avail,0 -yes,yep,original,book,1 -yes,seems true,parrot,book,1 -cancel_reservation,get the salad cancelled,lambada,cancel,3 -no,erroneous,parrot,cancel,3 -goodbye,buhbye now,lambada,bye,2 -goodbye,see ya,lambada,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,heyo,original,greet,4 -yes,facts,original,book,1 -date,show me the date in 9 days?,parrot,avail,0 -thank_you,i appreciate it,original,bye,2 -reminder_update,set a reminder,original,resched,5 -goodbye,have a nice day?,lambada,bye,2 -yes,oh-huh,parrot,book,1 -no,not that,original,cancel,3 -no,but it's wrong,parrot,cancel,3 -goodbye,a good talk,parrot,bye,2 -date,what is today?,original,avail,0 -cancel_reservation,you can cancel my reservation for a pizza place at 4pm,parrot,cancel,3 -goodbye,bye for now,original,bye,2 -reminder_update,create a reminder,original,resched,5 -yes,perfect,parrot,book,1 -no,negative,original,cancel,3 -calendar,what appointments do i have on thursday 14?,parrot,avail,0 -yes,confirmed,original,book,1 -yes,agreed,original,book,1 -goodbye,have fun?,lambada,bye,2 -meeting_schedule,what's the time of meeting?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -thank_you,you're a big help,parrot,bye,2 -schedule_meeting,can you schedule a meeting for monday at 6pm?,parrot,book,1 -no,it's negative,parrot,cancel,3 -goodbye,thank you for talking to me,lambada,bye,2 -yes,yeap,original,book,1 -no,FALSE,lambada,cancel,3 -no,that’s actually wrong,original,cancel,3 -no,no?,parrot,cancel,3 -yes,is true,parrot,book,1 -goodbye,good talk,parrot,bye,2 -greeting,wake up ai,parrot,greet,4 -yes,good,parrot,book,1 -how_busy,how busy the restaurant is in advance?,parrot,avail,0 -yes,confirmed,original,book,1 -no,negatory,original,cancel,3 -greeting,hey,original,greet,4 -meeting_schedule,show me the meetings on my calendar today?,parrot,avail,0 -goodbye,it was nice talking to you,lambada,bye,2 -how_busy,what's the current wait time at peppermill?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -yes,i need to know that it's true,parrot,book,1 -greeting,hey,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,fairwell,original,bye,2 -calendar,what do i have on friday?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -calendar,can you check what's on my calendar for february 14?,parrot,avail,0 -goodbye,great talk,lambada,bye,2 -how_busy,how many people do you think are in chili's around 11pm,parrot,avail,0 -yes,my answer is yes,parrot,book,1 -yes,that's right,original,book,1 -how_busy,how long will the macaroni grill be for dinner?,parrot,avail,0 -calendar,check my calendar,parrot,avail,0 -goodbye,take a break,parrot,bye,2 -goodbye,bye now,original,bye,2 -yes,affirmitive,original,book,1 -date,what the day?,parrot,avail,0 -greeting,what's happened?,parrot,greet,4 -thank_you,thanks for coming,parrot,bye,2 -goodbye,i'm going,parrot,bye,2 -how_busy,how long does it take to get a table at garlic bread pizza?,parrot,avail,0 -goodbye,just relax,parrot,bye,2 -greeting,salutations!,original,greet,4 -meeting_schedule,do you have any meetings today from 5 to 7?,parrot,avail,0 -greeting,how've you been?,parrot,greet,4 -goodbye,"great talk, thanks",original,bye,2 -greeting,aho,parrot,greet,4 -schedule_meeting,please schedule a meeting?,parrot,book,1 -yes,that is affirmative,original,book,1 -greeting,how's ayi doing?,parrot,greet,4 -calendar,give me an overview of what march 23 will look like for me?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -how_busy,what time does it take to wait for a table on june 7?,parrot,avail,0 -yes,absolutely,original,book,1 -date,what day of the week are we?,parrot,avail,0 -thank_you,thanks for that information,lambada,bye,2 -greeting,what's up,original,greet,4 -goodbye,goodbye!,original,bye,2 -schedule_meeting,help me schedule a meeting with deb,lambada,book,1 -thank_you,i'm so grateful,parrot,bye,2 -no,that's totally wrong!,original,cancel,3 -goodbye,good conversation,parrot,bye,2 -calendar,tell me what i'm planning for march 19?,parrot,avail,0 -goodbye,goodbye soon,lambada,bye,2 -calendar,let me know what is showing on my calendar for the 17th of march,original,avail,0 -how_busy,how many people are in the olive garden at 7?,parrot,avail,0 -thank_you,thank you so much,original,bye,2 -reminder_update,let me remember,parrot,resched,5 -how_busy,can you tell me how many people are going to be in this restaurant?,parrot,avail,0 -greeting,"hello, friend",original,greet,4 -no,naw,original,cancel,3 -no,negatory,original,cancel,3 -greeting,hi there alexa,original,greet,4 -greeting,how's idy?,parrot,greet,4 -how_busy,how long do i have to wait at imazas,lambada,avail,0 -greeting,bonjour,original,greet,4 -no,definitely not,original,cancel,3 -yes,yup,original,book,1 -yes,is true,parrot,book,1 -yes,facts,original,book,1 -how_busy,how long will i have to wait at pizza factory,lambada,avail,0 -goodbye,goodbye,original,bye,2 -date,please tell me today's date,original,avail,0 -no,invalid,original,cancel,3 -no,that's totally wrong!,original,cancel,3 -no,not happening,original,cancel,3 -goodbye,good bye,original,bye,2 -how_busy,how busy is mr joe right now?,parrot,avail,0 -meeting_schedule,is my schedule clear?,parrot,avail,0 -thank_you,i am grateful,lambada,bye,2 -goodbye,sayonara ,parrot,bye,2 -no,would be no?,parrot,cancel,3 -thank_you,thanks!,original,bye,2 -reminder_update,remind me,original,resched,5 -yes,absolutely!,original,book,1 -thank_you,i appreciate your time,lambada,bye,2 -yes,approved,original,book,1 -thank_you,thanks a million,original,bye,2 -meeting_schedule,exactly what time is my meeting with robin scheduled for,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -yes,agreed,original,book,1 -no,not that,original,cancel,3 -calendar,can you check my calendar for the annual physical?,parrot,avail,0 -no,that's completely wrong,parrot,cancel,3 -yes,all right,parrot,book,1 -no,invalid,original,cancel,3 -how_busy,how busy is peanut's at 6 pm,lambada,avail,0 -goodbye,this was a nice chat,original,bye,2 -yes,uh-huh,original,book,1 -how_busy,waiting at cheeseburgers?,parrot,avail,0 -thank_you,did you do well?,parrot,bye,2 -cancel_reservation,cancel my reservation at odeon,lambada,cancel,3 -date,where is tomorrow's date?,parrot,avail,0 -no,that's a no,lambada,cancel,3 -date,where's tomorrow's date,parrot,avail,0 -no,that is false,original,cancel,3 -thank_you,thank you,original,bye,2 -schedule_meeting,could you schedule a meeting with steve?,parrot,book,1 -yes,correct,original,book,1 -schedule_meeting,can you sign me up for an meeting at 10am on friday?,lambada,book,1 -goodbye,fairwell,original,bye,2 -date,tell me the date of 100 days?,parrot,avail,0 -yes,roger that,original,book,1 -greeting,heyo,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -greeting,hey,original,greet,4 -schedule_meeting,can you schedule a meeting with john smith at 1 pm tomorrow? '',parrot,book,1 -thank_you,again thanks,parrot,bye,2 -schedule_meeting,see if you can arrange a meeting with don southerland tomorrow at noon,parrot,book,1 -reminder_update,remember the meeting tomorrow,parrot,resched,5 -date,current date,original,avail,0 -greeting,yo how's it going,parrot,greet,4 -goodbye,thanks for the conversation later,parrot,bye,2 -date,a year?,parrot,avail,0 -thank_you,thanks,original,bye,2 -yes,accepted,original,book,1 -yes,i want to confirm this,parrot,book,1 -greeting,salutations,parrot,greet,4 -thank_you,"awesome, thanks",original,bye,2 -greeting,bonjour,original,greet,4 -yes,huh,parrot,book,1 -yes,yeah,original,book,1 -goodbye,send a goodbye,lambada,bye,2 -thank_you,thank you for that,lambada,bye,2 -no,nay,original,cancel,3 -greeting,what's happening?,parrot,greet,4 -greeting,good evening,original,greet,4 -reminder_update,make a reminder to take my vitamins,lambada,resched,5 -no,no no thanks,parrot,cancel,3 -no,but it's totally wrong,parrot,cancel,3 -greeting,"ah-yah, how are things",lambada,greet,4 -greeting,hey hey!,original,greet,4 -reminder_update,remember to come home at 10 tomorrow,parrot,resched,5 -thank_you,thanks again!,original,bye,2 -thank_you,okay thank you,parrot,bye,2 -no,no,lambada,cancel,3 -goodbye,bye bye,lambada,bye,2 -how_busy,how long do we have to wait at the restaurant,original,avail,0 -how_busy,i want to know how busy cheesecake factory is at 4,lambada,avail,0 -no,that's very negative,parrot,cancel,3 -date,now what's it like now?,parrot,avail,0 -yes,yeah,original,book,1 -goodbye,"thanks for chatting, bye",lambada,bye,2 -greeting,aho,parrot,greet,4 -yes,just right,parrot,book,1 -greeting,salutations,parrot,greet,4 -greeting,hola,original,greet,4 -greeting,how's ai feeling?,parrot,greet,4 -greeting,hello there!,original,greet,4 -goodbye,peace out,original,bye,2 -no,that’s incorrect,original,cancel,3 -no,no?,parrot,cancel,3 -yes,accept,parrot,book,1 -reminder_update,tell me later to call bill?,original,resched,5 -no,is a lie?,parrot,cancel,3 -goodbye,was nice to talk to you,parrot,bye,2 -no,nope,original,cancel,3 -schedule_meeting,is there a room available between 11 and 12 o'clock?,parrot,book,1 -goodbye,for now,parrot,bye,2 -yes,"yeah, that's how it is",original,book,1 -goodbye,bye-bye,original,bye,2 -yes,accept,parrot,book,1 -greeting,are you okay??,parrot,greet,4 -calendar,tell me what is showing on my calendar for april 17?,lambada,avail,0 -no,ill pass,original,cancel,3 -greeting,hi ai,original,greet,4 -how_busy,how long will it take to get seated at applebees,lambada,avail,0 -greeting,hey yai,lambada,greet,4 -date,wednesday friday or saturday?,parrot,avail,0 -yes,sure,original,book,1 -meeting_schedule,how many meetings do i have between 10 and 3 scheduled?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -no,negating,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -reminder_update,create a reminder,original,resched,5 -greeting,hello,original,greet,4 -yes,right,parrot,book,1 -how_busy,how busy will i be at 7pm?,parrot,avail,0 -goodbye,signing off,original,bye,2 -greeting,how's otc?,parrot,greet,4 -goodbye,farewell!,original,bye,2 -greeting,how's life going?,parrot,greet,4 -goodbye,"no problem, take it easy",lambada,bye,2 -how_busy,how long does it take for a pizza in california?,parrot,avail,0 -goodbye,adios,original,bye,2 -yes,good,parrot,book,1 -yes,sure,original,book,1 -calendar,check out my calendar for events on march 11th?,parrot,avail,0 -no,negative sure,parrot,cancel,3 -goodbye,cya later,original,bye,2 -greeting,hello ai,parrot,greet,4 -goodbye,tootles?,parrot,bye,2 -thank_you,thank you ai,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -thank_you,appreciate it,original,bye,2 -yes,sure,original,book,1 -how_busy,should i be concerned about the wait time at kwu tei?,parrot,avail,0 -greeting,how's life,original,greet,4 -cancel_reservation,delete my dinner reservation,parrot,cancel,3 -goodbye,goodbye soon,lambada,bye,2 -goodbye,good luck,lambada,bye,2 -reminder_update,remind me tommorow at 3pm i have a doctors appointment,original,resched,5 -no,no it's not correct,parrot,cancel,3 -calendar_update,i have to delete fishing from my calendar for soccer,parrot,resched,5 -yes,yay,lambada,book,1 -yes,that's a sure yes,parrot,book,1 -yes,ya,original,book,1 -no,"no, that's wrong",original,cancel,3 -how_busy,how long does it take to get a table at the red lobster?,parrot,avail,0 -goodbye,it's over,parrot,bye,2 -no,naw,original,cancel,3 -yes,"yes, that's true",lambada,book,1 -no,negative,original,cancel,3 -yes,"true, most definitely",original,book,1 -reminder_update,please keep the reminder to put my clothes in the dryer,parrot,resched,5 -no,nay,original,cancel,3 -goodbye,goodbye now,parrot,bye,2 -yes,agreed,original,book,1 -calendar_update,remove my meeting with laurie from my calendar,parrot,resched,5 -goodbye,goodbye,original,bye,2 -yes,agreed,original,book,1 -date,tell me the year?,parrot,avail,0 -date,today?,parrot,avail,0 -calendar,where can i look for dates on my calendar for march 4th?,parrot,avail,0 -no,negating,parrot,cancel,3 -no,that would be false,original,cancel,3 -how_busy,wait how long?,parrot,avail,0 -no,not good idea,parrot,cancel,3 -how_busy,how busy is tia around 6?,parrot,avail,0 -greeting,bonjour,original,greet,4 -yes,ok,original,book,1 -goodbye,as regards,parrot,bye,2 -yes,that is true,lambada,book,1 -date,what's tomorrow's date,original,avail,0 -goodbye,peace,original,bye,2 -no,erroneous,parrot,cancel,3 -how_busy,how busy are macaroni and cheese?,parrot,avail,0 -yes,agreed,original,book,1 -yes,is true,parrot,book,1 -goodbye,fairwell,original,bye,2 -yes,approved,original,book,1 -yes,certainly true,parrot,book,1 -goodbye,see ya,lambada,bye,2 -how_busy,how long should i wait to sit in a red rooster?,parrot,avail,0 -meeting_schedule,can you tell me the time of my meeting with stacy?,parrot,avail,0 -meeting_schedule,what are my meetings today?,original,avail,0 -reminder_update,keep checking the steak?,parrot,resched,5 -yes,obviously,parrot,book,1 -meeting_schedule,i want to know if i have a meeting with jackson,parrot,avail,0 -reminder_update,need to create a reminder about paying taxes,parrot,resched,5 -no,negatory?,parrot,cancel,3 -no,don't agree,parrot,cancel,3 -meeting_schedule,are we supposed to meet today between 7 and 9?,parrot,avail,0 -goodbye,and then goodbye,parrot,bye,2 -goodbye,bye now,original,bye,2 -goodbye,goodbye thank you,parrot,bye,2 -goodbye,farewell,original,bye,2 -greeting,wake up ai,parrot,greet,4 -goodbye,see ya,original,bye,2 -yes,it'll be yes,parrot,book,1 -date,today?,parrot,avail,0 -greeting,hi how are you?,parrot,greet,4 -how_busy,how long is the wait time at chili right now?,parrot,avail,0 -no,that is overwhelmingly false,original,cancel,3 -how_busy,does ihop have a lot of business around 7 am?,original,avail,0 -cancel_reservation,please cancel my lunch reservation,lambada,cancel,3 -greeting,heller,original,greet,4 -how_busy,is mcdonalds busy?,parrot,avail,0 -thank_you,thanks for all of the information you provided,lambada,bye,2 -greeting,how you are,original,greet,4 -thank_you,thank you?,parrot,bye,2 -goodbye,later!,original,bye,2 -goodbye,bye!,original,bye,2 -goodbye,see ya,lambada,bye,2 -thank_you,thanks for helping me,original,bye,2 -thank_you,i'm thankful,original,bye,2 -no,i think it's not possible,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -how_busy,how long will there be for ihop parking at 6,lambada,avail,0 -greeting,well hello,original,greet,4 -goodbye,bye,original,bye,2 -how_busy,how busy is chili dog at 5pm,lambada,avail,0 -yes,it'd be great,parrot,book,1 -greeting,bonjour,original,greet,4 -goodbye,goodbyes,parrot,bye,2 -thank_you,thanks please,original,bye,2 -date,i have to know what the date is,parrot,avail,0 -calendar,if i want to see the calendar for february 24th,parrot,avail,0 -thank_you,thank you for my payment,parrot,bye,2 -thank_you,thanks for answering that,lambada,bye,2 -how_busy,how long is the wait time for a table at red lobster,parrot,avail,0 -cancel_reservation,i need you to cancel my reservation for smith's at 615,parrot,cancel,3 -goodbye,i must catch up,parrot,bye,2 -no,not necessarily true,parrot,cancel,3 -no,thanks no,parrot,cancel,3 -yes,yeap,original,book,1 -goodbye,adios,original,bye,2 -how_busy,how long does it take to sit in carrabas,parrot,avail,0 -greeting,hey fellow,parrot,greet,4 -how_busy,is ihop busy around 7 am?,lambada,avail,0 -how_busy,i know how busy the olive garden is around 7,parrot,avail,0 -yes,let's do that,parrot,book,1 -yes,let's do it,parrot,book,1 -yes,exactly right,original,book,1 -yes,"correct, it is affirmative",original,book,1 -how_busy,how long will i have to wait for a table in the cheesecake factory?,parrot,avail,0 -greeting,hi,original,greet,4 -how_busy,what time should i expect in this restaurant?,parrot,avail,0 -schedule_meeting,mae and i have to schedule a meeting,parrot,book,1 -thank_you,you've been great,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -greeting,are you okay now?,parrot,greet,4 -calendar_update,remove all events from my calendar on march 12,parrot,resched,5 -no,no good,original,cancel,3 -how_busy,do you know how busy a cheese steak house is at 7?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -yes,so it's real,parrot,book,1 -date,is today monday?,original,avail,0 -thank_you,thank you,original,bye,2 -goodbye,thank you goodbye,original,bye,2 -reminder_update,but i need to remember,parrot,resched,5 -goodbye,afterward,parrot,bye,2 -no,naw,parrot,cancel,3 -goodbye,bye now,original,bye,2 -no,FALSE,original,cancel,3 -goodbye,tootles,original,bye,2 -no,that's no,parrot,cancel,3 -yes,positive,parrot,book,1 -yes,all right,original,book,1 -no,and i'm sorry,parrot,cancel,3 -no,that's no,parrot,cancel,3 -no,no!,original,cancel,3 -yes,absolutely,original,book,1 -how_busy,what's the average wait time at chris brown's steakhouse?,parrot,avail,0 -how_busy,is there a long wait for the red lobster?,parrot,avail,0 -goodbye,good speaking to you,original,bye,2 -yes,positive,original,book,1 -date,current day,parrot,avail,0 -greeting,let me know how things are going,parrot,greet,4 -yes,accepted,original,book,1 -no,not right so,parrot,cancel,3 -calendar,what's on my calendar for march 11th?,parrot,avail,0 -yes,yeah,original,book,1 -greeting,wassup,original,greet,4 -cancel_reservation,my reservation for dinner at the outback steakhouse needs to be cancelled,parrot,cancel,3 -calendar,display my calendar,lambada,avail,0 -calendar,is there anything on my calendar for october 14th?,parrot,avail,0 -thank_you,thank you kindly,original,bye,2 -yes,you're right,original,book,1 -greeting,what's happening,original,greet,4 -date,tell me what's the day?,parrot,avail,0 -goodbye,good luck,lambada,bye,2 -date,which date is next?,parrot,avail,0 -schedule_meeting,please reserve a meeting room for john on tuesday,lambada,book,1 -goodbye,i'll see you later,lambada,bye,2 -no,but it's totally wrong,parrot,cancel,3 -yes,great,original,book,1 -greeting,how's ai doing?,parrot,greet,4 -yes,it also makes sense,parrot,book,1 -yes,perfect,parrot,book,1 -how_busy,how long will the wait be at ihop,lambada,avail,0 -how_busy,how busy is red robin at 5:30,lambada,avail,0 -schedule_meeting,need a meeting room,parrot,book,1 -goodbye,goodbye for now,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -greeting,salutations!,original,greet,4 -no,please no,parrot,cancel,3 -meeting_schedule,how many meetings are in my schedule?,parrot,avail,0 -how_busy,how long will i have to wait at chili's at 7pm,lambada,avail,0 -greeting,well hi there,original,greet,4 -thank_you,nice,parrot,bye,2 -cancel_reservation,something came up so i have to cancel my reservation now,parrot,cancel,3 -how_busy,how long will the restaurant last before we go?,parrot,avail,0 -greeting,hello,original,greet,4 -date,a year?,parrot,avail,0 -yes,i'm sure that's true,parrot,book,1 -meeting_schedule,how many meetings do you have between noon and 5 pm?,parrot,avail,0 -reminder_update,i'd like to remind myself to eat at the office,parrot,resched,5 -yes,obviously,parrot,book,1 -thank_you,i'm glad you responded,parrot,bye,2 -yes,obviously,parrot,book,1 -yes,yeap,original,book,1 -how_busy,how busy is mcs at 6 pm,lambada,avail,0 -yes,just right,parrot,book,1 -no,that's completely false,original,cancel,3 -no,"no, definitely not",original,cancel,3 -no,the information is false,parrot,cancel,3 -yes,positive,original,book,1 -calendar,what's on my schedule for march 2nd,lambada,avail,0 -greeting,hi,original,greet,4 -goodbye,my friend,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -goodbye,fairwell?,parrot,bye,2 -no,that's untrue,parrot,cancel,3 -yes,TRUE,original,book,1 -calendar,read my calendar,parrot,avail,0 -greeting,how's the ayi?,parrot,greet,4 -goodbye,afterward,parrot,bye,2 -how_busy,how long will the wait at mcdonalds be?,parrot,avail,0 -calendar_update,is there any way to cancel the event on 17 may?,parrot,resched,5 -goodbye,later!,original,bye,2 -yes,indeed,parrot,book,1 -no,hell nah,original,cancel,3 -meeting_schedule,do i have to meet the development team?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -date,let me know what the date is today,lambada,avail,0 -calendar,please tell me what may 1 will be like according to my calendar?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -goodbye,bye my friend,parrot,bye,2 -date,which date is it,lambada,avail,0 -yes,absolutely correct,original,book,1 -yes,accept,parrot,book,1 -yes,certainly true,parrot,book,1 -no,it's negative,parrot,cancel,3 -date,is it monday?,parrot,avail,0 -how_busy,how long before dinner,parrot,avail,0 -thank_you,i'm so grateful,parrot,bye,2 -calendar,what is the tuesday calendar?,parrot,avail,0 -goodbye,adios!,original,bye,2 -greeting,salutation,parrot,greet,4 -date,what's the name of the day today,original,avail,0 -yes,ya,original,book,1 -yes,affirmitive,original,book,1 -goodbye,adios,original,bye,2 -goodbye,fairwell,original,bye,2 -yes,you got it,original,book,1 -yes,yay,lambada,book,1 -goodbye,later!,original,bye,2 -yes,definitely yes,parrot,book,1 -thank_you,thanks for responding,parrot,bye,2 -yes,right,parrot,book,1 -goodbye,thanks for chatting,lambada,bye,2 -greeting,"hello, ai",original,greet,4 -thank_you,you did a good job thank you,original,bye,2 -greeting,"hello, friend",original,greet,4 -goodbye,but it was a good chat,parrot,bye,2 -no,not right,parrot,cancel,3 -thank_you,and i'm grateful for the answer,parrot,bye,2 -date,what year?,parrot,avail,0 -no,not correct,parrot,cancel,3 -goodbye,good talk,parrot,bye,2 -goodbye,thanks goodbye,parrot,bye,2 -thank_you,this answer was very helpful,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -date,in five days?,parrot,avail,0 -no,that's untrue,parrot,cancel,3 -goodbye,farewell,original,bye,2 -how_busy,how long is the wait time for a table in the olive gardens,parrot,avail,0 -greeting,good day,original,greet,4 -thank_you,it pleased me,parrot,bye,2 -greeting,aloha,original,greet,4 -yes,absolutely,original,book,1 -yes,that is really true,lambada,book,1 -meeting_schedule,meeting today,parrot,avail,0 -cancel_reservation,should i cancel my reservation or just cancel it?,parrot,cancel,3 -goodbye,glad we talked,parrot,bye,2 -yes,let's do it,parrot,book,1 -reminder_update,can you set up a reminder to pay the bills?,lambada,resched,5 -how_busy,how long will it take to be seated at the grocer?,parrot,avail,0 -yes,perfect,parrot,book,1 -calendar,did i make an appointment on my calendar?,parrot,avail,0 -calendar,what's my schedule for october 14?,parrot,avail,0 -greeting,bonjour,original,greet,4 -greeting,hi,original,greet,4 -reminder_update,set a reminder for monday pay taxes,original,resched,5 -calendar,what's my schedule for march 2,lambada,avail,0 -goodbye,i’m leaving-goodbye!,original,bye,2 -goodbye,nice talk,lambada,bye,2 -thank_you,good to look at,parrot,bye,2 -no,don't like that,parrot,cancel,3 -calendar,what's on my calendar for march 18th?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -thank_you,thanks very much for your answer,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -schedule_meeting,how do i get a meeting scheduled for a meeting?,parrot,book,1 -greeting,hola!,original,greet,4 -greeting,ahoy hoy,original,greet,4 -no,that's so negative,parrot,cancel,3 -goodbye,regards,original,bye,2 -thank_you,you answered my questions right,parrot,bye,2 -greeting,hello ai,parrot,greet,4 -goodbye,tootles?,parrot,bye,2 -no,no that's a lie,parrot,cancel,3 -goodbye,we chatted well,parrot,bye,2 -yes,indeed,original,book,1 -reminder_update,remind me to check the steak,original,resched,5 -thank_you,so grateful,parrot,bye,2 -no,it's a false,lambada,cancel,3 -calendar,please help me find my march schedule,parrot,avail,0 -how_busy,is it busy at the cheesecake factory at 8pm?,parrot,avail,0 -thank_you,thank you for answering,parrot,bye,2 -no,please disagree,lambada,cancel,3 -yes,i know it is true,parrot,book,1 -no,i disagree,parrot,cancel,3 -how_busy,how long will the wait at the outback steakhouse be?,parrot,avail,0 -yes,ok,original,book,1 -greeting,hey yai,lambada,greet,4 -goodbye,tootles?,parrot,bye,2 -yes,"yes, please",original,book,1 -thank_you,thanks for trying,original,bye,2 -yes,yeah yeah,lambada,book,1 -yes,agreed,original,book,1 -yes,it's a fact,parrot,book,1 -greeting,whats up?,parrot,greet,4 -no,that's so false,parrot,cancel,3 -no,no?,parrot,cancel,3 -goodbye,i want to see you after that,lambada,bye,2 -schedule_meeting,i need a meeting booked on friday at 4pm,lambada,book,1 -no,i prefer not to,parrot,cancel,3 -yes,i'm going to tell you tes,parrot,book,1 -greeting,how're you doing,original,greet,4 -greeting,hello,original,greet,4 -no,not good idea,parrot,cancel,3 -yes,obviously,parrot,book,1 -yes,that's true,original,book,1 -thank_you,okay thank you,parrot,bye,2 -greeting,how's the world?,parrot,greet,4 -goodbye,tootles,original,bye,2 -thank_you,gracias,original,bye,2 -yes,huh huh,parrot,book,1 -yes,not a falsehood,parrot,book,1 -greeting,well hello,original,greet,4 -how_busy,will iman be busy around 7pm?,parrot,avail,0 -cancel_reservation,i need to cancel my reservation for one at red robin,lambada,cancel,3 -no,that's not true,original,cancel,3 -thank_you,gracias,original,bye,2 -yes,"yes, please",original,book,1 -yes,it's true,original,book,1 -greeting,hello there!,original,greet,4 -goodbye,afterward,parrot,bye,2 -goodbye,regards,original,bye,2 -no,negatory?,parrot,cancel,3 -yes,yeap,original,book,1 -no,that seems wrong,lambada,cancel,3 -greeting,salutations!,original,greet,4 -goodbye,the hell i'm out,parrot,bye,2 -how_busy,how busy is michael around 5pm?,parrot,avail,0 -how_busy,what's the wait?,parrot,avail,0 -cancel_reservation,i have to cancel my reservation after all,original,cancel,3 -no,naw,parrot,cancel,3 -date,what is today?,original,avail,0 -yes,absolutely!,original,book,1 -greeting,what's happening,original,greet,4 -schedule_meeting,can you please set up a meeting room?,lambada,book,1 -how_busy,how busy is mr joe?,parrot,avail,0 -calendar_update,i must set a date for the lab tomorrow,parrot,resched,5 -goodbye,thanks for the conversation,parrot,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -meeting_schedule,what times are my meetings?,original,avail,0 -no,not right?,parrot,cancel,3 -thank_you,the best,parrot,bye,2 -no,i'm afraid not,parrot,cancel,3 -thank_you,thanks for coming,parrot,bye,2 -goodbye,farewell,original,bye,2 -yes,yeap,original,book,1 -no,negation,parrot,cancel,3 -calendar,what's tuesday's calendar?,parrot,avail,0 -yes,huh,parrot,book,1 -goodbye,i enjoy our chat,lambada,bye,2 -no,negatory,original,cancel,3 -goodbye,tootles?,parrot,bye,2 -thank_you,you're welcome,parrot,bye,2 -how_busy,is ihop busy around 6 o'clock?,parrot,avail,0 -thank_you,gracias,original,bye,2 -yes,and you're right,parrot,book,1 -how_busy,does this restaurant get crowded at night?,lambada,avail,0 -yes,"yes, that's confirmed",original,book,1 -thank_you,i'm happy you've helped me,parrot,bye,2 -how_busy,when is the restaurant busiest around 11 o'clock in the morning?,parrot,avail,0 -yes,yeah,original,book,1 -no,the statement is not true,parrot,cancel,3 -how_busy,how busy will the olive garden be at 7 o'clock?,parrot,avail,0 -thank_you,and i'm grateful,parrot,bye,2 -no,that's false,original,cancel,3 -thank_you,nice,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -yes,"yes, this is true",original,book,1 -greeting,yo,original,greet,4 -goodbye,bye bye,lambada,bye,2 -thank_you,thanks so much!,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -thank_you,i am thankful,lambada,bye,2 -cancel_reservation,can i cancel my reservation for 4 nights at red robin?,parrot,cancel,3 -greeting,heller,original,greet,4 -no,i mean no,parrot,cancel,3 -calendar_update,delete events like joe's wedding from my calendar,lambada,resched,5 -goodbye,catch you around,original,bye,2 -no,negating,parrot,cancel,3 -thank_you,thanks a lot,original,bye,2 -no,false for sure,original,cancel,3 -goodbye,goodbye,original,bye,2 -greeting,hi,original,greet,4 -schedule_meeting,create a meeting room for 11am,lambada,book,1 -calendar,can you give me the calendar for march 30?,parrot,avail,0 -yes,that's right,original,book,1 -meeting_schedule,check my meeting time with dr sarah,lambada,avail,0 -yes,and you're right,parrot,book,1 -schedule_meeting,i have to schedule a meeting with ken at 9 am,parrot,book,1 -goodbye,bye now,original,bye,2 -calendar,what's tuesday's calendar?,parrot,avail,0 -greeting,heyo,original,greet,4 -yes,sure,original,book,1 -date,when will it be 10 days from now?,lambada,avail,0 -date,what's the next week?,parrot,avail,0 -yes,good,parrot,book,1 -calendar,what is my schedule for march 3rd?,lambada,avail,0 -no,erroneous,parrot,cancel,3 -no,negatory,original,cancel,3 -greeting,how's it going now?,parrot,greet,4 -no,nothing,parrot,cancel,3 -thank_you,thanks for the response,lambada,bye,2 -no,so that's no,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -thank_you,so grateful,parrot,bye,2 -greeting,"hello, ai",original,greet,4 -yes,i think you've got it,parrot,book,1 -date,which date today?,parrot,avail,0 -reminder_update,not to forget to call my mom,parrot,resched,5 -goodbye,later,original,bye,2 -calendar,what's on my calendar for march 18,parrot,avail,0 -how_busy,how long will it take to sit in the olive garden?,parrot,avail,0 -yes,absolutely!,original,book,1 -how_busy,how busy is the meal at the red lobster tonight?,parrot,avail,0 -yes,that is true,original,book,1 -how_busy,how long will the wait be for a table at chipotle beef at 5,lambada,avail,0 -goodbye,i’m leaving-goodbye!,original,bye,2 -goodbye,bye bye,lambada,bye,2 -no,the negator,parrot,cancel,3 -yes,not a falsehood,parrot,book,1 -yes,TRUE,lambada,book,1 -yes,and you're correct,parrot,book,1 -goodbye,goodbye now,parrot,bye,2 -no,that's a false,lambada,cancel,3 -goodbye,later good luck,parrot,bye,2 -goodbye,maybe next time,parrot,bye,2 -calendar,read my calendar,parrot,avail,0 -no,not a good idea,parrot,cancel,3 -greeting,how's life?,parrot,greet,4 -greeting,hey bs,lambada,greet,4 -goodbye,nice drive by,lambada,bye,2 -no,please no,parrot,cancel,3 -meeting_schedule,at what time is my meeting schedule for today,lambada,avail,0 -greeting,hello how's the situation?,parrot,greet,4 -greeting,heyo,original,greet,4 -thank_you,so grateful,parrot,bye,2 -how_busy,what will it take to get a seat at chili's at 6 pm?,parrot,avail,0 -date,i need to know what tomorrow's date is,lambada,avail,0 -no,nada,original,cancel,3 -greeting,hey how's my day?,parrot,greet,4 -goodbye,was nice to see you,parrot,bye,2 -goodbye,signing off,original,bye,2 -yes,say yes,lambada,book,1 -greeting,hola!,original,greet,4 -how_busy,how long will i have to wait for dinner at red lobster,parrot,avail,0 -yes,agreed,original,book,1 -how_busy,what's the wait?,parrot,avail,0 -calendar_update,delete the birthday party from my calendar,parrot,resched,5 -yes,"yes, please",original,book,1 -yes,say yes,lambada,book,1 -yes,i think it's right,parrot,book,1 -schedule_meeting,make me a schedule for my meeting with jim at 3pm,parrot,book,1 -reminder_update,set a reminder for later,original,resched,5 -yes,good,parrot,book,1 -yes,yeah yeah,lambada,book,1 -goodbye,it's over,parrot,bye,2 -yes,thats right,original,book,1 -cancel_reservation,i have to cancel my reservation right now,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -reminder_update,set a reminder,original,resched,5 -goodbye,later!,original,bye,2 -date,what today?,parrot,avail,0 -yes,yay,lambada,book,1 -no,"no, it's not",lambada,cancel,3 -goodbye,talk later,original,bye,2 -greeting,how's everything,original,greet,4 -goodbye,thanks bye bye!,original,bye,2 -yes,yeap,original,book,1 -greeting,how's idy?,parrot,greet,4 -yes,it's definitely positive,parrot,book,1 -calendar,remind me of the date of the event called 'anniversary dinner,original,avail,0 -date,what's the next month?,parrot,avail,0 -greeting,hola!,original,greet,4 -calendar,can you tell me when i added the meeting on my calendar?,parrot,avail,0 -no,absolutely not,original,cancel,3 -goodbye,good luck,lambada,bye,2 -greeting,how's it going my friend?,parrot,greet,4 -greeting,hello bs,parrot,greet,4 -yes,confirm,original,book,1 -no,nope,original,cancel,3 -meeting_schedule,time for today's meeting?,parrot,avail,0 -goodbye,goodbye soon,lambada,bye,2 -yes,agreed,original,book,1 -no,"no, that's not correct",lambada,cancel,3 -thank_you,thank you?,parrot,bye,2 -greeting,how're you?,parrot,greet,4 -goodbye,buhbye,original,bye,2 -yes,it'll be yes,parrot,book,1 -yes,yeah yeah,lambada,book,1 -how_busy,how long will it take me to be seated at olive garden,lambada,avail,0 -date,please give me the date for today,parrot,avail,0 -greeting,how's life,original,greet,4 -no,i think that's false,original,cancel,3 -yes,uh-huh,original,book,1 -yes,confirmed,original,book,1 -date,what date?,parrot,avail,0 -no,does that mean that what you said is false?,parrot,cancel,3 -no,and it's very false,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -no,negative certainly,parrot,cancel,3 -thank_you,you've helped,parrot,bye,2 -greeting,hola,original,greet,4 -no,negatory?,parrot,cancel,3 -no,most definitely false,parrot,cancel,3 -yes,i believe that is true,lambada,book,1 -no,i'll pass,original,cancel,3 -thank_you,thank you for making my life easier,parrot,bye,2 -yes,huh,parrot,book,1 -no,FALSE,lambada,cancel,3 -yes,yes you are,original,book,1 -reminder_update,make me remember to request a break,parrot,resched,5 -meeting_schedule,time of meeting?,parrot,avail,0 -schedule_meeting,help me schedule a meeting,original,book,1 -no,nay,original,cancel,3 -thank_you,gracias,original,bye,2 -no,the negator,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -thank_you,merci beaucoup,original,bye,2 -cancel_reservation,no longer need for reservation,parrot,cancel,3 -yes,yes,original,book,1 -reminder_update,i want a reminder,lambada,resched,5 -no,that's a no,lambada,cancel,3 -thank_you,well done,parrot,bye,2 -goodbye,good call,parrot,bye,2 -no,it's false,parrot,cancel,3 -yes,huh,parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how long is the restaurant sitting,lambada,avail,0 -goodbye,goodbye!,original,bye,2 -no,negating,parrot,cancel,3 -meeting_schedule,what's my meeting schedule for this day?,parrot,avail,0 -no,i prefer not to,parrot,cancel,3 -goodbye,tootles,original,bye,2 -calendar,if i have an appointment on march 17 let me know,parrot,avail,0 -yes,sure thing,original,book,1 -calendar,what's my schedule for march 30?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -goodbye,adios!,original,bye,2 -greeting,hey what's up,original,greet,4 -goodbye,sayonara,original,bye,2 -reminder_update,set a reminder to wash dishes,lambada,resched,5 -goodbye,i'm outta here!,original,bye,2 -goodbye,bye bye,lambada,bye,2 -calendar,do i have anything on my calendar for next sunday?,parrot,avail,0 -goodbye,come on soon,parrot,bye,2 -yes,yes,original,book,1 -thank_you,nice,parrot,bye,2 -greeting,whats new,lambada,greet,4 -thank_you,you did a good job,lambada,bye,2 -yes,TRUE,lambada,book,1 -goodbye,goodnight,original,bye,2 -calendar,if there are any march schedules for me let me know,parrot,avail,0 -calendar,what's the schedule for tomorrow?,parrot,avail,0 -yes,yes please,original,book,1 -goodbye,"that's all, bye",original,bye,2 -thank_you,appreciated,original,bye,2 -goodbye,lovely conversation,parrot,bye,2 -yes,it's logical,parrot,book,1 -cancel_reservation,please unreserve that table,original,cancel,3 -no,say negative,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -how_busy,list the wait times for tiburon beers at 5pm?,parrot,avail,0 -meeting_schedule,do you have any meetings from 2 to 5 pm today?,lambada,avail,0 -goodbye,bye bye,lambada,bye,2 -no,it is false,original,cancel,3 -yes,certainly true,parrot,book,1 -how_busy,how busy is the canadian grill at 6pm,lambada,avail,0 -no,that is no longer valid,lambada,cancel,3 -greeting,i need to know what you're doing,parrot,greet,4 -yes,"correct, that's true",original,book,1 -calendar,what event is in my calendar for 12232019?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -goodbye,go easy,parrot,bye,2 -greeting,how's life going?,parrot,greet,4 -yes,obviously,parrot,book,1 -calendar,tell me what's on the agenda?,lambada,avail,0 -reminder_update,please do not forget,parrot,resched,5 -reminder_update,keep checking the steak,parrot,resched,5 -yes,right,parrot,book,1 -goodbye,i'll leave,parrot,bye,2 -greeting,how've you been?,parrot,greet,4 -goodbye,later!,original,bye,2 -how_busy,can i see what the wait will be at chili's around 7 pm?,lambada,avail,0 -goodbye,bye!,original,bye,2 -reminder_update,i need to be notified to clean up the room,parrot,resched,5 -yes,confirmed,original,book,1 -yes,affirmitive,original,book,1 -how_busy,outback steakhouse at 6pm,parrot,avail,0 -how_busy,how busy is that restaurant at 8:30,lambada,avail,0 -meeting_schedule,tell me when my meeting with peter is scheduled,parrot,avail,0 -how_busy,how busy is the cheesecake factory at 5?,parrot,avail,0 -yes,indeed,original,book,1 -cancel_reservation,i booked chris at tony's please cancel it,parrot,cancel,3 -goodbye,regards,original,bye,2 -no,that's absolutely false,parrot,cancel,3 -no,it's a false,lambada,cancel,3 -schedule_meeting,the meeting must be scheduled,parrot,book,1 -goodbye,peace,original,bye,2 -greeting,heller,original,greet,4 -no,erroneous,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -yes,my answer is yes,parrot,book,1 -cancel_reservation,delete my dinner reservation,parrot,cancel,3 -goodbye,peace,original,bye,2 -greeting,what's new here?,parrot,greet,4 -how_busy,tell me the time to wait for a table in the pizza shop?,parrot,avail,0 -no,i'd say it's a false claim,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,thanks!,original,bye,2 -greeting,salutation,parrot,greet,4 -goodbye,goodnight,original,bye,2 -cancel_reservation,remove my reservation at outback for timmy,original,cancel,3 -greeting,how things go?,parrot,greet,4 -date,give me the date tomorrow,parrot,avail,0 -goodbye,i'll leave now,parrot,bye,2 -thank_you,thanks for helping,original,bye,2 -how_busy,list the wait times for mr joes pizza?,parrot,avail,0 -yes,affirmative,original,book,1 -yes,obviously,parrot,book,1 -no,please disagree,lambada,cancel,3 -calendar,tell me my calendar for march 1st,parrot,avail,0 -goodbye,goodbye,original,bye,2 -no,that is incorrect,original,cancel,3 -no,no?,parrot,cancel,3 -meeting_schedule,what kind of meeting is there between 10 and noon today?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -thank_you,i'm thankful,original,bye,2 -greeting,hello,original,greet,4 -goodbye,tootles,original,bye,2 -greeting,how's everything?,parrot,greet,4 -no,negatory,original,cancel,3 -meeting_schedule,time for today's meeting?,parrot,avail,0 -greeting,"hey, ai",original,greet,4 -date,"in six days, what will the date be",lambada,avail,0 -greeting,so what's up?,parrot,greet,4 -how_busy,tell me the wait at red lobster,parrot,avail,0 -how_busy,will the restaurant fill up?,parrot,avail,0 -no,no please,parrot,cancel,3 -no,negatory,original,cancel,3 -no,that’s incorrect,original,cancel,3 -no,negatory?,parrot,cancel,3 -yes,that seems true,original,book,1 -goodbye,goodbye soon,lambada,bye,2 -no,that's so wrong,parrot,cancel,3 -yes,yay,lambada,book,1 -no,you got that wrong,original,cancel,3 -goodbye,regards,original,bye,2 -greeting,hey,original,greet,4 -no,not good idea,parrot,cancel,3 -how_busy,how busy is imanas around 7pm,lambada,avail,0 -thank_you,thank you?,parrot,bye,2 -greeting,hi ai,original,greet,4 -goodbye,i'm out,parrot,bye,2 -greeting,hey there!,original,greet,4 -yes,okay,original,book,1 -calendar_update,eliminate the friday event from my calendar,parrot,resched,5 -no,that's not correct,original,cancel,3 -goodbye,tootles?,parrot,bye,2 -no,that is untrue,original,cancel,3 -date,what's today,original,avail,0 -no,false for sure,original,cancel,3 -greeting,and what's up?,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -no,absolutely false,parrot,cancel,3 -greeting,how's everything going?,parrot,greet,4 -goodbye,later gator!,original,bye,2 -greeting,how is my situation?,parrot,greet,4 -yes,it's indeed true,original,book,1 -greeting,how's the ai?,parrot,greet,4 -greeting,welcome,parrot,greet,4 -how_busy,how busy is the italian place right now,lambada,avail,0 -how_busy,how busy is chili's at 8am?,parrot,avail,0 -meeting_schedule,please show me my schedule for meetings,parrot,avail,0 -thank_you,you answered,parrot,bye,2 -yes,good,parrot,book,1 -no,negatory?,parrot,cancel,3 -schedule_meeting,i need a meeting booked for friday at 4pm,parrot,book,1 -date,what's my date?,parrot,avail,0 -cancel_reservation,can i cancel my reservation at my table?,parrot,cancel,3 -thank_you,thanks!,original,bye,2 -yes,very true,original,book,1 -greeting,nice day,lambada,greet,4 -no,negative,original,cancel,3 -no,negative sure,parrot,cancel,3 -yes,ya,original,book,1 -goodbye,see you later!,original,bye,2 -greeting,show me what's new,parrot,greet,4 -calendar_update,let me cancel my meeting on april 3,parrot,resched,5 -yes,certainly,parrot,book,1 -thank_you,my sincere thanks,parrot,bye,2 -thank_you,thanks,original,bye,2 -calendar_update,i need you to cancel the event on april 12,lambada,resched,5 -no,negatory?,parrot,cancel,3 -yes,certainly,parrot,book,1 -how_busy,is there a long wait at the cheese cake factory right now?,lambada,avail,0 -calendar,tell me what my calendar looks like on thursday?,parrot,avail,0 -goodbye,adios,original,bye,2 -cancel_reservation,i have to cancel my barclay's reservation,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -schedule_meeting,how can i get a meeting scheduled?,parrot,book,1 -yes,so it's true,parrot,book,1 -how_busy,are there any cool people in the bar at 9 o'clock?,parrot,avail,0 -goodbye,this conversation was wonderful,parrot,bye,2 -calendar_update,clear my calendar for march 1st,lambada,resched,5 -how_busy,how busy is the hut at 6 pm?,parrot,avail,0 -yes,yeah,original,book,1 -no,negatory,original,cancel,3 -no,erroneous,parrot,cancel,3 -cancel_reservation,forget reservation at longhorn for 4,original,cancel,3 -greeting,hello,original,greet,4 -calendar_update,remove all events from my calendar for march,lambada,resched,5 -thank_you,again thanks,parrot,bye,2 -greeting,please tell me what you're feeling?,parrot,greet,4 -yes,positive,parrot,book,1 -meeting_schedule,talk to me about all of my meetings between now and midnight,lambada,avail,0 -reminder_update,i need to remember how to take care of the garden,parrot,resched,5 -yes,indeed,original,book,1 -date,date please,original,avail,0 -goodbye,bye,original,bye,2 -goodbye,fairwell,original,bye,2 -no,i do not agree,lambada,cancel,3 -how_busy,how busy is chili's around 4:30 pm,lambada,avail,0 -how_busy,wait how long until we go to olive garden,parrot,avail,0 -greeting,"hello, friend",original,greet,4 -goodbye,goodbye then,parrot,bye,2 -yes,so it's checked,parrot,book,1 -thank_you,appreciate the assistance,parrot,bye,2 -calendar_update,can you add an event to my calendar? how?,parrot,resched,5 -goodbye,it's over,parrot,bye,2 -date,date tomorrow?,parrot,avail,0 -yes,is true,parrot,book,1 -yes,it's true,original,book,1 -how_busy,if i go to outback steakhouse how long will i wait?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -thank_you,thanks,original,bye,2 -yes,uh-huh,original,book,1 -yes,yes i am,original,book,1 -thank_you,my thanks,parrot,bye,2 -yes,that checks out,original,book,1 -how_busy,is this restaurant busy at 6 pm?,parrot,avail,0 -greeting,hows it going,lambada,greet,4 -greeting,hola!,original,greet,4 -no,negative,original,cancel,3 -greeting,whats up?,parrot,greet,4 -date,please date,parrot,avail,0 -yes,oh-huh,parrot,book,1 -goodbye,you're done,parrot,bye,2 -cancel_reservation,please let my reservation for saturday at my favorite restaurant expire,lambada,cancel,3 -greeting,hello there,original,greet,4 -greeting,hola,original,greet,4 -cancel_reservation,is it possible to cancel my reservation for the party at red lobster?,parrot,cancel,3 -date,today?,parrot,avail,0 -yes,definitely,original,book,1 -how_busy,can you tell me if there is a lot of wait time at the cheese cake factory?,lambada,avail,0 -yes,affirmative,original,book,1 -greeting,hey there!,original,greet,4 -thank_you,thank you for the meeting,parrot,bye,2 -thank_you,gracias,original,bye,2 -thank_you,i have to thank you for your time,parrot,bye,2 -no,the wrong answer,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -no,i'm sorry for the statement,parrot,cancel,3 -yes,it's certainly positive,parrot,book,1 -greeting,heller,original,greet,4 -goodbye,see ya,lambada,bye,2 -no,the negator,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -no,naw,parrot,cancel,3 -yes,correct,original,book,1 -yes,great,original,book,1 -greeting,what's new,lambada,greet,4 -goodbye,later,original,bye,2 -how_busy,how busy is ihop at 7,lambada,avail,0 -yes,a true statement,parrot,book,1 -greeting,i need to know how you're doing it,parrot,greet,4 -greeting,how's life?,parrot,greet,4 -yes,it's a fact,parrot,book,1 -how_busy,wait for red lobster?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -no,invalid,original,cancel,3 -yes,"yep, that's true",original,book,1 -greeting,hey,original,greet,4 -calendar,list the dates of my next dentist appointment?,parrot,avail,0 -no,invalid,original,cancel,3 -goodbye,it was good chatting,original,bye,2 -thank_you,many thank,original,bye,2 -no,invalid,original,cancel,3 -reminder_update,give me a reminder to pick up the groceries,parrot,resched,5 -goodbye,bye-bye,original,bye,2 -goodbye,tootles,original,bye,2 -no,no that's wrong,original,cancel,3 -cancel_reservation,cancell my reservation for dinner tonight please,parrot,cancel,3 -yes,10-Apr,original,book,1 -yes,obviously,parrot,book,1 -yes,yep,original,book,1 -yes,i believe it's true,lambada,book,1 -no,this statement is false,parrot,cancel,3 -yes,that's absolutely true,parrot,book,1 -no,no,lambada,cancel,3 -reminder_update,can you set a reminder for the meeting?,original,resched,5 -no,negative,original,cancel,3 -yes,facts,original,book,1 -goodbye,a good conversation,parrot,bye,2 -no,thanks no,parrot,cancel,3 -greeting,"hey, how's it going",original,greet,4 -yes,i want to confirm this,parrot,book,1 -how_busy,how long will i have to wait before i go to the red lobster,parrot,avail,0 -reminder_update,remind me something,parrot,resched,5 -cancel_reservation,abandon the dinner reservation i made,original,cancel,3 -goodbye,signing off,original,bye,2 -no,it's so negative,parrot,cancel,3 -yes,10-Apr,original,book,1 -yes,right,parrot,book,1 -greeting,you good?,parrot,greet,4 -no,erroneous,parrot,cancel,3 -goodbye,goodbye ai,parrot,bye,2 -yes,that would be right,parrot,book,1 -meeting_schedule,what's my meeting today?,parrot,avail,0 -how_busy,would i be required to wait long to eat at chili's?,parrot,avail,0 -how_busy,tell me what the wait time is at the cheese cake factory,parrot,avail,0 -yes,"affirmative, go ahead",original,book,1 -greeting,hey there!,original,greet,4 -yes,approved,original,book,1 -cancel_reservation,i have to cancel my reservation for rob at the red robin,parrot,cancel,3 -goodbye,bye!,original,bye,2 -no,naw,original,cancel,3 -no,negative,original,cancel,3 -cancel_reservation,cancel my reservation for prime rib at 8 pm,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -meeting_schedule,when will i meet bob?,parrot,avail,0 -yes,TRUE,original,book,1 -thank_you,thanks!,original,bye,2 -calendar,is there anything in my calendar for thursday?,parrot,avail,0 -calendar,how much do i have planned for march 2nd?,parrot,avail,0 -no,i don't want that,parrot,cancel,3 -goodbye,regards,original,bye,2 -how_busy,i'm wondering if the wait time for a table at olive garden is long,lambada,avail,0 -no,that is wrong,original,cancel,3 -no,hell nah,original,cancel,3 -no,don't like that,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -yes,absolutely correct,original,book,1 -no,no?,parrot,cancel,3 -yes,i'm going to tell you tes,parrot,book,1 -goodbye,goodbye!,original,bye,2 -yes,it's logical,parrot,book,1 -no,"no, that is inaccurate",original,cancel,3 -no,nay,original,cancel,3 -goodbye,see you again soon,original,bye,2 -yes,yes,original,book,1 -date,can you tell me the date for tomorrow?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -goodbye,later gator!,original,bye,2 -goodbye,good seeing you,original,bye,2 -date,what's my date?,parrot,avail,0 -date,calender says tomorrow is,original,avail,0 -goodbye,later!,original,bye,2 -goodbye,good-bye,parrot,bye,2 -no,"no, you are wrong",original,cancel,3 -goodbye,goodbye,original,bye,2 -no,the negator,parrot,cancel,3 -thank_you,i'm very grateful,parrot,bye,2 -no,false sure,parrot,cancel,3 -greeting,hello ai,parrot,greet,4 -schedule_meeting,schedule my meeting with jim at 3 o'clock,parrot,book,1 -yes,yay,lambada,book,1 -goodbye,see ya,lambada,bye,2 -yes,perfect,parrot,book,1 -thank_you,i appreciate my help,original,bye,2 -how_busy,what's the average wait time for red robin?,parrot,avail,0 -how_busy,how busy is the pizzeria around 6pm,parrot,avail,0 -goodbye,goodbye no problem,parrot,bye,2 -no,but no way?,parrot,cancel,3 -yes,accept,parrot,book,1 -goodbye,goodbye for now,parrot,bye,2 -yes,ya,original,book,1 -greeting,aloha,original,greet,4 -date,what's today?,parrot,avail,0 -yes,not a falsehood,parrot,book,1 -date,what date today?,parrot,avail,0 -schedule_meeting,i have to meet with scott at 1pm '',parrot,book,1 -how_busy,you know how busy chili's is at 7 pm?,parrot,avail,0 -no,no!,original,cancel,3 -no,that's a negation,parrot,cancel,3 -meeting_schedule,what's my plan today?,parrot,avail,0 -goodbye,i just finished talking to you,parrot,bye,2 -reminder_update,remember me to call tomorrow,parrot,resched,5 -meeting_schedule,are there meetings between 9 and 1030?,parrot,avail,0 -no,don't agree,parrot,cancel,3 -goodbye,wait for me later,parrot,bye,2 -date,list the words for tomorrow?,parrot,avail,0 -yes,you are correct,original,book,1 -cancel_reservation,please cancel my reservation for chris at brio,original,cancel,3 -greeting,greetings to you,original,greet,4 -how_busy,how busy is the cheesecake factory at 5:30,lambada,avail,0 -thank_you,nice,parrot,bye,2 -cancel_reservation,scrap that dinner reservation,original,cancel,3 -greeting,how is this going?,parrot,greet,4 -greeting,hello,original,greet,4 -thank_you,thanks please,original,bye,2 -goodbye,the talk was nice,lambada,bye,2 -yes,my answer is yes,parrot,book,1 -goodbye,i like our conversation,parrot,bye,2 -no,that's bad,parrot,cancel,3 -no,but it's not factual,parrot,cancel,3 -no,definitely not,original,cancel,3 -date,tell me what day it's?,parrot,avail,0 -goodbye,cya later,original,bye,2 -yes,you're right,original,book,1 -greeting,hey hey!,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -reminder_update,give me a reminder to change my oil,parrot,resched,5 -no,yes that's false,lambada,cancel,3 -goodbye,adios ai,original,bye,2 -yes,TRUE,lambada,book,1 -goodbye,good-bye,parrot,bye,2 -yes,uh-huh,original,book,1 -greeting,ahoy hoy,original,greet,4 -goodbye,ill be leaving now,parrot,bye,2 -how_busy,what is the wait at olive garden right now?,lambada,avail,0 -how_busy,how busy is the cheesecake factory at 7,lambada,avail,0 -greeting,now i need to know how my day goes,parrot,greet,4 -goodbye,adios,original,bye,2 -no,it's not true,parrot,cancel,3 -calendar,what's in my calendar for next january?,parrot,avail,0 -no,"please, no",original,cancel,3 -goodbye,bye!,original,bye,2 -how_busy,if i'm sitting at the departmental office how long will i have to wait for,parrot,avail,0 -greeting,good morning ai,parrot,greet,4 -thank_you,thanks for the reply,original,bye,2 -yes,facts,original,book,1 -no,that’s not correct,original,cancel,3 -greeting,what i feel?,parrot,greet,4 -reminder_update,remember to remember later,parrot,resched,5 -no,i'll pass,original,cancel,3 -no,it's false,parrot,cancel,3 -goodbye,good night,original,bye,2 -yes,what's the truth of this,lambada,book,1 -goodbye,goodbye then,parrot,bye,2 -goodbye,farewell,original,bye,2 -no,that's a lie,parrot,cancel,3 -how_busy,the mcdonald's at 9 o'clock?,parrot,avail,0 -yes,right,parrot,book,1 -goodbye,we chatted well,parrot,bye,2 -goodbye,tootles,original,bye,2 -no,negatory?,parrot,cancel,3 -meeting_schedule,when do i get to meet roger,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -cancel_reservation,cancel my reservation for xander at the red robin,parrot,cancel,3 -yes,that statement is true,lambada,book,1 -yes,i'll check it out,parrot,book,1 -how_busy,what's the current buzz at olive garden,lambada,avail,0 -greeting,how're you?,parrot,greet,4 -calendar,check calendar for events,lambada,avail,0 -date,in seven days?,parrot,avail,0 -no,it is very much false,original,cancel,3 -greeting,yo,original,greet,4 -yes,great,original,book,1 -greeting,hi how is everything,original,greet,4 -schedule_meeting,help me schedule a meeting,original,book,1 -calendar,did i have an anniversary for my wife and mine?,parrot,avail,0 -yes,that statement is really correct,lambada,book,1 -date,what today?,parrot,avail,0 -thank_you,thanks,original,bye,2 -no,that isn't right,original,cancel,3 -thank_you,"that's all i need, thanks!",original,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -greeting,hey yai,lambada,greet,4 -yes,10-Apr,original,book,1 -yes,certainly,parrot,book,1 -goodbye,it's time for goodbye,parrot,bye,2 -goodbye,lovely conversation,parrot,bye,2 -yes,say yes,lambada,book,1 -no,please no,parrot,cancel,3 -greeting,whats new?,parrot,greet,4 -how_busy,tell me the wait for applebee's tonight,parrot,avail,0 -thank_you,i'm really thankful,parrot,bye,2 -yes,approved,original,book,1 -schedule_meeting,how do i set up a meeting for you?,parrot,book,1 -greeting,well hello,original,greet,4 -no,i mean no,parrot,cancel,3 -no,hell nah,original,cancel,3 -yes,yeah,original,book,1 -reminder_update,remind me of my routine check on the oven,parrot,resched,5 -thank_you,very grateful,parrot,bye,2 -no,would be a lie,parrot,cancel,3 -how_busy,how long is the wait in the cheese cake factory?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -date,current day,parrot,avail,0 -goodbye,good talk,parrot,bye,2 -date,"is it monday, wednesday, wednesday, wednesday, wednesday, wednesday, wednesday, wednesday, wednesday, wednesday?",lambada,avail,0 -no,it's so bad,parrot,cancel,3 -no,that is not really the case,lambada,cancel,3 -meeting_schedule,what's the meeting schedule,lambada,avail,0 -goodbye,good night,original,bye,2 -goodbye,tootles?,parrot,bye,2 -goodbye,catch you later,original,bye,2 -calendar_update,go ahead and delete the doctor appointment i have scheduled for monday,original,resched,5 -no,that's so false,parrot,cancel,3 -thank_you,thank you for the thanks,parrot,bye,2 -goodbye,adios!,original,bye,2 -reminder_update,remember to put the garbage in the can,parrot,resched,5 -no,"no, that would be bad",lambada,cancel,3 -no,"no, it's not",lambada,cancel,3 -no,that's very false,parrot,cancel,3 -no,that's absolutely wrong,parrot,cancel,3 -greeting,what's new?,parrot,greet,4 -yes,"yes, you got it",original,book,1 -yes,i'll say yes,parrot,book,1 -yes,do that?,original,book,1 -no,FALSE,original,cancel,3 -yes,correct,original,book,1 -no,nothing,parrot,cancel,3 -greeting,hiya,original,greet,4 -thank_you,you helped,parrot,bye,2 -goodbye,glad to talk,parrot,bye,2 -goodbye,on the highway,parrot,bye,2 -no,it's a false,lambada,cancel,3 -yes,positive,parrot,book,1 -calendar,what is my schedule for april 30?,lambada,avail,0 -yes,positive,original,book,1 -meeting_schedule,when am i supposed to meet roger?,parrot,avail,0 -meeting_schedule,when is my meeting with the invoicing scheduled to happen?,parrot,avail,0 -how_busy,how long will it take to get seated at the olympia,lambada,avail,0 -calendar,what's on my calendar today?,parrot,avail,0 -date,current date,original,avail,0 -goodbye,goodnight,original,bye,2 -no,negation,parrot,cancel,3 -how_busy,how long will i have to wait at tiembe in tacoma,lambada,avail,0 -thank_you,many thanks,original,bye,2 -goodbye,goodbye bye,parrot,bye,2 -yes,great,original,book,1 -thank_you,you've been great,parrot,bye,2 -calendar,is anything happening on march 4th 2019?,original,avail,0 -goodbye,goodbye soon,lambada,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -no,false sure,parrot,cancel,3 -calendar_update,i want you to cancel the event on may 13,lambada,resched,5 -how_busy,how many people will be in the restaurant at 6,parrot,avail,0 -greeting,why hello?,original,greet,4 -thank_you,please thank you for my time and attention,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -thank_you,very grateful,parrot,bye,2 -meeting_schedule,please tell me what meeting i'm having today?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -no,nothing,parrot,cancel,3 -meeting_schedule,are there any meetings with lance planned today?,parrot,avail,0 -no,not correct,parrot,cancel,3 -greeting,hiya!,original,greet,4 -goodbye,my friend,parrot,bye,2 -thank_you,your assistance is appreciated,parrot,bye,2 -yes,that is correct,original,book,1 -thank_you,thank ya!,original,bye,2 -goodbye,say goodbye,parrot,bye,2 -no,but that's not true,parrot,cancel,3 -thank_you,it's my debt,parrot,bye,2 -thank_you,thank you?,parrot,bye,2 -calendar_update,clear my entire calendar for april 1st,parrot,resched,5 -no,you can't make that statement true?,parrot,cancel,3 -yes,definitely,original,book,1 -thank_you,nice,parrot,bye,2 -calendar,please check what's in my calendar for tuesday?,parrot,avail,0 -goodbye,glad to talk,parrot,bye,2 -greeting,hi,original,greet,4 -goodbye,i'll go,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -goodbye,good conversation,parrot,bye,2 -date,can you tell me what the date will be?,parrot,avail,0 -greeting,wassup,original,greet,4 -goodbye,good see you,lambada,bye,2 -goodbye,farewell,original,bye,2 -yes,certainly,parrot,book,1 -how_busy,what will the restaurant be like between 5 and 7?,parrot,avail,0 -no,it's actually false,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -greeting,what's happening?,parrot,greet,4 -no,that's incorrect!,original,cancel,3 -yes,good,parrot,book,1 -goodbye,bye now,original,bye,2 -calendar_update,take care of my doctor's appointment for march 30,parrot,resched,5 -thank_you,i'm thankful,original,bye,2 -calendar_update,remove everything from my calendar,parrot,resched,5 -greeting,"yo, hows it going",original,greet,4 -yes,TRUE,original,book,1 -greeting,whats up?,parrot,greet,4 -calendar,what's my schedule for thursday 14th?,parrot,avail,0 -reminder_update,i need you to remind me of something,parrot,resched,5 -yes,just right,parrot,book,1 -goodbye,peace,original,bye,2 -date,in 5 days what will be the date?,parrot,avail,0 -greeting,how do you feel,original,greet,4 -calendar,please read my calendar,parrot,avail,0 -how_busy,list the most popular times in the cheesecake factory?,parrot,avail,0 -no,absolutely false,parrot,cancel,3 -greeting,hey how ya feeling,lambada,greet,4 -goodbye,bye!,original,bye,2 -goodbye,afterward,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -greeting,welcome,parrot,greet,4 -yes,my answer is yes,parrot,book,1 -goodbye,"no problem, goodbye",lambada,bye,2 -yes,confirm,original,book,1 -reminder_update,give me a reminder,parrot,resched,5 -no,i'll pass,original,cancel,3 -goodbye,until next time!,original,bye,2 -goodbye,catch you later,original,bye,2 -goodbye,sayonara,original,bye,2 -yes,yeah,original,book,1 -no,FALSE,lambada,cancel,3 -yes,thats right,original,book,1 -yes,it is a true,original,book,1 -greeting,salutation,parrot,greet,4 -cancel_reservation,cancel my reservation for 6 at red robin,lambada,cancel,3 -no,negative sure,parrot,cancel,3 -how_busy,tell me the wait for an ohio dinner at red lobster?,parrot,avail,0 -yes,accept,parrot,book,1 -no,negative,original,cancel,3 -greeting,whats up?,parrot,greet,4 -no,negation,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -meeting_schedule,about how many meetings am i attending between 12 and 3 today,original,avail,0 -no,no?,parrot,cancel,3 -greeting,what's up,original,greet,4 -no,negatory,original,cancel,3 -no,negatory,original,cancel,3 -how_busy,can you tell me how busy olive garden is at 4:00?,lambada,avail,0 -thank_you,thankyou,parrot,bye,2 -goodbye,bye,original,bye,2 -no,is it a lie?,parrot,cancel,3 -no,no,lambada,cancel,3 -yes,obviously,parrot,book,1 -goodbye,signing off,original,bye,2 -reminder_update,i must make a reminder for dinner,parrot,resched,5 -schedule_meeting,need to know how to schedule a meeting,parrot,book,1 -goodbye,my way,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -goodbye,goodbye my friend,parrot,bye,2 -reminder_update,remind me,original,resched,5 -calendar,i want my schedule for march 2,original,avail,0 -goodbye,", goodbye",lambada,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -greeting,how's the ai?,parrot,greet,4 -greeting,are you good?,original,greet,4 -yes,my response is correct,parrot,book,1 -no,that's not true,original,cancel,3 -greeting,are you all right now?,parrot,greet,4 -greeting,how're you?,parrot,greet,4 -greeting,whats up,original,greet,4 -greeting,how life treats you?,parrot,greet,4 -thank_you,you're special thanks,parrot,bye,2 -how_busy,how long is the wait if i want to be seated at the tamara steakhouse,lambada,avail,0 -no,ill pass,original,cancel,3 -goodbye,nice talk,lambada,bye,2 -yes,TRUE,lambada,book,1 -goodbye,good night,original,bye,2 -yes,yes,original,book,1 -greeting,salutations!,original,greet,4 -no,"no, that's a lie",lambada,cancel,3 -goodbye,bye-bye,original,bye,2 -date,tomorrow is the date,parrot,avail,0 -goodbye,sign off,parrot,bye,2 -no,naw,original,cancel,3 -how_busy,how long is a table in the restaurant,parrot,avail,0 -meeting_schedule,are there meetings with john?,parrot,avail,0 -no,would be a false statement,parrot,cancel,3 -meeting_schedule,what is in my schedule?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how busy is red lobster at 8 pm,lambada,avail,0 -thank_you,gracias,original,bye,2 -no,no it's not,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -greeting,how's it hanging?,parrot,greet,4 -yes,approved,original,book,1 -goodbye,goodbye then,parrot,bye,2 -cancel_reservation,cancel my reservation for steakhouse,lambada,cancel,3 -how_busy,will this restaurant be crowded,lambada,avail,0 -no,i think not,original,cancel,3 -goodbye,later!,original,bye,2 -date,what's the next month?,parrot,avail,0 -goodbye,i'm going,parrot,bye,2 -reminder_update,make a reminder i need to ask about my job,parrot,resched,5 -thank_you,merci beaucoup,original,bye,2 -no,that's wrong,original,cancel,3 -yes,correct,original,book,1 -yes,i would say yes,lambada,book,1 -goodbye,later gator!,original,bye,2 -yes,indeed,original,book,1 -greeting,hola,original,greet,4 -no,no!,original,cancel,3 -greeting,hey hey!,original,greet,4 -cancel_reservation,cancel the table i reserved tonight,parrot,cancel,3 -cancel_reservation,after all i have to cancel my reservation,parrot,cancel,3 -yes,obviously,parrot,book,1 -no,naw,original,cancel,3 -no,invalid,original,cancel,3 -goodbye,tootles,original,bye,2 -goodbye,on the highway,parrot,bye,2 -how_busy,when will i have to wait for a table at san francisco?,parrot,avail,0 -greeting,heyo,original,greet,4 -cancel_reservation,will my reservation in the restaurant be cancelled?,parrot,cancel,3 -yes,affirmitive,original,book,1 -no,nada,original,cancel,3 -goodbye,i'll have to talk to you later,lambada,bye,2 -yes,okay,original,book,1 -goodbye,", goodbye",lambada,bye,2 -goodbye,adios!,original,bye,2 -goodbye,bye!,original,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -no,false sure,parrot,cancel,3 -goodbye,see ya,original,bye,2 -no,no don't do that!,original,cancel,3 -yes,indeed,original,book,1 -date,you know the date?,parrot,avail,0 -how_busy,is she busy around 5pm?,parrot,avail,0 -yes,i agree,original,book,1 -greeting,"hi, ai",original,greet,4 -greeting,welcome,parrot,greet,4 -no,it's not correct,parrot,cancel,3 -how_busy,how busy will chili be around 7 am,parrot,avail,0 -no,not that,original,cancel,3 -greeting,whats up?,parrot,greet,4 -thank_you,appreciate the help,original,bye,2 -no,negating,parrot,cancel,3 -greeting,hola!,original,greet,4 -greeting,whats new,lambada,greet,4 -goodbye,bye bye,lambada,bye,2 -yes,yes sir,original,book,1 -goodbye,peace,original,bye,2 -cancel_reservation,scrap the dinner reservation,parrot,cancel,3 -reminder_update,new reminder please,lambada,resched,5 -yes,perfect,parrot,book,1 -yes,it's logical,parrot,book,1 -no,it's a no,original,cancel,3 -greeting,i need to know how ai's going,parrot,greet,4 -yes,TRUE,lambada,book,1 -no,that's so false,parrot,cancel,3 -yes,ya,original,book,1 -goodbye,have fun?,lambada,bye,2 -goodbye,fairwell,original,bye,2 -greeting,salutation,parrot,greet,4 -date,what day is it tomorrow?,original,avail,0 -greeting,how is everything?,parrot,greet,4 -yes,i know,parrot,book,1 -goodbye,fairwell?,parrot,bye,2 -goodbye,tootles,original,bye,2 -no,no,lambada,cancel,3 -cancel_reservation,cancellation of dinner reservation please,parrot,cancel,3 -goodbye,"goodbye, helpful ai device!",original,bye,2 -yes,absolutely!,original,book,1 -yes,yeah,original,book,1 -no,so that's no,parrot,cancel,3 -yes,roger that,original,book,1 -goodbye,adios,original,bye,2 -goodbye,have fun?,lambada,bye,2 -no,this information is false,parrot,cancel,3 -thank_you,okay thank you,parrot,bye,2 -no,it's not correct,parrot,cancel,3 -goodbye,maybe next time,parrot,bye,2 -greeting,how are you feeling now?,parrot,greet,4 -greeting,hi,original,greet,4 -reminder_update,please add a reminder in the list?,parrot,resched,5 -cancel_reservation,call off the dinner reservation,original,cancel,3 -yes,definitely,original,book,1 -yes,definitely,original,book,1 -greeting,what's happened?,parrot,greet,4 -greeting,how's it going,lambada,greet,4 -yes,i agree,original,book,1 -greeting,"hello, anyone there",original,greet,4 -goodbye,good talk,parrot,bye,2 -thank_you,thanks for my response,original,bye,2 -goodbye,and i had a nice goodbye,parrot,bye,2 -no,i'll say no,parrot,cancel,3 -date,what's the year?,parrot,avail,0 -yes,accepted,original,book,1 -greeting,heyo,original,greet,4 -reminder_update,make me remember,parrot,resched,5 -yes,thats right,original,book,1 -goodbye,sayonara ,parrot,bye,2 -reminder_update,what's a reminder,parrot,resched,5 -greeting,hola!,original,greet,4 -no,it's overwhelmingly negative,parrot,cancel,3 -greeting,is everything okay today?,parrot,greet,4 -goodbye,my way,parrot,bye,2 -greeting,how's life,original,greet,4 -goodbye,afterward,parrot,bye,2 -thank_you,so grateful,parrot,bye,2 -greeting,good morning,parrot,greet,4 -yes,that's right,original,book,1 -goodbye,goodbye goodbye,parrot,bye,2 -greeting,ahoy hoy,original,greet,4 -no,it's actually false,parrot,cancel,3 -how_busy,how long is the sitting time in the olive garden,parrot,avail,0 -calendar,check my calendar for march 19th,parrot,avail,0 -how_busy,how long can i expect to wait in the macaroni grill,parrot,avail,0 -thank_you,thank you kindly,original,bye,2 -goodbye,adios,original,bye,2 -greeting,aho,parrot,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,good night,original,bye,2 -goodbye,adios,original,bye,2 -goodbye,bye bye!,original,bye,2 -thank_you,thanks,original,bye,2 -greeting,what's happened?,parrot,greet,4 -greeting,wassup,original,greet,4 -yes,ya,original,book,1 -no,no?,parrot,cancel,3 -yes,"yes, that's affirmative",original,book,1 -no,not right?,parrot,cancel,3 -no,no that isn't true,lambada,cancel,3 -yes,okay,original,book,1 -no,that's false,original,cancel,3 -date,the date is tomorrow,parrot,avail,0 -date,today?,parrot,avail,0 -date,calender says tomorrow is,original,avail,0 -yes,oh-huh,parrot,book,1 -thank_you,my thanks,parrot,bye,2 -goodbye,farewell,original,bye,2 -goodbye,adios,original,bye,2 -greeting,ahoy there,lambada,greet,4 -yes,that's a definite yes,original,book,1 -thank_you,okay thank you,parrot,bye,2 -yes,TRUE,lambada,book,1 -greeting,"howdy, what's new",original,greet,4 -no,i don't think so,original,cancel,3 -goodbye,adios!,original,bye,2 -thank_you,thank ya!,original,bye,2 -yes,that seems true,original,book,1 -yes,that's right,original,book,1 -thank_you,you're so thoughtful and i appreciate my gesture,parrot,bye,2 -greeting,how've you been?,parrot,greet,4 -greeting,hey how ya been,lambada,greet,4 -date,what's tomorrow on the calender,original,avail,0 -no,naw,parrot,cancel,3 -goodbye,i like our conversation,parrot,bye,2 -no,the information is not correct?,parrot,cancel,3 -calendar,what do i have planned for next sunday?,parrot,avail,0 -cancel_reservation,scrap reservation at 4 for red robin,original,cancel,3 -yes,affirmitive,original,book,1 -meeting_schedule,how many meetings am i going to have today between noon and one?,parrot,avail,0 -cancel_reservation,get the salad canceled,parrot,cancel,3 -no,negating,parrot,cancel,3 -yes,huh,parrot,book,1 -greeting,aho,parrot,greet,4 -goodbye,sayonara,original,bye,2 -how_busy,how busy is olive garden around 3,lambada,avail,0 -yes,yeah that's right,lambada,book,1 -reminder_update,a reminder to wish my mother a happy birthday,parrot,resched,5 -thank_you,glad you did it,parrot,bye,2 -greeting,what's going on,original,greet,4 -thank_you,nice,parrot,bye,2 -thank_you,you're a big help,parrot,bye,2 -greeting,hello good morning,parrot,greet,4 -greeting,hi how're things going,lambada,greet,4 -no,no?,parrot,cancel,3 -greeting,"hello, good morning",lambada,greet,4 -goodbye,goodbye goodbye,parrot,bye,2 -greeting,how're you doing,original,greet,4 -goodbye,peace,original,bye,2 -how_busy,how long is the wait at orchids,original,avail,0 -how_busy,how long will the wait at the tamales be?,parrot,avail,0 -greeting,hola,original,greet,4 -no,negative,original,cancel,3 -yes,confirmed,original,book,1 -yes,"yep, that's correct",lambada,book,1 -how_busy,how long would i have to wait for a table at the red lobster restaurant?,parrot,avail,0 -thank_you,you've tried,parrot,bye,2 -yes,uh huh,original,book,1 -date,can you tell me tomorrow's date?,original,avail,0 -goodbye,later,original,bye,2 -no,naw,original,cancel,3 -no,negation,parrot,cancel,3 -reminder_update,remember to call a friend tomorrow,parrot,resched,5 -yes,not false,parrot,book,1 -greeting,what's up?,parrot,greet,4 -reminder_update,remember to bring checkbook,parrot,resched,5 -yes,sure,original,book,1 -how_busy,how long can i wait to eat in the restaurant?,parrot,avail,0 -yes,accepted,original,book,1 -yes,say yes,lambada,book,1 -greeting,hello siri,original,greet,4 -thank_you,i'm very grateful,parrot,bye,2 -no,that's no longer valid,parrot,cancel,3 -goodbye,was a pleasure talking to you,parrot,bye,2 -how_busy,how busy is the chipotle grill?,parrot,avail,0 -yes,absolutely,original,book,1 -how_busy,is the restaurant crowded during lunch?,parrot,avail,0 -no,that's no way,parrot,cancel,3 -thank_you,so grateful,parrot,bye,2 -thank_you,thanks for the info,original,bye,2 -no,i'll pass,original,cancel,3 -no,that's not true,original,cancel,3 -reminder_update,is it possible to create a reminder?,parrot,resched,5 -no,hell nah,original,cancel,3 -reminder_update,remind me to pay the bill,parrot,resched,5 -yes,yup,original,book,1 -no,FALSE,lambada,cancel,3 -greeting,hey hey!,original,greet,4 -yes,certainly,parrot,book,1 -greeting,"good morning, ai",original,greet,4 -greeting,hey yai,lambada,greet,4 -greeting,salutation,parrot,greet,4 -thank_you,nice,parrot,bye,2 -goodbye,adios,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -how_busy,does olive garden have seating at 8pm?,parrot,avail,0 -goodbye,next time we'll talk,parrot,bye,2 -goodbye,adios,original,bye,2 -greeting,how's life?,parrot,greet,4 -no,"no, that'd be my response",lambada,cancel,3 -yes,TRUE,original,book,1 -goodbye,good seeing you,original,bye,2 -goodbye,goodbye,original,bye,2 -no,negatory,original,cancel,3 -yes,positive,original,book,1 -yes,accept,parrot,book,1 -how_busy,how long before dinner,parrot,avail,0 -yes,yes please,original,book,1 -how_busy,how many wait times do olive garden customers have to wait for?,parrot,avail,0 -date,today?,parrot,avail,0 -goodbye,i have to get out there,parrot,bye,2 -greeting,"good morning, ai",original,greet,4 -no,not good,parrot,cancel,3 -yes,that's correct,original,book,1 -yes,perfect,parrot,book,1 -reminder_update,please do not forget,parrot,resched,5 -calendar_update,can i remove an event from my calendar?,parrot,resched,5 -no,it's negative,parrot,cancel,3 -goodbye,i'll leave,parrot,bye,2 -goodbye,my friend,parrot,bye,2 -goodbye,sayonara,original,bye,2 -yes,yeap,original,book,1 -yes,i'll say yes,parrot,book,1 -yes,absolutely!,original,book,1 -yes,i think you succeeded,parrot,book,1 -meeting_schedule,when is my meeting with jim scheduled for?,original,avail,0 -thank_you,appreciate it,original,bye,2 -no,that's so wrong,parrot,cancel,3 -goodbye,lovely to see you again,lambada,bye,2 -yes,sure,original,book,1 -calendar,know what's on my calendar for march 15,parrot,avail,0 -no,it's very false,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -calendar,what's my plan for april 23?,parrot,avail,0 -yes,positive,original,book,1 -schedule_meeting,please check if a meeting room is available between 4 and 5,lambada,book,1 -reminder_update,how about a reminder?,parrot,resched,5 -cancel_reservation,please cancel my reservation for tim at the jb's,parrot,cancel,3 -yes,"correct, it is affirmative",original,book,1 -date,if you can give me the date,parrot,avail,0 -calendar,list some of the events in my calendar for april 1st?,parrot,avail,0 -yes,let's do it,parrot,book,1 -goodbye,i'll be gone,parrot,bye,2 -greeting,aloha,original,greet,4 -thank_you,thanks for that!,original,bye,2 -greeting,"wake up, ai",original,greet,4 -greeting,how's everything?,parrot,greet,4 -yes,yeah,original,book,1 -calendar,what should i have on my calendar for march 5th?,parrot,avail,0 -schedule_meeting,please reserve a meeting room for 1:00 pm on tuesday,original,book,1 -no,that's wrong,original,cancel,3 -goodbye,fairwell?,parrot,bye,2 -how_busy,can you tell me how long it will take to get a table at the egg salad factory?,parrot,avail,0 -cancel_reservation,tell me which restaurant i need to cancel my reservation for?,lambada,cancel,3 -yes,perfect,parrot,book,1 -goodbye,thank you goodbye,original,bye,2 -no,that's a negative,original,cancel,3 -goodbye,you're done,parrot,bye,2 -date,what today?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -goodbye,fairwell,original,bye,2 -goodbye,bye,original,bye,2 -greeting,how are things,original,greet,4 -how_busy,how long will it take to get to chili at 7pm?,parrot,avail,0 -thank_you,i appreciate your assistance,parrot,bye,2 -yes,that is true,lambada,book,1 -yes,that would be right,parrot,book,1 -thank_you,thanks again,original,bye,2 -greeting,ahoy,lambada,greet,4 -yes,uh huh,original,book,1 -yes,facts,original,book,1 -goodbye,bye!,original,bye,2 -goodbye,goodbye!,original,bye,2 -greeting,hello,original,greet,4 -greeting,yo,original,greet,4 -no,negatory,original,cancel,3 -goodbye,fairwell,original,bye,2 -no,nada,original,cancel,3 -greeting,you good?,parrot,greet,4 -greeting,are you well?,original,greet,4 -thank_you,"nice, excellent!",original,bye,2 -thank_you,thank you for trying it,parrot,bye,2 -no,no thanks,original,cancel,3 -date,i'd like to know what's the date for tomorrow,parrot,avail,0 -yes,perfect,parrot,book,1 -goodbye,go easy,parrot,bye,2 -greeting,how's my life?,parrot,greet,4 -yes,it's logical,parrot,book,1 -thank_you,well done,parrot,bye,2 -no,no please,parrot,cancel,3 -no,yes it's false,parrot,cancel,3 -how_busy,how long will it be on a macaroni grill?,parrot,avail,0 -no,you got that wrong,original,cancel,3 -schedule_meeting,are there rooms available between 11 am and 12 pm?,parrot,book,1 -no,no thank you,original,cancel,3 -greeting,hola!,original,greet,4 -yes,yup,original,book,1 -thank_you,thanks for doing it,parrot,bye,2 -greeting,salutation,parrot,greet,4 -goodbye,good-bye,parrot,bye,2 -yes,"yes, please",parrot,book,1 -goodbye,say goodbye,parrot,bye,2 -goodbye,peace out!,original,bye,2 -greeting,how're you?,parrot,greet,4 -no,no!,original,cancel,3 -date,current date,original,avail,0 -no,is my falsehood?,parrot,cancel,3 -no,you are wrong,original,cancel,3 -greeting,hola!,original,greet,4 -goodbye,regards,original,bye,2 -thank_you,i thank you,original,bye,2 -yes,okay,original,book,1 -greeting,whats up?,parrot,greet,4 -greeting,hola!,original,greet,4 -date,what today?,parrot,avail,0 -yes,indeed,original,book,1 -thank_you,i'm thankful,original,bye,2 -how_busy,what's the wait time for teddy bears at 6pm?,parrot,avail,0 -thank_you,thanks please,original,bye,2 -greeting,heyo,original,greet,4 -goodbye,good-bye,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -date,how many days before the next day,parrot,avail,0 -greeting,whats new,lambada,greet,4 -calendar_update,add my spa appointment on the 12th to my calendar,original,resched,5 -no,it's a no,original,cancel,3 -greeting,aloha,original,greet,4 -how_busy,how long will it be after 7pm?,parrot,avail,0 -no,negative certainly,parrot,cancel,3 -goodbye,sign off,parrot,bye,2 -yes,affirmitive,original,book,1 -goodbye,greetings,parrot,bye,2 -yes,confirm,original,book,1 -goodbye,see ya,original,bye,2 -yes,a fact,parrot,book,1 -goodbye,i'm out,parrot,bye,2 -yes,accept,parrot,book,1 -yes,do that?,original,book,1 -goodbye,bye my friend,parrot,bye,2 -reminder_update,the cat needs neutering,parrot,resched,5 -date,can you tell me what the date is tomorrow,parrot,avail,0 -no,negatory,original,cancel,3 -thank_you,i owe you,parrot,bye,2 -reminder_update,want me to remind you to pay taxes tomorrow?,parrot,resched,5 -calendar,check my calendar to see if i have goals for my current account,parrot,avail,0 -greeting,salutations!,original,greet,4 -reminder_update,i need to make a reminder,original,resched,5 -goodbye,you're done,parrot,bye,2 -no,naw,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -no,negatory,original,cancel,3 -greeting,wassup,original,greet,4 -yes,it's logical,parrot,book,1 -yes,approved,original,book,1 -no,FALSE,original,cancel,3 -no,say negative,parrot,cancel,3 -greeting,"why, hello bandit",original,greet,4 -greeting,aho,parrot,greet,4 -thank_you,you've helped,parrot,bye,2 -greeting,salutations!,original,greet,4 -calendar,do you have any appointments for april 1st?,parrot,avail,0 -reminder_update,make me a reminder to buy groceries,parrot,resched,5 -goodbye,"thanks, bye",original,bye,2 -yes,"yes, please",parrot,book,1 -greeting,wassup,original,greet,4 -greeting,hiya,original,greet,4 -no,"no, definitely not",original,cancel,3 -calendar_update,forget my scheduled appointment i have for tomorrow,parrot,resched,5 -goodbye,bye,original,bye,2 -no,absolutely not,original,cancel,3 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -yes,agreed,original,book,1 -greeting,hey yai,lambada,greet,4 -goodbye,lovely conversation,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -goodbye,peace,original,bye,2 -no,no that's not it?,parrot,cancel,3 -thank_you,thanks,original,bye,2 -no,false sure,parrot,cancel,3 -greeting,hi,original,greet,4 -no,negatory,original,cancel,3 -calendar_update,add an appointment for a doctor on friday,parrot,resched,5 -greeting,well hello,original,greet,4 -greeting,how've you been,original,greet,4 -no,it's negative,parrot,cancel,3 -schedule_meeting,get me a meeting room for 9am on friday,original,book,1 -goodbye,good call,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -greeting,hey,original,greet,4 -yes,yeap,original,book,1 -yes,TRUE,original,book,1 -yes,yeap,original,book,1 -date,what day?,parrot,avail,0 -reminder_update,i need to set a reminder for myself,parrot,resched,5 -how_busy,how busy will golden gate be at 5,lambada,avail,0 -no,"no, that's incorrect",original,cancel,3 -goodbye,adios!,original,bye,2 -yes,agreed,original,book,1 -goodbye,i'll leave now,parrot,bye,2 -schedule_meeting,i need a meeting set up for john at 9am,lambada,book,1 -greeting,hey yai,lambada,greet,4 -how_busy,i'd like to know how busy the cheesecake factory is at 4 pm,parrot,avail,0 -greeting,hiya,original,greet,4 -cancel_reservation,cancellation of dinner reservations,parrot,cancel,3 -no,i meant nothing,parrot,cancel,3 -greeting,hey,original,greet,4 -no,naw,parrot,cancel,3 -yes,i can confirm,parrot,book,1 -goodbye,later gator!,original,bye,2 -date,what day?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -yes,i can tell you,parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -meeting_schedule,what's the time of the meetings?,parrot,avail,0 -no,that's a wrong answer,parrot,cancel,3 -cancel_reservation,the reservation i made isn't needed,parrot,cancel,3 -calendar,what events do i have for march 1?,parrot,avail,0 -no,that's a negatory,original,cancel,3 -yes,okay,original,book,1 -greeting,"hello, what's up",original,greet,4 -greeting,salutations!,original,greet,4 -how_busy,tell me what the wait time at the cheese cake factory is?,parrot,avail,0 -thank_you,well done,parrot,bye,2 -yes,yay,lambada,book,1 -greeting,hello,original,greet,4 -goodbye,farewell,original,bye,2 -goodbye,sign off,parrot,bye,2 -date,what's the next month?,parrot,avail,0 -no,don't agree,parrot,cancel,3 -goodbye,great talk,lambada,bye,2 -how_busy,is that olive garden busy?,parrot,avail,0 -goodbye,adios!,original,bye,2 -no,not really,original,cancel,3 -yes,i want you to know that it's true,parrot,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -greeting,how're you doing,original,greet,4 -goodbye,good-bye,parrot,bye,2 -goodbye,sign off,parrot,bye,2 -thank_you,it pleased me,parrot,bye,2 -thank_you,thanks for that answer,original,bye,2 -goodbye,"that's all, bye",original,bye,2 -goodbye,goodbyes,parrot,bye,2 -no,it's a negation,parrot,cancel,3 -yes,i know this is true,lambada,book,1 -greeting,heyo,original,greet,4 -greeting,hello,original,greet,4 -yes,affirmative,original,book,1 -thank_you,appreciated,original,bye,2 -goodbye,see you later,original,bye,2 -thank_you,thankyou,parrot,bye,2 -greeting,what's my feeling?,parrot,greet,4 -no,i'll pass,original,cancel,3 -how_busy,is this restaurant crowded?,parrot,avail,0 -no,ill pass,original,cancel,3 -how_busy,what is typical time to sit in this restaurant?,parrot,avail,0 -no,that's no,parrot,cancel,3 -calendar,what do i have to do on wednesday?,lambada,avail,0 -yes,roger that,original,book,1 -greeting,how's my family?,parrot,greet,4 -goodbye,i'll leave,parrot,bye,2 -no,that's incorrect,original,cancel,3 -yes,not false,parrot,book,1 -greeting,yo,original,greet,4 -no,nay,original,cancel,3 -date,date tomorrow,parrot,avail,0 -calendar,"what do i have on my calendar today, the 3rd?",original,avail,0 -goodbye,goodbyes,parrot,bye,2 -thank_you,you answered my question,parrot,bye,2 -how_busy,is ihop usually busy between 5 and 6pm?,lambada,avail,0 -meeting_schedule,show me the time of my meeting for today,parrot,avail,0 -yes,approved,original,book,1 -goodbye,great talk,lambada,bye,2 -yes,"yes, please",parrot,book,1 -goodbye,goodbye now,parrot,bye,2 -schedule_meeting,what is the process to schedule a meeting?,original,book,1 -calendar,tell me if i have events on my calendar for march 16th?,parrot,avail,0 -how_busy,how long is the wait in chipotle tonight?,parrot,avail,0 -thank_you,oh sweet thanks,original,bye,2 -greeting,whats up?,parrot,greet,4 -cancel_reservation,get the salad canceled,parrot,cancel,3 -greeting,hiya,original,greet,4 -date,what date?,parrot,avail,0 -reminder_update,make a reminder to do my taxes,original,resched,5 -greeting,good day,original,greet,4 -yes,correct,original,book,1 -goodbye,goodbyes,parrot,bye,2 -greeting,what's new?,parrot,greet,4 -how_busy,please tell me how busy she is?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -no,no thank you,original,cancel,3 -goodbye,fairwell?,parrot,bye,2 -greeting,"wake up, ai",original,greet,4 -yes,you're right,original,book,1 -yes,approved,original,book,1 -greeting,hey bs,lambada,greet,4 -calendar_update,cancel the event on february 23,lambada,resched,5 -no,negative,original,cancel,3 -thank_you,appreciated,original,bye,2 -how_busy,is mr joes pizza available for a seating area?,parrot,avail,0 -yes,"yes, please",original,book,1 -yes,certainly,parrot,book,1 -yes,that'd be great,parrot,book,1 -thank_you,appreciated,original,bye,2 -greeting,hey bs,lambada,greet,4 -goodbye,adios,original,bye,2 -no,it's very wrong,parrot,cancel,3 -thank_you,thank you for everything,parrot,bye,2 -no,"no, that's wrong",original,cancel,3 -goodbye,wait for me later,parrot,bye,2 -no,that's a negatory,original,cancel,3 -greeting,how's otc?,parrot,greet,4 -goodbye,adios!,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -goodbye,i'll be on the road,parrot,bye,2 -greeting,wassup,original,greet,4 -goodbye,afterward,parrot,bye,2 -greeting,yo,original,greet,4 -no,certainly not true,parrot,cancel,3 -yes,yup,original,book,1 -how_busy,is the restaurant packed at night?,lambada,avail,0 -yes,confirm,original,book,1 -greeting,hiya,original,greet,4 -how_busy,tell me if chili's busy around 8am?,parrot,avail,0 -no,that's completely wrong,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -greeting,good morning ai,parrot,greet,4 -calendar_update,i need you to cancel the event on 12 april,parrot,resched,5 -no,false sure,parrot,cancel,3 -date,date please,original,avail,0 -how_busy,how long will it take for me to get a table at st jerome's,lambada,avail,0 -how_busy,how busy will olive garden be at 6 pm,lambada,avail,0 -schedule_meeting,let's schedule a meeting,lambada,book,1 -goodbye,goodbye!,original,bye,2 -how_busy,what happens when i'm at work at 5 o'clock?,parrot,avail,0 -thank_you,thanks again!,original,bye,2 -thank_you,thanks for the donation,parrot,bye,2 -no,it's a no,original,cancel,3 -yes,that's a fact,parrot,book,1 -yes,agreed,original,book,1 -calendar_update,take a lunch with steven off my calendar,parrot,resched,5 -reminder_update,come on please,parrot,resched,5 -thank_you,your efforts don't go unnoticed,original,bye,2 -thank_you,awesome thanks,parrot,bye,2 -yes,of course,original,book,1 -no,no?,parrot,cancel,3 -thank_you,good job with good effort,parrot,bye,2 -calendar_update,i would like to have march 5th's 5k added to my calendar,original,resched,5 -yes,that's correct,original,book,1 -reminder_update,what about a reminder?,parrot,resched,5 -goodbye,go easy,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -yes,absolutely,original,book,1 -no,no that's a false statement,parrot,cancel,3 -thank_you,gracias,original,bye,2 -greeting,heyo,original,greet,4 -yes,good,parrot,book,1 -yes,affirmitive,original,book,1 -meeting_schedule,do you have any meetings from 2 to 5?,parrot,avail,0 -yes,affirmitive,original,book,1 -thank_you,thanks for giving it to me,lambada,bye,2 -greeting,why hello?,original,greet,4 -no,nada,original,cancel,3 -greeting,aho,parrot,greet,4 -no,invalid,original,cancel,3 -goodbye,later gater,original,bye,2 -yes,"yes, please",parrot,book,1 -goodbye,goodnight,original,bye,2 -goodbye,tootles,original,bye,2 -goodbye,regards,original,bye,2 -yes,uh-huh,original,book,1 -calendar,tell me my calendar?,parrot,avail,0 -how_busy,how busy will golden corral be at 730 tonight,parrot,avail,0 -no,not good,parrot,cancel,3 -reminder_update,make a reminder to get my vaccines,lambada,resched,5 -no,i'd like to say that this is a false statement,parrot,cancel,3 -no,that's so negative,parrot,cancel,3 -greeting,hello,original,greet,4 -greeting,good evening,original,greet,4 -goodbye,good bye for now,parrot,bye,2 -how_busy,what is the wait at chili's at 9?,lambada,avail,0 -yes,great,original,book,1 -greeting,aho,parrot,greet,4 -greeting,what's happened?,parrot,greet,4 -schedule_meeting,the meeting room must be set up for 6pm on friday,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -how_busy,how long will it be at the macaroni grill?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,is ihop busy around 9 o'clock?,parrot,avail,0 -yes,good,parrot,book,1 -goodbye,happy to talk to you,parrot,bye,2 -goodbye,adios!,original,bye,2 -meeting_schedule,do you have a meeting to go today?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how long is the wait for a table at macaroni and cheese,lambada,avail,0 -no,FALSE,original,cancel,3 -yes,okay,original,book,1 -goodbye,bye!,original,bye,2 -greeting,hiya!,original,greet,4 -yes,i agree,original,book,1 -no,naw,original,cancel,3 -yes,confirmed,original,book,1 -yes,yep,original,book,1 -yes,i'll say yes,parrot,book,1 -how_busy,what is the wait time for an oyster grill dinner?,lambada,avail,0 -no,that’s incorrect,original,cancel,3 -goodbye,afterward,parrot,bye,2 -no,that is very false,lambada,cancel,3 -no,so that's no,parrot,cancel,3 -yes,obviously,parrot,book,1 -thank_you,thanks!,original,bye,2 -no,no way,original,cancel,3 -greeting,aloha,original,greet,4 -goodbye,this was a good conversation,parrot,bye,2 -yes,absolutely!,original,book,1 -calendar,let me know if i have an appointment on march 17,parrot,avail,0 -thank_you,thanks,original,bye,2 -yes,good,parrot,book,1 -greeting,"hey, ai",original,greet,4 -no,the information is not true,parrot,cancel,3 -no,it's no,parrot,cancel,3 -date,what's today?,parrot,avail,0 -yes,i think that is correct,lambada,book,1 -greeting,are you doing okay?,original,greet,4 -thank_you,so much easier with you,parrot,bye,2 -no,thanks no,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -goodbye,goodbye ai,parrot,bye,2 -goodbye,glad to talk again,parrot,bye,2 -yes,all right,parrot,book,1 -greeting,hola,original,greet,4 -goodbye,good night,original,bye,2 -date,which date today?,parrot,avail,0 -thank_you,thanks again,original,bye,2 -how_busy,how busy is steakhouse around midnight,lambada,avail,0 -date,he's got the date,parrot,avail,0 -goodbye,say goodbye now,parrot,bye,2 -thank_you,thanks for helping me!,original,bye,2 -yes,positive,parrot,book,1 -goodbye,buhbye,original,bye,2 -schedule_meeting,help me get a meeting set up,original,book,1 -thank_you,thankyou,parrot,bye,2 -date,what's going to happen next?,parrot,avail,0 -greeting,and what's up?,parrot,greet,4 -no,and it's very false,parrot,cancel,3 -yes,please let's do this,parrot,book,1 -date,in 10 days?,parrot,avail,0 -calendar,have any appointments on my calendar for may 11th?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -greeting,hiya,original,greet,4 -yes,i think that's true,original,book,1 -how_busy,how busy the red robin is at 7 pm?,parrot,avail,0 -how_busy,is the dinner wait too long?,lambada,avail,0 -no,naw,parrot,cancel,3 -yes,okay,original,book,1 -goodbye,goodbye!,original,bye,2 -greeting,salutations,parrot,greet,4 -greeting,well how's the situation?,parrot,greet,4 -reminder_update,make a reminder to make my cat a cat scratch,lambada,resched,5 -greeting,hello there,original,greet,4 -schedule_meeting,arrange a meeting room for 9am on friday,original,book,1 -reminder_update,"new reminder, please",original,resched,5 -greeting,hello how's my life?,parrot,greet,4 -goodbye,bye,original,bye,2 -goodbye,say goodbye,parrot,bye,2 -yes,yes sir,original,book,1 -calendar,what do i have scheduled for february 12th?,lambada,avail,0 -goodbye,fairwell,original,bye,2 -schedule_meeting,show me how to schedule a meeting,original,book,1 -how_busy,please check the wait times in the cheesecake factory,parrot,avail,0 -how_busy,how long will i have to wait for the steak?,parrot,avail,0 -how_busy,list the wait times for a reservation at iloveys?,parrot,avail,0 -greeting,well hello,original,greet,4 -cancel_reservation,abrogate the reservation of dinner,parrot,cancel,3 -yes,yeah,original,book,1 -how_busy,how busy is chili around 11pm,parrot,avail,0 -thank_you,you've been great,parrot,bye,2 -goodbye,fairwell,original,bye,2 -yes,i know that is true,original,book,1 -how_busy,how busy are iguanas on weekends,parrot,avail,0 -yes,ok,original,book,1 -no,that is a very bad answer,lambada,cancel,3 -greeting,how goes it,original,greet,4 -goodbye,tootles?,parrot,bye,2 -schedule_meeting,i need to schedule a meeting with ken for 9 am,parrot,book,1 -yes,confirmed,original,book,1 -no,you're not right,parrot,cancel,3 -reminder_update,please remind me that it's time to clean my apartment?,parrot,resched,5 -how_busy,how much time does it take to wait for a table at the pizza fountain?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,how's life going?,parrot,greet,4 -no,do not change to false?,lambada,cancel,3 -goodbye,it's time to run,parrot,bye,2 -yes,seems true,parrot,book,1 -schedule_meeting,i need a meeting scheduled,parrot,book,1 -date,in 7 days?,parrot,avail,0 -meeting_schedule,wanna meet with roger,parrot,avail,0 -goodbye,", goodbye",lambada,bye,2 -greeting,"hello, what's up",original,greet,4 -calendar_update,delete the friday event from my calendar,parrot,resched,5 -no,FALSE,original,cancel,3 -calendar_update,please take off my calendar on saturday the 6th birthday party for john,original,resched,5 -reminder_update,remind me to do something?,parrot,resched,5 -how_busy,what is the wait time at macy's?,lambada,avail,0 -no,is not true?,parrot,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -date,what date this month?,parrot,avail,0 -greeting,how you're doing?,parrot,greet,4 -yes,so it's true,parrot,book,1 -greeting,why hello?,original,greet,4 -no,FALSE,original,cancel,3 -thank_you,i'm thankful,original,bye,2 -calendar,what's happening in my calendar for march 12th?,parrot,avail,0 -no,but that's not true,parrot,cancel,3 -yes,good,parrot,book,1 -no,would be no?,parrot,cancel,3 -goodbye,my way,parrot,bye,2 -thank_you,thank you?,parrot,bye,2 -yes,so it's true,parrot,book,1 -meeting_schedule,does travis have any meetings today?,parrot,avail,0 -yes,10-Apr,original,book,1 -yes,indeed,original,book,1 -how_busy,is she busy around 5pm?,parrot,avail,0 -no,no thanks,original,cancel,3 -yes,huh,parrot,book,1 -greeting,what's going on,original,greet,4 -goodbye,goodbye,original,bye,2 -reminder_update,what's a reminder,parrot,resched,5 -no,not right,parrot,cancel,3 -no,"no, that is wrong",original,cancel,3 -greeting,hello what's going on,parrot,greet,4 -goodbye,bye!,original,bye,2 -reminder_update,create a reminder,original,resched,5 -how_busy,how long will the wait at ihop be?,parrot,avail,0 -greeting,nice day,lambada,greet,4 -yes,agreed,original,book,1 -yes,a fact,parrot,book,1 -yes,10-Apr,original,book,1 -goodbye,goodbye bye,parrot,bye,2 -yes,it's true,original,book,1 -yes,it's logical,parrot,book,1 -yes,that's a fact,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -yes,i just said that,parrot,book,1 -thank_you,thankyou,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,TRUE,lambada,book,1 -goodbye,farewell,original,bye,2 -yes,is true,parrot,book,1 -how_busy,around 5 pm how busy is kaya?,parrot,avail,0 -greeting,heyo,original,greet,4 -yes,oh-huh,parrot,book,1 -yes,not false,parrot,book,1 -no,no no thanks,parrot,cancel,3 -yes,TRUE,original,book,1 -goodbye,regards,original,bye,2 -greeting,wassup,original,greet,4 -date,which date is it?,parrot,avail,0 -thank_you,gracias,original,bye,2 -how_busy,does the street get crowded around 11 am?,lambada,avail,0 -goodbye,i'm glad you're talking to me soon,parrot,bye,2 -goodbye,regards,original,bye,2 -date,what day is it today? ,parrot,avail,0 -yes,oh-huh,parrot,book,1 -yes,ya,original,book,1 -thank_you,the best,parrot,bye,2 -calendar,tell me my calendar events?,lambada,avail,0 -calendar_update,make a calendar for tomorrow,parrot,resched,5 -greeting,salutations,parrot,greet,4 -yes,correct,original,book,1 -yes,my answer is yes,parrot,book,1 -no,erroneous,parrot,cancel,3 -greeting,are you doing anything good?,parrot,greet,4 -yes,uh-huh,original,book,1 -thank_you,i'm grateful,original,bye,2 -yes,uh-huh,original,book,1 -greeting,heyo,original,greet,4 -greeting,salutation,parrot,greet,4 -reminder_update,come on please,parrot,resched,5 -yes,i'd say yes,parrot,book,1 -thank_you,thanks!,original,bye,2 -no,certainly not,original,cancel,3 -yes,yeap,original,book,1 -goodbye,fairwell,original,bye,2 -greeting,you good?,parrot,greet,4 -reminder_update,make me remember,parrot,resched,5 -no,i say negative,original,cancel,3 -goodbye,and tell me bye?,parrot,bye,2 -yes,yay,lambada,book,1 -thank_you,thanks,original,bye,2 -no,not really,original,cancel,3 -no,that's actually false,parrot,cancel,3 -thank_you,gracias,original,bye,2 -no,"no, definitely not",original,cancel,3 -goodbye,peace,original,bye,2 -yes,right,parrot,book,1 -yes,i guess,parrot,book,1 -no,that seems wrong,lambada,cancel,3 -yes,positive,original,book,1 -no,FALSE,lambada,cancel,3 -goodbye,farewell,original,bye,2 -thank_you,i'm glad you've helped me,parrot,bye,2 -yes,TRUE,lambada,book,1 -goodbye,sayonara,original,bye,2 -goodbye,catch you later,original,bye,2 -thank_you,"great, thanks!",original,bye,2 -goodbye,farewell,original,bye,2 -thank_you,you give me much gratitude,parrot,bye,2 -goodbye,"no problem, goodbye",lambada,bye,2 -yes,i want it,parrot,book,1 -calendar,is my day open for march 4 2019?,parrot,avail,0 -no,not really,original,cancel,3 -yes,i guess yes,parrot,book,1 -no,that's totally wrong!,original,cancel,3 -yes,i want you to know that it's right,parrot,book,1 -yes,oh yes,original,book,1 -greeting,hey bs,lambada,greet,4 -greeting,hiya,original,greet,4 -calendar,display my calendar,lambada,avail,0 -goodbye,my friend,parrot,bye,2 -thank_you,thanks!,original,bye,2 -goodbye,maybe next time,parrot,bye,2 -date,where is tomorrow's date,lambada,avail,0 -yes,agreed,original,book,1 -thank_you,"good job, thanks",lambada,bye,2 -no,is my false statement?,parrot,cancel,3 -yes,accepted,original,book,1 -how_busy,what is the crowd like at red lobster around 8:30?,lambada,avail,0 -no,naw,original,cancel,3 -no,nada,original,cancel,3 -greeting,you good?,parrot,greet,4 -yes,definitely,original,book,1 -yes,correct,original,book,1 -yes,very true,original,book,1 -goodbye,thank you for this conversation,parrot,bye,2 -thank_you,thanks for that!,original,bye,2 -greeting,how is idy doing?,parrot,greet,4 -no,i meant nothing,parrot,cancel,3 -goodbye,peace,original,bye,2 -yes,yeah yeah,lambada,book,1 -greeting,good evening,original,greet,4 -greeting,yo,original,greet,4 -no,negative definitely,parrot,cancel,3 -no,please disagree,lambada,cancel,3 -goodbye,i'm leaving,parrot,bye,2 -cancel_reservation,can you cancel a reservation at the restaurant?,parrot,cancel,3 -date,what's my date?,parrot,avail,0 -no,nothing,parrot,cancel,3 -yes,"affirmative, go ahead",original,book,1 -how_busy,is there a long wait for a table at teeter totter?,lambada,avail,0 -greeting,wassup,original,greet,4 -schedule_meeting,i want to have a meeting with bob tomorrow morning,parrot,book,1 -date,the date is tomorrow,parrot,avail,0 -how_busy,how long will it take to get seated at applebee?,parrot,avail,0 -goodbye,"thanks for my chat, goodbye",lambada,bye,2 -yes,i can confirm,parrot,book,1 -thank_you,okay thank you,parrot,bye,2 -greeting,"hello, how are things",original,greet,4 -goodbye,so glad to talk to you,parrot,bye,2 -date,what day is it tomorrow?,original,avail,0 -no,that's bad,parrot,cancel,3 -greeting,hey there!,original,greet,4 -goodbye,bye,original,bye,2 -yes,obviously,parrot,book,1 -goodbye,buhbye,original,bye,2 -thank_you,so grateful,parrot,bye,2 -date,what is tomorrow?,parrot,avail,0 -greeting,hey how's it going,original,greet,4 -no,negation,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -date,and what's my day today?,parrot,avail,0 -no,i prefer not to,parrot,cancel,3 -how_busy,how busy is that restaurant at 5:00,lambada,avail,0 -yes,that's absolutely true,parrot,book,1 -date,what's going on today?,parrot,avail,0 -meeting_schedule,when are my meetings?,parrot,avail,0 -greeting,aloha,original,greet,4 -thank_you,your response was good,parrot,bye,2 -yes,that is correct,original,book,1 -goodbye,im leaving,parrot,bye,2 -no,no way!,original,cancel,3 -how_busy,can you tell me how many seats are available in this restaurant?,parrot,avail,0 -goodbye,i must say goodbye,original,bye,2 -greeting,hello how you doing,lambada,greet,4 -greeting,how's everything,original,greet,4 -thank_you,you helped me,parrot,bye,2 -no,naw,original,cancel,3 -yes,confirmed,original,book,1 -no,no no no,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,negating,parrot,cancel,3 -no,is very false,parrot,cancel,3 -yes,positive,parrot,book,1 -goodbye,bye my friend,parrot,bye,2 -thank_you,thank you so much for everything,parrot,bye,2 -yes,huh huh,parrot,book,1 -goodbye,goodbye goodbye,parrot,bye,2 -date,what's my day?,parrot,avail,0 -yes,say positive,parrot,book,1 -date,in five days?,parrot,avail,0 -greeting,how's life,original,greet,4 -thank_you,you have made my life so much easier,lambada,bye,2 -greeting,what's up?,parrot,greet,4 -greeting,aloha,original,greet,4 -thank_you,gracias,original,bye,2 -meeting_schedule,what time do i have meetings?,parrot,avail,0 -thank_you,and you're doing well,parrot,bye,2 -no,no no no,parrot,cancel,3 -greeting,hello there,original,greet,4 -yes,that's correct,original,book,1 -goodbye,farewell!,original,bye,2 -no,no,lambada,cancel,3 -calendar,tell me what's on my calendar for the 17th of march?,parrot,avail,0 -thank_you,thank you for the vacation,parrot,bye,2 -greeting,aho,parrot,greet,4 -goodbye,signing off,original,bye,2 -schedule_meeting,are there open meeting rooms between 2 and 4?,parrot,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -no,it's a false,lambada,cancel,3 -thank_you,thankyou,parrot,bye,2 -thank_you,i appreciate the help,original,bye,2 -greeting,hello,original,greet,4 -goodbye,good luck,lambada,bye,2 -thank_you,thanks,original,bye,2 -goodbye,goodbye bye,parrot,bye,2 -greeting,heller,original,greet,4 -yes,"yeah, that's true",lambada,book,1 -greeting,heyo,original,greet,4 -meeting_schedule,what's the meeting today?,parrot,avail,0 -yes,right,parrot,book,1 -yes,oh-huh,parrot,book,1 -meeting_schedule,when do you meet roger?,parrot,avail,0 -yes,good,parrot,book,1 -meeting_schedule,when is my next meeting with mike?,parrot,avail,0 -greeting,aho,parrot,greet,4 -thank_you,okay thank you,parrot,bye,2 -yes,confirm,original,book,1 -thank_you,okay thank you,parrot,bye,2 -thank_you,thanks very much for your answer,parrot,bye,2 -no,don't like that,parrot,cancel,3 -thank_you,i thank you,original,bye,2 -yes,"yeah, that's right",original,book,1 -goodbye,fairwell,original,bye,2 -goodbye,peace,original,bye,2 -greeting,"hello, how are things",original,greet,4 -greeting,yo,original,greet,4 -no,no good,original,cancel,3 -no,no good,original,cancel,3 -date,"after another eight days, what day will it be",original,avail,0 -goodbye,for now,parrot,bye,2 -goodbye,goodbye,original,bye,2 -how_busy,how many people are going to chili around 7,parrot,avail,0 -no,no!,original,cancel,3 -cancel_reservation,cancel the reservation at red robin for 5,lambada,cancel,3 -yes,is true,parrot,book,1 -date,is tomorrow's date?,parrot,avail,0 -yes,10-Apr,original,book,1 -greeting,hello how're you doing?,parrot,greet,4 -no,FALSE,lambada,cancel,3 -goodbye,bye,original,bye,2 -yes,yes,original,book,1 -no,is a lie?,parrot,cancel,3 -no,nada,original,cancel,3 -yes,10-Apr,original,book,1 -goodbye,always a pleasure to talk with you,parrot,bye,2 -yes,that is affirmative,original,book,1 -how_busy,is the wait too long?,parrot,avail,0 -yes,10-Apr,original,book,1 -date,what day is tomorrow?,lambada,avail,0 -greeting,hi there,original,greet,4 -no,nada,original,cancel,3 -thank_you,thank you please,parrot,bye,2 -yes,positive,parrot,book,1 -greeting,nice day,lambada,greet,4 -yes,all right,original,book,1 -greeting,salutations!,original,greet,4 -greeting,welcome,parrot,greet,4 -goodbye,sayonara,original,bye,2 -goodbye,goodbye,original,bye,2 -meeting_schedule,are there any meetings today?,lambada,avail,0 -thank_you,i'm happy you've helped me,parrot,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -greeting,"good morning, what's going on",lambada,greet,4 -yes,it's logical,parrot,book,1 -how_busy,would there be a long wait at the cheese cake factory at this time,lambada,avail,0 -no,i think it's a lie,parrot,cancel,3 -no,naw,original,cancel,3 -goodbye,see ya,lambada,bye,2 -no,no that's not the case,parrot,cancel,3 -calendar,do you have any scheduled events in my calendar?,parrot,avail,0 -greeting,good day,original,greet,4 -yes,certainly,parrot,book,1 -reminder_update,i want you to remind me to put ice in,parrot,resched,5 -greeting,heller,original,greet,4 -no,it's my false statement,parrot,cancel,3 -greeting,yo,original,greet,4 -schedule_meeting,i want to meet you in the blue room at 9am,parrot,book,1 -yes,all right,parrot,book,1 -goodbye,good talk,parrot,bye,2 -goodbye,nice conversation today,parrot,bye,2 -goodbye,adios ai,original,bye,2 -goodbye,talk later,original,bye,2 -no,that's not the case,parrot,cancel,3 -no,negating,parrot,cancel,3 -greeting,how's life?,parrot,greet,4 -yes,indeed,original,book,1 -no,it's indeed false,parrot,cancel,3 -thank_you,i appeciate it,parrot,bye,2 -yes,ok,original,book,1 -greeting,hello how are you,lambada,greet,4 -greeting,well hello,original,greet,4 -greeting,how you're treated?,parrot,greet,4 -goodbye,bye now,original,bye,2 -yes,that is a yes,original,book,1 -yes,great,original,book,1 -greeting,well hello,original,greet,4 -reminder_update,please remember something,parrot,resched,5 -meeting_schedule,about how many gatherings are available between 2 and 3,lambada,avail,0 -thank_you,thank you!,original,bye,2 -calendar,show me the calendar?,parrot,avail,0 -no,yes it's false,parrot,cancel,3 -greeting,"hey, what's up",original,greet,4 -yes,oh-huh,parrot,book,1 -greeting,good evening,original,greet,4 -greeting,hey,original,greet,4 -date,in 7 days?,parrot,avail,0 -greeting,aloha,original,greet,4 -greeting,ahoy,lambada,greet,4 -yes,that's true,original,book,1 -no,yes that's false,lambada,cancel,3 -goodbye,adios,original,bye,2 -goodbye,say goodbye,parrot,bye,2 -goodbye,the talk was nice,lambada,bye,2 -calendar,what are the daytime shows on next week?,lambada,avail,0 -greeting,hola,original,greet,4 -yes,that is true,lambada,book,1 -yes,is true,parrot,book,1 -no,not correct,parrot,cancel,3 -goodbye,say goodbye,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -yes,uh-huh,original,book,1 -thank_you,so i appreciate it,parrot,bye,2 -yes,great,original,book,1 -yes,TRUE,lambada,book,1 -greeting,good morning,parrot,greet,4 -greeting,hello good day,parrot,greet,4 -how_busy,is imbrosio busy around 6?,lambada,avail,0 -greeting,how's idy?,parrot,greet,4 -thank_you,gracias,original,bye,2 -greeting,"howdy, what's new",original,greet,4 -greeting,wassup,original,greet,4 -goodbye,fairwell,original,bye,2 -goodbye,goodbye soon,lambada,bye,2 -thank_you,you're special thanks,parrot,bye,2 -greeting,hi how're things going,lambada,greet,4 -no,nothing,parrot,cancel,3 -goodbye,regards,original,bye,2 -yes,i agree with what you've just said,parrot,book,1 -no,not right,parrot,cancel,3 -no,is very false,parrot,cancel,3 -yes,positive,parrot,book,1 -goodbye,nice to see you later,lambada,bye,2 -goodbye,bye bye,lambada,bye,2 -yes,indeed,original,book,1 -greeting,how ya doin,original,greet,4 -goodbye,later!,original,bye,2 -calendar_update,make a calendar for thursday,parrot,resched,5 -date,what date?,parrot,avail,0 -thank_you,appreciate it,original,bye,2 -no,naw,parrot,cancel,3 -no,nay,original,cancel,3 -yes,uh-huh,original,book,1 -reminder_update,can you remember me later,parrot,resched,5 -greeting,what's happening?,parrot,greet,4 -goodbye,glad we got to talk,original,bye,2 -cancel_reservation,can you undo the reservation?,original,cancel,3 -yes,confirmed,original,book,1 -greeting,hi,original,greet,4 -yes,oh-huh,parrot,book,1 -goodbye,see ya,lambada,bye,2 -yes,uh-huh,original,book,1 -no,negating,parrot,cancel,3 -goodbye,peace,original,bye,2 -goodbye,fairwell,original,bye,2 -greeting,whats up?,parrot,greet,4 -goodbye,goodbye,original,bye,2 -goodbye,later!,original,bye,2 -yes,perfect,parrot,book,1 -goodbye,peace out,original,bye,2 -how_busy,what time should i wait to be seated at phoenix steak house?,parrot,avail,0 -cancel_reservation,i need to cancel the reservation for dinner tonight,parrot,cancel,3 -yes,yay,lambada,book,1 -no,not true,original,cancel,3 -greeting,hey there!,original,greet,4 -thank_you,you answered,parrot,bye,2 -goodbye,my way,parrot,bye,2 -greeting,hi,original,greet,4 -how_busy,sage's busy at noon?,parrot,avail,0 -no,it's a false statement,parrot,cancel,3 -yes,okay,original,book,1 -calendar_update,please remove dinner with sally from my calendar for march 18 2019 ,parrot,resched,5 -greeting,welcome,parrot,greet,4 -thank_you,"that'll work, good job!",original,bye,2 -yes,approved,original,book,1 -how_busy,what is the typical time to get a table in this restaurant?,parrot,avail,0 -no,no,lambada,cancel,3 -yes,definitely yes,parrot,book,1 -goodbye,goodnight,original,bye,2 -greeting,tell me how it goes in irvine?,parrot,greet,4 -no,it seems not,original,cancel,3 -how_busy,how long until dinner?,parrot,avail,0 -thank_you,many thanks,original,bye,2 -no,that's bad,parrot,cancel,3 -thank_you,thanks,original,bye,2 -thank_you,you've tried,parrot,bye,2 -meeting_schedule,when's my meeting with frank?,parrot,avail,0 -greeting,why hello?,original,greet,4 -yes,you're right,original,book,1 -calendar,tell me what's in my calendar for march 23rd,parrot,avail,0 -how_busy,how long will the wait at the burger joint be?,parrot,avail,0 -yes,accept,parrot,book,1 -goodbye,later gator!,original,bye,2 -goodbye,goodnight,original,bye,2 -schedule_meeting,the meeting should be arranged,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -goodbye,bye-bye,original,bye,2 -goodbye,bye,original,bye,2 -meeting_schedule,let me know every meeting i have scheduled today,original,avail,0 -greeting,how's the world?,parrot,greet,4 -greeting,how's everything?,parrot,greet,4 -yes,yeah,original,book,1 -greeting,ahoy there,lambada,greet,4 -yes,absolutely,original,book,1 -no,not happening,original,cancel,3 -date,can you tell me the date tomorrow please?,parrot,avail,0 -no,negation,parrot,cancel,3 -greeting,how ife treated you?,parrot,greet,4 -calendar,check my calendar for tuesday's appointment,parrot,avail,0 -yes,huh huh,parrot,book,1 -date,what day will it be?,parrot,avail,0 -yes,yup,original,book,1 -no,i do not agree,lambada,cancel,3 -how_busy,how busy will the cheesecake factory be,lambada,avail,0 -thank_you,really great!,original,bye,2 -schedule_meeting,set up a meeting,parrot,book,1 -goodbye,bye-bye,original,bye,2 -how_busy,i want to know how long i'll wait for x factor,parrot,avail,0 -yes,absolutely!,original,book,1 -date,what year is tomorrow?,parrot,avail,0 -no,that's inaccurate,original,cancel,3 -yes,absolutely correct,original,book,1 -no,that's not correct,original,cancel,3 -greeting,whats up,original,greet,4 -yes,"yep, that's right",original,book,1 -yes,of course,original,book,1 -yes,roger that,original,book,1 -how_busy,tell me how busy ihop will be at 7:30 pm?,lambada,avail,0 -yes,yep,original,book,1 -greeting,how's ayi doing?,parrot,greet,4 -no,that is not true,original,cancel,3 -goodbye,my friend,parrot,bye,2 -no,that’s incorrect,original,cancel,3 -goodbye,take a break,parrot,bye,2 -greeting,"hello, friend",original,greet,4 -goodbye,ill leave now,parrot,bye,2 -yes,"yes, please",parrot,book,1 -how_busy,how busy will potato salad be around 5,lambada,avail,0 -how_busy,how long will i have to wait before being seated at cheese cake factory,lambada,avail,0 -greeting,how's idy?,parrot,greet,4 -meeting_schedule,do i have meetings between 5 and 6?,parrot,avail,0 -reminder_update,remind me something,parrot,resched,5 -greeting,aloha,original,greet,4 -calendar_update,i need to delete my doctor appointment scheduled for march 15 from my calendar,parrot,resched,5 -schedule_meeting,are there any meeting rooms available from 11am to 1pm?,lambada,book,1 -reminder_update,remember me to call bob tomorrow,parrot,resched,5 -schedule_meeting,i need a meeting with mike at 5 pm,parrot,book,1 -yes,that statement was correct,original,book,1 -no,nay,original,cancel,3 -yes,that is a yes,original,book,1 -greeting,whats up?,parrot,greet,4 -yes,that's the truth,original,book,1 -meeting_schedule,list some of the meetings on my agenda for today?,parrot,avail,0 -yes,indeed,original,book,1 -no,no,lambada,cancel,3 -greeting,hiya,original,greet,4 -thank_you,thanks for doing it,parrot,bye,2 -no,naw,original,cancel,3 -how_busy,if i want to get a table at the restaurant how long will it take,parrot,avail,0 -no,negation,parrot,cancel,3 -greeting,salutations!,original,greet,4 -thank_you,appreciated,original,bye,2 -yes,good,parrot,book,1 -yes,yes that is true,lambada,book,1 -greeting,hiya!,original,greet,4 -no,i'd say the statement is definitely false,parrot,cancel,3 -date,tell me the date for tomorrow?,parrot,avail,0 -no,nothing,parrot,cancel,3 -goodbye,have fun?,lambada,bye,2 -how_busy,how long will the wait be at the burger joint?,parrot,avail,0 -reminder_update,set a reminder to check the mail,lambada,resched,5 -schedule_meeting,i need a meeting room between 12 and 1pm,lambada,book,1 -greeting,whats up?,parrot,greet,4 -no,definitely not,original,cancel,3 -schedule_meeting,i need to go through an process to schedule a meeting,lambada,book,1 -yes,absolutely correct,original,book,1 -how_busy,what's the wait time?,parrot,avail,0 -calendar,show me the calendar for march 14?,parrot,avail,0 -yes,yeap,original,book,1 -no,that is overwhelmingly false,original,cancel,3 -no,no longer valid,parrot,cancel,3 -goodbye,cya later,original,bye,2 -greeting,ahoy there,lambada,greet,4 -greeting,hiya!,original,greet,4 -greeting,salutation,parrot,greet,4 -greeting,what i feel?,parrot,greet,4 -reminder_update,need to create a reminder about paying tax,parrot,resched,5 -thank_you,you're welcome,parrot,bye,2 -no,that's totally wrong!,original,cancel,3 -greeting,hiya,original,greet,4 -yes,accepted,original,book,1 -thank_you,thanks!,original,bye,2 -greeting,wassup,original,greet,4 -yes,ya,original,book,1 -greeting,how's everything going?,parrot,greet,4 -greeting,hello,original,greet,4 -yes,i'm going to tell you tes,parrot,book,1 -goodbye,afterward,parrot,bye,2 -how_busy,what time does it take to wait for a restaurant?,parrot,avail,0 -yes,ok,original,book,1 -greeting,you good?,parrot,greet,4 -reminder_update,make me remember to ask for a vacation,parrot,resched,5 -greeting,"hey, ai",original,greet,4 -goodbye,this conversation was very pleasant,parrot,bye,2 -greeting,what's happening?,parrot,greet,4 -date,can you give me the date within 5 days?,parrot,avail,0 -greeting,hello what's up?,parrot,greet,4 -cancel_reservation,get the salad canceled,parrot,cancel,3 -how_busy,how busy is mishawaka,lambada,avail,0 -no,most definitely false,parrot,cancel,3 -greeting,how's my day been?,parrot,greet,4 -thank_you,you've been amazing,lambada,bye,2 -greeting,hello there,original,greet,4 -meeting_schedule,are there any meetings with kelly?,parrot,avail,0 -no,i'd say that the statement is definitely wrong,parrot,cancel,3 -greeting,so how's everything?,parrot,greet,4 -greeting,hiya!,original,greet,4 -yes,yes,original,book,1 -goodbye,good-bye,parrot,bye,2 -goodbye,tootles,original,bye,2 -how_busy,can you tell me the wait time at the olive garden,parrot,avail,0 -goodbye,bye,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,hiya,original,greet,4 -yes,confirmed,original,book,1 -goodbye,fairwell,original,bye,2 -date,what's the date now,parrot,avail,0 -goodbye,bye,original,bye,2 -goodbye,bye bye,lambada,bye,2 -goodbye,bye,original,bye,2 -yes,sure,original,book,1 -date,in 9 days?,parrot,avail,0 -meeting_schedule,show me my meeting schedule,lambada,avail,0 -thank_you,i have to thank you for your time,parrot,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -yes,my answer is yes,parrot,book,1 -no,nada,original,cancel,3 -thank_you,okay thanks,original,bye,2 -no,invalid,original,cancel,3 -date,what's the next week?,parrot,avail,0 -yes,obviously,parrot,book,1 -no,yes that's false,lambada,cancel,3 -goodbye,lovely conversation,parrot,bye,2 -reminder_update,set up a new reminder to alert me when it's time to get rid of the garbage,parrot,resched,5 -goodbye,please chat to me,parrot,bye,2 -greeting,hey,original,greet,4 -yes,"yup, that's correct",lambada,book,1 -yes,correct,original,book,1 -thank_you,my gratitude,parrot,bye,2 -meeting_schedule,what meetings do i have between 2 and 4?,parrot,avail,0 -greeting,yo,original,greet,4 -no,that's false,original,cancel,3 -reminder_update,maybe a reminder?,parrot,resched,5 -goodbye,thanks bye bye!,original,bye,2 -schedule_meeting,you can book a meeting room for 9am on sunday,parrot,book,1 -greeting,hello,original,greet,4 -thank_you,thanks for doing it,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -thank_you,appreciated,original,bye,2 -goodbye,goodnight,original,bye,2 -yes,all right,original,book,1 -thank_you,i'm thankful,original,bye,2 -no,is it a lie?,parrot,cancel,3 -yes,accept,parrot,book,1 -thank_you,thanks,original,bye,2 -cancel_reservation,can you cancel my reservation for chris at smith and wollensky?,parrot,cancel,3 -how_busy,how long will the wait at buffalo wild wings be,lambada,avail,0 -how_busy,what are the wait times at applebees restaurant?,lambada,avail,0 -goodbye,the talk was nice,lambada,bye,2 -no,FALSE,lambada,cancel,3 -greeting,hey there!,original,greet,4 -reminder_update,i need to be told to clean the room,parrot,resched,5 -goodbye,later,original,bye,2 -yes,obviously,parrot,book,1 -yes,that's a fact,parrot,book,1 -goodbye,good call,parrot,bye,2 -goodbye,i'll be gone,parrot,bye,2 -how_busy,what is the wait time for a table at this restaurant?,lambada,avail,0 -thank_you,well done,parrot,bye,2 -yes,"correct, that's true",original,book,1 -no,not right?,parrot,cancel,3 -how_busy,how busy is applebee's around 11:30,lambada,avail,0 -goodbye,tootles?,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -schedule_meeting,meetings open between 1 pm and 3 pm,parrot,book,1 -no,that's a false,lambada,cancel,3 -yes,perfect,parrot,book,1 -greeting,let me know how you're doing?,parrot,greet,4 -goodbye,good call,parrot,bye,2 -thank_you,you're a great help,parrot,bye,2 -goodbye,send a goodbye,lambada,bye,2 -thank_you,appreciate the assistance,parrot,bye,2 -yes,positive,original,book,1 -thank_you,appreciated,original,bye,2 -greeting,salutations!,original,greet,4 -reminder_update,please remember to pay my taxes,parrot,resched,5 -date,what date?,parrot,avail,0 -how_busy,how busy is the cheesecake factory at 7 o'clock?,parrot,avail,0 -no,FALSE,original,cancel,3 -greeting,yo,original,greet,4 -yes,positive,original,book,1 -how_busy,will the restaurant fill up?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -greeting,whats up?,parrot,greet,4 -how_busy,what's the wait time at ihop?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -yes,great,original,book,1 -reminder_update,remember to check the mailbox,parrot,resched,5 -how_busy,how much time will the restaurant be open?,parrot,avail,0 -no,not right?,parrot,cancel,3 -yes,"yeah, that's right",original,book,1 -no,FALSE,original,cancel,3 -reminder_update,remind me,original,resched,5 -greeting,aloha,original,greet,4 -no,that's not true,original,cancel,3 -how_busy,how busy will the avocado forest be at 8pm,parrot,avail,0 -no,that's certainly false,parrot,cancel,3 -goodbye,later,original,bye,2 -calendar_update,how can i book a veterinarian appointment on march 1st?,parrot,resched,5 -meeting_schedule,what meetings are scheduled today?,lambada,avail,0 -no,negatory?,parrot,cancel,3 -yes,TRUE,lambada,book,1 -no,negative,original,cancel,3 -greeting,hiya!,original,greet,4 -date,is tomorrow's date?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -yes,definitely yes,parrot,book,1 -goodbye,signing off,original,bye,2 -no,no!,original,cancel,3 -goodbye,lovely conversation,parrot,bye,2 -how_busy,how busy is applebees at lunch?,parrot,avail,0 -yes,confirmed,original,book,1 -no,negatory?,parrot,cancel,3 -date,tell me what day it's on,parrot,avail,0 -schedule_meeting,schedule a meeting with carrie and lisa,original,book,1 -greeting,hiya!,original,greet,4 -no,not right?,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -yes,uh-huh,original,book,1 -thank_you,thank you please,parrot,bye,2 -greeting,hi ai,original,greet,4 -thank_you,thanks so much ai,original,bye,2 -goodbye,adios,original,bye,2 -meeting_schedule,do i have any meeting to go to today?,original,avail,0 -date,what's the date,original,avail,0 -yes,confirm,original,book,1 -goodbye,i'll leave,parrot,bye,2 -reminder_update,please remember me later,parrot,resched,5 -goodbye,later good luck,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -no,what isn't true?,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -no,i believe it's wrong,parrot,cancel,3 -yes,accept,parrot,book,1 -calendar,please check my calendar for saturday,parrot,avail,0 -how_busy,show me the hours of use of the restaurant?,parrot,avail,0 -schedule_meeting,are there meeting rooms available between 10 and 4?,parrot,book,1 -date,what's tomorrow's date,original,avail,0 -yes,yeah yeah,lambada,book,1 -calendar,can you see what's on my calendar for february 14?,parrot,avail,0 -greeting,how's life,original,greet,4 -reminder_update,can you add a reminder to my list?,parrot,resched,5 -greeting,"hello, how are things going",lambada,greet,4 -yes,confirmed,original,book,1 -no,naw,original,cancel,3 -yes,say yes,lambada,book,1 -calendar_update,i want to remove this date from my calendar,parrot,resched,5 -goodbye,peace out!,original,bye,2 -greeting,hi there alexa,original,greet,4 -date,today?,parrot,avail,0 -no,it's completely false,parrot,cancel,3 -greeting,"hello, ai",original,greet,4 -goodbye,nice talk,lambada,bye,2 -yes,positive,original,book,1 -greeting,hello bs,parrot,greet,4 -how_busy,is there any wait time at bjs now?,parrot,avail,0 -thank_you,i'm grateful for you,parrot,bye,2 -greeting,how's my feeling?,parrot,greet,4 -reminder_update,add a note,parrot,resched,5 -yes,positive,original,book,1 -greeting,hello how's it going,original,greet,4 -how_busy,should fry be very busy around 7pm?,parrot,avail,0 -goodbye,good talk,parrot,bye,2 -no,nope,original,cancel,3 -greeting,hey,original,greet,4 -how_busy,how long is the wait time for a table at the red robin?,parrot,avail,0 -yes,10-Apr,original,book,1 -how_busy,how long is the wait at chicken breast tenders,lambada,avail,0 -yes,yeah yeah,lambada,book,1 -date,what date is that?,parrot,avail,0 -greeting,hey,original,greet,4 -yes,indeed,original,book,1 -yes,i would say yes,lambada,book,1 -date,current date,original,avail,0 -no,it's not right,parrot,cancel,3 -schedule_meeting,i want to check whether there's a meeting room available between 6 and 8,lambada,book,1 -yes,that's correct,original,book,1 -date,what is current day?,parrot,avail,0 -goodbye,just relax,parrot,bye,2 -no,that's untrue,parrot,cancel,3 -no,is a lie?,parrot,cancel,3 -yes,accepted,original,book,1 -thank_you,you are grateful for my support,parrot,bye,2 -greeting,hey fellow,parrot,greet,4 -goodbye,see ya!,original,bye,2 -yes,yes that's it,original,book,1 -yes,definitely,original,book,1 -yes,yeah yeah,lambada,book,1 -no,negative definitely,parrot,cancel,3 -goodbye,come on soon,parrot,bye,2 -greeting,nice day,lambada,greet,4 -date,what month is it today?,lambada,avail,0 -goodbye,peace,original,bye,2 -no,negating,parrot,cancel,3 -thank_you,thanks so much,original,bye,2 -greeting,how ya doing,lambada,greet,4 -goodbye,bye-bye,original,bye,2 -yes,seems true,parrot,book,1 -goodbye,bye,original,bye,2 -date,tell me what day?,parrot,avail,0 -date,in seven days?,parrot,avail,0 -goodbye,wonderful conversation,lambada,bye,2 -how_busy,i want to know how busy the olive garden is at 6pm,parrot,avail,0 -goodbye,later good luck,parrot,bye,2 -greeting,bonjour,original,greet,4 -yes,right,parrot,book,1 -date,today?,parrot,avail,0 -yes,absolutely,original,book,1 -thank_you,thank you,original,bye,2 -calendar_update,cancel all events on my calendar,lambada,resched,5 -no,but that's not true,parrot,cancel,3 -thank_you,gracias,original,bye,2 -no,it's very wrong,parrot,cancel,3 -no,nope,original,cancel,3 -thank_you,nice,parrot,bye,2 -meeting_schedule,time of meeting?,parrot,avail,0 -goodbye,goodbye no problem,parrot,bye,2 -goodbye,farewell!,original,bye,2 -how_busy,ihop around 10 pm,parrot,avail,0 -yes,i'll check that out,parrot,book,1 -how_busy,how long is the wait in assagios today?,parrot,avail,0 -goodbye,the talks were pleasant,parrot,bye,2 -yes,i agree,original,book,1 -goodbye,take a rest,parrot,bye,2 -yes,i know,parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -greeting,aho,parrot,greet,4 -thank_you,i'm grateful,original,bye,2 -greeting,hello,original,greet,4 -thank_you,thanks,original,bye,2 -meeting_schedule,when is my meeting with ann? '',parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -no,say negative,parrot,cancel,3 -goodbye,catch you later,original,bye,2 -greeting,hi,original,greet,4 -goodbye,i'm gone,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -goodbye,talk to me soon,parrot,bye,2 -calendar,know what's on my calendar for march 15?,parrot,avail,0 -no,not really,original,cancel,3 -no,FALSE,lambada,cancel,3 -greeting,welcome,parrot,greet,4 -goodbye,later!,original,bye,2 -yes,absolutely!,original,book,1 -yes,accepted,original,book,1 -yes,yup,original,book,1 -calendar_update,make sure the events on my calendar for march 30 2019 are clear,parrot,resched,5 -thank_you,what you asked me to do it's been great,parrot,bye,2 -thank_you,your answer is appreciated,original,bye,2 -calendar,tell me what's on my calendar for may 3?,parrot,avail,0 -date,how many days from now,parrot,avail,0 -goodbye,fairwell,original,bye,2 -calendar_update,remove lunch with jeff from my calendar for may 3rd,parrot,resched,5 -meeting_schedule,what are meetings today?,parrot,avail,0 -no,negative,original,cancel,3 -greeting,"hello, anyone there",original,greet,4 -no,negation,parrot,cancel,3 -how_busy,how much time will it take to get a table at chili's,lambada,avail,0 -greeting,salutations!,original,greet,4 -greeting,welcome,parrot,greet,4 -goodbye,glad to talk,parrot,bye,2 -no,negatory?,parrot,cancel,3 -yes,all right,original,book,1 -no,that's wrong,original,cancel,3 -no,"please, no",original,cancel,3 -meeting_schedule,have a meeting today?,parrot,avail,0 -greeting,hey what's up,original,greet,4 -yes,positive,original,book,1 -yes,that is true,lambada,book,1 -no,yes that's false,lambada,cancel,3 -goodbye,later,original,bye,2 -no,negative sure,parrot,cancel,3 -goodbye,it's over,parrot,bye,2 -thank_you,i appreciate your assistance,parrot,bye,2 -thank_you,appreciated,original,bye,2 -greeting,hello,original,greet,4 -schedule_meeting,please schedule a meeting,parrot,book,1 -no,that's incorrect!,original,cancel,3 -greeting,how're you?,parrot,greet,4 -meeting_schedule,what's the time of meeting?,parrot,avail,0 -date,what's the date now,parrot,avail,0 -how_busy,how long will the wait be at noon,lambada,avail,0 -yes,it is definitely affirmative,original,book,1 -thank_you,good job,lambada,bye,2 -meeting_schedule,are there meetings scheduled today?,parrot,avail,0 -reminder_update,i need to take out the garbage please remind me,parrot,resched,5 -goodbye,greetings,parrot,bye,2 -calendar,show me the events in my calendar for march 23?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -greeting,aho,parrot,greet,4 -no,no,lambada,cancel,3 -no,it's no,parrot,cancel,3 -no,i'll pass,original,cancel,3 -yes,yay,lambada,book,1 -goodbye,tootles?,parrot,bye,2 -calendar,do you have anything planned for april 15?,parrot,avail,0 -no,it's not a fact,parrot,cancel,3 -yes,"yup, that's true",original,book,1 -cancel_reservation,please cancel my reservation for joe by the end of the month,lambada,cancel,3 -goodbye,tootles?,parrot,bye,2 -no,that is overwhelmingly wrong,lambada,cancel,3 -thank_you,i'm really thankful,parrot,bye,2 -yes,facts,original,book,1 -reminder_update,please remember to do this later,parrot,resched,5 -reminder_update,keep an eye on me,parrot,resched,5 -goodbye,goodnight,original,bye,2 -schedule_meeting,"i need to schedule meeting room for monday at 2:30 pm, please",original,book,1 -greeting,bonjour,original,greet,4 -greeting,what's happened?,parrot,greet,4 -greeting,salutations!,original,greet,4 -greeting,whats up,original,greet,4 -schedule_meeting,i need you to schedule a meeting with marnie for 9am,lambada,book,1 -no,naw,parrot,cancel,3 -calendar_update,add a farm trip to my calendar for friday,parrot,resched,5 -meeting_schedule,when is my next meeting?,parrot,avail,0 -greeting,how is everything?,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -reminder_update,make me remember,parrot,resched,5 -yes,correct,original,book,1 -greeting,hiya,original,greet,4 -goodbye,bye bye,lambada,bye,2 -thank_you,thanks for responding,parrot,bye,2 -no,no!,original,cancel,3 -no,naw,parrot,cancel,3 -how_busy,is ihop busy at 5?,parrot,avail,0 -greeting,what's new,lambada,greet,4 -goodbye,have fun?,lambada,bye,2 -goodbye,talk to me later,parrot,bye,2 -greeting,hello good day,parrot,greet,4 -goodbye,later!,original,bye,2 -yes,sure thing,original,book,1 -goodbye,i'm out,parrot,bye,2 -no,negative,original,cancel,3 -thank_you,you were so nice,parrot,bye,2 -no,so that's no,parrot,cancel,3 -no,FALSE,original,cancel,3 -yes,i'd say it's true,parrot,book,1 -how_busy,how busy is ihop typically around 8 pm,lambada,avail,0 -yes,yeap,original,book,1 -reminder_update,i'd like you to remind me to do something,parrot,resched,5 -goodbye,"later, good luck",lambada,bye,2 -goodbye,i must say goodbye,original,bye,2 -greeting,how're you?,parrot,greet,4 -no,no thank you,original,cancel,3 -schedule_meeting,make a meeting for me,parrot,book,1 -meeting_schedule,can you tell me my scheduled meetings for today only please,parrot,avail,0 -goodbye,ai goodbye,original,bye,2 -goodbye,peace,original,bye,2 -yes,10-Apr,original,book,1 -thank_you,i'm grateful,original,bye,2 -no,FALSE,lambada,cancel,3 -thank_you,thank you?,parrot,bye,2 -yes,i know,parrot,book,1 -goodbye,it's over,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -yes,yep,original,book,1 -no,nothing,parrot,cancel,3 -meeting_schedule,i'd like to know how many meetings i've had today,parrot,avail,0 -goodbye,have fun?,lambada,bye,2 -yes,definitely,original,book,1 -how_busy,what time i should wait when i go to the restaurant?,lambada,avail,0 -reminder_update,i have to set a reminder for myself,parrot,resched,5 -yes,just right,parrot,book,1 -no,that isn't the right answer,original,cancel,3 -greeting,what am i feeling?,lambada,greet,4 -greeting,hello,original,greet,4 -meeting_schedule,time of meeting?,parrot,avail,0 -yes,"yep, that's right",original,book,1 -greeting,hola,original,greet,4 -cancel_reservation,cancel my reservation with robert at the red robin,parrot,cancel,3 -greeting,how's that hanging?,parrot,greet,4 -goodbye,"great talk, thanks for coming",lambada,bye,2 -yes,i agree,original,book,1 -thank_you,thanks!,original,bye,2 -meeting_schedule,when is today's meeting?,lambada,avail,0 -no,i'd rather not,parrot,cancel,3 -calendar,is there a new event on my calendar for april 1st?,parrot,avail,0 -greeting,how's otc?,parrot,greet,4 -no,no?,parrot,cancel,3 -how_busy,tell me the time to wait if i want to visit the cheesecake factory?,parrot,avail,0 -reminder_update,remember the meeting tomorrow,parrot,resched,5 -goodbye,we can talk later,parrot,bye,2 -meeting_schedule,do you have a meeting today from 5 to 7?,parrot,avail,0 -thank_you,thank you!,original,bye,2 -greeting,whats up?,parrot,greet,4 -cancel_reservation,i have to cancel my reservation at tostada,parrot,cancel,3 -how_busy,what will the olive garden be like at 10 am?,parrot,avail,0 -yes,facts,original,book,1 -yes,TRUE,lambada,book,1 -greeting,how's life?,parrot,greet,4 -goodbye,great conversation,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -meeting_schedule,is there any meeting today?,parrot,avail,0 -greeting,tell me what you feel?,parrot,greet,4 -goodbye,adios ai,original,bye,2 -goodbye,later goodbye,parrot,bye,2 -no,it's so negative,parrot,cancel,3 -goodbye,"thanks, bye",original,bye,2 -no,no good,original,cancel,3 -no,it's no,parrot,cancel,3 -meeting_schedule,when should i have my meeting?,parrot,avail,0 -no,nay,original,cancel,3 -no,it's negative,parrot,cancel,3 -greeting,how's idy doing,lambada,greet,4 -goodbye,adios,original,bye,2 -no,that's totally wrong!,original,cancel,3 -greeting,how is life treating you,original,greet,4 -thank_you,your assistance is appreciated,parrot,bye,2 -no,most definitely false,parrot,cancel,3 -greeting,hey,original,greet,4 -greeting,how ya doin,original,greet,4 -yes,yes you are,original,book,1 -no,nay,original,cancel,3 -yes,accept,parrot,book,1 -greeting,hiya,original,greet,4 -calendar,what's the tuesday calendar?,parrot,avail,0 -how_busy,tell me the time it takes to eat in olive garden,parrot,avail,0 -greeting,salutations!,original,greet,4 -greeting,tell me what's going on,parrot,greet,4 -calendar,what's the schedule for a scheduled event for october 14th,lambada,avail,0 -goodbye,", goodbye",lambada,bye,2 -date,list the next month?,parrot,avail,0 -greeting,how've you been?,parrot,greet,4 -no,certainly false,parrot,cancel,3 -greeting,hey,original,greet,4 -no,that's completely false,original,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -yes,ok,original,book,1 -no,FALSE,original,cancel,3 -yes,TRUE,lambada,book,1 -yes,i just said it,parrot,book,1 -no,i say negative,original,cancel,3 -greeting,heyo,original,greet,4 -goodbye,it's over,parrot,bye,2 -cancel_reservation,cancel dinner reservation tonight,parrot,cancel,3 -no,that's incorrect!,original,cancel,3 -goodbye,lovely conversation,parrot,bye,2 -yes,huh huh,parrot,book,1 -greeting,hello what is happening,lambada,greet,4 -reminder_update,please check the steak,parrot,resched,5 -no,please no,parrot,cancel,3 -greeting,hiya!,original,greet,4 -no,is it a lie,parrot,cancel,3 -how_busy,how long do i have to wait before i go to the restaurant?,parrot,avail,0 -goodbye,for now,parrot,bye,2 -schedule_meeting,tell me the way to find a new meeting?,parrot,book,1 -thank_you,why thank you?,original,bye,2 -goodbye,i'm out,parrot,bye,2 -yes,affirmitive,original,book,1 -yes,affirmitive,original,book,1 -greeting,how're you?,parrot,greet,4 -thank_you,oh sweet thanks,original,bye,2 -meeting_schedule,did i schedule a meeting today for you?,parrot,avail,0 -yes,"that is true, yes",original,book,1 -goodbye,", goodbye",lambada,bye,2 -thank_you,i'm glad you met,parrot,bye,2 -yes,yeah,original,book,1 -greeting,ahoy,lambada,greet,4 -no,"no, that is wrong",original,cancel,3 -how_busy,does the restaurant get crowded during the lunch hour?,parrot,avail,0 -how_busy,what time should i expect to be seated in this restaurant?,parrot,avail,0 -calendar,please read my calendar,parrot,avail,0 -yes,"yes, that's correct",original,book,1 -meeting_schedule,i'd like to know how many meetings i've got today,parrot,avail,0 -thank_you,thank ya!,original,bye,2 -thank_you,thanks so much ai,original,bye,2 -yes,confirmed,original,book,1 -yes,yeah,original,book,1 -how_busy,what's the wait time at the cheesecake factory?,parrot,avail,0 -reminder_update,make a reminder,parrot,resched,5 -yes,that's true,original,book,1 -yes,sure,original,book,1 -goodbye,"nice talk, goodbye",lambada,bye,2 -goodbye,good see you,lambada,bye,2 -yes,yeap,original,book,1 -yes,huh,parrot,book,1 -yes,it'll be yes,parrot,book,1 -yes,thats right,original,book,1 -yes,of course,original,book,1 -yes,that is accurate,original,book,1 -no,nope it's not true,parrot,cancel,3 -goodbye,later thanks for the conversation,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -how_busy,if i go to the olive garden at 4 pm how busy it will be,parrot,avail,0 -thank_you,many thanks,original,bye,2 -goodbye,i'm leaving now,lambada,bye,2 -yes,okay,original,book,1 -thank_you,why thank you?,original,bye,2 -reminder_update,i'd like to have a reminder made,original,resched,5 -thank_you,thanks so much for helping me,parrot,bye,2 -greeting,how's ai doing?,parrot,greet,4 -schedule_meeting,i need an agenda,parrot,book,1 -greeting,hello,original,greet,4 -goodbye,it's time to run,parrot,bye,2 -how_busy,how long will i have to wait before i can eat at the macaroni grill,parrot,avail,0 -no,nope,original,cancel,3 -no,negatory,original,cancel,3 -goodbye,say goodbye now,parrot,bye,2 -goodbye,adios!,original,bye,2 -how_busy,is this place packed at night?,parrot,avail,0 -yes,great,original,book,1 -date,what's the current date,original,avail,0 -goodbye,bye bye,lambada,bye,2 -goodbye,sayonara,original,bye,2 -yes,i guess,parrot,book,1 -how_busy,tell me how busy the chilies will be between 11 and 2?,parrot,avail,0 -date,what day of the week is today?,parrot,avail,0 -thank_you,thank you for my help,original,bye,2 -goodbye,later then,lambada,bye,2 -yes,confirmed,original,book,1 -thank_you,so grateful,parrot,bye,2 -thank_you,i appreciate the assistance,original,bye,2 -greeting,"hello, anyone there",original,greet,4 -goodbye,afterward,parrot,bye,2 -goodbye,it's time for goodbye,parrot,bye,2 -schedule_meeting,how do you schedule a meeting with me?,parrot,book,1 -date,what day of the week do we have?,parrot,avail,0 -goodbye,you're done,parrot,bye,2 -goodbye,good bye,original,bye,2 -goodbye,adios,original,bye,2 -goodbye,good bye,original,bye,2 -yes,it makes sense,parrot,book,1 -goodbye,goodbye bye,parrot,bye,2 -goodbye,goodbye,original,bye,2 -goodbye,get there soon,lambada,bye,2 -yes,positive,original,book,1 -goodbye,see ya,lambada,bye,2 -no,is very false,parrot,cancel,3 -yes,so it's real,parrot,book,1 -yes,great,original,book,1 -greeting,"hello, ai",original,greet,4 -greeting,hi how's everything going?,parrot,greet,4 -goodbye,a good conversation,parrot,bye,2 -yes,yay,lambada,book,1 -thank_you,appreciated,original,bye,2 -yes,correct,original,book,1 -yes,sure,original,book,1 -yes,yup,original,book,1 -goodbye,bye bye,lambada,bye,2 -date,what's today?,parrot,avail,0 -yes,indeed,original,book,1 -goodbye,peace,original,bye,2 -reminder_update,remind me,original,resched,5 -greeting,hiya,original,greet,4 -goodbye,good bye then,original,bye,2 -greeting,hey fellow,parrot,greet,4 -goodbye,thank you for my time i'll see you soon,parrot,bye,2 -cancel_reservation,im not going to dinner tonight,original,cancel,3 -goodbye,bye!,original,bye,2 -goodbye,goodbye ai,parrot,bye,2 -yes,it's certainly positive,parrot,book,1 -yes,okay,original,book,1 -greeting,hey,original,greet,4 -no,i would prefer not,original,cancel,3 -yes,is true,parrot,book,1 -thank_you,thank you ai,parrot,bye,2 -date,what day are we?,parrot,avail,0 -schedule_meeting,can you schedule a meeting with tom at 3pm?,parrot,book,1 -greeting,wassup,original,greet,4 -yes,accepted,original,book,1 -greeting,show me what's new,parrot,greet,4 -date,what the day is?,parrot,avail,0 -no,it's a wrong answer,parrot,cancel,3 -meeting_schedule,will i have any meetings today from 9 to 11,parrot,avail,0 -yes,affirmative,original,book,1 -greeting,hey hey!,original,greet,4 -yes,not a lie,parrot,book,1 -yes,"yes, that's accurate",original,book,1 -calendar,tell me what's on my calendar for thursday?,parrot,avail,0 -goodbye,it's over,parrot,bye,2 -date,what the day?,parrot,avail,0 -greeting,hello,original,greet,4 -cancel_reservation,can you cancel my reservation for dinner at kelley's at 7 pm,parrot,cancel,3 -reminder_update,i'd like a reminder,parrot,resched,5 -yes,that's right,original,book,1 -goodbye,adios!,original,bye,2 -goodbye,i have to get going,original,bye,2 -greeting,how is everything going?,parrot,greet,4 -no,but it's false,parrot,cancel,3 -yes,positive,parrot,book,1 -date,is tomorrow's date?,parrot,avail,0 -yes,yeah,original,book,1 -yes,certainly,parrot,book,1 -thank_you,i'm grateful,original,bye,2 -cancel_reservation,i made a reservation for dinner,parrot,cancel,3 -yes,TRUE,lambada,book,1 -greeting,how's my life?,parrot,greet,4 -no,definitely not,original,cancel,3 -thank_you,thank you for the reply,lambada,bye,2 -yes,"yes, that's a fact",lambada,book,1 -yes,true is my response,original,book,1 -schedule_meeting,please tell me whether there are meeting rooms available between 1 and 4?,parrot,book,1 -goodbye,bye-bye,original,bye,2 -yes,ok,original,book,1 -yes,perfect,parrot,book,1 -yes,ya,original,book,1 -goodbye,i had a good conversation with you,parrot,bye,2 -goodbye,bye for now,original,bye,2 -greeting,how did you feel?,parrot,greet,4 -how_busy,wait for the red lobster?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,facts,original,book,1 -yes,positive,original,book,1 -no,negating,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -schedule_meeting,i want to check if there's a meeting room between 6 and 8,parrot,book,1 -goodbye,farewell!,original,bye,2 -no,no?,parrot,cancel,3 -meeting_schedule,meeting today,parrot,avail,0 -thank_you,why do you thank you?,parrot,bye,2 -yes,say yes,lambada,book,1 -thank_you,thanks for my support,parrot,bye,2 -reminder_update,i'd like to remind you of my holidays,parrot,resched,5 -greeting,hi,original,greet,4 -meeting_schedule,please read my schedule,parrot,avail,0 -no,nothing good,parrot,cancel,3 -how_busy,how long will it take me to sit at the red lobster,parrot,avail,0 -greeting,how is idy?,parrot,greet,4 -greeting,"hello, friend",original,greet,4 -no,that's negative,parrot,cancel,3 -yes,confirm,original,book,1 -goodbye,the chat was great,parrot,bye,2 -yes,all right,parrot,book,1 -greeting,hello there ai,original,greet,4 -yes,yeap,original,book,1 -no,nay,original,cancel,3 -thank_you,thankyou,parrot,bye,2 -greeting,salutation,parrot,greet,4 -yes,"yes, that's correct",original,book,1 -yes,you got it,parrot,book,1 -greeting,hey,original,greet,4 -yes,positive,parrot,book,1 -yes,of course,original,book,1 -no,i don't like that,parrot,cancel,3 -thank_you,well done,parrot,bye,2 -greeting,"hey, ai",original,greet,4 -thank_you,thanks for helping,original,bye,2 -greeting,good morning ai,parrot,greet,4 -no,that's erroneous,parrot,cancel,3 -date,current date,original,avail,0 -thank_you,you've been a great help,original,bye,2 -no,FALSE,lambada,cancel,3 -how_busy,how long will it take for me to get a seat at the outback steakhouse,lambada,avail,0 -yes,obviously,parrot,book,1 -how_busy,does pizza have a long wait?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -yes,absolutely correct,original,book,1 -reminder_update,please remind me again,parrot,resched,5 -meeting_schedule,tell me when my meeting with john is scheduled?,lambada,avail,0 -thank_you,i have to thank you for your time,parrot,bye,2 -greeting,salutations!,original,greet,4 -goodbye,thanks for my help goodbye,parrot,bye,2 -no,nope not it,original,cancel,3 -greeting,whats new,lambada,greet,4 -goodbye,talk later,original,bye,2 -thank_you,thank you for my vacation,lambada,bye,2 -meeting_schedule,when is the meeting?,parrot,avail,0 -greeting,i need to know how you're doing?,parrot,greet,4 -how_busy,is the wait long in this italian restaurant?,parrot,avail,0 -greeting,hey how's it going?,parrot,greet,4 -meeting_schedule,talk to me about my schedule for meetings,parrot,avail,0 -goodbye,goodbye bye,parrot,bye,2 -no,it is false,original,cancel,3 -yes,accepted,original,book,1 -greeting,salutation,parrot,greet,4 -how_busy,tell me the wait for a seat in the cheese cake factory?,parrot,avail,0 -no,nada,original,cancel,3 -thank_you,nice,parrot,bye,2 -no,certainly not,original,cancel,3 -yes,absolutely!,original,book,1 -no,"no, it is not true",lambada,cancel,3 -yes,confirm,original,book,1 -goodbye,peace,original,bye,2 -how_busy,how busy will black bean be around 11am,parrot,avail,0 -thank_you,appreciated,original,bye,2 -greeting,how does ai do?,parrot,greet,4 -reminder_update,add a reminder to pick up milk in the store,parrot,resched,5 -goodbye,afterward,parrot,bye,2 -meeting_schedule,when will i meet richard?,parrot,avail,0 -reminder_update,can you set a reminder for this meeting?,parrot,resched,5 -greeting,hey how do you feel?,parrot,greet,4 -calendar_update,remove my date with liz from my calendar on april 1 '',parrot,resched,5 -greeting,salutations,parrot,greet,4 -greeting,whats up,original,greet,4 -yes,confirm,original,book,1 -goodbye,later!,original,bye,2 -no,negation,parrot,cancel,3 -thank_you,i appreciate that,original,bye,2 -no,naw,parrot,cancel,3 -calendar,is there a date on my calendar for january 1st?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -thank_you,your help is appreciated,original,bye,2 -no,not that one,original,cancel,3 -how_busy,tell me how busy olive garden will be at 6 pm,parrot,avail,0 -no,that's overwhelmingly negative,parrot,cancel,3 -no,"no, that's wrong",original,cancel,3 -thank_you,so grateful for my pay check,parrot,bye,2 -how_busy,how busy the restaurant will be in advance?,parrot,avail,0 -thank_you,and i appreciate my gesture,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -no,say negative,parrot,cancel,3 -how_busy,how busy is mishawaka?,parrot,avail,0 -yes,absolutely,original,book,1 -greeting,how is my day?,parrot,greet,4 -no,no thank you,original,cancel,3 -goodbye,later,original,bye,2 -goodbye,bye bye,lambada,bye,2 -goodbye,goodbye,original,bye,2 -no,so that's no,parrot,cancel,3 -greeting,let me know how you are doing today?,parrot,greet,4 -no,negation,parrot,cancel,3 -yes,yeah,original,book,1 -greeting,hello,original,greet,4 -greeting,how were you?,parrot,greet,4 -yes,i'll say yes,parrot,book,1 -no,nope,original,cancel,3 -reminder_update,maybe a reminder?,parrot,resched,5 -goodbye,for now,parrot,bye,2 -how_busy,when is red lobster busy?,parrot,avail,0 -no,nada,original,cancel,3 -how_busy,how long is the wait for being seated at the cheese cake factory,lambada,avail,0 -yes,all right,original,book,1 -yes,confirm,original,book,1 -greeting,hi,original,greet,4 -goodbye,greetings,parrot,bye,2 -yes,yep,original,book,1 -how_busy,how long before i can eat chic fil a,parrot,avail,0 -greeting,hello there!,original,greet,4 -how_busy,what is the wait time at chipotle?,lambada,avail,0 -how_busy,i want to know if rancho feria is busy at 8,lambada,avail,0 -greeting,and how's it going,parrot,greet,4 -calendar,what's my plan for january 19th?,parrot,avail,0 -goodbye,"later, goodbye",lambada,bye,2 -yes,yup,original,book,1 -yes,yeap,original,book,1 -thank_you,you're welcome,parrot,bye,2 -yes,10-Apr,original,book,1 -no,not really,original,cancel,3 -goodbye,im leaving,parrot,bye,2 -no,no that's not correct,parrot,cancel,3 -yes,is true,parrot,book,1 -thank_you,my thanks,parrot,bye,2 -thank_you,appreciated,original,bye,2 -greeting,bonjour,original,greet,4 -date,what's the day today,original,avail,0 -meeting_schedule,are there meetings between 11 and 4 pm?,parrot,avail,0 -reminder_update,maybe a reminder?,parrot,resched,5 -yes,i know,parrot,book,1 -greeting,what's happening?,parrot,greet,4 -yes,very true,original,book,1 -calendar_update,remove all events from my calendar for friday,parrot,resched,5 -yes,all right,original,book,1 -yes,indeed,parrot,book,1 -yes,affirmative,original,book,1 -goodbye,goodbye ai,parrot,bye,2 -yes,ok,original,book,1 -thank_you,thanks for coming,parrot,bye,2 -how_busy,is mr joes pizza available for a seating?,original,avail,0 -yes,sure,original,book,1 -no,FALSE,lambada,cancel,3 -yes,my answer is yes,parrot,book,1 -thank_you,i appreciate the help,original,bye,2 -date,what will the date be tomorrow?,lambada,avail,0 -goodbye,later,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,can you tell me how long approximate wait times are at cheesecake factory?,original,avail,0 -date,date tomorrow?,parrot,avail,0 -thank_you,thank you for the vacation,parrot,bye,2 -yes,i'm sure it's true,parrot,book,1 -calendar_update,remove all calendar entries on march 13th,parrot,resched,5 -meeting_schedule,tell me if you have a meeting with liz today?,parrot,avail,0 -cancel_reservation,cancel my reservation for bob at red robin,original,cancel,3 -date,what is current day?,parrot,avail,0 -how_busy,how long can you expect to wait for a table in an italian restaurant?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -cancel_reservation,can i cancel my reservation for dinner tonight please?,parrot,cancel,3 -thank_you,you're the best!,original,bye,2 -goodbye,buhbye now,lambada,bye,2 -how_busy,is the restaurant crowded?,parrot,avail,0 -calendar_update,"i want the events on my calendar for march 20th, 2019 to be cleared",original,resched,5 -yes,it is a true,original,book,1 -greeting,welcome,parrot,greet,4 -date,what's the day today?,parrot,avail,0 -goodbye,later!,original,bye,2 -yes,perfect,parrot,book,1 -how_busy,is mcdonalds busy?,parrot,avail,0 -meeting_schedule,what's the meeting time for today,lambada,avail,0 -greeting,how's everything?,parrot,greet,4 -no,nothing good,parrot,cancel,3 -no,negative,original,cancel,3 -goodbye,good luck,lambada,bye,2 -yes,definitely,original,book,1 -goodbye,good conversation,parrot,bye,2 -greeting,what's happening,original,greet,4 -how_busy,would you be able to tell me how busy outback steakhouse will be at 7,lambada,avail,0 -yes,accepted,original,book,1 -no,negative,original,cancel,3 -greeting,heller,original,greet,4 -no,i'll say no,parrot,cancel,3 -goodbye,as regards,parrot,bye,2 -thank_you,nice,parrot,bye,2 -goodbye,see ya,original,bye,2 -reminder_update,i need to remember to wash the dishes,parrot,resched,5 -greeting,hows are ya,original,greet,4 -goodbye,thanks for the talk,lambada,bye,2 -yes,accept,parrot,book,1 -goodbye,bye,original,bye,2 -goodbye,goodnight,original,bye,2 -thank_you,your response is appreciated,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -thank_you,my sincere thanks,parrot,bye,2 -yes,yup,original,book,1 -goodbye,go easy,parrot,bye,2 -how_busy,what's the wait time at this restaurant?,parrot,avail,0 -calendar_update,i'm gonna remove fishing from my calendar for soccer,parrot,resched,5 -goodbye,bye-bye,original,bye,2 -goodbye,buhbye now,lambada,bye,2 -no,it's no,parrot,cancel,3 -greeting,hey what's up,original,greet,4 -greeting,how's it hanging?,parrot,greet,4 -greeting,how's everything?,parrot,greet,4 -date,what's today,original,avail,0 -greeting,how's idy?,parrot,greet,4 -greeting,hello bs,parrot,greet,4 -yes,"yes, that is accurate",original,book,1 -yes,indeed,original,book,1 -schedule_meeting,i need help with setting a meeting,parrot,book,1 -no,absolutely not,original,cancel,3 -no,that's very false,parrot,cancel,3 -greeting,"hi, how are you doing",lambada,greet,4 -greeting,hiya!,original,greet,4 -goodbye,farewell,original,bye,2 -goodbye,good luck later,parrot,bye,2 -no,this is false,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -yes,confirm,original,book,1 -date,today?,parrot,avail,0 -thank_you,many thank,original,bye,2 -thank_you,i appreciate that,original,bye,2 -how_busy,is the dinner time usually longer in the pizza place?,parrot,avail,0 -no,absolutely not,original,cancel,3 -greeting,welcome,parrot,greet,4 -greeting,ahoy,lambada,greet,4 -goodbye,"thanks for chatting, later",original,bye,2 -how_busy,how busy is the cheesecake factory at noon?,parrot,avail,0 -goodbye,i'll go,parrot,bye,2 -goodbye,bye,original,bye,2 -greeting,i'll tell you how it goes,parrot,greet,4 -goodbye,later goodbye,parrot,bye,2 -no,not really,original,cancel,3 -reminder_update,you can remind me,parrot,resched,5 -greeting,hola!,original,greet,4 -no,certainly false,parrot,cancel,3 -greeting,what's happening?,parrot,greet,4 -how_busy,can i find out the average wait times at olive garden?,lambada,avail,0 -no,negative,original,cancel,3 -no,nope,original,cancel,3 -yes,"yep, that's correct",lambada,book,1 -date,tell me the month and day?,parrot,avail,0 -thank_you,thank you for my response,lambada,bye,2 -no,no,lambada,cancel,3 -thank_you,you helped,parrot,bye,2 -no,not really,original,cancel,3 -greeting,hola,original,greet,4 -greeting,what's my feeling?,parrot,greet,4 -reminder_update,remember to call bob,parrot,resched,5 -greeting,hey it's up,lambada,greet,4 -no,no way,original,cancel,3 -goodbye,come on soon,parrot,bye,2 -goodbye,adios,original,bye,2 -yes,ya,original,book,1 -yes,definitely,original,book,1 -greeting,nice day,lambada,greet,4 -goodbye,i'm outta here!,original,bye,2 -no,no,lambada,cancel,3 -calendar_update,remove celebrate anniversary from my calendar,original,resched,5 -greeting,ai how are you doing on this fine day,original,greet,4 -no,no,lambada,cancel,3 -no,nada,original,cancel,3 -goodbye,goodnight,original,bye,2 -thank_you,i'm really grateful,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -thank_you,okay thanks,original,bye,2 -goodbye,tootles,original,bye,2 -no,nada,original,cancel,3 -no,invalid,original,cancel,3 -date,what's the date?,parrot,avail,0 -calendar,tell me my calendar for today?,parrot,avail,0 -meeting_schedule,are there meetings between 5 and 6 today?,parrot,avail,0 -calendar,please tell me what is on my calendar for march 05 2019?,parrot,avail,0 -date,what's the year?,parrot,avail,0 -thank_you,i appeciate it,parrot,bye,2 -greeting,"howdy, what's new",original,greet,4 -greeting,bonjour,original,greet,4 -yes,yeah yeah,lambada,book,1 -yes,you got it,original,book,1 -how_busy,ihop is usually busy between 5 and 6pm?,parrot,avail,0 -reminder_update,i want to remind myself to eat at work,lambada,resched,5 -no,it is no,original,cancel,3 -no,hell nah,original,cancel,3 -goodbye,good conversation,parrot,bye,2 -yes,indeed,parrot,book,1 -yes,is is very much true?,original,book,1 -greeting,all right now?,parrot,greet,4 -cancel_reservation,get rid of my reservation for robbin at the steakhouse,lambada,cancel,3 -date,describe the day?,parrot,avail,0 -thank_you,my gratitude,parrot,bye,2 -yes,just right,parrot,book,1 -yes,good,parrot,book,1 -greeting,hi,original,greet,4 -goodbye,goodbye thank you,parrot,bye,2 -yes,we would say yes,lambada,book,1 -goodbye,tootles,original,bye,2 -calendar,can you list my meeting with frank on my calendar?,parrot,avail,0 -no,not that one,original,cancel,3 -yes,yep,original,book,1 -no,negation,parrot,cancel,3 -greeting,hello bs,parrot,greet,4 -no,that's definitely false,original,cancel,3 -no,not right,parrot,cancel,3 -yes,TRUE,lambada,book,1 -yes,it's true,original,book,1 -yes,that is true,original,book,1 -calendar_update,please add the final exams to my calendar for may 2nd,parrot,resched,5 -no,so that's no,parrot,cancel,3 -thank_you,your assistance is appreciated,parrot,bye,2 -thank_you,really great!,original,bye,2 -yes,agreed,original,book,1 -thank_you,thank you for trying it,parrot,bye,2 -goodbye,bye!,original,bye,2 -how_busy,can i expect a long wait at the outback steakhouse?,parrot,avail,0 -yes,uh-huh,original,book,1 -meeting_schedule,do we meet today?,parrot,avail,0 -no,nothing,parrot,cancel,3 -greeting,are you doing alright?,original,greet,4 -date,what day?,parrot,avail,0 -schedule_meeting,i need a meeting to be scheduled,lambada,book,1 -reminder_update,remind me,original,resched,5 -reminder_update,have i forgotten?,parrot,resched,5 -yes,"agreed, that's valid",original,book,1 -thank_you,many thanks,original,bye,2 -yes,sure,original,book,1 -goodbye,see you soon,original,bye,2 -how_busy,how many people are at the restaurant between 11 and 5?,parrot,avail,0 -yes,agreed,original,book,1 -how_busy,how long is the wait at ihop,lambada,avail,0 -thank_you,nice,parrot,bye,2 -greeting,hey,original,greet,4 -date,what a day is it?,parrot,avail,0 -greeting,how is everything going,original,greet,4 -yes,yup,original,book,1 -yes,yep,original,book,1 -yes,approved,original,book,1 -thank_you,i am grateful,lambada,bye,2 -greeting,nice day,lambada,greet,4 -yes,say positive,parrot,book,1 -yes,agreed,original,book,1 -goodbye,nice talking to you,parrot,bye,2 -reminder_update,make me remember to look at the house,parrot,resched,5 -no,"no, that's not correct",lambada,cancel,3 -yes,approved,original,book,1 -greeting,how are you treated?,parrot,greet,4 -goodbye,fairwell,original,bye,2 -no,"no, don't do that",original,cancel,3 -greeting,whats up?,parrot,greet,4 -meeting_schedule,how many meetings will i have between two and five,parrot,avail,0 -no,it's not correct,parrot,cancel,3 -greeting,how do you feel about acii,lambada,greet,4 -how_busy,how busy will chili be at 6?,parrot,avail,0 -greeting,how is my ai doing?,parrot,greet,4 -no,naw,parrot,cancel,3 -reminder_update,remember for tomorrow's meeting,parrot,resched,5 -thank_you,you give me a lot of thanks,parrot,bye,2 -no,that's a false,lambada,cancel,3 -thank_you,i want to thank you ai,parrot,bye,2 -yes,definitely,original,book,1 -yes,yeap,original,book,1 -calendar,help me find my schedule for january 4,lambada,avail,0 -greeting,aloha,original,greet,4 -how_busy,is the wait long in this italian?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -greeting,ahoy,lambada,greet,4 -thank_you,nice,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,affirmative,original,book,1 -greeting,hola,original,greet,4 -yes,certainly,parrot,book,1 -date,give me today's date,original,avail,0 -no,that is not right,original,cancel,3 -greeting,hola!,original,greet,4 -no,i'd rather not,parrot,cancel,3 -goodbye,later goodbye,parrot,bye,2 -date,today?,parrot,avail,0 -no,no good,original,cancel,3 -greeting,hey how's ot,lambada,greet,4 -date,let me know the date of tomorrow,lambada,avail,0 -calendar_update,please add my appointment to my calendar for may 5,parrot,resched,5 -how_busy,how busy is chili at 7 pm?,parrot,avail,0 -how_busy,don't expect much busy at red lobster around 10 am?,lambada,avail,0 -date,tell me what day?,parrot,avail,0 -no,that's no,parrot,cancel,3 -meeting_schedule,what's my schedule today?,parrot,avail,0 -yes,yay,lambada,book,1 -greeting,aho,parrot,greet,4 -date,what date will it be in six days?,parrot,avail,0 -no,it's no,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -yes,oh-huh,parrot,book,1 -yes,that's right,original,book,1 -how_busy,how long does it take to order pizza in california?,parrot,avail,0 -yes,positive,original,book,1 -how_busy,what do you think about the wait at olive garden right now?,parrot,avail,0 -calendar_update,"make sure events on my calendar for march 1st, 2019 are cleared",lambada,resched,5 -no,"no, definitely not",original,cancel,3 -yes,indeed,parrot,book,1 -how_busy,is there any wait time for bjs right now?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -schedule_meeting,a meeting room for the noon hour,parrot,book,1 -goodbye,this conversation was great,parrot,bye,2 -goodbye,buhbye,original,bye,2 -greeting,have you felt?,parrot,greet,4 -how_busy,can you tell me how busy the olive garden is at 7pm?,parrot,avail,0 -yes,i think that's right,parrot,book,1 -greeting,hiya,original,greet,4 -yes,indeed,original,book,1 -reminder_update,remind me to clean up the room,parrot,resched,5 -meeting_schedule,is my meeting with frank scheduled?,parrot,avail,0 -calendar_update,i have to put my appointment for tomorrow on my calendar,parrot,resched,5 -date,is today the date?,lambada,avail,0 -schedule_meeting,what are meeting rooms between 9 and 10?,parrot,book,1 -meeting_schedule,do you have any meetings between 4 and 5 today?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -goodbye,good talk,parrot,bye,2 -reminder_update,please create a reminder,parrot,resched,5 -greeting,yo,original,greet,4 -thank_you,thank you again,parrot,bye,2 -yes,absolutely!,original,book,1 -no,erroneous,parrot,cancel,3 -no,nay,original,cancel,3 -greeting,yo,original,greet,4 -date,where's the date tomorrow?,parrot,avail,0 -calendar,what is the calendar for march 2?,parrot,avail,0 -no,nope,original,cancel,3 -no,it's overwhelmingly wrong,parrot,cancel,3 -goodbye,regards,original,bye,2 -calendar_update,please add my calendar for the meeting of the staff scheduled for march 1 2019 at 10 am,parrot,resched,5 -goodbye,thank you for the talk take care,parrot,bye,2 -meeting_schedule,when is the meeting?,parrot,avail,0 -how_busy,how long do i have to wait in the ranch?,parrot,avail,0 -cancel_reservation,the reservation i made isn't necessary anymore,lambada,cancel,3 -no,no,lambada,cancel,3 -greeting,aloha,original,greet,4 -how_busy,how busy will chili be if i go to 6 pm?,parrot,avail,0 -yes,indeed,parrot,book,1 -greeting,aloha,original,greet,4 -yes,yes sir,original,book,1 -greeting,so how is everything,original,greet,4 -greeting,whats up?,parrot,greet,4 -meeting_schedule,i need to know if i have meetings from 3 to 6 pm,original,avail,0 -goodbye,later gator!,original,bye,2 -date,today is the date?,parrot,avail,0 -yes,yay,lambada,book,1 -greeting,salutation,parrot,greet,4 -goodbye,see you around,original,bye,2 -goodbye,have to go,parrot,bye,2 -date,i'd like to know what the date is for tomorrow,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -no,nay,original,cancel,3 -goodbye,bye now,original,bye,2 -goodbye,nice talk,lambada,bye,2 -how_busy,can you tell me the current wait time at the restaurant,parrot,avail,0 -yes,yeah,original,book,1 -yes,do that?,original,book,1 -goodbye,thanks for talking,original,bye,2 -date,calender says tomorrow is,original,avail,0 -greeting,hola!,original,greet,4 -schedule_meeting,i must arrange a meeting with jane at 3pm,parrot,book,1 -how_busy,how long do i have to wait if i go to chili's?,parrot,avail,0 -how_busy,how long will it take for me to sit in the olive garden,parrot,avail,0 -reminder_update,what about a reminder?,parrot,resched,5 -thank_you,i'm very thankful,parrot,bye,2 -no,i don't think so,original,cancel,3 -goodbye,regards,original,bye,2 -date,please date,parrot,avail,0 -calendar_update,i need to put an appointment for tomorrow for 10am,lambada,resched,5 -no,say negative,parrot,cancel,3 -greeting,how's it going?,parrot,greet,4 -goodbye,farewell,original,bye,2 -schedule_meeting,i need you to schedule a meeting with bob brown the day after tomorrow,parrot,book,1 -greeting,aloha,original,greet,4 -goodbye,i'm gone,parrot,bye,2 -yes,obviously,parrot,book,1 -how_busy,is the chili busy at 5 pm?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -no,certainly not,original,cancel,3 -date,what year?,parrot,avail,0 -goodbye,regards,original,bye,2 -yes,positive,original,book,1 -yes,indeed,original,book,1 -yes,not a lie,parrot,book,1 -reminder_update,so i don't forget the baby shower this weekend,parrot,resched,5 -no,is not true?,parrot,cancel,3 -how_busy,how long can i expect to wait at this restaurant,lambada,avail,0 -calendar,what do you have planned for february 22nd?,parrot,avail,0 -goodbye,peace,original,bye,2 -thank_you,you've helped,parrot,bye,2 -goodbye,i'm going to the highway,parrot,bye,2 -greeting,how've you been?,parrot,greet,4 -no,that's totally wrong!,original,cancel,3 -yes,yes,original,book,1 -no,FALSE,original,cancel,3 -greeting,how are things,original,greet,4 -no,i don't answer this question,parrot,cancel,3 -yes,that appears true,original,book,1 -yes,i say yes,lambada,book,1 -greeting,salutation,parrot,greet,4 -how_busy,how busy is geoff's grill at 9 pm,lambada,avail,0 -date,what's my day?,parrot,avail,0 -goodbye,talk to me later,parrot,bye,2 -no,hell nah,original,cancel,3 -meeting_schedule,when's my meeting with my dad?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -yes,yup,original,book,1 -yes,that's a fact,parrot,book,1 -goodbye,bye-bye,original,bye,2 -yes,great,original,book,1 -schedule_meeting,can you schedule a meeting with jessica in the office please? ,parrot,book,1 -date,show me the date,original,avail,0 -how_busy,wait at jalapeno ranch?,parrot,avail,0 -goodbye,"later, goodbye",lambada,bye,2 -no,no!,original,cancel,3 -no,not right,parrot,cancel,3 -how_busy,is ihop busy?,parrot,avail,0 -calendar,show the days on my calendar for the first day of school?,parrot,avail,0 -reminder_update,remind me,original,resched,5 -how_busy,is the mexican place crowded?,parrot,avail,0 -no,negatory,original,cancel,3 -no,invalid,original,cancel,3 -goodbye,adios,original,bye,2 -yes,yeah yeah,lambada,book,1 -goodbye,cya later,original,bye,2 -greeting,hello bs,parrot,greet,4 -thank_you,thanks for helping,original,bye,2 -greeting,hey hey!,original,greet,4 -yes,agreed,original,book,1 -goodbye,later!,original,bye,2 -greeting,hey there!,original,greet,4 -thank_you,your help is appreciated,original,bye,2 -how_busy,check to see how long i'd have to wait if i went to the outback steak house,parrot,avail,0 -yes,exactly right,original,book,1 -yes,affirmitive,original,book,1 -no,negating,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -no,that's not right?,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -thank_you,gracias,original,bye,2 -how_busy,waiting at cheeseburgers?,parrot,avail,0 -how_busy,how busy is java bean at 6 pm,lambada,avail,0 -greeting,whats new,lambada,greet,4 -greeting,what is going on?,parrot,greet,4 -greeting,aho,parrot,greet,4 -yes,it's certainly true,parrot,book,1 -goodbye,adios!,original,bye,2 -no,not true,original,cancel,3 -yes,it's true yes,parrot,book,1 -thank_you,appreciate it,original,bye,2 -date,what today?,parrot,avail,0 -greeting,hiya!,original,greet,4 -how_busy,how many hours will the restaurant be at noon,parrot,avail,0 -how_busy,you know how busy imoos is?,parrot,avail,0 -no,not right?,parrot,cancel,3 -no,no!,original,cancel,3 -goodbye,you're done,parrot,bye,2 -calendar_update,add a doctor appointment to my friday calendar,parrot,resched,5 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,"thanks, bye",original,bye,2 -calendar,what do you have planned for march 3rd?,parrot,avail,0 -goodbye,tootles,original,bye,2 -how_busy,is the wait a long?,lambada,avail,0 -greeting,yo,original,greet,4 -calendar,what's on my calendar for march 11th,lambada,avail,0 -yes,yeap,original,book,1 -goodbye,wonderful conversation,lambada,bye,2 -no,that is not factual,original,cancel,3 -thank_you,okay thank you,parrot,bye,2 -thank_you,thank you again,parrot,bye,2 -thank_you,thanks!,original,bye,2 -goodbye,great conversation,parrot,bye,2 -how_busy,say the outback steakhouse is busy at 10 pm?,parrot,avail,0 -reminder_update,is there any way to set a reminder?,parrot,resched,5 -goodbye,go easy,parrot,bye,2 -greeting,hi,original,greet,4 -goodbye,buhbye,original,bye,2 -how_busy,wait how long before we go to the olive garden?,parrot,avail,0 -date,what is my date today,parrot,avail,0 -goodbye,peace out!,original,bye,2 -goodbye,for now,parrot,bye,2 -goodbye,peace out,original,bye,2 -yes,positive,original,book,1 -yes,roger that,original,book,1 -schedule_meeting,can you set up a meeting with scott at 9am?,lambada,book,1 -schedule_meeting,are rooms free from 12 to 1?,parrot,book,1 -yes,so it's true,parrot,book,1 -thank_you,nice,parrot,bye,2 -greeting,so what's up?,parrot,greet,4 -yes,yay,lambada,book,1 -no,no!,original,cancel,3 -yes,yeah yeah,lambada,book,1 -goodbye,regards,original,bye,2 -yes,i'll check that out,parrot,book,1 -greeting,how've you been,original,greet,4 -yes,facts,original,book,1 -date,a year?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -how_busy,how busy will olive garden be around 7 pm,lambada,avail,0 -yes,that is affirmative,original,book,1 -yes,right,parrot,book,1 -no,"no, that's not it",original,cancel,3 -no,i'd prefer not to,parrot,cancel,3 -how_busy,how busy will iman be at 6 o'clock in the morning?,parrot,avail,0 -cancel_reservation,take away my reservation at the outback for timmy,parrot,cancel,3 -greeting,how are things going,original,greet,4 -thank_you,thankyou,parrot,bye,2 -yes,ya,original,book,1 -greeting,tell me how you feel?,lambada,greet,4 -greeting,salutation,parrot,greet,4 -no,most definitely false,parrot,cancel,3 -schedule_meeting,i would like to schedule a meeting between 6 and 8,lambada,book,1 -goodbye,goodnight,original,bye,2 -yes,yeah yeah,lambada,book,1 -goodbye,fairwell,original,bye,2 -calendar_update,make sure trip to the zoo is clear on my calendar,lambada,resched,5 -goodbye,goodbye later,parrot,bye,2 -no,not that one,original,cancel,3 -yes,confirm,original,book,1 -goodbye,buhbye,original,bye,2 -how_busy,how busy is chili's at 6,lambada,avail,0 -calendar_update,i want you to cancel the event on april 15,lambada,resched,5 -no,no no thanks,parrot,cancel,3 -no,no,lambada,cancel,3 -yes,say yes,lambada,book,1 -thank_you,that's what i want,parrot,bye,2 -goodbye,good luck,lambada,bye,2 -yes,good,parrot,book,1 -yes,i guess,parrot,book,1 -greeting,all right now?,parrot,greet,4 -schedule_meeting,please give me a meeting room for 9 am,parrot,book,1 -yes,thats right,original,book,1 -goodbye,later,original,bye,2 -how_busy,how long will the wait at the steak house be?,parrot,avail,0 -no,it's so bad,parrot,cancel,3 -greeting,yo,original,greet,4 -greeting,hey there fellow,original,greet,4 -how_busy,how busy is chili at 7 pm,parrot,avail,0 -no,not that,original,cancel,3 -thank_you,thankyou,parrot,bye,2 -meeting_schedule,the meetings today,parrot,avail,0 -goodbye,thanks goodbye,parrot,bye,2 -no,not correct,parrot,cancel,3 -thank_you,i'm so grateful for the answer,parrot,bye,2 -yes,you got it,original,book,1 -yes,accepted,original,book,1 -reminder_update,remember to bring raincoat tomorrow,parrot,resched,5 -no,FALSE,lambada,cancel,3 -yes,yup,original,book,1 -greeting,ahoy,lambada,greet,4 -goodbye,as regards,parrot,bye,2 -yes,huh huh,parrot,book,1 -greeting,hey there!,original,greet,4 -greeting,you good?,parrot,greet,4 -greeting,"hello, friend",original,greet,4 -thank_you,thanks for my support,parrot,bye,2 -date,will it be 10 days from now?,parrot,avail,0 -yes,yeah,original,book,1 -yes,that is true,original,book,1 -thank_you,i am thankful,lambada,bye,2 -greeting,salutations!,original,greet,4 -no,thats a negative,original,cancel,3 -yes,certainly,parrot,book,1 -greeting,hiya!,original,greet,4 -thank_you,i appreciate it,original,bye,2 -goodbye,goodbye then,parrot,bye,2 -reminder_update,add a reminder,lambada,resched,5 -no,that's incorrect,original,cancel,3 -no,not right,parrot,cancel,3 -yes,yup,original,book,1 -how_busy,is the restaurant crowded at 7pm?,parrot,avail,0 -date,today?,parrot,avail,0 -thank_you,thanks for that!,original,bye,2 -yes,positive,parrot,book,1 -how_busy,how long will it take me to get a table at st jerome's,parrot,avail,0 -no,certainly false,parrot,cancel,3 -goodbye,really good to talk with you,parrot,bye,2 -thank_you,you've given me it,parrot,bye,2 -no,nay,original,cancel,3 -yes,absolutely!,original,book,1 -date,what month is today?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -how_busy,what's the wait time in greengrocers?,parrot,avail,0 -meeting_schedule,how many meetings do you have planned for today?,parrot,avail,0 -how_busy,what is it like to wait?,parrot,avail,0 -no,not happening,original,cancel,3 -goodbye,see ya,lambada,bye,2 -thank_you,"awesome, thanks",original,bye,2 -yes,right,parrot,book,1 -goodbye,later,original,bye,2 -goodbye,i'm out,parrot,bye,2 -yes,absolutely!,original,book,1 -goodbye,goodbye,original,bye,2 -thank_you,special thanks to you,original,bye,2 -no,no!,original,cancel,3 -calendar_update,add a friend's baby shower on my calendar,parrot,resched,5 -calendar,what is my calendar for next friday?,lambada,avail,0 -greeting,are you okay??,parrot,greet,4 -goodbye,later goodbye,parrot,bye,2 -how_busy,how busy is olive garden right now,lambada,avail,0 -how_busy,can i wait for a table at the lobster?,parrot,avail,0 -no,that's negative,parrot,cancel,3 -greeting,are you doing alright?,original,greet,4 -yes,ok,original,book,1 -goodbye,tootles?,parrot,bye,2 -no,yes it's false,parrot,cancel,3 -yes,ya,original,book,1 -no,"no, you are wrong",original,cancel,3 -calendar,find events on my calendar,parrot,avail,0 -cancel_reservation,cancel my 8:00 pm prime rib reservation,original,cancel,3 -no,nothing,parrot,cancel,3 -yes,correct,original,book,1 -goodbye,i have to talk to you,parrot,bye,2 -cancel_reservation,should i cancel my reservation or do i just cancel it?,parrot,cancel,3 -date,current day,parrot,avail,0 -goodbye,goodbye soon,lambada,bye,2 -no,no that isn't it,original,cancel,3 -goodbye,farewell,original,bye,2 -yes,10-Apr,original,book,1 -calendar,did i put an item on the calendar to get the dog neutered?,original,avail,0 -goodbye,bye-bye,original,bye,2 -yes,thats right,original,book,1 -how_busy,what's the wait?,parrot,avail,0 -no,no,lambada,cancel,3 -yes,"yes, please",parrot,book,1 -reminder_update,set up a reminder to pick up my groceries,lambada,resched,5 -greeting,ahoy there,lambada,greet,4 -yes,obviously,parrot,book,1 -greeting,hey,original,greet,4 -how_busy,how long will i have to wait in the immaculate steakhouse?,parrot,avail,0 -schedule_meeting,is there a meeting room available at 8 o'clock?,parrot,book,1 -thank_you,you answered my question,parrot,bye,2 -greeting,what i feel?,parrot,greet,4 -meeting_schedule,wanna meet roger?,parrot,avail,0 -calendar_update,delete the appointment i've scheduled,parrot,resched,5 -greeting,hello,original,greet,4 -goodbye,goodnight,original,bye,2 -no,"no, that isn't right",lambada,cancel,3 -goodbye,i need to talk to you,parrot,bye,2 -greeting,hiya,original,greet,4 -meeting_schedule,what meetings do i have for today?,parrot,avail,0 -greeting,"good morning, ai",original,greet,4 -yes,ya,original,book,1 -no,invalid,original,cancel,3 -how_busy,tell me how busy the red rooster is at 8 p,parrot,avail,0 -thank_you,okay thanks,original,bye,2 -schedule_meeting,please make a room for the meetings,parrot,book,1 -greeting,how's otc?,parrot,greet,4 -thank_you,thanks for helping me,original,bye,2 -thank_you,thank you for everything,parrot,bye,2 -yes,huh,parrot,book,1 -date,what day will it be?,parrot,avail,0 -greeting,hey there,original,greet,4 -yes,say yes,lambada,book,1 -yes,ya,original,book,1 -reminder_update,give me a reminder to pay my bills,parrot,resched,5 -date,tomorrow is the calendar,parrot,avail,0 -goodbye,time to say goodbye,parrot,bye,2 -yes,that statement is true,lambada,book,1 -no,and there's no way it's true,parrot,cancel,3 -yes,is true,parrot,book,1 -thank_you,this answer was very helpful,parrot,bye,2 -schedule_meeting,i need assistance scheduling a meeting,original,book,1 -greeting,what's up,original,greet,4 -how_busy,how long will it take to wait in olive garden,parrot,avail,0 -no,it's so bad,parrot,cancel,3 -meeting_schedule,what meetings are on my calendar?,original,avail,0 -no,that's incorrect,original,cancel,3 -no,no?,parrot,cancel,3 -goodbye,bye,original,bye,2 -goodbye,goodbye now,parrot,bye,2 -yes,accepted,original,book,1 -goodbye,buhbye now,lambada,bye,2 -greeting,"hey, how's it going",original,greet,4 -yes,the answer to that is affirmative,original,book,1 -greeting,heller,original,greet,4 -greeting,how's life,original,greet,4 -goodbye,goodbyes,parrot,bye,2 -how_busy,when is the food place crowded in the morning?,parrot,avail,0 -no,this is not true,parrot,cancel,3 -goodbye,wonderful conversation,lambada,bye,2 -date,which date is next?,parrot,avail,0 -how_busy,does the restaurant have much business around noon?,parrot,avail,0 -calendar,please find my march schedule,parrot,avail,0 -greeting,"hello, anyone there",original,greet,4 -date,which date today?,parrot,avail,0 -no,say negative,parrot,cancel,3 -yes,accepted,original,book,1 -goodbye,until next time,original,bye,2 -reminder_update,the cat needs neutering,parrot,resched,5 -goodbye,adios,original,bye,2 -calendar,when will my doctor come to see me?,parrot,avail,0 -goodbye,im leaving,parrot,bye,2 -meeting_schedule,are there meetings from 1pm to 5pm?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -greeting,hi what's up,original,greet,4 -how_busy,how busy is olive garden around 6 pm,lambada,avail,0 -greeting,how's my life?,parrot,greet,4 -how_busy,how busy is the chicory grill before dinner?,parrot,avail,0 -calendar,let me know what's on march 21st,lambada,avail,0 -no,not that,original,cancel,3 -goodbye,"later, goodbye",lambada,bye,2 -greeting,ahoy,lambada,greet,4 -thank_you,thanks,original,bye,2 -thank_you,your help is appreciated,original,bye,2 -thank_you,you did it for me,parrot,bye,2 -date,what is the date for today?,lambada,avail,0 -greeting,hello how's the situation?,parrot,greet,4 -reminder_update,can i set up a reminder for myself?,parrot,resched,5 -thank_you,you've tried,parrot,bye,2 -no,that's not acceptable,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -yes,it's true,original,book,1 -greeting,how is everything going?,parrot,greet,4 -thank_you,many thank,original,bye,2 -meeting_schedule,can you tell me if i'll be called for a meeting?,parrot,avail,0 -no,that's so negative,parrot,cancel,3 -yes,i can confirm,parrot,book,1 -how_busy,please let me know if there is a wait in this restaurant right now,parrot,avail,0 -greeting,yo,original,greet,4 -goodbye,", goodbye",lambada,bye,2 -reminder_update,can you remind me to finish a task?,original,resched,5 -yes,yay,lambada,book,1 -no,"no, definitely not",original,cancel,3 -greeting,hey fellow,parrot,greet,4 -yes,i guess,parrot,book,1 -greeting,tell me the latest thing,parrot,greet,4 -yes,correct,original,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -meeting_schedule,can you tell me what time i am meeting with sarah today?,original,avail,0 -greeting,hola!,original,greet,4 -reminder_update,make me remember to ask for a break,parrot,resched,5 -how_busy,what's the wait time at the greengrocers?,parrot,avail,0 -yes,uh-huh,original,book,1 -no,i don't think it's accurate,parrot,cancel,3 -no,no way,original,cancel,3 -yes,confirmed,original,book,1 -how_busy,how busy is the cheesecake factory around 11?,parrot,avail,0 -greeting,"hello, friend",original,greet,4 -no,that's absolutely false,parrot,cancel,3 -calendar_update,please clear the entries in my calendar for the 1st,parrot,resched,5 -thank_you,good looking out,original,bye,2 -thank_you,the best,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -how_busy,can you tell me how busy chili will be at 730?,parrot,avail,0 -calendar_update,"you can remove the play date from my calendar for feb 18, 2019",original,resched,5 -no,i disagree,parrot,cancel,3 -reminder_update,can you set the reminder?,parrot,resched,5 -greeting,hey fellows,parrot,greet,4 -no,not right,parrot,cancel,3 -no,it is false,original,cancel,3 -how_busy,is cheesecake factory busy right now?,original,avail,0 -greeting,how's life?,parrot,greet,4 -no,not happening,original,cancel,3 -no,no?,parrot,cancel,3 -yes,so it's true,parrot,book,1 -goodbye,say goodbye now,parrot,bye,2 -how_busy,sage's busy at noon?,parrot,avail,0 -yes,it's true,original,book,1 -greeting,what's happened?,parrot,greet,4 -goodbye,say goodbye now,parrot,bye,2 -reminder_update,remember to call tomorrow,parrot,resched,5 -date,in 14 days?,parrot,avail,0 -calendar,is a meeting with frank on my calendar?,parrot,avail,0 -yes,yeap,original,book,1 -goodbye,bye,original,bye,2 -no,negating,parrot,cancel,3 -meeting_schedule,do you have meetings on my schedule today?,parrot,avail,0 -how_busy,do you know how busy chili's is around 5:30?,lambada,avail,0 -yes,indeed,original,book,1 -goodbye,see ya!,original,bye,2 -no,FALSE,lambada,cancel,3 -how_busy,tell me how busy chipotle will be at 9 o'clock tonight?,parrot,avail,0 -no,no,lambada,cancel,3 -greeting,how's it hanging,original,greet,4 -greeting,ahoy,lambada,greet,4 -yes,absolutely,original,book,1 -cancel_reservation,cancel my dinner reservation,lambada,cancel,3 -greeting,"hello, anyone there",original,greet,4 -greeting,hello bs,parrot,greet,4 -no,would be a lie,parrot,cancel,3 -thank_you,this answer was very helpful,parrot,bye,2 -how_busy,how long can i expect to wait at chili's,lambada,avail,0 -calendar_update,remove event from calendar,lambada,resched,5 -date,what's today's date,original,avail,0 -goodbye,my way,parrot,bye,2 -goodbye,"goodbye, ai assistant",original,bye,2 -goodbye,i'll leave,parrot,bye,2 -no,FALSE,lambada,cancel,3 -no,no,lambada,cancel,3 -greeting,salutation,parrot,greet,4 -no,not right,parrot,cancel,3 -yes,uh huh,original,book,1 -goodbye,peace,original,bye,2 -no,no thanks,original,cancel,3 -goodbye,good seeing you,original,bye,2 -goodbye,just relax,parrot,bye,2 -no,FALSE,original,cancel,3 -greeting,how is it going?,parrot,greet,4 -yes,absolutely,original,book,1 -date,what's the date today?,parrot,avail,0 -greeting,hey there!,original,greet,4 -greeting,is everything ok today?,original,greet,4 -no,that's false,original,cancel,3 -greeting,whats up,original,greet,4 -yes,facts,original,book,1 -thank_you,thank you?,parrot,bye,2 -greeting,hola,original,greet,4 -greeting,how're you doing?,parrot,greet,4 -no,FALSE,original,cancel,3 -yes,affirmitive,original,book,1 -date,what's the date this month,lambada,avail,0 -date,do you have a date?,parrot,avail,0 -reminder_update,please remember me again,parrot,resched,5 -calendar_update,cancel the event scheduled for this afternoon,parrot,resched,5 -no,that's not factual,parrot,cancel,3 -greeting,how ya doing,lambada,greet,4 -goodbye,thanks for a good call,lambada,bye,2 -greeting,how're you doing,original,greet,4 -yes,definitely confirmed,parrot,book,1 -cancel_reservation,joe's reservation at zepher cancels,parrot,cancel,3 -yes,"agreed, that's valid",original,book,1 -greeting,tell me how you're doing?,parrot,greet,4 -how_busy,how long is the wait at pizza bread shack,lambada,avail,0 -reminder_update,let me know,parrot,resched,5 -yes,approved,original,book,1 -yes,affirmitive,original,book,1 -greeting,how's everything with you?,parrot,greet,4 -date,what's the name of today?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -yes,confirm,original,book,1 -thank_you,and i'm grateful,parrot,bye,2 -yes,of course,original,book,1 -goodbye,buhbye,original,bye,2 -thank_you,thank you for trying,parrot,bye,2 -goodbye,signing off,original,bye,2 -yes,absolutely correct,original,book,1 -no,ill pass,original,cancel,3 -schedule_meeting,how can you schedule a meeting for me,original,book,1 -greeting,heller,original,greet,4 -date,please share today's date,original,avail,0 -schedule_meeting,i need a meeting,parrot,book,1 -goodbye,say goodbye,parrot,bye,2 -yes,agreed,original,book,1 -how_busy,i want to know how long it takes to wait in a pizza restaurant,parrot,avail,0 -how_busy,get a good estimate of how busy the cheesecake factory is at 9pm,parrot,avail,0 -how_busy,is the area busy during lunch hour?,parrot,avail,0 -date,date tomorrow,parrot,avail,0 -greeting,whats new?,parrot,greet,4 -yes,yeap,original,book,1 -goodbye,tootles,original,bye,2 -no,you are wrong,original,cancel,3 -yes,oh-huh,parrot,book,1 -date,can you tell me the day of the month?,parrot,avail,0 -how_busy,how busy will panera be at noon,original,avail,0 -no,certainly not,original,cancel,3 -thank_you,oh sweet thanks,original,bye,2 -no,nay,original,cancel,3 -yes,oh-huh,parrot,book,1 -goodbye,"later, goodbye",lambada,bye,2 -no,that's a negation,parrot,cancel,3 -no,the information is not true,parrot,cancel,3 -yes,say yes,lambada,book,1 -greeting,greetings to you,original,greet,4 -date,tell me the date now?,lambada,avail,0 -reminder_update,give me a reminder to pay my mortgage,parrot,resched,5 -how_busy,tell me if there's a lot of wait time at olive garden at 5pm,parrot,avail,0 -yes,it's logical,parrot,book,1 -thank_you,appreciate the support,parrot,bye,2 -cancel_reservation,can i cancel my reservation for dinner tonight?,parrot,cancel,3 -goodbye,great talk,lambada,bye,2 -no,i'd rather not,parrot,cancel,3 -goodbye,goodbye ai,parrot,bye,2 -goodbye,goodbye,original,bye,2 -no,no,lambada,cancel,3 -yes,my answer is yes,parrot,book,1 -yes,seems true,parrot,book,1 -goodbye,bye,original,bye,2 -greeting,how's my day?,parrot,greet,4 -yes,yes i am,original,book,1 -greeting,how's everything going?,parrot,greet,4 -greeting,hey,original,greet,4 -greeting,hey hey!,original,greet,4 -yes,certainly,parrot,book,1 -no,i'd say no,original,cancel,3 -goodbye,peace,original,bye,2 -goodbye,get there soon,lambada,bye,2 -no,it's indeed false,parrot,cancel,3 -how_busy,how long can i wait for a table in the restaurant?,parrot,avail,0 -thank_you,thank ya!,original,bye,2 -no,that's untrue,parrot,cancel,3 -goodbye,im leaving,parrot,bye,2 -calendar,did i set a day on my calendar to vote for the next election?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -how_busy,is ihop busy?,parrot,avail,0 -goodbye,see you around,original,bye,2 -reminder_update,make a reminder,parrot,resched,5 -thank_you,you helped,parrot,bye,2 -yes,positive,original,book,1 -yes,yes,original,book,1 -meeting_schedule,when do you meet kara?,parrot,avail,0 -greeting,hola,original,greet,4 -greeting,what's up,original,greet,4 -no,i don't agree,parrot,cancel,3 -cancel_reservation,call my reservation cancelled,parrot,cancel,3 -greeting,hey how is my day going,lambada,greet,4 -date,tell me the next month,parrot,avail,0 -greeting,salutations!,original,greet,4 -yes,correct,original,book,1 -date,what's today?,parrot,avail,0 -goodbye,i'm out of here,original,bye,2 -no,it's negative,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -goodbye,great talk,lambada,bye,2 -no,nothing,parrot,cancel,3 -yes,it's logical,parrot,book,1 -goodbye,fairwell,original,bye,2 -no,that's erroneous,parrot,cancel,3 -no,it's the wrong answer,parrot,cancel,3 -no,naw,original,cancel,3 -goodbye,take care then,parrot,bye,2 -greeting,are you good?,original,greet,4 -goodbye,peace out,original,bye,2 -how_busy,how busy will chili's be around 7 am,lambada,avail,0 -goodbye,glad to talk to you,parrot,bye,2 -yes,ok,original,book,1 -goodbye,tootles,original,bye,2 -meeting_schedule,when's the meeting today?,parrot,avail,0 -schedule_meeting,i need to know how to find another meeting,parrot,book,1 -no,so that's no,parrot,cancel,3 -how_busy,is there a long wait time to be seated at chili's?,lambada,avail,0 -yes,obviously,parrot,book,1 -thank_you,thanks for cooperating,parrot,bye,2 -yes,positive,original,book,1 -greeting,how're you doing,original,greet,4 -greeting,hi,original,greet,4 -yes,accepted,original,book,1 -schedule_meeting,are meeting rooms available between 9 and 10?,parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -date,today?,parrot,avail,0 -no,no,lambada,cancel,3 -no,not good,parrot,cancel,3 -no,invalid,original,cancel,3 -yes,and you're correct,parrot,book,1 -reminder_update,make me remember,parrot,resched,5 -date,please tell me the date for this account,parrot,avail,0 -yes,correct,original,book,1 -how_busy,will the restaurant fill up,parrot,avail,0 -greeting,hello ai,parrot,greet,4 -date,when is it going to be in ten days?,parrot,avail,0 -no,invalid,original,cancel,3 -meeting_schedule,list the meetings scheduled today,parrot,avail,0 -greeting,good day,original,greet,4 -goodbye,peace,original,bye,2 -thank_you,you have done well,lambada,bye,2 -reminder_update,let me be reminded?,parrot,resched,5 -thank_you,you have made my life so much easier,lambada,bye,2 -thank_you,you're the best!,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,hola,original,greet,4 -goodbye,see ya!,original,bye,2 -goodbye,"syonara, ai device!",original,bye,2 -how_busy,how busy will olive garden be around 8pm,parrot,avail,0 -yes,yes,original,book,1 -schedule_meeting,i need to have a meeting today,parrot,book,1 -schedule_meeting,is there an open meeting room between 2 and 4?,original,book,1 -no,so that's no,parrot,cancel,3 -goodbye,goodbye my friend,parrot,bye,2 -greeting,hey fellows,parrot,greet,4 -no,i think it's wrong,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -meeting_schedule,do we meet today?,parrot,avail,0 -goodbye,great conversation,parrot,bye,2 -schedule_meeting,can you schedule a meeting for 6 pm monday?,parrot,book,1 -thank_you,thanks for trying,original,bye,2 -date,give me a date,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -schedule_meeting,can you schedule a meeting with katie at 11 o'clock in the morning?,parrot,book,1 -yes,uh-huh,original,book,1 -goodbye,"thanks, bye",original,bye,2 -no,"no, that would be wrong",lambada,cancel,3 -calendar,can you tell me what my calendar is like for thursday the 14th?,original,avail,0 -thank_you,thanks,original,bye,2 -goodbye,see ya!,original,bye,2 -greeting,how's life treating you?,parrot,greet,4 -how_busy,how long is the wait at fridays,original,avail,0 -how_busy,how busy is mcdonalds at 5 pm,lambada,avail,0 -how_busy,what time do i have to wait for arizona steak house?,parrot,avail,0 -thank_you,i appeciate it,parrot,bye,2 -calendar_update,stop this thing today,parrot,resched,5 -no,this isn't true,parrot,cancel,3 -goodbye,"later, thanks for chatting",original,bye,2 -goodbye,i'm leaving,parrot,bye,2 -yes,this is true,lambada,book,1 -greeting,good morning,parrot,greet,4 -date,what's on the calendar tomorrow?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -thank_you,thank you for making my life easier,parrot,bye,2 -date,what date will it be 5 days from now?,original,avail,0 -goodbye,"later, goodbye",lambada,bye,2 -goodbye,nice chat today,lambada,bye,2 -schedule_meeting,i need a meeting room at 9 am on tuesday,parrot,book,1 -no,naw,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -no,that's erroneous,parrot,cancel,3 -yes,oh yes,original,book,1 -calendar,check out what's on my calendar for tuesday,parrot,avail,0 -meeting_schedule,when's my meeting?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -date,what is today?,original,avail,0 -thank_you,much obliged,original,bye,2 -date,please date,parrot,avail,0 -calendar_update,i need to clean the kitchen on thursday please add an item to my calendar,parrot,resched,5 -thank_you,you've tried,parrot,bye,2 -yes,certainly true,parrot,book,1 -thank_you,gracias,original,bye,2 -goodbye,lovely conversation,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,later!,original,bye,2 -thank_you,i'm grateful,original,bye,2 -calendar,what should i have on my schedule for march 5th?,parrot,avail,0 -yes,great,original,book,1 -how_busy,is kaya busy at 5pm?,parrot,avail,0 -yes,yes,original,book,1 -how_busy,what's going on in the outback steakhouse at 5pm?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -goodbye,goodnight,original,bye,2 -no,not right,parrot,cancel,3 -yes,uh-huh,original,book,1 -no,i don't like that,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -cancel_reservation,the reservation i made is not necessary anymore,parrot,cancel,3 -yes,yeah,original,book,1 -greeting,what's happening,original,greet,4 -calendar,is the marathon on friday added to my calendar?,original,avail,0 -no,is my falsehood?,parrot,cancel,3 -date,in 7 days?,parrot,avail,0 -schedule_meeting,can you tell me if there are meeting rooms available between 1 and 4?,original,book,1 -yes,you're right,original,book,1 -goodbye,goodbye soon,lambada,bye,2 -no,definitely not,original,cancel,3 -goodbye,later then,lambada,bye,2 -goodbye,bye bye now,lambada,bye,2 -yes,good yes,lambada,book,1 -yes,agreed,original,book,1 -calendar,tell me what's going on on march 2nd?,parrot,avail,0 -greeting,how's everything going?,parrot,greet,4 -cancel_reservation,just cancel my reservation,lambada,cancel,3 -no,not right i don't think,parrot,cancel,3 -calendar_update,mark my calendar that i will be meeting steven on march 5,original,resched,5 -goodbye,wonderful conversation,lambada,bye,2 -no,nope,original,cancel,3 -calendar_update,can you remove an event from my calendar? how?,parrot,resched,5 -reminder_update,set a reminder for my appointment,parrot,resched,5 -greeting,how's the life in my town?,parrot,greet,4 -no,no please,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -yes,confirm,original,book,1 -goodbye,have a good day?,original,bye,2 -calendar,check out what's on my calendar for tuesday?,parrot,avail,0 -yes,seems true,parrot,book,1 -goodbye,tootles,original,bye,2 -thank_you,thank you very much,original,bye,2 -goodbye,see you soon,original,bye,2 -goodbye,farewell,original,bye,2 -yes,yes that is right,original,book,1 -no,that's bad,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -thank_you,your assistance is appreciated,parrot,bye,2 -yes,"yes, that's it",original,book,1 -thank_you,appreciated,original,bye,2 -greeting,what's my feeling today?,parrot,greet,4 -greeting,wassup,original,greet,4 -thank_you,okay thank you,parrot,bye,2 -yes,"yes, that's it",original,book,1 -greeting,how's that hanging?,parrot,greet,4 -yes,agreed,original,book,1 -yes,definitely yes,parrot,book,1 -reminder_update,remember to bring checkbook,parrot,resched,5 -no,it's a negative,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -greeting,hola!,original,greet,4 -yes,okay,original,book,1 -yes,uh-huh,original,book,1 -date,what's the day like?,parrot,avail,0 -yes,uh huh,original,book,1 -how_busy,what time should we have in this restaurant to eat?,parrot,avail,0 -goodbye,peace,original,bye,2 -greeting,hola!,original,greet,4 -no,nothing,parrot,cancel,3 -date,tell me the date,parrot,avail,0 -no,that's very wrong,parrot,cancel,3 -greeting,hey what's up?,parrot,greet,4 -yes,positive,parrot,book,1 -yes,affirmative,original,book,1 -goodbye,i had a lovely time talking to you,lambada,bye,2 -greeting,whats up?,parrot,greet,4 -calendar_update,i have an appointment that i have to cancel for march 18,parrot,resched,5 -date,what date is tomorrow?,original,avail,0 -yes,certainly,parrot,book,1 -no,that's a no,lambada,cancel,3 -yes,TRUE,original,book,1 -meeting_schedule,when is the meeting with homer scheduled for?,original,avail,0 -yes,confirm,original,book,1 -greeting,hello are you all right?,parrot,greet,4 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -goodbye,bye bye!,original,bye,2 -greeting,aho,parrot,greet,4 -yes,is true,parrot,book,1 -goodbye,bye,original,bye,2 -greeting,wassup,original,greet,4 -thank_you,awesome thanks,parrot,bye,2 -meeting_schedule,what's my meeting plan?,parrot,avail,0 -no,the statement is absolutely false,parrot,cancel,3 -no,it's a mistake,parrot,cancel,3 -how_busy,how long will the wait be at ihop at 7:00,lambada,avail,0 -goodbye,say goodbye,parrot,bye,2 -no,"please, no",original,cancel,3 -goodbye,i'm gone,parrot,bye,2 -greeting,how ife treated you?,parrot,greet,4 -yes,uh-huh,original,book,1 -greeting,salutation,parrot,greet,4 -thank_you,thanks for the cooperation,parrot,bye,2 -yes,you are correct,original,book,1 -calendar_update,delete lunch with steve on friday please,original,resched,5 -no,it would be wrong,parrot,cancel,3 -reminder_update,i must remind myself to go get an extra credit card,parrot,resched,5 -calendar,do you have any appointments for saturday?,parrot,avail,0 -yes,ok,original,book,1 -how_busy,list the current seating hours at this restaurant?,parrot,avail,0 -how_busy,wait how long on fridays,parrot,avail,0 -yes,accepted,original,book,1 -reminder_update,can you make a reminder?,parrot,resched,5 -yes,okay,original,book,1 -no,no please,parrot,cancel,3 -how_busy,can the wait be long at the cheesecake factory?,parrot,avail,0 -goodbye,goodbye later,parrot,bye,2 -date,today?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -no,not good,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -no,thanks no,parrot,cancel,3 -how_busy,how busy will imesa be around 5:15 pm,lambada,avail,0 -goodbye,goodbye ai,parrot,bye,2 -no,i mean no,parrot,cancel,3 -yes,great,original,book,1 -how_busy,how many people usually go to chili's around 12pm?,parrot,avail,0 -goodbye,thanks bye bye!,original,bye,2 -how_busy,are the red lobster guys really busy around 11 o'clock?,parrot,avail,0 -no,it's not what we want,parrot,cancel,3 -yes,i know this is true,lambada,book,1 -goodbye,goodbye,original,bye,2 -date,current date,original,avail,0 -how_busy,how busy the outback steakhouse will be at 730pm?,parrot,avail,0 -thank_you,you've been a great support,parrot,bye,2 -goodbye,catch you around,original,bye,2 -goodbye,bye bye!,original,bye,2 -no,certainly false,parrot,cancel,3 -no,nay,original,cancel,3 -goodbye,i have to go,parrot,bye,2 -greeting,aloha,original,greet,4 -yes,yeah yeah,lambada,book,1 -greeting,hey,original,greet,4 -yes,sure,original,book,1 -yes,i'm going to tell you tes,parrot,book,1 -greeting,hello there!,original,greet,4 -greeting,whats new?,parrot,greet,4 -no,it's no,parrot,cancel,3 -thank_you,my gratitude,parrot,bye,2 -yes,oh-huh,parrot,book,1 -greeting,whats up,original,greet,4 -goodbye,"nice talk, goodbye",lambada,bye,2 -goodbye,see ya,lambada,bye,2 -reminder_update,make sure you take out the trash in an hour,parrot,resched,5 -calendar_update,please schedule an event called 'nadine's baby shower' on my calendar,original,resched,5 -yes,yup,original,book,1 -no,"please, no",original,cancel,3 -date,date please,original,avail,0 -goodbye,fairwell?,parrot,bye,2 -no,nothing,parrot,cancel,3 -goodbye,later,original,bye,2 -goodbye,bye-bye,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -yes,okay,original,book,1 -goodbye,until next time,original,bye,2 -yes,roger that,original,book,1 -reminder_update,help me remember to pick up stan later,lambada,resched,5 -goodbye,", goodbye",lambada,bye,2 -no,no way,original,cancel,3 -date,i'd like to get the date today,parrot,avail,0 -how_busy,how many people go to the restaurant before the meal,parrot,avail,0 -no,i must say no,original,cancel,3 -goodbye,farewell,original,bye,2 -cancel_reservation,the reservation isn't needed now,parrot,cancel,3 -greeting,what's up,original,greet,4 -yes,thats right,original,book,1 -thank_you,my gratitude,parrot,bye,2 -goodbye,on the highway,parrot,bye,2 -greeting,what's new,lambada,greet,4 -yes,accept,parrot,book,1 -greeting,ahoy,lambada,greet,4 -calendar_update,delete any event on my calendar that's set for wednesday of next week?,parrot,resched,5 -no,is my false assertion?,parrot,cancel,3 -thank_you,thank you for making my life easier,parrot,bye,2 -date,what is tomorrow?,parrot,avail,0 -yes,TRUE,original,book,1 -meeting_schedule,when am i going to be meeting roger?,lambada,avail,0 -date,what date is it today?,original,avail,0 -goodbye,good-bye,parrot,bye,2 -yes,i can confirm,parrot,book,1 -how_busy,do you have a lot of people going to chipotle at 4:30 pm?,lambada,avail,0 -yes,great,original,book,1 -yes,that'd be great,parrot,book,1 -goodbye,see you later!,original,bye,2 -goodbye,as regards,parrot,bye,2 -thank_you,"great, thanks!",original,bye,2 -thank_you,thanks for helping,original,bye,2 -no,that's a negative,original,cancel,3 -yes,of course,original,book,1 -date,what's the date today?,parrot,avail,0 -thank_you,you've helped,parrot,bye,2 -greeting,hey fellows,parrot,greet,4 -no,no thank you,original,cancel,3 -yes,confirm,original,book,1 -yes,ok,original,book,1 -goodbye,goodbye goodbye,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -thank_you,thanks,original,bye,2 -how_busy,how busy will ihop be at 6:00 pm,lambada,avail,0 -greeting,how are you this day,original,greet,4 -yes,good,parrot,book,1 -goodbye,fairwell?,parrot,bye,2 -goodbye,", goodbye",lambada,bye,2 -yes,that's right,original,book,1 -yes,yup,original,book,1 -yes,absolutely!,original,book,1 -greeting,how's everything,original,greet,4 -goodbye,i have to go to sleep right?,parrot,bye,2 -yes,yay,lambada,book,1 -how_busy,is ihop busy around 9?,lambada,avail,0 -greeting,"hi, how's it going",lambada,greet,4 -greeting,"hello, friend",original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,yes,original,book,1 -yes,that would be right,parrot,book,1 -no,nope,original,cancel,3 -greeting,what's up?,parrot,greet,4 -greeting,hello ai,parrot,greet,4 -yes,i'd say yes,parrot,book,1 -yes,that's a fact,parrot,book,1 -yes,affirmitive,original,book,1 -yes,you're right,original,book,1 -goodbye,bye-bye,original,bye,2 -no,no please,parrot,cancel,3 -greeting,hey,original,greet,4 -thank_you,much obliged,original,bye,2 -greeting,hola,original,greet,4 -no,negative,original,cancel,3 -calendar_update,clear my calendar for tomorrow,original,resched,5 -greeting,nice day,lambada,greet,4 -no,erroneous,parrot,cancel,3 -yes,absolutely,original,book,1 -how_busy,how busy is ihop at 4 pm,lambada,avail,0 -yes,it appears true,parrot,book,1 -yes,absolutely!,original,book,1 -no,no thanks,original,cancel,3 -greeting,how you're treated?,parrot,greet,4 -yes,okay,original,book,1 -date,i'm trying to find out what the date will be,parrot,avail,0 -how_busy,waiting at cheeseburgers?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -no,say negative,parrot,cancel,3 -meeting_schedule,is my meeting scheduled?,parrot,avail,0 -goodbye,goodbye goodbye,parrot,bye,2 -how_busy,is mcdonalds busy?,parrot,avail,0 -thank_you,you're special thanks,parrot,bye,2 -greeting,heyo,original,greet,4 -thank_you,thanks for that answer,original,bye,2 -goodbye,goodbye!,original,bye,2 -how_busy,is this restaurant full at night?,parrot,avail,0 -how_busy,how busy are the wait times at eee?,parrot,avail,0 -greeting,why hello?,original,greet,4 -how_busy,how long will the wait be when i go to chili's pizza,lambada,avail,0 -greeting,good evening,original,greet,4 -goodbye,sayonara,original,bye,2 -thank_you,you've been great,parrot,bye,2 -thank_you,thank a bunch,original,bye,2 -no,thanks no,parrot,cancel,3 -no,that’s not correct,original,cancel,3 -yes,certainly,parrot,book,1 -yes,certainly,parrot,book,1 -how_busy,what's the typical time to be seated at this restaurant,lambada,avail,0 -how_busy,how long would i need to wait for a table at ihop right now?,parrot,avail,0 -goodbye,i'm outta here!,original,bye,2 -no,indeed it's false,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -goodbye,ai goodbye,original,bye,2 -goodbye,i have to go,parrot,bye,2 -goodbye,it's time for goodbye,parrot,bye,2 -how_busy,how long will it take me to be seated at red lobster,lambada,avail,0 -goodbye,bye!,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,you've given me that,parrot,bye,2 -calendar_update,delete my meeting on april 3,lambada,resched,5 -thank_you,merci beaucoup,original,bye,2 -cancel_reservation,can i cancel my reservation? if so how?,parrot,cancel,3 -meeting_schedule,do i have any meetings today between 9 and 10:30?,original,avail,0 -goodbye,see ya,lambada,bye,2 -goodbye,goodbye bye,parrot,bye,2 -greeting,hey what's up,original,greet,4 -how_busy,how busy is macaroni around 830?,parrot,avail,0 -how_busy,how long will it take for this restaurant to be packed at 5,parrot,avail,0 -goodbye,sayonara,original,bye,2 -no,no!,original,cancel,3 -goodbye,i'm out of here,original,bye,2 -greeting,bonjour,original,greet,4 -greeting,aloha,original,greet,4 -no,that's not a good idea,parrot,cancel,3 -yes,definitely,original,book,1 -no,negative,original,cancel,3 -yes,yeah that's right,lambada,book,1 -date,today?,parrot,avail,0 -yes,agreed,original,book,1 -greeting,ahoy,lambada,greet,4 -thank_you,"thanks, that's helpful",original,bye,2 -no,nope,original,cancel,3 -greeting,hey what's up,original,greet,4 -date,today what date?,parrot,avail,0 -greeting,how's the situation?,parrot,greet,4 -meeting_schedule,time of meeting?,parrot,avail,0 -thank_you,thanks for coming,parrot,bye,2 -goodbye,great talk,lambada,bye,2 -greeting,what's new,lambada,greet,4 -yes,my answer is yes,parrot,book,1 -thank_you,you're the best!,original,bye,2 -greeting,hi,original,greet,4 -no,that's no longer valid,parrot,cancel,3 -greeting,bonjour,original,greet,4 -thank_you,thank you,original,bye,2 -no,negative,original,cancel,3 -thank_you,thanks for letting me know,original,bye,2 -goodbye,i've got to go,lambada,bye,2 -calendar,show me the calendar for april 15?,parrot,avail,0 -no,that's overwhelmingly negative,parrot,cancel,3 -yes,"yep, that's true",original,book,1 -greeting,how's everything,original,greet,4 -greeting,ahoy,lambada,greet,4 -goodbye,tootles?,parrot,bye,2 -yes,indeed,original,book,1 -no,not happening,original,cancel,3 -no,indeed it's false,parrot,cancel,3 -greeting,what's happening,original,greet,4 -greeting,hey there fellow,original,greet,4 -goodbye,greetings,parrot,bye,2 -greeting,how's the ai?,parrot,greet,4 -meeting_schedule,when is my meeting with lucas scheduled?,parrot,avail,0 -yes,10-Apr,original,book,1 -greeting,greetings to you,original,greet,4 -no,that's so false,parrot,cancel,3 -cancel_reservation,cancel the reservation at the restaurant,parrot,cancel,3 -goodbye,good night,original,bye,2 -goodbye,adios,original,bye,2 -how_busy,is the wait more than an hour at the italian place?,original,avail,0 -greeting,how's everything with you?,parrot,greet,4 -meeting_schedule,is there a meeting between today and saturday?,parrot,avail,0 -no,nada,original,cancel,3 -reminder_update,remember me to call the vet tomorrow,parrot,resched,5 -how_busy,how busy will i be at chili's at 5 o'clock,parrot,avail,0 -calendar,can you read my schedule for march 3,parrot,avail,0 -no,absolutely false,parrot,cancel,3 -thank_you,thanks again!,original,bye,2 -greeting,whats up?,parrot,greet,4 -goodbye,adios ai,original,bye,2 -yes,indeed,original,book,1 -date,date tomorrow?,parrot,avail,0 -goodbye,adios!,original,bye,2 -calendar_update,please don't have a party in my calendar,parrot,resched,5 -cancel_reservation,i need to cancel my reservation for two nights at the red rooster,lambada,cancel,3 -thank_you,thank you again,parrot,bye,2 -no,that's inaccurate,original,cancel,3 -thank_you,nice,parrot,bye,2 -greeting,tell me how things are going for you,parrot,greet,4 -how_busy,how long is the wait at cheesecake factory around 11,lambada,avail,0 -yes,accept,parrot,book,1 -how_busy,can you tell me how long the wait is at the red lobsters?,parrot,avail,0 -goodbye,peace out!,original,bye,2 -greeting,how is it with you,lambada,greet,4 -goodbye,later!,original,bye,2 -goodbye,bye bye,lambada,bye,2 -reminder_update,put a reminder for lunch at 10 o'clock,parrot,resched,5 -yes,it makes sense too,parrot,book,1 -greeting,how's my life?,parrot,greet,4 -greeting,why hello?,original,greet,4 -goodbye,see ya,original,bye,2 -yes,"yes, please",parrot,book,1 -goodbye,later,original,bye,2 -goodbye,as regards,parrot,bye,2 -no,nope,original,cancel,3 -yes,yeah yeah,lambada,book,1 -goodbye,peace out,original,bye,2 -greeting,hola,original,greet,4 -yes,confirmed,original,book,1 -date,i can't remember the date,parrot,avail,0 -goodbye,i'll talk about it tomorrow,parrot,bye,2 -goodbye,talk to me later,parrot,bye,2 -goodbye,bye bye!,original,bye,2 -greeting,aloha,original,greet,4 -thank_you,i'm excited about my help,parrot,bye,2 -no,erroneous,parrot,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -how_busy,how long will i wait before i can get a table at an italian bakery?,parrot,avail,0 -how_busy,how busy is a chinese restaurant right now?,parrot,avail,0 -how_busy,when is the restaurant the busiest around 11 am?,parrot,avail,0 -no,FALSE,original,cancel,3 -no,i prefer not to,parrot,cancel,3 -no,FALSE,original,cancel,3 -yes,it's certainly positive,parrot,book,1 -yes,ok,original,book,1 -no,certainly not,original,cancel,3 -yes,TRUE,original,book,1 -yes,positive,original,book,1 -yes,that's the truth,original,book,1 -yes,yeah yeah,lambada,book,1 -thank_you,thanks,original,bye,2 -schedule_meeting,let's set up a meeting,parrot,book,1 -yes,confirmed,original,book,1 -yes,TRUE,original,book,1 -greeting,yo,original,greet,4 -greeting,hola!,original,greet,4 -yes,perfect,parrot,book,1 -yes,confirm,original,book,1 -cancel_reservation,get rid of my reservation at 2 pm at ruth's steak house,parrot,cancel,3 -meeting_schedule,are there meetings from 1-5?,parrot,avail,0 -greeting,how's ayi doing?,parrot,greet,4 -no,negatory,original,cancel,3 -goodbye,a good conversation,parrot,bye,2 -yes,affirmitive,original,book,1 -goodbye,this conversation was great,parrot,bye,2 -goodbye,but it was a good conversation,parrot,bye,2 -yes,positive,parrot,book,1 -greeting,salutation,parrot,greet,4 -how_busy,how busy is shokudo at 12,original,avail,0 -greeting,"hello, how are things",original,greet,4 -thank_you,very grateful,parrot,bye,2 -goodbye,bye now,original,bye,2 -greeting,salutations!,original,greet,4 -no,no,lambada,cancel,3 -goodbye,afterward,parrot,bye,2 -calendar_update,please add a date to my calendar for march 1,parrot,resched,5 -goodbye,just relax,parrot,bye,2 -reminder_update,just a reminder,parrot,resched,5 -date,please tell me what today is,original,avail,0 -yes,"yes, that's accurate",original,book,1 -goodbye,goodbye ai,parrot,bye,2 -cancel_reservation,cancellation of dinner reservations,parrot,cancel,3 -thank_you,thanks,original,bye,2 -no,that's wrong,original,cancel,3 -goodbye,later gater,original,bye,2 -goodbye,goodbye,original,bye,2 -calendar_update,i need to remove that event from my calendar,lambada,resched,5 -goodbye,farewell,original,bye,2 -cancel_reservation,how do you cancel a reservation at red robin?,parrot,cancel,3 -yes,"yep, that's true",original,book,1 -how_busy,how long will the wait be at jalapenos at 6:30 pm,lambada,avail,0 -goodbye,come on soon,parrot,bye,2 -greeting,how're you?,parrot,greet,4 -no,negating,parrot,cancel,3 -greeting,you good?,parrot,greet,4 -goodbye,peace,original,bye,2 -yes,facts,original,book,1 -greeting,hello there!,original,greet,4 -thank_you,thanks for that!,original,bye,2 -goodbye,see you again soon,original,bye,2 -goodbye,bye-bye,original,bye,2 -date,what date is tomorrow?,original,avail,0 -calendar_update,remove the meeting with laurie from my calendar,lambada,resched,5 -goodbye,nice talk,lambada,bye,2 -no,negation,parrot,cancel,3 -yes,a fact,parrot,book,1 -no,this is not true it's false,parrot,cancel,3 -no,no?,parrot,cancel,3 -thank_you,i really appreciate you,parrot,bye,2 -yes,correct,original,book,1 -yes,oh-huh,parrot,book,1 -calendar,do i have anything on my calendar for january 9th?,lambada,avail,0 -greeting,"why, hello bandit",original,greet,4 -no,invalid,original,cancel,3 -date,is today monday?,original,avail,0 -goodbye,it's over,parrot,bye,2 -thank_you,gracias,original,bye,2 -date,in 14 days?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -no,no that's a false statement,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -no,that's inaccurate,original,cancel,3 -thank_you,nice,parrot,bye,2 -thank_you,"awesome, thanks",original,bye,2 -cancel_reservation,just trash the reservation i made please,original,cancel,3 -greeting,hi,original,greet,4 -goodbye,go easy,parrot,bye,2 -calendar,i have what i have to do on wednesday,parrot,avail,0 -goodbye,i’m leaving-goodbye!,original,bye,2 -how_busy,what's the cheesecake factory like now?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -no,negating,parrot,cancel,3 -goodbye,i'll be out of here,lambada,bye,2 -greeting,salutations,parrot,greet,4 -greeting,"hi, ai",original,greet,4 -goodbye,signing off,original,bye,2 -calendar,is there an anniversary dinner on my calendar?,parrot,avail,0 -date,which date today?,parrot,avail,0 -greeting,hi how's everything?,parrot,greet,4 -yes,positive,parrot,book,1 -yes,affirmative,original,book,1 -greeting,"hey, how's it going",original,greet,4 -thank_you,many thanks,original,bye,2 -no,not really,original,cancel,3 -goodbye,its great to get to know you,lambada,bye,2 -yes,all right,parrot,book,1 -goodbye,goodbye for now,parrot,bye,2 -reminder_update,i need to remember,parrot,resched,5 -greeting,how's ai doing?,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -thank_you,thanks for my answer,parrot,bye,2 -no,i would say no,lambada,cancel,3 -no,negation,parrot,cancel,3 -yes,indeed,original,book,1 -greeting,"hey, how's my day going",lambada,greet,4 -greeting,what's my feeling?,parrot,greet,4 -thank_you,good looking out,original,bye,2 -how_busy,is macy's busy?,parrot,avail,0 -thank_you,again thank you,parrot,bye,2 -calendar,show me what's on my calendar for march 14th?,parrot,avail,0 -cancel_reservation,scrap the dinner reservation,parrot,cancel,3 -yes,say yes,lambada,book,1 -no,negation,parrot,cancel,3 -date,'what is the date today?',parrot,avail,0 -calendar,what do i need to know about the march date on my calendar?,lambada,avail,0 -no,negatory?,parrot,cancel,3 -greeting,hiya,original,greet,4 -thank_you,your answer is good,parrot,bye,2 -no,thanks no,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -yes,certainly,parrot,book,1 -calendar_update,please delete the lunch with steve on friday,parrot,resched,5 -calendar_update,i want to get rid of my trip to the zoo on march 1,parrot,resched,5 -no,no,lambada,cancel,3 -meeting_schedule,do i have to schedule meetings with kim?,parrot,avail,0 -goodbye,it's over,parrot,bye,2 -schedule_meeting,create a meeting for me,lambada,book,1 -reminder_update,remind me,original,resched,5 -greeting,good day,original,greet,4 -yes,yes please,original,book,1 -no,say negative,parrot,cancel,3 -date,date tomorrow,parrot,avail,0 -greeting,welcome,parrot,greet,4 -thank_you,appreciate the assistance,parrot,bye,2 -yes,good yes,lambada,book,1 -how_busy,can you tell me how busy the olive garden restaurant is at 7:30 pm?,lambada,avail,0 -thank_you,you helped,parrot,bye,2 -thank_you,okay thanks,original,bye,2 -thank_you,you've given me so much information thank you,parrot,bye,2 -thank_you,really great!,original,bye,2 -how_busy,how busy will the luncheon at red robin be at 6,lambada,avail,0 -thank_you,your response is appreciated,parrot,bye,2 -no,no it's a no,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -yes,positive,original,book,1 -how_busy,is the wait at applebees really long?,lambada,avail,0 -goodbye,see ya later,original,bye,2 -goodbye,"great chat, talk later",lambada,bye,2 -thank_you,thanks for responding,parrot,bye,2 -no,that's not right?,parrot,cancel,3 -how_busy,please look at the current wait times at chili's right now,parrot,avail,0 -yes,that is accurate,original,book,1 -goodbye,good-bye,parrot,bye,2 -goodbye,goodbye,original,bye,2 -no,that's negative,parrot,cancel,3 -thank_you,you helped,parrot,bye,2 -yes,thats right,original,book,1 -yes,a fact,parrot,book,1 -no,that's erroneous,parrot,cancel,3 -yes,just right,parrot,book,1 -no,it's no,parrot,cancel,3 -how_busy,how busy is the restaurant around lunchtime,lambada,avail,0 -no,it's actually false,parrot,cancel,3 -how_busy,if the wait at the pizza factory is long would you like to know?,parrot,avail,0 -goodbye,nice talk,lambada,bye,2 -goodbye,later,original,bye,2 -date,what's my date?,parrot,avail,0 -yes,positive,original,book,1 -reminder_update,make a reminder please,parrot,resched,5 -no,negative certainly,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -no,that can't be true,original,cancel,3 -goodbye,enjoy my day goodbye,parrot,bye,2 -yes,"yes, this is true",original,book,1 -goodbye,farewell!,original,bye,2 -no,no way,original,cancel,3 -yes,"agreed, that's valid",original,book,1 -yes,huh,parrot,book,1 -goodbye,farewell,original,bye,2 -yes,approved,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,absolutely false,parrot,cancel,3 -greeting,aho,parrot,greet,4 -date,what's today,original,avail,0 -yes,accept,parrot,book,1 -greeting,what's happening?,parrot,greet,4 -greeting,how's this going?,parrot,greet,4 -goodbye,farewell!,original,bye,2 -yes,indeed,original,book,1 -greeting,ahoy hoy,original,greet,4 -no,no!,original,cancel,3 -no,that’s not correct,original,cancel,3 -thank_you,awesome thank you,parrot,bye,2 -thank_you,thank you?,parrot,bye,2 -greeting,how were you?,parrot,greet,4 -yes,definitely,original,book,1 -goodbye,glad we talked,parrot,bye,2 -yes,yes it's true,lambada,book,1 -date,what today?,parrot,avail,0 -date,can you give me a date for this?,parrot,avail,0 -schedule_meeting,i need to get a meeting room,lambada,book,1 -no,it's false,parrot,cancel,3 -greeting,all right with you?,parrot,greet,4 -no,nothing good,parrot,cancel,3 -yes,perfect,parrot,book,1 -no,negative,original,cancel,3 -how_busy,how busy is cheesecake factory around 6:30,lambada,avail,0 -meeting_schedule,do you have any meetings?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -greeting,hola!,original,greet,4 -thank_you,many thanks,original,bye,2 -reminder_update,can you set a reminder to put the clothes in the dryer?,lambada,resched,5 -greeting,hiya,original,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -greeting,bonjour,original,greet,4 -yes,im sure you're right,parrot,book,1 -goodbye,peace,original,bye,2 -goodbye,bye!,original,bye,2 -yes,definitely,original,book,1 -goodbye,good-bye,parrot,bye,2 -how_busy,if i want to sit at macadamias how long do i have to wait for,parrot,avail,0 -no,yes it's false,parrot,cancel,3 -greeting,whats new,lambada,greet,4 -date,what the day?,parrot,avail,0 -no,that’s incorrect,original,cancel,3 -goodbye,adios!,original,bye,2 -greeting,how you're treated,parrot,greet,4 -goodbye,peace,original,bye,2 -greeting,ahoy,lambada,greet,4 -reminder_update,do not let me forget to do it later,parrot,resched,5 -greeting,hey what's up,original,greet,4 -date,please date,parrot,avail,0 -greeting,hello there!,original,greet,4 -thank_you,appreciated,original,bye,2 -greeting,ahoy,lambada,greet,4 -no,invalid,original,cancel,3 -no,naw,parrot,cancel,3 -no,no thanks,original,cancel,3 -no,i don't think so,original,cancel,3 -no,say negative,parrot,cancel,3 -cancel_reservation,can you cancel my reservation at bob's burger?,lambada,cancel,3 -yes,ya,original,book,1 -greeting,hello there,original,greet,4 -schedule_meeting,how do i create a meeting?,parrot,book,1 -no,it's false,parrot,cancel,3 -yes,accept,parrot,book,1 -no,that would be no,lambada,cancel,3 -thank_you,thankyou,parrot,bye,2 -no,so that's no,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -goodbye,i'm going,parrot,bye,2 -no,no!,original,cancel,3 -greeting,hello bs,parrot,greet,4 -how_busy,tell me how long it will take to get a seat at chili's at 6pm?,parrot,avail,0 -yes,"yep, that's correct",lambada,book,1 -calendar_update,add a doctor appointment to my calendar for fridays,parrot,resched,5 -yes,affirmative,original,book,1 -goodbye,farewell!,original,bye,2 -goodbye,peace out!,original,bye,2 -no,that's incorrect,original,cancel,3 -yes,certainly,parrot,book,1 -thank_you,i'm grateful for your help,lambada,bye,2 -goodbye,goodbye thank you,parrot,bye,2 -yes,absolutely,original,book,1 -reminder_update,make me remember,parrot,resched,5 -calendar,can you check if i have an appointment on my calendar?,parrot,avail,0 -how_busy,how long is the wait at macy's,lambada,avail,0 -goodbye,"thanks, bye",original,bye,2 -no,"no, that's wrong",original,cancel,3 -how_busy,how long does it take to be seated at chili's restaurant?,parrot,avail,0 -yes,great,original,book,1 -goodbye,i have to go,parrot,bye,2 -yes,facts,original,book,1 -how_busy,how long will it be before we're in the restaurant?,parrot,avail,0 -yes,that appears true,original,book,1 -cancel_reservation,i have to cancel my reservation in hawaii for next week,parrot,cancel,3 -date,what today?,parrot,avail,0 -goodbye,i’m leaving-goodbye!,original,bye,2 -no,that's bad,parrot,cancel,3 -schedule_meeting,i need to know how to make a meeting,parrot,book,1 -yes,it'll be yes,parrot,book,1 -goodbye,sayonara ,parrot,bye,2 -yes,i agree,original,book,1 -goodbye,i’m leaving-goodbye!,original,bye,2 -greeting,what is new?,parrot,greet,4 -thank_you,i'm grateful for the information,parrot,bye,2 -date,what's the date after today?,parrot,avail,0 -thank_you,thanks for answering that,lambada,bye,2 -no,it's overwhelmingly negative,parrot,cancel,3 -goodbye,goodbye goodbye,parrot,bye,2 -date,where's tomorrow's date,parrot,avail,0 -how_busy,wait for a cheese cake at the restaurant?,parrot,avail,0 -reminder_update,set a reminder to pick up the kids,original,resched,5 -no,yes that's false,lambada,cancel,3 -yes,that's true,original,book,1 -greeting,how's life?,parrot,greet,4 -reminder_update,create a reminder to study for my final exams,parrot,resched,5 -goodbye,goodbye goodbye,parrot,bye,2 -goodbye,my friend,parrot,bye,2 -calendar_update,put a date on my calendar for tomorrow,lambada,resched,5 -yes,accepted,original,book,1 -greeting,hi,original,greet,4 -no,negation,parrot,cancel,3 -goodbye,i'm leaving,parrot,bye,2 -no,naw,parrot,cancel,3 -greeting,aloha,original,greet,4 -no,is it a lie,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -greeting,welcome,parrot,greet,4 -yes,i agree,original,book,1 -goodbye,bye-bye,original,bye,2 -schedule_meeting,i have to schedule a meeting with liza,parrot,book,1 -calendar_update,add my birthday to my calendar for next month on the 5th,original,resched,5 -reminder_update,remember to call my mother tomorrow,parrot,resched,5 -yes,yes,original,book,1 -greeting,hi what's up,original,greet,4 -greeting,i need to know how my day's going,lambada,greet,4 -reminder_update,make me remember,parrot,resched,5 -yes,a fact,parrot,book,1 -greeting,wassup,original,greet,4 -how_busy,how long will the wait be at olive garden at 10,lambada,avail,0 -yes,yeah,original,book,1 -yes,just right,parrot,book,1 -yes,TRUE,original,book,1 -date,today?,parrot,avail,0 -thank_you,it pleased me,parrot,bye,2 -meeting_schedule,how do you plan my meeting?,parrot,avail,0 -goodbye,bye!,original,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -thank_you,i appreciate the assistance,original,bye,2 -no,that's totally wrong!,original,cancel,3 -reminder_update,remind me something,parrot,resched,5 -no,no,lambada,cancel,3 -no,hell nah,original,cancel,3 -yes,ok,original,book,1 -date,please tell me the date tomorrow,parrot,avail,0 -yes,"yes, that is it",original,book,1 -goodbye,i'm going,parrot,bye,2 -no,no!,original,cancel,3 -no,it's false,parrot,cancel,3 -date,can you give me the details of my date?,parrot,avail,0 -yes,"yes, that's it",original,book,1 -greeting,hiya,original,greet,4 -goodbye,bye,original,bye,2 -yes,correct,original,book,1 -greeting,heyo,original,greet,4 -yes,sure thing,original,book,1 -yes,accept,parrot,book,1 -thank_you,appreciate it,original,bye,2 -thank_you,nice,parrot,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -greeting,wassup,original,greet,4 -greeting,why hello?,original,greet,4 -goodbye,i'm outta here!,original,bye,2 -no,invalid,original,cancel,3 -date,where is tomorrow's date,lambada,avail,0 -thank_you,gracias,original,bye,2 -thank_you,appreciated,original,bye,2 -goodbye,tootles?,parrot,bye,2 -yes,yes,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,"that's all i need, i'm going now",original,bye,2 -greeting,hiya!,original,greet,4 -greeting,what's up?,parrot,greet,4 -how_busy,how busy will i be at the pizzeria around 8 pm,parrot,avail,0 -greeting,hey it's up,lambada,greet,4 -thank_you,thank you for my assistance,original,bye,2 -greeting,hi how's the situation?,parrot,greet,4 -greeting,and how's it going?,parrot,greet,4 -yes,confirmed,original,book,1 -yes,ya,original,book,1 -date,date tomorrow?,parrot,avail,0 -yes,yeah,original,book,1 -no,i don't agree,parrot,cancel,3 -no,no!,original,cancel,3 -yes,"yep, that's true",original,book,1 -thank_you,thanks again!,original,bye,2 -yes,okay,original,book,1 -schedule_meeting,can you schedule a meeting with john for 12?,original,book,1 -greeting,hey yai,lambada,greet,4 -how_busy,is the restaurant the busiest at dinner time?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -date,now what day is it,parrot,avail,0 -yes,say positive,parrot,book,1 -greeting,hola!,original,greet,4 -greeting,hiya!,original,greet,4 -cancel_reservation,can you cancel the reservation at the scallop bar?,lambada,cancel,3 -how_busy,what's the minimum wait time at outback steakhouse,lambada,avail,0 -goodbye,goodbyes soon,parrot,bye,2 -meeting_schedule,will i have a meeting today?,parrot,avail,0 -goodbye,regards,original,bye,2 -yes,i know,parrot,book,1 -yes,ok,original,book,1 -yes,good,parrot,book,1 -greeting,salutations,parrot,greet,4 -yes,yay,lambada,book,1 -yes,good,parrot,book,1 -yes,let's do that,parrot,book,1 -goodbye,sayonara ,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -meeting_schedule,when do i have to meet with my dad?,parrot,avail,0 -thank_you,i'm glad you did it for me,parrot,bye,2 -how_busy,how long is the wait for a table at tg restaurant,lambada,avail,0 -greeting,ahoy there,lambada,greet,4 -greeting,"hello, friend",original,greet,4 -no,nada,original,cancel,3 -yes,yup,original,book,1 -how_busy,how long does it take to wait for a blue jay?,parrot,avail,0 -no,that can't be true?,parrot,cancel,3 -goodbye,signing off,original,bye,2 -calendar,tell me what my calendar looks like for march 13th?,parrot,avail,0 -greeting,how've you been,original,greet,4 -no,that's incorrect!,original,cancel,3 -goodbye,goodbye!,original,bye,2 -no,naw,original,cancel,3 -meeting_schedule,any meetings on the schedule today,original,avail,0 -goodbye,buhbye,original,bye,2 -yes,just right,parrot,book,1 -thank_you,thankyou,parrot,bye,2 -goodbye,farewell,original,bye,2 -how_busy,waiting at cheeseburgers?,parrot,avail,0 -meeting_schedule,"for today only, how many meetings are with jake",original,avail,0 -goodbye,nice to see you,original,bye,2 -yes,is true,parrot,book,1 -thank_you,you've tried,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -thank_you,thanks for the reply,original,bye,2 -goodbye,thank you for chatting with me later,parrot,bye,2 -goodbye,nice drive by,lambada,bye,2 -how_busy,outback steakhouse at 7 pm,parrot,avail,0 -goodbye,later goodbye,parrot,bye,2 -goodbye,maybe next time,parrot,bye,2 -greeting,how's ai doing?,parrot,greet,4 -how_busy,i have to wait for mr joes,parrot,avail,0 -thank_you,so grateful,parrot,bye,2 -no,not good idea,parrot,cancel,3 -yes,exactly right,original,book,1 -yes,yeap,original,book,1 -yes,that's correct,original,book,1 -cancel_reservation,"cancel my reservation for dinner, please",original,cancel,3 -thank_you,much obliged,original,bye,2 -no,naw,original,cancel,3 -goodbye,i must catch up,parrot,bye,2 -no,but that's not really true,parrot,cancel,3 -yes,perfect,parrot,book,1 -reminder_update,add a reminder for me?,parrot,resched,5 -no,that's not right?,parrot,cancel,3 -goodbye,thank you for having this conversation with me,parrot,bye,2 -yes,ok,original,book,1 -meeting_schedule,what are my scheduled meetings today?,parrot,avail,0 -no,negative sure,parrot,cancel,3 -yes,yup,original,book,1 -no,this isn't true,parrot,cancel,3 -greeting,bonjour,original,greet,4 -greeting,hola,original,greet,4 -thank_you,you've been amazing,lambada,bye,2 -greeting,why hello?,original,greet,4 -greeting,welcome,parrot,greet,4 -no,is a lie?,parrot,cancel,3 -no,naw,parrot,cancel,3 -goodbye,goodbye goodbye,parrot,bye,2 -goodbye,good call,parrot,bye,2 -goodbye,farewell,original,bye,2 -no,hell nah,original,cancel,3 -goodbye,goodbyes,parrot,bye,2 -yes,TRUE,original,book,1 -thank_you,"thanks, that's helpful",original,bye,2 -how_busy,can you tell me how busy the cheesecake factory is at 6 pm?,lambada,avail,0 -greeting,yo,original,greet,4 -no,the whole thing is terribly wrong,parrot,cancel,3 -how_busy,how long do we have to wait before we're seated in the cheese cake factory,parrot,avail,0 -yes,yeah,original,book,1 -no,that's absolutely wrong,parrot,cancel,3 -no,negation,parrot,cancel,3 -yes,a fact,parrot,book,1 -goodbye,goodbye no problem,parrot,bye,2 -how_busy,how long do i have to wait before i can eat?,parrot,avail,0 -cancel_reservation,get rid of my reservation in chez francois for jennifer,parrot,cancel,3 -goodbye,farewell,original,bye,2 -yes,i agree,original,book,1 -greeting,what's happening,original,greet,4 -thank_you,i'm grateful,original,bye,2 -calendar,look at my calendar for tuesday,parrot,avail,0 -goodbye,fairwell,original,bye,2 -calendar_update,i have to remove fishing from my calendar for soccer ,parrot,resched,5 -goodbye,goodbyes,parrot,bye,2 -reminder_update,remind me to take the chicken out in a hour,original,resched,5 -yes,okay,original,book,1 -goodbye,bye for now,original,bye,2 -yes,great,original,book,1 -yes,i'm going to tell you tes,parrot,book,1 -yes,yup,original,book,1 -greeting,salutation,parrot,greet,4 -reminder_update,remind me of something,parrot,resched,5 -greeting,"good morning, ai",original,greet,4 -no,that is erroneous,original,cancel,3 -reminder_update,please remember to visit ryan,parrot,resched,5 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,sign off,parrot,bye,2 -no,no!,original,cancel,3 -thank_you,very grateful,parrot,bye,2 -reminder_update,create reminders to wash dishes,parrot,resched,5 -goodbye,later!,original,bye,2 -greeting,hi,original,greet,4 -greeting,hola,original,greet,4 -greeting,whats new?,parrot,greet,4 -thank_you,thanks for helping out,original,bye,2 -goodbye,have fun?,lambada,bye,2 -calendar,tell me what's on my calendar for friday the 1st?,parrot,avail,0 -yes,i'll say yes,parrot,book,1 -greeting,how's my feeling?,parrot,greet,4 -cancel_reservation,i booked chris at tony's please cancel it,parrot,cancel,3 -thank_you,it pleased me,parrot,bye,2 -how_busy,is mr joes steakhouse crowded during dinner?,lambada,avail,0 -how_busy,can you tell me how busy ihop is at 6pm?,parrot,avail,0 -greeting,how's everything?,parrot,greet,4 -date,what date do you want me to get?,parrot,avail,0 -date,what is today?,original,avail,0 -yes,affirmative,original,book,1 -goodbye,goodnight,original,bye,2 -thank_you,the best,parrot,bye,2 -no,ill pass,original,cancel,3 -date,could you tell me today's date,original,avail,0 -reminder_update,remind me to bring the jacket in 2 weeks,parrot,resched,5 -no,that's definitely false,original,cancel,3 -goodbye,peace,original,bye,2 -yes,you're right,original,book,1 -no,that's negative,parrot,cancel,3 -reminder_update,remind me,original,resched,5 -goodbye,tootles,original,bye,2 -no,i don't think it's appropriate,parrot,cancel,3 -greeting,how is ayi doing?,parrot,greet,4 -meeting_schedule,tell me what my day looks like today in terms of meetings,parrot,avail,0 -greeting,welcome,parrot,greet,4 -greeting,hi,original,greet,4 -yes,great,original,book,1 -cancel_reservation,i made a reservation under mark hamil at emporium that i don't need any more,lambada,cancel,3 -goodbye,bye bye!,original,bye,2 -goodbye,good call,parrot,bye,2 -greeting,how's idy?,parrot,greet,4 -cancel_reservation,get the salad canceled,parrot,cancel,3 -goodbye,say goodbye for now,parrot,bye,2 -yes,i know what i get,parrot,book,1 -greeting,hola!,original,greet,4 -goodbye,i'll be on the way,parrot,bye,2 -no,it's overwhelmingly wrong,parrot,cancel,3 -no,not right,parrot,cancel,3 -how_busy,tell me the time to wait at alamo pizza?,parrot,avail,0 -greeting,hey bs,lambada,greet,4 -greeting,how's idy doing,lambada,greet,4 -greeting,how things go?,parrot,greet,4 -greeting,hola,original,greet,4 -greeting,hi,original,greet,4 -thank_you,thanks for the answer,original,bye,2 -greeting,how's otc?,parrot,greet,4 -no,ill pass,original,cancel,3 -yes,good,parrot,book,1 -greeting,is that what do you feel like doing?,parrot,greet,4 -goodbye,later!,original,bye,2 -goodbye,", goodbye",lambada,bye,2 -goodbye,but it was a good conversation,parrot,bye,2 -greeting,hi there alexa,original,greet,4 -yes,indeed,original,book,1 -how_busy,how busy is michel's at 5:30,lambada,avail,0 -goodbye,goodbyes soon,parrot,bye,2 -no,not right i don't believe,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -no,negatory,original,cancel,3 -no,nope,original,cancel,3 -goodbye,goodbye now,parrot,bye,2 -goodbye,take a rest,parrot,bye,2 -no,i'll pass,original,cancel,3 -yes,absolutely!,original,book,1 -greeting,hows are ya,original,greet,4 -goodbye,later gator!,original,bye,2 -calendar,do i have a note on the calendar for black friday?,original,avail,0 -greeting,what's happening?,parrot,greet,4 -goodbye,goodnight,original,bye,2 -no,but it's wrong,parrot,cancel,3 -greeting,wassup,original,greet,4 -no,it's very wrong,parrot,cancel,3 -yes,approved,original,book,1 -no,nothing,parrot,cancel,3 -thank_you,you've tried,parrot,bye,2 -yes,obviously,parrot,book,1 -thank_you,let me thank you,original,bye,2 -yes,yeah,original,book,1 -greeting,what's up?,parrot,greet,4 -goodbye,bye now,original,bye,2 -yes,exactly right,original,book,1 -date,do you have my date?,parrot,avail,0 -goodbye,bye bye!,original,bye,2 -goodbye,i'm outta here!,original,bye,2 -no,it's no,parrot,cancel,3 -yes,confirm,original,book,1 -goodbye,have fun?,lambada,bye,2 -thank_you,thank you for making my life easier,parrot,bye,2 -schedule_meeting,can you help me in a meeting?,parrot,book,1 -thank_you,well done,parrot,bye,2 -goodbye,regards,original,bye,2 -yes,sure thing,original,book,1 -meeting_schedule,i need to count my meetings as i have none today,lambada,avail,0 -how_busy,around nine is ambrosio busy,parrot,avail,0 -greeting,hi how's it going?,parrot,greet,4 -goodbye,tootles?,parrot,bye,2 -goodbye,signing off,original,bye,2 -yes,ok,original,book,1 -yes,yup,original,book,1 -yes,it'd be great,parrot,book,1 -no,no?,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -meeting_schedule,when's my meeting with leroy scheduled for?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -greeting,hey,original,greet,4 -yes,indeed,original,book,1 -yes,so it works,parrot,book,1 -yes,a true statement,parrot,book,1 -thank_you,"great, thanks!",original,bye,2 -no,not really,original,cancel,3 -goodbye,", goodbye",lambada,bye,2 -yes,TRUE,original,book,1 -goodbye,i'm leaving,parrot,bye,2 -calendar_update,please remove the appointment i have scheduled for monday,lambada,resched,5 -date,what year?,parrot,avail,0 -goodbye,the time to say goodbye?,parrot,bye,2 -reminder_update,please set a reminder for me to put the clothes in the dryer,original,resched,5 -no,"please, no",original,cancel,3 -date,this is the day,parrot,avail,0 -how_busy,how busy is the cheesecake factory at 8,lambada,avail,0 -goodbye,talk to you later!,original,bye,2 -goodbye,"thanks for the talk, take care",lambada,bye,2 -date,what's today,original,avail,0 -goodbye,regards,original,bye,2 -meeting_schedule,the meetings today,parrot,avail,0 -greeting,whats up,original,greet,4 -no,nope,original,cancel,3 -greeting,aho,parrot,greet,4 -greeting,hi,original,greet,4 -no,FALSE,lambada,cancel,3 -yes,good,parrot,book,1 -goodbye,i'm leaving,parrot,bye,2 -how_busy,tell me the average wait time at chili's right now?,parrot,avail,0 -no,negation,parrot,cancel,3 -no,you're not right,parrot,cancel,3 -no,it's not always true,parrot,cancel,3 -date,a year?,parrot,avail,0 -goodbye,good see you,lambada,bye,2 -greeting,how's my treatment?,parrot,greet,4 -no,naw,parrot,cancel,3 -yes,good,parrot,book,1 -goodbye,good conversation,parrot,bye,2 -how_busy,can you tell me how busy it is at 5 o'clock?,parrot,avail,0 -reminder_update,please remember something,parrot,resched,5 -no,not that one,original,cancel,3 -no,negative certainly,parrot,cancel,3 -how_busy,how many people will be seated at the restaurant at 7pm,lambada,avail,0 -greeting,hey bs,lambada,greet,4 -how_busy,how long will the wait at the pizza restaurant be?,parrot,avail,0 -no,that's not right,original,cancel,3 -no,invalid,original,cancel,3 -goodbye,have fun?,lambada,bye,2 -yes,of course,original,book,1 -goodbye,bye,original,bye,2 -goodbye,my way,parrot,bye,2 -no,certainly false,parrot,cancel,3 -yes,of course,original,book,1 -goodbye,good-bye,parrot,bye,2 -yes,confirm,original,book,1 -date,what is the date?,original,avail,0 -no,i think it's wrong,parrot,cancel,3 -greeting,hey how's my day going?,parrot,greet,4 -goodbye,goodbyes,parrot,bye,2 -yes,correct,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,tell me how busy that restaurant is at noon?,lambada,avail,0 -greeting,how's it going?,parrot,greet,4 -no,negating,parrot,cancel,3 -date,now what day is it,parrot,avail,0 -schedule_meeting,can you help me create a meeting for me?,parrot,book,1 -cancel_reservation,call off the dinner reservation,original,cancel,3 -no,no,lambada,cancel,3 -reminder_update,keep setting reminders to store the money,parrot,resched,5 -thank_you,i'm grateful,original,bye,2 -goodbye,buhbye,original,bye,2 -thank_you,thankyou,parrot,bye,2 -calendar,please read my calendar,parrot,avail,0 -yes,a fact,parrot,book,1 -greeting,how are you,original,greet,4 -how_busy,is michel busy at 3 o'clock?,parrot,avail,0 -yes,definitely,original,book,1 -yes,yes you are,original,book,1 -thank_you,gracias,original,bye,2 -how_busy,waiting for macaroni and cheese?,parrot,avail,0 -greeting,hello ai,parrot,greet,4 -greeting,yo,original,greet,4 -date,what's my day today?,parrot,avail,0 -yes,good,parrot,book,1 -how_busy,how busy is the restaurant at lunch time?,parrot,avail,0 -goodbye,peace,original,bye,2 -how_busy,how long will the wait be before we go to the restaurant?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -meeting_schedule,do i have to be present for any meetings?,parrot,avail,0 -yes,definitely,original,book,1 -how_busy,can you tell me how busy red lobster is at 6?,lambada,avail,0 -reminder_update,set a reminder,original,resched,5 -no,that's totally wrong,parrot,cancel,3 -greeting,bonjour,original,greet,4 -date,you have the date?,parrot,avail,0 -date,where's tomorrow's date,parrot,avail,0 -thank_you,thanks for helping me today,parrot,bye,2 -date,in 9 days?,parrot,avail,0 -thank_you,many thanks,original,bye,2 -no,thanks no,parrot,cancel,3 -schedule_meeting,need a meeting room,parrot,book,1 -calendar_update,take pat's appointment off my calendar,original,resched,5 -goodbye,it was nice to converse with you,original,bye,2 -goodbye,regards,original,bye,2 -no,that isn't correct,original,cancel,3 -yes,all right,original,book,1 -no,i don't think that's correct,lambada,cancel,3 -thank_you,really great!,original,bye,2 -yes,yes,original,book,1 -goodbye,goodbye,original,bye,2 -greeting,how's life going?,parrot,greet,4 -meeting_schedule,discuss my meeting schedule with me,lambada,avail,0 -goodbye,goodbye ai,parrot,bye,2 -calendar,can you help me find my schedule for january 4,parrot,avail,0 -yes,yay,lambada,book,1 -greeting,heyo,original,greet,4 -yes,uh-huh,original,book,1 -no,"no, that's incorrect",original,cancel,3 -greeting,heller,original,greet,4 -greeting,"why, hello bandit",original,greet,4 -yes,okay,original,book,1 -yes,yes,original,book,1 -how_busy,can i expect red robin to be busy at 7:20 pm?,lambada,avail,0 -yes,affirmitive,original,book,1 -no,no way!,original,cancel,3 -how_busy,what time will it take to sit at the macaroni grill?,parrot,avail,0 -no,negatory,original,cancel,3 -yes,yeah,original,book,1 -thank_you,"thanks, that's helpful",original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,yay,lambada,book,1 -thank_you,you were a big help,parrot,bye,2 -no,no thank you,original,cancel,3 -no,that’s not correct,original,cancel,3 -calendar_update,please add my calendar for the meeting of the staff scheduled for march 1 2019 at 10 am please,parrot,resched,5 -greeting,how are things going?,parrot,greet,4 -goodbye,as regards,parrot,bye,2 -meeting_schedule,when is my meeting with christ?,parrot,avail,0 -how_busy,how many people are going to the chili around seven,parrot,avail,0 -greeting,whats new?,parrot,greet,4 -date,what is that day?,parrot,avail,0 -goodbye,bye,original,bye,2 -yes,okay,original,book,1 -yes,yes,original,book,1 -no,invalid,original,cancel,3 -goodbye,bye!,original,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -yes,confirm,original,book,1 -greeting,what's new,lambada,greet,4 -no,no?,parrot,cancel,3 -no,that's incorrect,original,cancel,3 -yes,it's logical,parrot,book,1 -goodbye,greetings,parrot,bye,2 -date,date please,original,avail,0 -thank_you,thanks so much!,original,bye,2 -thank_you,again thanks,parrot,bye,2 -goodbye,signing off,original,bye,2 -no,that is untrue,original,cancel,3 -yes,accepted,original,book,1 -goodbye,im leaving,parrot,bye,2 -yes,uh-huh,original,book,1 -thank_you,good job thanks,parrot,bye,2 -calendar,show me the calendar for march 1?,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -how_busy,how long will the wait be at tamales?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -thank_you,thanks for trying,original,bye,2 -how_busy,tell me how busy this chili hole is,parrot,avail,0 -yes,good,parrot,book,1 -thank_you,thanks!,original,bye,2 -greeting,how is everything with you,original,greet,4 -no,negatory?,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -how_busy,how busy will olive garden be at 730 pm,parrot,avail,0 -goodbye,"later, good luck",lambada,bye,2 -greeting,"howdy, what's new",original,greet,4 -yes,yeap,original,book,1 -yes,yup,original,book,1 -goodbye,good luck tomorrow,lambada,bye,2 -thank_you,you've helped,parrot,bye,2 -yes,uh-huh,original,book,1 -goodbye,goodbye later,parrot,bye,2 -thank_you,i have to thank you,parrot,bye,2 -no,negatory,original,cancel,3 -yes,a fact,parrot,book,1 -goodbye,catch you around,original,bye,2 -how_busy,how many people go to the restaurant before the dinner,parrot,avail,0 -meeting_schedule,can you list the schedule of the meeting?,parrot,avail,0 -reminder_update,remind me to exercise,original,resched,5 -yes,absolutely correct,original,book,1 -yes,that's right,original,book,1 -thank_you,thanks for cooperating,parrot,bye,2 -no,that's wrong,original,cancel,3 -yes,correct,original,book,1 -how_busy,how busy will the olive garden be around 5?,parrot,avail,0 -greeting,what's happening,original,greet,4 -yes,10-Apr,original,book,1 -goodbye,buhbye,original,bye,2 -date,in 9 days?,parrot,avail,0 -goodbye,peace,original,bye,2 -greeting,"hello, ai",original,greet,4 -yes,ok,original,book,1 -yes,great,original,book,1 -no,certainly not,original,cancel,3 -no,it's no,parrot,cancel,3 -no,negative,original,cancel,3 -no,FALSE,lambada,cancel,3 -yes,"yes, please",original,book,1 -greeting,good morning,parrot,greet,4 -yes,"yes, please",parrot,book,1 -yes,"correct, that's true",original,book,1 -no,no thank you,original,cancel,3 -date,what's the day of the future?,parrot,avail,0 -yes,obviously,parrot,book,1 -yes,facts,original,book,1 -goodbye,goodbyes soon,parrot,bye,2 -calendar_update,remove the baby shower on 11 may from my calendar,parrot,resched,5 -reminder_update,i need to be reminded,original,resched,5 -calendar_update,"for the calendar, on february 8 add moms birthday",original,resched,5 -thank_you,you've been great,parrot,bye,2 -yes,certainly,parrot,book,1 -calendar_update,can you delete this event from my calendar?,parrot,resched,5 -no,don't like that no,parrot,cancel,3 -cancel_reservation,i need to cancel my reservation for 2 at franklin's grille,original,cancel,3 -no,that's very negative,parrot,cancel,3 -goodbye,good call,parrot,bye,2 -yes,correct,original,book,1 -yes,yes,original,book,1 -yes,positive,parrot,book,1 -how_busy,how busy is the cheesecake factory around lunchtime?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -yes,huh,parrot,book,1 -no,that's not necessarily true,lambada,cancel,3 -yes,indeed,original,book,1 -thank_you,"nice, excellent!",original,bye,2 -how_busy,how busy is olive garden at 6:30,lambada,avail,0 -goodbye,bye!,original,bye,2 -reminder_update,remember to remember this later,parrot,resched,5 -greeting,all right now?,parrot,greet,4 -how_busy,tell me the time to wait before getting into the red robin?,parrot,avail,0 -goodbye,later!,original,bye,2 -date,what date today?,parrot,avail,0 -no,FALSE,original,cancel,3 -goodbye,regards,original,bye,2 -yes,"yes, please",parrot,book,1 -how_busy,is the shopping center open at noon?,parrot,avail,0 -yes,a fact,parrot,book,1 -goodbye,i'll be on my way,parrot,bye,2 -goodbye,tootles,original,bye,2 -goodbye,adios,original,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -schedule_meeting,are meeting rooms free between 8 and 3 o'clock?,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -thank_you,your assistance is appreciated,parrot,bye,2 -greeting,wassup,original,greet,4 -goodbye,goodbye!,original,bye,2 -goodbye,tootles,original,bye,2 -meeting_schedule,tell me when i am meeting ole?,lambada,avail,0 -no,negative,original,cancel,3 -meeting_schedule,i think dan scheduled a meeting today with me can you double check please,parrot,avail,0 -no,false sure,parrot,cancel,3 -how_busy,what seating is available in this restaurant?,parrot,avail,0 -thank_you,gracias,original,bye,2 -greeting,are you good?,original,greet,4 -goodbye,come on soon,parrot,bye,2 -goodbye,i like to talk to you,parrot,bye,2 -greeting,how's the ayi?,parrot,greet,4 -goodbye,goodbye,original,bye,2 -yes,"agreed, that's valid",original,book,1 -greeting,hey how are you doing?,parrot,greet,4 -no,nope,original,cancel,3 -thank_you,thankyou,parrot,bye,2 -calendar_update,clear my calendar for february 6,parrot,resched,5 -greeting,hey yai,lambada,greet,4 -date,what's the date,original,avail,0 -yes,absolutely!,original,book,1 -how_busy,how long will it take to get a table at american steak house?,parrot,avail,0 -greeting,salutations!,original,greet,4 -yes,"yup, that's true",original,book,1 -schedule_meeting,does scheduling a meeting help?,parrot,book,1 -goodbye,bye bye now,lambada,bye,2 -yes,affirmitive,original,book,1 -goodbye,as regards,parrot,bye,2 -schedule_meeting,list the available meeting rooms in the afternoon?,parrot,book,1 -yes,uh-huh,original,book,1 -greeting,"hello, ai",original,greet,4 -greeting,how's the ayi doing?,parrot,greet,4 -yes,oh-huh,parrot,book,1 -meeting_schedule,meet all of my meetings today,parrot,avail,0 -no,no no no,parrot,cancel,3 -no,do not change to false?,lambada,cancel,3 -yes,i'd say that's true,parrot,book,1 -schedule_meeting,can you reserve a room for a friday meeting at 5pm?,original,book,1 -goodbye,goodnight,original,bye,2 -goodbye,the talk was nice,lambada,bye,2 -date,what's the date?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -goodbye,goodbye to yours,parrot,bye,2 -greeting,hey hey!,original,greet,4 -no,not right?,parrot,cancel,3 -yes,it's positive,parrot,book,1 -goodbye,fairwell?,parrot,bye,2 -yes,"yes, that is factual",original,book,1 -greeting,how're you?,parrot,greet,4 -no,that's bad,parrot,cancel,3 -no,nada,original,cancel,3 -goodbye,bye!,original,bye,2 -goodbye,my friend,parrot,bye,2 -goodbye,bye bye!,original,bye,2 -thank_you,i'm grateful,original,bye,2 -greeting,hello,original,greet,4 -no,that is false,original,cancel,3 -how_busy,is the wait too long for the dinner?,parrot,avail,0 -date,date please,original,avail,0 -meeting_schedule,when for i meet jane for our meeting?,original,avail,0 -goodbye,later gater,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -greeting,how it goes?,parrot,greet,4 -goodbye,sign off,parrot,bye,2 -thank_you,thanks a million,original,bye,2 -greeting,hiya,original,greet,4 -thank_you,I owe you one,parrot,bye,2 -greeting,what's happening,original,greet,4 -yes,correct,original,book,1 -yes,good,parrot,book,1 -calendar,tell me my calendar?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -goodbye,as regards,parrot,bye,2 -thank_you,thanks,original,bye,2 -no,no thanks,original,cancel,3 -how_busy,is ihop busy?,parrot,avail,0 -yes,obviously,parrot,book,1 -schedule_meeting,i need a meeting room on saturday at 10am can you hook me up?,parrot,book,1 -yes,great,original,book,1 -how_busy,how long before dinner,parrot,avail,0 -no,that's negative,parrot,cancel,3 -how_busy,how busy is the cheesecake factory at 5pm?,parrot,avail,0 -greeting,hey,original,greet,4 -goodbye,later gator!,original,bye,2 -no,negating,parrot,cancel,3 -yes,10-Apr,original,book,1 -no,invalid,original,cancel,3 -calendar,what do i have going on march 2nd on my calendar?,original,avail,0 -goodbye,"goodbye, ai assistant",original,bye,2 -yes,facts,original,book,1 -yes,"agreed, that's valid",original,book,1 -yes,agreed,original,book,1 -goodbye,do not miss the chance to talk to you?,lambada,bye,2 -no,negation,parrot,cancel,3 -yes,obviously,parrot,book,1 -goodbye,farewell!,original,bye,2 -thank_you,thanks for my reply,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -goodbye,i'll go,parrot,bye,2 -goodbye,have fun?,lambada,bye,2 -meeting_schedule,talk about my meetings for the day,parrot,avail,0 -date,where's tomorrow's date,parrot,avail,0 -yes,all right,parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -goodbye,maybe i'll see you,parrot,bye,2 -date,what's today?,parrot,avail,0 -thank_you,you're special thanks,parrot,bye,2 -greeting,salutation,parrot,greet,4 -goodbye,goodbyes,parrot,bye,2 -no,i'll pass,original,cancel,3 -thank_you,thankyou,parrot,bye,2 -date,what date will we enter in the future?,parrot,avail,0 -no,that's erroneous,parrot,cancel,3 -goodbye,next time i'll talk to you,parrot,bye,2 -yes,my answer is yes,parrot,book,1 -schedule_meeting,schedule a meeting for me,original,book,1 -greeting,hiya!,original,greet,4 -thank_you,your assistance is appreciated,parrot,bye,2 -no,erroneous,parrot,cancel,3 -greeting,how's everything,original,greet,4 -no,don't like that,parrot,cancel,3 -thank_you,i'm grateful,original,bye,2 -greeting,just wanted to say hi,original,greet,4 -greeting,hello bs,parrot,greet,4 -how_busy,how busy will red robin be around 5 pm?,parrot,avail,0 -no,don't agree,parrot,cancel,3 -no,that's a negative,original,cancel,3 -calendar,do i have any events on my calendar for next sunday?,lambada,avail,0 -goodbye,good-bye,parrot,bye,2 -how_busy,will the restaurant have a busy wait at 10 am?,parrot,avail,0 -no,but that's not true?,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -yes,right,parrot,book,1 -no,so that's no,parrot,cancel,3 -yes,accept,parrot,book,1 -yes,definitely,original,book,1 -goodbye,fairwell,original,bye,2 -reminder_update,make me a reminder that tomorrow is trash day,parrot,resched,5 -yes,you got it,original,book,1 -how_busy,is there a waiting period in the olive garden?,parrot,avail,0 -goodbye,glad we can talk again,parrot,bye,2 -yes,facts,original,book,1 -goodbye,farewell!,original,bye,2 -thank_you,thank ya!,original,bye,2 -date,tell me what the date will be tomorrow,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,yup,original,book,1 -greeting,whats up?,parrot,greet,4 -yes,"agreed, that's valid",original,book,1 -thank_you,thanks for doing it,parrot,bye,2 -greeting,hello how're you doing?,parrot,greet,4 -goodbye,later goodbye,parrot,bye,2 -cancel_reservation,cancel my reservation in red robin,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -goodbye,it's time for goodbye,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,ai goodbye,original,bye,2 -how_busy,how long will i wait if i want to go to the cheesecake factory?,parrot,avail,0 -date,"what is the name of the month, day, and year?",lambada,avail,0 -meeting_schedule,the meetings today,parrot,avail,0 -meeting_schedule,meetings today,original,avail,0 -no,erroneous,parrot,cancel,3 -reminder_update,remind yourself to go shopping,parrot,resched,5 -calendar,did you set a date on my calendar for a doctor's appointment?,parrot,avail,0 -yes,positive,parrot,book,1 -calendar_update,please remove birthday party from my calendar,lambada,resched,5 -no,we don't want that,parrot,cancel,3 -greeting,wanted to say hello,parrot,greet,4 -calendar_update,can you remove an event from my calendar please?,parrot,resched,5 -no,what you've said is wrong?,parrot,cancel,3 -greeting,how've you been,original,greet,4 -no,that'd be a no,original,cancel,3 -no,i disagree that is false,original,cancel,3 -yes,facts,original,book,1 -yes,of course,original,book,1 -thank_you,very grateful,parrot,bye,2 -yes,yes,original,book,1 -yes,approved,original,book,1 -yes,so it works,parrot,book,1 -yes,confirmed,original,book,1 -yes,yes,original,book,1 -thank_you,"great, thanks!",original,bye,2 -goodbye,afterward,parrot,bye,2 -yes,TRUE,original,book,1 -greeting,hiya,original,greet,4 -yes,absolutely!,original,book,1 -greeting,hey hey!,original,greet,4 -how_busy,how long before i can eat at macaroni grill,lambada,avail,0 -goodbye,"later, goodbye",lambada,bye,2 -no,nay,original,cancel,3 -goodbye,im leaving,parrot,bye,2 -yes,sure,original,book,1 -yes,certainly true,parrot,book,1 -yes,i can tell you,parrot,book,1 -date,what the day?,parrot,avail,0 -no,it's a false statement,parrot,cancel,3 -how_busy,how long would it take to wait in olive garden right now?,parrot,avail,0 -how_busy,how long can the wait be for me at chili's,lambada,avail,0 -goodbye,later gater,original,bye,2 -yes,right,parrot,book,1 -no,naw,parrot,cancel,3 -how_busy,how long does it take to get seated at this steakhouse,lambada,avail,0 -no,i mean no,parrot,cancel,3 -goodbye,you're done,parrot,bye,2 -no,naw,parrot,cancel,3 -yes,yes,original,book,1 -yes,correct,original,book,1 -schedule_meeting,make a meeting with john at 9 o'clock,parrot,book,1 -how_busy,how busy is mcdonalds?,parrot,avail,0 -yes,i know this is true,lambada,book,1 -how_busy,how long will it take to get buffalo wings?,parrot,avail,0 -date,where's tomorrow's date,parrot,avail,0 -no,no please,parrot,cancel,3 -greeting,"hello, how's my day",original,greet,4 -yes,i guess,parrot,book,1 -goodbye,lovely conversation,parrot,bye,2 -goodbye,"nice talk, next time",lambada,bye,2 -yes,certainly,parrot,book,1 -greeting,wanted to say hello,parrot,greet,4 -goodbye,i'll go,parrot,bye,2 -thank_you,gracias,original,bye,2 -how_busy,does it get crowded at night?,parrot,avail,0 -no,i'd rather not,parrot,cancel,3 -greeting,hey there,original,greet,4 -goodbye,adios!,original,bye,2 -yes,thats right,original,book,1 -goodbye,goodbye then,parrot,bye,2 -yes,yes,original,book,1 -no,that's incorrect!,original,cancel,3 -goodbye,i enjoy our conversation,parrot,bye,2 -goodbye,regards,original,bye,2 -no,please no,parrot,cancel,3 -thank_you,you're doing a good job,lambada,bye,2 -how_busy,how busy will iman be at 6 o'clock in the morning,parrot,avail,0 -how_busy,how busy will the chili be at 730,parrot,avail,0 -yes,yeah,original,book,1 -yes,confirm,original,book,1 -greeting,how's it going now?,parrot,greet,4 -how_busy,if i want to eat in panera how long will i have to wait,parrot,avail,0 -yes,affirmative,original,book,1 -goodbye,buhbye now,lambada,bye,2 -greeting,get up ai,parrot,greet,4 -greeting,tell me what's going on,parrot,greet,4 -thank_you,you've helped,parrot,bye,2 -calendar,when is my doctor's appointment?,parrot,avail,0 -how_busy,how long is the wait at the chocolate fountain?,parrot,avail,0 -no,it's false,parrot,cancel,3 -greeting,hola!,original,greet,4 -goodbye,fairwell,original,bye,2 -no,that's incorrect!,original,cancel,3 -no,i think that's false,original,cancel,3 -goodbye,fairwell?,parrot,bye,2 -yes,TRUE,original,book,1 -no,definitely not,original,cancel,3 -schedule_meeting,can you help me schedule a meeting,parrot,book,1 -yes,that's right,original,book,1 -no,negating,parrot,cancel,3 -yes,that's a fact,parrot,book,1 -date,what's the date after today?,parrot,avail,0 -schedule_meeting,i want a meeting with danielle,parrot,book,1 -yes,affirmative,original,book,1 -thank_you,i appreciate what you have done,parrot,bye,2 -thank_you,many thanks,original,bye,2 -yes,it's certainly true,parrot,book,1 -thank_you,awesome thank you,parrot,bye,2 -meeting_schedule,what are my meetings on my calendar today?,parrot,avail,0 -yes,affirmitive,original,book,1 -meeting_schedule,which meetings do i have today,original,avail,0 -yes,it's definitely positive,parrot,book,1 -goodbye,the talk was nice,lambada,bye,2 -date,give me a date,parrot,avail,0 -goodbye,have a good one?,original,bye,2 -no,invalid,original,cancel,3 -date,what date?,parrot,avail,0 -yes,yes,original,book,1 -yes,i believe you're right,parrot,book,1 -calendar_update,undo the last event in my calendar,parrot,resched,5 -thank_you,nice,parrot,bye,2 -yes,yes you are right,original,book,1 -schedule_meeting,what meeting rooms are available between 5 and 6pm?,parrot,book,1 -yes,yeap,original,book,1 -greeting,salutations,parrot,greet,4 -date,what date?,parrot,avail,0 -thank_you,i sincerely thank you,parrot,bye,2 -greeting,hi how's everything?,parrot,greet,4 -thank_you,appreciate the help,original,bye,2 -how_busy,how busy will the avocado steak house be at 730,parrot,avail,0 -how_busy,what's the wait time for a table at red lobster restaurant?,parrot,avail,0 -greeting,hows life for you,lambada,greet,4 -how_busy,red lobster at 8 pm?,parrot,avail,0 -greeting,ahoy there,lambada,greet,4 -greeting,how's it hanging,original,greet,4 -no,certainly false,parrot,cancel,3 -date,what's my date today?,parrot,avail,0 -no,that's so wrong,parrot,cancel,3 -how_busy,is there a wait time to get into tgifridays?,original,avail,0 -greeting,hello there!,original,greet,4 -cancel_reservation,cancel the dinner reservation i made,parrot,cancel,3 -yes,certainly,parrot,book,1 -meeting_schedule,what time do you meet robert?,parrot,avail,0 -thank_you,thanks,original,bye,2 -meeting_schedule,do you have any meetings scheduled today?,lambada,avail,0 -greeting,salutations!,original,greet,4 -goodbye,farewell,original,bye,2 -thank_you,thankyou,parrot,bye,2 -how_busy,how long will i have to wait for mr joe's,lambada,avail,0 -goodbye,farewell!,original,bye,2 -goodbye,i'm out,parrot,bye,2 -thank_you,thank you again,parrot,bye,2 -thank_you,i'm thankful for my support,parrot,bye,2 -yes,absolutely!,original,book,1 -goodbye,for now,parrot,bye,2 -calendar,how do i find the date of my birthday?,parrot,avail,0 -calendar,can you check my calendar for an item called checkbook,parrot,avail,0 -calendar,can you check my calendar for october 3?,parrot,avail,0 -no,that's bad,parrot,cancel,3 -goodbye,i'm leaving,parrot,bye,2 -how_busy,is that place crowded at night?,lambada,avail,0 -thank_you,thanks for helping out,original,bye,2 -how_busy,can you tell me how long it will be in olive garden at 5pm?,parrot,avail,0 -yes,right,parrot,book,1 -greeting,whats up,original,greet,4 -goodbye,goodbye goodbye,parrot,bye,2 -yes,i agree,original,book,1 -date,which date is it?,parrot,avail,0 -date,please share the date of today?,parrot,avail,0 -no,nope,original,cancel,3 -goodbye,great talk,lambada,bye,2 -how_busy,how busy is ihop?,parrot,avail,0 -yes,approved,original,book,1 -greeting,hi,original,greet,4 -no,thanks no,parrot,cancel,3 -thank_you,you've been a good help,lambada,bye,2 -how_busy,how long is the wait at black jack?,parrot,avail,0 -goodbye,"it was great to see you again, see ya later!",original,bye,2 -goodbye,goodbye now,parrot,bye,2 -how_busy,show me the wait times at applebees?,parrot,avail,0 -no,FALSE,original,cancel,3 -how_busy,canadian grill at 6pm?,parrot,avail,0 -goodbye,good night,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -date,i would like to find out today's date,parrot,avail,0 -date,today what date?,parrot,avail,0 -goodbye,go easy,parrot,bye,2 -greeting,hey fellow,parrot,greet,4 -goodbye,bye!,original,bye,2 -no,invalid,original,cancel,3 -no,yes that's false,lambada,cancel,3 -thank_you,thanks!,original,bye,2 -greeting,wassup,original,greet,4 -yes,approved,original,book,1 -yes,i would say yes,lambada,book,1 -cancel_reservation,i have to cancel my reservation at phoenix,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -no,negating,parrot,cancel,3 -how_busy,can you tell me if there's a long wait in the cheese cake factory?,parrot,avail,0 -how_busy,how long will it take to get a table in one of the best pizza joints?,parrot,avail,0 -reminder_update,make a reminder,parrot,resched,5 -greeting,wassup,original,greet,4 -date,tell me the date this month,parrot,avail,0 -yes,confirm,original,book,1 -no,that's inaccurate,original,cancel,3 -yes,confirmed,original,book,1 -yes,i think that's right,parrot,book,1 -goodbye,tootles,original,bye,2 -how_busy,is there a wait at noon?,parrot,avail,0 -yes,it is a yes from me,parrot,book,1 -no,that's false,original,cancel,3 -thank_you,i'm glad you did it for me,parrot,bye,2 -greeting,bonjour,original,greet,4 -yes,good,parrot,book,1 -no,that's inaccurate,original,cancel,3 -yes,10-Apr,original,book,1 -no,that isn't right,original,cancel,3 -no,naw,original,cancel,3 -thank_you,appreciate it,original,bye,2 -goodbye,bye bye then,original,bye,2 -goodbye,you can talk later,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -goodbye,adios,original,bye,2 -goodbye,i'm leaving,parrot,bye,2 -greeting,what's new?,parrot,greet,4 -how_busy,how long will it take to get seated in the cheese cake factory?,parrot,avail,0 -no,"no, that's a lie",lambada,cancel,3 -cancel_reservation,can you cancel my reservation for 6 at red lobster,parrot,cancel,3 -reminder_update,have i forgotten?,parrot,resched,5 -goodbye,goodbye bye,parrot,bye,2 -greeting,how ife treated you?,parrot,greet,4 -no,so that's no,parrot,cancel,3 -greeting,ahoy hoy,original,greet,4 -no,nay,original,cancel,3 -no,is it a lie?,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -goodbye,bye for now,original,bye,2 -greeting,how's it going in the city,parrot,greet,4 -greeting,hiya!,original,greet,4 -reminder_update,what's a reminder,parrot,resched,5 -greeting,hey how's my day?,parrot,greet,4 -yes,yup,original,book,1 -how_busy,i want to know how busy cheesecake factory is at 8:30 pm,lambada,avail,0 -goodbye,i'll see you next time,lambada,bye,2 -no,it's not right,parrot,cancel,3 -yes,definitely yes,parrot,book,1 -greeting,good morning,parrot,greet,4 -yes,is true,parrot,book,1 -thank_you,thank you for the money,parrot,bye,2 -no,that seems wrong,lambada,cancel,3 -schedule_meeting,can you schedule a meeting with steve in the office please?,parrot,book,1 -no,negatory?,parrot,cancel,3 -goodbye,thanks bye bye!,original,bye,2 -meeting_schedule,do you know if i have a meeting today with dave?,parrot,avail,0 -yes,certainly true,parrot,book,1 -calendar,what events are on my calendar for march 26th?,lambada,avail,0 -greeting,"hello, hello, hello",lambada,greet,4 -goodbye,regards,original,bye,2 -goodbye,good-bye,parrot,bye,2 -yes,absolutely!,original,book,1 -thank_you,thank you for doing that,lambada,bye,2 -thank_you,thank you?,parrot,bye,2 -yes,i'm voting for you,parrot,book,1 -thank_you,i'm happy you've helped me,parrot,bye,2 -goodbye,goodbye,original,bye,2 -date,how many days will it be before the next day,lambada,avail,0 -meeting_schedule,please go over my schedule with me,parrot,avail,0 -no,that's incorrect!,original,cancel,3 -no,not really,original,cancel,3 -meeting_schedule,tell me the time of my meetings?,parrot,avail,0 -greeting,good evening,original,greet,4 -goodbye,adios,original,bye,2 -greeting,how did you feel?,parrot,greet,4 -how_busy,how busy is the cheesecake factory at 6?,parrot,avail,0 -yes,thats right,original,book,1 -date,today?,parrot,avail,0 -goodbye,"bye-bye, my friend",lambada,bye,2 -how_busy,how long is the wait at tkr,lambada,avail,0 -no,sure it's wrong,parrot,cancel,3 -how_busy,can i wait for a table at chili's?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -greeting,"hello, friend",original,greet,4 -yes,facts,original,book,1 -greeting,how have you been?,parrot,greet,4 -reminder_update,i'd like a reminder,parrot,resched,5 -goodbye,i'll leave now,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -thank_you,thanks a lot,original,bye,2 -yes,sure,original,book,1 -thank_you,thank ya!,original,bye,2 -no,certainly false,parrot,cancel,3 -no,i believe it's wrong,parrot,cancel,3 -how_busy,can you tell me how long the wait is at the red lobster?,lambada,avail,0 -calendar,what's happening on may 3rd?,parrot,avail,0 -no,negating,parrot,cancel,3 -thank_you,okay thank you,parrot,bye,2 -calendar,did i set march 10th as my doctor's appointment?,original,avail,0 -yes,affirmative,original,book,1 -yes,definitely,original,book,1 -thank_you,my thanks,parrot,bye,2 -no,i don't answer this question,parrot,cancel,3 -greeting,how is life?,parrot,greet,4 -greeting,how's my day?,parrot,greet,4 -greeting,hello ai,parrot,greet,4 -meeting_schedule,i need to know if i have any meetings scheduled for today,original,avail,0 -no,that's no way,parrot,cancel,3 -greeting,hi how's everything?,parrot,greet,4 -no,that would be wrong,lambada,cancel,3 -greeting,hiya,original,greet,4 -date,what's the current date?,parrot,avail,0 -goodbye,go easy,parrot,bye,2 -yes,huh,parrot,book,1 -yes,okay,original,book,1 -goodbye,"later, thanks for chatting",original,bye,2 -goodbye,i'm leaving now,lambada,bye,2 -no,no it's not,parrot,cancel,3 -no,i wouldn't like that,parrot,cancel,3 -calendar,what's my plan for april 23rd?,parrot,avail,0 -calendar,please read my appointments for april 2nd,parrot,avail,0 -no,negating,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -goodbye,goodnight,original,bye,2 -no,please no,parrot,cancel,3 -reminder_update,make a reminder to feed the dogs,parrot,resched,5 -greeting,what i feel?,parrot,greet,4 -yes,all right,parrot,book,1 -goodbye,adios,original,bye,2 -greeting,hey how's life,original,greet,4 -no,absolutely false,parrot,cancel,3 -meeting_schedule,are there meetings between 1-5?,parrot,avail,0 -schedule_meeting,is it possible to schedule a meeting with steve for 5?,parrot,book,1 -goodbye,see you soon,original,bye,2 -yes,yeah,original,book,1 -greeting,whats new?,parrot,greet,4 -greeting,salutations!,original,greet,4 -greeting,whats new,lambada,greet,4 -goodbye,i want to see you,parrot,bye,2 -greeting,hello bs,parrot,greet,4 -yes,right,parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -yes,it's indeed true,original,book,1 -goodbye,greetings,parrot,bye,2 -date,is tomorrow's date?,parrot,avail,0 -goodbye,bye,original,bye,2 -no,no!,original,cancel,3 -meeting_schedule,how many meetings will i have between one and five today?,parrot,avail,0 -no,nada,original,cancel,3 -greeting,nice day,lambada,greet,4 -how_busy,wait for pizza in the restaurant today?,parrot,avail,0 -thank_you,i'm happy you helped me,parrot,bye,2 -no,nothing good,parrot,cancel,3 -yes,i know that's true,parrot,book,1 -greeting,whats up,original,greet,4 -no,nothing,parrot,cancel,3 -no,nothing,parrot,cancel,3 -yes,TRUE,lambada,book,1 -thank_you,gracias,original,bye,2 -greeting,"hello, good morning",lambada,greet,4 -goodbye,i'm going,parrot,bye,2 -thank_you,my thanks,parrot,bye,2 -no,it's false,parrot,cancel,3 -greeting,how's my family doing?,parrot,greet,4 -date,when will it be?,parrot,avail,0 -yes,10-Apr,original,book,1 -no,this isn't true,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -yes,i believe you're right,parrot,book,1 -yes,great,original,book,1 -yes,absolutely!,original,book,1 -greeting,hey hey!,original,greet,4 -greeting,hiya,original,greet,4 -yes,correct,original,book,1 -yes,i know that's true,parrot,book,1 -greeting,how's otc?,parrot,greet,4 -greeting,welcome,parrot,greet,4 -yes,it seems true,parrot,book,1 -yes,absolutely!,original,book,1 -reminder_update,remind me,original,resched,5 -schedule_meeting,meeting room availability from 8:00 please,original,book,1 -goodbye,goodbye now,parrot,bye,2 -meeting_schedule,are there meetings between 3 pm and 5 pm?,parrot,avail,0 -goodbye,later!,original,bye,2 -no,no,lambada,cancel,3 -date,date please,original,avail,0 -date,what's my date?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -goodbye,peace,original,bye,2 -calendar,tell me my calendar for the 14th,parrot,avail,0 -yes,very true,original,book,1 -no,absolutely not,original,cancel,3 -no,naw,parrot,cancel,3 -reminder_update,set up a reminder to take care of the cat,lambada,resched,5 -goodbye,good-bye,parrot,bye,2 -date,what today?,parrot,avail,0 -how_busy,how long will i have to wait at tenpence for a table at impossibly large,lambada,avail,0 -no,nay,original,cancel,3 -goodbye,i have to go ai goodbye,original,bye,2 -goodbye,i had a good run,parrot,bye,2 -no,negative,original,cancel,3 -greeting,how are you,original,greet,4 -reminder_update,are you able to remind me about something?,original,resched,5 -goodbye,adios!,original,bye,2 -goodbye,bye-bye,original,bye,2 -thank_you,good job,lambada,bye,2 -no,i'd rather not answer it,parrot,cancel,3 -greeting,how's idy?,parrot,greet,4 -date,what's on the calendar tomorrow?,parrot,avail,0 -meeting_schedule,will you meet ann?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -how_busy,how busy will the olive garden be at 8 am?,parrot,avail,0 -how_busy,is ihop busy?,parrot,avail,0 -no,that's completely wrong,parrot,cancel,3 -no,no way!,original,cancel,3 -no,negatory?,parrot,cancel,3 -yes,yay,lambada,book,1 -no,you're not right,parrot,cancel,3 -goodbye,good talk,parrot,bye,2 -yes,"yes, that happens to be correct",original,book,1 -calendar,retrieve events on my calendar,original,avail,0 -greeting,yo,original,greet,4 -greeting,ahoy,lambada,greet,4 -no,no good,original,cancel,3 -yes,right,parrot,book,1 -thank_you,you're the best!,original,bye,2 -yes,huh huh,parrot,book,1 -yes,positive,parrot,book,1 -goodbye,sign off,parrot,bye,2 -no,FALSE,original,cancel,3 -thank_you,you gave me this,parrot,bye,2 -no,"that's no, that is false",lambada,cancel,3 -thank_you,gracias,original,bye,2 -date,what date will it be in 12 days?,parrot,avail,0 -thank_you,gracias,original,bye,2 -yes,it's true for sure,parrot,book,1 -yes,yeah yeah,lambada,book,1 -thank_you,i'm glad you helped,parrot,bye,2 -goodbye,good to see you later,parrot,bye,2 -goodbye,adios!,original,bye,2 -yes,roger that,original,book,1 -goodbye,afterward,parrot,bye,2 -goodbye,will leave now,parrot,bye,2 -yes,it's logical,parrot,book,1 -goodbye,thank you for this conversation,parrot,bye,2 -thank_you,appreciated,original,bye,2 -no,it's a negation,parrot,cancel,3 -goodbye,later!,original,bye,2 -greeting,how is it going,original,greet,4 -greeting,ahoy there,lambada,greet,4 -date,tell me what day it's on?,parrot,avail,0 -yes,it's logical,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -yes,i'm sure it was done,parrot,book,1 -cancel_reservation,uni threw my reservation for dinner,lambada,cancel,3 -schedule_meeting,can you book a meeting room for monday at 5 pm?,parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -how_busy,how busy is chili's at 5pm?,parrot,avail,0 -goodbye,"i'm glad you are talking to me, see you soon",lambada,bye,2 -how_busy,how long will i have to wait before i go to red lobster?,parrot,avail,0 -goodbye,"great chat, take it easy",lambada,bye,2 -greeting,welcome,parrot,greet,4 -yes,i want that to be true,lambada,book,1 -goodbye,farewell,original,bye,2 -yes,you got it,original,book,1 -no,no,lambada,cancel,3 -greeting,salutation,parrot,greet,4 -date,how many days in six days?,parrot,avail,0 -how_busy,is the restaurant crowded at lunch?,parrot,avail,0 -yes,agreed,original,book,1 -goodbye,farewell!,original,bye,2 -greeting,nice day,lambada,greet,4 -date,in three days,parrot,avail,0 -goodbye,was fun seeing you,parrot,bye,2 -no,erroneous,parrot,cancel,3 -yes,accept,parrot,book,1 -date,today?,parrot,avail,0 -how_busy,check how busy cheesecake factory is,original,avail,0 -calendar,do you have any appointments on my calendar for may 11th?,parrot,avail,0 -yes,good,parrot,book,1 -calendar,tell me what is on my calendar for march 30th?,parrot,avail,0 -yes,sure thing,original,book,1 -goodbye,goodnight,original,bye,2 -how_busy,how busy the chili is at 6pm?,parrot,avail,0 -yes,uh huh,original,book,1 -goodbye,bye bye,lambada,bye,2 -date,today what date?,parrot,avail,0 -no,negating,parrot,cancel,3 -greeting,hola,original,greet,4 -yes,thats right,original,book,1 -goodbye,farewell!,original,bye,2 -yes,absolutely!,original,book,1 -no,that's not correct it's false,parrot,cancel,3 -goodbye,bye,original,bye,2 -goodbye,i enjoyed our talk,parrot,bye,2 -yes,that is right,original,book,1 -greeting,hi how's my life?,parrot,greet,4 -cancel_reservation,scrap the dinner reservation,parrot,cancel,3 -goodbye,chat to me later,parrot,bye,2 -reminder_update,what's a reminder,parrot,resched,5 -yes,facts,original,book,1 -goodbye,goodbye helpful ai devices,parrot,bye,2 -goodbye,very nice conversation,parrot,bye,2 -thank_you,okay thanks,original,bye,2 -yes,of course,original,book,1 -yes,yes,original,book,1 -goodbye,later!,original,bye,2 -no,that's incorrect!,original,cancel,3 -yes,accept,parrot,book,1 -how_busy,what time do you have to wait at pizza ranch?,parrot,avail,0 -no,"nope, that's false",original,cancel,3 -greeting,how is it going? hello,parrot,greet,4 -goodbye,take a break,parrot,bye,2 -goodbye,bye bye then,original,bye,2 -how_busy,does olive garden get crowded around 5?,lambada,avail,0 -no,that's bad,parrot,cancel,3 -how_busy,tell me how busy can you expect red lobsters at 10 pm?,parrot,avail,0 -yes,yep,original,book,1 -yes,obviously,parrot,book,1 -how_busy,how long will i wait before i get a table in an italian bakery?,parrot,avail,0 -greeting,how's otc?,parrot,greet,4 -calendar,display my calendar,lambada,avail,0 -greeting,how have you been,original,greet,4 -how_busy,how long do i have to wait if i want to go to red lobster?,parrot,avail,0 -goodbye,later gator!,original,bye,2 -yes,absolutely correct,original,book,1 -yes,"yes, please",original,book,1 -no,hell nah,original,cancel,3 -no,i'm sorry about the false statement,parrot,cancel,3 -no,that's not the truth,parrot,cancel,3 -yes,all right,parrot,book,1 -yes,yes that's right,lambada,book,1 -yes,yes is my answer,original,book,1 -greeting,hey fellow,parrot,greet,4 -greeting,so what's up?,parrot,greet,4 -greeting,salutations!,original,greet,4 -goodbye,later gater,original,bye,2 -goodbye,im leaving,parrot,bye,2 -yes,is true,parrot,book,1 -goodbye,i'm leaving now,lambada,bye,2 -goodbye,good bye,original,bye,2 -greeting,hi how's my life?,parrot,greet,4 -goodbye,peace,original,bye,2 -yes,it's logical,parrot,book,1 -no,that's bad,parrot,cancel,3 -greeting,salutations!,original,greet,4 -thank_you,nice,parrot,bye,2 -greeting,how're you?,parrot,greet,4 -yes,absolutely!,original,book,1 -goodbye,fairwell?,parrot,bye,2 -greeting,hi how are you?,parrot,greet,4 -how_busy,how busy is torreys at 5:30 pm,lambada,avail,0 -meeting_schedule,when's my meeting?,parrot,avail,0 -greeting,how're you?,parrot,greet,4 -date,date tomorrow?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -yes,yay,lambada,book,1 -no,not at all,original,cancel,3 -greeting,aho,parrot,greet,4 -yes,certainly,parrot,book,1 -yes,definitely,original,book,1 -greeting,hello there ai,original,greet,4 -yes,yes i am,original,book,1 -yes,"yes, that is true",original,book,1 -yes,okay,original,book,1 -goodbye,the talk was nice,lambada,bye,2 -goodbye,later good luck,parrot,bye,2 -goodbye,bye bye now,lambada,bye,2 -greeting,hiya!,original,greet,4 -yes,it's true,original,book,1 -greeting,"hey, ai",original,greet,4 -greeting,welcome,parrot,greet,4 -yes,good,parrot,book,1 -goodbye,bye,original,bye,2 -goodbye,great conversation,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,that's erroneous,parrot,cancel,3 -calendar,do i have my nephew's birthday marked for november 10th?,original,avail,0 -goodbye,you can talk later,parrot,bye,2 -yes,TRUE,original,book,1 -yes,i'm going to tell you tes,parrot,book,1 -greeting,hiya,original,greet,4 -goodbye,see ya!,original,bye,2 -thank_you,thank ya!,original,bye,2 -thank_you,the best,parrot,bye,2 -goodbye,sayonara,original,bye,2 -greeting,hi how's everything?,parrot,greet,4 -reminder_update,i must remind myself to go to the post office,parrot,resched,5 -yes,uh-huh,original,book,1 -greeting,all right now?,parrot,greet,4 -yes,"yes, that is what i want",lambada,book,1 -meeting_schedule,is lisa going to meet you today?,parrot,avail,0 -greeting,how're you?,parrot,greet,4 -yes,huh,parrot,book,1 -date,what's the day now,parrot,avail,0 -yes,i'm going to tell you tes,parrot,book,1 -no,negating,parrot,cancel,3 -meeting_schedule,when's my meeting with frank?,parrot,avail,0 -schedule_meeting,how are meetings scheduled?,parrot,book,1 -how_busy,can you list the wait times at the pizza shop at noon?,parrot,avail,0 -no,nope that's not it,original,cancel,3 -how_busy,how busy is chowhound at 5am,lambada,avail,0 -greeting,ahoy,lambada,greet,4 -goodbye,fairwell,original,bye,2 -thank_you,thanks a million,original,bye,2 -greeting,hey bs,lambada,greet,4 -greeting,aho,parrot,greet,4 -no,negative,original,cancel,3 -yes,huh,parrot,book,1 -thank_you,your answer impressed me,parrot,bye,2 -date,what day is today,parrot,avail,0 -goodbye,goodbye helpful ai devices,parrot,bye,2 -thank_you,i'm grateful for the help,parrot,bye,2 -greeting,how's life treating you,parrot,greet,4 -thank_you,you're welcome,parrot,bye,2 -yes,that's absolutely true,parrot,book,1 -yes,certainly,parrot,book,1 -goodbye,i'm gone,parrot,bye,2 -no,negating,parrot,cancel,3 -date,what day is today?,lambada,avail,0 -no,it's not always true,parrot,cancel,3 -greeting,hi,original,greet,4 -no,no that's not true,parrot,cancel,3 -no,that's very false,parrot,cancel,3 -reminder_update,add a reminder,lambada,resched,5 -yes,affirmative,original,book,1 -greeting,hiya,original,greet,4 -yes,i'm sure it's true,parrot,book,1 -no,i'll say no,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -thank_you,glad you did it,parrot,bye,2 -no,definitely not,original,cancel,3 -goodbye,later gater,original,bye,2 -no,that is so very negative,lambada,cancel,3 -yes,good yes,lambada,book,1 -goodbye,thanks for talking,original,bye,2 -goodbye,bye,original,bye,2 -thank_you,you've helped,parrot,bye,2 -thank_you,i'm happy with my answer,original,bye,2 -yes,accept,parrot,book,1 -cancel_reservation,please call the restaurant and cancel my reservation,parrot,cancel,3 -reminder_update,dont forget to set a reminder to pay the bills,original,resched,5 -yes,right,parrot,book,1 -yes,accept,parrot,book,1 -yes,yes please,original,book,1 -yes,yes please,original,book,1 -goodbye,talk to me later,parrot,bye,2 -no,it is no,original,cancel,3 -thank_you,thanks again!,original,bye,2 -greeting,hola,original,greet,4 -no,no!,original,cancel,3 -no,it seems not,original,cancel,3 -greeting,hows are ya,original,greet,4 -meeting_schedule,what is my schedule today?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -greeting,hey fellow,parrot,greet,4 -thank_you,thanks for coming by,lambada,bye,2 -goodbye,", goodbye",lambada,bye,2 -greeting,wassup,original,greet,4 -no,that's untrue,parrot,cancel,3 -goodbye,the hell i'm out,parrot,bye,2 -no,no please,parrot,cancel,3 -greeting,aloha,original,greet,4 -goodbye,bye bye,lambada,bye,2 -goodbye,bye bye now,lambada,bye,2 -yes,uh-huh,original,book,1 -greeting,"hi there, how are things",original,greet,4 -greeting,let me know what you're feeling?,parrot,greet,4 -yes,it's true,original,book,1 -yes,"yes, that's affirmative",original,book,1 -yes,very true,original,book,1 -goodbye,goodbye!,original,bye,2 -yes,TRUE,lambada,book,1 -goodbye,be careful then,lambada,bye,2 -thank_you,much obliged,original,bye,2 -no,does that mean what you just said is false?,parrot,cancel,3 -greeting,how's life?,parrot,greet,4 -greeting,hello,original,greet,4 -goodbye,fairwell,original,bye,2 -yes,thats right,original,book,1 -goodbye,im leaving goodbye,parrot,bye,2 -no,and i'm sorry,parrot,cancel,3 -yes,okay,original,book,1 -yes,"yes, please",parrot,book,1 -yes,huh,parrot,book,1 -calendar,what's in the calendar for april 30th,parrot,avail,0 -yes,yeap,original,book,1 -how_busy,how many people go into the restaurant before dinner,parrot,avail,0 -yes,absolutely,original,book,1 -goodbye,bye my friend,parrot,bye,2 -yes,can we please?,original,book,1 -goodbye,and tell me bye?,parrot,bye,2 -thank_you,many thank,original,bye,2 -no,negation,parrot,cancel,3 -date,show me what's the date?,parrot,avail,0 -greeting,are you okay?,original,greet,4 -greeting,whats up?,parrot,greet,4 -goodbye,peace,original,bye,2 -date,in three days,parrot,avail,0 -goodbye,goodbye for now ai,original,bye,2 -yes,it is true,original,book,1 -thank_you,so grateful,parrot,bye,2 -yes,very true,original,book,1 -yes,affirmitive,original,book,1 -goodbye,until next time,original,bye,2 -goodbye,bye,original,bye,2 -no,that's untrue,parrot,cancel,3 -reminder_update,make a reminder,parrot,resched,5 -no,negatory,original,cancel,3 -goodbye,glad we talked,parrot,bye,2 -yes,absolutely correct,original,book,1 -no,that’s incorrect,original,cancel,3 -calendar,please tell me what's on my calendar for march 10,parrot,avail,0 -no,certainly false,parrot,cancel,3 -no,no,lambada,cancel,3 -yes,uh huh,original,book,1 -date,today?,parrot,avail,0 -greeting,hello ai,parrot,greet,4 -yes,confirm,original,book,1 -thank_you,very grateful,parrot,bye,2 -greeting,welcome,parrot,greet,4 -no,that is not right,original,cancel,3 -no,you're not right,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -no,it's not a fact,parrot,cancel,3 -goodbye,go easy,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -goodbye,goodbye,original,bye,2 -no,i gotta say no,original,cancel,3 -meeting_schedule,what's on my schedule?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -no,negating,parrot,cancel,3 -goodbye,goodbyes soon,parrot,bye,2 -no,nothing,parrot,cancel,3 -date,current date,original,avail,0 -goodbye,goodbye,original,bye,2 -no,negative definitely,parrot,cancel,3 -no,negative certainly,parrot,cancel,3 -no,that's incorrect!,original,cancel,3 -yes,oh-huh,parrot,book,1 -thank_you,it's my debt,parrot,bye,2 -greeting,yo,original,greet,4 -calendar_update,i need to put my car repair on the calendar for tomorrow,lambada,resched,5 -goodbye,later gator!,original,bye,2 -thank_you,gracias,original,bye,2 -meeting_schedule,how many meetings do i have between noon and 5pm?,parrot,avail,0 -no,hell nah,original,cancel,3 -goodbye,later,original,bye,2 -how_busy,can i expect the olive garden to be busy at dinner?,parrot,avail,0 -yes,you got it,parrot,book,1 -goodbye,later then,lambada,bye,2 -thank_you,thank you?,parrot,bye,2 -reminder_update,remind me,original,resched,5 -yes,right,parrot,book,1 -how_busy,how long is the wait for mr joes at the restaurant,lambada,avail,0 -greeting,ahoy,lambada,greet,4 -goodbye,peace,original,bye,2 -goodbye,goodbye!,original,bye,2 -thank_you,merci beaucoup,original,bye,2 -greeting,how are you feeling today?,parrot,greet,4 -greeting,hey how's ot,lambada,greet,4 -date,what day will it be in six days?,lambada,avail,0 -meeting_schedule,what's my meeting calendar?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -calendar,can you tell me if i have any appointments on my calendar for march 20?,parrot,avail,0 -no,not that,original,cancel,3 -thank_you,thanks for the help!,original,bye,2 -how_busy,wait how long will it take in this restaurant,parrot,avail,0 -no,negating,parrot,cancel,3 -goodbye,regards,original,bye,2 -goodbye,you're done,parrot,bye,2 -how_busy,tell me the average wait time at the cheese cake factory?,parrot,avail,0 -no,yes that's false,lambada,cancel,3 -thank_you,thanks again!,original,bye,2 -no,that's negative,parrot,cancel,3 -goodbye,goodbye no problem,parrot,bye,2 -goodbye,get there soon,lambada,bye,2 -no,"no, definitely not",original,cancel,3 -goodbye,later goodbye,parrot,bye,2 -greeting,ahoy hoy,original,greet,4 -greeting,hiya,original,greet,4 -thank_you,i'm thankful,original,bye,2 -yes,oh-huh,parrot,book,1 -yes,"yes, please",original,book,1 -reminder_update,what about a reminder,parrot,resched,5 -how_busy,how long is the wait for a table at dr. daddy's,lambada,avail,0 -yes,accepted,original,book,1 -meeting_schedule,tell me when today's meeting is supposed to take place?,parrot,avail,0 -meeting_schedule,when's the meeting?,parrot,avail,0 -goodbye,see ya,original,bye,2 -thank_you,i'm pleased with my answer,parrot,bye,2 -date,what day?,parrot,avail,0 -no,invalid,original,cancel,3 -goodbye,the talk was nice,lambada,bye,2 -goodbye,good-bye,parrot,bye,2 -yes,absolutely,original,book,1 -greeting,"hello there, good morning",original,greet,4 -meeting_schedule,is there any meeting today?,parrot,avail,0 -greeting,what i feel?,parrot,greet,4 -thank_you,appreciated,original,bye,2 -greeting,well hello,original,greet,4 -thank_you,so grateful,parrot,bye,2 -greeting,bonjour,original,greet,4 -greeting,how is life treating you,original,greet,4 -yes,perfect,parrot,book,1 -yes,certainly,parrot,book,1 -goodbye,goodbyes soon,parrot,bye,2 -yes,yeah,original,book,1 -yes,positive,parrot,book,1 -no,hell nah,original,cancel,3 -calendar_update,clear my calendar for february 28th,parrot,resched,5 -greeting,are you okay now?,parrot,greet,4 -greeting,what's new,lambada,greet,4 -no,i believe it's false,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -goodbye,fairwell,original,bye,2 -yes,ok,original,book,1 -yes,i'm going to tell you tes,parrot,book,1 -yes,good,parrot,book,1 -date,today?,parrot,avail,0 -date,tell me the date of 200 days,parrot,avail,0 -goodbye,adios,original,bye,2 -reminder_update,add a reminder to wash dishes,parrot,resched,5 -reminder_update,i need to pay my tax,parrot,resched,5 -goodbye,maybe i'll see you,parrot,bye,2 -thank_you,thanks for the donation,parrot,bye,2 -goodbye,adios,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -yes,"yes, please",parrot,book,1 -goodbye,bye!,original,bye,2 -greeting,aloha,original,greet,4 -greeting,aloha,original,greet,4 -calendar,i need my calendar,parrot,avail,0 -how_busy,can chili be busy around 7pm,parrot,avail,0 -goodbye,ensure you get some sleep now,parrot,bye,2 -yes,yup,original,book,1 -yes,yeah yeah,lambada,book,1 -no,negatory?,parrot,cancel,3 -reminder_update,remind me to use the bathroom,original,resched,5 -yes,so it's true,parrot,book,1 -yes,it appears true,parrot,book,1 -date,what's today,original,avail,0 -greeting,whats up?,parrot,greet,4 -goodbye,goodbye to you,original,bye,2 -goodbye,good bye,original,bye,2 -goodbye,goodnight,original,bye,2 -greeting,hola!,original,greet,4 -greeting,how's life,original,greet,4 -thank_you,i'm grateful for my support,parrot,bye,2 -no,so that's no,parrot,cancel,3 -how_busy,how long will i have to wait for the table at applebee's,parrot,avail,0 -greeting,hiya,original,greet,4 -yes,confirm,original,book,1 -date,what's today?,parrot,avail,0 -calendar_update,add this on the calendar for tomorrow?,parrot,resched,5 -no,not right so,parrot,cancel,3 -how_busy,what is the wait like right now at olive garden?,lambada,avail,0 -thank_you,you gave me that,parrot,bye,2 -goodbye,see ya,original,bye,2 -greeting,hola!,original,greet,4 -reminder_update,let me know,parrot,resched,5 -how_busy,do you think the outback steakhouse will be busy between 6 and 9 o'clock?,parrot,avail,0 -how_busy,tell me how long it will be at tucson shrimps today?,parrot,avail,0 -how_busy,tell me how busy the olive garden is at this time?,lambada,avail,0 -greeting,how's ayi doing?,parrot,greet,4 -cancel_reservation,cancellation of dinner reservations,parrot,cancel,3 -greeting,hello,original,greet,4 -yes,certainly,parrot,book,1 -how_busy,will there be a wait at this restaurant,lambada,avail,0 -greeting,hi there,original,greet,4 -schedule_meeting,can you schedule a meeting with james at the office?,original,book,1 -how_busy,does the street get crowded around 11?,parrot,avail,0 -greeting,hello ai,parrot,greet,4 -yes,"yes, please",original,book,1 -goodbye,good conversation,parrot,bye,2 -thank_you,thank you!,original,bye,2 -calendar_update,i need to add iep meeting to my calendar on april 15,parrot,resched,5 -cancel_reservation,cancel tonight's dinner reservation,original,cancel,3 -no,thats a negative,original,cancel,3 -yes,perfect,parrot,book,1 -calendar_update,eliminate the date on my calendar for next friday,parrot,resched,5 -no,negation,parrot,cancel,3 -no,not right?,parrot,cancel,3 -goodbye,tootles,original,bye,2 -yes,yay,lambada,book,1 -greeting,hey what's up?,parrot,greet,4 -no,no!,original,cancel,3 -date,what day is today?,lambada,avail,0 -date,what's today?,parrot,avail,0 -yes,"yes, that's confirmed",original,book,1 -how_busy,what's the cheesecake factory like now?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -reminder_update,set a reminder to get my mail,parrot,resched,5 -yes,definitely yes,parrot,book,1 -greeting,hi,original,greet,4 -yes,it'd be great,parrot,book,1 -yes,perfect,parrot,book,1 -goodbye,goodbye to your,lambada,bye,2 -thank_you,thanks!,original,bye,2 -yes,TRUE,original,book,1 -greeting,how's my current situation?,parrot,greet,4 -greeting,hello,original,greet,4 -yes,exactly right,original,book,1 -yes,yeap,original,book,1 -how_busy,is it possible that ihop has a lot of business around 7 o'clock?,parrot,avail,0 -yes,positive,original,book,1 -greeting,hola,original,greet,4 -thank_you,appreciated,original,bye,2 -calendar_update,remove jess' party from my calendar,parrot,resched,5 -yes,this is true,lambada,book,1 -thank_you,"good job, thanks",lambada,bye,2 -how_busy,how long will the wait time be at the cheesecake factory right now?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -thank_you,the best,parrot,bye,2 -goodbye,im leaving goodbye,parrot,bye,2 -yes,yep,original,book,1 -date,current date,original,avail,0 -no,nope,original,cancel,3 -date,can you give me the date within 4 days?,parrot,avail,0 -no,FALSE,original,cancel,3 -how_busy,what's the crowd at the red lobster at 8?,parrot,avail,0 -no,negation,parrot,cancel,3 -how_busy,this restaurant has a high number of people at dinner?,parrot,avail,0 -greeting,"hello, good morning",lambada,greet,4 -date,today?,parrot,avail,0 -thank_you,"nice, excellent!",original,bye,2 -yes,i guess yes,parrot,book,1 -goodbye,fairwell,original,bye,2 -meeting_schedule,see what meetings i've planned,parrot,avail,0 -reminder_update,i need to set up a reminder for myself,original,resched,5 -date,what's today,original,avail,0 -yes,sure,original,book,1 -goodbye,great conversation,parrot,bye,2 -goodbye,goodbye no problem,parrot,bye,2 -greeting,salutations!,original,greet,4 -no,nope,original,cancel,3 -greeting,"hey, how's my day",lambada,greet,4 -yes,yay,lambada,book,1 -how_busy,is ihop busy around 8:15am?,lambada,avail,0 -greeting,hola!,original,greet,4 -how_busy,how long can i wait at the pizza?,parrot,avail,0 -how_busy,please look at the wait times at chili's for a meal,parrot,avail,0 -yes,yeap,original,book,1 -goodbye,goodbyes,parrot,bye,2 -yes,ya,original,book,1 -no,negating,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -schedule_meeting,please help me figure out how to set up a meeting?,parrot,book,1 -yes,affirmitive,original,book,1 -yes,yeah yeah,lambada,book,1 -cancel_reservation,i won't need the reservation anymore,parrot,cancel,3 -no,what is not true?,parrot,cancel,3 -goodbye,until next time!,original,bye,2 -greeting,do you feel about acii?,parrot,greet,4 -calendar,can you give me an overview of what march 23 will look like for me?,original,avail,0 -greeting,heller,original,greet,4 -goodbye,tootles,original,bye,2 -no,that's actually false,parrot,cancel,3 -how_busy,how long will the wait in the restaurant be?,parrot,avail,0 -yes,seems true,parrot,book,1 -greeting,yo,original,greet,4 -yes,yup,original,book,1 -yes,a real statement,parrot,book,1 -yes,all right,parrot,book,1 -thank_you,you're welcome,parrot,bye,2 -date,current date,original,avail,0 -no,it's completely false,parrot,cancel,3 -yes,and you're right,parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -thank_you,thanks a million,original,bye,2 -yes,yes,original,book,1 -cancel_reservation,please cancel my reservation for the dinner,parrot,cancel,3 -greeting,ahoy there,lambada,greet,4 -goodbye,i’ll be leaving now,original,bye,2 -greeting,have you felt?,parrot,greet,4 -yes,perfect,parrot,book,1 -thank_you,you're the best!,original,bye,2 -thank_you,awesome thanks,parrot,bye,2 -greeting,how's everything,original,greet,4 -calendar,tell me my calendar?,parrot,avail,0 -date,what's today,original,avail,0 -thank_you,thanks for the information,parrot,bye,2 -date,describe the day?,parrot,avail,0 -yes,yeap,original,book,1 -goodbye,until the next time,parrot,bye,2 -no,that's not factual,parrot,cancel,3 -greeting,hey fellows,parrot,greet,4 -greeting,nice day,lambada,greet,4 -thank_you,you've tried,parrot,bye,2 -greeting,good day,original,greet,4 -goodbye,tootles,original,bye,2 -date,let's know what the date is today,parrot,avail,0 -no,is that a lie,parrot,cancel,3 -date,what is today's month and year?,parrot,avail,0 -date,what day?,parrot,avail,0 -greeting,hey,original,greet,4 -greeting,salutation,parrot,greet,4 -no,i'm sorry it isn't,lambada,cancel,3 -yes,yeap,original,book,1 -greeting,what's happening,original,greet,4 -no,i'm afraid not,parrot,cancel,3 -greeting,what's up?,parrot,greet,4 -no,please disagree,lambada,cancel,3 -no,naw,original,cancel,3 -no,that isn't true,lambada,cancel,3 -greeting,what's new?,parrot,greet,4 -date,current day,parrot,avail,0 -meeting_schedule,when is my meeting with john scheduled?,lambada,avail,0 -no,hell nah,original,cancel,3 -yes,confirmed,original,book,1 -greeting,what do i feel like?,parrot,greet,4 -goodbye,"later, goodbye",lambada,bye,2 -yes,ok,original,book,1 -how_busy,how busy is chili around noon,parrot,avail,0 -calendar_update,stop this thing today,parrot,resched,5 -greeting,aloha,original,greet,4 -meeting_schedule,do you have any scheduled meetings today?,parrot,avail,0 -yes,definitely,original,book,1 -yes,good,parrot,book,1 -no,that's definitely false,original,cancel,3 -greeting,hows are ya,original,greet,4 -no,no,lambada,cancel,3 -yes,i vote yes,original,book,1 -greeting,what's new here?,parrot,greet,4 -thank_you,thank you!,original,bye,2 -thank_you,the best,parrot,bye,2 -greeting,how's idy?,parrot,greet,4 -goodbye,afterward,parrot,bye,2 -thank_you,thank you kindly,original,bye,2 -goodbye,was on a great run?,parrot,bye,2 -no,it's actually a lie,parrot,cancel,3 -goodbye,see ya,lambada,bye,2 -date,what's it today?,parrot,avail,0 -goodbye,farewell,original,bye,2 -meeting_schedule,i need to know if i have any meetings with michael,lambada,avail,0 -no,no thank you,original,cancel,3 -greeting,how's everything?,parrot,greet,4 -no,"no, definitely not",original,cancel,3 -no,not happening,original,cancel,3 -goodbye,adios!,original,bye,2 -yes,correct,original,book,1 -goodbye,goodbye later,parrot,bye,2 -greeting,heller,original,greet,4 -goodbye,bye bye then,original,bye,2 -calendar,tell me what's on my calendar for march 30th?,lambada,avail,0 -thank_you,appreciated,original,bye,2 -cancel_reservation,call off the reservation for dinner,parrot,cancel,3 -meeting_schedule,will we have meetings today?,parrot,avail,0 -how_busy,please tell me the time the wait time is at olive garden,lambada,avail,0 -yes,great,original,book,1 -goodbye,tootles,original,bye,2 -goodbye,good bye,original,bye,2 -goodbye,goodbyes soon,parrot,bye,2 -yes,huh huh,parrot,book,1 -no,that's so false,parrot,cancel,3 -goodbye,thanks for talking,original,bye,2 -no,that's incorrect,original,cancel,3 -greeting,whats new,lambada,greet,4 -yes,it's positive,parrot,book,1 -yes,affirmitive,original,book,1 -yes,"yes, that is correct",original,book,1 -yes,yup,original,book,1 -schedule_meeting,can you set up a meeting?,parrot,book,1 -how_busy,how busy will fry be at 6pm?,parrot,avail,0 -schedule_meeting,are meeting rooms available between 10 and 11?,parrot,book,1 -cancel_reservation,undo my reservation for 5 at the loft,original,cancel,3 -meeting_schedule,when do i meet roger?,parrot,avail,0 -yes,it's positive,parrot,book,1 -meeting_schedule,when's my meeting?,parrot,avail,0 -calendar_update,take an event off of my calendar,parrot,resched,5 -yes,definitely,original,book,1 -no,it's my false statement,parrot,cancel,3 -yes,sure thing,original,book,1 -goodbye,fairwell?,parrot,bye,2 -no,nothing good,parrot,cancel,3 -thank_you,thanks a million,original,bye,2 -yes,great,original,book,1 -greeting,hola!,original,greet,4 -thank_you,i thank you,original,bye,2 -how_busy,how long will it take to be seated at the cheese steak house?,parrot,avail,0 -calendar,tell me what my calendar looks like for march 2?,lambada,avail,0 -how_busy,how long does it take to wait for a table at the pizza fountains?,parrot,avail,0 -thank_you,"oh, thanks",original,bye,2 -greeting,how have you been,original,greet,4 -meeting_schedule,do you know my meeting with lorrie?,lambada,avail,0 -schedule_meeting,walk me through the process of scheduling a meeting,original,book,1 -goodbye,glad to talk,parrot,bye,2 -yes,"affirmative, go ahead",original,book,1 -thank_you,thanks!,original,bye,2 -goodbye,my friend,parrot,bye,2 -no,i'll pass,original,cancel,3 -cancel_reservation,can you cancel my reservation for tomorrow?,parrot,cancel,3 -meeting_schedule,i have no meetings today,parrot,avail,0 -how_busy,i want to know how busy ruby will be at 845 pm,parrot,avail,0 -cancel_reservation,do you have to cancel my reservation at the loft?,parrot,cancel,3 -thank_you,you're welcome,parrot,bye,2 -yes,facts,original,book,1 -yes,accepted,original,book,1 -goodbye,goodbye then,parrot,bye,2 -schedule_meeting,tell me the best way to schedule meetings?,parrot,book,1 -greeting,heller,original,greet,4 -greeting,aloha,original,greet,4 -greeting,what's new,lambada,greet,4 -date,in 7 days?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -no,erroneous,parrot,cancel,3 -no,the statement is totally false,parrot,cancel,3 -no,that's inaccurate,original,cancel,3 -goodbye,"thanks, bye",original,bye,2 -date,what is the day?,original,avail,0 -goodbye,later!,original,bye,2 -no,no thanks,original,cancel,3 -schedule_meeting,i'm having trouble scheduling a meeting,original,book,1 -how_busy,is mr joe's steakhouse crowded?,parrot,avail,0 -how_busy,how much time is ihop busy at 7,lambada,avail,0 -thank_you,really great!,original,bye,2 -thank_you,thanks please,original,bye,2 -yes,of course,original,book,1 -yes,"yes, please",parrot,book,1 -greeting,how's everything,original,greet,4 -goodbye,adios,original,bye,2 -reminder_update,please remind me to write this memo,parrot,resched,5 -date,tell me today's date?,original,avail,0 -yes,TRUE,lambada,book,1 -date,today is what date?,parrot,avail,0 -thank_you,thank a bunch,original,bye,2 -greeting,bonjour,original,greet,4 -goodbye,"great talk, thanks for coming",lambada,bye,2 -thank_you,nice,parrot,bye,2 -no,naw,parrot,cancel,3 -no,absolutely false,parrot,cancel,3 -greeting,hello,original,greet,4 -goodbye,tootles,original,bye,2 -no,naw,original,cancel,3 -no,certainly false,parrot,cancel,3 -greeting,hey what's up,original,greet,4 -no,so that's no,parrot,cancel,3 -no,what you just said is wrong?,original,cancel,3 -no,it's so negative,parrot,cancel,3 -meeting_schedule,do i have to meet the team?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -how_busy,how long does it take to get a table at the red lobster restaurant,parrot,avail,0 -thank_you,you've helped,parrot,bye,2 -how_busy,wait at the chocolate fountain long?,parrot,avail,0 -goodbye,and then goodbye,parrot,bye,2 -yes,great,original,book,1 -goodbye,good call,parrot,bye,2 -goodbye,have fun?,lambada,bye,2 -greeting,how is ayi doing?,parrot,greet,4 -yes,huh,parrot,book,1 -greeting,"yo, hows it going",original,greet,4 -how_busy,what's the wait time for this yogurt place?,parrot,avail,0 -yes,so it's true,parrot,book,1 -meeting_schedule,is there a meeting between 2 and 5?,parrot,avail,0 -thank_you,you've tried,parrot,bye,2 -no,i meant nothing,parrot,cancel,3 -how_busy,waiting at macaroni grill?,parrot,avail,0 -calendar_update,please cancel my planned meal,parrot,resched,5 -date,what today?,parrot,avail,0 -thank_you,thanks please,original,bye,2 -thank_you,thanks for trying,original,bye,2 -yes,obviously,parrot,book,1 -thank_you,gracias,original,bye,2 -meeting_schedule,wanna meet roger?,parrot,avail,0 -meeting_schedule,what time is it to meet with steve?,parrot,avail,0 -no,not right now,original,cancel,3 -goodbye,a good talk,parrot,bye,2 -how_busy,how long will i have to wait if i want to go to rrb?,parrot,avail,0 -goodbye,catch you later,original,bye,2 -yes,positive,original,book,1 -goodbye,adios!,original,bye,2 -how_busy,how long will the wait in a chinese restaurant be?,parrot,avail,0 -how_busy,please tell me what time it takes to get a table at the cheesecake factory?,parrot,avail,0 -yes,accepted,original,book,1 -yes,accept,parrot,book,1 -goodbye,wonderful conversation,lambada,bye,2 -yes,obviously,parrot,book,1 -yes,"yes, that's affirmative",original,book,1 -date,what date today?,parrot,avail,0 -greeting,what's happening?,parrot,greet,4 -how_busy,how busy is red lobster about 10,lambada,avail,0 -reminder_update,create a reminder,original,resched,5 -how_busy,does this restaurant have a high wait for a table at 830?,parrot,avail,0 -greeting,"hey, ai",original,greet,4 -how_busy,what's the wait time for a table in a restaurant,parrot,avail,0 -greeting,whats new,lambada,greet,4 -goodbye,good call,parrot,bye,2 -thank_you,"awesome, thanks",original,bye,2 -thank_you,thanks again,original,bye,2 -thank_you,thanks,original,bye,2 -yes,you got it,parrot,book,1 -yes,yes,original,book,1 -yes,okay,original,book,1 -meeting_schedule,how do i know i am talking about a meeting,lambada,avail,0 -calendar_update,i must put my appointment with the dentist on the calendar for tomorrow,parrot,resched,5 -no,so that's no,parrot,cancel,3 -thank_you,thanks!,original,bye,2 -thank_you,thanks!,original,bye,2 -no,don't agree,parrot,cancel,3 -greeting,what's happened to you?,parrot,greet,4 -calendar,let me know what my calendar shows for march 28,lambada,avail,0 -yes,correct,original,book,1 -no,i do not agree,lambada,cancel,3 -date,please date,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -goodbye,goodbye now,parrot,bye,2 -date,what is today?,original,avail,0 -thank_you,thank you again,parrot,bye,2 -no,i'll pass,original,cancel,3 -greeting,are you doing well?,original,greet,4 -yes,it's true,original,book,1 -yes,good yes,lambada,book,1 -no,that's definitely false,original,cancel,3 -greeting,ahoy,lambada,greet,4 -schedule_meeting,i want to know if i can arrange a meeting,parrot,book,1 -yes,good,parrot,book,1 -greeting,heyo,original,greet,4 -how_busy,how long will it take me to get a table in the cheesecake factory?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -calendar,can you check if i have added an event to my calendar?,parrot,avail,0 -goodbye,say goodbye now,parrot,bye,2 -goodbye,bye now,original,bye,2 -no,it's a no,original,cancel,3 -greeting,aloha,original,greet,4 -no,that’s incorrect,original,cancel,3 -yes,confirmed,original,book,1 -goodbye,later,original,bye,2 -no,it's negative,parrot,cancel,3 -thank_you,i appeciate it,original,bye,2 -no,certainly false,parrot,cancel,3 -thank_you,your response is appreciated,parrot,bye,2 -yes,obviously,parrot,book,1 -greeting,hello,original,greet,4 -yes,please let's do this,parrot,book,1 -goodbye,great conversation,parrot,bye,2 -thank_you,you have my sincere thanks,parrot,bye,2 -greeting,salutations!,original,greet,4 -no,nada,original,cancel,3 -date,what date is today?,original,avail,0 -thank_you,nice,parrot,bye,2 -no,i meant nothing,parrot,cancel,3 -cancel_reservation,scrap the dinner reservation,parrot,cancel,3 -thank_you,appreciate it,original,bye,2 -how_busy,how busy is that place at night?,parrot,avail,0 -greeting,bonjour,original,greet,4 -yes,ya,original,book,1 -yes,can we please?,original,book,1 -greeting,hey how's it going,original,greet,4 -schedule_meeting,are meeting rooms available between 10 and 12?,parrot,book,1 -greeting,hey bs,lambada,greet,4 -greeting,hi,original,greet,4 -goodbye,have a good one?,original,bye,2 -schedule_meeting,get us a meeting room for 9am on friday,parrot,book,1 -no,it's negative,parrot,cancel,3 -how_busy,is mcdonalds busy?,parrot,avail,0 -date,what would tomorrow's date be?,original,avail,0 -meeting_schedule,give a summary of the meeting today,parrot,avail,0 -date,date tomorrow,parrot,avail,0 -calendar_update,put an item on my calendar for next week on the 5th,lambada,resched,5 -how_busy,how busy will ti-noodle be around 6 pm,parrot,avail,0 -yes,it'll be yes,parrot,book,1 -no,negative certainly,parrot,cancel,3 -date,what is today?,original,avail,0 -calendar,tell me what we're doing today,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -greeting,hey it's up,lambada,greet,4 -how_busy,do you know how busy imoos is?,parrot,avail,0 -yes,it's positive,parrot,book,1 -thank_you,i am grateful,lambada,bye,2 -how_busy,is iman busy at five?,parrot,avail,0 -yes,TRUE,original,book,1 -yes,i can confirm it is affirmative,original,book,1 -how_busy,what's the wait time for a reservation?,parrot,avail,0 -date,this is the day,parrot,avail,0 -how_busy,how long will the wait be at red lobster at 5pm?,parrot,avail,0 -yes,yeap,original,book,1 -thank_you,i'm so grateful,parrot,bye,2 -thank_you,thank you for making my life easier,parrot,bye,2 -calendar_update,remove all my things from my calendar,parrot,resched,5 -no,no?,parrot,cancel,3 -yes,positive,parrot,book,1 -no,not that,original,cancel,3 -date,in 14 days?,parrot,avail,0 -no,negating,parrot,cancel,3 -yes,"yup, that's correct",lambada,book,1 -no,naw,original,cancel,3 -meeting_schedule,when is my meeting with frank?,parrot,avail,0 -calendar_update,remove fencing from my calendar for 7 may,parrot,resched,5 -how_busy,how long would it take to wait in olive garden right now,parrot,avail,0 -no,nay,original,cancel,3 -reminder_update,remind me later,original,resched,5 -how_busy,tell me the time it takes me to sit at the octopus?,parrot,avail,0 -greeting,how's life in my neighborhood?,parrot,greet,4 -yes,yes is my answer,original,book,1 -greeting,hey fellows,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -goodbye,just relax,parrot,bye,2 -no,and it's very false,parrot,cancel,3 -yes,it seems true,parrot,book,1 -greeting,ahoy,lambada,greet,4 -reminder_update,make a reminder to get the cat,parrot,resched,5 -meeting_schedule,do i have to schedule a meeting with kim?,parrot,avail,0 -no,absolutely false,parrot,cancel,3 -thank_you,you did it,parrot,bye,2 -calendar,what do you have on my calendar for march 01?,parrot,avail,0 -goodbye,i'm out of this,parrot,bye,2 -yes,good yes,lambada,book,1 -greeting,are you doing ok?,original,greet,4 -greeting,how's it going with you,original,greet,4 -goodbye,goodbye ai,parrot,bye,2 -meeting_schedule,will we have a meeting today?,parrot,avail,0 -meeting_schedule,do i have meetings between 2 and 4?,parrot,avail,0 -yes,yes that is true,lambada,book,1 -date,can you tell me the date today?,original,avail,0 -no,certainly not,original,cancel,3 -yes,facts,original,book,1 -greeting,good day,original,greet,4 -no,it's negative,parrot,cancel,3 -goodbye,peace,original,bye,2 -calendar,can you list the events on my calendar for 12232019?,parrot,avail,0 -greeting,hola,original,greet,4 -yes,affirmitive,original,book,1 -no,please no,parrot,cancel,3 -calendar,have you added any events to my calendar for march 10?,parrot,avail,0 -thank_you,"oh, thanks",original,bye,2 -thank_you,thankyou,parrot,bye,2 -greeting,how's everything?,parrot,greet,4 -date,what's tomorrow's date,original,avail,0 -schedule_meeting,i need a room,parrot,book,1 -no,and i'm sorry,parrot,cancel,3 -yes,facts,original,book,1 -date,is today the date?,lambada,avail,0 -no,that's incorrect,original,cancel,3 -how_busy,wait how long?,parrot,avail,0 -yes,10-Apr,original,book,1 -calendar_update,make sure i put down an appointment for tomorrow on my calendar,parrot,resched,5 -no,that's untrue,parrot,cancel,3 -date,what's the date tomorrow,original,avail,0 -how_busy,how long is the wait at chili's right now,parrot,avail,0 -goodbye,later then,lambada,bye,2 -no,that is incorrect,original,cancel,3 -goodbye,good night,original,bye,2 -yes,uh huh,original,book,1 -no,i'm saying no,parrot,cancel,3 -greeting,hi,original,greet,4 -no,no?,parrot,cancel,3 -no,that would be a no,original,cancel,3 -greeting,hello what's happening,parrot,greet,4 -yes,absolutely,original,book,1 -no,i would rather not,lambada,cancel,3 -goodbye,just relax,parrot,bye,2 -yes,confirm,original,book,1 -reminder_update,give the cat fleas medicine,parrot,resched,5 -greeting,hello,original,greet,4 -greeting,hello there,original,greet,4 -thank_you,very grateful,parrot,bye,2 -no,naw,original,cancel,3 -goodbye,tootles?,parrot,bye,2 -schedule_meeting,i need help with setting a meeting,parrot,book,1 -no,i'll pass,original,cancel,3 -thank_you,thanks i appreciate it,parrot,bye,2 -yes,exactly right,original,book,1 -how_busy,how long will i have to wait for a seat at macy's,parrot,avail,0 -goodbye,goodbye soon,lambada,bye,2 -no,so that's no,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -no,it's absolutely false,parrot,cancel,3 -no,negating,parrot,cancel,3 -no,that's not it,parrot,cancel,3 -goodbye,regards,original,bye,2 -no,invalid,original,cancel,3 -greeting,how you're treated?,parrot,greet,4 -reminder_update,you have to remind me,parrot,resched,5 -thank_you,you helped,parrot,bye,2 -yes,TRUE,lambada,book,1 -yes,it's a fact,parrot,book,1 -greeting,how's everything,original,greet,4 -yes,"yup, that is true",lambada,book,1 -goodbye,goodbye now,parrot,bye,2 -no,nada,original,cancel,3 -no,definitely not,original,cancel,3 -no,the negator,parrot,cancel,3 -yes,i agree,original,book,1 -how_busy,how long will be the wait time at olive garden,lambada,avail,0 -how_busy,can you tell me how busy the cheesecake factory is at 11?,parrot,avail,0 -how_busy,is tiaras crowded around 7pm?,parrot,avail,0 -greeting,hey how's it going?,parrot,greet,4 -greeting,hello,original,greet,4 -greeting,how are you,original,greet,4 -yes,"sure, that is right",lambada,book,1 -no,you are wrong,original,cancel,3 -how_busy,tell me the number of people in chili's around 9pm,parrot,avail,0 -yes,so it's checked,parrot,book,1 -no,that's a lie,parrot,cancel,3 -meeting_schedule,what's my schedule today?,parrot,avail,0 -yes,"yep, that's right",original,book,1 -no,invalid,original,cancel,3 -no,that's a negative,original,cancel,3 -yes,oh-huh,parrot,book,1 -no,that would be false,original,cancel,3 -how_busy,how busy is mishawaka?,parrot,avail,0 -greeting,"hi, ai",original,greet,4 -yes,agreed,original,book,1 -how_busy,what time should i be in this restaurant?,parrot,avail,0 -greeting,how did you feel?,parrot,greet,4 -yes,10-Apr,original,book,1 -yes,TRUE,original,book,1 -goodbye,buhbye,original,bye,2 -no,naw,parrot,cancel,3 -yes,i'm going to tell you tes,parrot,book,1 -no,that's a false,lambada,cancel,3 -yes,i'd say yes,parrot,book,1 -date,what's the current date?,parrot,avail,0 -date,what month today?,parrot,avail,0 -goodbye,be careful then,lambada,bye,2 -date,what date?,parrot,avail,0 -thank_you,thanks for the response,lambada,bye,2 -greeting,are you doing ok?,original,greet,4 -reminder_update,keep checking the steak?,parrot,resched,5 -meeting_schedule,which meetings do i have today?,parrot,avail,0 -how_busy,get an estimate of how busy the cheesecake factory is at 9 pm,parrot,avail,0 -date,can you give me a date that i can expect in 24 hours?,parrot,avail,0 -reminder_update,make a reminder,parrot,resched,5 -goodbye,later gater,original,bye,2 -how_busy,at 10 pm will the olive garden be busy?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -yes,that would be great,original,book,1 -no,naw,original,cancel,3 -schedule_meeting,show me how to schedule a meeting?,parrot,book,1 -yes,10-Apr,original,book,1 -greeting,hey fellows,parrot,greet,4 -yes,you are yes,lambada,book,1 -no,that's a negation,parrot,cancel,3 -meeting_schedule,give me a list of my meetings on my calendar today,parrot,avail,0 -thank_you,that's what you did,parrot,bye,2 -calendar_update,keep an eye out for the staff meeting for march 1 at 10 am,parrot,resched,5 -no,but no way?,parrot,cancel,3 -date,what's today,original,avail,0 -yes,i guess,parrot,book,1 -thank_you,"awesome, thanks",original,bye,2 -thank_you,thanks for my reply,parrot,bye,2 -thank_you,oh sweet thanks,original,bye,2 -thank_you,thanks for that answer,original,bye,2 -yes,correct,original,book,1 -date,date tomorrow?,parrot,avail,0 -no,no this is false,parrot,cancel,3 -how_busy,how long will it take to get a burger in this restaurant? ,parrot,avail,0 -greeting,heller,original,greet,4 -meeting_schedule,do we meet today?,parrot,avail,0 -thank_you,your assistance is appreciated,parrot,bye,2 -greeting,wassup,original,greet,4 -greeting,good morning,parrot,greet,4 -yes,approved,original,book,1 -date,please date,parrot,avail,0 -greeting,aloha,original,greet,4 -greeting,hey bs,lambada,greet,4 -greeting,hola,original,greet,4 -date,what date today?,parrot,avail,0 -no,naw,parrot,cancel,3 -goodbye,talk later,original,bye,2 -how_busy,how long will it take to get a table at the chili's,lambada,avail,0 -schedule_meeting,tell me how can i schedule a meeting?,lambada,book,1 -meeting_schedule,when will i meet roger?,parrot,avail,0 -goodbye,just relax,parrot,bye,2 -yes,thats right,original,book,1 -yes,absolutely,original,book,1 -no,that's wrong,original,cancel,3 -thank_you,i'm thankful,original,bye,2 -reminder_update,add a reminder to get me to go shopping,parrot,resched,5 -no,FALSE,original,cancel,3 -thank_you,i'm grateful,original,bye,2 -date,please date,parrot,avail,0 -date,in 9 days?,parrot,avail,0 -yes,"correct, that's true",original,book,1 -date,what's today,original,avail,0 -goodbye,farewell!,original,bye,2 -reminder_update,i need to remember you,parrot,resched,5 -goodbye,bye-bye,original,bye,2 -no,so that's no,parrot,cancel,3 -yes,facts,original,book,1 -date,in 9 days?,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -yes,yeap,original,book,1 -cancel_reservation,cancel the table i reserved in the oyster bar,parrot,cancel,3 -date,please explain to me what it is today,parrot,avail,0 -date,in eight days?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -greeting,what's happening,original,greet,4 -goodbye,later!,original,bye,2 -goodbye,bye-bye,original,bye,2 -no,i meant no,original,cancel,3 -no,no thank you,original,cancel,3 -meeting_schedule,what's my schedule today?,parrot,avail,0 -schedule_meeting,how do i find a meeting?,parrot,book,1 -yes,huh,parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -calendar,can you tell me what's on my calendar for march 05?,parrot,avail,0 -reminder_update,my cat needs neutered,parrot,resched,5 -how_busy,what kind of wait will it be at the jalapeno?,parrot,avail,0 -no,no thanks,original,cancel,3 -no,it's not correct,parrot,cancel,3 -goodbye,adios,original,bye,2 -yes,great,original,book,1 -goodbye,good night,original,bye,2 -yes,positive,parrot,book,1 -no,nope,original,cancel,3 -no,the answer is false,original,cancel,3 -goodbye,great conversation,parrot,bye,2 -no,naw,original,cancel,3 -goodbye,thanks goodbye,parrot,bye,2 -yes,affirmitive,original,book,1 -yes,that statement is true,lambada,book,1 -greeting,aho,parrot,greet,4 -goodbye,later!,original,bye,2 -date,what date?,parrot,avail,0 -goodbye,i enjoyed talking to you ',parrot,bye,2 -no,it's very false,parrot,cancel,3 -goodbye,thanks goodbye,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -yes,TRUE,lambada,book,1 -yes,that's correct,original,book,1 -goodbye,tootles?,parrot,bye,2 -no,negative,original,cancel,3 -no,that's totally wrong!,original,cancel,3 -no,it's no,parrot,cancel,3 -greeting,what do i feel?,parrot,greet,4 -thank_you,thanks a million,original,bye,2 -yes,confirmed,original,book,1 -thank_you,"awesome, thanks",original,bye,2 -greeting,are you doing ok?,original,greet,4 -no,negating,parrot,cancel,3 -greeting,hey how's life,original,greet,4 -yes,accept,parrot,book,1 -greeting,you good?,parrot,greet,4 -greeting,hello,original,greet,4 -reminder_update,keep an eye on the film,parrot,resched,5 -yes,huh,parrot,book,1 -greeting,hello good day,parrot,greet,4 -how_busy,how busy is olive garden at ten,lambada,avail,0 -yes,yep,original,book,1 -yes,that's correct,original,book,1 -reminder_update,add a note,parrot,resched,5 -no,definitely not,original,cancel,3 -greeting,yo,original,greet,4 -date,tell me the date please,parrot,avail,0 -yes,absolutely,original,book,1 -calendar,what's my schedule for may 3?,parrot,avail,0 -yes,do that?,original,book,1 -yes,that's what i think will happen,lambada,book,1 -yes,of course,original,book,1 -no,ill pass,original,cancel,3 -thank_you,you did it,parrot,bye,2 -yes,affirmative,original,book,1 -greeting,wake up ai,parrot,greet,4 -thank_you,wish you were here sooner,parrot,bye,2 -calendar,what is scheduled for february 22nd?,parrot,avail,0 -no,negative,original,cancel,3 -thank_you,thanks for answering,parrot,bye,2 -meeting_schedule,how many gatherings are available between 2 and 3?,parrot,avail,0 -date,in seven days?,parrot,avail,0 -yes,ok,original,book,1 -yes,"yeah, that's true",lambada,book,1 -yes,definitely,original,book,1 -goodbye,goodbye bye,parrot,bye,2 -yes,so it's checked,parrot,book,1 -yes,of course,original,book,1 -greeting,hey how's ot,lambada,greet,4 -how_busy,how busy will we be at 9pm?,parrot,avail,0 -thank_you,your assistance is appreciated,parrot,bye,2 -goodbye,peace out!,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -thank_you,my sincere gratitude,parrot,bye,2 -yes,"true, most definitely",original,book,1 -goodbye,i'm out,parrot,bye,2 -how_busy,what is the wait time for torris?,original,avail,0 -no,FALSE,lambada,cancel,3 -greeting,"hello, ai",original,greet,4 -greeting,hola,original,greet,4 -goodbye,great conversation,parrot,bye,2 -reminder_update,remember when the turkey is done cooking,parrot,resched,5 -no,we don't want that,parrot,cancel,3 -reminder_update,remember to bring checkbook,parrot,resched,5 -yes,absolutely!,original,book,1 -yes,say yes,lambada,book,1 -goodbye,i'm gone,parrot,bye,2 -date,what date is that?,parrot,avail,0 -greeting,hey there!,original,greet,4 -reminder_update,can we set a reminder?,parrot,resched,5 -goodbye,im leaving,parrot,bye,2 -yes,facts,original,book,1 -goodbye,i will take care of you,lambada,bye,2 -greeting,hi there,original,greet,4 -goodbye,bye,original,bye,2 -date,today?,parrot,avail,0 -thank_you,you responded to my question,parrot,bye,2 -no,definitely not,original,cancel,3 -yes,"yes, that is true",original,book,1 -greeting,yo,original,greet,4 -greeting,hiya!,original,greet,4 -yes,confirmed,original,book,1 -date,please date,parrot,avail,0 -yes,correct,original,book,1 -greeting,how's life going?,parrot,greet,4 -yes,absolutely,original,book,1 -goodbye,tata for now,original,bye,2 -no,negatory?,parrot,cancel,3 -how_busy,how long will the wait be at noon if we went to nagomi?,parrot,avail,0 -yes,correct,original,book,1 -no,the negator,parrot,cancel,3 -goodbye,i'm gone,parrot,bye,2 -yes,of course,original,book,1 -how_busy,how busy is chili at 5pm?,parrot,avail,0 -goodbye,goodbye thank you,parrot,bye,2 -greeting,aho,parrot,greet,4 -cancel_reservation,this is not required anymore,parrot,cancel,3 -how_busy,is tilman busy at 5 o'clock?,parrot,avail,0 -no,i'm saying no,parrot,cancel,3 -date,what's the day today?,parrot,avail,0 -yes,yep,original,book,1 -thank_you,good job on that,lambada,bye,2 -greeting,hey,original,greet,4 -yes,indeed,parrot,book,1 -greeting,hiya!,original,greet,4 -goodbye,tootles,original,bye,2 -goodbye,bye now,original,bye,2 -goodbye,later goodbye,parrot,bye,2 -no,that's certainly false,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -yes,please let's do that,parrot,book,1 -greeting,how're you?,parrot,greet,4 -yes,10-Apr,original,book,1 -goodbye,fairwell,original,bye,2 -goodbye,i'll go,parrot,bye,2 -thank_you,thanks for answering,parrot,bye,2 -no,no please,parrot,cancel,3 -yes,indeed,original,book,1 -goodbye,fairwell?,parrot,bye,2 -thank_you,thanks!,original,bye,2 -goodbye,bye bye,lambada,bye,2 -no,i disagree with that,lambada,cancel,3 -no,naw,parrot,cancel,3 -how_busy,waiting for chicken tikka masala?,parrot,avail,0 -yes,confirmed,original,book,1 -no,negation,parrot,cancel,3 -no,"no, that's a lie",lambada,cancel,3 -thank_you,very grateful,parrot,bye,2 -meeting_schedule,when am i scheduled to have meetings today?,lambada,avail,0 -greeting,good morning ai,parrot,greet,4 -goodbye,bye!,original,bye,2 -calendar,what is on my calendar for march 17th?,parrot,avail,0 -goodbye,bye,original,bye,2 -yes,"that is true, yes",original,book,1 -thank_you,appreciated,original,bye,2 -goodbye,goodbye bye,parrot,bye,2 -thank_you,you made me aware,parrot,bye,2 -date,is today monday?,original,avail,0 -calendar,have any appointments scheduled for the 29th?,parrot,avail,0 -greeting,how it goes?,parrot,greet,4 -yes,"yes, that's accurate",original,book,1 -goodbye,as regards,parrot,bye,2 -yes,not a lie,parrot,book,1 -goodbye,please talk soon,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -calendar,let's see what's on my calendar for march 17th,parrot,avail,0 -goodbye,goodbye soon,lambada,bye,2 -thank_you,"oh, thanks",original,bye,2 -goodbye,lovely conversation,parrot,bye,2 -thank_you,thanks,original,bye,2 -greeting,hiya!,original,greet,4 -goodbye,"thanks for chatting, bye",lambada,bye,2 -no,negatory?,parrot,cancel,3 -date,current date,original,avail,0 -yes,agreed,original,book,1 -cancel_reservation,can you cancel my reservation in the restaurant?,parrot,cancel,3 -cancel_reservation,cancel my reservation for dinner tonight please,parrot,cancel,3 -date,what is today?,original,avail,0 -greeting,how is ife treating you?,parrot,greet,4 -goodbye,signing off,original,bye,2 -no,so that's no,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -how_busy,what's the wait like?,parrot,avail,0 -yes,obviously,parrot,book,1 -goodbye,i'll be gone,parrot,bye,2 -thank_you,you have made my life so much easier,lambada,bye,2 -how_busy,sage is busy at noon?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -no,no,lambada,cancel,3 -no,not right?,parrot,cancel,3 -how_busy,how long will it take to get a table in al jolo?,parrot,avail,0 -calendar,what's the date on my calendar for my birthday,lambada,avail,0 -greeting,what's happening,original,greet,4 -goodbye,bye!,original,bye,2 -greeting,hiya,original,greet,4 -no,it's not true,parrot,cancel,3 -greeting,how're you doing?,parrot,greet,4 -goodbye,you're done,parrot,bye,2 -calendar,did i set an appointment on my calendar to get my doctor's appointment?,lambada,avail,0 -greeting,how's my treatment?,parrot,greet,4 -greeting,wanted to say hi,parrot,greet,4 -meeting_schedule,meeting today,parrot,avail,0 -yes,approved,original,book,1 -date,what's my date tomorrow?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -goodbye,farewell!,original,bye,2 -goodbye,have fun?,lambada,bye,2 -yes,"yeah, that's it",lambada,book,1 -goodbye,", goodbye",lambada,bye,2 -yes,yes,original,book,1 -date,is monday wednesday thursday friday saturday?,parrot,avail,0 -greeting,aloha,original,greet,4 -no,naw,parrot,cancel,3 -yes,sure,original,book,1 -thank_you,the help is appreciated,parrot,bye,2 -yes,"yes, please",original,book,1 -goodbye,glad we can talk again,parrot,bye,2 -greeting,how was my day?,parrot,greet,4 -calendar,tell me what's on my calendar for march 22?,parrot,avail,0 -goodbye,later gator!,original,bye,2 -yes,"yes, that's correct",original,book,1 -no,negation,parrot,cancel,3 -goodbye,see ya,lambada,bye,2 -date,what date?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -meeting_schedule,what's the time of the meeting?,parrot,avail,0 -goodbye,peace out!,original,bye,2 -yes,"yes, that's correct",original,book,1 -goodbye,we chatted well,parrot,bye,2 -calendar,tell me my calendar events?,lambada,avail,0 -thank_you,i appeciate it,parrot,bye,2 -thank_you,and i'm grateful,parrot,bye,2 -yes,ya,original,book,1 -no,not happening,original,cancel,3 -greeting,how are you,original,greet,4 -how_busy,how crowded is this restaurant?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -thank_you,you helped,parrot,bye,2 -greeting,how's everything,original,greet,4 -greeting,how you're treated,parrot,greet,4 -no,negation,parrot,cancel,3 -greeting,how's my day going?,parrot,greet,4 -yes,say yes,lambada,book,1 -yes,it's logical,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -yes,i know,parrot,book,1 -goodbye,"goodbye, ai assistant",original,bye,2 -no,nay,original,cancel,3 -greeting,heyo,original,greet,4 -no,no,lambada,cancel,3 -yes,i guess,parrot,book,1 -how_busy,how busy is macy's right now,lambada,avail,0 -thank_you,good job thanks,parrot,bye,2 -how_busy,how busy are applebees at lunch,parrot,avail,0 -reminder_update,remind yourself to go shopping,parrot,resched,5 -yes,positive,parrot,book,1 -goodbye,you're done,parrot,bye,2 -cancel_reservation,can you please cancel my reservations for dinner?,lambada,cancel,3 -goodbye,i'm going,parrot,bye,2 -yes,great,original,book,1 -date,when will the date be?,lambada,avail,0 -calendar_update,i have to edit this event from my calendar,parrot,resched,5 -greeting,good morning,parrot,greet,4 -goodbye,goodbye then,parrot,bye,2 -thank_you,thank you for everything,parrot,bye,2 -yes,absolutely,original,book,1 -yes,that's right,original,book,1 -yes,right,parrot,book,1 -no,negative certainly,parrot,cancel,3 -yes,yay,lambada,book,1 -date,what will be tomorrow's date?,lambada,avail,0 -goodbye,goodbyes,parrot,bye,2 -how_busy,if i order a burger at this restaurant how long will it take,parrot,avail,0 -date,date tomorrow?,parrot,avail,0 -goodbye,thanks bye bye!,original,bye,2 -goodbye,great talk,lambada,bye,2 -goodbye,just relax,parrot,bye,2 -goodbye,talk later,original,bye,2 -yes,affirmative,original,book,1 -greeting,hola,original,greet,4 -goodbye,my way,parrot,bye,2 -greeting,how're you?,parrot,greet,4 -no,this information is false,parrot,cancel,3 -greeting,how are you doing,original,greet,4 -yes,10-Apr,original,book,1 -no,nothing,parrot,cancel,3 -date,current day,parrot,avail,0 -greeting,how're you?,parrot,greet,4 -greeting,how does life treat you?,parrot,greet,4 -calendar_update,i need to add my grocery list to my calendar for the next day,lambada,resched,5 -goodbye,greetings,parrot,bye,2 -thank_you,i appeciate it,parrot,bye,2 -yes,it's indeed true,original,book,1 -no,that's not acceptable,parrot,cancel,3 -no,that's wrong,original,cancel,3 -greeting,hey fellow,parrot,greet,4 -goodbye,my way,parrot,bye,2 -greeting,how's the ayi?,parrot,greet,4 -no,no that's not right,parrot,cancel,3 -thank_you,okay thank you,parrot,bye,2 -no,what you've just said is false?,parrot,cancel,3 -yes,good,parrot,book,1 -yes,yay,lambada,book,1 -no,definitely not,original,cancel,3 -cancel_reservation,how can i cancel my reservation for chris in stella maris?,parrot,cancel,3 -greeting,hows life for you,lambada,greet,4 -how_busy,is this restaurant busy at night?,lambada,avail,0 -yes,oh-huh,parrot,book,1 -cancel_reservation,call off the dinner reservation,original,cancel,3 -no,thanks no,parrot,cancel,3 -thank_you,really great!,original,bye,2 -thank_you,a special thanks to you,parrot,bye,2 -no,it's a mistake,parrot,cancel,3 -how_busy,what time should i wait for when i go to the restaurant?,parrot,avail,0 -reminder_update,please add a reminder,lambada,resched,5 -no,naw,parrot,cancel,3 -yes,agreed,original,book,1 -greeting,salutation,parrot,greet,4 -goodbye,goodbye my friend,parrot,bye,2 -no,i believe it's incorrect,lambada,cancel,3 -goodbye,afterward,parrot,bye,2 -goodbye,i need to go to sleep now,lambada,bye,2 -how_busy,what's the time to sit down in this restaurant?,parrot,avail,0 -no,FALSE,original,cancel,3 -goodbye,peace,original,bye,2 -no,it's a false,lambada,cancel,3 -yes,i guess,parrot,book,1 -no,what you've said is wrong?,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -greeting,welcome,parrot,greet,4 -calendar,check my calendar please,parrot,avail,0 -thank_you,i am thankful for my help!,original,bye,2 -no,FALSE,lambada,cancel,3 -greeting,are you doing ok?,original,greet,4 -date,is it monday?,parrot,avail,0 -how_busy,what time should i wait for when i go to the restaurants?,parrot,avail,0 -greeting,how's that hanging?,parrot,greet,4 -date,what is today?,original,avail,0 -greeting,hello there,original,greet,4 -goodbye,thanks for talking,original,bye,2 -how_busy,how long will the wait be at this restaurant,lambada,avail,0 -greeting,bonjour,original,greet,4 -date,in three days,parrot,avail,0 -goodbye,until next time,original,bye,2 -yes,oh yes,original,book,1 -greeting,whats new,lambada,greet,4 -thank_you,thanks again!,original,bye,2 -thank_you,your answer was enjoyable,original,bye,2 -thank_you,i love my pay check,parrot,bye,2 -goodbye,nice talk,lambada,bye,2 -date,what day?,parrot,avail,0 -no,it's a lie,parrot,cancel,3 -thank_you,i appeciate it,parrot,bye,2 -goodbye,goodbye later,parrot,bye,2 -how_busy,what's the average wait time at a cheese cake factory?,parrot,avail,0 -yes,my response is yes,parrot,book,1 -yes,good,parrot,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -no,it would be awful,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -meeting_schedule,when's my meeting with dave?,parrot,avail,0 -date,what's the date today?,parrot,avail,0 -greeting,salutations!,original,greet,4 -thank_you,your assistance is appreciated,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -greeting,heller,original,greet,4 -thank_you,you've helped,parrot,bye,2 -no,it's negative,parrot,cancel,3 -yes,uh-huh,original,book,1 -thank_you,thanks again,original,bye,2 -greeting,hey,original,greet,4 -calendar,tell me what my appointment is for march 25th?,lambada,avail,0 -goodbye,regards,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -reminder_update,add a reminder to clean my fridge,parrot,resched,5 -no,please no,parrot,cancel,3 -how_busy,tell me the wait time at applebee's?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -thank_you,appreciate the help,original,bye,2 -yes,that would be true,original,book,1 -yes,affirmative,original,book,1 -no,yes that's false,lambada,cancel,3 -greeting,how're you doing?,parrot,greet,4 -goodbye,until next time!,original,bye,2 -yes,okay,original,book,1 -reminder_update,make me a reminder to wash?,parrot,resched,5 -meeting_schedule,i want to know when my meeting with dan is,parrot,avail,0 -goodbye,bye!,original,bye,2 -yes,"yep, that's correct",lambada,book,1 -how_busy,how long would the wait at pizza sauce be,lambada,avail,0 -goodbye,good see you,lambada,bye,2 -cancel_reservation,cancell my dinner reservation,parrot,cancel,3 -goodbye,talk later,original,bye,2 -yes,it's true,original,book,1 -yes,great,original,book,1 -thank_you,good job,lambada,bye,2 -yes,do that?,original,book,1 -greeting,bonjour,original,greet,4 -meeting_schedule,please read my schedule of meetings,parrot,avail,0 -no,negative,original,cancel,3 -how_busy,is the restaurant crowded at night?,lambada,avail,0 -greeting,hi there,original,greet,4 -goodbye,i’m leaving-goodbye!,original,bye,2 -no,negating,parrot,cancel,3 -yes,"correct, that's true",original,book,1 -thank_you,good to look at,parrot,bye,2 -date,please explain today,parrot,avail,0 -how_busy,how busy is the yellowstone steak house?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -cancel_reservation,get rid of my reservation at the steak house please,parrot,cancel,3 -thank_you,thanks,original,bye,2 -greeting,hey fellows,parrot,greet,4 -goodbye,good call,parrot,bye,2 -greeting,aho,parrot,greet,4 -thank_you,"thanks, that's helpful",original,bye,2 -no,but no way?,parrot,cancel,3 -yes,you are correct,original,book,1 -yes,so it's real,parrot,book,1 -goodbye,later!,original,bye,2 -greeting,aho,parrot,greet,4 -yes,certainly,parrot,book,1 -yes,positive,parrot,book,1 -greeting,what is new?,parrot,greet,4 -goodbye,farewell,original,bye,2 -greeting,all right now?,parrot,greet,4 -yes,definitely,original,book,1 -greeting,good evening,original,greet,4 -goodbye,catch you later,original,bye,2 -goodbye,later gater,original,bye,2 -no,that's not correct,original,cancel,3 -yes,"yes, please",parrot,book,1 -yes,confirm,original,book,1 -thank_you,thank you for the answer,original,bye,2 -goodbye,"thanks, bye",original,bye,2 -yes,confirm,original,book,1 -goodbye,i’m leaving-goodbye!,original,bye,2 -cancel_reservation,i want to cancel my reservation for fred at red robin,parrot,cancel,3 -greeting,salutations!,original,greet,4 -calendar,are there any events happening between may 5th and may 6th?,lambada,avail,0 -greeting,what's happened?,parrot,greet,4 -thank_you,thanks for trying,original,bye,2 -no,false sure,parrot,cancel,3 -how_busy,how long does a pizza shop wait to serve dinner?,parrot,avail,0 -goodbye,regards,original,bye,2 -reminder_update,i must be notified about maintenance reminders,parrot,resched,5 -reminder_update,make a reminder please,parrot,resched,5 -goodbye,see ya,lambada,bye,2 -goodbye,later thanks for the conversation,parrot,bye,2 -how_busy,how busy are the wait times at eee,lambada,avail,0 -yes,i vote yes,original,book,1 -thank_you,gracias,original,bye,2 -how_busy,wait in the restaurant?,parrot,avail,0 -greeting,are you doing ok?,original,greet,4 -how_busy,do you know how long the wait will be at chris's house?,parrot,avail,0 -goodbye,bye bye!,original,bye,2 -thank_you,thanks that was really helpful,original,bye,2 -reminder_update,i just put the steaks on the grill remind me to check them at the right time,parrot,resched,5 -goodbye,later gator!,original,bye,2 -yes,absolutely!,original,book,1 -no,but it's false,parrot,cancel,3 -yes,yes sir,original,book,1 -thank_you,gracias,original,bye,2 -no,most definitely false,parrot,cancel,3 -thank_you,let me thank you,original,bye,2 -no,invalid,original,cancel,3 -yes,that's right,original,book,1 -date,in 15 days what will be the date?,parrot,avail,0 -no,no thanks,original,cancel,3 -no,i meant nothing,parrot,cancel,3 -goodbye,adios,original,bye,2 -calendar,is my calendar free for next sunday?,parrot,avail,0 -yes,definitely,original,book,1 -greeting,hi,original,greet,4 -greeting,welcome,parrot,greet,4 -greeting,"yo, hows it going",original,greet,4 -yes,certainly,parrot,book,1 -yes,yeah,original,book,1 -yes,affirmative,original,book,1 -goodbye,thank you for chatting later,parrot,bye,2 -yes,absolutely,original,book,1 -greeting,wassup,original,greet,4 -meeting_schedule,when are my meetings?,parrot,avail,0 -meeting_schedule,meeting today,parrot,avail,0 -date,what today?,parrot,avail,0 -goodbye,later,original,bye,2 -yes,say yes,lambada,book,1 -yes,yup,original,book,1 -greeting,so how is everything,original,greet,4 -no,not so i think,parrot,cancel,3 -yes,affirmative,original,book,1 -thank_you,thank you!,original,bye,2 -yes,ok,original,book,1 -meeting_schedule,is there a meeting with my boss today?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -thank_you,"nice, excellent!",original,bye,2 -schedule_meeting,can you plan a meeting for 5pm on monday?,parrot,book,1 -greeting,salutation,parrot,greet,4 -thank_you,thanks for the answer,original,bye,2 -goodbye,cya later,original,bye,2 -yes,yup,original,book,1 -thank_you,my sincere thanks,parrot,bye,2 -no,so that's no,parrot,cancel,3 -goodbye,later goodbye,parrot,bye,2 -thank_you,i appeciate it,parrot,bye,2 -greeting,how are you,original,greet,4 -calendar_update,go ahead and delete the scheduled event on the calendar,parrot,resched,5 -yes,"yup, that's true",original,book,1 -no,no it is not true,parrot,cancel,3 -thank_you,so grateful,parrot,bye,2 -no,negatory?,parrot,cancel,3 -yes,i know,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -no,it's no,parrot,cancel,3 -yes,uh-huh,original,book,1 -yes,it is a yes from me,parrot,book,1 -yes,accept,parrot,book,1 -greeting,what's happening?,parrot,greet,4 -greeting,heyo,original,greet,4 -greeting,salutation,parrot,greet,4 -yes,i know it's true,parrot,book,1 -yes,affirmitive,original,book,1 -cancel_reservation,the reservation at zepher cancel joe from that,original,cancel,3 -goodbye,i'll talk about it tomorrow,parrot,bye,2 -how_busy,wait how long?,parrot,avail,0 -yes,okay,original,book,1 -greeting,salutations,parrot,greet,4 -yes,i know,parrot,book,1 -no,nope that's not it,original,cancel,3 -yes,i guess,parrot,book,1 -thank_you,thanks for helping,original,bye,2 -greeting,how's my family going?,parrot,greet,4 -goodbye,good-bye,parrot,bye,2 -no,is my falsehood?,parrot,cancel,3 -greeting,how's ai doing today?,parrot,greet,4 -goodbye,fairwell,original,bye,2 -thank_you,thanks so much!,original,bye,2 -yes,not false,parrot,book,1 -reminder_update,come on please,parrot,resched,5 -schedule_meeting,please schedule a meeting,parrot,book,1 -goodbye,peace,original,bye,2 -yes,i know,parrot,book,1 -thank_you,nice,parrot,bye,2 -date,where is tomorrow's date?,parrot,avail,0 -greeting,what's happened?,parrot,greet,4 -no,that's incorrect,original,cancel,3 -yes,affirmitive,original,book,1 -reminder_update,please remind me of something,original,resched,5 -yes,yeap,original,book,1 -greeting,good evening,original,greet,4 -reminder_update,remember to bring a jacket tomorrow,parrot,resched,5 -no,no,lambada,cancel,3 -greeting,salutations,parrot,greet,4 -calendar_update,remove all calendar entries on march 13,parrot,resched,5 -schedule_meeting,i'm interested in meeting in the blue room on friday?,parrot,book,1 -greeting,hey,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -goodbye,regards,original,bye,2 -yes,that is right,original,book,1 -how_busy,how long will it take to get a table at ihop?,parrot,avail,0 -no,it's negative,parrot,cancel,3 -calendar,can you show me my calendar?,lambada,avail,0 -no,it's not right,parrot,cancel,3 -greeting,how are you treated,lambada,greet,4 -meeting_schedule,does travis have any meetings today?,parrot,avail,0 -no,invalid,original,cancel,3 -thank_you,you answered,parrot,bye,2 -reminder_update,remind me later,original,resched,5 -goodbye,good bye,original,bye,2 -yes,i know this is true,lambada,book,1 -no,i'd have to say the answer is no,parrot,cancel,3 -no,FALSE,original,cancel,3 -greeting,hola,original,greet,4 -reminder_update,please remind me something,parrot,resched,5 -yes,absolutely!,original,book,1 -no,nothing,parrot,cancel,3 -yes,oh yes,original,book,1 -yes,that's correct,original,book,1 -how_busy,what time can i expect to be seated in this restaurant? '',parrot,avail,0 -goodbye,you're done,parrot,bye,2 -goodbye,sayonara,original,bye,2 -yes,"yeah, that's it",lambada,book,1 -goodbye,farewell!,original,bye,2 -greeting,how are you treated?,parrot,greet,4 -no,that's totally wrong,parrot,cancel,3 -cancel_reservation,please cancel my lunch reservation,lambada,cancel,3 -yes,absolutely correct,original,book,1 -goodbye,goodbye now,parrot,bye,2 -greeting,so how's everything?,parrot,greet,4 -greeting,what's up?,parrot,greet,4 -no,no?,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -goodbye,later goodbye,parrot,bye,2 -date,in 9 days?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -no,no!,original,cancel,3 -greeting,hey it's up,lambada,greet,4 -no,invalid,original,cancel,3 -greeting,hiya!,original,greet,4 -thank_you,thanks for answering,parrot,bye,2 -no,not correct,parrot,cancel,3 -yes,yup,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,hello hello good day,parrot,greet,4 -greeting,hiya,original,greet,4 -how_busy,how busy is michel at 3?,parrot,avail,0 -greeting,hello,original,greet,4 -reminder_update,please create a reminder,parrot,resched,5 -how_busy,can i wait at the macaroni grill?,parrot,avail,0 -no,that's not true,original,cancel,3 -yes,positive,original,book,1 -no,it is indeed false,lambada,cancel,3 -calendar_update,clear my calendar for april 20,parrot,resched,5 -yes,agreed,original,book,1 -how_busy,how long will i wait to be seated in the cheesecake factory?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -date,current date,original,avail,0 -calendar_update,i need buy a birthday gift for sue taken off my calendar it is on monday or tuesday last week,original,resched,5 -meeting_schedule,when's my meeting with richard,original,avail,0 -meeting_schedule,tell me if i have a meeting with liz today?,original,avail,0 -greeting,salutations!,original,greet,4 -schedule_meeting,i must get a meeting room,parrot,book,1 -greeting,hi,original,greet,4 -calendar_update,please remove my first meeting from my calendar,parrot,resched,5 -yes,exactly right,original,book,1 -goodbye,goodnight,original,bye,2 -thank_you,thankyou,parrot,bye,2 -thank_you,thanks,original,bye,2 -thank_you,my sincere thanks,parrot,bye,2 -goodbye,see ya,original,bye,2 -no,certainly not,original,cancel,3 -greeting,hi! are you doing okay,original,greet,4 -no,it's a lie,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -date,what's my date today?,parrot,avail,0 -yes,10-Apr,original,book,1 -no,that's bad,parrot,cancel,3 -greeting,hiya,original,greet,4 -greeting,whats up?,parrot,greet,4 -no,not correct,parrot,cancel,3 -thank_you,my gratitude,parrot,bye,2 -reminder_update,remind me to clean up room,parrot,resched,5 -goodbye,good talk,parrot,bye,2 -yes,i agree,original,book,1 -goodbye,we chatted well,parrot,bye,2 -yes,approved,original,book,1 -how_busy,how long do i have to wait in a restaurant?,parrot,avail,0 -greeting,hello what is happening,lambada,greet,4 -greeting,hey how have you been,parrot,greet,4 -calendar,please tell me what's on my calendar for march 17th,parrot,avail,0 -greeting,salutations,parrot,greet,4 -date,what's today?,parrot,avail,0 -thank_you,you're welcome,parrot,bye,2 -greeting,tell me the latest news,parrot,greet,4 -greeting,hows life for you,lambada,greet,4 -meeting_schedule,tell me when my meeting with roger is scheduled?,parrot,avail,0 -how_busy,how long do i have to wait before i go to red lobster?,parrot,avail,0 -greeting,hi what's up?,parrot,greet,4 -no,naw,parrot,cancel,3 -goodbye,glad to talk,parrot,bye,2 -yes,please let's do this,parrot,book,1 -thank_you,i appreciate you helping me,original,bye,2 -thank_you,you've been a great support,parrot,bye,2 -cancel_reservation,please cancel my reservation at the wine bar,lambada,cancel,3 -yes,definitely,original,book,1 -goodbye,sayonara ,parrot,bye,2 -thank_you,thanks again!,original,bye,2 -schedule_meeting,i need a meeting with jane at 9am,parrot,book,1 -greeting,how's life,original,greet,4 -date,what month is today?,parrot,avail,0 -calendar_update,on 22 of this month we need to clear our calendar so we can leave it open for mark to visit,parrot,resched,5 -thank_you,thanks for the help!,original,bye,2 -goodbye,"thanks for chatting, bye",lambada,bye,2 -calendar,did you set an appointment on my calendar?,parrot,avail,0 -meeting_schedule,is there any meetings today between 5:00 and 6:00 pm?,lambada,avail,0 -how_busy,what's the wait time for a table at this restaurant?,parrot,avail,0 -date,what is the date it will be 5 days from now?,lambada,avail,0 -thank_you,"good job, thanks",lambada,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -calendar,help me find my march schedule,lambada,avail,0 -yes,i'm going to tell you tes,parrot,book,1 -cancel_reservation,please cancel my booking,parrot,cancel,3 -greeting,bonjour,original,greet,4 -goodbye,tootles?,parrot,bye,2 -greeting,wassup,original,greet,4 -thank_you,i'm thankful,original,bye,2 -no,that's not right?,parrot,cancel,3 -greeting,tell me how you are doing today,parrot,greet,4 -yes,affirmitive,original,book,1 -thank_you,gracias,original,bye,2 -no,that's totally wrong!,original,cancel,3 -thank_you,thanks for responding,parrot,bye,2 -yes,confirm,original,book,1 -no,no it's not,parrot,cancel,3 -greeting,what's new?,parrot,greet,4 -date,current date,original,avail,0 -greeting,ahoy hoy,original,greet,4 -meeting_schedule,are there any meetings booked for this day?,parrot,avail,0 -how_busy,do you know how long the wait will be at chris' house?,parrot,avail,0 -no,false sure,parrot,cancel,3 -thank_you,thanks please,original,bye,2 -no,that's no,parrot,cancel,3 -how_busy,is mcdonalds busy?,parrot,avail,0 -greeting,hey fellows,parrot,greet,4 -greeting,hello there,original,greet,4 -no,no?,parrot,cancel,3 -yes,absolutely,original,book,1 -greeting,are you good?,original,greet,4 -date,where's tomorrow's date,parrot,avail,0 -yes,absolutely,original,book,1 -yes,right,parrot,book,1 -date,i need to know what's the date today,parrot,avail,0 -no,say negative,parrot,cancel,3 -reminder_update,remember to bring checkbook,parrot,resched,5 -greeting,whats new,lambada,greet,4 -yes,"yes, please",parrot,book,1 -yes,it's logical,parrot,book,1 -greeting,hi how's everything?,parrot,greet,4 -greeting,hi what's up?,parrot,greet,4 -goodbye,will leave now,parrot,bye,2 -greeting,hey yai,lambada,greet,4 -goodbye,peace out!,original,bye,2 -yes,okay,original,book,1 -yes,that's true,original,book,1 -schedule_meeting,a meeting with mike at 5pm,parrot,book,1 -how_busy,how busy is imano at 5 pm,lambada,avail,0 -yes,confirm,original,book,1 -how_busy,how busy is outback steakhouse at 6 pm,lambada,avail,0 -goodbye,good-bye,parrot,bye,2 -yes,you're right that that's true,lambada,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -greeting,"wake up, ai",original,greet,4 -goodbye,later,original,bye,2 -yes,yep,original,book,1 -goodbye,i'm out,parrot,bye,2 -goodbye,"thanks, bye",original,bye,2 -date,is the date?,parrot,avail,0 -how_busy,what's the wait?,parrot,avail,0 -thank_you,merci beaucoup,original,bye,2 -no,not good,parrot,cancel,3 -yes,that's right,original,book,1 -goodbye,see ya,lambada,bye,2 -goodbye,buhbye,original,bye,2 -yes,yes,original,book,1 -no,please disagree,lambada,cancel,3 -how_busy,list the wait times for mr joe's pizza?,parrot,avail,0 -greeting,how is ife treating you?,parrot,greet,4 -greeting,hola!,original,greet,4 -how_busy,how long is the wait at red robin?,parrot,avail,0 -yes,good yes,lambada,book,1 -yes,that's true,original,book,1 -goodbye,i'm gone,parrot,bye,2 -greeting,yo,original,greet,4 -date,date tomorrow?,parrot,avail,0 -meeting_schedule,when is my meeting with dr robin scheduled?,parrot,avail,0 -greeting,"hello, how is it going",original,greet,4 -goodbye,just relax,parrot,bye,2 -how_busy,how long will it take to get a table at the american steak house,lambada,avail,0 -no,nay,original,cancel,3 -goodbye,let me talk to you later,parrot,bye,2 -yes,positive,original,book,1 -yes,my answer is yes,parrot,book,1 -greeting,how's life going?,parrot,greet,4 -how_busy,tell me the wait for the meal in chipotle?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -greeting,salutations!,original,greet,4 -goodbye,signing off,original,bye,2 -reminder_update,you can remind me,parrot,resched,5 -yes,yes,original,book,1 -greeting,wassup,original,greet,4 -yes,huh,parrot,book,1 -goodbye,later then,lambada,bye,2 -yes,i guess,parrot,book,1 -goodbye,farewell,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -thank_you,"good job, thanks",lambada,bye,2 -thank_you,thanks again!,original,bye,2 -no,i dont think it's right,parrot,cancel,3 -date,when will it be eight days?,parrot,avail,0 -goodbye,thanks for talking with me,lambada,bye,2 -yes,roger that,original,book,1 -goodbye,say goodbye,parrot,bye,2 -no,it's very false,parrot,cancel,3 -meeting_schedule,are there any meetings with ash today?,parrot,avail,0 -yes,TRUE,lambada,book,1 -no,that's bad,parrot,cancel,3 -greeting,"hello, how are things",original,greet,4 -no,no thanks,original,cancel,3 -date,date tomorrow?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -thank_you,i appreciate that answer!,original,bye,2 -goodbye,the talk was nice,lambada,bye,2 -greeting,salutations!,original,greet,4 -how_busy,how busy is honey's at 5 pm,lambada,avail,0 -no,that's bad,parrot,cancel,3 -goodbye,regards,original,bye,2 -goodbye,and then goodbye,parrot,bye,2 -thank_you,you've tried,parrot,bye,2 -schedule_meeting,is there availability for conferences between one and two?,parrot,book,1 -yes,positive,parrot,book,1 -yes,positive,original,book,1 -reminder_update,add a reminder to wash the shower,parrot,resched,5 -no,that's a negation,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -no,no!,original,cancel,3 -thank_you,you've been great,parrot,bye,2 -yes,confirm,original,book,1 -thank_you,thanks so much ai,original,bye,2 -calendar,can you please check to see if there are any events on my calendar for march 8th?,lambada,avail,0 -thank_you,thank you,original,bye,2 -how_busy,can i expect macaroni grill to be busy at 6?,lambada,avail,0 -schedule_meeting,can you book the meeting?,parrot,book,1 -date,i'd like to know what's the date?,parrot,avail,0 -goodbye,was on a good run,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -greeting,hey fellow,parrot,greet,4 -yes,of course,original,book,1 -no,so that's no,parrot,cancel,3 -yes,affirmative,original,book,1 -greeting,"hi, how's it going",lambada,greet,4 -no,it's no,parrot,cancel,3 -greeting,hola,original,greet,4 -goodbye,good bye,original,bye,2 -yes,absolutely,original,book,1 -greeting,heyo,original,greet,4 -thank_you,i am grateful,lambada,bye,2 -calendar_update,but i have an appointment tomorrow on my calendar,parrot,resched,5 -greeting,how's the ayi?,parrot,greet,4 -date,i want to know what the date is,parrot,avail,0 -yes,uh-huh,original,book,1 -calendar,can you help me find my calendar for january 4,parrot,avail,0 -yes,you are yes,lambada,book,1 -no,yes it's false,parrot,cancel,3 -schedule_meeting,please schedule a meeting,parrot,book,1 -greeting,are you good?,original,greet,4 -schedule_meeting,can you sign me up for an meeting in the blue room on friday?,lambada,book,1 -calendar,show me the calendar?,parrot,avail,0 -calendar,do you have any events in my calendar for next sunday?,parrot,avail,0 -goodbye,sayonara ,parrot,bye,2 -date,what day?,parrot,avail,0 -greeting,heyo,original,greet,4 -reminder_update,remind me to clean up room,parrot,resched,5 -no,i'd rather not answer,parrot,cancel,3 -date,is today monday?,original,avail,0 -goodbye,bye-bye,original,bye,2 -meeting_schedule,show me how many meetings i have between noon and 5pm?,parrot,avail,0 -goodbye,you're done,parrot,bye,2 -how_busy,how long does it take to sit at the red lobster?,parrot,avail,0 -greeting,how are you,original,greet,4 -yes,positive,parrot,book,1 -yes,i vote yes,original,book,1 -reminder_update,please add a reminder,lambada,resched,5 -cancel_reservation,please cancel my booking,parrot,cancel,3 -greeting,hello hello good morning,parrot,greet,4 -goodbye,as regards,parrot,bye,2 -no,that's not acceptable,parrot,cancel,3 -date,in three days,parrot,avail,0 -no,that's inaccurate,original,cancel,3 -greeting,hola,original,greet,4 -thank_you,again thanks,parrot,bye,2 -yes,yeah,original,book,1 -greeting,how're you?,parrot,greet,4 -date,please explain today,parrot,avail,0 -greeting,hiya!,original,greet,4 -yes,obviously,parrot,book,1 -goodbye,bye!,original,bye,2 -goodbye,good conversation,parrot,bye,2 -date,show me the date,original,avail,0 -yes,certainly,parrot,book,1 -how_busy,how long before dinner,parrot,avail,0 -cancel_reservation,how can i cancel a reservation at red robin?,parrot,cancel,3 -how_busy,what's the crowd like at 5pm?,parrot,avail,0 -date,what's the name of today?,parrot,avail,0 -date,what is a 100 day date,parrot,avail,0 -no,that's bad,parrot,cancel,3 -cancel_reservation,please cancel my dinner reservation,original,cancel,3 -schedule_meeting,please explain how do i schedule a meeting,lambada,book,1 -goodbye,send a goodbye,lambada,bye,2 -how_busy,is the cheesecake factory busy at 9?,parrot,avail,0 -greeting,ai how are you feeling,lambada,greet,4 -thank_you,thank you,original,bye,2 -reminder_update,keep checking the steak?,parrot,resched,5 -cancel_reservation,cancel my 6:00 reservation at the cheesecake factory,original,cancel,3 -greeting,hello there!,original,greet,4 -greeting,hey how's it hanging,original,greet,4 -reminder_update,please remember me later,parrot,resched,5 -schedule_meeting,how can i find a new meeting?,parrot,book,1 -yes,TRUE,lambada,book,1 -no,no!,original,cancel,3 -yes,10-Apr,original,book,1 -thank_you,thanks,original,bye,2 -schedule_meeting,can you sign me up for a meeting in the blue room on friday?,original,book,1 -calendar,what's my schedule for tomorrow?,parrot,avail,0 -thank_you,thank you?,parrot,bye,2 -greeting,how's ayi doing?,parrot,greet,4 -yes,affirmative,original,book,1 -yes,TRUE,lambada,book,1 -greeting,wake up ai,parrot,greet,4 -no,not a good idea,parrot,cancel,3 -greeting,hi there,original,greet,4 -calendar,do i have anything scheduled for thursday?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -no,that's a huge mistake,parrot,cancel,3 -yes,good,parrot,book,1 -calendar,can you update me on what is currently on my calendar for march 26th?,lambada,avail,0 -goodbye,buhbye,original,bye,2 -date,what today?,parrot,avail,0 -goodbye,later!,original,bye,2 -greeting,aho,parrot,greet,4 -yes,please let's do this,parrot,book,1 -no,this is false,parrot,cancel,3 -yes,just right,parrot,book,1 -no,the whole thing is terribly wrong,parrot,cancel,3 -thank_you,i appeciate it,parrot,bye,2 -greeting,hi what's up?,parrot,greet,4 -goodbye,thank you goodbye,original,bye,2 -no,nay,original,cancel,3 -yes,it's a yes from me,parrot,book,1 -goodbye,adios ai,original,bye,2 -yes,yeah,original,book,1 -cancel_reservation,get the salad cancelled,lambada,cancel,3 -greeting,heyo,original,greet,4 -calendar_update,can you change the date of the doctor's appointment in my calendar from april 1st to april 3rd?,parrot,resched,5 -no,i disagree,parrot,cancel,3 -greeting,hi what's going on,parrot,greet,4 -greeting,yo,original,greet,4 -greeting,do you feel?,parrot,greet,4 -yes,confirm,original,book,1 -goodbye,sayonara,original,bye,2 -greeting,whats up?,parrot,greet,4 -date,current day,parrot,avail,0 -how_busy,how busy is that cheesecake factory right now,lambada,avail,0 -goodbye,as regards,parrot,bye,2 -yes,affirmitive,original,book,1 -greeting,salutations!,original,greet,4 -yes,definitely yes,parrot,book,1 -yes,say yes,lambada,book,1 -date,do you have a date?,parrot,avail,0 -how_busy,how often do people go to chili's around 9pm,parrot,avail,0 -thank_you,many thanks,original,bye,2 -yes,say positive,parrot,book,1 -goodbye,greetings,parrot,bye,2 -yes,yup,original,book,1 -greeting,hello there!,original,greet,4 -yes,it's positive,parrot,book,1 -thank_you,you answered,parrot,bye,2 -goodbye,later thanks for talking,parrot,bye,2 -greeting,what's happening,original,greet,4 -yes,obviously,parrot,book,1 -how_busy,what's the crowd at chili's around 7?,parrot,avail,0 -no,it's false,parrot,cancel,3 -meeting_schedule,what is the meeting time?,lambada,avail,0 -no,no!,original,cancel,3 -no,that's so negative,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -yes,ya,original,book,1 -greeting,you good?,parrot,greet,4 -thank_you,appreciated,original,bye,2 -date,give me the date,original,avail,0 -greeting,whats up?,parrot,greet,4 -yes,my response is correct,parrot,book,1 -greeting,what's happened to you?,parrot,greet,4 -calendar,what is the tuesday calendar?,parrot,avail,0 -greeting,are you doing alright?,original,greet,4 -cancel_reservation,i just want to cancel my starbucks reservation,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -yes,definitely,original,book,1 -goodbye,be careful then,lambada,bye,2 -thank_you,awesome thanks,parrot,bye,2 -no,not right so,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -goodbye,", goodbye",lambada,bye,2 -yes,"yeah, that's right",original,book,1 -yes,great,original,book,1 -goodbye,goodnight,original,bye,2 -date,this is the day,parrot,avail,0 -meeting_schedule,please list my meetings for today,original,avail,0 -goodbye,fairwell?,parrot,bye,2 -thank_you,"that answer was very helpful, thanks",original,bye,2 -no,that's no way,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -meeting_schedule,when is this meeting?,parrot,avail,0 -reminder_update,remind yourself to go shopping,parrot,resched,5 -goodbye,bye!,original,bye,2 -how_busy,is the wait in this italian place long?,parrot,avail,0 -no,that's negative,parrot,cancel,3 -greeting,hey bs,lambada,greet,4 -how_busy,is pizza a regular dinner?,parrot,avail,0 -no,certainly not,original,cancel,3 -goodbye,goodbye goodbye,parrot,bye,2 -how_busy,how busy will ihop be at 7pm,lambada,avail,0 -yes,seems true,parrot,book,1 -schedule_meeting,is there a meeting room open on wednesday night 10pm?,parrot,book,1 -thank_you,i appeciate it,parrot,bye,2 -yes,it's logical,parrot,book,1 -yes,of course,original,book,1 -yes,"yes, that's affirmative",original,book,1 -greeting,how it goes?,parrot,greet,4 -greeting,so how's everything?,parrot,greet,4 -yes,yeap,original,book,1 -greeting,hola,original,greet,4 -goodbye,tootles,original,bye,2 -greeting,hey fellow,parrot,greet,4 -reminder_update,remind me to buy bread,parrot,resched,5 -date,what's my date today?,parrot,avail,0 -goodbye,later gater,original,bye,2 -how_busy,what's the expected wait time for a table in olive garden at 6pm?,parrot,avail,0 -no,nope,original,cancel,3 -yes,absolutely,original,book,1 -goodbye,thank you for the conversation later,parrot,bye,2 -greeting,yo,original,greet,4 -no,i mean no,parrot,cancel,3 -yes,obviously,parrot,book,1 -calendar,please help me find what my calendar is for february,parrot,avail,0 -yes,can we please?,original,book,1 -greeting,hello how you doing,lambada,greet,4 -no,certainly false,parrot,cancel,3 -calendar,display my calendar,lambada,avail,0 -no,i say negative,original,cancel,3 -calendar_update,remove all the events from my calendar on march 12,lambada,resched,5 -greeting,"hello, friend",original,greet,4 -thank_you,for the help i'm thankful,parrot,bye,2 -thank_you,my thanks,parrot,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -yes,right,parrot,book,1 -no,naw,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -goodbye,great talk,lambada,bye,2 -goodbye,i want it now,parrot,bye,2 -yes,ya,original,book,1 -yes,uh huh,original,book,1 -goodbye,farewell,original,bye,2 -yes,certainly,parrot,book,1 -yes,i can tell you,parrot,book,1 -thank_you,thanks!,original,bye,2 -no,no that's not true,parrot,cancel,3 -no,there is no,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -goodbye,i'll go,parrot,bye,2 -goodbye,bye!,original,bye,2 -yes,"yep, that's true",original,book,1 -no,no!,original,cancel,3 -yes,ya,original,book,1 -date,and what's the day?,parrot,avail,0 -greeting,are you doing well?,original,greet,4 -thank_you,thank you!,original,bye,2 -goodbye,see ya,lambada,bye,2 -thank_you,thanks!,original,bye,2 -no,that's not true,original,cancel,3 -yes,great,original,book,1 -no,negative certainly,parrot,cancel,3 -calendar,what's on my calendar for the 28th of march,lambada,avail,0 -calendar_update,please take the final exams off my calendar for may 3,parrot,resched,5 -greeting,"hey, ai",original,greet,4 -yes,it's logical,parrot,book,1 -goodbye,you're done,parrot,bye,2 -greeting,what's up?,parrot,greet,4 -thank_you,i thank you,original,bye,2 -no,absolutely not,original,cancel,3 -no,it doesn't seem so,parrot,cancel,3 -how_busy,how long will i have to wait for a table in a restaurant for,parrot,avail,0 -thank_you,nice,parrot,bye,2 -how_busy,can you tell me how busy the restaurant is at 6 pm,parrot,avail,0 -reminder_update,what about a reminder?,parrot,resched,5 -calendar,tell me my calendar?,parrot,avail,0 -goodbye,bye,original,bye,2 -no,no that's wrong,original,cancel,3 -goodbye,cya later,original,bye,2 -no,"no, it's not",lambada,cancel,3 -meeting_schedule,there are meetings between 2 and 5?,parrot,avail,0 -no,it's so bad,parrot,cancel,3 -yes,correct,original,book,1 -date,when will it be in 5 days?,parrot,avail,0 -greeting,aho,parrot,greet,4 -yes,it's a fact,parrot,book,1 -no,no,lambada,cancel,3 -calendar_update,please remove the appointment from my calendar,parrot,resched,5 -date,can you list the date for tomorrow?,parrot,avail,0 -no,that's not right?,parrot,cancel,3 -goodbye,glad we could talk,parrot,bye,2 -yes,positive,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -no,that’s incorrect,original,cancel,3 -goodbye,my way,parrot,bye,2 -goodbye,so i have to say goodbye,parrot,bye,2 -goodbye,i'm going,parrot,bye,2 -meeting_schedule,what meetings are scheduled today?,lambada,avail,0 -goodbye,tootles?,parrot,bye,2 -thank_you,gracias,original,bye,2 -greeting,ahoy,lambada,greet,4 -thank_you,many thanks,original,bye,2 -no,naw,original,cancel,3 -how_busy,can you tell me about the typical table at olive garden at 8 pm?,lambada,avail,0 -yes,10-Apr,original,book,1 -goodbye,it's over,parrot,bye,2 -reminder_update,keep me in mind,parrot,resched,5 -greeting,aloha,original,greet,4 -greeting,hi what's up?,parrot,greet,4 -goodbye,goodbyes soon,parrot,bye,2 -how_busy,what's the average wait time for grilled cheese from 6 to 830,parrot,avail,0 -greeting,what's happened?,parrot,greet,4 -thank_you,thanks for answering,parrot,bye,2 -yes,that's a fact,lambada,book,1 -greeting,ai how are you doing today?,parrot,greet,4 -how_busy,how long will it be at the olive garden?,parrot,avail,0 -meeting_schedule,what's my meeting today?,parrot,avail,0 -thank_you,the best,parrot,bye,2 -yes,indeed,original,book,1 -yes,yeap,original,book,1 -schedule_meeting,how do i submit a new request for a meeting?,parrot,book,1 -thank_you,thank you,original,bye,2 -yes,of course,original,book,1 -no,the statement is completely false,parrot,cancel,3 -goodbye,bye bye!,original,bye,2 -greeting,how's ai feeling?,parrot,greet,4 -thank_you,thanks!,original,bye,2 -yes,great,original,book,1 -no,it'd be awful,parrot,cancel,3 -schedule_meeting,can you have a meeting room for noon today?,parrot,book,1 -yes,positive,original,book,1 -greeting,whats new?,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -yes,okay,original,book,1 -date,tell me what the current date is,parrot,avail,0 -greeting,how's everything,original,greet,4 -date,what date is tomorrow,parrot,avail,0 -thank_you,gracias,original,bye,2 -greeting,hiya!,original,greet,4 -how_busy,how busy is chili's at 7pm,lambada,avail,0 -yes,i'll say yes,parrot,book,1 -yes,i'm going to tell you tes,parrot,book,1 -greeting,what's happened to you?,parrot,greet,4 -greeting,hiya!,original,greet,4 -no,you're not right,parrot,cancel,3 -calendar_update,please put annie's baby shower on march 30 in my calendar,original,resched,5 -yes,right,parrot,book,1 -yes,yeah yeah,lambada,book,1 -greeting,whats new,lambada,greet,4 -date,when will it be in eight days?,lambada,avail,0 -yes,good,parrot,book,1 -how_busy,how busy is the chimichurri at 8:00 pm,lambada,avail,0 -how_busy,is macy's busy?,parrot,avail,0 -goodbye,talk later,original,bye,2 -goodbye,tootles?,parrot,bye,2 -goodbye,regards,original,bye,2 -greeting,salutations,parrot,greet,4 -goodbye,the talk was nice,lambada,bye,2 -meeting_schedule,time of meeting?,parrot,avail,0 -no,you're not right,parrot,cancel,3 -greeting,hello good day,parrot,greet,4 -yes,i want it,parrot,book,1 -yes,ya,original,book,1 -how_busy,how long is the line in the restaurant before dinner,parrot,avail,0 -yes,a real statement,parrot,book,1 -greeting,aloha,original,greet,4 -goodbye,bye,original,bye,2 -goodbye,later gater,original,bye,2 -calendar,do you have appointments for the 2nd of march?,parrot,avail,0 -goodbye,sayonara ,parrot,bye,2 -meeting_schedule,are there meetings planned between 3 and 5 today?,parrot,avail,0 -greeting,well hi there,original,greet,4 -greeting,salutation,parrot,greet,4 -yes,and you're right,parrot,book,1 -greeting,aho,parrot,greet,4 -goodbye,regards,original,bye,2 -no,naw,parrot,cancel,3 -no,there is no,parrot,cancel,3 -goodbye,later,original,bye,2 -yes,certainly,parrot,book,1 -no,i prefer not to do that,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -yes,of course,original,book,1 -greeting,are you okay??,parrot,greet,4 -thank_you,thanks again,original,bye,2 -greeting,how does life treat you?,parrot,greet,4 -thank_you,thank you for the money,parrot,bye,2 -reminder_update,make me a reminder,lambada,resched,5 -calendar,recommend some events scheduled for april 15th?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -schedule_meeting,can you schedule a meeting with steve for 5?,original,book,1 -greeting,yo how yo feelin,lambada,greet,4 -yes,uh-huh,original,book,1 -greeting,bonjour,original,greet,4 -date,what day is it?,original,avail,0 -goodbye,talk later,original,bye,2 -schedule_meeting,please set a meeting at noon,parrot,book,1 -no,say negative,parrot,cancel,3 -how_busy,is there a sitting time at this restaurant?,lambada,avail,0 -calendar,you know when i added the meeting on my calendar?,parrot,avail,0 -how_busy,can i expect to see a lot of yo shiguchi at 5:00?,lambada,avail,0 -no,that's bad,parrot,cancel,3 -thank_you,gracias,original,bye,2 -greeting,how are you?,parrot,greet,4 -calendar_update,remove the date of the dinner from my calendar,parrot,resched,5 -how_busy,for how busy are the pizza restaurants?,parrot,avail,0 -yes,a true statement,parrot,book,1 -yes,so it works,parrot,book,1 -how_busy,how busy is mcdonalds?,parrot,avail,0 -yes,definitely,original,book,1 -goodbye,"nice talk, goodbye",lambada,bye,2 -yes,it's positive,parrot,book,1 -yes,correct,original,book,1 -yes,that's true,original,book,1 -goodbye,goodbye now,parrot,bye,2 -date,current date,original,avail,0 -yes,positive,parrot,book,1 -yes,yes is my answer,original,book,1 -greeting,you good?,parrot,greet,4 -thank_you,thanks,original,bye,2 -goodbye,fairwell,original,bye,2 -yes,please let's do it,original,book,1 -date,what is tomorrow?,parrot,avail,0 -yes,yep,original,book,1 -meeting_schedule,is there a meeting with the boss today?,parrot,avail,0 -yes,ya,original,book,1 -no,this is false,parrot,cancel,3 -reminder_update,please make me remember to pay my utility bill,parrot,resched,5 -yes,indeed,original,book,1 -how_busy,is it possible to know how long it takes to wait for red lobster?,parrot,avail,0 -greeting,hiya,original,greet,4 -no,not right,parrot,cancel,3 -yes,yep,original,book,1 -thank_you,appreciate it,original,bye,2 -goodbye,greetings,parrot,bye,2 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -no,nothing,parrot,cancel,3 -calendar,read my calendar,parrot,avail,0 -yes,i vote yes,original,book,1 -yes,yeah yeah,lambada,book,1 -no,erroneous,parrot,cancel,3 -greeting,hey there!,original,greet,4 -cancel_reservation,i no longer need my reservation with carl at umami,original,cancel,3 -no,naw,parrot,cancel,3 -greeting,what's happening,original,greet,4 -greeting,hola!,original,greet,4 -yes,"agreed, that's valid",original,book,1 -greeting,whats new?,parrot,greet,4 -no,i disagree,parrot,cancel,3 -no,hell nah,original,cancel,3 -date,in three days,parrot,avail,0 -how_busy,what's the average wait time for a meal at gusto?,parrot,avail,0 -yes,is true,parrot,book,1 -greeting,how's idy?,parrot,greet,4 -reminder_update,please remind me of something,original,resched,5 -greeting,"hey, what's new",original,greet,4 -thank_you,good job thanks,parrot,bye,2 -goodbye,i need to go,lambada,bye,2 -goodbye,as regards,parrot,bye,2 -date,what is it today?,lambada,avail,0 -no,this is not true,parrot,cancel,3 -greeting,how is everything?,parrot,greet,4 -goodbye,good call,parrot,bye,2 -no,no that's wrong,original,cancel,3 -greeting,how's my life?,parrot,greet,4 -greeting,how's idy doing,lambada,greet,4 -no,absolutely false,parrot,cancel,3 -yes,ok,original,book,1 -thank_you,you did it,parrot,bye,2 -yes,okay,original,book,1 -greeting,all right now?,parrot,greet,4 -no,that is not the case,original,cancel,3 -thank_you,nice,parrot,bye,2 -reminder_update,let me not forget about that steak,parrot,resched,5 -cancel_reservation,cancell my dinner reservation,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -meeting_schedule,when is my meeting with kevin?,parrot,avail,0 -yes,indeed,original,book,1 -calendar,what's on my calendar for march 7th?,parrot,avail,0 -greeting,hola!,original,greet,4 -date,tell me the day?,parrot,avail,0 -greeting,hey there,original,greet,4 -goodbye,my way,parrot,bye,2 -thank_you,you helped me,parrot,bye,2 -goodbye,i'm gone,parrot,bye,2 -goodbye,bye my friend,parrot,bye,2 -how_busy,how busy is imanas?,parrot,avail,0 -no,that's erroneous,parrot,cancel,3 -greeting,what's happening?,parrot,greet,4 -greeting,hi,original,greet,4 -no,nothing,parrot,cancel,3 -yes,it appears true,parrot,book,1 -yes,yup,original,book,1 -no,no that is wrong,original,cancel,3 -no,that's incorrect!,original,cancel,3 -thank_you,really great!,original,bye,2 -date,please date,parrot,avail,0 -yes,positive,original,book,1 -greeting,hello how are things?,parrot,greet,4 -yes,it's true,original,book,1 -calendar_update,remove dinner with suzie from my calendar on march 1st,original,resched,5 -cancel_reservation,what do i need to do to cancel a reservation?,parrot,cancel,3 -goodbye,regards,original,bye,2 -no,that's no,parrot,cancel,3 -how_busy,how long will it take to get a table at al jolo? ,parrot,avail,0 -yes,okay,original,book,1 -greeting,hiya,original,greet,4 -greeting,how are things,original,greet,4 -no,it's negative,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -greeting,how was my day?,parrot,greet,4 -thank_you,i owe you,parrot,bye,2 -greeting,heller,original,greet,4 -greeting,yo,original,greet,4 -goodbye,no problem goodbye,parrot,bye,2 -yes,"yes, that is a fact",original,book,1 -yes,affirmative,original,book,1 -yes,sure thing,original,book,1 -meeting_schedule,give a summary of today's meetings,parrot,avail,0 -yes,confirmed,original,book,1 -goodbye,buhbye now,lambada,bye,2 -greeting,hi what's going on?,parrot,greet,4 -yes,accept,parrot,book,1 -goodbye,goodbye goodbye,parrot,bye,2 -meeting_schedule,did i schedule any meetings today?,parrot,avail,0 -no,no!,original,cancel,3 -calendar,how do i plan my day for march 5th?,parrot,avail,0 -thank_you,much obliged,original,bye,2 -goodbye,goodbye,original,bye,2 -reminder_update,remind me something,parrot,resched,5 -no,naw,original,cancel,3 -no,negative sure,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -thank_you,thanks again,original,bye,2 -calendar,check out my calendar,parrot,avail,0 -yes,yeah,original,book,1 -no,nothing,parrot,cancel,3 -meeting_schedule,when's the meeting?,parrot,avail,0 -greeting,hiya!,original,greet,4 -yes,yup,original,book,1 -schedule_meeting,please reserve me a meeting room on thursday at 12 pm,parrot,book,1 -greeting,aloha,original,greet,4 -date,what day it today?,original,avail,0 -thank_you,thank you for that!,lambada,bye,2 -goodbye,adios!,original,bye,2 -goodbye,peace out,original,bye,2 -thank_you,your answer impressed me,parrot,bye,2 -yes,yep,original,book,1 -thank_you,gracias,original,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -no,not that one,original,cancel,3 -yes,that also makes sense,parrot,book,1 -no,it's a negative,parrot,cancel,3 -goodbye,later goodbye,parrot,bye,2 -no,nay,original,cancel,3 -no,that's not right?,parrot,cancel,3 -goodbye,i've got to say goodbye,lambada,bye,2 -no,negatory?,parrot,cancel,3 -how_busy,how busy is orchids at 5,lambada,avail,0 -greeting,wassup,original,greet,4 -yes,and you're right,parrot,book,1 -date,date tomorrow?,parrot,avail,0 -greeting,how's it hanging,original,greet,4 -goodbye,"that's all, bye",original,bye,2 -yes,okay,original,book,1 -how_busy,how busy is the olive garden for dinner,lambada,avail,0 -goodbye,i'll be gone,parrot,bye,2 -no,no!,original,cancel,3 -greeting,whats up?,parrot,greet,4 -no,that's erroneous,parrot,cancel,3 -how_busy,is it immaculate around 6 o'clock?,parrot,avail,0 -no,thanks no,parrot,cancel,3 -goodbye,i'm out,parrot,bye,2 -date,what date is that?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -thank_you,you did it,parrot,bye,2 -thank_you,i appreciate the assistance,original,bye,2 -greeting,how is life?,parrot,greet,4 -goodbye,take care then,parrot,bye,2 -yes,that's a clear yes,parrot,book,1 -no,no!,original,cancel,3 -goodbye,peace,original,bye,2 -greeting,how's my treatment?,parrot,greet,4 -goodbye,say goodbye,parrot,bye,2 -thank_you,your help is appreciated,original,bye,2 -greeting,"hello, ai",original,greet,4 -thank_you,so grateful,parrot,bye,2 -thank_you,thank you for the thanks,parrot,bye,2 -yes,"yup, that's true",original,book,1 -goodbye,fairwell,original,bye,2 -goodbye,goodbyes soon,parrot,bye,2 -yes,TRUE,lambada,book,1 -cancel_reservation,must cancel reservation for two nights at the red rooster,parrot,cancel,3 -calendar,did you set a day on my calendar to vote in the next election?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -yes,yes that is right,original,book,1 -yes,yup,original,book,1 -greeting,how are things going,original,greet,4 -no,naw,original,cancel,3 -meeting_schedule,discuss my meetings for the day,lambada,avail,0 -yes,uh-huh,original,book,1 -goodbye,farewell!,original,bye,2 -date,the date is tomorrow,parrot,avail,0 -greeting,so how's everything going?,parrot,greet,4 -how_busy,when will i have to wait for a table in san francisco?,parrot,avail,0 -greeting,heyo,original,greet,4 -yes,definitely,original,book,1 -no,so that's no,parrot,cancel,3 -reminder_update,make me a reminder,lambada,resched,5 -thank_you,appreciated,original,bye,2 -goodbye,farewell!,original,bye,2 -goodbye,have to go,parrot,bye,2 -no,yes that's false,lambada,cancel,3 -greeting,hi how are things going?,parrot,greet,4 -no,that's a negative,original,cancel,3 -greeting,wake up ai,parrot,greet,4 -meeting_schedule,when will i meet ann?,parrot,avail,0 -date,today?,parrot,avail,0 -yes,confirmed,original,book,1 -cancel_reservation,my reservation for dinner in red robin needs to be cancelled,parrot,cancel,3 -yes,definitely,original,book,1 -yes,truthful is my answer,lambada,book,1 -how_busy,waiting at macaroni grill?,parrot,avail,0 -no,but no way?,parrot,cancel,3 -yes,yeap,original,book,1 -no,that's a lie,parrot,cancel,3 -no,this information is not true,parrot,cancel,3 -greeting,heyo,original,greet,4 -goodbye,maybe next time,parrot,bye,2 -how_busy,how long will it be before the restaurant is booked,parrot,avail,0 -no,negation,parrot,cancel,3 -no,nada,original,cancel,3 -calendar_update,you can delete sam's birthday from my calendar on 14 march,parrot,resched,5 -meeting_schedule,give me the schedule of my meetings today?,parrot,avail,0 -calendar,tuesday on my calendar?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -yes,accept,parrot,book,1 -no,"please, no",original,cancel,3 -yes,confirm,original,book,1 -goodbye,i've got to go,lambada,bye,2 -meeting_schedule,what's my schedule today?,parrot,avail,0 -no,not right,parrot,cancel,3 -greeting,how's the ai?,parrot,greet,4 -no,no that's not it,parrot,cancel,3 -yes,positive,original,book,1 -thank_you,thanks a million,original,bye,2 -yes,yeap,original,book,1 -greeting,how's everything with you?,parrot,greet,4 -greeting,how's this going?,parrot,greet,4 -no,that's not right?,parrot,cancel,3 -goodbye,bye!,original,bye,2 -no,that's a lie,parrot,cancel,3 -no,please no,parrot,cancel,3 -no,"no, that isn't right",lambada,cancel,3 -yes,yay,lambada,book,1 -thank_you,i appeciate it,parrot,bye,2 -yes,affirmative,original,book,1 -goodbye,farewell,original,bye,2 -greeting,whats up?,parrot,greet,4 -no,it's a wrong answer,parrot,cancel,3 -thank_you,thanks!,original,bye,2 -goodbye,farewell!,original,bye,2 -no,"please, no",original,cancel,3 -greeting,heyo,original,greet,4 -thank_you,again thanks,parrot,bye,2 -how_busy,how busy is the restaurant,lambada,avail,0 -goodbye,"goodbye, ai assistant",original,bye,2 -how_busy,how many people are going to the chili's around 7,lambada,avail,0 -yes,yup,original,book,1 -goodbye,goodbyes soon,parrot,bye,2 -goodbye,for now,parrot,bye,2 -no,the negator,parrot,cancel,3 -reminder_update,set up a reminder so i don't forget the baby shower this weekend,original,resched,5 -no,invalid,original,cancel,3 -goodbye,great talk,lambada,bye,2 -no,that's actually false,parrot,cancel,3 -yes,accepted,original,book,1 -goodbye,take it easy!,original,bye,2 -greeting,how are you feeling today?,parrot,greet,4 -no,erroneous,parrot,cancel,3 -greeting,hi,original,greet,4 -yes,affirmitive,original,book,1 -yes,certainly,parrot,book,1 -reminder_update,remember to remember later,parrot,resched,5 -reminder_update,let me know,parrot,resched,5 -how_busy,how busy will angie's be around 5 pm,lambada,avail,0 -date,what's my day?,parrot,avail,0 -no,thats a negative,original,cancel,3 -cancel_reservation,i have to cancel my reservation for nudist in houston,parrot,cancel,3 -how_busy,is the pizza place crowded at 5:30?,lambada,avail,0 -no,don't like that no,parrot,cancel,3 -no,invalid,original,cancel,3 -yes,confirm,original,book,1 -no,nada,original,cancel,3 -how_busy,what's the seating time at the restaurant?,parrot,avail,0 -date,what year is this?,parrot,avail,0 -goodbye,peace,original,bye,2 -goodbye,greetings,parrot,bye,2 -goodbye,tootles,original,bye,2 -goodbye,fairwell,original,bye,2 -date,"what will be the year, month, and day in 4 days?",lambada,avail,0 -goodbye,it's nice to talk again,parrot,bye,2 -how_busy,how long will it take to get a table in this restaurant,parrot,avail,0 -goodbye,tootles,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -greeting,heyo,original,greet,4 -yes,positive,original,book,1 -goodbye,until next time,original,bye,2 -yes,positive,parrot,book,1 -reminder_update,remember to remember later,parrot,resched,5 -how_busy,tell me how busy the restaurant will be between 5 and 7pm?,original,avail,0 -goodbye,it was a good evening i'm ready to go,parrot,bye,2 -goodbye,good to talk to you,lambada,bye,2 -cancel_reservation,can i cancel a reservation?,parrot,cancel,3 -thank_you,i appreciate that answer,original,bye,2 -thank_you,thanks,original,bye,2 -goodbye,nice talk,lambada,bye,2 -schedule_meeting,how do you schedule a meeting for me?,parrot,book,1 -date,please tell me the date today,lambada,avail,0 -greeting,"hello, ai",original,greet,4 -no,"nope, no this is false",lambada,cancel,3 -date,current date,original,avail,0 -greeting,hello,original,greet,4 -greeting,hey fellows,parrot,greet,4 -date,what day?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -goodbye,peace out!,original,bye,2 -yes,yep,original,book,1 -greeting,hola,original,greet,4 -greeting,whats up?,parrot,greet,4 -goodbye,goodbye then,parrot,bye,2 -how_busy,how long will i have to wait for a table in applebee's,parrot,avail,0 -yes,positive,original,book,1 -how_busy,is the restaurant crowded at lunch?,parrot,avail,0 -no,no it's not right,parrot,cancel,3 -no,FALSE,original,cancel,3 -how_busy,what's the average time i should expect to be seated at this restaurant,lambada,avail,0 -yes,this is true,lambada,book,1 -goodbye,take a break,parrot,bye,2 -cancel_reservation,get rid of my reservation for 2 pm at ruth's steakhouse,parrot,cancel,3 -yes,i'll say yes,parrot,book,1 -greeting,salutations!,original,greet,4 -greeting,heyo,original,greet,4 -thank_you,thank you,original,bye,2 -goodbye,bye!,original,bye,2 -date,tell me the date?,original,avail,0 -reminder_update,keep checking the steak?,parrot,resched,5 -yes,that is a yes,original,book,1 -calendar,check my calendar,parrot,avail,0 -date,tell me the date?,original,avail,0 -greeting,bonjour,original,greet,4 -greeting,"hello, good day",lambada,greet,4 -goodbye,see ya,lambada,bye,2 -calendar,do i have calendars for may 12th?,parrot,avail,0 -goodbye,signing off,original,bye,2 -greeting,bonjour,original,greet,4 -goodbye,later then,lambada,bye,2 -calendar_update,write an appointment for tomorrow in my calendar,parrot,resched,5 -goodbye,ai goodbye,original,bye,2 -how_busy,how busy is the cheese cake factory around 6,lambada,avail,0 -greeting,how's everything,original,greet,4 -how_busy,how busy is chili's at 7:30,lambada,avail,0 -goodbye,bye bye,lambada,bye,2 -thank_you,i'm so grateful,parrot,bye,2 -cancel_reservation,cancel tonight's dinner reservation,original,cancel,3 -no,negating,parrot,cancel,3 -yes,definitely,original,book,1 -goodbye,bye!,original,bye,2 -goodbye,see ya,lambada,bye,2 -yes,my answer is yes,parrot,book,1 -how_busy,at four how much business does georgio has?,parrot,avail,0 -greeting,ahoy there,lambada,greet,4 -yes,accepted,original,book,1 -yes,yup,original,book,1 -no,negatory,original,cancel,3 -yes,i agree,original,book,1 -thank_you,please thank you,lambada,bye,2 -thank_you,oh sweet thanks,original,bye,2 -greeting,what's up,original,greet,4 -how_busy,is the restaurant packed at 7?,parrot,avail,0 -no,no?,parrot,cancel,3 -how_busy,can you check to see how busy that restaurant is for dinner?,original,avail,0 -yes,"true, most definitely",original,book,1 -how_busy,how busy will iihop be around 5pm?,parrot,avail,0 -calendar_update,please add the date of february 5th to my calendar?,parrot,resched,5 -yes,i'll say yes,parrot,book,1 -greeting,are you good?,original,greet,4 -yes,facts,original,book,1 -goodbye,lovely conversation,parrot,bye,2 -goodbye,thanks bye bye!,original,bye,2 -no,nay,original,cancel,3 -date,what's today?,parrot,avail,0 -greeting,aloha,original,greet,4 -calendar,check the calendar for events,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -meeting_schedule,does the schedule today include meetings?,parrot,avail,0 -calendar_update,clear my calendar for march 22,parrot,resched,5 -schedule_meeting,i'm trying to make a meeting,parrot,book,1 -greeting,hola!,original,greet,4 -thank_you,i'm very thankful,parrot,bye,2 -greeting,hola!,original,greet,4 -how_busy,if there's a lot of wait time at wendy's around 8am?,parrot,avail,0 -thank_you,the best,parrot,bye,2 -goodbye,goodbye ai,parrot,bye,2 -goodbye,please talk to me later,lambada,bye,2 -no,say negative,parrot,cancel,3 -no,not good,parrot,cancel,3 -how_busy,how busy is tequila bar at 1pm,lambada,avail,0 -greeting,salutations!,original,greet,4 -goodbye,farewell,original,bye,2 -no,false sure,parrot,cancel,3 -no,nay,original,cancel,3 -goodbye,see you again soon,original,bye,2 -thank_you,i appreciate the assistance,original,bye,2 -date,the calendar says tomorrow is the day,parrot,avail,0 -yes,you got it,parrot,book,1 -reminder_update,have i forgotten?,parrot,resched,5 -yes,yes that is true,lambada,book,1 -calendar_update,clear my calendar for february 29th,original,resched,5 -date,what day is that?,parrot,avail,0 -how_busy,how busy will potato salad be around 5?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -greeting,nice day,lambada,greet,4 -greeting,"hi, how are you",original,greet,4 -no,no?,parrot,cancel,3 -thank_you,you're the best!,original,bye,2 -reminder_update,set up a reminder to pay my car insurance on monday,lambada,resched,5 -no,no good,original,cancel,3 -no,erroneous,parrot,cancel,3 -greeting,wassup,original,greet,4 -thank_you,you have done well,lambada,bye,2 -how_busy,does olive garden get crowded at dinner?,parrot,avail,0 -yes,not false,parrot,book,1 -thank_you,thank a bunch,original,bye,2 -thank_you,nice,parrot,bye,2 -yes,i believe that's true,original,book,1 -goodbye,bye bye!,original,bye,2 -goodbye,bye my friend,parrot,bye,2 -no,certainly not true,parrot,cancel,3 -yes,right,parrot,book,1 -date,date please,original,avail,0 -goodbye,on the highway,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -greeting,hi there alexa,original,greet,4 -thank_you,you have done well,lambada,bye,2 -thank_you,many thanks,original,bye,2 -thank_you,i sincerely thank you,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -no,that's untrue,parrot,cancel,3 -thank_you,i'm happy you've helped me,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -greeting,heller,original,greet,4 -thank_you,appreciate the support,parrot,bye,2 -goodbye,sayonara ,parrot,bye,2 -goodbye,i have to leave,parrot,bye,2 -yes,sure thing,original,book,1 -no,would be no?,parrot,cancel,3 -no,that's so false,parrot,cancel,3 -yes,certainly true,parrot,book,1 -how_busy,how busy is kaya at 6 pm,lambada,avail,0 -calendar_update,delete all calendar entries on 4 march,parrot,resched,5 -yes,so it's true,parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,tell me the best time to get a burger without a line?,parrot,avail,0 -greeting,good morning,parrot,greet,4 -thank_you,you helped me out,parrot,bye,2 -greeting,hola!,original,greet,4 -how_busy,how long will i wait in the cheese cake factory?,parrot,avail,0 -thank_you,why thank you?,original,bye,2 -yes,TRUE,original,book,1 -yes,not false,parrot,book,1 -goodbye,signing off,original,bye,2 -reminder_update,i need to take out the trash in an hour,lambada,resched,5 -greeting,hey there!,original,greet,4 -cancel_reservation,get a salad off,parrot,cancel,3 -greeting,hola,original,greet,4 -date,tell me what the date is in 5 days,parrot,avail,0 -no,but that's not true,parrot,cancel,3 -yes,you are yes,lambada,book,1 -date,what'll it be tomorrow?,parrot,avail,0 -meeting_schedule,is there a meeting between now and saturday?,parrot,avail,0 -yes,definitely,original,book,1 -greeting,whats new?,parrot,greet,4 -how_busy,how busy will the olive garden be around five,parrot,avail,0 -yes,the statement is true,original,book,1 -goodbye,buhbye now,lambada,bye,2 -no,that's not right?,parrot,cancel,3 -goodbye,have a good day?,original,bye,2 -goodbye,see ya,original,bye,2 -no,indeed it's false,parrot,cancel,3 -no,i prefer not,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -calendar_update,please add to my calendar for the staff meeting scheduled for march 1 2019 at 10 am please,parrot,resched,5 -date,what day?,parrot,avail,0 -thank_you,thanks again!,original,bye,2 -date,calender says tomorrow is,original,avail,0 -yes,yay,lambada,book,1 -greeting,hi how're things going,lambada,greet,4 -greeting,salutations!,original,greet,4 -greeting,hey how have you been,parrot,greet,4 -date,is tomorrow's date?,parrot,avail,0 -yes,yes please,original,book,1 -calendar,what should i do today?,parrot,avail,0 -no,i do not agree,lambada,cancel,3 -cancel_reservation,please cancel my reservation for joe before the end of the month,parrot,cancel,3 -thank_you,okay thanks,original,bye,2 -goodbye,goodbye,original,bye,2 -schedule_meeting,it is necessary that the meeting is scheduled,parrot,book,1 -date,what is tomorrow's date?,original,avail,0 -yes,i'll say yes,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,yo,original,greet,4 -goodbye,sayonara,original,bye,2 -no,no!,original,cancel,3 -date,what month today?,parrot,avail,0 -thank_you,thanks for trying,original,bye,2 -no,that's a lie,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -date,what is today's date?,original,avail,0 -goodbye,i'm gone,parrot,bye,2 -goodbye,see you around,original,bye,2 -greeting,bonjour,original,greet,4 -thank_you,you've been amazing,lambada,bye,2 -how_busy,is chili busy at 730?,parrot,avail,0 -schedule_meeting,can you make a meeting with sarah smith?,parrot,book,1 -greeting,what's going on,original,greet,4 -reminder_update,please remember something,parrot,resched,5 -date,where's the date tomorrow?,parrot,avail,0 -no,say negative,parrot,cancel,3 -yes,huh huh,parrot,book,1 -calendar,what's happening on march 15th,lambada,avail,0 -greeting,how's my current situation?,parrot,greet,4 -yes,yes sir,original,book,1 -cancel_reservation,please cancel my booking,parrot,cancel,3 -no,that's untrue,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -yes,you got it,parrot,book,1 -how_busy,is sage busy around noon?,original,avail,0 -reminder_update,what about a reminder?,parrot,resched,5 -yes,i know this is true,lambada,book,1 -goodbye,tata for now,original,bye,2 -no,i don't think that's right,lambada,cancel,3 -yes,yup,original,book,1 -greeting,nice day,lambada,greet,4 -goodbye,adios,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -greeting,hola,original,greet,4 -no,naw,original,cancel,3 -greeting,what i feel?,parrot,greet,4 -no,not right,parrot,cancel,3 -goodbye,i'm out,parrot,bye,2 -yes,all right,parrot,book,1 -greeting,how ya been,original,greet,4 -goodbye,very nice conversation,parrot,bye,2 -goodbye,be careful then,lambada,bye,2 -how_busy,how long would it be to get a table at chili's steak house,lambada,avail,0 -no,"no, it's not",lambada,cancel,3 -yes,ok,original,book,1 -goodbye,good-bye,parrot,bye,2 -date,what is today?,original,avail,0 -yes,10-Apr,original,book,1 -how_busy,how long is a table at the restaurant,lambada,avail,0 -thank_you,thanks!,original,bye,2 -greeting,so how's it going?,parrot,greet,4 -no,no that's not accurate,parrot,cancel,3 -no,no way,original,cancel,3 -no,negatory,original,cancel,3 -thank_you,thanks again!,original,bye,2 -greeting,tell me how you're doing?,parrot,greet,4 -greeting,"hey, what's up",original,greet,4 -cancel_reservation,how do i cancel a booking?,parrot,cancel,3 -meeting_schedule,how many meetings am i supposed to have today?,parrot,avail,0 -greeting,hello,original,greet,4 -yes,yup,original,book,1 -no,absolutely not,original,cancel,3 -date,what's the date after today?,parrot,avail,0 -no,that's not right?,parrot,cancel,3 -no,would be a lie,parrot,cancel,3 -no,negating,parrot,cancel,3 -goodbye,adios ai,original,bye,2 -goodbye,"talk to you soon, bye!",original,bye,2 -no,not right?,parrot,cancel,3 -yes,yup,original,book,1 -meeting_schedule,what's my schedule today?,parrot,avail,0 -calendar,check my calendar,parrot,avail,0 -goodbye,farewell!,original,bye,2 -yes,obviously,parrot,book,1 -how_busy,is rancho busy? around 9am,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -goodbye,good-bye,parrot,bye,2 -no,not at all,original,cancel,3 -no,that is not true,original,cancel,3 -goodbye,great talk,lambada,bye,2 -goodbye,sayonara,original,bye,2 -yes,it's logical,parrot,book,1 -thank_you,i appreciate you for doing this,parrot,bye,2 -yes,you are correct,original,book,1 -yes,great,original,book,1 -greeting,want to know what's going on?,parrot,greet,4 -calendar_update,please add the date of feb 5 to my calendar,parrot,resched,5 -goodbye,peace out,original,bye,2 -goodbye,good night,original,bye,2 -schedule_meeting,please help me schedule a meeting,parrot,book,1 -cancel_reservation,please cancel my pmc reservation at parc,lambada,cancel,3 -greeting,how is the car doing,lambada,greet,4 -no,negatory,original,cancel,3 -thank_you,that's what i want,parrot,bye,2 -date,today's date is what exactly,original,avail,0 -how_busy,do you think the outback steakhouse will be busy between 6 and 9?,parrot,avail,0 -how_busy,how long before dinner,parrot,avail,0 -no,it's completely false,parrot,cancel,3 -goodbye,the talk was nice,lambada,bye,2 -calendar,can you check on something on my calendar for my repair appointment?,lambada,avail,0 -date,what date will it be 8 days from now?,original,avail,0 -how_busy,how long will the wait at chili's be,lambada,avail,0 -yes,affirmitive,original,book,1 -meeting_schedule,when's the meeting?,parrot,avail,0 -greeting,aloha,original,greet,4 -greeting,ahoy,lambada,greet,4 -greeting,hello siri,original,greet,4 -yes,very true,original,book,1 -reminder_update,i want to remind you,parrot,resched,5 -goodbye,adios!,original,bye,2 -greeting,so how is everything,original,greet,4 -goodbye,bye-bye,original,bye,2 -how_busy,how busy is michel at 5 pm?,parrot,avail,0 -goodbye,peace out!,original,bye,2 -greeting,what's happening,original,greet,4 -how_busy,could you tell me how busy the cheesecake factory will be around 7pm?,parrot,avail,0 -no,please no,parrot,cancel,3 -date,date please,original,avail,0 -reminder_update,please do not forget,parrot,resched,5 -greeting,salutations!,original,greet,4 -yes,uh-huh,original,book,1 -greeting,how things go?,parrot,greet,4 -cancel_reservation,cancell my reservation for dinner,parrot,cancel,3 -yes,definitely yes,parrot,book,1 -thank_you,i am grateful for the assistance,lambada,bye,2 -goodbye,as regards,parrot,bye,2 -no,it's false,parrot,cancel,3 -meeting_schedule,meeting today,parrot,avail,0 -greeting,what's new?,parrot,greet,4 -greeting,ahoy,lambada,greet,4 -date,in 8 days?,parrot,avail,0 -no,that's inaccurate,original,cancel,3 -yes,oh yes,original,book,1 -calendar,what's tuesday's calendar?,parrot,avail,0 -how_busy,tell me how busy the chili is at 6pm?,parrot,avail,0 -goodbye,i'm going,parrot,bye,2 -greeting,how's idy?,parrot,greet,4 -no,naw,parrot,cancel,3 -thank_you,i'm grateful,original,bye,2 -date,what's the date for the month and week,parrot,avail,0 -yes,okay,original,book,1 -date,when will it be?,parrot,avail,0 -no,negative,original,cancel,3 -greeting,how've you been?,parrot,greet,4 -goodbye,fairwell?,parrot,bye,2 -cancel_reservation,cancel my reservation for me,original,cancel,3 -yes,absolutely correct,original,book,1 -no,negatory?,parrot,cancel,3 -thank_you,you're a good help,parrot,bye,2 -reminder_update,make me remember,parrot,resched,5 -thank_you,very grateful,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -how_busy,tell me how busy the red robin is at 730?,parrot,avail,0 -yes,that appears true,original,book,1 -no,naw,parrot,cancel,3 -how_busy,can you tell me how busy olive garden is at 5 pm?,lambada,avail,0 -cancel_reservation,please cancel the reservation at the pat's,parrot,cancel,3 -how_busy,can you tell me how busy this restaurant is around dinner time?,lambada,avail,0 -greeting,hello,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -how_busy,when will i have to wait for a table at san francisco',parrot,avail,0 -greeting,welcome,parrot,greet,4 -goodbye,fairwell?,parrot,bye,2 -no,most definitely false,parrot,cancel,3 -thank_you,you're special thanks,parrot,bye,2 -greeting,"hi, ai",original,greet,4 -yes,indeed,parrot,book,1 -date,what is the date tomorrow?,original,avail,0 -meeting_schedule,list the meetings on my calendar?,parrot,avail,0 -greeting,hey how's it going,original,greet,4 -greeting,how you're treated,parrot,greet,4 -no,no,lambada,cancel,3 -yes,yeap,original,book,1 -calendar_update,delete the scheduled event for tuesday,parrot,resched,5 -reminder_update,make a reminder to pay my cable bill today,original,resched,5 -goodbye,adios,original,bye,2 -greeting,wassup,original,greet,4 -calendar,please check my calendar for the physical?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -cancel_reservation,cancel my reservation for steakhouse,lambada,cancel,3 -goodbye,bye!,original,bye,2 -how_busy,if i go to the olive garden at 4pm how busy it will be,parrot,avail,0 -goodbye,go easy,parrot,bye,2 -no,it's not true,parrot,cancel,3 -no,ill pass,original,cancel,3 -yes,accept,parrot,book,1 -date,you know the date?,parrot,avail,0 -how_busy,how busy do you expect olive garden to be at 6,original,avail,0 -yes,TRUE,original,book,1 -yes,uh huh,original,book,1 -no,that's not right,original,cancel,3 -greeting,hello,original,greet,4 -yes,a fact,parrot,book,1 -meeting_schedule,time for today's meeting?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -no,that's negative,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -how_busy,what's the wait time for tomato salad?,parrot,avail,0 -yes,say yes,lambada,book,1 -how_busy,how long will i have to wait if i want to eat at the cheese cake factory,lambada,avail,0 -yes,affirmative,original,book,1 -goodbye,the conversation was nice,parrot,bye,2 -yes,yes,original,book,1 -goodbye,i'll go,parrot,bye,2 -reminder_update,make a reminder to wash the dishes,lambada,resched,5 -goodbye,good night,original,bye,2 -no,not really,original,cancel,3 -greeting,how's my doing?,parrot,greet,4 -reminder_update,i'd like to get a reminder,parrot,resched,5 -goodbye,i'll be there for you,parrot,bye,2 -no,FALSE,original,cancel,3 -no,nay,original,cancel,3 -date,current day,parrot,avail,0 -goodbye,bye!,original,bye,2 -greeting,how are you treated?,parrot,greet,4 -greeting,hows it going,lambada,greet,4 -yes,approved,original,book,1 -how_busy,how busy the cheesecake factory is at 11 am,parrot,avail,0 -date,what's tomorrow's date,original,avail,0 -goodbye,later,original,bye,2 -yes,yep,original,book,1 -yes,"yes, please",parrot,book,1 -yes,oh-huh,parrot,book,1 -greeting,hola,original,greet,4 -goodbye,good night,original,bye,2 -calendar,are there any events scheduled for tuesday?,parrot,avail,0 -greeting,what's happened?,parrot,greet,4 -goodbye,as regards,parrot,bye,2 -cancel_reservation,please call the restaurant to cancel my reservation,parrot,cancel,3 -no,say negative,parrot,cancel,3 -yes,agreed,original,book,1 -no,that's a negatory,original,cancel,3 -no,that's not the way,parrot,cancel,3 -schedule_meeting,is my availability between one and two?,parrot,book,1 -goodbye,bye!,original,bye,2 -goodbye,peace,original,bye,2 -how_busy,how long will i have to wait at ohio steakhouse,lambada,avail,0 -meeting_schedule,are there meetings between 2 and 4?,parrot,avail,0 -thank_you,you answered my questions,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -no,naw,original,cancel,3 -goodbye,was on a great run,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -greeting,hello there,original,greet,4 -no,negative certainly,parrot,cancel,3 -how_busy,canadian grill at 6pm?,parrot,avail,0 -yes,perfect,parrot,book,1 -greeting,hiya!,original,greet,4 -greeting,what are you feeling today?,original,greet,4 -thank_you,thanks please,original,bye,2 -yes,perfect,parrot,book,1 -date,in 100 days?,parrot,avail,0 -date,is today monday?,original,avail,0 -goodbye,glad we talked,parrot,bye,2 -yes,"yup, that's correct",lambada,book,1 -no,negation,parrot,cancel,3 -greeting,aloha,original,greet,4 -yes,seems true,parrot,book,1 -yes,i'm going to tell you tes,parrot,book,1 -goodbye,buhbye,original,bye,2 -greeting,ahoy,lambada,greet,4 -no,it's so bad,parrot,cancel,3 -greeting,heller,original,greet,4 -no,"please, no",original,cancel,3 -how_busy,can you tell me if there's going to be a long wait at red lobster?,parrot,avail,0 -goodbye,glad we got to talk,original,bye,2 -greeting,good day,original,greet,4 -how_busy,how long is the wait at olive garden at 5 pm,lambada,avail,0 -greeting,yo,original,greet,4 -no,negating,parrot,cancel,3 -yes,accepted,original,book,1 -goodbye,goodnight,original,bye,2 -no,that's negative,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -greeting,hey it's up,lambada,greet,4 -how_busy,please tell me how long it takes to wait for cheesecakes?,parrot,avail,0 -goodbye,i'm out,parrot,bye,2 -thank_you,thanks for the information,parrot,bye,2 -reminder_update,you can remind me,parrot,resched,5 -no,that's bad,parrot,cancel,3 -yes,correct,original,book,1 -how_busy,sage's busy at noon?,parrot,avail,0 -date,tell me the date of tomorrow,parrot,avail,0 -goodbye,sayonara,original,bye,2 -yes,10-Apr,original,book,1 -date,what's the year?,parrot,avail,0 -yes,positive,parrot,book,1 -meeting_schedule,let me know about every meeting i have scheduled for today,parrot,avail,0 -yes,positive,original,book,1 -greeting,ahoy,lambada,greet,4 -yes,i think that's true,original,book,1 -how_busy,can i expect a long wait at chocolate fountain around 11am?,lambada,avail,0 -yes,perfect,parrot,book,1 -yes,yes that's correct,original,book,1 -greeting,how's everything,original,greet,4 -goodbye,was a pleasure talking with you,parrot,bye,2 -yes,a real statement,parrot,book,1 -goodbye,later!,original,bye,2 -goodbye,bye bye,lambada,bye,2 -thank_you,your answer was fun,parrot,bye,2 -goodbye,have fun?,lambada,bye,2 -greeting,is everything going well for you?,parrot,greet,4 -goodbye,later i'll talk to you,parrot,bye,2 -reminder_update,please remind me,parrot,resched,5 -yes,yes that is right,original,book,1 -goodbye,adios!,original,bye,2 -calendar_update,i must add my wedding to my calendar for march 1st,parrot,resched,5 -how_busy,how long will i have to wait for a table in olive garden?,parrot,avail,0 -no,no way,original,cancel,3 -thank_you,"oh, thanks",original,bye,2 -no,FALSE,lambada,cancel,3 -no,no,lambada,cancel,3 -no,no it's a lie,parrot,cancel,3 -no,no don't do that,parrot,cancel,3 -no,no?,parrot,cancel,3 -goodbye,bye bye!,original,bye,2 -greeting,how am i a good student?,parrot,greet,4 -yes,indeed,original,book,1 -calendar_update,remove the anniversary from my calendar,parrot,resched,5 -yes,oh yes,original,book,1 -no,not at all,original,cancel,3 -no,it's overwhelmingly negative,parrot,cancel,3 -no,nope,original,cancel,3 -greeting,"hey, ai",original,greet,4 -date,the date tomorrow is what,original,avail,0 -how_busy,tell me how long it will take to get a table at the red lobster?,parrot,avail,0 -date,please date,parrot,avail,0 -how_busy,ambrosio is busy around nine,parrot,avail,0 -no,that is incorrect,original,cancel,3 -greeting,salutations!,original,greet,4 -thank_you,thank you ai,parrot,bye,2 -thank_you,you made me aware,parrot,bye,2 -goodbye,thanks goodbye,parrot,bye,2 -yes,confirmed,original,book,1 -thank_you,thanks for my cooperation,original,bye,2 -no,negating,parrot,cancel,3 -goodbye,farewell,original,bye,2 -yes,that's correct,original,book,1 -goodbye,farewell,original,bye,2 -greeting,wassup,original,greet,4 -goodbye,bye,original,bye,2 -reminder_update,i need a reminder,original,resched,5 -greeting,hello,original,greet,4 -thank_you,thank you for the information you've provided,parrot,bye,2 -how_busy,can you tell me how busy ihop is at six?,parrot,avail,0 -how_busy,do you know how busy chili's is at 7pm?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -yes,i agree,original,book,1 -greeting,ahoy,lambada,greet,4 -date,which date is next?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -goodbye,bye-bye,original,bye,2 -goodbye,adios ai,original,bye,2 -greeting,how's everything,original,greet,4 -calendar_update,clear my calendar for february,parrot,resched,5 -cancel_reservation,cancel my reservation for 6pm at sidetracks,parrot,cancel,3 -no,that isn't correct,original,cancel,3 -meeting_schedule,give me a summary of the meetings today,parrot,avail,0 -no,nope,original,cancel,3 -greeting,welcome,parrot,greet,4 -yes,right,parrot,book,1 -yes,yeah yeah,lambada,book,1 -goodbye,good bye,original,bye,2 -goodbye,goodbye,original,bye,2 -goodbye,i'm happy to talk to you,parrot,bye,2 -yes,that's a fact,parrot,book,1 -goodbye,just relax,parrot,bye,2 -goodbye,and then goodbye,parrot,bye,2 -yes,certainly,parrot,book,1 -no,negating,parrot,cancel,3 -yes,"yes, that's correct",original,book,1 -no,FALSE,lambada,cancel,3 -greeting,hola!,original,greet,4 -thank_you,you've been great,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -yes,oh-huh,parrot,book,1 -calendar,check my calendar,parrot,avail,0 -yes,obviously,parrot,book,1 -date,is the date?,parrot,avail,0 -meeting_schedule,wanna meet roger?,parrot,avail,0 -date,what's today?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -yes,yeap,original,book,1 -goodbye,later good luck,parrot,bye,2 -goodbye,later!,original,bye,2 -no,naw,original,cancel,3 -yes,"yes, you got it",original,book,1 -goodbye,good see you,lambada,bye,2 -goodbye,afterward,parrot,bye,2 -greeting,hola!,original,greet,4 -greeting,salutation,parrot,greet,4 -greeting,whats new?,parrot,greet,4 -schedule_meeting,is it possible to schedule a meeting with cole at 4pm?,parrot,book,1 -yes,oh-huh,parrot,book,1 -greeting,heyo,original,greet,4 -reminder_update,remind me to clean up,parrot,resched,5 -no,that is untrue,original,cancel,3 -thank_you,thank you for telling me,parrot,bye,2 -meeting_schedule,let me know when my meeting with peter is planned,parrot,avail,0 -yes,that's correct,original,book,1 -thank_you,thanks again,original,bye,2 -greeting,what's happening?,parrot,greet,4 -yes,right,parrot,book,1 -date,what month is today?,parrot,avail,0 -yes,yeah,original,book,1 -goodbye,later goodbye,parrot,bye,2 -yes,okay,original,book,1 -thank_you,you have made my life so much easier,lambada,bye,2 -goodbye,adios ai,original,bye,2 -goodbye,fairwell,original,bye,2 -goodbye,the talks were pleasant,parrot,bye,2 -how_busy,what's the wait time at the red lobster right now?,parrot,avail,0 -goodbye,later then,lambada,bye,2 -greeting,salutations,parrot,greet,4 -thank_you,you're welcome,parrot,bye,2 -no,negatory,original,cancel,3 -no,invalid,original,cancel,3 -goodbye,tootles,original,bye,2 -reminder_update,remind me to exercise,original,resched,5 -calendar_update,add a dentist appointment to my calendar for march 1st,parrot,resched,5 -greeting,heller,original,greet,4 -goodbye,see ya!,original,bye,2 -goodbye,just relax,parrot,bye,2 -goodbye,send a goodbye,lambada,bye,2 -goodbye,good bye,original,bye,2 -greeting,"hi, ai",original,greet,4 -yes,indeed,original,book,1 -goodbye,i'm very happy i got to talk to you,lambada,bye,2 -thank_you,thanks please,original,bye,2 -goodbye,tootles,original,bye,2 -yes,good,parrot,book,1 -yes,i believe you're right,parrot,book,1 -no,naw,original,cancel,3 -yes,say positive,parrot,book,1 -no,i dont think it's right,parrot,cancel,3 -goodbye,thanks for chatting,lambada,bye,2 -goodbye,say goodbye now,parrot,bye,2 -thank_you,many thanks,original,bye,2 -cancel_reservation,i made a reservation for chris at tony's please cancel it,parrot,cancel,3 -no,not necessarily true,parrot,cancel,3 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -greeting,"hello, good morning",lambada,greet,4 -calendar_update,can you remove dinner with june at the ranch from my calendar for may 14th?,lambada,resched,5 -yes,right,parrot,book,1 -goodbye,"later, thanks for chatting",original,bye,2 -date,what day of the month do we have?,parrot,avail,0 -date,in 100 days?,parrot,avail,0 -yes,accept,parrot,book,1 -no,is not true?,parrot,cancel,3 -thank_you,thanks for coming,parrot,bye,2 -greeting,and how are you treated?,parrot,greet,4 -yes,positive,original,book,1 -yes,definitely,original,book,1 -thank_you,many thank,original,bye,2 -goodbye,later then,lambada,bye,2 -goodbye,talk later,original,bye,2 -greeting,"hello, ai",original,greet,4 -greeting,hows are ya,original,greet,4 -goodbye,bye bye,lambada,bye,2 -yes,yay,lambada,book,1 -greeting,hola,original,greet,4 -greeting,hola,original,greet,4 -yes,indeed,original,book,1 -schedule_meeting,please set up a meeting with tom at 3 pm,lambada,book,1 -greeting,well hello,original,greet,4 -greeting,aloha,original,greet,4 -date,what date in 100 days?,parrot,avail,0 -goodbye,tootles,original,bye,2 -date,what day?,parrot,avail,0 -yes,obviously,parrot,book,1 -goodbye,adios!,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -calendar,on tuesday you are supposed to have a meeting,original,avail,0 -greeting,what's up,original,greet,4 -no,naw,original,cancel,3 -thank_you,i'm grateful,original,bye,2 -greeting,heyo,original,greet,4 -no,erroneous,parrot,cancel,3 -goodbye,later!,original,bye,2 -yes,confirmed,original,book,1 -calendar,i want to check my calendar on saturday,parrot,avail,0 -greeting,do you feel?,parrot,greet,4 -calendar_update,add mom's birthday to my calendar on april 12th,parrot,resched,5 -yes,TRUE,original,book,1 -goodbye,later!,original,bye,2 -thank_you,appreciated,original,bye,2 -calendar,check calendar for events,lambada,avail,0 -date,what's my date?,parrot,avail,0 -yes,yes that's right,lambada,book,1 -date,what is today's date?,original,avail,0 -thank_you,thanks for that answer,original,bye,2 -yes,confirm,original,book,1 -greeting,hello,original,greet,4 -how_busy,is the wait for applebees really long?,parrot,avail,0 -greeting,you're all right?,parrot,greet,4 -reminder_update,save it for later,parrot,resched,5 -calendar,do i have anything scheduled on my calendar for march 1?,lambada,avail,0 -date,current day,parrot,avail,0 -cancel_reservation,please cancel my reservation for tonight,parrot,cancel,3 -goodbye,thank you for my assistance goodbye,parrot,bye,2 -thank_you,you know i'm grateful,parrot,bye,2 -date,what's the present day?,parrot,avail,0 -yes,ok,original,book,1 -date,what today?,parrot,avail,0 -goodbye,adios,original,bye,2 -schedule_meeting,can you arrange a meeting with sarah smith?,parrot,book,1 -greeting,hola,original,greet,4 -greeting,why hello?,original,greet,4 -yes,oh-huh,parrot,book,1 -yes,yeah,original,book,1 -yes,certainly,parrot,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -goodbye,buhbye,original,bye,2 -goodbye,adios!,original,bye,2 -how_busy,how long do i have to wait for the shokudo?,parrot,avail,0 -yes,i can confirm,parrot,book,1 -no,negatory?,parrot,cancel,3 -calendar,show me what's currently on my calendar for march 26?,parrot,avail,0 -yes,"affirmative, go ahead",original,book,1 -date,tell me the date in two days?,parrot,avail,0 -thank_you,you have done well,lambada,bye,2 -no,that's totally wrong!,original,cancel,3 -yes,yeah,original,book,1 -greeting,how's my family?,parrot,greet,4 -goodbye,afterward,parrot,bye,2 -yes,absolutely correct,original,book,1 -calendar,read me my schedule for march 2,original,avail,0 -yes,yep,original,book,1 -thank_you,thanks again,original,bye,2 -no,nada,original,cancel,3 -meeting_schedule,meet me at every meeting today,parrot,avail,0 -no,invalid,original,cancel,3 -date,what date today?,parrot,avail,0 -greeting,how is life in my town?,parrot,greet,4 -goodbye,later,original,bye,2 -goodbye,regards,original,bye,2 -how_busy,how long will it take to sit at the kitchen sink?,parrot,avail,0 -thank_you,thanks for the payment,parrot,bye,2 -goodbye,i’ll be leaving now,original,bye,2 -goodbye,cya later,original,bye,2 -no,that's bad,parrot,cancel,3 -goodbye,a good conversation,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -greeting,"hey, ai",original,greet,4 -thank_you,why thank you?,original,bye,2 -no,erroneous,parrot,cancel,3 -how_busy,how busy the olive garden restaurant is at 730?,parrot,avail,0 -no,negative,original,cancel,3 -reminder_update,remember to call tomorrow,parrot,resched,5 -reminder_update,i need a reminder to remind me to do something,original,resched,5 -date,please list my current date?,parrot,avail,0 -thank_you,thanks again,original,bye,2 -yes,facts,original,book,1 -date,what month and day?,parrot,avail,0 -greeting,hello ai,parrot,greet,4 -thank_you,please thank you,lambada,bye,2 -no,nay,original,cancel,3 -date,is the date?,parrot,avail,0 -how_busy,what's the wait time for a texas restaurant today?,parrot,avail,0 -yes,ok,original,book,1 -goodbye,i’m leaving-goodbye!,original,bye,2 -how_busy,how busy is the restaurant?,parrot,avail,0 -thank_you,"great, thanks!",original,bye,2 -date,today?,parrot,avail,0 -schedule_meeting,i need a room,parrot,book,1 -goodbye,glad we could talk,parrot,bye,2 -how_busy,how busy is the restaurant at 8am,lambada,avail,0 -thank_you,you've been amazing,lambada,bye,2 -goodbye,good luck,lambada,bye,2 -no,the negator,parrot,cancel,3 -greeting,how's my feeling?,parrot,greet,4 -cancel_reservation,i need my reservation to be cancelled for the nugget in xiomara restaurant,parrot,cancel,3 -goodbye,goodbyes soon,parrot,bye,2 -yes,"yes, please",parrot,book,1 -goodbye,goodbye,original,bye,2 -greeting,are you okay right now?,original,greet,4 -no,no please,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -goodbye,the talk was nice,lambada,bye,2 -date,you give me the date for tomorrow?,parrot,avail,0 -no,nope,original,cancel,3 -no,not good,parrot,cancel,3 -date,in 9 days?,parrot,avail,0 -no,it would be false,parrot,cancel,3 -thank_you,you've helped,parrot,bye,2 -yes,affirmitive,original,book,1 -yes,ok,original,book,1 -yes,approved,original,book,1 -schedule_meeting,plan a meeting with saul,parrot,book,1 -greeting,hello ai,parrot,greet,4 -greeting,hola,original,greet,4 -date,would you tell me today's date,lambada,avail,0 -yes,a fact,parrot,book,1 -reminder_update,please set up a reminder i need to remember to ask about work,original,resched,5 -yes,oh yes,original,book,1 -goodbye,no problem just relax,parrot,bye,2 -yes,yes please,original,book,1 -greeting,and how're you doing,parrot,greet,4 -greeting,why hello?,original,greet,4 -date,what's today,original,avail,0 -how_busy,how busy is olive garden around noon,lambada,avail,0 -yes,TRUE,original,book,1 -no,that isn't true,lambada,cancel,3 -thank_you,good job thanks,parrot,bye,2 -yes,yes that is correct,original,book,1 -date,please explain today,parrot,avail,0 -how_busy,how busy will olive garden be at 8 am,lambada,avail,0 -no,i don't think it's accurate,parrot,cancel,3 -no,not happening,original,cancel,3 -yes,facts,original,book,1 -yes,confirmed,original,book,1 -no,not good,parrot,cancel,3 -how_busy,how busy is raspberry pie at 5:45,lambada,avail,0 -goodbye,sign off,parrot,bye,2 -how_busy,say how busy it is at 6pm?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -thank_you,"nice, excellent!",original,bye,2 -thank_you,thankyou,parrot,bye,2 -cancel_reservation,cancellation of 6 reservations at the red robins,parrot,cancel,3 -meeting_schedule,tell me what my day looks like today in terms of meetings?,original,avail,0 -yes,positive,parrot,book,1 -calendar,show me the calendar for march 28?,parrot,avail,0 -meeting_schedule,when's the meeting with kar?,parrot,avail,0 -goodbye,i enjoy our chat,lambada,bye,2 -greeting,heller,original,greet,4 -greeting,hi what's going on?,parrot,greet,4 -yes,definitely yes,parrot,book,1 -yes,10-Apr,original,book,1 -yes,right,parrot,book,1 -date,what year is it?,original,avail,0 -no,that's completely false,original,cancel,3 -how_busy,what is the typical crowd at olive garden?,lambada,avail,0 -how_busy,how long will it take me to get a seat in the restaurant?,parrot,avail,0 -no,please make sure that my statement is not valid,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -how_busy,how busy is the red robin around 5?,parrot,avail,0 -no,please no,parrot,cancel,3 -date,please date,parrot,avail,0 -goodbye,goodnight,original,bye,2 -how_busy,tell me the average wait time at red robin?,parrot,avail,0 -goodbye,lovely conversation,parrot,bye,2 -yes,absolutely,original,book,1 -no,invalid,original,cancel,3 -how_busy,how long will it take me to sit at the red lobster table?,parrot,avail,0 -reminder_update,make a reminder of taxes tomorrow,parrot,resched,5 -thank_you,thank you,original,bye,2 -calendar_update,clear my calendar on march 1st,original,resched,5 -how_busy,is mcdonalds busy?,parrot,avail,0 -goodbye,later!,original,bye,2 -greeting,yo how's it going,parrot,greet,4 -yes,yep,original,book,1 -no,is very false,parrot,cancel,3 -how_busy,what is the current wait time for this yogurt place?,lambada,avail,0 -yes,positive,original,book,1 -greeting,hey bs,lambada,greet,4 -yes,"yup, that's correct",lambada,book,1 -no,i'm sorry it isn't,lambada,cancel,3 -greeting,hi,original,greet,4 -yes,correct,original,book,1 -thank_you,my gratitude,parrot,bye,2 -goodbye,bye!,original,bye,2 -yes,i know that this is a true statement,lambada,book,1 -greeting,welcome,parrot,greet,4 -goodbye,peace,original,bye,2 -calendar,show me the events on my calendar for march 26?,parrot,avail,0 -thank_you,thank you very much,original,bye,2 -thank_you,thank ya!,original,bye,2 -greeting,how're you?,parrot,greet,4 -yes,ok,original,book,1 -greeting,how's everything?,parrot,greet,4 -greeting,well hello,original,greet,4 -schedule_meeting,please schedule a meeting with marnie at 9 am,parrot,book,1 -goodbye,good talk,parrot,bye,2 -greeting,hey how's ot,lambada,greet,4 -yes,im sure you are true,parrot,book,1 -schedule_meeting,a meeting is needed,parrot,book,1 -greeting,aho,parrot,greet,4 -date,what's the date of this?,parrot,avail,0 -goodbye,bye bye!,original,bye,2 -reminder_update,add me a reminder?,parrot,resched,5 -goodbye,i'm out,parrot,bye,2 -yes,10-Apr,original,book,1 -how_busy,how busy will it be if i go to chili around 6,parrot,avail,0 -greeting,what do i feel?,parrot,greet,4 -no,you are wrong,original,cancel,3 -calendar,can you tell me anything about the 29th of march on my schedule?,parrot,avail,0 -no,most definitely false,parrot,cancel,3 -no,that’s incorrect,original,cancel,3 -thank_you,i want to thank you for your time,parrot,bye,2 -goodbye,good see you,lambada,bye,2 -greeting,hey yai,lambada,greet,4 -no,negative sure,parrot,cancel,3 -no,hell nah,original,cancel,3 -no,that's not right,original,cancel,3 -goodbye,goodnight,original,bye,2 -yes,that's correct,original,book,1 -greeting,salutations!,original,greet,4 -yes,i know,parrot,book,1 -date,do you know what's the current time?,parrot,avail,0 -calendar,check my calendar,parrot,avail,0 -no,negatory,original,cancel,3 -goodbye,"thanks, bye",original,bye,2 -date,is tomorrow's date?,parrot,avail,0 -yes,i'll check it out,parrot,book,1 -thank_you,thank you for the information you've given,parrot,bye,2 -thank_you,nice,parrot,bye,2 -goodbye,my friend,parrot,bye,2 -goodbye,i must run now,parrot,bye,2 -yes,indeed,parrot,book,1 -reminder_update,remind me to get an oil change?,parrot,resched,5 -thank_you,thanks again!,original,bye,2 -date,tell me the date now?,lambada,avail,0 -cancel_reservation,abrogate the dinner reservation,parrot,cancel,3 -yes,positive,parrot,book,1 -greeting,how is the ai going?,parrot,greet,4 -meeting_schedule,show me how many meetings i have with pete?,parrot,avail,0 -yes,you got it,parrot,book,1 -thank_you,thank you!,original,bye,2 -greeting,how ife treats you?,parrot,greet,4 -meeting_schedule,i have to count my meetings as i have none today,parrot,avail,0 -no,so that's no,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -thank_you,thank you for the reply,lambada,bye,2 -no,would be no?,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -greeting,hello ai,parrot,greet,4 -greeting,hiya,original,greet,4 -yes,yeah,original,book,1 -how_busy,the chili's busy at 9?,parrot,avail,0 -no,no way!,original,cancel,3 -goodbye,great conversation,parrot,bye,2 -greeting,"hello, ai",original,greet,4 -yes,uh-huh,original,book,1 -yes,indeed,parrot,book,1 -thank_you,thanks,original,bye,2 -goodbye,"nice talk, goodbye",lambada,bye,2 -thank_you,you're welcome,parrot,bye,2 -no,that is no way,lambada,cancel,3 -goodbye,i want it now,parrot,bye,2 -yes,that's right,original,book,1 -goodbye,i'm out of here,original,bye,2 -goodbye,take care then,parrot,bye,2 -no,don't agree,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -thank_you,i'm thankful,original,bye,2 -date,please share today's date,original,avail,0 -yes,accept,parrot,book,1 -no,false sure,parrot,cancel,3 -how_busy,how long will it take me to get a seat in a restaurant,parrot,avail,0 -thank_you,"oh, thanks",original,bye,2 -yes,that's definitely true,original,book,1 -no,you're not right,parrot,cancel,3 -greeting,"hello, hello, hello",lambada,greet,4 -how_busy,can you tell me how long the wait is at the pizza shop?,parrot,avail,0 -how_busy,at dinner time is the restaurant overcrowded?,parrot,avail,0 -how_busy,tell me the wait at red lobster?,parrot,avail,0 -thank_you,thanks,original,bye,2 -goodbye,peace out!,original,bye,2 -reminder_update,need to remind myself of this,parrot,resched,5 -yes,absolutely,original,book,1 -yes,yeap,original,book,1 -thank_you,thank you for the prompt response,parrot,bye,2 -how_busy,how long do i have to wait for a table at applebee's,parrot,avail,0 -no,negatory?,parrot,cancel,3 -no,i'll pass,original,cancel,3 -yes,do that?,original,book,1 -no,erroneous,parrot,cancel,3 -yes,i'll say yes,parrot,book,1 -reminder_update,maybe a reminder?,parrot,resched,5 -goodbye,later then,lambada,bye,2 -greeting,how's everything with you?,parrot,greet,4 -no,that's false,original,cancel,3 -no,no thanks,original,cancel,3 -date,what is the day now?,original,avail,0 -no,no,lambada,cancel,3 -yes,yeap,original,book,1 -cancel_reservation,cancel my reservation at the steak house,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -greeting,hola!,original,greet,4 -greeting,whats up,original,greet,4 -greeting,salutation,parrot,greet,4 -no,that's completely wrong,parrot,cancel,3 -goodbye,sayonara ,parrot,bye,2 -schedule_meeting,i need a meeting room on saturday morning,parrot,book,1 -greeting,"hello, what's up",original,greet,4 -yes,sure,original,book,1 -goodbye,i'll leave,parrot,bye,2 -goodbye,peace,original,bye,2 -yes,huh,parrot,book,1 -yes,ok,original,book,1 -greeting,what's up?,parrot,greet,4 -goodbye,lovely conversation,parrot,bye,2 -greeting,"good morning, ai",original,greet,4 -yes,confirm,original,book,1 -cancel_reservation,scrap that dinner reservation,original,cancel,3 -yes,yay,lambada,book,1 -no,negatory?,parrot,cancel,3 -yes,i'm going to tell you tes,parrot,book,1 -no,that's completely wrong,parrot,cancel,3 -schedule_meeting,can you schedule a meeting with scott at 3:30?,lambada,book,1 -greeting,heller,original,greet,4 -greeting,hello,original,greet,4 -greeting,hey yai,lambada,greet,4 -cancel_reservation,can you cancel my dinner reservation?,parrot,cancel,3 -yes,is is very much true?,original,book,1 -no,that would be no,lambada,cancel,3 -thank_you,thanks,original,bye,2 -reminder_update,create a reminder please,parrot,resched,5 -thank_you,thankyou,parrot,bye,2 -thank_you,awesome thank you,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -yes,good,parrot,book,1 -greeting,what's up,original,greet,4 -goodbye,good-bye,parrot,bye,2 -date,can you remember the date?,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -goodbye,peace out!,original,bye,2 -goodbye,regards,original,bye,2 -yes,thats right,original,book,1 -goodbye,i'm out,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -no,i'm afraid not,parrot,cancel,3 -no,no way,original,cancel,3 -thank_you,you've given me that,parrot,bye,2 -meeting_schedule,the meetings today,parrot,avail,0 -yes,yes it's true,lambada,book,1 -greeting,hey there fellow,original,greet,4 -goodbye,adios!,original,bye,2 -goodbye,good night,original,bye,2 -date,today?,parrot,avail,0 -greeting,hi how're things going,lambada,greet,4 -goodbye,goodbye now,parrot,bye,2 -yes,obviously,parrot,book,1 -reminder_update,i would like to set a reminder to pay my taxes,lambada,resched,5 -greeting,hello what's up?,parrot,greet,4 -yes,10-Apr,original,book,1 -goodbye,goodbyes,parrot,bye,2 -greeting,how are you?,parrot,greet,4 -no,invalid,original,cancel,3 -goodbye,goodbye soon,lambada,bye,2 -how_busy,how long would i need to wait for a table at ihop right now,original,avail,0 -greeting,hello siri,original,greet,4 -no,negatory,original,cancel,3 -goodbye,bye-bye,original,bye,2 -yes,uh-huh,original,book,1 -schedule_meeting,please schedule a meeting,parrot,book,1 -thank_you,you answered,parrot,bye,2 -how_busy,is the restaurant packed around 7?,parrot,avail,0 -no,that's bad,parrot,cancel,3 -yes,positive,parrot,book,1 -greeting,welcome,parrot,greet,4 -goodbye,adios!,original,bye,2 -meeting_schedule,do i have any meetings with kate today?,lambada,avail,0 -goodbye,bye-bye,original,bye,2 -yes,good,parrot,book,1 -yes,accept,parrot,book,1 -reminder_update,please remind me something,parrot,resched,5 -yes,good,parrot,book,1 -goodbye,just relax,parrot,bye,2 -no,no don't do that!,original,cancel,3 -greeting,heyo,original,greet,4 -how_busy,how busy is the cheesecake factory at 6,lambada,avail,0 -how_busy,how long would it take to wait for chipmunk?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -cancel_reservation,can you cancel my reservation for ida in red lobster?,parrot,cancel,3 -reminder_update,remind me to eat at 6pm,parrot,resched,5 -goodbye,bye!,original,bye,2 -greeting,how is idy?,parrot,greet,4 -no,no?,parrot,cancel,3 -no,negating,parrot,cancel,3 -thank_you,"great, thanks!",original,bye,2 -goodbye,as regards,parrot,bye,2 -no,negating,parrot,cancel,3 -yes,absolutely,original,book,1 -goodbye,later then,lambada,bye,2 -calendar,give me an overview of what march 23 will look like?,parrot,avail,0 -yes,im sure you're true,parrot,book,1 -thank_you,you answered my questions,parrot,bye,2 -thank_you,thanks for helping,original,bye,2 -reminder_update,keep the reminder of the newspaper,parrot,resched,5 -goodbye,good night,original,bye,2 -no,nay,original,cancel,3 -no,that is wrong,original,cancel,3 -no,absolutely false,parrot,cancel,3 -yes,it's positive,parrot,book,1 -schedule_meeting,i have to schedule a meeting with ken for 9 am,parrot,book,1 -greeting,hi there alexa,original,greet,4 -greeting,whats up?,parrot,greet,4 -thank_you,thanks,original,bye,2 -yes,is true,parrot,book,1 -thank_you,much obliged,original,bye,2 -how_busy,how busy will chipotle garden be around 9,lambada,avail,0 -no,negative,original,cancel,3 -no,negating,parrot,cancel,3 -greeting,wassup,original,greet,4 -schedule_meeting,how can i set up a meeting?,parrot,book,1 -greeting,what's happening?,parrot,greet,4 -no,no?,parrot,cancel,3 -meeting_schedule,what date is today's meeting?,lambada,avail,0 -date,what's the date of tomorrow,lambada,avail,0 -greeting,salutations!,original,greet,4 -no,erroneous,parrot,cancel,3 -how_busy,is she busy at 5pm?,parrot,avail,0 -thank_you,gracias,original,bye,2 -date,would you please tell me today's date,original,avail,0 -yes,great,original,book,1 -thank_you,thank you for that response,original,bye,2 -no,nope,original,cancel,3 -goodbye,bye bye,lambada,bye,2 -thank_you,good job thanks,parrot,bye,2 -no,sorry but not true,parrot,cancel,3 -yes,it is true,original,book,1 -reminder_update,just a reminder,parrot,resched,5 -goodbye,please talk soon,parrot,bye,2 -no,nothing,parrot,cancel,3 -date,what's the present day?,parrot,avail,0 -greeting,hi ai,original,greet,4 -thank_you,thanks again,original,bye,2 -meeting_schedule,meetings today,original,avail,0 -thank_you,nice,parrot,bye,2 -no,FALSE,lambada,cancel,3 -yes,"yup, that's true",original,book,1 -goodbye,great talk,lambada,bye,2 -yes,let's do that,parrot,book,1 -no,no!,original,cancel,3 -meeting_schedule,how many meetings do i have between noon and 1?,parrot,avail,0 -calendar,what's on my calendar for march 10th?,parrot,avail,0 -yes,absolutely correct,original,book,1 -how_busy,will this chili's be crowded at 6 pm,lambada,avail,0 -greeting,hola!,original,greet,4 -how_busy,what number of people are waiting at chili's around 9 pm,parrot,avail,0 -no,i believe it's false,parrot,cancel,3 -calendar,what's going on in my calendar for the second of march?,parrot,avail,0 -how_busy,do you think this place gets busy around 5?,parrot,avail,0 -greeting,so how's everything?,parrot,greet,4 -no,certainly not,original,cancel,3 -greeting,how ya doin,original,greet,4 -no,FALSE,original,cancel,3 -greeting,ahoy hoy,original,greet,4 -yes,confirmed,original,book,1 -greeting,hola!,original,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -yes,facts,original,book,1 -no,that's not it,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -no,that's not true,original,cancel,3 -calendar,if my annual health insurance plan has any dates on it can you check the calendar?,parrot,avail,0 -yes,im sure you're right,parrot,book,1 -no,nothing,parrot,cancel,3 -no,that's not true,original,cancel,3 -thank_you,you've been amazing,lambada,bye,2 -goodbye,fairwell,original,bye,2 -calendar_update,friday add a doctor appointment to my calendar,parrot,resched,5 -yes,10-Apr,original,book,1 -goodbye,good bye for now,parrot,bye,2 -greeting,hey yai,lambada,greet,4 -no,that's false,original,cancel,3 -goodbye,i'm out,parrot,bye,2 -calendar,please see my calendar,parrot,avail,0 -thank_you,thanks,original,bye,2 -date,current day,parrot,avail,0 -yes,"correct, it is affirmative",original,book,1 -no,but that's totally wrong,parrot,cancel,3 -goodbye,cya later,original,bye,2 -thank_you,thank you so much,original,bye,2 -goodbye,adios!,original,bye,2 -greeting,hola!,original,greet,4 -yes,confirmed,original,book,1 -thank_you,i owe you,parrot,bye,2 -thank_you,again thanks,parrot,bye,2 -greeting,well hello,original,greet,4 -greeting,hello ai,parrot,greet,4 -date,what is the date?,original,avail,0 -yes,perfect,parrot,book,1 -no,negating,parrot,cancel,3 -greeting,hello ai,parrot,greet,4 -no,don't agree,parrot,cancel,3 -goodbye,lovely conversation,parrot,bye,2 -greeting,how do you think it treats you?,parrot,greet,4 -yes,TRUE,original,book,1 -greeting,heller,original,greet,4 -goodbye,come on soon,parrot,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -no,it seems not,original,cancel,3 -thank_you,i'm really grateful,parrot,bye,2 -no,it's no,parrot,cancel,3 -date,what year?,parrot,avail,0 -how_busy,can you tell me how long the wait will be at chipotle steakhouse?,lambada,avail,0 -cancel_reservation,i made a reservation for dinner,parrot,cancel,3 -goodbye,have a good day?,original,bye,2 -greeting,get up ai,parrot,greet,4 -reminder_update,remind me,original,resched,5 -goodbye,nice drive by,lambada,bye,2 -goodbye,great talk,lambada,bye,2 -greeting,wassup,original,greet,4 -greeting,salutations,parrot,greet,4 -thank_you,i'm glad you responded,parrot,bye,2 -yes,"yep, that's right",original,book,1 -how_busy,how busy is iman at five?,parrot,avail,0 -yes,ya,original,book,1 -goodbye,tootles?,parrot,bye,2 -goodbye,sayonara,original,bye,2 -greeting,hello ai,parrot,greet,4 -reminder_update,please do not forget,parrot,resched,5 -goodbye,peace,original,bye,2 -yes,affirmitive,original,book,1 -thank_you,i'm so grateful for you,parrot,bye,2 -thank_you,and i'm grateful,parrot,bye,2 -goodbye,peace out!,original,bye,2 -goodbye,nice chat today,lambada,bye,2 -goodbye,good bye,original,bye,2 -yes,sure,original,book,1 -yes,absolutely,original,book,1 -greeting,hey there,original,greet,4 -how_busy,is there a waiting time?,parrot,avail,0 -calendar_update,take a lunch off my calendar on the 3rd,parrot,resched,5 -how_busy,is the breakfast place full in the mornings?,original,avail,0 -reminder_update,add the reminder to my check,parrot,resched,5 -goodbye,nice to talk to you,lambada,bye,2 -calendar,is anything scheduled for january 1st?,parrot,avail,0 -greeting,heyo,original,greet,4 -calendar,what's my calendar for april 30?,parrot,avail,0 -how_busy,how long will it take for me to get seated at ihop,lambada,avail,0 -no,FALSE,lambada,cancel,3 -thank_you,please thank you,lambada,bye,2 -goodbye,thanks for chatting,lambada,bye,2 -goodbye,bye bye then,original,bye,2 -greeting,"hey, what's up",original,greet,4 -greeting,hiya,original,greet,4 -no,absolutely not,original,cancel,3 -yes,indeed,original,book,1 -thank_you,much obliged,original,bye,2 -greeting,hey there!,original,greet,4 -greeting,"hello, what's up",original,greet,4 -calendar_update,please remove the birthday party from my calendar,parrot,resched,5 -date,what's my date tomorrow?,parrot,avail,0 -how_busy,will i have to wait long for a table in the restaurant,parrot,avail,0 -thank_you,thank you so very much,original,bye,2 -goodbye,nice seeing you bye,original,bye,2 -goodbye,i'm gone,parrot,bye,2 -goodbye,good to see you again,parrot,bye,2 -no,no no thanks,parrot,cancel,3 -yes,"yes, that's confirmed",original,book,1 -how_busy,please tell me what the wait at olive garden is like right now?,parrot,avail,0 -yes,and you're right,parrot,book,1 -goodbye,goodnight,original,bye,2 -date,today?,parrot,avail,0 -thank_you,good looking out,original,bye,2 -date,what date will be tomorrow?,lambada,avail,0 -yes,"affirmative, go ahead",original,book,1 -yes,that is correct,original,book,1 -meeting_schedule,is there any meetings today?,parrot,avail,0 -calendar,you're supposed to have a meeting on tuesday,parrot,avail,0 -yes,perfect,parrot,book,1 -no,i think not,original,cancel,3 -greeting,hiya,original,greet,4 -goodbye,later,original,bye,2 -yes,TRUE,original,book,1 -greeting,hello,original,greet,4 -yes,oh-huh,parrot,book,1 -goodbye,have to go,parrot,bye,2 -goodbye,good bye,original,bye,2 -goodbye,tootles?,parrot,bye,2 -date,a year?,parrot,avail,0 -no,negating,parrot,cancel,3 -no,that is so false,original,cancel,3 -yes,"yes, that's correct",original,book,1 -goodbye,have to go,parrot,bye,2 -greeting,hello what are you doing?,parrot,greet,4 -goodbye,great chat goodbye,lambada,bye,2 -goodbye,bye-bye,original,bye,2 -no,hell nah,original,cancel,3 -thank_you,appreciate it,original,bye,2 -yes,"yes, that's correct",original,book,1 -calendar_update,take an event off my calendar,lambada,resched,5 -thank_you,you answered,parrot,bye,2 -yes,accepted,original,book,1 -goodbye,fairwell?,parrot,bye,2 -goodbye,bye,original,bye,2 -goodbye,lovely conversation,parrot,bye,2 -no,negative sure,parrot,cancel,3 -no,negating,parrot,cancel,3 -greeting,what's happening,original,greet,4 -goodbye,fairwell,original,bye,2 -yes,certainly,parrot,book,1 -no,negation,parrot,cancel,3 -greeting,hello good morning,parrot,greet,4 -no,FALSE,lambada,cancel,3 -goodbye,bye!,original,bye,2 -yes,oh-huh,parrot,book,1 -yes,that's a fact,lambada,book,1 -yes,that's correct,original,book,1 -how_busy,how long will i have to wait to be in the restaurant?,parrot,avail,0 -no,"no, definitely not",original,cancel,3 -date,what's my day today?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -no,definitely not,original,cancel,3 -greeting,give me the information,parrot,greet,4 -schedule_meeting,can you schedule a meeting at 10 am tomorrow with john smith?,original,book,1 -calendar,do i have appointments for saturday?,parrot,avail,0 -cancel_reservation,cancel the dinner reservation i made,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -date,current date,original,avail,0 -no,nothing,parrot,cancel,3 -thank_you,good job,lambada,bye,2 -greeting,hello there!,original,greet,4 -goodbye,farewell!,original,bye,2 -yes,not false,parrot,book,1 -no,it's a negation,parrot,cancel,3 -calendar,i can't remember if i added the fun run to my calendar,parrot,avail,0 -no,negative sure,parrot,cancel,3 -yes,is true,parrot,book,1 -goodbye,greetings,parrot,bye,2 -goodbye,i'm out,parrot,bye,2 -thank_you,thanks for the information,parrot,bye,2 -yes,affirmitive,original,book,1 -date,and what's the day?,parrot,avail,0 -thank_you,many thank,original,bye,2 -yes,TRUE,lambada,book,1 -no,please disagree,lambada,cancel,3 -yes,correct,original,book,1 -yes,positive,parrot,book,1 -yes,so it's real,parrot,book,1 -thank_you,i'm grateful,original,bye,2 -no,FALSE,original,cancel,3 -greeting,hiya!,original,greet,4 -no,i'll pass,original,cancel,3 -greeting,hola,original,greet,4 -thank_you,i'm thankful,original,bye,2 -goodbye,bye,original,bye,2 -yes,absolutely!,original,book,1 -thank_you,thank you!,original,bye,2 -date,what date?,parrot,avail,0 -schedule_meeting,i need a meeting room,parrot,book,1 -yes,certainly,parrot,book,1 -greeting,hello what's up?,parrot,greet,4 -goodbye,peace,original,bye,2 -no,naw,parrot,cancel,3 -yes,positive,original,book,1 -thank_you,thanks again,original,bye,2 -yes,facts,original,book,1 -goodbye,bye bye,lambada,bye,2 -goodbye,lovely conversation,parrot,bye,2 -no,i think it's false,parrot,cancel,3 -goodbye,adios!,original,bye,2 -goodbye,see ya,lambada,bye,2 -yes,accept,parrot,book,1 -how_busy,list the wait times at the chipotle grill?,parrot,avail,0 -how_busy,how long is the wait for a table at red lobsters around 11 am,lambada,avail,0 -no,FALSE,original,cancel,3 -goodbye,goodbye my friend,parrot,bye,2 -goodbye,goodbye,original,bye,2 -goodbye,bye bye,lambada,bye,2 -no,i think not,original,cancel,3 -yes,TRUE,lambada,book,1 -no,that's no way,parrot,cancel,3 -goodbye,just relax,parrot,bye,2 -greeting,aho,parrot,greet,4 -thank_you,thank you for the payment,lambada,bye,2 -goodbye,goodbye!,original,bye,2 -greeting,how are you,original,greet,4 -date,say what day it will be?,parrot,avail,0 -no,that is erroneous,original,cancel,3 -goodbye,fairwell?,parrot,bye,2 -meeting_schedule,what time is today's meeting?,original,avail,0 -yes,TRUE,lambada,book,1 -yes,absolutely!,original,book,1 -goodbye,i need to go later,lambada,bye,2 -date,date tomorrow,parrot,avail,0 -no,erroneous,parrot,cancel,3 -yes,accept,parrot,book,1 -how_busy,how long will i have to wait at chili's?,parrot,avail,0 -how_busy,what's the wait like at chili's right now,lambada,avail,0 -how_busy,how busy is the tomato plant at 5 pm,lambada,avail,0 -goodbye,adios!,original,bye,2 -yes,absolutely!,original,book,1 -greeting,how were you?,parrot,greet,4 -greeting,welcome,parrot,greet,4 -how_busy,what's the wait like at chili's at 6pm?,parrot,avail,0 -greeting,are you okay now?,parrot,greet,4 -greeting,hi,original,greet,4 -no,i have to tell you no,parrot,cancel,3 -how_busy,i'm working at 5 o'clock what happens to me?,parrot,avail,0 -greeting,how is everything going for you?,parrot,greet,4 -goodbye,tootles,original,bye,2 -thank_you,i'm grateful,original,bye,2 -meeting_schedule,wanna meet with roger,parrot,avail,0 -date,what date?,parrot,avail,0 -no,it is indeed false,lambada,cancel,3 -yes,that's a fact,parrot,book,1 -goodbye,later good luck,parrot,bye,2 -no,no,lambada,cancel,3 -greeting,whats up?,parrot,greet,4 -yes,accepted,original,book,1 -yes,the answer is yes,original,book,1 -yes,affirmative,original,book,1 -greeting,hello,original,greet,4 -no,naw,original,cancel,3 -greeting,how've you been?,parrot,greet,4 -yes,great,original,book,1 -cancel_reservation,my reservation at the restaurant will be cancelled?,parrot,cancel,3 -yes,i'll say yes,parrot,book,1 -thank_you,thanks for the assist,original,bye,2 -greeting,bonjour,original,greet,4 -no,the information is not correct?,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -yes,confirm,original,book,1 -goodbye,say goodbye,parrot,bye,2 -yes,correct,original,book,1 -thank_you,thanks please,original,bye,2 -goodbye,goodbye,original,bye,2 -goodbye,"later, thanks for chatting",original,bye,2 -calendar,check my calendar to see if my dog was accounted for,lambada,avail,0 -goodbye,regards,original,bye,2 -thank_you,thanks for responding,parrot,bye,2 -yes,definitely,original,book,1 -goodbye,go easy,parrot,bye,2 -goodbye,goodbye helpful ai device,parrot,bye,2 -no,i think not,original,cancel,3 -no,negatory,original,cancel,3 -greeting,welcome,parrot,greet,4 -goodbye,i'm gone,parrot,bye,2 -meeting_schedule,is my schedule clear?,parrot,avail,0 -greeting,good evening,original,greet,4 -greeting,what i feel?,parrot,greet,4 -yes,that makes sense,lambada,book,1 -no,no!,original,cancel,3 -thank_you,thank you,original,bye,2 -yes,facts,original,book,1 -how_busy,is the restaurant usually busy around noon?,lambada,avail,0 -greeting,"hello, how are things",original,greet,4 -no,that's negative,parrot,cancel,3 -greeting,hi ai,original,greet,4 -how_busy,is this restaurant busy at night? '',parrot,avail,0 -date,today is which day of the week,original,avail,0 -goodbye,"great talk, thanks",original,bye,2 -greeting,hello what's happening,parrot,greet,4 -goodbye,i'm saying goodbye now,original,bye,2 -thank_you,really great!,original,bye,2 -no,not right,parrot,cancel,3 -reminder_update,set up a reminder to pay for groceries this week,parrot,resched,5 -greeting,how's life,original,greet,4 -yes,the answer is yes,original,book,1 -how_busy,what will the olive garden be like at 6 o'clock?,parrot,avail,0 -date,in seven days?,parrot,avail,0 -date,is today a date?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -thank_you,and i thank you,parrot,bye,2 -calendar,do i have any items on my calendar for march 21st?,original,avail,0 -no,negative sure,parrot,cancel,3 -meeting_schedule,when's the meeting?,parrot,avail,0 -goodbye,i'm out,parrot,bye,2 -thank_you,thank you?,parrot,bye,2 -no,erroneous,parrot,cancel,3 -greeting,how is idy?,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -goodbye,farewell,original,bye,2 -no,negatory?,parrot,cancel,3 -thank_you,i am thankful,lambada,bye,2 -yes,positive,parrot,book,1 -goodbye,adios,original,bye,2 -goodbye,i'm out,parrot,bye,2 -date,what's the date of that?,parrot,avail,0 -calendar,what's in the books for april 30,parrot,avail,0 -how_busy,what's the popularity of chili's at 6 pm,lambada,avail,0 -yes,approved,original,book,1 -calendar_update,remove my date with liz from my calendar on april 1st,original,resched,5 -no,no!,original,cancel,3 -reminder_update,make me a reminder to go visit ryan,lambada,resched,5 -yes,i vote yes,original,book,1 -how_busy,is chili busy at 730?,parrot,avail,0 -yes,huh huh,parrot,book,1 -no,the statement is completely wrong,parrot,cancel,3 -calendar,find events in my calendar,parrot,avail,0 -yes,ok,original,book,1 -yes,indeed,parrot,book,1 -no,negation,parrot,cancel,3 -greeting,how were you?,parrot,greet,4 -yes,just right,parrot,book,1 -yes,my answer is yes,parrot,book,1 -how_busy,please tell me how long it is at olive garden?,parrot,avail,0 -how_busy,what time will it take to sit down at the macaroni grill,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -no,it's negative,parrot,cancel,3 -goodbye,goodbye my friend,parrot,bye,2 -no,what you've said is wrong?,parrot,cancel,3 -no,that's incorrect,original,cancel,3 -calendar,do i have any events on my calendar for march 2nd?,parrot,avail,0 -no,nada,original,cancel,3 -goodbye,sayonara,original,bye,2 -goodbye,bye,original,bye,2 -reminder_update,make me remember my vacation,parrot,resched,5 -no,that’s incorrect,original,cancel,3 -reminder_update,you know something?,parrot,resched,5 -no,this isn't true,parrot,cancel,3 -no,it's no,parrot,cancel,3 -no,negative,original,cancel,3 -reminder_update,tell me to take out the trash in an hour?,original,resched,5 -thank_you,thanks for the info,original,bye,2 -goodbye,see you around,original,bye,2 -cancel_reservation,i don't need a table for dinner,parrot,cancel,3 -date,in 10 days?,parrot,avail,0 -thank_you,thank you!,original,bye,2 -no,it's actually false,parrot,cancel,3 -greeting,heyo,original,greet,4 -yes,that would be yes,original,book,1 -cancel_reservation,i have to cancel my reservation for dinner in carnelian lake,parrot,cancel,3 -date,please date,parrot,avail,0 -goodbye,glad to talk,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -yes,sure,original,book,1 -goodbye,come on soon,parrot,bye,2 -goodbye,adios,original,bye,2 -yes,positive,parrot,book,1 -goodbye,tootles,original,bye,2 -calendar,how much do i have scheduled for march 2nd,lambada,avail,0 -thank_you,appreciated,original,bye,2 -reminder_update,let me be reminded,parrot,resched,5 -thank_you,thankyou,parrot,bye,2 -calendar,has my doctor been added to my calendar?,parrot,avail,0 -how_busy,check out the wait times at olive garden right now,lambada,avail,0 -no,that’s actually wrong,original,cancel,3 -calendar,show me what's on my calendar for march 7?,parrot,avail,0 -reminder_update,remind me,original,resched,5 -greeting,aloha,original,greet,4 -date,what's the next week?,parrot,avail,0 -no,no don't do that!,original,cancel,3 -no,no thank you,original,cancel,3 -calendar,what's my schedule for thursday?,parrot,avail,0 -how_busy,there are a lot of people at chili's around 6pm?,parrot,avail,0 -no,certainly not,original,cancel,3 -reminder_update,add a reminder for me?,parrot,resched,5 -cancel_reservation,can i cancel my reservation for dinner this weekend please?,parrot,cancel,3 -goodbye,fairwell,original,bye,2 -yes,is true,parrot,book,1 -greeting,hiya,original,greet,4 -reminder_update,remind me,original,resched,5 -no,not true,original,cancel,3 -calendar_update,please add my calendar for the staff meeting scheduled for march 1 2019 at 10 am please,parrot,resched,5 -greeting,hi,original,greet,4 -thank_you,glad you did it,parrot,bye,2 -no,it's a very bad answer,parrot,cancel,3 -yes,that would be right,parrot,book,1 -no,the information is false,parrot,cancel,3 -schedule_meeting,schedule a meeting for me at the new york office?,parrot,book,1 -yes,yeah yeah,lambada,book,1 -greeting,heyo,original,greet,4 -yes,it'd be great,parrot,book,1 -no,it's certainly a false claim,parrot,cancel,3 -thank_you,your assistance is appreciated,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -yes,TRUE,lambada,book,1 -thank_you,you've helped,parrot,bye,2 -calendar,are there appointments for april 3rd?,parrot,avail,0 -reminder_update,make a reminder,parrot,resched,5 -how_busy,for how busy are pizza restaurants?,parrot,avail,0 -greeting,how's my family doing?,parrot,greet,4 -date,tell me today's date?,original,avail,0 -yes,10-Apr,original,book,1 -no,naw,parrot,cancel,3 -thank_you,thanks again!,original,bye,2 -thank_you,thank you,original,bye,2 -no,false sure,parrot,cancel,3 -no,it's so negative,parrot,cancel,3 -yes,say positive,parrot,book,1 -greeting,whats up?,parrot,greet,4 -thank_you,i appreciate that,original,bye,2 -yes,i say yes,lambada,book,1 -thank_you,you've been great,parrot,bye,2 -yes,is true,parrot,book,1 -no,not necessarily true,parrot,cancel,3 -goodbye,"thanks for chatting, bye",lambada,bye,2 -greeting,whats new,lambada,greet,4 -no,that's certainly false,parrot,cancel,3 -how_busy,tell me the time to wait for the restaurant?,parrot,avail,0 -schedule_meeting,please help me in a meeting,parrot,book,1 -yes,certainly,parrot,book,1 -yes,absolutely!,original,book,1 -yes,uh-huh,original,book,1 -goodbye,i leave now,parrot,bye,2 -yes,right,parrot,book,1 -goodbye,i’m leaving-goodbye!,original,bye,2 -date,is it monday?,parrot,avail,0 -greeting,hi,original,greet,4 -yes,so it's true,parrot,book,1 -goodbye,"goodbye, ai assistant",original,bye,2 -greeting,how are things?,parrot,greet,4 -no,this information is false,parrot,cancel,3 -date,what day in six days?,parrot,avail,0 -goodbye,good call,parrot,bye,2 -yes,ok,original,book,1 -goodbye,regards,original,bye,2 -greeting,salutation,parrot,greet,4 -yes,so it works,parrot,book,1 -yes,ok,original,book,1 -how_busy,tell me the wait for a table at applebee's,parrot,avail,0 -no,negating,parrot,cancel,3 -date,what's the date?,parrot,avail,0 -reminder_update,keep checking the steak,parrot,resched,5 -greeting,whats up?,parrot,greet,4 -thank_you,thanks for responding,parrot,bye,2 -yes,it's true yes,parrot,book,1 -no,nay,original,cancel,3 -how_busy,tell me the time it takes to sit at the olympia,parrot,avail,0 -no,not good idea,parrot,cancel,3 -reminder_update,can i set up a reminder?,parrot,resched,5 -no,false sure,parrot,cancel,3 -meeting_schedule,have i got any meetings today with sara?,original,avail,0 -yes,agreed,original,book,1 -meeting_schedule,what's the meeting today?,parrot,avail,0 -no,hell nah,original,cancel,3 -thank_you,thanks please,original,bye,2 -goodbye,farewell,original,bye,2 -goodbye,later!,original,bye,2 -no,FALSE,lambada,cancel,3 -reminder_update,new reminder please,lambada,resched,5 -yes,correct,original,book,1 -goodbye,bye!,original,bye,2 -no,negative definitely,parrot,cancel,3 -yes,absolutely!,original,book,1 -no,would be no?,parrot,cancel,3 -greeting,hey fellow,parrot,greet,4 -greeting,hello what's up?,parrot,greet,4 -goodbye,goodbye bye,parrot,bye,2 -how_busy,is there a wait time for a table at the chipotle bar?,parrot,avail,0 -goodbye,thanks goodbye,parrot,bye,2 -reminder_update,remind me to call my mom tomorrow,parrot,resched,5 -meeting_schedule,meeting today,parrot,avail,0 -greeting,how's life,original,greet,4 -goodbye,thanks goodbye,parrot,bye,2 -greeting,how's the situation?,parrot,greet,4 -no,it seems not,original,cancel,3 -reminder_update,must be reminded of being a professional photographer,parrot,resched,5 -thank_you,"great, thanks!",original,bye,2 -yes,positive,original,book,1 -thank_you,i'm grateful to you,original,bye,2 -no,nada,original,cancel,3 -greeting,hey yai,lambada,greet,4 -greeting,are you doing well?,original,greet,4 -goodbye,thanks goodbye,parrot,bye,2 -thank_you,thank you please,parrot,bye,2 -no,it's not correct,parrot,cancel,3 -yes,so it works,parrot,book,1 -yes,"yes, please",original,book,1 -date,today?,parrot,avail,0 -yes,accepted,original,book,1 -yes,a fact,parrot,book,1 -meeting_schedule,i'd like to know how many meetings i have today,parrot,avail,0 -yes,definitely,original,book,1 -greeting,aloha,original,greet,4 -thank_you,appreciated,original,bye,2 -date,what today?,parrot,avail,0 -goodbye,go easy,parrot,bye,2 -no,i'm sorry it isn't,lambada,cancel,3 -thank_you,thanks for my cooperation,original,bye,2 -reminder_update,remember me to call tomorrow,parrot,resched,5 -meeting_schedule,check today's calendar for meetings,original,avail,0 -goodbye,you're done,parrot,bye,2 -no,FALSE,lambada,cancel,3 -greeting,hey yai,lambada,greet,4 -greeting,salutation,parrot,greet,4 -yes,it's logical,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -greeting,what's happened?,parrot,greet,4 -yes,yep,original,book,1 -no,negating,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -thank_you,you've tried,parrot,bye,2 -greeting,how's life?,parrot,greet,4 -thank_you,your response is appreciated,parrot,bye,2 -yes,"yes, that's accurate",original,book,1 -no,it's a negative,parrot,cancel,3 -no,sure it's wrong,parrot,cancel,3 -no,negative definitely,parrot,cancel,3 -no,not right now,original,cancel,3 -thank_you,appreciate it,original,bye,2 -how_busy,how long will i have to wait for a burger at 8,lambada,avail,0 -goodbye,glad we talked,parrot,bye,2 -yes,TRUE,original,book,1 -how_busy,can i wait for a table at tiffany's steak house?,parrot,avail,0 -greeting,bonjour,original,greet,4 -no,no that isn't true,lambada,cancel,3 -reminder_update,remind me,original,resched,5 -greeting,hey there,original,greet,4 -yes,i'm going to tell you tes,parrot,book,1 -yes,accepted,original,book,1 -yes,10-Apr,original,book,1 -yes,yeah yeah,lambada,book,1 -greeting,how is my day?,parrot,greet,4 -no,FALSE,lambada,cancel,3 -no,is my falsehood?,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -thank_you,that's all i need,parrot,bye,2 -no,hell nah,original,cancel,3 -thank_you,thankyou,parrot,bye,2 -goodbye,buhbye,original,bye,2 -no,thanks no,parrot,cancel,3 -yes,uh huh,original,book,1 -goodbye,ai goodbye,original,bye,2 -greeting,salutations!,original,greet,4 -calendar,please tell me what is on my calendar for march 15th?,parrot,avail,0 -how_busy,how long will i have to wait before going to chili's,parrot,avail,0 -date,what is my date tomorrow?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -thank_you,awesome thank you,parrot,bye,2 -yes,ok,original,book,1 -greeting,hello how are you doing?,parrot,greet,4 -no,but certainly not,parrot,cancel,3 -yes,good,parrot,book,1 -no,invalid,original,cancel,3 -yes,okay,original,book,1 -thank_you,thanks again,original,bye,2 -greeting,ahoy,lambada,greet,4 -goodbye,afterward,parrot,bye,2 -yes,ya,original,book,1 -greeting,hiya,original,greet,4 -date,what today?,parrot,avail,0 -how_busy,is ihop busy?,parrot,avail,0 -goodbye,lovely conversation,parrot,bye,2 -greeting,hiya,original,greet,4 -calendar_update,add the brunch to my calendar for friday,parrot,resched,5 -no,no longer valid,parrot,cancel,3 -goodbye,peace out!,original,bye,2 -schedule_meeting,how do i get a meeting scheduled?,parrot,book,1 -yes,"yes, please",parrot,book,1 -goodbye,"syonara, ai device!",original,bye,2 -greeting,how are you today,original,greet,4 -no,that seems wrong,lambada,cancel,3 -yes,positive,parrot,book,1 -goodbye,good night,original,bye,2 -yes,it's true,original,book,1 -greeting,hi how are you?,parrot,greet,4 -greeting,whats up,original,greet,4 -schedule_meeting,let's schedule a meeting,lambada,book,1 -greeting,"hi, ai",original,greet,4 -goodbye,fairwell,original,bye,2 -no,i would rather not,lambada,cancel,3 -yes,not false,parrot,book,1 -goodbye,good bye,original,bye,2 -greeting,hi how's everything?,parrot,greet,4 -date,would you let me know the date today?,parrot,avail,0 -thank_you,good job trying to do something,parrot,bye,2 -yes,obviously,parrot,book,1 -no,certainly false,parrot,cancel,3 -goodbye,just relax,parrot,bye,2 -how_busy,how long is the wait at olive garden right now,lambada,avail,0 -yes,perfect,parrot,book,1 -no,the answer isn't correct,parrot,cancel,3 -greeting,ahoy,lambada,greet,4 -greeting,hey,original,greet,4 -thank_you,i appeciate it,parrot,bye,2 -date,what day is it today?,original,avail,0 -how_busy,how long is a sitting time in a restaurant,parrot,avail,0 -yes,huh huh,parrot,book,1 -no,so that's no,parrot,cancel,3 -how_busy,tell me the time to wait in this restaurant?,parrot,avail,0 -thank_you,i'm thankful,original,bye,2 -goodbye,bye-bye,original,bye,2 -yes,yup,original,book,1 -reminder_update,please set a reminder to put the clothes in the dryer,lambada,resched,5 -greeting,how's the life?,parrot,greet,4 -goodbye,talk later,original,bye,2 -yes,sure thing,original,book,1 -no,that's untrue,parrot,cancel,3 -thank_you,so glad you did it,parrot,bye,2 -goodbye,goodnight,original,bye,2 -how_busy,how much time do i have to wait for the restaurant?,parrot,avail,0 -yes,very true,original,book,1 -thank_you,so grateful,parrot,bye,2 -greeting,good morning,parrot,greet,4 -greeting,wassup,original,greet,4 -goodbye,adios,original,bye,2 -no,that is erroneous,original,cancel,3 -greeting,hello how's my life?,parrot,greet,4 -goodbye,the conversation was very enjoyable,parrot,bye,2 -thank_you,your answer is appreciated,original,bye,2 -reminder_update,remind me,original,resched,5 -calendar_update,please remove my anniversary party from my calendar,lambada,resched,5 -goodbye,goodbye no problem,parrot,bye,2 -yes,indeed,parrot,book,1 -cancel_reservation,cancel my reservation at the burger,parrot,cancel,3 -yes,accepted,original,book,1 -calendar_update,please put annie's baby shower on march 30 on my calendar,parrot,resched,5 -no,certainly not,original,cancel,3 -calendar_update,"please add to my calendar for the staff meeting that is scheduled on march 1, 2019 at 10 am",original,resched,5 -no,it's indeed false,parrot,cancel,3 -date,what's my date today?,parrot,avail,0 -greeting,how's my day going,lambada,greet,4 -goodbye,nice talking to you,parrot,bye,2 -calendar,list the current activities on my calendar?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -reminder_update,have i forgotten?,parrot,resched,5 -greeting,hello bs,parrot,greet,4 -greeting,"hi, ai",original,greet,4 -greeting,hiya!,original,greet,4 -no,negation,parrot,cancel,3 -goodbye,lovely conversation,parrot,bye,2 -greeting,hello,original,greet,4 -goodbye,buhbye,original,bye,2 -thank_you,i appeciate it,parrot,bye,2 -thank_you,thanks for the cooperation,parrot,bye,2 -yes,certainly true,parrot,book,1 -no,invalid,original,cancel,3 -greeting,tell me how you are doing today?,parrot,greet,4 -greeting,ahoy,lambada,greet,4 -date,show me a calendar,original,avail,0 -greeting,hey bs,lambada,greet,4 -greeting,hi,original,greet,4 -reminder_update,how about a reminder,original,resched,5 -no,nothing,parrot,cancel,3 -calendar_update,please clear my calendar,original,resched,5 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,whats up,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -yes,it's logical,parrot,book,1 -yes,yes,original,book,1 -no,no!,original,cancel,3 -reminder_update,i need to make a reminder please,original,resched,5 -yes,all right,original,book,1 -cancel_reservation,please cancel my reservation at the lake at 9 pm,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -yes,indeed,original,book,1 -no,what you've said is wrong?,parrot,cancel,3 -how_busy,how busy will the delicious browns be at 4pm,parrot,avail,0 -how_busy,how long does it take to get a table in the restaurant?,parrot,avail,0 -yes,a fact,parrot,book,1 -date,what's the next month?,parrot,avail,0 -yes,certainly,parrot,book,1 -yes,"yes, please",parrot,book,1 -thank_you,thanks for the information you gave,parrot,bye,2 -how_busy,is there much traffic around dinner time?,parrot,avail,0 -no,negating,parrot,cancel,3 -no,but it's not factual,parrot,cancel,3 -date,please explain today,parrot,avail,0 -greeting,whats new?,parrot,greet,4 -date,in 100 days?,parrot,avail,0 -greeting,how's this going?,parrot,greet,4 -goodbye,goodbye now,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -goodbye,see ya,original,bye,2 -greeting,hey fellow,parrot,greet,4 -yes,accept,parrot,book,1 -goodbye,i'm going,parrot,bye,2 -reminder_update,please check the steak,parrot,resched,5 -no,nothing,parrot,cancel,3 -goodbye,goodbye to yours,parrot,bye,2 -no,FALSE,lambada,cancel,3 -date,tomorrow is the date,parrot,avail,0 -goodbye,go easy,parrot,bye,2 -how_busy,is red lobster busy at 6 pm?,parrot,avail,0 -yes,TRUE,lambada,book,1 -reminder_update,you can remind me,parrot,resched,5 -goodbye,take a rest,parrot,bye,2 -yes,it's true,original,book,1 -thank_you,good job thanks,parrot,bye,2 -date,in three days,parrot,avail,0 -no,not true,original,cancel,3 -no,naw,original,cancel,3 -goodbye,farewell,original,bye,2 -goodbye,glad we got to talk,original,bye,2 -greeting,heller,original,greet,4 -goodbye,you're done,parrot,bye,2 -reminder_update,save it for later,parrot,resched,5 -meeting_schedule,for what time is my meeting with marketing scheduled,original,avail,0 -no,no way,original,cancel,3 -goodbye,adios!,original,bye,2 -thank_you,nice,parrot,bye,2 -goodbye,goodbye,original,bye,2 -yes,correct,original,book,1 -no,erroneous,parrot,cancel,3 -yes,yes,original,book,1 -greeting,how you're treated,parrot,greet,4 -thank_you,keep up the good work,parrot,bye,2 -greeting,how you are?,parrot,greet,4 -thank_you,thanks for the payment,parrot,bye,2 -no,"nope, that's false",original,cancel,3 -goodbye,goodnight,original,bye,2 -greeting,ahoy,lambada,greet,4 -date,what date?,parrot,avail,0 -calendar,what is on march 2 calendar?,original,avail,0 -goodbye,say goodbye,parrot,bye,2 -meeting_schedule,when's the meeting?,parrot,avail,0 -greeting,well hello,original,greet,4 -date,what's today,original,avail,0 -yes,facts,original,book,1 -goodbye,you're done,parrot,bye,2 -no,"no, it's not",lambada,cancel,3 -no,i'd say no,original,cancel,3 -no,that is overwhelmingly wrong,lambada,cancel,3 -greeting,ahoy there,lambada,greet,4 -thank_you,awesome thank you,parrot,bye,2 -no,nope not it,original,cancel,3 -no,so that's no,parrot,cancel,3 -yes,"yeah, that's it",lambada,book,1 -no,thats a negative,original,cancel,3 -goodbye,see ya,lambada,bye,2 -date,"what is the month, day, and year?",lambada,avail,0 -thank_you,thanks very much,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -greeting,"hello, anyone there",original,greet,4 -greeting,hey there!,original,greet,4 -schedule_meeting,how many hours can you hold a meeting in?,parrot,book,1 -reminder_update,make me a reminder to brush the teeth,lambada,resched,5 -no,that's inaccurate,original,cancel,3 -greeting,hey there,original,greet,4 -thank_you,i'm grateful,original,bye,2 -schedule_meeting,i need help scheduling a meeting,parrot,book,1 -yes,yep,original,book,1 -greeting,ahoy,lambada,greet,4 -how_busy,can i wait for a table in the olive garden?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -yes,10-Apr,original,book,1 -how_busy,how busy is ziggy around dinner,parrot,avail,0 -yes,i agree,original,book,1 -reminder_update,remind me to book a flight to america,parrot,resched,5 -goodbye,goodbye ai,parrot,bye,2 -goodbye,adios!,original,bye,2 -goodbye,"goodbye, helpful ai device!",original,bye,2 -goodbye,very nice conversation,parrot,bye,2 -how_busy,is olive garden busy at 6 pm?,parrot,avail,0 -yes,absolutely,original,book,1 -yes,yes,original,book,1 -date,which day is next,parrot,avail,0 -calendar_update,on the calendar for june 4th i need a trip to the zoo,parrot,resched,5 -yes,is true,parrot,book,1 -yes,yeah yeah,lambada,book,1 -goodbye,goodbyes,parrot,bye,2 -yes,accepted,original,book,1 -goodbye,sayonara,original,bye,2 -greeting,hi,original,greet,4 -yes,all right,original,book,1 -how_busy,what's the crowd at red lobster?,parrot,avail,0 -how_busy,tell me how busy cheesecake factory is right now?,lambada,avail,0 -goodbye,afterward,parrot,bye,2 -greeting,hiya!,original,greet,4 -goodbye,bye!,original,bye,2 -greeting,how is it going?,parrot,greet,4 -schedule_meeting,i'd like to know how to find a new meeting?,parrot,book,1 -date,describe the day?,parrot,avail,0 -cancel_reservation,delete my dinner reservation,parrot,cancel,3 -greeting,bonjour,original,greet,4 -meeting_schedule,tell me what meetings i booked today?,parrot,avail,0 -no,that’s not correct,original,cancel,3 -goodbye,goodbye,original,bye,2 -calendar,please check my calendar for tuesday,parrot,avail,0 -calendar,is the friday marathon added to my calendar?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -goodbye,thank you for talking to me,lambada,bye,2 -schedule_meeting,set a meeting for noon wednesday,parrot,book,1 -greeting,well hello,original,greet,4 -no,what's wrong with what you have said?,parrot,cancel,3 -goodbye,"talk to you soon, bye!",original,bye,2 -reminder_update,i need a reminder to register for the conference,parrot,resched,5 -goodbye,tootles,original,bye,2 -date,give me today's date,original,avail,0 -how_busy,what's the wait?,parrot,avail,0 -goodbye,later then,lambada,bye,2 -reminder_update,a new reminder please,parrot,resched,5 -no,negative sure,parrot,cancel,3 -no,but it's false,parrot,cancel,3 -how_busy,is the wait time in the restaurant high?,parrot,avail,0 -goodbye,"later, goodbye",lambada,bye,2 -no,that's incorrect,original,cancel,3 -calendar,can you show me my calendar?,lambada,avail,0 -yes,accepted,original,book,1 -yes,great,original,book,1 -goodbye,sign off,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -no,negative,original,cancel,3 -no,no good,original,cancel,3 -no,i'd rather not,parrot,cancel,3 -yes,positive,original,book,1 -reminder_update,remind me of exercise,parrot,resched,5 -yes,it is a true,original,book,1 -no,i'd say no,original,cancel,3 -yes,agreed,original,book,1 -goodbye,peace out!,original,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -goodbye,bye,original,bye,2 -no,it seems wrong,parrot,cancel,3 -thank_you,your assistance is appreciated,parrot,bye,2 -cancel_reservation,the reservation i made is not required anymore,original,cancel,3 -goodbye,bye bye,lambada,bye,2 -goodbye,see you later!,original,bye,2 -thank_you,thanks for the cooperation,parrot,bye,2 -meeting_schedule,when is this meeting?,parrot,avail,0 -yes,a true statement,parrot,book,1 -greeting,hey there,original,greet,4 -yes,definitely,original,book,1 -date,date tomorrow,parrot,avail,0 -yes,uh-huh,original,book,1 -goodbye,good conversation,parrot,bye,2 -calendar,what's on my calendar for tuesday?,parrot,avail,0 -yes,it seems true,parrot,book,1 -goodbye,happy to talk to you,parrot,bye,2 -no,no!,original,cancel,3 -thank_you,you've been great,parrot,bye,2 -no,that's so negative,parrot,cancel,3 -greeting,how is idy?,parrot,greet,4 -yes,agreed,original,book,1 -greeting,how ya doin,original,greet,4 -greeting,"hello, friend",original,greet,4 -greeting,how's idy?,parrot,greet,4 -date,is today monday?,original,avail,0 -greeting,whats up,original,greet,4 -goodbye,glad to talk,parrot,bye,2 -reminder_update,just a reminder,parrot,resched,5 -no,that is overwhelmingly false,original,cancel,3 -goodbye,tootles?,parrot,bye,2 -no,that's inaccurate,original,cancel,3 -schedule_meeting,i want the room open between 4 and 5pm,parrot,book,1 -greeting,what's new,lambada,greet,4 -greeting,hola!,original,greet,4 -no,it's a negation,parrot,cancel,3 -schedule_meeting,schedule a meeting for me,original,book,1 -goodbye,goodnight,original,bye,2 -goodbye,don't miss the chance to talk to you?,parrot,bye,2 -goodbye,later,original,bye,2 -no,it seems wrong,parrot,cancel,3 -date,tell me the date please,parrot,avail,0 -yes,yay,lambada,book,1 -yes,yay,lambada,book,1 -yes,all right,original,book,1 -goodbye,greetings,parrot,bye,2 -yes,ok,original,book,1 -date,what date?,parrot,avail,0 -greeting,ahoy there,lambada,greet,4 -greeting,hiya,original,greet,4 -calendar_update,clear my calendar on 22 march,parrot,resched,5 -greeting,how's idy doing,lambada,greet,4 -no,no!,original,cancel,3 -yes,10-Apr,original,book,1 -calendar_update,can you remove the cookout from the calendar for june 29th?,parrot,resched,5 -goodbye,good bye,original,bye,2 -thank_you,thanks,original,bye,2 -thank_you,okay thanks,original,bye,2 -greeting,how it goes?,parrot,greet,4 -no,i'm afraid not,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -greeting,hi what's up?,parrot,greet,4 -goodbye,bye-bye,original,bye,2 -reminder_update,make a reminder,parrot,resched,5 -goodbye,glad we talked,parrot,bye,2 -no,that's a false,lambada,cancel,3 -thank_you,i'm really thankful,parrot,bye,2 -no,naw,original,cancel,3 -greeting,yo,original,greet,4 -goodbye,sayonara,original,bye,2 -goodbye,goodbye,original,bye,2 -greeting,just wanted to say hi,original,greet,4 -yes,that's true,original,book,1 -goodbye,say goodbye,parrot,bye,2 -goodbye,i'll go,parrot,bye,2 -goodbye,goodbye,original,bye,2 -thank_you,i appreciate your consideration,lambada,bye,2 -greeting,whats new,lambada,greet,4 -no,not really,original,cancel,3 -goodbye,see ya,lambada,bye,2 -yes,confirmed,original,book,1 -goodbye,say goodbye,parrot,bye,2 -yes,that's correct,original,book,1 -yes,facts,original,book,1 -thank_you,you've been great,parrot,bye,2 -goodbye,great talk,lambada,bye,2 -calendar,tell me what's on my calendar for this day,parrot,avail,0 -thank_you,gracias,original,bye,2 -yes,yes sir,original,book,1 -no,nope,original,cancel,3 -goodbye,later,original,bye,2 -no,is not true?,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -how_busy,how busy is mcdonald's at 6:00,lambada,avail,0 -yes,yup,original,book,1 -greeting,whats new?,parrot,greet,4 -no,not that,original,cancel,3 -no,nay,original,cancel,3 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -yes,perfect,parrot,book,1 -how_busy,how long will the wait be in this restaurant?,parrot,avail,0 -cancel_reservation,the reservation isn't needed now,parrot,cancel,3 -no,nope,original,cancel,3 -goodbye,wonderful conversation,lambada,bye,2 -no,that's untrue,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -goodbye,fairwell,original,bye,2 -yes,"yeah, that's true",lambada,book,1 -goodbye,afterward,parrot,bye,2 -goodbye,i'm going,parrot,bye,2 -greeting,how ya doin,original,greet,4 -date,what's my day?,parrot,avail,0 -calendar,what do i have scheduled on march 2nd on my calendar?,original,avail,0 -goodbye,farewell,original,bye,2 -goodbye,good talk,parrot,bye,2 -how_busy,is tiaras crowded around 7pm?,parrot,avail,0 -goodbye,thank you for contacting me,parrot,bye,2 -how_busy,is iman busy at five?,parrot,avail,0 -no,FALSE,original,cancel,3 -how_busy,the wait at outback steakhouse?,parrot,avail,0 -yes,i agree,original,book,1 -meeting_schedule,what's on my schedule today?,parrot,avail,0 -goodbye,say goodbye,parrot,bye,2 -greeting,welcome,parrot,greet,4 -greeting,hey how's life,original,greet,4 -goodbye,bye!,original,bye,2 -goodbye,fairwell,original,bye,2 -yes,sure,original,book,1 -date,what date is it?,original,avail,0 -no,no,lambada,cancel,3 -schedule_meeting,please arrange a meeting with tom at 3 pm,parrot,book,1 -reminder_update,remind me later,original,resched,5 -goodbye,tootles,original,bye,2 -yes,yup,original,book,1 -thank_you,appreciate the support,parrot,bye,2 -no,that's bad,parrot,cancel,3 -yes,certainly true,parrot,book,1 -no,that's actually false,parrot,cancel,3 -greeting,whats new?,parrot,greet,4 -cancel_reservation,discard my dinner reservation,parrot,cancel,3 -yes,absolutely correct,original,book,1 -how_busy,how busy is tia at 6?,parrot,avail,0 -no,no?,parrot,cancel,3 -greeting,bonjour,original,greet,4 -goodbye,afterward,parrot,bye,2 -yes,that's definitely true,original,book,1 -yes,that is affirmative,original,book,1 -meeting_schedule,what meetings will be on my agenda today?,lambada,avail,0 -thank_you,i'm very grateful,parrot,bye,2 -how_busy,if i wait for a table at tiffany's steakhouse how long will i have to wait,parrot,avail,0 -goodbye,glad to talk,parrot,bye,2 -calendar_update,remove jury duty from my calendar for may 7,parrot,resched,5 -no,thanks no,parrot,cancel,3 -calendar_update,remove the dinner date from my calendar,parrot,resched,5 -goodbye,until next time!,original,bye,2 -greeting,salutations,parrot,greet,4 -yes,so it works,parrot,book,1 -greeting,hiya!,original,greet,4 -yes,TRUE,lambada,book,1 -how_busy,how long will i have to wait at red robin before i can take a table,lambada,avail,0 -no,i'll pass,original,cancel,3 -thank_you,you gave me this,parrot,bye,2 -schedule_meeting,can you list the meeting rooms available between 5 and 6 pm?,parrot,book,1 -no,sorry but not true,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -yes,you said i have it,lambada,book,1 -greeting,what's up,original,greet,4 -goodbye,later!,original,bye,2 -greeting,what's new here?,parrot,greet,4 -yes,"yes, please",original,book,1 -yes,great,original,book,1 -no,no!,original,cancel,3 -goodbye,it's over,parrot,bye,2 -yes,it is a true statement,lambada,book,1 -goodbye,farewell!,original,bye,2 -how_busy,can you tell me the most popular time at the cheesecake factory?,lambada,avail,0 -thank_you,you helped me today,parrot,bye,2 -no,would be no?,parrot,cancel,3 -how_busy,how long will it take to be seated at the cheese steakhouse?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -greeting,how's it going?,parrot,greet,4 -thank_you,my thanks,parrot,bye,2 -date,what year?,parrot,avail,0 -yes,i know,parrot,book,1 -yes,thats right,original,book,1 -greeting,ahoy hoy,original,greet,4 -goodbye,goodbye,original,bye,2 -goodbye,see ya,original,bye,2 -yes,TRUE,original,book,1 -calendar,have i added any events to my calendar for march 10?,lambada,avail,0 -thank_you,thankyou,parrot,bye,2 -yes,ya,original,book,1 -how_busy,how long will the line be at chili's around 7pm?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -yes,huh huh,parrot,book,1 -greeting,"hello, how are you",original,greet,4 -calendar_update,remove the party in the restaurant from my calendar,parrot,resched,5 -date,which date will we enter in the future?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -reminder_update,create a reminder please,parrot,resched,5 -goodbye,goodbyes soon,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -goodbye,afterward,parrot,bye,2 -how_busy,please tell me how busy chili's will be at 730?,parrot,avail,0 -how_busy,how long can i expect to wait for a table at the restaurant,lambada,avail,0 -yes,agreed,original,book,1 -greeting,ahoy hoy,original,greet,4 -goodbye,good-bye,parrot,bye,2 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -yes,certainly true,parrot,book,1 -meeting_schedule,what's my schedule today?,parrot,avail,0 -goodbye,adios,original,bye,2 -yes,so it's checked,parrot,book,1 -goodbye,goodbye then,parrot,bye,2 -yes,it's true,original,book,1 -goodbye,later,original,bye,2 -yes,it's true,original,book,1 -goodbye,goodbye!,original,bye,2 -yes,TRUE,lambada,book,1 -no,it would be awful,parrot,cancel,3 -goodbye,see you soon,original,bye,2 -thank_you,thank you,original,bye,2 -goodbye,it was fun talking with you,parrot,bye,2 -date,date tomorrow?,parrot,avail,0 -yes,10-Apr,original,book,1 -date,what's today,original,avail,0 -goodbye,goodbye,original,bye,2 -greeting,what's happening?,parrot,greet,4 -reminder_update,help me make a reminder to pay my taxes,lambada,resched,5 -calendar,do i have appointments on tuesday?,parrot,avail,0 -no,that's incorrect!,original,cancel,3 -no,that is not a good idea,lambada,cancel,3 -date,what date?,parrot,avail,0 -no,that's not right,original,cancel,3 -reminder_update,new reminder please,lambada,resched,5 -thank_you,the answer you gave me i'm grateful,parrot,bye,2 -date,what year?,parrot,avail,0 -date,what'll it be tomorrow?,parrot,avail,0 -yes,yep,original,book,1 -greeting,salutation,parrot,greet,4 -greeting,how is my day?,parrot,greet,4 -thank_you,"great, thanks!",original,bye,2 -no,that's completely false,original,cancel,3 -thank_you,and i'm grateful,parrot,bye,2 -yes,perfect,parrot,book,1 -greeting,aho,parrot,greet,4 -goodbye,i had fun talking with you,parrot,bye,2 -goodbye,buhbye,original,bye,2 -reminder_update,remind me,original,resched,5 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,tell me the time it takes to sit in chili's?,parrot,avail,0 -schedule_meeting,if the meeting room is available between 4 and 5 please check,parrot,book,1 -yes,"yes, please",parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -goodbye,good talk,parrot,bye,2 -goodbye,goodbye later,parrot,bye,2 -yes,good,parrot,book,1 -goodbye,goodbye,original,bye,2 -goodbye,talk later,original,bye,2 -yes,"yes, please",original,book,1 -thank_you,thanks very much,parrot,bye,2 -goodbye,buhbye,original,bye,2 -calendar_update,i have an appointment for tomorrow in my calendar,parrot,resched,5 -no,nothing good,parrot,cancel,3 -thank_you,merci beaucoup,original,bye,2 -goodbye,tootles,original,bye,2 -greeting,hello bs,parrot,greet,4 -yes,"yes, please",parrot,book,1 -goodbye,later!,original,bye,2 -yes,yeap,original,book,1 -yes,ya,original,book,1 -goodbye,bye,original,bye,2 -no,invalid,original,cancel,3 -yes,huh,parrot,book,1 -yes,obviously,parrot,book,1 -no,don't agree,parrot,cancel,3 -calendar,what's going on in my calendar for march 18th?,parrot,avail,0 -how_busy,i want to know how long i have to wait in olive garden,parrot,avail,0 -yes,right,parrot,book,1 -reminder_update,please remember to visit ryan,parrot,resched,5 -thank_you,thanks!,original,bye,2 -no,the information is wrong,original,cancel,3 -reminder_update,remind me to remind my cat to close the fridge,parrot,resched,5 -yes,do that?,original,book,1 -cancel_reservation,my reservation for dinner at carnelian lake needs to be cancelled,parrot,cancel,3 -thank_you,i appreciate what you have done,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -no,that's incorrect,original,cancel,3 -greeting,hola!,original,greet,4 -no,naw,original,cancel,3 -thank_you,many thank,original,bye,2 -date,current day,parrot,avail,0 -date,what year?,parrot,avail,0 -date,give me a date,parrot,avail,0 -no,naw,parrot,cancel,3 -no,ill pass,original,cancel,3 -yes,that is correct,original,book,1 -reminder_update,can you set me up a reminder to pay my rent?,lambada,resched,5 -greeting,hey how are you doing?,parrot,greet,4 -goodbye,good bye,original,bye,2 -calendar_update,please cancel the event on march 15,lambada,resched,5 -yes,that's right,original,book,1 -yes,yay,lambada,book,1 -goodbye,thank you for the good call,parrot,bye,2 -yes,indeed,original,book,1 -greeting,good evening,original,greet,4 -no,that's so false,parrot,cancel,3 -greeting,what's going on,original,greet,4 -greeting,welcome,parrot,greet,4 -greeting,salutation,parrot,greet,4 -greeting,heyo,original,greet,4 -cancel_reservation,cancell my dinner reservation,parrot,cancel,3 -thank_you,glad you helped me,parrot,bye,2 -no,false for sure,original,cancel,3 -goodbye,adios!,original,bye,2 -yes,sure,original,book,1 -no,negative,original,cancel,3 -thank_you,thanks for that response,original,bye,2 -no,negative,original,cancel,3 -how_busy,does the restaurant have a lot of business around the noon?,parrot,avail,0 -reminder_update,please remind me something,parrot,resched,5 -calendar,are there any events on my calendar for january 1st?,original,avail,0 -yes,oh-huh,parrot,book,1 -meeting_schedule,when's the meeting with kara?,parrot,avail,0 -greeting,"ai, how are you doing",original,greet,4 -greeting,hiya,original,greet,4 -date,what date is it?,original,avail,0 -yes,positive,parrot,book,1 -how_busy,what will it be like for chili at 5pm?,parrot,avail,0 -goodbye,later,original,bye,2 -greeting,how's the world?,parrot,greet,4 -calendar_update,i have to put my car repair on my calendar for tomorrow,parrot,resched,5 -no,that's no way,parrot,cancel,3 -how_busy,is ihop currently busy?,parrot,avail,0 -thank_you,many thank,original,bye,2 -goodbye,"thanks, bye",original,bye,2 -no,that’s incorrect,original,cancel,3 -yes,say yes,lambada,book,1 -thank_you,nice,parrot,bye,2 -date,in 10 days?,parrot,avail,0 -yes,ya,original,book,1 -yes,so it's true,parrot,book,1 -how_busy,how busy will imbrosi be at 7:45,lambada,avail,0 -thank_you,appreciated,original,bye,2 -thank_you,very grateful,parrot,bye,2 -how_busy,can you tell me the number of wait times at red robin?,lambada,avail,0 -how_busy,tell me the time to wait for a table at the avocado caf?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -calendar,tell me my calendar?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -goodbye,great conversation,parrot,bye,2 -thank_you,appreciate the support,parrot,bye,2 -goodbye,i'm going,parrot,bye,2 -date,which day is next,parrot,avail,0 -greeting,aho,parrot,greet,4 -yes,certainly true,parrot,book,1 -reminder_update,remind me to pay my taxes on saturday,parrot,resched,5 -cancel_reservation,im not going to need my dinner reservation,lambada,cancel,3 -calendar_update,take out my dinner plans for tomorrow,parrot,resched,5 -yes,definitely yes,parrot,book,1 -schedule_meeting,can you help me to create a meeting for you?,parrot,book,1 -no,FALSE,lambada,cancel,3 -no,it's so negative,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -no,what isn't true?,parrot,cancel,3 -goodbye,until next time!,original,bye,2 -date,what day is it?,original,avail,0 -no,no,lambada,cancel,3 -no,FALSE,original,cancel,3 -no,negatory?,parrot,cancel,3 -calendar_update,please remove dinner with june on the ranch from my calendar for may 14th?,parrot,resched,5 -goodbye,i'm out of this,parrot,bye,2 -no,i'm afraid this is not the case,parrot,cancel,3 -no,that isn't the right answer,original,cancel,3 -reminder_update,remind me something,parrot,resched,5 -yes,that's correct,original,book,1 -no,naw,parrot,cancel,3 -no,no that's not the case,parrot,cancel,3 -goodbye,wonderful conversation,lambada,bye,2 -goodbye,bye,original,bye,2 -goodbye,goodbye soon,lambada,bye,2 -yes,good,parrot,book,1 -thank_you,nice,parrot,bye,2 -greeting,hello,original,greet,4 -greeting,hiya,original,greet,4 -greeting,hiya,original,greet,4 -no,it would be wrong,parrot,cancel,3 -no,and i'm sorry,parrot,cancel,3 -no,no that's a lie,parrot,cancel,3 -how_busy,how long will i have to wait if i want to eat at the cheesecake factory?,parrot,avail,0 -goodbye,regards,original,bye,2 -thank_you,my gratitude,parrot,bye,2 -calendar,tell me what's currently on my calendar for thursday?,parrot,avail,0 -greeting,hi there,original,greet,4 -calendar_update,add my spa appointment on the 12th to the calendar,parrot,resched,5 -goodbye,wonderful conversation,lambada,bye,2 -reminder_update,please remind me to do something?,parrot,resched,5 -calendar_update,i want you to cancel the event on 3 may,parrot,resched,5 -greeting,hola,original,greet,4 -goodbye,great talk,lambada,bye,2 -no,is my false assertion?,parrot,cancel,3 -date,what's the month and the day tomorrow,parrot,avail,0 -yes,huh huh,parrot,book,1 -how_busy,the wait time at the cheese cake factory?,parrot,avail,0 -schedule_meeting,do you have a meeting room available between 6 and 7?,parrot,book,1 -calendar,tell me the calendar for march 1?,parrot,avail,0 -yes,it's logical,parrot,book,1 -yes,it is true,original,book,1 -meeting_schedule,tell me the kind of meetings i have today?,parrot,avail,0 -goodbye,i had a good run,parrot,bye,2 -greeting,hello what's up?,parrot,greet,4 -yes,certainly,parrot,book,1 -yes,affirmative,original,book,1 -schedule_meeting,can you schedule a meeting room for interviews on thursday?,original,book,1 -calendar_update,go ahead and remove scheduled event on the calendar,lambada,resched,5 -meeting_schedule,i have no meetings today,parrot,avail,0 -greeting,"good morning, ai",original,greet,4 -goodbye,tootles?,parrot,bye,2 -greeting,how goes it,original,greet,4 -schedule_meeting,i want a meeting scheduled,parrot,book,1 -thank_you,thanks so much,original,bye,2 -no,that's not the way,parrot,cancel,3 -goodbye,later gater,original,bye,2 -thank_you,your help was great thank you so much,parrot,bye,2 -meeting_schedule,please read my schedule of meetings?,parrot,avail,0 -greeting,hey how are you,lambada,greet,4 -goodbye,goodnight,original,bye,2 -yes,i agree,original,book,1 -yes,yup,original,book,1 -date,tell me what day tomorrow is?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -date,tell me the date today?,original,avail,0 -cancel_reservation,how can i cancel my reservation for ida in red lobster?,parrot,cancel,3 -no,that's not correct it's false,parrot,cancel,3 -no,certainly false,parrot,cancel,3 -thank_you,your answer was fun,parrot,bye,2 -how_busy,ambrosio is busy around nine,parrot,avail,0 -goodbye,i'm leaving,parrot,bye,2 -greeting,salutation,parrot,greet,4 -yes,oh-huh,parrot,book,1 -yes,agreed,original,book,1 -thank_you,appreciated,original,bye,2 -date,can you tell me today's date?,original,avail,0 -goodbye,take a rest,parrot,bye,2 -goodbye,have to run,parrot,bye,2 -goodbye,goodnight,original,bye,2 -no,certainly not,original,cancel,3 -yes,uh-huh,original,book,1 -calendar,what's happening on march 15,parrot,avail,0 -thank_you,your assistance is appreciated,parrot,bye,2 -yes,confirm,original,book,1 -greeting,hi ai,original,greet,4 -thank_you,i'm happy you helped me,parrot,bye,2 -cancel_reservation,cancel my reservation for jason at ruth's,lambada,cancel,3 -yes,of course,original,book,1 -no,it's false,parrot,cancel,3 -yes,confirm,original,book,1 -thank_you,okay thank you,parrot,bye,2 -calendar,what is my schedule for april 3?,lambada,avail,0 -greeting,"hello, good morning",lambada,greet,4 -how_busy,how long will it take to eat in olive garden,parrot,avail,0 -date,in three days,parrot,avail,0 -greeting,are you doing alright?,original,greet,4 -no,that's inaccurate,original,cancel,3 -no,invalid,original,cancel,3 -yes,absolutely,original,book,1 -yes,affirmative,original,book,1 -no,it's no,parrot,cancel,3 -no,it's a wrong answer,parrot,cancel,3 -goodbye,sayonara ,parrot,bye,2 -thank_you,i'm happy you did it for me,parrot,bye,2 -thank_you,much obliged,original,bye,2 -thank_you,you're the best!,original,bye,2 -thank_you,you are providing me with much gratitude,lambada,bye,2 -yes,yes that's right,lambada,book,1 -how_busy,"at 5:30 pm, how busy can i expect olive garden to be",original,avail,0 -goodbye,im leaving,parrot,bye,2 -yes,okay,original,book,1 -yes,positive,original,book,1 -yes,indeed,original,book,1 -thank_you,many thank,original,bye,2 -no,FALSE,original,cancel,3 -thank_you,thank you for everything,parrot,bye,2 -reminder_update,add a note,parrot,resched,5 -how_busy,show me the average sitting time in this restaurant?,parrot,avail,0 -greeting,hey how's ot,lambada,greet,4 -how_busy,what is the wait in this restaurant?,parrot,avail,0 -no,naw,parrot,cancel,3 -calendar,do i have appointments on march 10?,parrot,avail,0 -how_busy,how long will it take for a table at tomato soup?,parrot,avail,0 -no,i'd say no,original,cancel,3 -cancel_reservation,just cancel my reservation,lambada,cancel,3 -goodbye,bye-bye,original,bye,2 -greeting,how life treats you?,parrot,greet,4 -how_busy,how busy is chili around noon?,parrot,avail,0 -goodbye,good talk,parrot,bye,2 -no,it's not correct,parrot,cancel,3 -greeting,hi what's up,original,greet,4 -greeting,how did you feel?,parrot,greet,4 -no,that's incorrect!,original,cancel,3 -goodbye,the talk was nice,lambada,bye,2 -goodbye,see ya!,original,bye,2 -greeting,hola!,original,greet,4 -goodbye,lovely conversation,parrot,bye,2 -yes,good yes,lambada,book,1 -yes,thats right,original,book,1 -yes,absolutely!,original,book,1 -no,false sure,parrot,cancel,3 -greeting,hiya,original,greet,4 -greeting,wassup,original,greet,4 -goodbye,"great chat, take it easy",lambada,bye,2 -yes,"yes, please",original,book,1 -yes,accepted,original,book,1 -yes,sure,original,book,1 -greeting,bonjour,original,greet,4 -no,that's not acceptable,parrot,cancel,3 -yes,all right,original,book,1 -yes,absolutely!,original,book,1 -goodbye,"nice talk, goodbye",lambada,bye,2 -thank_you,i'm happy for my help,parrot,bye,2 -goodbye,great talk,lambada,bye,2 -yes,yes,original,book,1 -cancel_reservation,scrap the dinner reservation,parrot,cancel,3 -goodbye,later!,original,bye,2 -greeting,hey fellows,parrot,greet,4 -yes,absolutely!,original,book,1 -reminder_update,create a reminder to give the cat flea medicine,parrot,resched,5 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,on the road,parrot,bye,2 -greeting,what's happening,original,greet,4 -calendar_update,stop this thing today,parrot,resched,5 -goodbye,farewell,original,bye,2 -goodbye,regards,original,bye,2 -greeting,"why, hello bandit",original,greet,4 -no,no?,parrot,cancel,3 -yes,a fact,parrot,book,1 -thank_you,thankyou,parrot,bye,2 -meeting_schedule,does today's schedule include any meetings?,original,avail,0 -schedule_meeting,i want a meeting scheduled,parrot,book,1 -no,nay,original,cancel,3 -yes,"yes, please",parrot,book,1 -greeting,aloha,original,greet,4 -how_busy,how many people will be waiting at orange sauce at 7 pm,lambada,avail,0 -meeting_schedule,when is today's meeting?,lambada,avail,0 -goodbye,fairwell?,parrot,bye,2 -greeting,whats up,original,greet,4 -greeting,welcome,parrot,greet,4 -date,what will be the date tomorrow?,original,avail,0 -how_busy,what is the average wait time at the cheese cake factory?,original,avail,0 -goodbye,bye bye,lambada,bye,2 -greeting,hey,original,greet,4 -greeting,are you okay?,original,greet,4 -no,thanks no,parrot,cancel,3 -goodbye,the talk was nice,lambada,bye,2 -yes,"yes, that is accurate",original,book,1 -goodbye,great conversation,parrot,bye,2 -yes,right,parrot,book,1 -goodbye,this conversation was pleasant,parrot,bye,2 -goodbye,thanks goodbye,parrot,bye,2 -calendar,tell me what's on my calendar for april 17th?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -greeting,hi there,original,greet,4 -goodbye,bye bye,lambada,bye,2 -goodbye,adios,original,bye,2 -yes,accepted,original,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -goodbye,bye for now,original,bye,2 -yes,thats right,original,book,1 -thank_you,i really thank you,original,bye,2 -calendar,do i have any appointments scheduled for saturday?,lambada,avail,0 -date,describe the day?,parrot,avail,0 -how_busy,is the restaurant busy at lunchtime?,original,avail,0 -thank_you,thankyou,parrot,bye,2 -how_busy,how long is the wait at chipotle right now,original,avail,0 -goodbye,farewell!,original,bye,2 -thank_you,my gratitude,parrot,bye,2 -goodbye,"bye-bye, my friend",lambada,bye,2 -yes,yeah,original,book,1 -greeting,"hello, good morning",lambada,greet,4 -goodbye,goodbye soon,lambada,bye,2 -yes,yay,lambada,book,1 -yes,you are not wrong about that,original,book,1 -no,no no thanks,parrot,cancel,3 -yes,ya,original,book,1 -no,naw,original,cancel,3 -yes,obviously,parrot,book,1 -no,hell nah,original,cancel,3 -goodbye,i'll go,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -yes,accepted,original,book,1 -no,but it's false,parrot,cancel,3 -calendar_update,take care of my doctor's appointment for march 30th,lambada,resched,5 -greeting,and how's it going?,parrot,greet,4 -cancel_reservation,there's no need to confirm my reservation,parrot,cancel,3 -how_busy,what's the crowd like at olive garden at 7pm?,parrot,avail,0 -date,what's today,original,avail,0 -thank_you,"great, thanks!",original,bye,2 -cancel_reservation,i don't want my reservation,parrot,cancel,3 -goodbye,goodbye to yours,parrot,bye,2 -no,absolutely not,original,cancel,3 -goodbye,i enjoy our chat,lambada,bye,2 -no,negatory,original,cancel,3 -yes,thats right,original,book,1 -thank_you,thank you for all you've done,parrot,bye,2 -how_busy,how long will i have to wait before i go to olive gardens?,parrot,avail,0 -goodbye,catch you later,original,bye,2 -no,no way,original,cancel,3 -yes,approved,original,book,1 -yes,absolutely!,original,book,1 -yes,i agree,original,book,1 -thank_you,thankyou,parrot,bye,2 -how_busy,what do you think about the wait at olive garden?,parrot,avail,0 -no,i'm sorry it's not,parrot,cancel,3 -yes,okay,original,book,1 -cancel_reservation,the reservation i made,parrot,cancel,3 -greeting,how you're treated,parrot,greet,4 -greeting,salutations,parrot,greet,4 -goodbye,bye-bye,original,bye,2 -how_busy,how long will the wait be at 6pm,lambada,avail,0 -yes,so it's true,parrot,book,1 -goodbye,i've been talking with you lately,parrot,bye,2 -how_busy,what's the wait time for macy's?,parrot,avail,0 -reminder_update,please remember something,parrot,resched,5 -no,negatory?,parrot,cancel,3 -yes,not a false statement,parrot,book,1 -yes,"yes, that's affirmative",original,book,1 -how_busy,how long would i have to wait for a table in macaroni and cheese?,parrot,avail,0 -greeting,hey bs,lambada,greet,4 -yes,huh,parrot,book,1 -no,no that's not true,parrot,cancel,3 -greeting,you good?,parrot,greet,4 -yes,it's true,original,book,1 -no,negatory?,parrot,cancel,3 -no,i don't agree,parrot,cancel,3 -how_busy,how long will it take to get seated at tuesday's pizza?,parrot,avail,0 -cancel_reservation,i have to cancel my dinner reservation tonight,parrot,cancel,3 -no,that's wrong,original,cancel,3 -yes,absolutely,original,book,1 -greeting,hiya!,original,greet,4 -greeting,wassup,original,greet,4 -no,nay,original,cancel,3 -no,but it's false,parrot,cancel,3 -goodbye,good bye,original,bye,2 -yes,absolutely!,original,book,1 -greeting,what's happened?,parrot,greet,4 -greeting,ahoy,lambada,greet,4 -thank_you,my sincere thanks,parrot,bye,2 -yes,that's right,original,book,1 -goodbye,later!,original,bye,2 -reminder_update,remind me something,parrot,resched,5 -greeting,how is everything?,parrot,greet,4 -how_busy,what's the wait in red lobster?,parrot,avail,0 -thank_you,thank you,original,bye,2 -greeting,heyo,original,greet,4 -meeting_schedule,i have a meeting with alice scheduled for when,parrot,avail,0 -how_busy,how long can i wait for the macaroni grill?,parrot,avail,0 -greeting,hola,original,greet,4 -calendar,tell me what is showing on my calendar for march 15?,lambada,avail,0 -greeting,are you all right?,parrot,greet,4 -date,you have the date?,parrot,avail,0 -calendar,do you have any scheduled events on my calendar?,parrot,avail,0 -schedule_meeting,could you schedule a meeting with steven?,parrot,book,1 -yes,positive,original,book,1 -no,that's so false,parrot,cancel,3 -greeting,want to know how you're doing?,parrot,greet,4 -no,invalid,original,cancel,3 -no,naw,original,cancel,3 -no,nothing,parrot,cancel,3 -greeting,how's my treatment?,parrot,greet,4 -no,that has to be false,original,cancel,3 -thank_you,thank you again,parrot,bye,2 -no,nothing,parrot,cancel,3 -no,"no, that's not it",original,cancel,3 -reminder_update,can you remind me something?,parrot,resched,5 -no,negative certainly,parrot,cancel,3 -greeting,heyo,original,greet,4 -yes,yeah,original,book,1 -yes,affirmitive,original,book,1 -yes,you're right,original,book,1 -greeting,salutations,parrot,greet,4 -greeting,how the car is doing?,parrot,greet,4 -goodbye,sayonara,original,bye,2 -greeting,nice day,lambada,greet,4 -yes,"yes, please",parrot,book,1 -goodbye,have a nice day?,lambada,bye,2 -schedule_meeting,give us a meeting room for 9am on friday,parrot,book,1 -yes,great,original,book,1 -no,not right,parrot,cancel,3 -no,that's definitely false,original,cancel,3 -greeting,hi,original,greet,4 -no,it's false,parrot,cancel,3 -thank_you,thanks a lot for the answer,original,bye,2 -yes,sure,original,book,1 -cancel_reservation,i have to cancel my dinner reservation,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -calendar_update,erase jeff from my calendar,parrot,resched,5 -greeting,hello bs,parrot,greet,4 -no,that is so false,original,cancel,3 -greeting,how is life?,parrot,greet,4 -yes,accept,parrot,book,1 -yes,TRUE,original,book,1 -greeting,heller,original,greet,4 -thank_you,thanks again,original,bye,2 -goodbye,i'll leave,parrot,bye,2 -meeting_schedule,are there any meetings today with linus?,parrot,avail,0 -yes,yay,lambada,book,1 -date,in three days,parrot,avail,0 -meeting_schedule,show me my meeting schedule,lambada,avail,0 -no,invalid,original,cancel,3 -reminder_update,my cat needs neutered,parrot,resched,5 -yes,not a falsehood,parrot,book,1 -schedule_meeting,let's schedule a meeting,lambada,book,1 -goodbye,bye,original,bye,2 -yes,not false,parrot,book,1 -no,not right,parrot,cancel,3 -greeting,hows it going,lambada,greet,4 -thank_you,appreciated,original,bye,2 -goodbye,goodbye helpful ai devices,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -thank_you,many thank,original,bye,2 -yes,positive,parrot,book,1 -yes,ok,original,book,1 -no,invalid,original,cancel,3 -greeting,how ya been,original,greet,4 -schedule_meeting,how do i apply for meetings?,parrot,book,1 -greeting,good day,original,greet,4 -goodbye,bye!,original,bye,2 -goodbye,buhbye,original,bye,2 -thank_you,the best,parrot,bye,2 -greeting,how's life,original,greet,4 -how_busy,what's the current wait time at macy's?,parrot,avail,0 -no,no?,parrot,cancel,3 -no,no that isn't correct,original,cancel,3 -yes,that is true,lambada,book,1 -greeting,hiya!,original,greet,4 -yes,yes that is true,lambada,book,1 -no,naw,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -how_busy,how long will it be for me to be seated at olive garden,lambada,avail,0 -how_busy,do you think the longhorn steakhouse will be busy at 5 pm,parrot,avail,0 -greeting,hello,original,greet,4 -how_busy,how long will it take for a table in tomato soup?,parrot,avail,0 -greeting,hows it going,lambada,greet,4 -greeting,hola,original,greet,4 -no,i think it's not true,parrot,cancel,3 -reminder_update,make me remember,parrot,resched,5 -date,a year?,parrot,avail,0 -yes,so it's checked,parrot,book,1 -thank_you,okay thank you,parrot,bye,2 -yes,yes that's right,lambada,book,1 -thank_you,it's my debt,parrot,bye,2 -yes,"yes, that's affirmative",original,book,1 -no,it's a false,lambada,cancel,3 -no,naw,original,cancel,3 -no,certainly not,original,cancel,3 -no,no!,original,cancel,3 -goodbye,peace out,original,bye,2 -goodbye,afterward,parrot,bye,2 -cancel_reservation,can you cancel a reservation?,parrot,cancel,3 -yes,"yep, that's true",original,book,1 -goodbye,catch you around,original,bye,2 -how_busy,how long will it take to get a table at bbq,lambada,avail,0 -yes,yep,original,book,1 -meeting_schedule,are there any meetings with suzan today?,parrot,avail,0 -yes,true is my response,original,book,1 -goodbye,goodbye for now,parrot,bye,2 -greeting,hey there,original,greet,4 -no,but it's false,parrot,cancel,3 -goodbye,great talk with you,lambada,bye,2 -schedule_meeting,need a room at 2pm on friday,parrot,book,1 -greeting,hi how's everything going?,parrot,greet,4 -thank_you,thanks for cooperating,parrot,bye,2 -reminder_update,can you remind me later,parrot,resched,5 -calendar,tell me what's on the calendar for saturday,parrot,avail,0 -thank_you,"awesome, thanks",original,bye,2 -no,naw,parrot,cancel,3 -no,not so i think,parrot,cancel,3 -goodbye,good luck,lambada,bye,2 -no,would be a lie,parrot,cancel,3 -calendar,can you check whether i had an appointment on my calendar for an exam?,lambada,avail,0 -cancel_reservation,tell the restaurant i can't?,parrot,cancel,3 -meeting_schedule,are there meetings between 10 and 4 today?,parrot,avail,0 -date,today what date?,parrot,avail,0 -greeting,bonjour,original,greet,4 -thank_you,thank you?,parrot,bye,2 -greeting,hey yai,lambada,greet,4 -thank_you,okay thanks,original,bye,2 -no,i must say no,original,cancel,3 -greeting,"hello, friend",original,greet,4 -greeting,how's my day going?,parrot,greet,4 -no,negative,original,cancel,3 -goodbye,sayonara,original,bye,2 -yes,positive,parrot,book,1 -no,nothing,parrot,cancel,3 -yes,sure,original,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -thank_you,thanks for cooperating,parrot,bye,2 -goodbye,fairwell,original,bye,2 -schedule_meeting,i'd like you to meet with john at 10 am,parrot,book,1 -no,that isn't correct,original,cancel,3 -yes,yep,original,book,1 -cancel_reservation,scrap that dinner reservation,original,cancel,3 -goodbye,cya later,original,bye,2 -greeting,how are things,original,greet,4 -greeting,ai how do you feel?,parrot,greet,4 -thank_you,gracias,original,bye,2 -greeting,ahoy,lambada,greet,4 -thank_you,special thanks to you,original,bye,2 -date,what year?,parrot,avail,0 -yes,confirmed,original,book,1 -cancel_reservation,i would like you to cancel the dinner reservation for williams at the palace tonight,original,cancel,3 -calendar_update,make sure the trip to the zoo is clear on my calendar ,parrot,resched,5 -yes,agreed,original,book,1 -how_busy,how long will i have to wait at the cheese cake factory,lambada,avail,0 -greeting,whats up,original,greet,4 -reminder_update,then i have to be notified to clean the room,parrot,resched,5 -goodbye,maybe next time,parrot,bye,2 -meeting_schedule,do i meet joan today?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -yes,i believe that's true,original,book,1 -yes,that's true,original,book,1 -yes,TRUE,original,book,1 -greeting,good evening,original,greet,4 -goodbye,adios,original,bye,2 -goodbye,for now,parrot,bye,2 -greeting,heller,original,greet,4 -no,negative sure,parrot,cancel,3 -yes,my reply to you is correct,parrot,book,1 -yes,yep,original,book,1 -greeting,how's ai doing?,parrot,greet,4 -goodbye,tootles,original,bye,2 -greeting,hiya!,original,greet,4 -yes,positive,original,book,1 -yes,it'd be great,parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -no,i disagree,parrot,cancel,3 -schedule_meeting,show me the availability of meeting rooms in the afternoon?,parrot,book,1 -yes,yeah,original,book,1 -yes,yes please,original,book,1 -calendar,tell me what's on my calendar for march 10?,parrot,avail,0 -yes,huh huh,parrot,book,1 -greeting,welcome,parrot,greet,4 -greeting,heller,original,greet,4 -no,negatory,original,cancel,3 -yes,roger that,original,book,1 -yes,yep,original,book,1 -how_busy,how busy is iguana at 9 pm,lambada,avail,0 -thank_you,thanks,original,bye,2 -schedule_meeting,are there any meeting rooms available between 4 and 8?,parrot,book,1 -yes,approved,original,book,1 -thank_you,nice,parrot,bye,2 -no,but certainly not,parrot,cancel,3 -meeting_schedule,schedule my meetings for today,lambada,avail,0 -yes,yay,lambada,book,1 -yes,obviously,parrot,book,1 -thank_you,thanks,original,bye,2 -goodbye,tootles?,parrot,bye,2 -greeting,ahoy hoy,original,greet,4 -goodbye,be sure to talk with me soon,parrot,bye,2 -schedule_meeting,you know if there are meeting rooms between 1 and 4?,parrot,book,1 -goodbye,this conversation was great,parrot,bye,2 -no,it's very wrong,parrot,cancel,3 -no,that's totally wrong!,original,cancel,3 -thank_you,i'm thankful,original,bye,2 -goodbye,nice talk,lambada,bye,2 -yes,yes,original,book,1 -goodbye,im leaving,parrot,bye,2 -no,no?,parrot,cancel,3 -no,it's no,parrot,cancel,3 -no,negative,original,cancel,3 -thank_you,nice,parrot,bye,2 -yes,yay,lambada,book,1 -greeting,i need to know how i'm doing,lambada,greet,4 -reminder_update,i need to be reminded,original,resched,5 -reminder_update,remind me to do something?,parrot,resched,5 -thank_you,i'm grateful,original,bye,2 -how_busy,what's the wait time in san teodoros?,parrot,avail,0 -no,it's false,parrot,cancel,3 -no,you are wrong,original,cancel,3 -date,what's the date tomorrow?,parrot,avail,0 -calendar_update,delete events on 1 june,parrot,resched,5 -goodbye,afterward,parrot,bye,2 -how_busy,can i wait at the cheesecake factory?,parrot,avail,0 -goodbye,i'll have to go,parrot,bye,2 -goodbye,peace out,original,bye,2 -greeting,hows it going,lambada,greet,4 -yes,oh yes,original,book,1 -no,nay,original,cancel,3 -how_busy,if you want a table in olive garden how long will it take,parrot,avail,0 -yes,uh-huh,original,book,1 -greeting,whats new,lambada,greet,4 -goodbye,adios,original,bye,2 -no,that's very wrong,parrot,cancel,3 -reminder_update,please add a reminder,lambada,resched,5 -no,negatory,original,cancel,3 -greeting,are you all right?,parrot,greet,4 -yes,accept,parrot,book,1 -schedule_meeting,what is the availability of meeting rooms during the afternoon?,original,book,1 -goodbye,peace,original,bye,2 -greeting,tell me how things are going?,lambada,greet,4 -how_busy,how busy will the chili's be at 6 pm,lambada,avail,0 -goodbye,bye,original,bye,2 -reminder_update,remember to bring checkbook,parrot,resched,5 -goodbye,the chat was great,parrot,bye,2 -how_busy,how busy is mcdonald's right now?,parrot,avail,0 -goodbye,nice talk,lambada,bye,2 -yes,huh,parrot,book,1 -how_busy,what's going on in cheesecake factory?,parrot,avail,0 -thank_you,good job,lambada,bye,2 -thank_you,thank you?,parrot,bye,2 -calendar,do you have any scheduled events on the calendar for september 7th?,parrot,avail,0 -reminder_update,remind me something,parrot,resched,5 -yes,ok,original,book,1 -how_busy,is imbrosio busy at 6 o'clock?,parrot,avail,0 -no,no,lambada,cancel,3 -calendar,what do i have planned for march 2nd in my calendar?,parrot,avail,0 -yes,correct,original,book,1 -yes,you are correct,original,book,1 -thank_you,okay thanks,original,bye,2 -yes,TRUE,original,book,1 -date,what's my date?,parrot,avail,0 -greeting,how ife treats you?,parrot,greet,4 -greeting,what's new?,parrot,greet,4 -date,which day is it today,original,avail,0 -greeting,good morning,parrot,greet,4 -yes,affirmitive,original,book,1 -no,no!,original,cancel,3 -goodbye,say goodbye,parrot,bye,2 -yes,certainly,parrot,book,1 -yes,facts,original,book,1 -date,what's today?,parrot,avail,0 -thank_you,thanks please,original,bye,2 -date,what date?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -calendar_update,how do i make an appointment for my anniversary on may 4,lambada,resched,5 -yes,"yes, please",parrot,book,1 -goodbye,we'll talk later ai,original,bye,2 -goodbye,thanks for the chat,parrot,bye,2 -yes,10-Apr,original,book,1 -greeting,aho,parrot,greet,4 -no,thanks no,parrot,cancel,3 -schedule_meeting,book a meeting room for meeting at 5pm on tuesday,lambada,book,1 -how_busy,is a restaurant crowded at night?,parrot,avail,0 -greeting,salutations!,original,greet,4 -goodbye,goodbye bye,parrot,bye,2 -thank_you,thanks!,original,bye,2 -greeting,how is it going?,parrot,greet,4 -greeting,nice day,lambada,greet,4 -date,what date is it today?,original,avail,0 -greeting,whats up?,parrot,greet,4 -greeting,are you doing well?,original,greet,4 -greeting,hola,original,greet,4 -greeting,hiya!,original,greet,4 -yes,positive,parrot,book,1 -no,that's incorrect!,original,cancel,3 -goodbye,good seeing you,original,bye,2 -thank_you,oh sweet thanks,original,bye,2 -thank_you,thankyou,parrot,bye,2 -cancel_reservation,my dinner reservation won't be required,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -yes,yep,original,book,1 -greeting,hello there!,original,greet,4 -yes,accept,parrot,book,1 -yes,correct,original,book,1 -calendar_update,delete all calendar entries on 3 march,parrot,resched,5 -yes,uh-huh,original,book,1 -goodbye,fairwell,original,bye,2 -meeting_schedule,meetings today,original,avail,0 -meeting_schedule,what are my meetings today?,parrot,avail,0 -how_busy,wait in the restaurant?,parrot,avail,0 -thank_you,for my help i'm grateful,parrot,bye,2 -how_busy,how long will the restaurant be before we go?,parrot,avail,0 -no,nope that's not true,parrot,cancel,3 -thank_you,you've tried,parrot,bye,2 -greeting,hola,original,greet,4 -how_busy,how long before i can eat chic fil,parrot,avail,0 -greeting,hello there!,original,greet,4 -yes,approved,original,book,1 -goodbye,bye!,original,bye,2 -goodbye,until next time,original,bye,2 -meeting_schedule,when's the meeting today?,parrot,avail,0 -goodbye,adios!,original,bye,2 -thank_you,appreciated,original,bye,2 -thank_you,thanks very much for your answer,parrot,bye,2 -no,i don't agree,parrot,cancel,3 -how_busy,can you tell me how busy chipotle will be at nine tonight?,original,avail,0 -no,negation,parrot,cancel,3 -goodbye,very happy to talk to you,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -greeting,how's idy?,parrot,greet,4 -goodbye,bye,original,bye,2 -goodbye,goodbye!,original,bye,2 -goodbye,i'm gone,parrot,bye,2 -no,negating,parrot,cancel,3 -goodbye,bye!,original,bye,2 -greeting,good morning,parrot,greet,4 -no,no please,parrot,cancel,3 -greeting,how do you feel,original,greet,4 -no,naw,parrot,cancel,3 -thank_you,"great, thanks!",original,bye,2 -yes,okay,original,book,1 -no,not that,original,cancel,3 -thank_you,i'm thankful,original,bye,2 -no,no way,original,cancel,3 -yes,yeah,original,book,1 -schedule_meeting,could you schedule a meeting room for 4:00 on thursday,original,book,1 -greeting,how are things?,parrot,greet,4 -greeting,salutation,parrot,greet,4 -greeting,nice day,lambada,greet,4 -schedule_meeting,whether i can have a meeting room between 10 and 12,parrot,book,1 -greeting,hi how's everything going?,parrot,greet,4 -goodbye,"syonara, ai device!",original,bye,2 -date,what's the date from 100 days,lambada,avail,0 -how_busy,how long would the wait be at the restaurant?,parrot,avail,0 -yes,just right,parrot,book,1 -yes,correct,original,book,1 -schedule_meeting,how can you set up a meeting,lambada,book,1 -calendar_update,make sure my events are set for march 20,parrot,resched,5 -yes,yeah,original,book,1 -yes,huh,parrot,book,1 -goodbye,goodbye,original,bye,2 -no,that is untrue,original,cancel,3 -greeting,how's the ai?,parrot,greet,4 -greeting,need to know what you're doing,parrot,greet,4 -schedule_meeting,can you create a meeting with sarah smith?,lambada,book,1 -no,no it's not good,parrot,cancel,3 -schedule_meeting,reserve a meeting room for 5pm on friday,original,book,1 -yes,positive,parrot,book,1 -no,no that's wrong,original,cancel,3 -greeting,hiya,original,greet,4 -how_busy,can i know how long the wait is at red lobster?,lambada,avail,0 -no,that is wrong,original,cancel,3 -schedule_meeting,i want a meeting room open between 4 and 5pm,parrot,book,1 -greeting,hey,original,greet,4 -yes,agreed,original,book,1 -thank_you,thank you,original,bye,2 -reminder_update,you want me to remind you to pay taxes tomorrow?,parrot,resched,5 -yes,good,parrot,book,1 -thank_you,"nice, excellent!",original,bye,2 -yes,i can confirm,parrot,book,1 -yes,accept,parrot,book,1 -greeting,hey fellows,parrot,greet,4 -no,i disagree,parrot,cancel,3 -no,negating,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -no,negation,parrot,cancel,3 -yes,seems true,parrot,book,1 -no,so that's no,parrot,cancel,3 -yes,okay,original,book,1 -yes,it's logical,parrot,book,1 -how_busy,can you tell me if i should expect long wait times for a taqueria meal at 7 am?,lambada,avail,0 -goodbye,farewell!,original,bye,2 -no,"please, no",original,cancel,3 -yes,"yes, that's it",original,book,1 -greeting,heyo,original,greet,4 -thank_you,appreciated,original,bye,2 -date,what date?,parrot,avail,0 -greeting,bonjour,original,greet,4 -yes,"correct, it is affirmative",original,book,1 -yes,"yeah, that's right",original,book,1 -yes,huh,parrot,book,1 -how_busy,how long will it take to sit in the restaurant?,parrot,avail,0 -reminder_update,set up a new reminder to alert me when it's time to get rid of the trash -,parrot,resched,5 -greeting,bonjour,original,greet,4 -yes,it's positive,parrot,book,1 -cancel_reservation,please cancel my lunch reservation,lambada,cancel,3 -thank_you,"thanks, i appreciate it",original,bye,2 -date,what will be tomorrow?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -meeting_schedule,tell me how many meetings i have with pete today?,parrot,avail,0 -thank_you,your answer was pleasant,parrot,bye,2 -greeting,how it goes?,parrot,greet,4 -date,what day?,parrot,avail,0 -yes,good,parrot,book,1 -thank_you,i appeciate it,parrot,bye,2 -calendar_update,erase this event from my calendar,lambada,resched,5 -yes,not a falsehood,parrot,book,1 -yes,perfect,parrot,book,1 -greeting,heller,original,greet,4 -date,which day is next,parrot,avail,0 -how_busy,how busy is the restaurant,lambada,avail,0 -date,what is my date today?,parrot,avail,0 -goodbye,peace,original,bye,2 -date,give me today's date,original,avail,0 -goodbye,fairwell,original,bye,2 -meeting_schedule,do you have meetings between 3 and 5 pm today?,parrot,avail,0 -goodbye,"thanks for the chat, bye",lambada,bye,2 -reminder_update,please set a reminder for my hair appointment,parrot,resched,5 -how_busy,what's the average wait time at olive garden right now?,parrot,avail,0 -yes,facts,original,book,1 -how_busy,what's the table wait at applebees,original,avail,0 -yes,TRUE,original,book,1 -no,nothing,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -greeting,hola!,original,greet,4 -how_busy,i want to know how busy the olive garden is at 7pm,parrot,avail,0 -goodbye,you can talk later,parrot,bye,2 -greeting,how's idy doing,lambada,greet,4 -greeting,heyo,original,greet,4 -goodbye,for now,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -thank_you,"great, thanks!",original,bye,2 -greeting,salutations!,original,greet,4 -date,what's the date now,parrot,avail,0 -no,naw,original,cancel,3 -yes,ya,original,book,1 -cancel_reservation,please cancel my reservation at the loft,lambada,cancel,3 -no,that is not really the case,lambada,cancel,3 -no,you got that wrong,original,cancel,3 -calendar,do you have anything on my calendar for may 3?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -reminder_update,i need a reminder,original,resched,5 -thank_you,"great, thanks!",original,bye,2 -thank_you,gracias,original,bye,2 -date,what's the day of the month?,parrot,avail,0 -thank_you,okay thanks,original,bye,2 -calendar_update,erase jeff's meeting on my calendar,parrot,resched,5 -how_busy,how busy is the olive garden at 4?,parrot,avail,0 -meeting_schedule,do i have any meetings scheduled for today between 4 and 5?,lambada,avail,0 -no,it's no,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -thank_you,nice,parrot,bye,2 -no,that seems wrong,lambada,cancel,3 -thank_you,thank you for trying it,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -greeting,i'll tell you how it's going,parrot,greet,4 -goodbye,farewell,original,bye,2 -reminder_update,remember to remember later,parrot,resched,5 -no,that's no,parrot,cancel,3 -greeting,hola,original,greet,4 -yes,"that's right, it's true",lambada,book,1 -no,"no, that is wrong",original,cancel,3 -greeting,what's my day like?,parrot,greet,4 -greeting,heyo,original,greet,4 -no,"no, that's not right",original,cancel,3 -thank_you,thank you again,parrot,bye,2 -calendar_update,please add an event to my calendar for the 1st of september,lambada,resched,5 -greeting,"hi, ai",original,greet,4 -meeting_schedule,whose meetings will be held in san francisco,parrot,avail,0 -goodbye,adios!,original,bye,2 -goodbye,bye!,original,bye,2 -how_busy,how long is the wait at chuck o's,lambada,avail,0 -goodbye,tootles,original,bye,2 -no,nope,original,cancel,3 -no,negating,parrot,cancel,3 -goodbye,talk later,original,bye,2 -no,no that's not true,parrot,cancel,3 -yes,yeah,original,book,1 -yes,i'm going to tell you tes,parrot,book,1 -greeting,whats up with you,original,greet,4 -how_busy,how long will the chili's wait?,parrot,avail,0 -goodbye,go easy,parrot,bye,2 -no,it's not the right answer,parrot,cancel,3 -yes,TRUE,lambada,book,1 -thank_you,you have done well,lambada,bye,2 -goodbye,nice talk,lambada,bye,2 -calendar,please tell me what's on my calendar for november 6th,parrot,avail,0 -no,that is false,original,cancel,3 -no,not happening,original,cancel,3 -goodbye,goodbye!,original,bye,2 -calendar,what's on my calendar for march 3rd?,parrot,avail,0 -no,negative certainly,parrot,cancel,3 -thank_you,i appeciate it,parrot,bye,2 -date,current day,parrot,avail,0 -greeting,bonjour,original,greet,4 -greeting,"hi, how are you doing",lambada,greet,4 -cancel_reservation,please cancel my reservation at the oyster bar,parrot,cancel,3 -how_busy,how long would it take to wait at chili's,parrot,avail,0 -no,that's no way,parrot,cancel,3 -how_busy,what is the average wait time to be seated for dinner at rouge?,original,avail,0 -no,that's negative,parrot,cancel,3 -yes,agreed,original,book,1 -date,what's next month and day?,parrot,avail,0 -schedule_meeting,please add a meeting for 9,lambada,book,1 -greeting,welcome,parrot,greet,4 -goodbye,catch you around,original,bye,2 -thank_you,so grateful,parrot,bye,2 -yes,indeed,parrot,book,1 -greeting,hola,original,greet,4 -greeting,just wanted to say hi,original,greet,4 -how_busy,how long will it take to get a seat in the clean restaurant?,parrot,avail,0 -greeting,hey hey!,original,greet,4 -yes,sure,original,book,1 -yes,certainly,parrot,book,1 -goodbye,nice talk,lambada,bye,2 -no,nothing,parrot,cancel,3 -yes,just right,parrot,book,1 -yes,confirmed,original,book,1 -yes,ok,original,book,1 -yes,sure thing,original,book,1 -goodbye,bye bye,lambada,bye,2 -date,give me the current date,lambada,avail,0 -yes,agreed,original,book,1 -yes,good,parrot,book,1 -calendar,list the restaurants on my calendar for march 8?,parrot,avail,0 -reminder_update,let me remember,parrot,resched,5 -no,no way,original,cancel,3 -goodbye,i'm out,parrot,bye,2 -no,no it's not,parrot,cancel,3 -thank_you,thank you for doing what you did,lambada,bye,2 -goodbye,have a good one?,original,bye,2 -goodbye,adios!,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -goodbye,bye,original,bye,2 -how_busy,how busy will the cheesecake factory be around 8am,lambada,avail,0 -goodbye,regards,original,bye,2 -thank_you,why thank you?,original,bye,2 -greeting,how are you today?,parrot,greet,4 -how_busy,how busy is teh hut at 6 pm,lambada,avail,0 -goodbye,"goodbye, ai assistant",original,bye,2 -greeting,how're you?,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -thank_you,awesome thanks,parrot,bye,2 -goodbye,bye now,original,bye,2 -thank_you,thanks so much for everything you've done,parrot,bye,2 -calendar,show me the calendar?,parrot,avail,0 -goodbye,bye!,original,bye,2 -greeting,hola!,original,greet,4 -goodbye,i just had a good conversation,parrot,bye,2 -yes,indeed,original,book,1 -thank_you,thank you so much for everything,parrot,bye,2 -yes,certainly,parrot,book,1 -reminder_update,remind me pay taxes on monday,parrot,resched,5 -reminder_update,make me remember to pay my rent,parrot,resched,5 -how_busy,how busy is imanas?,parrot,avail,0 -how_busy,can you tell me how busy ihop will be at 4:30 pm?,lambada,avail,0 -greeting,how's life,original,greet,4 -greeting,aho,parrot,greet,4 -goodbye,see ya,lambada,bye,2 -goodbye,bye bye,lambada,bye,2 -reminder_update,let me know,parrot,resched,5 -calendar,what do you have planned for january 19?,parrot,avail,0 -schedule_meeting,how is the meeting scheduled?,parrot,book,1 -cancel_reservation,is it possible to cancel the reservation?,parrot,cancel,3 -yes,yay,lambada,book,1 -yes,yep,original,book,1 -greeting,heyo,original,greet,4 -how_busy,is she busy at 5pm?,parrot,avail,0 -goodbye,my way,parrot,bye,2 -no,negatory?,parrot,cancel,3 -yes,absolutely!,original,book,1 -no,that's a negation,parrot,cancel,3 -date,what's today?,parrot,avail,0 -yes,uh-huh,original,book,1 -thank_you,"great, thanks!",original,bye,2 -yes,"yes, that is factual",original,book,1 -how_busy,how busy this restaurant is?,parrot,avail,0 -thank_you,i would like to thank you for my response,lambada,bye,2 -goodbye,farewell!,original,bye,2 -thank_you,"nice, excellent!",original,bye,2 -how_busy,how long does it take to get seated in the clean restaurant?,parrot,avail,0 -no,negating,parrot,cancel,3 -schedule_meeting,tell me the best way to schedule a meeting?,parrot,book,1 -goodbye,"great talk, thanks",original,bye,2 -yes,i just said that,parrot,book,1 -greeting,wassup,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -how_busy,how long before dinner,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -yes,huh,parrot,book,1 -reminder_update,i'd like to remind you,parrot,resched,5 -how_busy,how long will i have to wait to get into a table at san francisco's,lambada,avail,0 -no,is very false,parrot,cancel,3 -greeting,how are you treated?,parrot,greet,4 -yes,TRUE,original,book,1 -how_busy,how busy is the cheesecake factory at 4 pm,lambada,avail,0 -no,not that,original,cancel,3 -yes,not a falsehood,parrot,book,1 -no,it seems not,original,cancel,3 -no,that's erroneous,parrot,cancel,3 -yes,absolutely!,original,book,1 -greeting,wake up ai,parrot,greet,4 -cancel_reservation,get a salad off,parrot,cancel,3 -goodbye,i’m leaving-goodbye!,original,bye,2 -goodbye,"bye-bye, my friend",lambada,bye,2 -thank_you,you've helped,parrot,bye,2 -goodbye,im leaving,parrot,bye,2 -schedule_meeting,a meeting is needed,parrot,book,1 -calendar_update,i have an appointment that i have to cancel for march 18th,parrot,resched,5 -yes,positive,parrot,book,1 -meeting_schedule,let me hear all meetings for today,original,avail,0 -meeting_schedule,when will i meet roger?,parrot,avail,0 -yes,accept,parrot,book,1 -schedule_meeting,are there meeting rooms between 11 and 12?,parrot,book,1 -greeting,you're all right?,parrot,greet,4 -meeting_schedule,tell me the schedule of my meeting?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -goodbye,i leave now,parrot,bye,2 -yes,my answer is yes,parrot,book,1 -no,nay,original,cancel,3 -yes,positive,parrot,book,1 -yes,right,parrot,book,1 -greeting,what's happened?,parrot,greet,4 -date,what's the date?,parrot,avail,0 -no,negative,original,cancel,3 -calendar,is there anything scheduled for january 1?,parrot,avail,0 -thank_you,good job thanks,parrot,bye,2 -greeting,hey hey!,original,greet,4 -thank_you,i appreciate your gesture,lambada,bye,2 -yes,affirmitive,original,book,1 -no,no thanks,original,cancel,3 -greeting,how're you?,parrot,greet,4 -calendar_update,delete the event called nip's bachelorette party from my calendar,lambada,resched,5 -goodbye,get there soon,lambada,bye,2 -greeting,get up ai,parrot,greet,4 -no,is it a lie?,parrot,cancel,3 -yes,not a lie,parrot,book,1 -yes,ya,original,book,1 -yes,certainly,parrot,book,1 -greeting,"hello, what's up",original,greet,4 -date,today?,parrot,avail,0 -greeting,have you been good?,original,greet,4 -goodbye,no problem take it easy,parrot,bye,2 -no,please no,parrot,cancel,3 -no,what you've said is false?,parrot,cancel,3 -no,"no, that's incorrect",original,cancel,3 -yes,yes,original,book,1 -yes,positive,parrot,book,1 -no,not that,original,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -no,that's erroneous,parrot,cancel,3 -goodbye,im leaving,parrot,bye,2 -thank_you,thanks please,original,bye,2 -no,negative,original,cancel,3 -no,negation,parrot,cancel,3 -no,negatory,original,cancel,3 -yes,it's logical,parrot,book,1 -goodbye,i'm going,parrot,bye,2 -greeting,aloha,original,greet,4 -yes,im sure you're true,parrot,book,1 -yes,oh-huh,parrot,book,1 -yes,yes,original,book,1 -thank_you,i really appreciate it,parrot,bye,2 -no,that is untrue,original,cancel,3 -goodbye,i'm out,parrot,bye,2 -greeting,welcome,parrot,greet,4 -goodbye,i'll leave,parrot,bye,2 -goodbye,farewell!,original,bye,2 -yes,accepted,original,book,1 -yes,not false,parrot,book,1 -how_busy,how long is the wait for a table at the red robin?,parrot,avail,0 -no,negative definitely,parrot,cancel,3 -goodbye,you're done,parrot,bye,2 -no,i'm saying no,parrot,cancel,3 -no,not right,parrot,cancel,3 -yes,certainly,parrot,book,1 -no,i prefer not,parrot,cancel,3 -greeting,aho,parrot,greet,4 -no,nope,original,cancel,3 -greeting,ahoy,lambada,greet,4 -how_busy,when do i need to wait for a table at ihop right now?,parrot,avail,0 -goodbye,cya later,original,bye,2 -thank_you,nice,parrot,bye,2 -goodbye,you're done,parrot,bye,2 -calendar_update,i want you to cancel the event on may 3,lambada,resched,5 -greeting,yo,original,greet,4 -calendar_update,erase the event on friday on my calendar,lambada,resched,5 -yes,ya,original,book,1 -thank_you,appreciated,original,bye,2 -yes,definitely,original,book,1 -how_busy,can i see what the wait will be at chili's around 7pm?,parrot,avail,0 -greeting,how you are,original,greet,4 -greeting,what's up?,parrot,greet,4 -greeting,what's happening,original,greet,4 -yes,obviously,parrot,book,1 -how_busy,how long does it take to wait in olive gardens?,parrot,avail,0 -no,that's incorrect!,original,cancel,3 -no,nada,original,cancel,3 -thank_you,again thanks,parrot,bye,2 -date,what's the date today,original,avail,0 -goodbye,goodbye soon,lambada,bye,2 -goodbye,goodbye later,parrot,bye,2 -yes,i say yes,lambada,book,1 -greeting,how's my family?,parrot,greet,4 -thank_you,you're welcome,parrot,bye,2 -yes,certainly,parrot,book,1 -greeting,how you are?,parrot,greet,4 -greeting,hi how are things going?,parrot,greet,4 -how_busy,how long does it take to get a table in chili's?,parrot,avail,0 -greeting,are you doing good?,lambada,greet,4 -yes,that would be great,original,book,1 -how_busy,what should i expect for a taqueria meal at 7am?,parrot,avail,0 -no,it's a no,original,cancel,3 -no,not really,original,cancel,3 -date,what's tomorrow on the calendar?,parrot,avail,0 -goodbye,be careful then,lambada,bye,2 -no,it seems wrong,parrot,cancel,3 -yes,ya,original,book,1 -yes,facts,original,book,1 -reminder_update,please remember me at a later time,parrot,resched,5 -no,no thank you,original,cancel,3 -how_busy,how long will the wait be if we want a tagliatelle pizza at 8pm,lambada,avail,0 -how_busy,is mcdonalds busy?,parrot,avail,0 -goodbye,cya later,original,bye,2 -goodbye,later!,original,bye,2 -goodbye,farewell!,original,bye,2 -calendar,what do you have scheduled for february 28?,parrot,avail,0 -how_busy,how busy is mcdonald's around 7pm,parrot,avail,0 -greeting,salutations,parrot,greet,4 -no,and i'm sorry for the wrong statement,parrot,cancel,3 -thank_you,awesome thank you,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -goodbye,take a break,parrot,bye,2 -greeting,how are you doing,original,greet,4 -calendar,what is on my schedule for tomorrow?,original,avail,0 -goodbye,i need to go,lambada,bye,2 -yes,of course,original,book,1 -yes,uh-huh,original,book,1 -yes,huh,parrot,book,1 -reminder_update,remind me,original,resched,5 -no,naw,original,cancel,3 -goodbye,my way,parrot,bye,2 -calendar_update,clear my calendar for may 9th,lambada,resched,5 -no,no,lambada,cancel,3 -meeting_schedule,when's my meeting today?,parrot,avail,0 -no,that's a negatory,original,cancel,3 -goodbye,buhbye now,lambada,bye,2 -goodbye,i'm out,parrot,bye,2 -greeting,what's new here?,parrot,greet,4 -yes,confirmed,original,book,1 -goodbye,", goodbye",lambada,bye,2 -thank_you,again thanks,parrot,bye,2 -yes,it'll be yes,parrot,book,1 -greeting,and what's up?,parrot,greet,4 -how_busy,is the wait at the cheesecake factory busy around 11?,parrot,avail,0 -no,nada,original,cancel,3 -no,false sure,parrot,cancel,3 -yes,is true,parrot,book,1 -goodbye,get there soon,lambada,bye,2 -no,no?,parrot,cancel,3 -calendar,look at my calendar for upcoming appointments,parrot,avail,0 -greeting,salutations,parrot,greet,4 -no,no?,parrot,cancel,3 -goodbye,bye!,original,bye,2 -greeting,how's this going?,parrot,greet,4 -thank_you,i appeciate it,parrot,bye,2 -date,in three days what will be my wedding date?,parrot,avail,0 -greeting,heyo,original,greet,4 -date,calender says tomorrow is,original,avail,0 -date,what the day?,parrot,avail,0 -yes,confirm,original,book,1 -thank_you,i'm glad you responded,parrot,bye,2 -how_busy,what is the expected wait time for a table in olive garden at 6pm?,parrot,avail,0 -no,it seems not,original,cancel,3 -no,so that's no,parrot,cancel,3 -no,please do not agree,parrot,cancel,3 -how_busy,how long will i wait at the outback steakhouse?,parrot,avail,0 -date,in 10 days what will it be?,parrot,avail,0 -schedule_meeting,is it possible to schedule a meeting room for interviews on thursday?,parrot,book,1 -yes,confirm,original,book,1 -yes,positive,parrot,book,1 -yes,yup,original,book,1 -calendar,what's my schedule for thursday 14?,parrot,avail,0 -cancel_reservation,"hey siri, please cancel my reservation at the loft for 5",original,cancel,3 -goodbye,buhbye,original,bye,2 -meeting_schedule,is there any meetings on my calendar?,parrot,avail,0 -greeting,hey there,original,greet,4 -how_busy,how busy is iman at 8 o'clock?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -goodbye,bye,original,bye,2 -how_busy,how long is the wait at the ihop at noon?,parrot,avail,0 -goodbye,sign off,parrot,bye,2 -no,that is false,original,cancel,3 -greeting,yo,original,greet,4 -greeting,and what's up?,parrot,greet,4 -no,no longer valid,parrot,cancel,3 -meeting_schedule,what's the meeting today?,parrot,avail,0 -no,not good,parrot,cancel,3 -calendar,tell me what we're doing today,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -yes,"yes, please",parrot,book,1 -date,please let me know what the date will be in three days,parrot,avail,0 -greeting,well hello,original,greet,4 -goodbye,see ya,lambada,bye,2 -goodbye,goodbye,original,bye,2 -date,what'll it be tomorrow?,parrot,avail,0 -how_busy,show me how long it will take to get a table at the red lobster?,parrot,avail,0 -goodbye,"thanks, bye",original,bye,2 -goodbye,talk to you later,original,bye,2 -no,that’s actually wrong,original,cancel,3 -goodbye,"thanks, bye",original,bye,2 -greeting,hey yai,lambada,greet,4 -yes,ya,original,book,1 -how_busy,how busy is olive garden around 5 pm,lambada,avail,0 -date,what month is today?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -no,naw,parrot,cancel,3 -meeting_schedule,the meetings today,parrot,avail,0 -thank_you,well done,parrot,bye,2 -calendar,did you put an appointment on my calendar for an exam?,parrot,avail,0 -goodbye,bye,original,bye,2 -yes,agreed,original,book,1 -greeting,wanted to say hello,parrot,greet,4 -greeting,ahoy,lambada,greet,4 -greeting,how's my day going?,parrot,greet,4 -yes,yup,original,book,1 -date,in 14 days?,parrot,avail,0 -no,not really,original,cancel,3 -no,no,lambada,cancel,3 -no,"please, no",original,cancel,3 -yes,indeed,original,book,1 -calendar,do you have any events planned for march 23rd?,parrot,avail,0 -reminder_update,give me a reminder to take care of the car,parrot,resched,5 -yes,confirm,original,book,1 -thank_you,thanks!,original,bye,2 -goodbye,bye!,original,bye,2 -greeting,hello bs,parrot,greet,4 -meeting_schedule,give me the date and time of my meeting with dr,parrot,avail,0 -yes,affirmitive,original,book,1 -greeting,what's up,original,greet,4 -greeting,ahoy,lambada,greet,4 -goodbye,nice chat today,lambada,bye,2 -yes,ya,original,book,1 -goodbye,fairwell?,parrot,bye,2 -yes,you are correct,original,book,1 -no,no,lambada,cancel,3 -no,negatory?,parrot,cancel,3 -no,it's so bad,parrot,cancel,3 -no,no,lambada,cancel,3 -goodbye,i'm leaving,parrot,bye,2 -thank_you,thank you?,parrot,bye,2 -goodbye,for now,parrot,bye,2 -yes,a fact,parrot,book,1 -no,no please,parrot,cancel,3 -thank_you,i appreciate that,original,bye,2 -reminder_update,i need a reminder,original,resched,5 -no,nothing,parrot,cancel,3 -yes,"yes, that's accurate",original,book,1 -yes,ya,original,book,1 -greeting,nice day,lambada,greet,4 -goodbye,have to go now,parrot,bye,2 -calendar,what's happening on may 3rd,original,avail,0 -no,it's a no,original,cancel,3 -yes,"yes, you got it",original,book,1 -no,that's no,parrot,cancel,3 -yes,huh,parrot,book,1 -thank_you,thanks very much for the help,parrot,bye,2 -goodbye,bye!,original,bye,2 -no,no longer valid,parrot,cancel,3 -thank_you,many thanks,original,bye,2 -meeting_schedule,when's the meeting?,parrot,avail,0 -yes,definitely,original,book,1 -yes,that is totally true,original,book,1 -thank_you,i'm glad you did it for me,parrot,bye,2 -greeting,well hello,original,greet,4 -thank_you,you helped me,parrot,bye,2 -goodbye,great talk,lambada,bye,2 -meeting_schedule,are there meetings between 2 and 3 o'clock?,parrot,avail,0 -date,date tomorrow,parrot,avail,0 -yes,obviously,parrot,book,1 -how_busy,list the waiting hours in china?,parrot,avail,0 -yes,thats right,original,book,1 -greeting,have you felt?,parrot,greet,4 -how_busy,how busy is the restaurant?,parrot,avail,0 -no,no no no,parrot,cancel,3 -how_busy,how long will the restaurant be open?,parrot,avail,0 -yes,good,parrot,book,1 -schedule_meeting,can you schedule a meeting with damon for a 1?,parrot,book,1 -yes,ok,original,book,1 -no,"no, that is invalid",original,cancel,3 -reminder_update,keep checking the steak,parrot,resched,5 -yes,i can tell you,parrot,book,1 -greeting,what's new?,parrot,greet,4 -meeting_schedule,meetings today,original,avail,0 -goodbye,goodbye,original,bye,2 -how_busy,tell me the time to wait at the caprese steak house?,parrot,avail,0 -yes,okay,original,book,1 -greeting,have to know what's going on,parrot,greet,4 -goodbye,a good talk,parrot,bye,2 -how_busy,is the steakhouse very busy around 8:00 pm?,lambada,avail,0 -greeting,"hello, what's up",original,greet,4 -thank_you,you're welcome,parrot,bye,2 -no,nothing good,parrot,cancel,3 -reminder_update,make me remember to brush my teeth,parrot,resched,5 -no,that's so negative,parrot,cancel,3 -thank_you,okay thanks,original,bye,2 -goodbye,later,original,bye,2 -goodbye,sayonara,original,bye,2 -no,so that's no,parrot,cancel,3 -yes,that's absolutely true,parrot,book,1 -date,in 9 days?,parrot,avail,0 -yes,TRUE,original,book,1 -calendar,what's on january 1st?,parrot,avail,0 -date,current day,parrot,avail,0 -yes,yay,lambada,book,1 -meeting_schedule,are any meetings booked today?,parrot,avail,0 -thank_you,you answered my question,parrot,bye,2 -no,that's false,original,cancel,3 -thank_you,many thanks,original,bye,2 -greeting,how is it going,original,greet,4 -date,what's going on today?,parrot,avail,0 -date,calender says tomorrow is tomorrow,parrot,avail,0 -yes,definitely,original,book,1 -how_busy,the average busy hour for chili is about 5,parrot,avail,0 -how_busy,how busy will red robin be at 9 o'clock?,parrot,avail,0 -yes,affirmitive,original,book,1 -how_busy,how busy is chili's around 7pm,lambada,avail,0 -calendar,what is my next dentist appointment?,parrot,avail,0 -meeting_schedule,what's my scheduled meeting today?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -how_busy,i want to know how busy chili will be at 730,parrot,avail,0 -calendar,what's on my schedule for march 3rd,lambada,avail,0 -schedule_meeting,can you help me plan a meeting?,parrot,book,1 -goodbye,see ya,original,bye,2 -yes,you are yes,lambada,book,1 -thank_you,thankyou,parrot,bye,2 -yes,huh,parrot,book,1 -goodbye,catch you later,original,bye,2 -cancel_reservation,i need you to cancel my reservation for 8 at pat's,lambada,cancel,3 -no,that's wrong,original,cancel,3 -no,this is false,parrot,cancel,3 -date,what year?,parrot,avail,0 -goodbye,"talk to you soon, bye!",original,bye,2 -no,so that's no,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -how_busy,how long will i have to wait to be seated at ookla pizza?,parrot,avail,0 -date,date please,original,avail,0 -no,that's not true,original,cancel,3 -date,what is the day?,original,avail,0 -goodbye,later,original,bye,2 -no,negative,original,cancel,3 -how_busy,how long do i have to wait for a table at ehi's,parrot,avail,0 -yes,accept,parrot,book,1 -how_busy,is macy's busy?,parrot,avail,0 -yes,sure,original,book,1 -how_busy,i want to know how busy rubin's will be at around 8 pm,lambada,avail,0 -no,negating,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -no,"no, that's incorrect",original,cancel,3 -goodbye,i had a good time talking to you,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -thank_you,nice,parrot,bye,2 -goodbye,get there soon,lambada,bye,2 -yes,absolutely,original,book,1 -greeting,hey bs,lambada,greet,4 -no,that's overwhelmingly negative,parrot,cancel,3 -no,no?,parrot,cancel,3 -how_busy,are there queues at the cheese shop around 3 pm,parrot,avail,0 -no,that's incorrect!,original,cancel,3 -goodbye,later gater,original,bye,2 -how_busy,are red lobster guys really busy around 11 pm?,parrot,avail,0 -how_busy,how long will i wait for a table at the red lobster,lambada,avail,0 -cancel_reservation,the reservation i created is no longer needed,parrot,cancel,3 -yes,definitely,original,book,1 -greeting,nice day,lambada,greet,4 -calendar_update,i have to put my dentist appointment on my calendar for tomorrow,parrot,resched,5 -greeting,hi there,original,greet,4 -thank_you,thankyou,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -no,i'm saying no,parrot,cancel,3 -how_busy,how busy is ruby at 9 pm,lambada,avail,0 -no,that is certainly not the case,lambada,cancel,3 -thank_you,"thanks for doing that, i appreciate it",lambada,bye,2 -thank_you,thanks,original,bye,2 -yes,"yes, that's confirmed",original,book,1 -thank_you,you've tried,parrot,bye,2 -greeting,how's ayi doing?,parrot,greet,4 -schedule_meeting,please book a meeting room for thursday at 4pm,parrot,book,1 -goodbye,i enjoyed our goodbye talk,parrot,bye,2 -yes,say positive,parrot,book,1 -no,no,lambada,cancel,3 -date,in 10 days?,parrot,avail,0 -goodbye,later,original,bye,2 -thank_you,you're the best!,original,bye,2 -cancel_reservation,get a salad off,parrot,cancel,3 -how_busy,can you tell me how crowded the red lobster is?,parrot,avail,0 -greeting,how's that hanging?,parrot,greet,4 -how_busy,how long would i have to wait in the restaurant for?,parrot,avail,0 -no,that's wrong,original,cancel,3 -no,that's absolutely false,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -date,please share today's date,original,avail,0 -greeting,hows are ya,original,greet,4 -yes,accepted,original,book,1 -no,false sure,parrot,cancel,3 -no,i'm afraid not,parrot,cancel,3 -how_busy,how busy is the restaurant right now,lambada,avail,0 -no,no?,parrot,cancel,3 -goodbye,later thanks for the chat,parrot,bye,2 -goodbye,send a goodbye,lambada,bye,2 -no,that's wrong,original,cancel,3 -greeting,hola!,original,greet,4 -no,ill pass,original,cancel,3 -yes,huh,parrot,book,1 -yes,ya,original,book,1 -calendar,tell me what's on my calendar for march 19th?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -goodbye,good talking to you,lambada,bye,2 -how_busy,is mcdonald's busy at 9 o'clock?,parrot,avail,0 -no,definitely not,original,cancel,3 -yes,perfect,parrot,book,1 -goodbye,fairwell,original,bye,2 -how_busy,tell me the time to wait in the outback steakhouse?,parrot,avail,0 -yes,that is affirmative,original,book,1 -how_busy,is ihop busy?,parrot,avail,0 -yes,approved,original,book,1 -goodbye,farewell!,original,bye,2 -thank_you,you've helped,parrot,bye,2 -yes,confirmed,original,book,1 -how_busy,how busy will chili's be at 5,lambada,avail,0 -reminder_update,can you remind me?,parrot,resched,5 -calendar_update,i need to buy a birthday gift for sue taken from my calendar it's monday or tuesday last week,parrot,resched,5 -how_busy,is it full in the mornings?,parrot,avail,0 -goodbye,i'll leave now,parrot,bye,2 -thank_you,appreciated,original,bye,2 -goodbye,lovely conversation,parrot,bye,2 -goodbye,good conversation,parrot,bye,2 -goodbye,bye bye!,original,bye,2 -yes,accepted,original,book,1 -thank_you,thank you,original,bye,2 -how_busy,what will the olive garden be like at 6pm?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -yes,yup,original,book,1 -no,false for sure,original,cancel,3 -greeting,welcome,parrot,greet,4 -no,so that's no,parrot,cancel,3 -yes,i believe you're right,parrot,book,1 -yes,facts,original,book,1 -greeting,hi what's up?,parrot,greet,4 -greeting,hiya!,original,greet,4 -how_busy,how long does it take for michel's?,parrot,avail,0 -date,can you list the date for tomorrow please?,parrot,avail,0 -yes,indeed,original,book,1 -thank_you,thank you for making my life easier,parrot,bye,2 -greeting,ahoy hoy,original,greet,4 -date,date tomorrow?,parrot,avail,0 -no,"no, that is fake",original,cancel,3 -how_busy,how long will i have to wait to eat red lobster?,parrot,avail,0 -cancel_reservation,you have not to confirm my booking,parrot,cancel,3 -greeting,heyo,original,greet,4 -thank_you,you've been amazing,lambada,bye,2 -schedule_meeting,if there are meeting rooms available for noon would you know?,parrot,book,1 -greeting,hello good day,parrot,greet,4 -schedule_meeting,please schedule a meeting with carrie and lisa,parrot,book,1 -yes,definitely,original,book,1 -no,please no,parrot,cancel,3 -greeting,good morning ai,parrot,greet,4 -how_busy,should i be worried about the wait time at kwu tei?,parrot,avail,0 -goodbye,thank you for talking,parrot,bye,2 -how_busy,how long will it take for me to sit at the red lobster?,parrot,avail,0 -no,that's a false,lambada,cancel,3 -greeting,salutations,parrot,greet,4 -how_busy,how long will the restaurant be at noon?,parrot,avail,0 -goodbye,ai goodbye,original,bye,2 -yes,absolutely!,original,book,1 -thank_you,and i thank you,parrot,bye,2 -no,the information is false,parrot,cancel,3 -date,date tomorrow,parrot,avail,0 -greeting,aho,parrot,greet,4 -thank_you,it pleased me,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -no,it's not true,parrot,cancel,3 -thank_you,thank you very much for doing my work,parrot,bye,2 -greeting,hello bs,parrot,greet,4 -greeting,how's everything?,parrot,greet,4 -goodbye,you're done,parrot,bye,2 -goodbye,later,original,bye,2 -goodbye,the chat was great,parrot,bye,2 -no,that’s not correct,original,cancel,3 -goodbye,see ya,lambada,bye,2 -goodbye,good luck,lambada,bye,2 -yes,uh huh,original,book,1 -no,that'd be a no,original,cancel,3 -how_busy,how long will it take to sit at iman's?,parrot,avail,0 -no,negatory,original,cancel,3 -yes,thats right,original,book,1 -how_busy,check the red lobster is crowded around 5pm,parrot,avail,0 -date,can you tell me the year?,parrot,avail,0 -no,that is incorrect,original,cancel,3 -how_busy,is there a long wait at olive garden?,parrot,avail,0 -goodbye,sayonara ,parrot,bye,2 -goodbye,adios,original,bye,2 -greeting,hello what's going on,parrot,greet,4 -reminder_update,set a reminder,original,resched,5 -no,the negator,parrot,cancel,3 -yes,yeah,original,book,1 -goodbye,nice talk,lambada,bye,2 -goodbye,later then,lambada,bye,2 -goodbye,goodnight,original,bye,2 -calendar_update,delete the event from the calendar,parrot,resched,5 -greeting,whats up?,parrot,greet,4 -goodbye,later then,lambada,bye,2 -greeting,how is this going?,parrot,greet,4 -date,what today?,parrot,avail,0 -meeting_schedule,check out what meetings i've planned,parrot,avail,0 -thank_you,nice,parrot,bye,2 -greeting,how's life,original,greet,4 -greeting,so how's everything?,parrot,greet,4 -no,i disagree with this,parrot,cancel,3 -greeting,how is life?,parrot,greet,4 -greeting,good evening,original,greet,4 -cancel_reservation,the reservation i made isn't necessary,parrot,cancel,3 -thank_you,i'm grateful,original,bye,2 -thank_you,i am very grateful,original,bye,2 -no,it's so bad,parrot,cancel,3 -reminder_update,remember to workout in the gym,parrot,resched,5 -no,yes that's false,lambada,cancel,3 -how_busy,how busy the cheesecake factory is at 6 o'clock in the evening?,parrot,avail,0 -date,in 15 days what date will it be?,parrot,avail,0 -calendar_update,annull all events in my calendar,parrot,resched,5 -thank_you,you answered my question,parrot,bye,2 -date,current day,parrot,avail,0 -yes,great,original,book,1 -goodbye,see you later!,original,bye,2 -schedule_meeting,- meeting rooms are open between 1 and 3 pm,parrot,book,1 -no,not that,original,cancel,3 -no,nay,original,cancel,3 -thank_you,your assistance is appreciated,parrot,bye,2 -greeting,ahoy there,lambada,greet,4 -reminder_update,set up a reminder to pay my bills,lambada,resched,5 -no,the negator,parrot,cancel,3 -how_busy,i want to know how busy the teacher is at 11 o'clock,parrot,avail,0 -greeting,hey hey!,original,greet,4 -goodbye,i liked talking to you,parrot,bye,2 -yes,confirm,original,book,1 -no,no,lambada,cancel,3 -thank_you,i am very grateful,original,bye,2 -greeting,how things go for you?,parrot,greet,4 -how_busy,how busy is the olive garden around dinner time,parrot,avail,0 -how_busy,find out how busy ihop usually is around 5 pm,original,avail,0 -how_busy,what's the wait at the jalapeno ranch?,parrot,avail,0 -thank_you,i appeciate it,parrot,bye,2 -how_busy,how busy is the outback around 7pm,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -greeting,salutations,parrot,greet,4 -greeting,hey hey!,original,greet,4 -date,what date?,parrot,avail,0 -date,what's today,original,avail,0 -greeting,"ah-yah, how are things",lambada,greet,4 -reminder_update,remember to write later,parrot,resched,5 -no,negative definitely,parrot,cancel,3 -no,not correct,parrot,cancel,3 -schedule_meeting,if i want to schedule a meeting what should i do?,parrot,book,1 -goodbye,peace,original,bye,2 -date,give me a date,parrot,avail,0 -how_busy,how long will the wait be at black fridays,lambada,avail,0 -how_busy,what's the typical time to be seated in this restaurant?,parrot,avail,0 -thank_you,i appeciate it,parrot,bye,2 -goodbye,"glad we got to talk again, goodbye",lambada,bye,2 -yes,that's true,original,book,1 -goodbye,glad we talked,parrot,bye,2 -cancel_reservation,cancell my reservation for dinner at red robin,parrot,cancel,3 -yes,correct,original,book,1 -no,not good,parrot,cancel,3 -greeting,"hi, ai",original,greet,4 -yes,i'm going to tell you tes,parrot,book,1 -how_busy,how long will i have to wait in the olive garden?,parrot,avail,0 -goodbye,you're done,parrot,bye,2 -greeting,ahoy there,lambada,greet,4 -how_busy,how long does the wait for a table at the italian restaurant be,lambada,avail,0 -yes,it's logical,parrot,book,1 -yes,let's do it,parrot,book,1 -how_busy,i'd expect the steakhouse to be busy around 7 pm,parrot,avail,0 -thank_you,okay thanks,original,bye,2 -greeting,"hello, friend",original,greet,4 -calendar,check my calendar,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -goodbye,goodbye!,original,bye,2 -how_busy,tell me if there's a lot of wait time at olive garden at 5pm?,lambada,avail,0 -goodbye,peace,original,bye,2 -how_busy,is there a wait time at olive garden currently?,lambada,avail,0 -how_busy,how long will i have to wait at restaurant,lambada,avail,0 -thank_you,"nice, excellent!",original,bye,2 -goodbye,goodbye!,original,bye,2 -how_busy,how busy is the coffee shop at 8 am?,parrot,avail,0 -yes,it's true yes,parrot,book,1 -yes,yep,original,book,1 -greeting,aloha,original,greet,4 -goodbye,tootles,original,bye,2 -greeting,what's going on,original,greet,4 -meeting_schedule,when's my meeting today?,parrot,avail,0 -no,"no, that can't be right",original,cancel,3 -how_busy,how long will it take to get a table in the cheesecake factory?,parrot,avail,0 -thank_you,really great!,original,bye,2 -greeting,salutation,parrot,greet,4 -greeting,heller,original,greet,4 -goodbye,goodbye ai,parrot,bye,2 -greeting,how's it going,lambada,greet,4 -no,negative certainly,parrot,cancel,3 -thank_you,thank ya!,original,bye,2 -thank_you,good looking out,original,bye,2 -yes,yay,lambada,book,1 -yes,obviously,parrot,book,1 -goodbye,afterward,parrot,bye,2 -yes,"yes, that's affirmative",original,book,1 -no,nope not it,original,cancel,3 -no,no,lambada,cancel,3 -no,it's negative,parrot,cancel,3 -greeting,wassup,original,greet,4 -goodbye,bye my friend,parrot,bye,2 -reminder_update,remind me to pay my taxes?,parrot,resched,5 -no,not so i think,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -no,no?,parrot,cancel,3 -greeting,what's up,original,greet,4 -meeting_schedule,what's my meeting schedule for today?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -how_busy,how long will i have to wait before i can eat it?,parrot,avail,0 -yes,confirm,original,book,1 -goodbye,goodbye!,original,bye,2 -no,that's a lie,parrot,cancel,3 -reminder_update,please remind me to do it later,parrot,resched,5 -goodbye,goodbye later,parrot,bye,2 -how_busy,how busy is dinner at kimchi roasters?,parrot,avail,0 -yes,definitely yes,parrot,book,1 -no,but no it's not true,parrot,cancel,3 -calendar,tell me what's on my calendar for march 30th,parrot,avail,0 -thank_you,many thank,original,bye,2 -goodbye,sayonara,original,bye,2 -meeting_schedule,do you have any meetings with martin today?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -how_busy,what's the wait like right now?,parrot,avail,0 -goodbye,the talk was nice,lambada,bye,2 -goodbye,fairwell?,parrot,bye,2 -yes,TRUE,original,book,1 -thank_you,"nice, excellent!",original,bye,2 -date,what date?,parrot,avail,0 -greeting,hi how're things going,lambada,greet,4 -thank_you,thank you?,parrot,bye,2 -greeting,hey there!,original,greet,4 -no,erroneous,parrot,cancel,3 -no,the negator,parrot,cancel,3 -goodbye,cya later,original,bye,2 -no,no!,original,cancel,3 -how_busy,is the wait at olive garden very long?,parrot,avail,0 -yes,thats right,original,book,1 -greeting,salutations!,original,greet,4 -thank_you,you helped me today,parrot,bye,2 -no,it's a no,original,cancel,3 -no,"no, that's wrong",original,cancel,3 -no,not correct,parrot,cancel,3 -greeting,bonjour,original,greet,4 -thank_you,appreciate the support,parrot,bye,2 -yes,yes it's true,lambada,book,1 -greeting,how is my day?,parrot,greet,4 -yes,yeap,original,book,1 -yes,oh-huh,parrot,book,1 -goodbye,later gater,original,bye,2 -yes,yup,original,book,1 -yes,oh-huh,parrot,book,1 -goodbye,tootles,original,bye,2 -yes,i agree,original,book,1 -no,naw,parrot,cancel,3 -thank_you,thanks!,original,bye,2 -greeting,"hi, ai",original,greet,4 -yes,i say yes,lambada,book,1 -thank_you,thank you,original,bye,2 -no,it's absolutely false,parrot,cancel,3 -schedule_meeting,can you help me schedule a meeting?,lambada,book,1 -goodbye,bye-bye,original,bye,2 -cancel_reservation,remove my dinner reservation,original,cancel,3 -goodbye,goodbye then,parrot,bye,2 -thank_you,thank you for that reply,original,bye,2 -reminder_update,what's a reminder,parrot,resched,5 -calendar,are there any events in my calendar for march 23?,parrot,avail,0 -date,what date is it?,original,avail,0 -no,no please,parrot,cancel,3 -cancel_reservation,make sure my reservation at umami with carl is canceled ,parrot,cancel,3 -thank_you,you've been great,parrot,bye,2 -yes,exactly right,original,book,1 -reminder_update,remind me later,original,resched,5 -how_busy,can you tell me how busy that eatery will be at 6:30?,lambada,avail,0 -how_busy,how busy is mcdonalds around 6 pm,lambada,avail,0 -date,give me today's date,original,avail,0 -no,invalid,original,cancel,3 -greeting,tell me how's it going?,parrot,greet,4 -no,that isn't true,lambada,cancel,3 -no,naw,original,cancel,3 -thank_you,okay thank you,parrot,bye,2 -goodbye,goodbye my friend,parrot,bye,2 -goodbye,peace,original,bye,2 -greeting,how's everything,original,greet,4 -thank_you,okay thanks,original,bye,2 -no,nope that's not right,parrot,cancel,3 -greeting,whats new?,parrot,greet,4 -yes,very true,original,book,1 -goodbye,adios,original,bye,2 -yes,this is true,lambada,book,1 -no,negation,parrot,cancel,3 -yes,obviously,parrot,book,1 -cancel_reservation,i need to cancel my table at the margaritas for friday,lambada,cancel,3 -greeting,how's life going?,parrot,greet,4 -greeting,aho,parrot,greet,4 -goodbye,goodbye thank you,parrot,bye,2 -no,no it's a no,parrot,cancel,3 -greeting,so how's everything going?,parrot,greet,4 -date,'what's the date today?',parrot,avail,0 -yes,a fact,parrot,book,1 -no,nope,original,cancel,3 -greeting,hiya,original,greet,4 -how_busy,will the restaurant be busy at 8pm?,parrot,avail,0 -yes,"yes, that's it",original,book,1 -how_busy,the mcdonald's at 9 o'clock?,parrot,avail,0 -no,no thank you,original,cancel,3 -yes,absolutely correct,original,book,1 -yes,certainly,parrot,book,1 -yes,good,parrot,book,1 -thank_you,the best,parrot,bye,2 -greeting,how is everything going for you,original,greet,4 -how_busy,how long will it take to dine at the chai plant?,parrot,avail,0 -how_busy,will i get a lot of waits at chili's dinner time,lambada,avail,0 -greeting,salutations,parrot,greet,4 -how_busy,how busy is ihop around seven,lambada,avail,0 -schedule_meeting,are there meeting rooms available at 8 o'clock in the morning?,parrot,book,1 -greeting,salutations!,original,greet,4 -yes,"yup, that's correct",lambada,book,1 -how_busy,tell me how busy outback steakhouse will be at 7 pm?,lambada,avail,0 -yes,huh,parrot,book,1 -yes,certainly,parrot,book,1 -greeting,how're you doing,original,greet,4 -goodbye,later!,original,bye,2 -goodbye,bye bye,lambada,bye,2 -how_busy,how busy will the potato salad be around five?,parrot,avail,0 -how_busy,are the red lobster guys really busy around 11 o'clock in the night?,parrot,avail,0 -yes,yes,original,book,1 -goodbye,adios!,original,bye,2 -how_busy,how long is the wait time for a table in the olive garden,parrot,avail,0 -no,not right,parrot,cancel,3 -greeting,hola!,original,greet,4 -schedule_meeting,reserve a room for a meeting at 11am on wednesday,parrot,book,1 -how_busy,how busy is the olive garden at ten?,parrot,avail,0 -goodbye,glad to talk,parrot,bye,2 -greeting,please tell me how you are doing,parrot,greet,4 -greeting,hey what's up,original,greet,4 -no,it's a negative,parrot,cancel,3 -greeting,how's it going,lambada,greet,4 -yes,right,parrot,book,1 -no,it is no,original,cancel,3 -how_busy,is mr joe's pizza a regular dinnertime?,parrot,avail,0 -greeting,hola,original,greet,4 -goodbye,great conversation,parrot,bye,2 -yes,certainly,parrot,book,1 -how_busy,is the cheesecake factory open at 7 o'clock in the day?,parrot,avail,0 -greeting,how have you been?,parrot,greet,4 -yes,my answer is yes,parrot,book,1 -greeting,what's new?,parrot,greet,4 -date,what's today,original,avail,0 -no,not happening,original,cancel,3 -reminder_update,can you remind me of something?,parrot,resched,5 -yes,absolutely,original,book,1 -goodbye,goodbye!,original,bye,2 -calendar_update,add a doctor's appointment for the 6th on the first,lambada,resched,5 -yes,yes please,original,book,1 -greeting,so how's everything?,parrot,greet,4 -yes,ya,original,book,1 -yes,ok,original,book,1 -goodbye,and i had a good time talking to you,parrot,bye,2 -meeting_schedule,do you know if i'm going to meet dave today?,parrot,avail,0 -meeting_schedule,do you have a meeting with ruth on my schedule today?,parrot,avail,0 -yes,10-Apr,original,book,1 -goodbye,talk later,original,bye,2 -yes,affirmitive,original,book,1 -how_busy,how busy is the macaroni grill around 6?,parrot,avail,0 -no,no thanks,original,cancel,3 -greeting,"hey, how's my day",lambada,greet,4 -goodbye,goodbye goodbye,parrot,bye,2 -goodbye,good see you,lambada,bye,2 -yes,perfect,parrot,book,1 -greeting,hiya!,original,greet,4 -calendar_update,please remove the appointment i've scheduled for monday,parrot,resched,5 -greeting,ahoy,lambada,greet,4 -no,it's a false claim,parrot,cancel,3 -meeting_schedule,what time is my meeting with the design team?,parrot,avail,0 -greeting,hi there,original,greet,4 -how_busy,how busy will macy's be?,parrot,avail,0 -thank_you,thanks for the assist,original,bye,2 -how_busy,please check the wait times at the cheesecake factory,lambada,avail,0 -meeting_schedule,list the meetings today?,parrot,avail,0 -thank_you,thanks so much for my help,parrot,bye,2 -date,what's the month and the day?,parrot,avail,0 -calendar_update,please remove my baby shower from my calendar,parrot,resched,5 -schedule_meeting,can you set up a meeting room for 12 noon today?,parrot,book,1 -yes,i'll say yes,parrot,book,1 -yes,of course,original,book,1 -greeting,wassup,original,greet,4 -date,current date,original,avail,0 -goodbye,bye bye!,original,bye,2 -no,i'm sorry it isn't,lambada,cancel,3 -no,not really,original,cancel,3 -greeting,good evening,original,greet,4 -goodbye,good night,original,bye,2 -how_busy,how busy is chili at 8am?,parrot,avail,0 -calendar,show me what's on my calendar for april 17?,parrot,avail,0 -yes,"yes, that's true",lambada,book,1 -no,it's overwhelmingly wrong,parrot,cancel,3 -cancel_reservation,abrogate the dinner reservation,parrot,cancel,3 -goodbye,good chatting with you,lambada,bye,2 -no,don't agree,parrot,cancel,3 -yes,exactly right,original,book,1 -meeting_schedule,what meetings do i have between noon and one?,parrot,avail,0 -date,is the date?,parrot,avail,0 -how_busy,how long will it take to wait in a chinese restaurant?,parrot,avail,0 -goodbye,on the highway,parrot,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -goodbye,it's over,parrot,bye,2 -no,no,lambada,cancel,3 -cancel_reservation,delete my dinner reservation,parrot,cancel,3 -no,naw,original,cancel,3 -yes,absolutely,original,book,1 -greeting,salutations!,original,greet,4 -no,naw,original,cancel,3 -thank_you,please thank you,lambada,bye,2 -no,not really,original,cancel,3 -goodbye,peace out,original,bye,2 -no,you are wrong,original,cancel,3 -meeting_schedule,tell me the scheduled conferences from noon?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -goodbye,see you later!,original,bye,2 -cancel_reservation,should i cancel my reservation or should i cancel it?,parrot,cancel,3 -greeting,good day,original,greet,4 -greeting,salutations!,original,greet,4 -no,that’s not correct,original,cancel,3 -goodbye,i'll leave,parrot,bye,2 -goodbye,i’ll be leaving now,original,bye,2 -thank_you,i'm so grateful,parrot,bye,2 -no,that is not true,original,cancel,3 -yes,perfect,parrot,book,1 -greeting,hello,original,greet,4 -yes,yes,original,book,1 -no,that’s actually wrong,original,cancel,3 -goodbye,talk later,original,bye,2 -no,i disagree,parrot,cancel,3 -yes,"yes, that's accurate",original,book,1 -goodbye,i have to leave now?,parrot,bye,2 -yes,do that?,original,book,1 -greeting,what's happened?,parrot,greet,4 -goodbye,buhbye now,lambada,bye,2 -yes,huh,parrot,book,1 -date,when will it be?,parrot,avail,0 -how_busy,can you tell me how busy michel is at 5 pm?,parrot,avail,0 -greeting,hey fellows,parrot,greet,4 -goodbye,no problem just relax,parrot,bye,2 -goodbye,fairwell,original,bye,2 -greeting,salutations,parrot,greet,4 -thank_you,appreciated,original,bye,2 -goodbye,later!,original,bye,2 -goodbye,goodbye!,original,bye,2 -goodbye,bye-bye,original,bye,2 -no,not at all,original,cancel,3 -schedule_meeting,reserve a meeting room for 12pm on february 28,parrot,book,1 -thank_you,i love my pay check,parrot,bye,2 -greeting,how's everything,original,greet,4 -no,it's very false,parrot,cancel,3 -how_busy,can you tell me the current wait times in the italian restaurant?,parrot,avail,0 -yes,confirm,original,book,1 -goodbye,greetings,parrot,bye,2 -goodbye,later,original,bye,2 -calendar,what's going on on the 2nd march calendar?,parrot,avail,0 -no,i believe it's incorrect,lambada,cancel,3 -goodbye,nice talk,lambada,bye,2 -goodbye,maybe next time,parrot,bye,2 -yes,uh-huh,original,book,1 -yes,indeed,original,book,1 -greeting,ahoy,lambada,greet,4 -goodbye,adios!,original,bye,2 -thank_you,thanks for responding,parrot,bye,2 -yes,you are correct,original,book,1 -cancel_reservation,carla doesn't want her reservation in the olive garden anymore,parrot,cancel,3 -reminder_update,keep checking the steak,parrot,resched,5 -goodbye,a good conversation,parrot,bye,2 -yes,thats right,original,book,1 -thank_you,thank you!,original,bye,2 -thank_you,you answered,parrot,bye,2 -date,what'll it be tomorrow?,parrot,avail,0 -no,false sure,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -date,in 7 days?,parrot,avail,0 -schedule_meeting,can you schedule a meeting with steve please,parrot,book,1 -greeting,what's happening?,parrot,greet,4 -yes,positive,original,book,1 -greeting,what's up,original,greet,4 -goodbye,goodnight,original,bye,2 -date,in 7 days?,parrot,avail,0 -greeting,how's idy?,parrot,greet,4 -how_busy,how long will i wait to be seated at the cheese cake factory?,parrot,avail,0 -greeting,heyo,original,greet,4 -goodbye,lovely conversation,parrot,bye,2 -thank_you,you're a big help,parrot,bye,2 -greeting,hi there,original,greet,4 -no,naw,original,cancel,3 -no,i'm saying no,parrot,cancel,3 -no,nothing,parrot,cancel,3 -no,no please,parrot,cancel,3 -greeting,hey hey!,original,greet,4 -goodbye,thanks goodbye,parrot,bye,2 -greeting,what's happened?,parrot,greet,4 -how_busy,tell me how busy can you expect red lobsters at 10 pm,parrot,avail,0 -yes,yeah,original,book,1 -no,certainly false,parrot,cancel,3 -schedule_meeting,is there a room available between 11 and 5 pm?,parrot,book,1 -reminder_update,remind me to pick up the trash,parrot,resched,5 -yes,yup,original,book,1 -thank_you,good job,lambada,bye,2 -yes,10-Apr,original,book,1 -goodbye,sayonara,original,bye,2 -greeting,hello,original,greet,4 -yes,approved,original,book,1 -no,i meant no,original,cancel,3 -thank_you,my thanks,parrot,bye,2 -how_busy,how long will it take to eat at the cheese cake company?,parrot,avail,0 -goodbye,adios,original,bye,2 -goodbye,bye!,original,bye,2 -yes,10-Apr,original,book,1 -how_busy,how long will it take to sit at the red lobster?,parrot,avail,0 -goodbye,later,original,bye,2 -goodbye,will leave now,parrot,bye,2 -no,FALSE,original,cancel,3 -greeting,"hi, ai",original,greet,4 -thank_you,"oh, thanks",original,bye,2 -no,negative sure,parrot,cancel,3 -goodbye,adios!,original,bye,2 -no,i'd like to say that it's not true,parrot,cancel,3 -calendar_update,delete all calendar entries on march 13th,parrot,resched,5 -greeting,hola,original,greet,4 -yes,yeah yeah,lambada,book,1 -goodbye,farewell,original,bye,2 -no,negative,original,cancel,3 -goodbye,i'm leaving now,lambada,bye,2 -no,is my falsehood?,parrot,cancel,3 -how_busy,can you tell me if i should expect long wait times for a taqueria meal at 7am?,parrot,avail,0 -greeting,how ya doing,lambada,greet,4 -goodbye,adios,original,bye,2 -yes,facts,original,book,1 -calendar_update,this month we have to clear our calendar so we can leave it open for mark to visit,parrot,resched,5 -goodbye,"enjoy my day, goodbye",original,bye,2 -greeting,hi,original,greet,4 -goodbye,goodbye!,original,bye,2 -no,invalid,original,cancel,3 -thank_you,thanks so much for all my help,parrot,bye,2 -thank_you,i appeciate it,parrot,bye,2 -greeting,how have you been,original,greet,4 -thank_you,thank you for my meeting,lambada,bye,2 -no,thanks no,parrot,cancel,3 -how_busy,how long will i have to wait before i eat?,parrot,avail,0 -yes,indeed,original,book,1 -yes,yeap,original,book,1 -yes,"yes, please",original,book,1 -meeting_schedule,when is my meeting?,parrot,avail,0 -greeting,ahoy hoy,original,greet,4 -cancel_reservation,you have not to confirm my reservation,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -no,nope,original,cancel,3 -date,what day are we?,parrot,avail,0 -no,negatory,original,cancel,3 -no,not right?,parrot,cancel,3 -no,no!,original,cancel,3 -how_busy,how many people attend the restaurant at 8pm,parrot,avail,0 -no,negation,parrot,cancel,3 -no,negating,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -no,negatory,original,cancel,3 -no,naw,parrot,cancel,3 -no,it's a false,lambada,cancel,3 -goodbye,regards,original,bye,2 -goodbye,for now,parrot,bye,2 -goodbye,good conversation,parrot,bye,2 -no,no,lambada,cancel,3 -goodbye,nice seeing you bye,original,bye,2 -goodbye,adios,original,bye,2 -goodbye,goodbye bye,parrot,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -yes,it's positive,parrot,book,1 -calendar,have i gotten around to adding the bike ride to my calendar yet?,original,avail,0 -greeting,how are you,original,greet,4 -greeting,hey there,original,greet,4 -greeting,hey fellows,parrot,greet,4 -greeting,how's it hanging?,parrot,greet,4 -greeting,how's the situation?,parrot,greet,4 -date,is it monday?,parrot,avail,0 -yes,it's true yes,parrot,book,1 -no,naw,parrot,cancel,3 -greeting,hi,original,greet,4 -yes,it's positive,parrot,book,1 -no,that's certainly false,parrot,cancel,3 -goodbye,the chat was good,parrot,bye,2 -date,what's my tomorrow date?,parrot,avail,0 -goodbye,i'll talk to you soon,parrot,bye,2 -yes,yeah,original,book,1 -how_busy,is the restaurant usually crowded around noon?,parrot,avail,0 -reminder_update,set reminder alarm for workout tomorrow at noon,lambada,resched,5 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,uh-huh,original,book,1 -goodbye,go easy,parrot,bye,2 -thank_you,"oh, thanks",original,bye,2 -yes,agreed,original,book,1 -date,please date,parrot,avail,0 -yes,yeah,original,book,1 -no,not a good sign,parrot,cancel,3 -yes,right,parrot,book,1 -reminder_update,could you remind me to clean the floor?,parrot,resched,5 -goodbye,thanks goodbye,parrot,bye,2 -no,hell nah,original,cancel,3 -yes,yes sir,original,book,1 -greeting,wassup,original,greet,4 -no,nay,original,cancel,3 -yes,yeah,original,book,1 -no,erroneous,parrot,cancel,3 -no,that's erroneous,parrot,cancel,3 -how_busy,tell me the time it takes to get seated in the kitchen sink,parrot,avail,0 -greeting,how are you today,original,greet,4 -thank_you,thanks for doing it for me,parrot,bye,2 -thank_you,thank you!,original,bye,2 -cancel_reservation,please cancel my reservation at the red lobster,parrot,cancel,3 -greeting,hi how's the situation?,parrot,greet,4 -yes,huh,parrot,book,1 -meeting_schedule,when is the meeting?,parrot,avail,0 -thank_you,thank you,original,bye,2 -goodbye,just relax,parrot,bye,2 -how_busy,how busy will ihop be at 8 am?,parrot,avail,0 -reminder_update,set up a reminder to give the cat fleas medicine,parrot,resched,5 -no,would be no?,parrot,cancel,3 -greeting,yo,original,greet,4 -no,no no thanks,parrot,cancel,3 -yes,accepted,original,book,1 -greeting,how were you?,parrot,greet,4 -thank_you,thanks for that!,original,bye,2 -no,no?,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -no,so that's no,parrot,cancel,3 -meeting_schedule,meeting today,parrot,avail,0 -cancel_reservation,send me a cancellation of the reservation for 6 in the outback,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -calendar_update,delete the appointment i scheduled,parrot,resched,5 -cancel_reservation,do you need to cancel my reservation in the loft?,parrot,cancel,3 -yes,certainly,parrot,book,1 -greeting,how's it going my friend,parrot,greet,4 -meeting_schedule,list the meetings on the calendar for today,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -how_busy,don't expect to be busy at red lobster around 10 am?,parrot,avail,0 -thank_you,you helped me,parrot,bye,2 -date,where's tomorrow's date,parrot,avail,0 -thank_you,thanks so much ai,original,bye,2 -calendar,can you check if there are any events in my calendar for march 8th?,parrot,avail,0 -goodbye,thanks goodbye,parrot,bye,2 -no,nay,original,cancel,3 -goodbye,see ya,lambada,bye,2 -how_busy,how busy is chicory's grill before dinner?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -no,the wrong answer,parrot,cancel,3 -goodbye,thanks goodbye,parrot,bye,2 -yes,it also makes sense,parrot,book,1 -goodbye,sayonara,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -schedule_meeting,need a meeting room,parrot,book,1 -no,nothing,parrot,cancel,3 -no,that's false,original,cancel,3 -yes,certainly true,parrot,book,1 -reminder_update,remember when the turkey's finished cooking,parrot,resched,5 -yes,absolutely correct,original,book,1 -thank_you,you helped me,parrot,bye,2 -yes,accepted,original,book,1 -calendar_update,please take the final exams off my calendar for may 3rd,parrot,resched,5 -yes,uh-huh,original,book,1 -reminder_update,keep an eye on the mail,parrot,resched,5 -no,that's a negation,parrot,cancel,3 -yes,it's true,original,book,1 -meeting_schedule,tell me today's scheduled conferences from noon on wards?,original,avail,0 -how_busy,tell me the average wait time for a meal at gustos?,parrot,avail,0 -thank_you,i appeciate it,parrot,bye,2 -goodbye,bye!,original,bye,2 -goodbye,bye-bye,original,bye,2 -yes,10-Apr,original,book,1 -how_busy,is the crackling oven busy at 6?,lambada,avail,0 -goodbye,my way,parrot,bye,2 -date,in 8 days?,parrot,avail,0 -date,what year?,parrot,avail,0 -thank_you,youre a doll,original,bye,2 -greeting,what's new?,parrot,greet,4 -goodbye,adios ai,original,bye,2 -no,"please, no",original,cancel,3 -yes,TRUE,lambada,book,1 -yes,that statement is true,lambada,book,1 -no,not correct,parrot,cancel,3 -thank_you,thanks!,original,bye,2 -goodbye,i'm going,parrot,bye,2 -no,negative,original,cancel,3 -calendar_update,can you delete an event from this calendar please?,parrot,resched,5 -thank_you,good looking out,original,bye,2 -no,absolutely not,original,cancel,3 -goodbye,i leave now,parrot,bye,2 -date,is it a monday wednesday?,parrot,avail,0 -thank_you,thanks again,original,bye,2 -thank_you,"great, thanks!",original,bye,2 -yes,oh-huh,parrot,book,1 -how_busy,can you tell me how busy ihop is at 6 pm?,lambada,avail,0 -greeting,why hello?,original,greet,4 -calendar_update,"remove the bachelorette party from my calendar for may 3, 2018",lambada,resched,5 -yes,obviously,parrot,book,1 -date,in seven days?,parrot,avail,0 -no,negatory?,parrot,cancel,3 -how_busy,can you list the average wait times in olive garden?,parrot,avail,0 -how_busy,how busy is chili's at 6pm?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -no,i am saying no,original,cancel,3 -no,that's negative,parrot,cancel,3 -yes,agreed,original,book,1 -goodbye,later,original,bye,2 -no,that turns out to be false,original,cancel,3 -no,that's not correct,original,cancel,3 -calendar,is there a timetable for tomorrow?,parrot,avail,0 -date,this is the day,parrot,avail,0 -no,certainly not,original,cancel,3 -greeting,hi,original,greet,4 -no,that's untrue,parrot,cancel,3 -date,give me a date,parrot,avail,0 -no,no that's wrong,original,cancel,3 -no,don't agree,parrot,cancel,3 -goodbye,sayonara ,parrot,bye,2 -goodbye,peace out,original,bye,2 -no,nay,original,cancel,3 -how_busy,waiting at macaroni grill?,parrot,avail,0 -thank_you,very grateful,parrot,bye,2 -greeting,"hello, friend",original,greet,4 -goodbye,buhbye,original,bye,2 -date,today is what date is it,lambada,avail,0 -greeting,hiya!,original,greet,4 -date,please give me a schedule,parrot,avail,0 -thank_you,i appreciate my help!,original,bye,2 -goodbye,see ya,original,bye,2 -no,no!,original,cancel,3 -greeting,salutation,parrot,greet,4 -yes,accept,parrot,book,1 -calendar,search my calendar for a party,parrot,avail,0 -greeting,hey hey!,original,greet,4 -how_busy,how busy will the olive garden be at 10 pm,lambada,avail,0 -thank_you,i am thankful for the assistance,lambada,bye,2 -no,but no way?,parrot,cancel,3 -yes,"yes, please",original,book,1 -goodbye,i'll be on the road,parrot,bye,2 -yes,i believe what you've said is right,parrot,book,1 -yes,accept,parrot,book,1 -how_busy,tell me the time to wait for the table at the cheesecake factory,parrot,avail,0 -yes,i think it is true,lambada,book,1 -thank_you,i want to thank you for your time,parrot,bye,2 -goodbye,im leaving,parrot,bye,2 -yes,great,original,book,1 -greeting,good morning ai,parrot,greet,4 -greeting,"hello, how are things going",lambada,greet,4 -how_busy,can you tell me how busy the olive garden is around 5:30?,lambada,avail,0 -greeting,bonjour,original,greet,4 -no,i say negative,original,cancel,3 -no,FALSE,original,cancel,3 -yes,certainly,parrot,book,1 -date,what the day?,parrot,avail,0 -how_busy,will i be able to have a good time at red robin during lunch,lambada,avail,0 -schedule_meeting,schedule the meeting for john at 11 o'clock,parrot,book,1 -greeting,give me the details,parrot,greet,4 -no,negative,original,cancel,3 -yes,facts,original,book,1 -yes,ok,original,book,1 -date,what's the date of tomorrow?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -yes,yes,original,book,1 -calendar_update,can you remove the date of the school play on my schedule?,parrot,resched,5 -goodbye,talk later,original,bye,2 -yes,agreed,original,book,1 -cancel_reservation,get a salad off,parrot,cancel,3 -yes,approved,original,book,1 -calendar,check what's on my calendar for tuesday,original,avail,0 -thank_you,thanks for helping me today,parrot,bye,2 -reminder_update,remind me to do my routine inspection of the oven,parrot,resched,5 -thank_you,thank you for that reply,original,bye,2 -greeting,how ya doing,lambada,greet,4 -greeting,hey,original,greet,4 -yes,definitely,original,book,1 -no,it's overwhelmingly wrong,parrot,cancel,3 -no,"no, that is invalid",original,cancel,3 -greeting,how's life going?,parrot,greet,4 -date,what's the year?,parrot,avail,0 -yes,yes i know it's true,lambada,book,1 -schedule_meeting,is there any way to schedule a meeting for tuesday evening at 6pm?,parrot,book,1 -meeting_schedule,what's the time for the meeting?,parrot,avail,0 -goodbye,i'll leave now,parrot,bye,2 -no,no?,parrot,cancel,3 -how_busy,how busy is the cheesecake factory around 5:30,lambada,avail,0 -yes,i know,parrot,book,1 -yes,okay,original,book,1 -yes,agreed,original,book,1 -thank_you,thanks please,original,bye,2 -greeting,is that what you want to do?,parrot,greet,4 -date,now what's the day?,parrot,avail,0 -greeting,please tell me what ai is doing,parrot,greet,4 -goodbye,later,original,bye,2 -goodbye,maybe next time,parrot,bye,2 -yes,please let's do this,parrot,book,1 -calendar_update,make an appointment with my doctor on my calendar,parrot,resched,5 -greeting,hey yai,lambada,greet,4 -how_busy,show me the current wait time at the restaurant?,parrot,avail,0 -calendar,let me know if there's a calendar entry for me on march 31,parrot,avail,0 -yes,absolutely,original,book,1 -goodbye,afterward,parrot,bye,2 -yes,that appears true,original,book,1 -meeting_schedule,i need to know when i meet with robert,parrot,avail,0 -cancel_reservation,forget reservation at oyster bar for tonight,original,cancel,3 -yes,absolutely correct,original,book,1 -no,no it's a lie,parrot,cancel,3 -goodbye,the talk was nice,lambada,bye,2 -greeting,how're you?,parrot,greet,4 -thank_you,my gratitude,parrot,bye,2 -greeting,how's everything with you?,parrot,greet,4 -no,but certainly not,parrot,cancel,3 -yes,it's positive,parrot,book,1 -calendar,read my calendar,parrot,avail,0 -how_busy,how busy will the chipotle grill be at 5pm,parrot,avail,0 -thank_you,nice,parrot,bye,2 -reminder_update,set reminder for my taxes on thursday,lambada,resched,5 -thank_you,thank you for my time,original,bye,2 -yes,yup,original,book,1 -reminder_update,remind me to write later,lambada,resched,5 -thank_you,thank you for the payment,lambada,bye,2 -reminder_update,please remind me again,parrot,resched,5 -goodbye,later,original,bye,2 -greeting,hey,original,greet,4 -no,so that's no,parrot,cancel,3 -how_busy,how long can i wait before going to the chocolate fountain?,parrot,avail,0 -reminder_update,i'd like to be reminded,parrot,resched,5 -calendar_update,delete the doctor visit for saturday,lambada,resched,5 -date,what day are we on?,lambada,avail,0 -goodbye,fairwell?,parrot,bye,2 -no,hell nah,original,cancel,3 -yes,oh-huh,parrot,book,1 -meeting_schedule,check my schedule today,parrot,avail,0 -how_busy,wait how long?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -calendar,please see my calendar,parrot,avail,0 -no,that’s incorrect,original,cancel,3 -yes,perfect,parrot,book,1 -yes,is true,parrot,book,1 -thank_you,good to look at,parrot,bye,2 -date,in 14 days?,parrot,avail,0 -greeting,yo,original,greet,4 -yes,facts,original,book,1 -goodbye,goodnight,original,bye,2 -no,nay,original,cancel,3 -yes,you're right,original,book,1 -yes,please let's do this,parrot,book,1 -how_busy,list the crowds in the olive garden?,parrot,avail,0 -no,no that isn't correct,original,cancel,3 -goodbye,bye,original,bye,2 -thank_you,nice,parrot,bye,2 -goodbye,buhbye,original,bye,2 -yes,affirmitive,original,book,1 -goodbye,cya later,original,bye,2 -thank_you,you've been a big help,original,bye,2 -goodbye,i enjoy our chat,lambada,bye,2 -thank_you,let me thank you,original,bye,2 -thank_you,i'm grateful,original,bye,2 -how_busy,how long will the wait be at 5pm?,parrot,avail,0 -greeting,aho,parrot,greet,4 -how_busy,how long will it take to sit in chipotle steakhouse,parrot,avail,0 -goodbye,lovely conversation,parrot,bye,2 -greeting,how is idy?,parrot,greet,4 -reminder_update,please remind me to take my medicine,parrot,resched,5 -greeting,whats new?,parrot,greet,4 -greeting,what's happening?,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -goodbye,bye!,original,bye,2 -no,nada,original,cancel,3 -meeting_schedule,when is my meeting with joe scheduled for?,lambada,avail,0 -no,nay,original,cancel,3 -goodbye,was nice to chat with you,parrot,bye,2 -yes,that's a fact,lambada,book,1 -greeting,well hello,original,greet,4 -goodbye,sayonara,original,bye,2 -no,that's erroneous,parrot,cancel,3 -no,that is erroneous,original,cancel,3 -goodbye,goodbye,original,bye,2 -yes,all right,parrot,book,1 -date,is today monday?,original,avail,0 -yes,that's a fact,parrot,book,1 -no,it's a negative,parrot,cancel,3 -thank_you,i really thank you,original,bye,2 -no,thanks no,parrot,cancel,3 -greeting,how are you treated,lambada,greet,4 -goodbye,farewell,original,bye,2 -yes,sure,original,book,1 -no,nope,original,cancel,3 -goodbye,tootles,original,bye,2 -no,false sure,parrot,cancel,3 -thank_you,i appreciate that answer!,original,bye,2 -no,so that's no,parrot,cancel,3 -thank_you,thanks,original,bye,2 -yes,agreed,original,book,1 -yes,say yes,lambada,book,1 -no,negating,parrot,cancel,3 -yes,"yup, that's true",original,book,1 -goodbye,i enjoyed our conversation,parrot,bye,2 -thank_you,thanks for helping me!,original,bye,2 -goodbye,great to talk with you,parrot,bye,2 -how_busy,how long will the wait be for a table at pizzeria at 5:00 pm,lambada,avail,0 -greeting,"hey, ai",original,greet,4 -yes,huh huh,parrot,book,1 -date,what month today?,parrot,avail,0 -thank_you,that's a very helpful answer,parrot,bye,2 -thank_you,nice,parrot,bye,2 -goodbye,goodbye,original,bye,2 -thank_you,awesome thanks,parrot,bye,2 -greeting,how's ai feeling?,parrot,greet,4 -goodbye,sayonara ,parrot,bye,2 -date,what's it today?,parrot,avail,0 -how_busy,how busy will i be at tadao's?,parrot,avail,0 -reminder_update,add a reminder,lambada,resched,5 -yes,seems true,parrot,book,1 -goodbye,until next time,original,bye,2 -goodbye,nice talk,lambada,bye,2 -goodbye,farewell,original,bye,2 -how_busy,say how busy it is at 5pm?,parrot,avail,0 -goodbye,no problem goodbye,parrot,bye,2 -how_busy,how long do you expect to wait in the cheesecake factory?,parrot,avail,0 -thank_you,i'm very thankful,parrot,bye,2 -greeting,hola!,original,greet,4 -how_busy,list the wait times for chipotle grills?,parrot,avail,0 -calendar,do i have anything on my calendar for may 3?,original,avail,0 -how_busy,is the restaurant crowded around 7?,lambada,avail,0 -reminder_update,please remember me later,parrot,resched,5 -cancel_reservation,shut down the dinner reservation,parrot,cancel,3 -no,"nope, that's false",original,cancel,3 -goodbye,i'll leave,parrot,bye,2 -goodbye,i've enjoyed talking to you,parrot,bye,2 -how_busy,how long will it be after noon?,parrot,avail,0 -yes,my answer to you is correct,parrot,book,1 -no,i disagree,parrot,cancel,3 -thank_you,thanks again!,original,bye,2 -date,in 100 days?,parrot,avail,0 -no,not really,original,cancel,3 -yes,a true statement,parrot,book,1 -goodbye,get there soon,lambada,bye,2 -greeting,hi,original,greet,4 -no,nada,original,cancel,3 -no,negative certainly,parrot,cancel,3 -goodbye,peace,original,bye,2 -greeting,hey bs,lambada,greet,4 -thank_you,your assistance is appreciated,parrot,bye,2 -goodbye,nice talk,lambada,bye,2 -goodbye,adios,original,bye,2 -yes,my answer is yes,parrot,book,1 -meeting_schedule,meeting today,parrot,avail,0 -how_busy,how long can i wait for a table at the macaroni grill?,parrot,avail,0 -no,no!,original,cancel,3 -yes,can we please?,original,book,1 -calendar_update,eliminate wrestlemania from my calendar for may 7,parrot,resched,5 -greeting,hey how's ot,lambada,greet,4 -schedule_meeting,please schedule a meeting?,parrot,book,1 -greeting,hola!,original,greet,4 -greeting,whats up,original,greet,4 -no,no please,parrot,cancel,3 -date,"in 2 weeks, what date will it be",lambada,avail,0 -greeting,yo,original,greet,4 -date,tell me what tomorrow's date is?,original,avail,0 -yes,let's do it,parrot,book,1 -no,nope that's not it,original,cancel,3 -greeting,hey how's life,original,greet,4 -thank_you,okay thank you,parrot,bye,2 -how_busy,is ihop busy around 7am?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -meeting_schedule,are there meetings between 4 and 7?,parrot,avail,0 -no,say negative,parrot,cancel,3 -goodbye,say goodbye,parrot,bye,2 -greeting,yo,original,greet,4 -greeting,hi ai,original,greet,4 -goodbye,afterward,parrot,bye,2 -goodbye,fairwell,original,bye,2 -yes,yeah yeah,lambada,book,1 -thank_you,okay thank you,parrot,bye,2 -yes,10-Apr,original,book,1 -thank_you,i appreciate that,original,bye,2 -greeting,"hello, what's up",original,greet,4 -yes,sure,original,book,1 -goodbye,tata for now,original,bye,2 -greeting,how's my day been?,parrot,greet,4 -yes,TRUE,original,book,1 -goodbye,my friend,parrot,bye,2 -thank_you,thank you so much for the reply,parrot,bye,2 -yes,thats right,original,book,1 -cancel_reservation,cancellation of dinner reservation please,parrot,cancel,3 -greeting,how's the life in my neighbourhood?,parrot,greet,4 -no,so that's no,parrot,cancel,3 -yes,positive,original,book,1 -how_busy,how busy is mr joe?,parrot,avail,0 -schedule_meeting,tell me the best way to schedule my meeting?,parrot,book,1 -date,please tell me the date tomorrow,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -yes,i guess you're right,parrot,book,1 -calendar,remind me of the date of the event called the anniversary dinner',parrot,avail,0 -goodbye,tootles,original,bye,2 -no,invalid,original,cancel,3 -thank_you,please thank you,lambada,bye,2 -cancel_reservation,just cancel my reservation,lambada,cancel,3 -date,in 100 days?,parrot,avail,0 -thank_you,gracias,original,bye,2 -greeting,"hello, good day",lambada,greet,4 -yes,do that?,original,book,1 -greeting,hello how's it going?,parrot,greet,4 -thank_you,my gratitude,parrot,bye,2 -greeting,aho,parrot,greet,4 -no,no!,original,cancel,3 -yes,definitely yes,parrot,book,1 -yes,oh-huh,parrot,book,1 -cancel_reservation,how can i cancel my reservation for chris at stella maris?,parrot,cancel,3 -yes,uh huh,original,book,1 -no,invalid,original,cancel,3 -cancel_reservation,can you cancel a reservation?,parrot,cancel,3 -goodbye,thank you goodbye,original,bye,2 -yes,that would be true,original,book,1 -date,what's the date today,original,avail,0 -no,it's a false,lambada,cancel,3 -yes,great,original,book,1 -goodbye,later,original,bye,2 -how_busy,how busy is the chicken soup at 3pm?,parrot,avail,0 -no,that's negative,parrot,cancel,3 -yes,yes sir,original,book,1 -cancel_reservation,the reservation i made is not needed anymore,lambada,cancel,3 -calendar,what do you have on my calendar for march 2?,parrot,avail,0 -goodbye,take it easy,lambada,bye,2 -yes,of course,original,book,1 -greeting,nice day,lambada,greet,4 -no,it's no,parrot,cancel,3 -thank_you,you helped,parrot,bye,2 -no,i'll pass,original,cancel,3 -yes,that'd be great,parrot,book,1 -calendar,show me the calendar for april 13?,parrot,avail,0 -thank_you,thanks,original,bye,2 -thank_you,you're welcome,parrot,bye,2 -calendar,please check my calendar for march 31st?,parrot,avail,0 -goodbye,i leave now,parrot,bye,2 -thank_you,glad that you did it for me,parrot,bye,2 -goodbye,good luck,lambada,bye,2 -goodbye,greetings,parrot,bye,2 -yes,very true,original,book,1 -date,how do i know the date of my account?,parrot,avail,0 -goodbye,", goodbye",lambada,bye,2 -how_busy,how busy will i be at chili's at 5 o'clock?,parrot,avail,0 -no,nada,original,cancel,3 -goodbye,farewell,original,bye,2 -date,what's the date now?,parrot,avail,0 -yes,i vote yes,original,book,1 -yes,yay,lambada,book,1 -greeting,is everything okay today?,parrot,greet,4 -goodbye,goodbyes,parrot,bye,2 -greeting,wassup,original,greet,4 -yes,it'll be yes,parrot,book,1 -yes,yep,original,book,1 -yes,sure thing,original,book,1 -yes,you are yes,lambada,book,1 -meeting_schedule,are there meetings between 3 and 5 today?,parrot,avail,0 -calendar,do you have anything on my calendar for march 7?,parrot,avail,0 -yes,it is a true,original,book,1 -goodbye,goodnight,original,bye,2 -no,not really,original,cancel,3 -no,that's inaccurate,original,cancel,3 -yes,definitely,original,book,1 -greeting,greetings to you,original,greet,4 -yes,yes that's it,original,book,1 -yes,ya,original,book,1 -cancel_reservation,can you cancel my reservation at red robin for steve?,lambada,cancel,3 -goodbye,tootles?,parrot,bye,2 -thank_you,very grateful,parrot,bye,2 -goodbye,adios ai,original,bye,2 -yes,"yes, that's true",lambada,book,1 -schedule_meeting,set up a meeting with tom at 12pm,parrot,book,1 -how_busy,please tell me how long it takes to get a table at the cheesecake factory?,parrot,avail,0 -how_busy,how busy are chocolate milkshakes around 9?,parrot,avail,0 -meeting_schedule,meetings today,original,avail,0 -yes,right,parrot,book,1 -cancel_reservation,can you cancel my reservation for dinner at kelley's at 7 pm?,lambada,cancel,3 -schedule_meeting,i've got to schedule a meeting with ken for 9am,parrot,book,1 -goodbye,farewell!,original,bye,2 -no,that's no,parrot,cancel,3 -meeting_schedule,do you see any meetings with john on my schedule today?,original,avail,0 -date,today is what date,original,avail,0 -thank_you,okay thank you,parrot,bye,2 -no,nada,original,cancel,3 -yes,i'll say yes,parrot,book,1 -greeting,hola,original,greet,4 -goodbye,tootles,original,bye,2 -yes,obviously,parrot,book,1 -calendar,show me what's on my calendar for march 1st?,parrot,avail,0 -date,let me know what's the date today,parrot,avail,0 -date,i would like to find out the date of today,parrot,avail,0 -calendar_update,remove my event to play mr. morris for the month of march,lambada,resched,5 -no,no?,parrot,cancel,3 -calendar_update,i want you to cancel the event on may 14,lambada,resched,5 -date,current date,original,avail,0 -thank_you,thankyou,parrot,bye,2 -yes,positive,original,book,1 -yes,that seems true,original,book,1 -greeting,yo,original,greet,4 -goodbye,ok good chatting goodbye,original,bye,2 -calendar_update,must add my wedding to my calendar for march 5,parrot,resched,5 -no,invalid,original,cancel,3 -yes,let's do that,parrot,book,1 -yes,my answer is yes,parrot,book,1 -yes,indeed,original,book,1 -thank_you,thankyou,parrot,bye,2 -yes,you are yes,lambada,book,1 -yes,facts,original,book,1 -thank_you,thank you ai,parrot,bye,2 -no,that's erroneous,parrot,cancel,3 -no,i think not,original,cancel,3 -goodbye,my way,parrot,bye,2 -no,that’s incorrect,original,cancel,3 -goodbye,goodbye!,original,bye,2 -date,in seven days?,parrot,avail,0 -greeting,how you are?,parrot,greet,4 -yes,i agree,original,book,1 -calendar,please tell me what's on my calendar for friday?,parrot,avail,0 -no,naw,parrot,cancel,3 -how_busy,how busy is red robin right now,lambada,avail,0 -meeting_schedule,how many meetings i'm going to between 12 and 3 today?,parrot,avail,0 -greeting,hey,original,greet,4 -goodbye,fairwell,original,bye,2 -goodbye,goodbye helpful ai devices,parrot,bye,2 -reminder_update,tell me to call bill later?,parrot,resched,5 -greeting,how's life?,parrot,greet,4 -no,that isn't right,original,cancel,3 -yes,i agree,original,book,1 -greeting,hi how's it going,lambada,greet,4 -yes,approved,original,book,1 -no,no?,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -greeting,why hello?,original,greet,4 -yes,exactly right,original,book,1 -goodbye,"thanks for chatting with me, later",lambada,bye,2 -goodbye,bye bye,lambada,bye,2 -goodbye,it was good to talk to you,lambada,bye,2 -how_busy,does an italian restaurant usually have long lines?,parrot,avail,0 -reminder_update,remind me of exercise,parrot,resched,5 -yes,definitely,original,book,1 -goodbye,"that's all, bye",original,bye,2 -how_busy,can you tell me what the wait times are at this restaurant?,parrot,avail,0 -yes,you got it,original,book,1 -no,it's absolutely false,parrot,cancel,3 -goodbye,i'll leave,parrot,bye,2 -goodbye,bye now,original,bye,2 -thank_you,thanks again,original,bye,2 -how_busy,do you know how busy imoos is at this moment?,parrot,avail,0 -date,what date?,parrot,avail,0 -yes,perfect,parrot,book,1 -goodbye,for now,parrot,bye,2 -no,naw,parrot,cancel,3 -meeting_schedule,are there any meetings scheduled for today?,lambada,avail,0 -yes,sure,original,book,1 -how_busy,can you tell me the wait time at olive garden,parrot,avail,0 -no,that is incorrect,original,cancel,3 -yes,yes please,original,book,1 -greeting,how's idy doing?,parrot,greet,4 -no,not right?,parrot,cancel,3 -calendar,i would like to know what's going on in my calendar,parrot,avail,0 -yes,positive,original,book,1 -no,nope,original,cancel,3 -goodbye,talk later,original,bye,2 -thank_you,"oh, thanks",original,bye,2 -greeting,i need to know how you're feeling,lambada,greet,4 -date,what date in 100 days?,parrot,avail,0 -no,naw,original,cancel,3 -goodbye,goodbyes,parrot,bye,2 -yes,huh,parrot,book,1 -how_busy,when is rancho crowded?,parrot,avail,0 -reminder_update,can you create a reminder?,original,resched,5 -goodbye,tootles,original,bye,2 -no,no good,original,cancel,3 -goodbye,thank you for talking to me,lambada,bye,2 -schedule_meeting,please schedule a meeting with emma?,parrot,book,1 -no,i believe it's incorrect,lambada,cancel,3 -greeting,ahoy,lambada,greet,4 -goodbye,see ya!,original,bye,2 -yes,i believe what you just said is true,original,book,1 -yes,correct,original,book,1 -goodbye,goodbye!,original,bye,2 -calendar,please tell me what is on my calendar for march 30?,parrot,avail,0 -thank_you,i'm really grateful,parrot,bye,2 -yes,uh huh,original,book,1 -calendar,check my calendar for march 5,parrot,avail,0 -thank_you,thanks!,original,bye,2 -yes,yep,original,book,1 -how_busy,can you tell me how long the wait is at the cheesecake factory?,parrot,avail,0 -goodbye,"thanks for chatting, see you",lambada,bye,2 -reminder_update,remind me,original,resched,5 -how_busy,how long will it be before i get seated at red lobster,lambada,avail,0 -date,what today?,parrot,avail,0 -thank_you,awesome thanks,parrot,bye,2 -goodbye,"nice talk, next time",lambada,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -date,what date is that?,parrot,avail,0 -greeting,ahoy hoy,original,greet,4 -cancel_reservation,please get rid of my reservation at the steakhouse,parrot,cancel,3 -yes,accepted,original,book,1 -yes,so it works,parrot,book,1 -thank_you,thank you for my consideration,parrot,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -how_busy,how long after 7pm,parrot,avail,0 -thank_you,thanks for my time,parrot,bye,2 -yes,i'd say yes,parrot,book,1 -greeting,hello what's up?,parrot,greet,4 -greeting,hiya!,original,greet,4 -yes,i know,parrot,book,1 -no,it's so bad,parrot,cancel,3 -how_busy,if i stand in line at carl jr's,parrot,avail,0 -calendar,can you tell me what is on my calendar for march 1?,parrot,avail,0 -thank_you,i'm grateful,original,bye,2 -yes,accepted,original,book,1 -yes,ok,original,book,1 -date,what will it be like in three days?,parrot,avail,0 -how_busy,what's red robin's like at 6pm?,parrot,avail,0 -thank_you,gracias,original,bye,2 -no,nada,original,cancel,3 -how_busy,is there a reason to be worried about the wait in the morning?,parrot,avail,0 -yes,absolutely,original,book,1 -date,today?,parrot,avail,0 -meeting_schedule,meetings today,original,avail,0 -yes,great,original,book,1 -yes,it seems true,parrot,book,1 -greeting,hello,original,greet,4 -greeting,ahoy,lambada,greet,4 -greeting,hiya,original,greet,4 -thank_you,make sure you do something for me,parrot,bye,2 -date,is today monday?,original,avail,0 -date,current date,original,avail,0 -thank_you,thanks!,original,bye,2 -no,nothing,parrot,cancel,3 -greeting,and what's up?,parrot,greet,4 -greeting,how you feel?,parrot,greet,4 -no,nay,original,cancel,3 -yes,so it's checked,parrot,book,1 -no,that isn't true,lambada,cancel,3 -goodbye,see ya,original,bye,2 -how_busy,how busy is iman at 8,lambada,avail,0 -thank_you,appreciated,original,bye,2 -goodbye,i'm going,parrot,bye,2 -greeting,what's my feeling?,parrot,greet,4 -thank_you,i'd like to thank you,parrot,bye,2 -no,it's no,parrot,cancel,3 -yes,i think you succeeded,parrot,book,1 -yes,i say yes,lambada,book,1 -no,certainly not,original,cancel,3 -greeting,how's my doing?,parrot,greet,4 -no,say negative,parrot,cancel,3 -yes,i'm voting for you,parrot,book,1 -yes,yeap,original,book,1 -no,it's false,parrot,cancel,3 -no,nada,original,cancel,3 -yes,sure thing,original,book,1 -greeting,"hello, friend",original,greet,4 -greeting,what's happening?,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -calendar_update,can you remove the school play date from my calendar?,parrot,resched,5 -no,that's definitely false,original,cancel,3 -how_busy,how busy is chili's around dinner,lambada,avail,0 -yes,my answer is yes,parrot,book,1 -yes,yep,original,book,1 -greeting,hello good morning,parrot,greet,4 -date,in 9 days?,parrot,avail,0 -cancel_reservation,my reservation is not necessary anymore,lambada,cancel,3 -yes,a real statement,parrot,book,1 -yes,oh-huh,parrot,book,1 -no,negative,original,cancel,3 -no,negatory,original,cancel,3 -goodbye,i'm going,parrot,bye,2 -no,i'm afraid not,parrot,cancel,3 -yes,right,parrot,book,1 -no,that's incorrect,original,cancel,3 -thank_you,well done,parrot,bye,2 -greeting,how's everything going?,parrot,greet,4 -goodbye,i'm outta here!,original,bye,2 -goodbye,farewell,original,bye,2 -no,and it's very false,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -yes,TRUE,original,book,1 -cancel_reservation,get rid of my reservation in the steakhouse please,parrot,cancel,3 -goodbye,bye!,original,bye,2 -no,erroneous,parrot,cancel,3 -greeting,how ya doin,original,greet,4 -yes,yep,original,book,1 -yes,this is true,lambada,book,1 -thank_you,many thanks,original,bye,2 -no,negatory?,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -greeting,ahoy there,lambada,greet,4 -how_busy,here's how busy the cheesecake factory is at 11,parrot,avail,0 -no,that is false,original,cancel,3 -no,no good,original,cancel,3 -no,definitely not,original,cancel,3 -yes,correct,original,book,1 -greeting,how's life for you?,parrot,greet,4 -yes,yay,lambada,book,1 -thank_you,"great, thanks!",original,bye,2 -yes,uh-huh,original,book,1 -thank_you,thanks for the info,original,bye,2 -yes,i'll check it out -,parrot,book,1 -cancel_reservation,cancell my dinner reservation,parrot,cancel,3 -reminder_update,remember me to call bob tomorrow,parrot,resched,5 -goodbye,goodbye!,original,bye,2 -goodbye,goodbye later,parrot,bye,2 -cancel_reservation,can you cancel kyle's party at red lobster?,parrot,cancel,3 -how_busy,why do the restaurant have such a busy time at 5 pm?,lambada,avail,0 -yes,absolutely!,original,book,1 -date,current day,parrot,avail,0 -goodbye,goodnight,original,bye,2 -reminder_update,remind me of something,parrot,resched,5 -thank_you,it's my debt,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -how_busy,how busy is the olive garden around noon?,parrot,avail,0 -goodbye,"later, goodbye",lambada,bye,2 -greeting,hey there!,original,greet,4 -yes,i would say yes,lambada,book,1 -yes,im sure you're right,parrot,book,1 -thank_you,i have to thank you for your time,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -date,what date is tomorrow?,original,avail,0 -no,erroneous,parrot,cancel,3 -greeting,hello ai,parrot,greet,4 -goodbye,talk later,original,bye,2 -yes,accept,parrot,book,1 -goodbye,good see you,lambada,bye,2 -yes,yay,lambada,book,1 -date,today is what date,original,avail,0 -goodbye,see you later,original,bye,2 -yes,sure,original,book,1 -yes,yeah,original,book,1 -yes,yep,original,book,1 -meeting_schedule,do i have meetings between 4 and 5?,parrot,avail,0 -yes,yes,original,book,1 -no,nay,original,cancel,3 -goodbye,see ya,lambada,bye,2 -no,no!,original,cancel,3 -yes,you're right,original,book,1 -greeting,good morning,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -goodbye,bye!,original,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -yes,you're right,original,book,1 -greeting,hey hey!,original,greet,4 -date,in five days?,parrot,avail,0 -greeting,hey how's it going,original,greet,4 -goodbye,as regards,parrot,bye,2 -thank_you,you answered,parrot,bye,2 -greeting,"hello, friend",original,greet,4 -thank_you,nice,parrot,bye,2 -calendar_update,i need to set a date for the lab for tomorrow,lambada,resched,5 -goodbye,sayonara,original,bye,2 -how_busy,how long will the wait in this restaurant be,parrot,avail,0 -how_busy,is ihop busy at 9?,parrot,avail,0 -calendar_update,remove the recurring training meetings from my calendar,parrot,resched,5 -thank_you,very grateful,parrot,bye,2 -thank_you,you're the best!,original,bye,2 -goodbye,"goodbye, helpful ai device!",original,bye,2 -meeting_schedule,what are meetings today?,parrot,avail,0 -no,not good,parrot,cancel,3 -no,"that would be ""no",original,cancel,3 -no,negatory,original,cancel,3 -goodbye,bye!,original,bye,2 -no,"no, it's not",lambada,cancel,3 -goodbye,please talk soon,parrot,bye,2 -goodbye,adios ai,original,bye,2 -goodbye,good bye,original,bye,2 -yes,yes please,original,book,1 -goodbye,wonderful conversation,lambada,bye,2 -goodbye,afterward,parrot,bye,2 -thank_you,i appeciate it,parrot,bye,2 -thank_you,i am thankful,lambada,bye,2 -thank_you,nice,parrot,bye,2 -how_busy,if i want to sit at the tamara steakhouse how long does it take?,parrot,avail,0 -no,i'd say no,original,cancel,3 -goodbye,bye bye!,original,bye,2 -meeting_schedule,do i have any meetings scheduled for today?,original,avail,0 -no,that's untrue,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -date,tell me the date,parrot,avail,0 -no,that's negative,parrot,cancel,3 -greeting,heyo,original,greet,4 -yes,i'll check that out,parrot,book,1 -goodbye,goodbye!,original,bye,2 -no,that is overwhelmingly wrong,lambada,cancel,3 -greeting,wake up ai,parrot,greet,4 -greeting,heyo,original,greet,4 -greeting,hey there,original,greet,4 -yes,indeed,parrot,book,1 -yes,sure,original,book,1 -no,it's a false,lambada,cancel,3 -no,it's negative,parrot,cancel,3 -how_busy,tell me how busy it will be between 11 and 2?,parrot,avail,0 -yes,that's a definite yes,original,book,1 -yes,absolutely!,original,book,1 -date,date please,original,avail,0 -greeting,hey how's life,original,greet,4 -how_busy,what happens when i work at 5 o'clock?,parrot,avail,0 -goodbye,goodbye now,parrot,bye,2 -no,the hell it's not true,parrot,cancel,3 -date,what today?,parrot,avail,0 -greeting,how's idy doing,lambada,greet,4 -reminder_update,please remind me,parrot,resched,5 -yes,yup,original,book,1 -thank_you,thankyou,parrot,bye,2 -goodbye,on the road,parrot,bye,2 -yes,affirmitive,original,book,1 -thank_you,you've helped,parrot,bye,2 -how_busy,what time does the oklahoma county farmers market have a long wait?,parrot,avail,0 -thank_you,you did a good job,lambada,bye,2 -no,no that's not right,parrot,cancel,3 -goodbye,have fun?,lambada,bye,2 -goodbye,nice to chat with you,parrot,bye,2 -thank_you,thank you for answering,parrot,bye,2 -goodbye,farewell!,original,bye,2 -no,that's a negative,original,cancel,3 -yes,i think it's right,parrot,book,1 -no,i must say no,original,cancel,3 -thank_you,gracias,original,bye,2 -greeting,hola,original,greet,4 -goodbye,goodbye bye,parrot,bye,2 -date,what's today?,parrot,avail,0 -schedule_meeting,i need a meeting room on saturday morning at 10am,parrot,book,1 -date,please date,parrot,avail,0 -goodbye,wonderful conversation,lambada,bye,2 -no,say negative,parrot,cancel,3 -greeting,nice day,lambada,greet,4 -goodbye,afterward,parrot,bye,2 -meeting_schedule,wanna meet with roger?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -goodbye,see you later!,original,bye,2 -greeting,ahoy there,lambada,greet,4 -reminder_update,so i don't forget about the baby shower this weekend,parrot,resched,5 -calendar_update,write down appointment for next week on my calendar,lambada,resched,5 -reminder_update,create a reminder,original,resched,5 -greeting,whats up?,parrot,greet,4 -yes,absolutely!,original,book,1 diff --git a/data/processed/train.csv b/data/processed/train.csv deleted file mode 100644 index 9f0b0d1..0000000 --- a/data/processed/train.csv +++ /dev/null @@ -1,68563 +0,0 @@ -intent,user_utterance,origin,new_intent,label -greeting,what's up,original,greet,4 -yes,it's true yes,parrot,book,1 -yes,it's certainly positive,parrot,book,1 -goodbye,i'm leaving,parrot,bye,2 -how_busy,what's the crowd like in olive garden at 7pm?,parrot,avail,0 -greeting,whats new,lambada,greet,4 -thank_you,thanks for that answer,original,bye,2 -goodbye,goodbye bye,parrot,bye,2 -yes,you got it,parrot,book,1 -greeting,why hello?,original,greet,4 -yes,i know,parrot,book,1 -date,in seven days?,parrot,avail,0 -calendar_update,i need trip to the zoo on the calendar for june 4,original,resched,5 -reminder_update,remind me to do laundry,parrot,resched,5 -greeting,how's ai doing?,parrot,greet,4 -no,not that one,original,cancel,3 -greeting,how you feel?,parrot,greet,4 -thank_you,"nice, excellent!",original,bye,2 -no,it's very false,parrot,cancel,3 -yes,definitely,original,book,1 -thank_you,many thanks,original,bye,2 -goodbye,good call,parrot,bye,2 -how_busy,if i want to sit at macadamias how long do i have to wait,parrot,avail,0 -yes,of course,original,book,1 -reminder_update,make a reminder for me to send flowers to my mom for mother's day,parrot,resched,5 -thank_you,many thanks,original,bye,2 -no,certainly false,parrot,cancel,3 -goodbye,no problem goodbye,parrot,bye,2 -greeting,hey there!,original,greet,4 -yes,"yes, please",parrot,book,1 -greeting,whats up?,parrot,greet,4 -goodbye,sayonara,original,bye,2 -yes,"yes, that is factual",original,book,1 -greeting,hey,original,greet,4 -goodbye,bye bye!,original,bye,2 -how_busy,how busy will the cheesecake factory be at 8 pm,parrot,avail,0 -cancel_reservation,get the salad cancelled,lambada,cancel,3 -thank_you,thanks for that information,lambada,bye,2 -thank_you,thank you for that!,lambada,bye,2 -meeting_schedule,will my meetings be between noon and one?,parrot,avail,0 -yes,yeap,original,book,1 -greeting,hiya,original,greet,4 -greeting,hiya!,original,greet,4 -goodbye,bye now,original,bye,2 -goodbye,i liked talking to you,parrot,bye,2 -thank_you,i'm so very grateful,parrot,bye,2 -no,but it's wrong,parrot,cancel,3 -greeting,ahoy,lambada,greet,4 -goodbye,have fun?,lambada,bye,2 -meeting_schedule,how many meetings am i supposed to have for today,parrot,avail,0 -yes,it's true yes,parrot,book,1 -reminder_update,please create a reminder,parrot,resched,5 -schedule_meeting,plan a meeting for me,parrot,book,1 -goodbye,bye now,original,bye,2 -date,what will be the date of 100 days?,parrot,avail,0 -goodbye,good talk,parrot,bye,2 -no,i disagree,parrot,cancel,3 -no,is that a lie?,parrot,cancel,3 -thank_you,the best,parrot,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -goodbye,adios,original,bye,2 -date,what day of the week?,parrot,avail,0 -yes,my answer is yes,parrot,book,1 -no,it is false,original,cancel,3 -greeting,how's it hanging,original,greet,4 -yes,that's the truth,original,book,1 -yes,correct,original,book,1 -goodbye,goodbye,original,bye,2 -cancel_reservation,i have to cancel my booking,parrot,cancel,3 -date,date tomorrow?,parrot,avail,0 -greeting,hi how is everything,original,greet,4 -goodbye,later goodbye,parrot,bye,2 -how_busy,what is the current seating time at this restaurant?,lambada,avail,0 -no,it's a negative,parrot,cancel,3 -no,certainly not,original,cancel,3 -greeting,salutations,parrot,greet,4 -calendar,do you have anything planned for march 1?,parrot,avail,0 -yes,yay,lambada,book,1 -date,what today?,parrot,avail,0 -calendar,can you list my calendar?,parrot,avail,0 -yes,yeah,original,book,1 -yes,okay,original,book,1 -goodbye,see you soon,original,bye,2 -how_busy,how busy is jiro at 12?,parrot,avail,0 -goodbye,bye,original,bye,2 -thank_you,and i'm grateful,parrot,bye,2 -yes,i just said it,parrot,book,1 -no,negative,original,cancel,3 -reminder_update,set a reminder to check mail,parrot,resched,5 -yes,yup,original,book,1 -calendar,what's my schedule for april 30?,parrot,avail,0 -no,false sure,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -goodbye,thanks for the talk,lambada,bye,2 -how_busy,how long will the wait be for a table at olive garden,lambada,avail,0 -yes,"yes, that's correct",original,book,1 -how_busy,do you think the red lobster is busy at noon?,parrot,avail,0 -thank_you,again thanks,parrot,bye,2 -yes,ya,original,book,1 -goodbye,farewell!,original,bye,2 -date,what's today?,parrot,avail,0 -date,wednesday friday or saturday?,parrot,avail,0 -yes,absolutely!,original,book,1 -how_busy,the average busy hour for chili is around 5,parrot,avail,0 -no,naw,original,cancel,3 -goodbye,goodnight,original,bye,2 -yes,uh-huh,original,book,1 -calendar_update,add this to the calendar tomorrow?,parrot,resched,5 -thank_you,gracias,original,bye,2 -no,not that,original,cancel,3 -calendar_update,i need to edit this event out of my calendar,original,resched,5 -date,i need a date,parrot,avail,0 -greeting,what's happened?,parrot,greet,4 -calendar,check my calendar for march 17th,lambada,avail,0 -yes,sure,original,book,1 -yes,accepted,original,book,1 -goodbye,goodbye to yours,parrot,bye,2 -yes,roger that,original,book,1 -no,erroneous,parrot,cancel,3 -no,nothing,parrot,cancel,3 -yes,it's positive,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -greeting,salutations,parrot,greet,4 -no,it's negative,parrot,cancel,3 -greeting,how it goes?,parrot,greet,4 -how_busy,how long do we have to wait before being seated at the cheese cake factory,lambada,avail,0 -yes,confirmed,original,book,1 -greeting,how's my family going?,parrot,greet,4 -greeting,how things go for you?,parrot,greet,4 -date,today?,parrot,avail,0 -yes,affirmative,original,book,1 -greeting,hey,original,greet,4 -yes,it seems true,parrot,book,1 -no,negative definitely,parrot,cancel,3 -schedule_meeting,tell me how i can schedule a meeting,parrot,book,1 -goodbye,buhbye,original,bye,2 -yes,say yes,lambada,book,1 -date,today?,parrot,avail,0 -yes,yeah,original,book,1 -yes,agreed,original,book,1 -thank_you,nice,parrot,bye,2 -no,that's inaccurate,original,cancel,3 -no,nope not it,original,cancel,3 -reminder_update,remember to use the bathroom,parrot,resched,5 -goodbye,i’m leaving-goodbye!,original,bye,2 -calendar_update,add a meeting with carla to my schedule for july 4,parrot,resched,5 -greeting,whats up?,parrot,greet,4 -how_busy,how long will it take to get a table in moroni's,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -date,let me know what's the day?,parrot,avail,0 -yes,so it works,parrot,book,1 -thank_you,"nice, excellent!",original,bye,2 -greeting,hello there,original,greet,4 -meeting_schedule,will we have meetings today?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -greeting,aho,parrot,greet,4 -yes,absolutely!,original,book,1 -thank_you,thanks for doing what you do,lambada,bye,2 -no,naw,original,cancel,3 -no,but it's not factual,parrot,cancel,3 -no,not right?,parrot,cancel,3 -thank_you,gracias,original,bye,2 -yes,ok,original,book,1 -yes,definitely confirmed,parrot,book,1 -date,please date,parrot,avail,0 -calendar,did i set a date on my calendar for the doctor's appointment?,parrot,avail,0 -goodbye,adios,original,bye,2 -goodbye,i'm going,parrot,bye,2 -no,it's a negation,parrot,cancel,3 -goodbye,adios,original,bye,2 -thank_you,again thanks,parrot,bye,2 -no,negative,original,cancel,3 -thank_you,thank you?,parrot,bye,2 -meeting_schedule,when is my meeting with steve scheduled for?,lambada,avail,0 -thank_you,i'm grateful,original,bye,2 -no,nope,original,cancel,3 -thank_you,much obliged,original,bye,2 -yes,very true,original,book,1 -yes,"yes, please",parrot,book,1 -greeting,how is my day,original,greet,4 -no,no,lambada,cancel,3 -goodbye,adios,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -thank_you,i'm so grateful for your help,lambada,bye,2 -no,the wrong answer,parrot,cancel,3 -goodbye,goodbye soon,lambada,bye,2 -reminder_update,remind me to put the garbage in a can,parrot,resched,5 -yes,is true,parrot,book,1 -no,the answer to that question is false,lambada,cancel,3 -thank_you,"thanks, that's helpful",original,bye,2 -greeting,hey there,original,greet,4 -calendar,display my calendar,lambada,avail,0 -yes,yeah,original,book,1 -goodbye,as regards,parrot,bye,2 -yes,that's right,original,book,1 -greeting,good day,original,greet,4 -greeting,hola,original,greet,4 -yes,right,parrot,book,1 -greeting,hiya,original,greet,4 -how_busy,how long will i have to wait to be seated at the caprese steak house,lambada,avail,0 -thank_you,thankyou,parrot,bye,2 -yes,it's indeed true,original,book,1 -how_busy,how busy is jimmy's at 5 pm,lambada,avail,0 -greeting,well hello,original,greet,4 -meeting_schedule,meeting today,parrot,avail,0 -calendar,what's on my calendar for january next year?,parrot,avail,0 -yes,correct,original,book,1 -yes,confirmed,original,book,1 -greeting,let me know how you're doing,parrot,greet,4 -goodbye,and then goodbye,parrot,bye,2 -greeting,are you okay??,parrot,greet,4 -thank_you,appreciated,original,bye,2 -greeting,salutation,parrot,greet,4 -yes,absolutely!,original,book,1 -greeting,yo,original,greet,4 -greeting,heller,original,greet,4 -calendar,read me my schedule for march 3,lambada,avail,0 -calendar,i need my calendar,parrot,avail,0 -no,negating,parrot,cancel,3 -no,no,lambada,cancel,3 -goodbye,adios,original,bye,2 -meeting_schedule,time of meeting?,parrot,avail,0 -goodbye,great talk,lambada,bye,2 -no,negative,original,cancel,3 -thank_you,you've tried,parrot,bye,2 -how_busy,please let me know if there's a wait in this restaurant right now,parrot,avail,0 -yes,TRUE,lambada,book,1 -reminder_update,can you remind me later,parrot,resched,5 -greeting,how's everything,original,greet,4 -no,but it's wrong,parrot,cancel,3 -how_busy,how long is the wait time at eat at olive garden,lambada,avail,0 -yes,all right,original,book,1 -yes,that's a fact,lambada,book,1 -greeting,hey bs,lambada,greet,4 -greeting,how's everything?,parrot,greet,4 -goodbye,later!,original,bye,2 -reminder_update,i'd like to remind you of my holiday,parrot,resched,5 -goodbye,bye bye!,original,bye,2 -no,nay,original,cancel,3 -calendar,what's my schedule for april 1st?,parrot,avail,0 -greeting,ahoy hoy,original,greet,4 -goodbye,good call,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -yes,positive,parrot,book,1 -calendar,check my calendar for the 19th of march,lambada,avail,0 -cancel_reservation,i want to cancel the reservation for mercury at the ritz,original,cancel,3 -yes,please let's do this,parrot,book,1 -yes,accepted,original,book,1 -no,it's false,parrot,cancel,3 -no,negating,parrot,cancel,3 -how_busy,how long can i wait in a restaurant?,parrot,avail,0 -no,that's definitely false,original,cancel,3 -yes,TRUE,lambada,book,1 -meeting_schedule,do i have meetings from 1 to 4 today?,original,avail,0 -how_busy,how busy is cheesecake factory at 7:30,lambada,avail,0 -no,"no, that's wrong",original,cancel,3 -greeting,and how're you doing,parrot,greet,4 -greeting,hola,original,greet,4 -thank_you,thanks for that!,original,bye,2 -greeting,heller,original,greet,4 -goodbye,sayonara,original,bye,2 -greeting,good day,original,greet,4 -yes,huh,parrot,book,1 -greeting,how you are,original,greet,4 -yes,ya,original,book,1 -calendar,let me know what's on march 21,parrot,avail,0 -cancel_reservation,call my reservation canceled,lambada,cancel,3 -meeting_schedule,wanna meet with roger?,parrot,avail,0 -yes,obviously,parrot,book,1 -thank_you,nice,parrot,bye,2 -calendar_update,a doctor appointment on friday,parrot,resched,5 -how_busy,how long will i have to wait for a table in the cheese cake factory?,parrot,avail,0 -yes,that's absolutely true,parrot,book,1 -goodbye,ai goodbye,original,bye,2 -no,not right?,parrot,cancel,3 -yes,yay,lambada,book,1 -greeting,what's happening to you?,parrot,greet,4 -goodbye,see ya later,original,bye,2 -greeting,heller,original,greet,4 -no,negating,parrot,cancel,3 -yes,ok,original,book,1 -goodbye,tootles?,parrot,bye,2 -no,that's negative,parrot,cancel,3 -how_busy,what time does the oklahoma county farmer's market have a long waiting period?,parrot,avail,0 -no,certainly false,parrot,cancel,3 -greeting,"hey, what's up",original,greet,4 -how_busy,can you tell me what the crowd is in this restaurant?,parrot,avail,0 -no,no that's a lie,parrot,cancel,3 -goodbye,goodbye later,parrot,bye,2 -greeting,hola,original,greet,4 -goodbye,it's time for goodbye,parrot,bye,2 -how_busy,are chicken dinners busy?,lambada,avail,0 -calendar,bowling on my calendar?,parrot,avail,0 -cancel_reservation,remove my reservation for dinner,lambada,cancel,3 -greeting,how's idy?,parrot,greet,4 -greeting,good day,original,greet,4 -goodbye,goodbye later,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -thank_you,so much easier when you're around,parrot,bye,2 -meeting_schedule,wanna meet roger?,parrot,avail,0 -greeting,how's it hanging,original,greet,4 -goodbye,goodbye!,original,bye,2 -greeting,whats up?,parrot,greet,4 -no,that's erroneous,parrot,cancel,3 -goodbye,goodbye helpful ai devices,parrot,bye,2 -calendar,have i scheduled anything for march 2nd?,parrot,avail,0 -goodbye,good bye,original,bye,2 -how_busy,how long is the wait if i want to be at the tamara steakhouse,parrot,avail,0 -greeting,whats up with you,original,greet,4 -date,today?,parrot,avail,0 -how_busy,how long will it take to get a table at the barbecue?,parrot,avail,0 -greeting,and how's it going,parrot,greet,4 -no,naw,parrot,cancel,3 -yes,affirmitive,original,book,1 -yes,right,parrot,book,1 -no,no way,original,cancel,3 -calendar,what's on the 2nd march?,parrot,avail,0 -yes,accept,parrot,book,1 -yes,i know,parrot,book,1 -no,that's a negative,original,cancel,3 -yes,yup,original,book,1 -greeting,aho,parrot,greet,4 -goodbye,next time we'll talk,parrot,bye,2 -goodbye,later,original,bye,2 -greeting,how are things going?,parrot,greet,4 -goodbye,farewell,original,bye,2 -no,is it a lie?,parrot,cancel,3 -no,is it a lie,parrot,cancel,3 -no,i prefer not to do it,parrot,cancel,3 -goodbye,goodbye soon,lambada,bye,2 -greeting,hey,original,greet,4 -thank_you,thank you for my reply,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -meeting_schedule,check the calendar today for meetings,parrot,avail,0 -how_busy,list the wait times at chipotle grills?,parrot,avail,0 -no,no way!,original,cancel,3 -goodbye,good conversation,parrot,bye,2 -date,list the next week?,parrot,avail,0 -yes,positive,original,book,1 -yes,i agree,original,book,1 -greeting,whats up?,parrot,greet,4 -yes,yay,lambada,book,1 -goodbye,"thanks, bye",original,bye,2 -reminder_update,remember to clean the garage this week,parrot,resched,5 -goodbye,i'm going,parrot,bye,2 -goodbye,you're done,parrot,bye,2 -yes,yeah,original,book,1 -thank_you,i am thankful,lambada,bye,2 -how_busy,does the wait at olive garden have to be long?,lambada,avail,0 -yes,accepted,original,book,1 -yes,agreed,original,book,1 -goodbye,regards,original,bye,2 -no,no?,parrot,cancel,3 -greeting,hi how're things going,lambada,greet,4 -thank_you,thanks again!,original,bye,2 -goodbye,i'm going,parrot,bye,2 -greeting,what's happening,original,greet,4 -no,nay,original,cancel,3 -goodbye,greetings,parrot,bye,2 -goodbye,great talk,lambada,bye,2 -goodbye,adios,original,bye,2 -yes,i know,parrot,book,1 -date,is today the date?,lambada,avail,0 -calendar,tell me what's on my calendar for march 20?,parrot,avail,0 -reminder_update,keep checking the steak,parrot,resched,5 -reminder_update,set a reminder to remind me to check when my car payment is,original,resched,5 -greeting,how've you been,original,greet,4 -how_busy,how busy will the olive garden be at 6pm?,parrot,avail,0 -yes,just right,parrot,book,1 -meeting_schedule,meeting today,parrot,avail,0 -goodbye,im leaving,parrot,bye,2 -yes,accept,parrot,book,1 -thank_you,i want to thank you for your time,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -goodbye,good call,parrot,bye,2 -reminder_update,remind me to check my oven,parrot,resched,5 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,negation,parrot,cancel,3 -greeting,how is my day,original,greet,4 -no,is it a lie?,parrot,cancel,3 -greeting,hola,original,greet,4 -meeting_schedule,meeting today,parrot,avail,0 -yes,"yeah, that's right",original,book,1 -calendar_update,get rid of the gym appointment on april 23,parrot,resched,5 -date,in 10 days?,parrot,avail,0 -yes,TRUE,lambada,book,1 -greeting,hey,original,greet,4 -no,no good,original,cancel,3 -how_busy,is there a waiting time?,parrot,avail,0 -goodbye,wonderful conversation,lambada,bye,2 -goodbye,goodbye ai,parrot,bye,2 -no,negation,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -schedule_meeting,please schedule a meeting,parrot,book,1 -cancel_reservation,shut down the dinner reservation,parrot,cancel,3 -yes,yeap,original,book,1 -how_busy,how long will it take to get a table at the cheesecake factory?,parrot,avail,0 -yes,it's certainly positive,parrot,book,1 -goodbye,farewell!,original,bye,2 -yes,i'll say yes,parrot,book,1 -no,"no, that is incorrect",original,cancel,3 -greeting,whats up?,parrot,greet,4 -no,it's no,parrot,cancel,3 -goodbye,thank you for having this conversation,parrot,bye,2 -no,FALSE,lambada,cancel,3 -yes,i can tell you,parrot,book,1 -goodbye,goodbye!,original,bye,2 -goodbye,see ya,lambada,bye,2 -how_busy,how long will the wait be at chili's around 6pm,lambada,avail,0 -greeting,whats up?,parrot,greet,4 -goodbye,good bye,original,bye,2 -yes,it is true,original,book,1 -how_busy,how busy is ihop?,parrot,avail,0 -greeting,hey bs,lambada,greet,4 -goodbye,later,original,bye,2 -no,that's no,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -no,no that's a false statement,parrot,cancel,3 -how_busy,how long is olive garden usually busy at noon?,parrot,avail,0 -goodbye,great talk,lambada,bye,2 -no,i'd prefer not to answer,parrot,cancel,3 -thank_you,i'm happy with my response,parrot,bye,2 -yes,i agree,original,book,1 -yes,"yeah, that's it",lambada,book,1 -thank_you,"awesome, thanks",original,bye,2 -greeting,"hey, ai",original,greet,4 -no,no that is wrong,original,cancel,3 -greeting,how you feel?,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -goodbye,afterward,parrot,bye,2 -yes,positive,parrot,book,1 -date,in 14 days?,parrot,avail,0 -thank_you,i appreciate that,original,bye,2 -no,that’s not correct,original,cancel,3 -no,that is very false,lambada,cancel,3 -greeting,what's up?,parrot,greet,4 -date,which date is it,lambada,avail,0 -goodbye,fairwell,original,bye,2 -yes,indeed,original,book,1 -reminder_update,let me remember,parrot,resched,5 -goodbye,greetings,parrot,bye,2 -yes,yeap,original,book,1 -yes,i have to say yes,parrot,book,1 -no,it's a negation,parrot,cancel,3 -goodbye,farewell!,original,bye,2 -thank_you,thanks again,original,bye,2 -yes,obviously,parrot,book,1 -meeting_schedule,what's on my agenda today?,parrot,avail,0 -greeting,hiya,original,greet,4 -no,nothing,parrot,cancel,3 -thank_you,very grateful,parrot,bye,2 -yes,oh yes,original,book,1 -yes,a real statement,parrot,book,1 -goodbye,goodbye to you,original,bye,2 -meeting_schedule,when is my meeting with john planned for?,parrot,avail,0 -thank_you,thank you!,original,bye,2 -yes,that's right,original,book,1 -goodbye,greetings,parrot,bye,2 -goodbye,thank you for the good call,parrot,bye,2 -goodbye,later,original,bye,2 -no,negating,parrot,cancel,3 -greeting,tell me the way things are going?,parrot,greet,4 -yes,positive,parrot,book,1 -calendar,what do i have scheduled on my calendar for march 18th?,lambada,avail,0 -yes,okay,original,book,1 -goodbye,regards,original,bye,2 -yes,you're right,original,book,1 -goodbye,very nice conversation,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -no,is my falsehood?,parrot,cancel,3 -cancel_reservation,abrogate the reservation for dinner,parrot,cancel,3 -yes,what's that going to be,lambada,book,1 -yes,good yes,lambada,book,1 -no,that's not acceptable,parrot,cancel,3 -reminder_update,make a reminder please,parrot,resched,5 -date,a year?,parrot,avail,0 -goodbye,thanks for a good call,lambada,bye,2 -cancel_reservation,take away my reservation at 4 pm in the steakhouse please,parrot,cancel,3 -yes,approved,original,book,1 -greeting,hello,original,greet,4 -goodbye,take a break,parrot,bye,2 -schedule_meeting,how does scheduling a meeting work,original,book,1 -no,naw,original,cancel,3 -goodbye,goodbyes,parrot,bye,2 -greeting,good morning,parrot,greet,4 -reminder_update,i need a reminder to buy cookies,parrot,resched,5 -greeting,hey there fellow,original,greet,4 -cancel_reservation,i am not in need of my reservation anymore,original,cancel,3 -goodbye,adios!,original,bye,2 -goodbye,tootles,original,bye,2 -how_busy,how long will it take to get seated at ihop,lambada,avail,0 -greeting,ahoy hoy,original,greet,4 -calendar,how do i plan my calendar for april 30th?,parrot,avail,0 -thank_you,thanks so much!,original,bye,2 -yes,yup,original,book,1 -goodbye,fairwell,original,bye,2 -greeting,hiya,original,greet,4 -reminder_update,let me remember,parrot,resched,5 -date,what is the name of the month in 8 days?,lambada,avail,0 -how_busy,how long will it take for me to sit in the red lobster restaurant,parrot,avail,0 -no,no way!,original,cancel,3 -how_busy,list the current seating times in this restaurant?,parrot,avail,0 -no,no!,original,cancel,3 -goodbye,i want it now,parrot,bye,2 -thank_you,appreciated,original,bye,2 -thank_you,okay thank you,parrot,bye,2 -calendar_update,make sure march 1 is clear on my calendar,lambada,resched,5 -how_busy,how long does the restaurant wait before i go?,parrot,avail,0 -yes,absolutely!,original,book,1 -goodbye,you're done,parrot,bye,2 -thank_you,thanks a million,original,bye,2 -meeting_schedule,do i have any meetings from 1 to 5?,lambada,avail,0 -goodbye,glad we talked,parrot,bye,2 -greeting,whats new?,parrot,greet,4 -no,that's completely wrong,parrot,cancel,3 -goodbye,bye-bye,original,bye,2 -goodbye,this conversation was wonderful,parrot,bye,2 -reminder_update,please remind me of the food deposit,parrot,resched,5 -no,that's wrong,original,cancel,3 -no,hell nah,original,cancel,3 -yes,agreed,original,book,1 -goodbye,fairwell,original,bye,2 -greeting,hello ai,parrot,greet,4 -greeting,hiya,original,greet,4 -yes,that's correct,original,book,1 -greeting,how's idy doing?,parrot,greet,4 -yes,is true,parrot,book,1 -no,i don't think it's right,parrot,cancel,3 -greeting,well hello,original,greet,4 -goodbye,glad to talk,parrot,bye,2 -greeting,welcome,parrot,greet,4 -date,what'll it be tomorrow?,parrot,avail,0 -how_busy,how long will it take to wait for a table in tomato soup,parrot,avail,0 -yes,sure,original,book,1 -greeting,how's everything?,parrot,greet,4 -no,yes that's false,lambada,cancel,3 -yes,definitely,original,book,1 -schedule_meeting,is it possible to schedule a meeting room on thursday?,parrot,book,1 -cancel_reservation,i do not want my reservation anymore,original,cancel,3 -greeting,heller,original,greet,4 -goodbye,good-bye,parrot,bye,2 -greeting,how things go?,parrot,greet,4 -calendar_update,can you change the date of the doctor's appointment event in my calendar from april 1 to april 3?,parrot,resched,5 -calendar_update,add some events to my calendar,lambada,resched,5 -goodbye,goodnight,original,bye,2 -goodbye,good-bye,parrot,bye,2 -thank_you,i appeciate it,parrot,bye,2 -thank_you,you're a good help,parrot,bye,2 -goodbye,tootles,original,bye,2 -goodbye,ai goodbye,original,bye,2 -no,hell nah,original,cancel,3 -schedule_meeting,please help me set up a meeting please,parrot,book,1 -date,list the current date?,parrot,avail,0 -yes,"yes, that's it",original,book,1 -no,i'm afraid not,parrot,cancel,3 -greeting,how's idy?,parrot,greet,4 -date,what month today?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -goodbye,the conversation was good,parrot,bye,2 -no,nope,original,cancel,3 -greeting,whats up,original,greet,4 -thank_you,you've tried,parrot,bye,2 -no,nothing,parrot,cancel,3 -date,is the date?,parrot,avail,0 -how_busy,how busy will chili's be at 5 pm,lambada,avail,0 -greeting,hey what's up?,parrot,greet,4 -greeting,hello there,original,greet,4 -yes,"yes, please",parrot,book,1 -goodbye,my way,parrot,bye,2 -cancel_reservation,what do i need to cancel my reservation?,lambada,cancel,3 -yes,yeap,original,book,1 -schedule_meeting,please schedule a meeting with bob brown at noon the day after tomorrow,parrot,book,1 -thank_you,okay thank you,parrot,bye,2 -goodbye,goodbye to yours,parrot,bye,2 -goodbye,farewell,original,bye,2 -yes,definitely,original,book,1 -thank_you,thanks for coming by,lambada,bye,2 -cancel_reservation,please just trash the reservation i made please,parrot,cancel,3 -no,not good,parrot,cancel,3 -goodbye,as regards,parrot,bye,2 -yes,seems true,parrot,book,1 -no,that's a lie,parrot,cancel,3 -greeting,hey fellows,parrot,greet,4 -no,but that's not factual,parrot,cancel,3 -no,that's false,original,cancel,3 -goodbye,great chat goodbye,lambada,bye,2 -goodbye,on the highway,parrot,bye,2 -yes,you got it,original,book,1 -goodbye,i'm out,parrot,bye,2 -how_busy,tell me how busy the chili hole is,parrot,avail,0 -how_busy,how long will the wait be at iman's house?,parrot,avail,0 -goodbye,good conversation,parrot,bye,2 -how_busy,how busy will tatsurai be at 8 pm,lambada,avail,0 -date,show me the date,original,avail,0 -date,what year?,parrot,avail,0 -yes,agreed,original,book,1 -goodbye,bye now,original,bye,2 -yes,sure thing,original,book,1 -how_busy,how long will it take me to sit in the chipotle?,parrot,avail,0 -goodbye,bye,original,bye,2 -cancel_reservation,get the salad cancelled,lambada,cancel,3 -how_busy,how busy is the restaurant,lambada,avail,0 -schedule_meeting,how are meetings scheduled?,parrot,book,1 -date,what year?,parrot,avail,0 -yes,huh huh,parrot,book,1 -how_busy,is mcdonalds busy?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -no,that’s actually wrong,original,cancel,3 -greeting,aloha,original,greet,4 -no,negating,parrot,cancel,3 -meeting_schedule,when's the meeting?,parrot,avail,0 -goodbye,goodbye goodbye,parrot,bye,2 -goodbye,goodbye then,parrot,bye,2 -goodbye,say goodbye,parrot,bye,2 -goodbye,the conversation was nice,parrot,bye,2 -yes,yeah,original,book,1 -yes,facts,original,book,1 -no,no,lambada,cancel,3 -goodbye,tootles,original,bye,2 -goodbye,later gator!,original,bye,2 -calendar_update,delete event scheduled for april 14,lambada,resched,5 -yes,i want it,parrot,book,1 -yes,ok,original,book,1 -greeting,welcome,parrot,greet,4 -goodbye,farewell!,original,bye,2 -reminder_update,please remember me later,parrot,resched,5 -no,the answer is no,original,cancel,3 -greeting,nice day,lambada,greet,4 -yes,yup,original,book,1 -goodbye,tootles,original,bye,2 -date,what date will it be in 9 days?,parrot,avail,0 -yes,yeap,original,book,1 -greeting,how are things for you?,parrot,greet,4 -yes,confirm,original,book,1 -goodbye,later!,original,bye,2 -date,what's today,original,avail,0 -goodbye,later!,original,bye,2 -yes,huh,parrot,book,1 -no,but it's totally wrong,parrot,cancel,3 -greeting,how's ai doing?,parrot,greet,4 -how_busy,how busy is michel's at 5:30,lambada,avail,0 -goodbye,goodbyes,parrot,bye,2 -goodbye,", goodbye",lambada,bye,2 -yes,approved,original,book,1 -thank_you,thank you ai,parrot,bye,2 -yes,a fact,parrot,book,1 -calendar,tell me what's on my calendar for may 1st?,parrot,avail,0 -goodbye,later,original,bye,2 -how_busy,how busy will the red robin be at 5pm,lambada,avail,0 -yes,yay,lambada,book,1 -greeting,heyo,original,greet,4 -reminder_update,can you make a reminder?,parrot,resched,5 -how_busy,how long will the wait time be at the cheese cake factory,original,avail,0 -greeting,salutations!,original,greet,4 -no,negation,parrot,cancel,3 -thank_you,okay thank you,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -greeting,ahoy there,lambada,greet,4 -greeting,hi ai,original,greet,4 -how_busy,what's red robin's like at 6pm?,parrot,avail,0 -greeting,what's happening,original,greet,4 -how_busy,how busy is mcdonalds right now?,parrot,avail,0 -no,no thank you,original,cancel,3 -how_busy,how long will the restaurant last after noon?,parrot,avail,0 -greeting,heller,original,greet,4 -no,ill pass,original,cancel,3 -no,negatory?,parrot,cancel,3 -no,hell nah,original,cancel,3 -yes,definitely,original,book,1 -reminder_update,i want to add a reminder to my list,parrot,resched,5 -thank_you,thanks please,original,bye,2 -thank_you,thank you,original,bye,2 -goodbye,have to run,parrot,bye,2 -goodbye,i have to get out of here,parrot,bye,2 -yes,yup,original,book,1 -greeting,"why, hello bandit",original,greet,4 -thank_you,thanks for cooperating,parrot,bye,2 -thank_you,thanks,original,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -thank_you,well done,parrot,bye,2 -date,please give me the date for today?,parrot,avail,0 -date,in 100 days?,parrot,avail,0 -yes,thats right,original,book,1 -how_busy,how long is the wait in this restaurant,parrot,avail,0 -greeting,heller,original,greet,4 -greeting,what's new?,parrot,greet,4 -reminder_update,please remind me of my resume,parrot,resched,5 -yes,approved,original,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,how's the ai?,parrot,greet,4 -thank_you,thanks for that!,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -thank_you,thank you,original,bye,2 -greeting,how's everything,original,greet,4 -cancel_reservation,cancellation of reservation for pizza at 4 pm,parrot,cancel,3 -goodbye,i'm gone,parrot,bye,2 -schedule_meeting,how does a meeting plan work?,parrot,book,1 -yes,i think it's true,original,book,1 -calendar,what's the day for march 29th?,parrot,avail,0 -no,that's incorrect!,original,cancel,3 -cancel_reservation,can you cancel a reservation for me?,parrot,cancel,3 -calendar_update,delete the events on 1 june,parrot,resched,5 -yes,ok,original,book,1 -schedule_meeting,i need you to set up a meeting with john at 11am,parrot,book,1 -calendar,please read my calendar,parrot,avail,0 -greeting,what's new,lambada,greet,4 -greeting,so how's everything going?,parrot,greet,4 -thank_you,thanks please,original,bye,2 -greeting,"hello, ai",original,greet,4 -date,what is tomorrow?,parrot,avail,0 -yes,sure,original,book,1 -greeting,whats up,original,greet,4 -no,false for sure,original,cancel,3 -greeting,how's idy doing,lambada,greet,4 -how_busy,how long will i have to wait for shokudo to come,parrot,avail,0 -calendar_update,i must remove an event from my calendar?,parrot,resched,5 -yes,accepted,original,book,1 -meeting_schedule,when is my meeting with leroy?,parrot,avail,0 -date,what is today's date?,original,avail,0 -greeting,salutations,parrot,greet,4 -how_busy,check how busy the chilies are at 10 am,parrot,avail,0 -no,it would be wrong,parrot,cancel,3 -yes,that is affirmative,original,book,1 -calendar,can you tell me what's on my calendar for march 1?,parrot,avail,0 -how_busy,how long will it take to get seated at needham's,original,avail,0 -no,no!,original,cancel,3 -yes,sure thing,original,book,1 -reminder_update,please make a new note,parrot,resched,5 -yes,TRUE,lambada,book,1 -calendar_update,remove event from calendar,lambada,resched,5 -meeting_schedule,list the meetings today?,parrot,avail,0 -greeting,hello good day,parrot,greet,4 -thank_you,much obliged,original,bye,2 -thank_you,my gratitude,parrot,bye,2 -thank_you,okay thanks,original,bye,2 -date,what will it be like in three days,parrot,avail,0 -yes,i'll say yes,parrot,book,1 -greeting,"hello, friend",original,greet,4 -yes,confirmed,original,book,1 -no,the answer is not true,parrot,cancel,3 -no,i'll pass,original,cancel,3 -thank_you,thanks for responding,parrot,bye,2 -goodbye,maybe next time,parrot,bye,2 -no,FALSE,lambada,cancel,3 -greeting,how's my life going?,parrot,greet,4 -calendar,please tell me what's on my calendar for tuesday the 2nd?,parrot,avail,0 -greeting,"hello, ai",original,greet,4 -how_busy,how long will i have to wait at the red robin before i can take a table,parrot,avail,0 -greeting,hello hello good day,parrot,greet,4 -goodbye,good-bye,parrot,bye,2 -no,that's no,parrot,cancel,3 -goodbye,it's over,parrot,bye,2 -yes,yay,lambada,book,1 -reminder_update,let me remember,parrot,resched,5 -goodbye,sayonara,original,bye,2 -no,FALSE,lambada,cancel,3 -yes,a true statement,parrot,book,1 -yes,confirmed,original,book,1 -goodbye,good-bye,parrot,bye,2 -goodbye,peace,original,bye,2 -yes,yeap,original,book,1 -greeting,salutation,parrot,greet,4 -reminder_update,create a reminder please,parrot,resched,5 -how_busy,how long will it take to eat at black jack?,parrot,avail,0 -cancel_reservation,please cancel the reservation at pat's,lambada,cancel,3 -greeting,tell me the latest news,parrot,greet,4 -thank_you,merci beaucoup,original,bye,2 -no,"nope, that's false",original,cancel,3 -greeting,heller,original,greet,4 -goodbye,buhbye,original,bye,2 -goodbye,adios,original,bye,2 -greeting,tell me what you feel?,parrot,greet,4 -yes,"yeah, that's true",lambada,book,1 -no,that's negative,parrot,cancel,3 -yes,TRUE,lambada,book,1 -greeting,how you're treated?,parrot,greet,4 -no,it would be awful,parrot,cancel,3 -how_busy,how busy is olive garden at 7 pm,lambada,avail,0 -reminder_update,let me remember,parrot,resched,5 -yes,i just said that,parrot,book,1 -goodbye,be careful then,lambada,bye,2 -calendar,you know when i added the meeting to my schedule?,parrot,avail,0 -thank_you,okay thanks,original,bye,2 -no,that's totally wrong,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -thank_you,you've been great,parrot,bye,2 -reminder_update,remind me,original,resched,5 -thank_you,i'm really thankful,parrot,bye,2 -greeting,how is ai feeling?,parrot,greet,4 -goodbye,goodbyes,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -no,that seems wrong,lambada,cancel,3 -greeting,hi,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,goodbye bye,parrot,bye,2 -meeting_schedule,i need a time to do all the meetings on my schedule,parrot,avail,0 -yes,confirm,original,book,1 -meeting_schedule,do you have any meetings scheduled between 4 and 5 today?,parrot,avail,0 -goodbye,please talk to me,parrot,bye,2 -how_busy,can you tell me the wait time at applebee's?,lambada,avail,0 -greeting,how are things,original,greet,4 -date,when is it going to be five days?,parrot,avail,0 -yes,yep,original,book,1 -goodbye,greetings,parrot,bye,2 -yes,confirm,original,book,1 -no,nothing,parrot,cancel,3 -thank_you,your efforts won't be ignored,parrot,bye,2 -no,that's the wrong answer,parrot,cancel,3 -how_busy,how many people are at olive garden between 6:30 and 7,lambada,avail,0 -yes,yep,original,book,1 -goodbye,bye bye,lambada,bye,2 -no,that is no way,lambada,cancel,3 -date,date tomorrow,parrot,avail,0 -thank_you,i appreciate the help,original,bye,2 -calendar_update,remove an event from my calendar,lambada,resched,5 -yes,uh-huh,original,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -how_busy,how long will i have to wait before going to olive garden?,parrot,avail,0 -how_busy,can you tell me the wait time at applebee?,parrot,avail,0 -no,no?,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -goodbye,good luck tomorrow,lambada,bye,2 -goodbye,thank you goodbye,original,bye,2 -goodbye,i'm saying goodbye now,original,bye,2 -no,that's wrong,original,cancel,3 -thank_you,many thank,original,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -reminder_update,i want a reminder,lambada,resched,5 -yes,right,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -meeting_schedule,when's my meeting?,parrot,avail,0 -greeting,hi ai,original,greet,4 -yes,sure thing,original,book,1 -greeting,salutation,parrot,greet,4 -no,naw,original,cancel,3 -yes,that's a fact,parrot,book,1 -no,that’s incorrect,original,cancel,3 -goodbye,im leaving,parrot,bye,2 -goodbye,later!,original,bye,2 -greeting,hi how's it going,lambada,greet,4 -greeting,hey bs,lambada,greet,4 -meeting_schedule,what are my meeting hours?,parrot,avail,0 -goodbye,i'll go,parrot,bye,2 -calendar,read my calendar events,original,avail,0 -greeting,"hello there, good morning",original,greet,4 -calendar,show me my calendar?,parrot,avail,0 -greeting,hiya!,original,greet,4 -goodbye,buhbye,original,bye,2 -schedule_meeting,can i meet with steve?,parrot,book,1 -how_busy,how long will i have to wait at red lobster at 9 pm,lambada,avail,0 -yes,yay,lambada,book,1 -reminder_update,what's a reminder,parrot,resched,5 -yes,ya,original,book,1 -yes,sure thing,original,book,1 -how_busy,is there a wait time at mcdonalds?,parrot,avail,0 -no,that's negative,parrot,cancel,3 -goodbye,i'm glad you had a good conversation with me,parrot,bye,2 -goodbye,sign off,parrot,bye,2 -yes,yes,original,book,1 -yes,yes sir,original,book,1 -thank_you,again thank you,parrot,bye,2 -goodbye,i enjoyed our talk,parrot,bye,2 -thank_you,i appreciate your assistance,parrot,bye,2 -greeting,"hello, ai",original,greet,4 -yes,"yeah, that's it",lambada,book,1 -goodbye,afterward,parrot,bye,2 -reminder_update,remind me to wash my hair,parrot,resched,5 -how_busy,how busy is chili around 5 pm?,parrot,avail,0 -goodbye,later gator!,original,bye,2 -no,no that's a lie,parrot,cancel,3 -goodbye,bye bye!,original,bye,2 -calendar,check my calendar,parrot,avail,0 -how_busy,how long will it take to sit at the cheese cake factory?,parrot,avail,0 -yes,i'll say yes,parrot,book,1 -calendar_update,clear my calendar on march 22nd,parrot,resched,5 -yes,yup,original,book,1 -goodbye,it was good chatting,original,bye,2 -yes,agreed,original,book,1 -yes,yeah that's right,lambada,book,1 -goodbye,go easy,parrot,bye,2 -meeting_schedule,are there meetings from 1 to 5 o'clock?,parrot,avail,0 -schedule_meeting,how many meeting rooms are available in the afternoon?,parrot,book,1 -how_busy,when will i have to wait for a table at san francisco's?,parrot,avail,0 -goodbye,cya later,original,bye,2 -no,that's not the truth,parrot,cancel,3 -no,negatory,original,cancel,3 -calendar,what is happening on march 2 calendar?,lambada,avail,0 -no,is not true?,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -calendar,please know what's on my calendar for friday 1st,parrot,avail,0 -how_busy,how busy is chili around 11 pm,parrot,avail,0 -no,not true,original,cancel,3 -yes,oh-huh,parrot,book,1 -schedule_meeting,can you bring me a meeting room for noon?,parrot,book,1 -no,nay,original,cancel,3 -date,what's today?,parrot,avail,0 -yes,great,original,book,1 -goodbye,goodbyes soon,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -greeting,good evening,original,greet,4 -yes,good,parrot,book,1 -thank_you,the best,parrot,bye,2 -thank_you,thank you!,original,bye,2 -greeting,bonjour,original,greet,4 -date,what month today?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -no,negation,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -yes,10-Apr,original,book,1 -goodbye,tata for now,original,bye,2 -goodbye,talk to you later,original,bye,2 -thank_you,thanks please,original,bye,2 -no,don't like that,parrot,cancel,3 -yes,yes,original,book,1 -greeting,ahoy,lambada,greet,4 -no,the information is not true,parrot,cancel,3 -yes,okay,original,book,1 -greeting,how were you?,parrot,greet,4 -greeting,salutation,parrot,greet,4 -meeting_schedule,what if i have a meeting?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -calendar_update,keep an eye out for the staff meeting on march 1 at 10 am,parrot,resched,5 -goodbye,bye bye,lambada,bye,2 -date,what's my date in five days?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -goodbye,i'm going,parrot,bye,2 -greeting,hola!,original,greet,4 -meeting_schedule,are there meetings between 3 and 5 o'clock in the evening?,parrot,avail,0 -goodbye,peace,original,bye,2 -no,that's not correct,original,cancel,3 -no,no,lambada,cancel,3 -thank_you,you answered,parrot,bye,2 -no,not true,original,cancel,3 -goodbye,bye,original,bye,2 -meeting_schedule,when does i meet richard?,parrot,avail,0 -how_busy,how busy is iman at 7?,parrot,avail,0 -yes,yes sir,original,book,1 -goodbye,goodbye!,original,bye,2 -no,FALSE,original,cancel,3 -goodbye,bye,original,bye,2 -goodbye,later!,original,bye,2 -greeting,"hello, good morning",lambada,greet,4 -no,erroneous,parrot,cancel,3 -date,what the day?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -no,that's a very bad answer,parrot,cancel,3 -how_busy,i need to know how busy olive garden is at 6 pm,parrot,avail,0 -date,what day is it now?,lambada,avail,0 -greeting,"hi, ai",original,greet,4 -date,in 10 days?,parrot,avail,0 -thank_you,"thanks, that's helpful",original,bye,2 -how_busy,will i need a long wait for a table in the restaurant?,parrot,avail,0 -reminder_update,can you remind me to finish a task or something?,parrot,resched,5 -greeting,how's my life?,parrot,greet,4 -no,no thanks,original,cancel,3 -yes,indeed,original,book,1 -greeting,hi,original,greet,4 -goodbye,goodbye!,original,bye,2 -goodbye,i'll go,parrot,bye,2 -how_busy,can i expect how long the wait is at olive garden right now?,lambada,avail,0 -goodbye,goodbye,original,bye,2 -yes,oh yes,original,book,1 -how_busy,how busy is the restaurant around 6pm?,parrot,avail,0 -thank_you,why thank you?,original,bye,2 -thank_you,many thank,original,bye,2 -no,it's not right,parrot,cancel,3 -no,negative,original,cancel,3 -yes,that's correct,original,book,1 -thank_you,i want to thank you for helping me,parrot,bye,2 -goodbye,lovely conversation,parrot,bye,2 -yes,do that?,original,book,1 -yes,yes that's correct,original,book,1 -greeting,how is everything going?,parrot,greet,4 -yes,obviously,parrot,book,1 -greeting,whats up,original,greet,4 -date,show me the date,original,avail,0 -goodbye,goodbye my friend,parrot,bye,2 -goodbye,goodbye ai,parrot,bye,2 -goodbye,farewell!,original,bye,2 -no,thats a negative,original,cancel,3 -thank_you,nice,parrot,bye,2 -calendar_update,make sure april 1 is clear on my calendar,original,resched,5 -greeting,how ya doin,original,greet,4 -goodbye,i'll go,parrot,bye,2 -thank_you,i'm very grateful,parrot,bye,2 -cancel_reservation,how can i cancel my reservation?,parrot,cancel,3 -how_busy,how long will the wait be at chili's around 6pm?,parrot,avail,0 -goodbye,adios,original,bye,2 -yes,affirmative,original,book,1 -cancel_reservation,please cancel my booking for joe at ronnie's,parrot,cancel,3 -yes,sure,original,book,1 -greeting,how's my life today?,parrot,greet,4 -yes,"yes, that's right",original,book,1 -calendar,what's my schedule for october 14?,parrot,avail,0 -greeting,how's it going with you,original,greet,4 -greeting,hello,original,greet,4 -greeting,ahoy,lambada,greet,4 -calendar_update,can you add a doctor's appointment to the friday schedule?,parrot,resched,5 -how_busy,how busy will ihop be at 7pm?,parrot,avail,0 -no,certainly not true,parrot,cancel,3 -thank_you,i thank you for the info,parrot,bye,2 -goodbye,nice to see you,original,bye,2 -yes,absolutely!,original,book,1 -no,negatory,original,cancel,3 -greeting,it's nice to see you,original,greet,4 -meeting_schedule,will you meet ann?,parrot,avail,0 -no,it's not what we want,parrot,cancel,3 -thank_you,thanks,original,bye,2 -greeting,hi there,original,greet,4 -yes,yay,lambada,book,1 -yes,certainly,parrot,book,1 -date,what's the current date,original,avail,0 -greeting,whats up?,parrot,greet,4 -thank_you,you're a great help,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -date,what's today,original,avail,0 -yes,true is my response,original,book,1 -yes,10-Apr,original,book,1 -reminder_update,add a reminder to me?,parrot,resched,5 -greeting,do you feel?,parrot,greet,4 -how_busy,how busy is chipotle restaurant at 11 pm,lambada,avail,0 -greeting,good morning,parrot,greet,4 -yes,yay,lambada,book,1 -how_busy,how long will the wait at chili's be around 6pm?,parrot,avail,0 -yes,not false,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -reminder_update,i need to be reminded,original,resched,5 -yes,indeed,original,book,1 -how_busy,is michel busy at three?,parrot,avail,0 -no,say negative,parrot,cancel,3 -greeting,whats up,original,greet,4 -goodbye,goodbye soon,lambada,bye,2 -yes,obviously,parrot,book,1 -greeting,how's my life?,parrot,greet,4 -meeting_schedule,are there meetings for today on my calendar?,parrot,avail,0 -thank_you,i'm glad you helped,parrot,bye,2 -schedule_meeting,would you be able to help me with a meeting room on wednesday at 3pm,original,book,1 -calendar_update,annull all events on my calendar ,parrot,resched,5 -date,in three days,parrot,avail,0 -yes,i know,parrot,book,1 -yes,yup,original,book,1 -goodbye,bye!,original,bye,2 -thank_you,i have to thank you for your time,parrot,bye,2 -no,nope that's not true,parrot,cancel,3 -how_busy,how long will it take to be seated at mw steakhouse?,parrot,avail,0 -no,FALSE,original,cancel,3 -date,what's the date tomorrow? '',parrot,avail,0 -no,FALSE,original,cancel,3 -yes,"yeah, that's it",lambada,book,1 -goodbye,goodbye,original,bye,2 -meeting_schedule,are there any meetings with dan?,parrot,avail,0 -thank_you,i'm thankful,original,bye,2 -calendar,are there any events in the calendar for today?,parrot,avail,0 -yes,certainly,parrot,book,1 -schedule_meeting,how many meeting rooms are available during the afternoon?,parrot,book,1 -goodbye,goodbyes soon,parrot,bye,2 -greeting,do you feel?,parrot,greet,4 -goodbye,goodbye!,original,bye,2 -calendar_update,remove april 16th birthday party from my calendar,parrot,resched,5 -yes,just right,parrot,book,1 -no,nay,original,cancel,3 -calendar_update,annull the event on 23 february,parrot,resched,5 -cancel_reservation,please unreserve that table,original,cancel,3 -thank_you,the best,parrot,bye,2 -yes,that's a definite yes,original,book,1 -schedule_meeting,can you book a meeting room for 6pm wednesday?,parrot,book,1 -greeting,how're you?,parrot,greet,4 -thank_you,appreciated,original,bye,2 -greeting,bonjour,original,greet,4 -goodbye,greetings,parrot,bye,2 -yes,accept,parrot,book,1 -yes,yeap,original,book,1 -no,it's no,parrot,cancel,3 -greeting,hola,original,greet,4 -yes,accept,parrot,book,1 -no,no don't do that,parrot,cancel,3 -greeting,well how's the situation?,parrot,greet,4 -greeting,how're you doing,original,greet,4 -date,what is the day of the week?,parrot,avail,0 -greeting,how you're doing?,parrot,greet,4 -yes,yay,lambada,book,1 -goodbye,later!,original,bye,2 -no,nay,original,cancel,3 -goodbye,now i have to say goodbye,parrot,bye,2 -calendar,tell me what my calendar looks like for march 14?,parrot,avail,0 -goodbye,i'm leaving now,lambada,bye,2 -date,which date is it?,parrot,avail,0 -calendar,tell me what is scheduled for sunday?,lambada,avail,0 -no,it's very false,parrot,cancel,3 -goodbye,i'm leaving,parrot,bye,2 -no,negation,parrot,cancel,3 -yes,yes,original,book,1 -yes,absolutely,original,book,1 -no,nothing,parrot,cancel,3 -calendar,make sure you check my calendar for tuesday appointments,parrot,avail,0 -goodbye,tootles,original,bye,2 -how_busy,how busy is olive garden at 4:30,lambada,avail,0 -goodbye,please chat to me,parrot,bye,2 -yes,10-Apr,original,book,1 -meeting_schedule,what meetings do i have?,parrot,avail,0 -yes,affirmative,original,book,1 -greeting,how's my day going,lambada,greet,4 -goodbye,thanks goodbye,parrot,bye,2 -yes,definitely,original,book,1 -yes,that's correct,original,book,1 -calendar_update,you can remove the field trip from my calendar for march 12 2019 ,parrot,resched,5 -greeting,why hello?,original,greet,4 -no,that's completely wrong,parrot,cancel,3 -yes,yep,original,book,1 -thank_you,thanks for cooperating,parrot,bye,2 -goodbye,ill leave now,parrot,bye,2 -yes,"yes, please",parrot,book,1 -schedule_meeting,i want to set a meeting with john at 6pm,lambada,book,1 -yes,yeap,original,book,1 -thank_you,thanks!,original,bye,2 -yes,let's do it,parrot,book,1 -schedule_meeting,i need a meeting room on saturday at 10am can you help me out?,parrot,book,1 -no,"i don't like that, no",original,cancel,3 -how_busy,how busy will the golden corral be at 730 tonight?,parrot,avail,0 -goodbye,i'll see you later,lambada,bye,2 -yes,obviously,parrot,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -no,not right?,parrot,cancel,3 -no,nope,original,cancel,3 -yes,affirmitive,original,book,1 -how_busy,is tilman busy at 5?,parrot,avail,0 -how_busy,what's the wait at olive garden right now,lambada,avail,0 -how_busy,how busy will the olive garden be around 7 pm,parrot,avail,0 -yes,i agree,original,book,1 -yes,absolutely!,original,book,1 -greeting,yo,original,greet,4 -greeting,hi ai,original,greet,4 -yes,facts,original,book,1 -no,not right?,parrot,cancel,3 -date,today what date?,parrot,avail,0 -yes,absolutely,original,book,1 -how_busy,can i wait at chili's until 7pm?,parrot,avail,0 -yes,yeah that's right,lambada,book,1 -reminder_update,remind me to do something,original,resched,5 -greeting,hey what's up?,parrot,greet,4 -meeting_schedule,do you know when nick meets you?,parrot,avail,0 -how_busy,does the olive garden have a lot of seating at 8pm?,parrot,avail,0 -greeting,how ya been,original,greet,4 -meeting_schedule,meetings today,original,avail,0 -no,that is overwhelmingly negative,lambada,cancel,3 -date,tell me the next month?,parrot,avail,0 -yes,positive,original,book,1 -no,FALSE,original,cancel,3 -goodbye,goodbye ai,parrot,bye,2 -yes,"true, most definitely",original,book,1 -yes,not a falsehood,parrot,book,1 -yes,absolutely!,original,book,1 -no,nothing,parrot,cancel,3 -no,hell nah,original,cancel,3 -calendar,i need my calendar,parrot,avail,0 -no,absolutely not,original,cancel,3 -no,nope that is not right,lambada,cancel,3 -yes,"yes, please",parrot,book,1 -no,nay,original,cancel,3 -no,don't agree,parrot,cancel,3 -yes,sure,original,book,1 -reminder_update,set reminder to feed cat tonight at 6pm,original,resched,5 -goodbye,goodbye now,parrot,bye,2 -reminder_update,should i be reminded to set my flight reminder?,parrot,resched,5 -thank_you,awesome thank you,parrot,bye,2 -greeting,hey what's up?,parrot,greet,4 -thank_you,your answer was enjoyable,original,bye,2 -schedule_meeting,please set up a meeting with bob at 2pm,parrot,book,1 -how_busy,waiting for chicken tikka masala right now?,parrot,avail,0 -greeting,and how's it going?,parrot,greet,4 -yes,yes,original,book,1 -yes,good,parrot,book,1 -goodbye,"nice talk, goodbye",lambada,bye,2 -goodbye,sayonara ,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -no,"no, that's wrong",original,cancel,3 -greeting,how goes it,original,greet,4 -goodbye,sayonara,original,bye,2 -calendar_update,i need buy a birthday gift for sue taken off my calendar it is on monday or tuesday last week,original,resched,5 -greeting,how is everything?,parrot,greet,4 -greeting,you good?,parrot,greet,4 -calendar,search my calendar for birthdays,parrot,avail,0 -thank_you,your assistance is appreciated,parrot,bye,2 -calendar_update,can you change the date of the doctor's appointment in my calendar from april 1st to april 3rd?,parrot,resched,5 -greeting,whats new?,parrot,greet,4 -greeting,what i feel?,parrot,greet,4 -greeting,hello there,original,greet,4 -greeting,hola,original,greet,4 -yes,it is definitely affirmative,original,book,1 -no,negative,original,cancel,3 -how_busy,what is going on in olive garden around 4 o'clock,parrot,avail,0 -yes,TRUE,lambada,book,1 -no,negatory,original,cancel,3 -thank_you,okay thank you,parrot,bye,2 -how_busy,what's the typical time to be seated in this place?,parrot,avail,0 -no,i'll pass,original,cancel,3 -goodbye,i'll go,parrot,bye,2 -goodbye,thank you for the great talk bye,parrot,bye,2 -calendar_update,put my parents anniversary on the calendar for next week on tuesday,original,resched,5 -no,negative,original,cancel,3 -yes,great,original,book,1 -no,no?,parrot,cancel,3 -no,not correct,parrot,cancel,3 -goodbye,send a goodbye,lambada,bye,2 -yes,it'd be great,parrot,book,1 -cancel_reservation,please delete the reservation for 3 people in the outback,parrot,cancel,3 -yes,yeah,original,book,1 -calendar,what is on my calander for valentines day?,original,avail,0 -thank_you,good looking out,original,bye,2 -thank_you,"oh, thanks",original,bye,2 -schedule_meeting,i want to reserve a meeting room for 8pm,lambada,book,1 -goodbye,i'll leave,parrot,bye,2 -date,what date will it be in eight days?,parrot,avail,0 -no,that's so wrong,parrot,cancel,3 -no,the answer is not true,parrot,cancel,3 -yes,right,parrot,book,1 -thank_you,much obliged,original,bye,2 -yes,it's positive,parrot,book,1 -how_busy,how busy will angie be around 5pm,parrot,avail,0 -goodbye,and then goodbye,parrot,bye,2 -greeting,how's my life?,parrot,greet,4 -goodbye,ok good chatting goodbye,original,bye,2 -greeting,how's everything?,parrot,greet,4 -goodbye,good see you,lambada,bye,2 -yes,oh yes,original,book,1 -thank_you,thanks please,original,bye,2 -yes,that makes sense,lambada,book,1 -how_busy,list the seats available at this restaurant?,parrot,avail,0 -goodbye,have fun?,lambada,bye,2 -how_busy,how busy is the olive garden at 5:30,lambada,avail,0 -no,false sure,parrot,cancel,3 -schedule_meeting,how do i get a meeting scheduled,lambada,book,1 -goodbye,goodbye!,original,bye,2 -yes,yeah,original,book,1 -no,not a good idea,parrot,cancel,3 -goodbye,take care then,parrot,bye,2 -yes,affirmative,original,book,1 -no,negative,original,cancel,3 -no,so that's no,parrot,cancel,3 -calendar,what's tuesday's calendar?,parrot,avail,0 -calendar_update,make sure my events are scheduled for march 20th,parrot,resched,5 -greeting,how's this going?,parrot,greet,4 -thank_you,you helped,parrot,bye,2 -thank_you,"awesome, thanks",original,bye,2 -no,no!,original,cancel,3 -calendar_update,please clean my calendar,parrot,resched,5 -goodbye,thank you goodbye,original,bye,2 -greeting,how is idy?,parrot,greet,4 -greeting,welcome,parrot,greet,4 -no,is my false assertion?,parrot,cancel,3 -yes,it'd be great,parrot,book,1 -thank_you,thank you for coming,parrot,bye,2 -goodbye,buhbye,original,bye,2 -no,no that's not correct,parrot,cancel,3 -calendar_update,i need to add farm trip to my calendar for friday,original,resched,5 -yes,i know this is true,lambada,book,1 -no,negative,original,cancel,3 -no,it's negative,parrot,cancel,3 -goodbye,you're done,parrot,bye,2 -no,that's bad,parrot,cancel,3 -goodbye,tootles,original,bye,2 -cancel_reservation,cancel my dinner reservation,lambada,cancel,3 -thank_you,i'm glad you laughed,parrot,bye,2 -yes,yep,original,book,1 -greeting,and how's it going,parrot,greet,4 -greeting,how's idy doing?,parrot,greet,4 -goodbye,afterward,parrot,bye,2 -date,in 9 days?,parrot,avail,0 -date,in three days,parrot,avail,0 -greeting,are you good?,original,greet,4 -thank_you,you've tried,parrot,bye,2 -date,tomorrow is the date,parrot,avail,0 -goodbye,on the highway,parrot,bye,2 -goodbye,goodbye bye,parrot,bye,2 -yes,perfect,parrot,book,1 -greeting,hello good morning,parrot,greet,4 -yes,yes,original,book,1 -calendar,can you tell me what's on the program?,parrot,avail,0 -thank_you,you're a great help,parrot,bye,2 -yes,approved,original,book,1 -yes,obviously,parrot,book,1 -no,negating,parrot,cancel,3 -greeting,yo,original,greet,4 -date,what year is tomorrow?,parrot,avail,0 -reminder_update,a reminder to wish my mom a happy birthday?,parrot,resched,5 -date,date tomorrow,parrot,avail,0 -no,nay,original,cancel,3 -goodbye,sayonara ,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -yes,huh,parrot,book,1 -yes,agreed,original,book,1 -yes,right,parrot,book,1 -goodbye,regards,original,bye,2 -yes,that is really true,lambada,book,1 -meeting_schedule,what's my plan today?,parrot,avail,0 -greeting,what's up,original,greet,4 -no,it's so negative,parrot,cancel,3 -yes,correct,original,book,1 -date,what's today?,parrot,avail,0 -greeting,tell me what you are doing today,parrot,greet,4 -greeting,aloha,original,greet,4 -greeting,hi there alexa,original,greet,4 -greeting,hello there!,original,greet,4 -date,what is the date?,original,avail,0 -thank_you,the best,parrot,bye,2 -no,nothing,parrot,cancel,3 -no,i am saying no,original,cancel,3 -greeting,what is new?,parrot,greet,4 -greeting,hey there!,original,greet,4 -reminder_update,please remember me later,parrot,resched,5 -no,FALSE,lambada,cancel,3 -how_busy,how many people usually go to chili's around 12pm,lambada,avail,0 -greeting,hola!,original,greet,4 -cancel_reservation,cancel my reservation with brad at umami,lambada,cancel,3 -greeting,what's up with you,original,greet,4 -yes,not a falsehood,parrot,book,1 -thank_you,i owe you,parrot,bye,2 -no,is my false assertion?,parrot,cancel,3 -date,what year is tomorrow?,parrot,avail,0 -yes,TRUE,original,book,1 -yes,huh,parrot,book,1 -yes,that's a definite yes,original,book,1 -meeting_schedule,when are my meetings today?,lambada,avail,0 -greeting,hi what's up,original,greet,4 -how_busy,do you see people at chili's around 8pm?,parrot,avail,0 -calendar,tell me what my calendar says for april 15?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -greeting,welcome,parrot,greet,4 -schedule_meeting,are any meeting rooms open between 9 and 10?,original,book,1 -greeting,hi,original,greet,4 -goodbye,buhbye now,lambada,bye,2 -reminder_update,make me a reminder,lambada,resched,5 -greeting,hola,original,greet,4 -how_busy,is it always crowded?,parrot,avail,0 -goodbye,for now,parrot,bye,2 -date,what's today,original,avail,0 -yes,please let's do this,parrot,book,1 -yes,affirmitive,original,book,1 -reminder_update,new reminder please,lambada,resched,5 -yes,let's do that,parrot,book,1 -no,that isn't correct,original,cancel,3 -greeting,ahoy,lambada,greet,4 -reminder_update,i need a reminder to order cookies,original,resched,5 -goodbye,maybe next time,parrot,bye,2 -greeting,how things go?,parrot,greet,4 -goodbye,adios!,original,bye,2 -goodbye,take it easy,lambada,bye,2 -no,nothing,parrot,cancel,3 -yes,agreed,original,book,1 -how_busy,how busy is ihop at 5:45 pm,lambada,avail,0 -no,so that's no,parrot,cancel,3 -thank_you,thanks for coming,parrot,bye,2 -yes,definitely confirmed,parrot,book,1 -cancel_reservation,you can cancel my reservation for five at the loft please,parrot,cancel,3 -goodbye,it was good chatting,original,bye,2 -greeting,wassup,original,greet,4 -no,"no, that's not it",original,cancel,3 -greeting,hi,original,greet,4 -yes,TRUE,lambada,book,1 -calendar_update,remove the birthday party this friday from my calendar,parrot,resched,5 -no,no!,original,cancel,3 -yes,perfect,parrot,book,1 -greeting,"hello, what's up",original,greet,4 -no,naw,parrot,cancel,3 -how_busy,what's going on at cheesecake factory?,parrot,avail,0 -no,"no, it's not",lambada,cancel,3 -no,i think it's wrong,parrot,cancel,3 -yes,facts,original,book,1 -yes,approved,original,book,1 -yes,yup,original,book,1 -thank_you,thanks for the help!,original,bye,2 -thank_you,i'm very thankful,parrot,bye,2 -date,answer the question 'what is the date today,lambada,avail,0 -how_busy,how long do i have to wait for a table at cheese cake factory,lambada,avail,0 -date,tell me what date it is tomorrow?,lambada,avail,0 -goodbye,bye,original,bye,2 -yes,obviously,parrot,book,1 -no,no don't do that!,original,cancel,3 -date,what day is it?,original,avail,0 -greeting,so how is everything,original,greet,4 -no,that's definitely false,original,cancel,3 -thank_you,thanks!,original,bye,2 -greeting,whats up?,parrot,greet,4 -how_busy,how busy will the restaurant be between 6 and 8?,parrot,avail,0 -no,negatory?,parrot,cancel,3 -cancel_reservation,cancel the reservation i made for 8pm in black rock,parrot,cancel,3 -goodbye,just relax,parrot,bye,2 -goodbye,regards,original,bye,2 -greeting,nice day,lambada,greet,4 -schedule_meeting,put a meeting on my schedule with pam for 3 pm on february 11,parrot,book,1 -yes,yeah yeah,lambada,book,1 -goodbye,"syonara, ai device!",original,bye,2 -yes,confirmed,original,book,1 -no,nope,original,cancel,3 -goodbye,glad to talk,parrot,bye,2 -no,the answer isn't correct,parrot,cancel,3 -calendar,did i put an event on the calendar to get a physical?,parrot,avail,0 -how_busy,how busy the restaurant will be?,parrot,avail,0 -calendar,is my meeting with frank on the calendar?,parrot,avail,0 -date,in 10 days what will be the date of the day?,parrot,avail,0 -thank_you,i'm glad you met,parrot,bye,2 -yes,"yes, please",parrot,book,1 -yes,yes that's it,original,book,1 -greeting,are you doing ok?,original,greet,4 -greeting,heyo,original,greet,4 -no,yes it's false,parrot,cancel,3 -thank_you,you've been amazing,lambada,bye,2 -calendar,tell me my calendar?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -greeting,well hi there,original,greet,4 -thank_you,thanks for trying,original,bye,2 -yes,a real statement,parrot,book,1 -date,current date,original,avail,0 -how_busy,is red robin busy at 7 o'clock?,parrot,avail,0 -yes,"yeah, that's true",lambada,book,1 -no,negatory,original,cancel,3 -greeting,aloha,original,greet,4 -no,it's absolutely false,parrot,cancel,3 -no,that's incorrect,original,cancel,3 -reminder_update,set a reminder for 6 pm,parrot,resched,5 -calendar_update,"on the 22nd of this month, we need to clear our calendar so we can leave it open for mark to visit",original,resched,5 -thank_you,thanks very much for your answer,parrot,bye,2 -greeting,what's going on,original,greet,4 -no,that's a negative,original,cancel,3 -no,that's false,original,cancel,3 -no,naw,original,cancel,3 -cancel_reservation,there's no need to confirm my reservation,parrot,cancel,3 -yes,huh,parrot,book,1 -yes,TRUE,lambada,book,1 -goodbye,later gator!,original,bye,2 -no,is my false claim?,parrot,cancel,3 -reminder_update,remind me,original,resched,5 -goodbye,goodnight,original,bye,2 -thank_you,you do an awesome job,lambada,bye,2 -greeting,hi how's the situation?,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -greeting,hola!,original,greet,4 -greeting,ahoy,lambada,greet,4 -date,what date?,parrot,avail,0 -greeting,hello there ai,original,greet,4 -no,that would be incorrect,lambada,cancel,3 -yes,uh huh,original,book,1 -greeting,how you're treated?,parrot,greet,4 -date,what date tomorrow?,parrot,avail,0 -no,FALSE,original,cancel,3 -greeting,whats up?,parrot,greet,4 -goodbye,fairwell,original,bye,2 -goodbye,thanks for talking,original,bye,2 -how_busy,how busy will that restaurant be at 6,lambada,avail,0 -yes,yeah,original,book,1 -reminder_update,remind me of the steak,parrot,resched,5 -yes,a true statement,parrot,book,1 -date,what will the date be in two months?,lambada,avail,0 -meeting_schedule,when is homer's meeting scheduled?,parrot,avail,0 -yes,i agree,original,book,1 -thank_you,you're welcome,parrot,bye,2 -how_busy,how long will it take to be seated in the flying wand?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -goodbye,"nice talk, goodbye",lambada,bye,2 -yes,not a falsehood,parrot,book,1 -how_busy,is applebee busy around 1130?,parrot,avail,0 -thank_you,so grateful,parrot,bye,2 -date,what's today's date,original,avail,0 -date,what is that day?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -goodbye,have fun?,lambada,bye,2 -schedule_meeting,please explain how i can schedule a meeting,parrot,book,1 -no,it's overwhelmingly negative,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -thank_you,thanks,original,bye,2 -calendar_update,remove the anniversary celebration from my calendar,parrot,resched,5 -yes,positive,parrot,book,1 -no,that's incorrect!,original,cancel,3 -date,what day?,parrot,avail,0 -calendar,check my calendar for tuesday appointments,parrot,avail,0 -goodbye,goodbyes soon,parrot,bye,2 -greeting,hey yai,lambada,greet,4 -reminder_update,create a new reminder to study for my final exam,parrot,resched,5 -yes,indeed,original,book,1 -calendar,tell me what is currently on my calendar for march 30th?,lambada,avail,0 -reminder_update,set reminder to prepare for my meeting at 5pm,lambada,resched,5 -goodbye,goodbye soon,lambada,bye,2 -schedule_meeting,how many hours can you hold a meeting at?,parrot,book,1 -goodbye,goodbye goodbye,parrot,bye,2 -yes,that is true,lambada,book,1 -how_busy,how busy is mishawaka,lambada,avail,0 -greeting,how're you doing,original,greet,4 -yes,thats right,original,book,1 -yes,that makes sense,lambada,book,1 -thank_you,i am thankful for the assistance,lambada,bye,2 -no,not good,parrot,cancel,3 -greeting,it's nice to see you,original,greet,4 -goodbye,fairwell,original,bye,2 -how_busy,how busy is red lobster around 6,lambada,avail,0 -goodbye,greetings,parrot,bye,2 -goodbye,later!,original,bye,2 -how_busy,how long will it take to get a table in the restaurant,parrot,avail,0 -yes,you're right,original,book,1 -calendar_update,remove concerts from my calendar on 19 march 2019,parrot,resched,5 -yes,it is a yes from me,parrot,book,1 -yes,sure thing,original,book,1 -reminder_update,create a reminder,original,resched,5 -thank_you,thank you for making my life easier,parrot,bye,2 -goodbye,go easy,parrot,bye,2 -calendar,do you have anything on my calendar for april 15?,parrot,avail,0 -no,i wouldn't like that,parrot,cancel,3 -thank_you,good job,lambada,bye,2 -thank_you,again thanks,parrot,bye,2 -goodbye,sayonara,original,bye,2 -yes,it's certainly true,parrot,book,1 -how_busy,how long will the wait be for a meal at chipotle,lambada,avail,0 -yes,yay,lambada,book,1 -thank_you,you were so nice,parrot,bye,2 -thank_you,nice,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -greeting,hi there alexa,original,greet,4 -goodbye,tootles,original,bye,2 -thank_you,a million thanks,parrot,bye,2 -yes,oh yes,original,book,1 -date,which date today?,parrot,avail,0 -date,what's the day now??,parrot,avail,0 -goodbye,nice talk,lambada,bye,2 -goodbye,bye!,original,bye,2 -yes,accepted,original,book,1 -no,that's untrue,parrot,cancel,3 -greeting,what's new,lambada,greet,4 -goodbye,fairwell?,parrot,bye,2 -no,nope,original,cancel,3 -thank_you,my gratitude,parrot,bye,2 -how_busy,tell me the time to wait at the restaurant?,parrot,avail,0 -date,what's today's date,original,avail,0 -reminder_update,i need to remember you,parrot,resched,5 -yes,"yes, please",parrot,book,1 -cancel_reservation,please unreserve that table,original,cancel,3 -how_busy,how crowded is this restaurant?,parrot,avail,0 -yes,it's certainly positive,parrot,book,1 -no,negatory,original,cancel,3 -how_busy,is immaculate around 6 dinner?,lambada,avail,0 -yes,TRUE,original,book,1 -yes,confirmed,original,book,1 -no,hell nah,original,cancel,3 -how_busy,how long will i have to wait to be seated at red lobster,lambada,avail,0 -no,this information is not true,parrot,cancel,3 -no,negative,original,cancel,3 -thank_you,appreciated,original,bye,2 -goodbye,send a goodbye,lambada,bye,2 -greeting,how's it hanging,original,greet,4 -yes,"yes, please",parrot,book,1 -goodbye,bye!,original,bye,2 -thank_you,you've been amazing,lambada,bye,2 -goodbye,as regards,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -greeting,welcome,parrot,greet,4 -greeting,hi how's the situation?,parrot,greet,4 -yes,"yup, that's true",original,book,1 -date,current day,parrot,avail,0 -no,it's so negative,parrot,cancel,3 -no,i'll pass,original,cancel,3 -goodbye,i've got to go now,lambada,bye,2 -meeting_schedule,is there a meeting between 2 pm and 5 pm?,parrot,avail,0 -goodbye,later!,original,bye,2 -greeting,hey,original,greet,4 -yes,you're right,original,book,1 -yes,indeed,original,book,1 -yes,sure,original,book,1 -calendar_update,delete all calendar entries on 13 april,parrot,resched,5 -greeting,hi there,original,greet,4 -no,i'll pass,original,cancel,3 -date,what will be tomorrow's date?,lambada,avail,0 -greeting,how have you been,original,greet,4 -how_busy,how long will there be a wait for a table at tomato soup,lambada,avail,0 -yes,obviously,parrot,book,1 -how_busy,is ozone restaurant expected to have a long wait at 5pm?,parrot,avail,0 -yes,certainly,parrot,book,1 -greeting,hola,original,greet,4 -no,negation,parrot,cancel,3 -how_busy,how busy will the olive garden be at 5pm,parrot,avail,0 -goodbye,glad we can talk,parrot,bye,2 -goodbye,"thanks, bye",original,bye,2 -how_busy,when is the restaurant most busy around 11 o'clock?,parrot,avail,0 -yes,yeah,original,book,1 -greeting,hola,original,greet,4 -goodbye,i’m leaving-goodbye!,original,bye,2 -goodbye,come on soon,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -goodbye,tootles,original,bye,2 -yes,ya,original,book,1 -yes,my reply to you is correct,parrot,book,1 -goodbye,bye-bye,original,bye,2 -yes,affirmative,original,book,1 -no,it's so bad,parrot,cancel,3 -goodbye,the talk was nice,lambada,bye,2 -yes,i agree with what you said,parrot,book,1 -yes,is a real statement,parrot,book,1 -yes,it's definitely positive,parrot,book,1 -date,what's the day of the month?,parrot,avail,0 -goodbye,bye,original,bye,2 -goodbye,it's over,parrot,bye,2 -no,that seems wrong,lambada,cancel,3 -greeting,salutations,parrot,greet,4 -meeting_schedule,please show me the schedule of my meetings,parrot,avail,0 -goodbye,farewell!,original,bye,2 -no,is not true?,parrot,cancel,3 -no,that's incorrect,original,cancel,3 -goodbye,lovely conversation,parrot,bye,2 -goodbye,i'm out,parrot,bye,2 -goodbye,good luck tomorrow,lambada,bye,2 -yes,oh-huh,parrot,book,1 -goodbye,adios!,original,bye,2 -how_busy,how busy is the olive garden at noon,parrot,avail,0 -thank_you,the answer you gave me i'm thankful,parrot,bye,2 -goodbye,later gator!,original,bye,2 -schedule_meeting,please schedule a meeting with debbie,parrot,book,1 -no,invalid,original,cancel,3 -how_busy,how long can i expect to wait at the red lobsters?,parrot,avail,0 -meeting_schedule,i want to know if i am booked for a meeting with tim today,lambada,avail,0 -date,what's it like now?,parrot,avail,0 -yes,you got it,parrot,book,1 -thank_you,my sincere gratitude,parrot,bye,2 -greeting,yo how's it going,parrot,greet,4 -greeting,salutation,parrot,greet,4 -schedule_meeting,a meeting room between 12 and 1pm,parrot,book,1 -thank_you,thanks a million,original,bye,2 -greeting,hola,original,greet,4 -goodbye,you can talk later,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,", goodbye",lambada,bye,2 -thank_you,awesome thanks,parrot,bye,2 -no,negating,parrot,cancel,3 -yes,uh-huh,original,book,1 -greeting,salutations,parrot,greet,4 -yes,just right,parrot,book,1 -yes,absolutely,original,book,1 -goodbye,sayonara,original,bye,2 -yes,i want that,parrot,book,1 -greeting,how is ayi doing?,parrot,greet,4 -date,what is tomorrow?,parrot,avail,0 -reminder_update,save it for later,parrot,resched,5 -no,that’s incorrect,original,cancel,3 -thank_you,you've been great,parrot,bye,2 -goodbye,adios,original,bye,2 -no,nope,original,cancel,3 -greeting,hey how's ot,lambada,greet,4 -no,that's negative,parrot,cancel,3 -goodbye,good luck,lambada,bye,2 -goodbye,see ya,original,bye,2 -goodbye,my way,parrot,bye,2 -thank_you,thanks so much for the reply,parrot,bye,2 -date,and what's the day?,parrot,avail,0 -yes,yep,original,book,1 -yes,yes please,original,book,1 -date,what year?,parrot,avail,0 -yes,that is totally true,original,book,1 -greeting,hiya!,original,greet,4 -no,no,lambada,cancel,3 -date,what's it today?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -reminder_update,add a note,parrot,resched,5 -thank_you,"great, thanks!",original,bye,2 -date,date tomorrow,parrot,avail,0 -no,it doesn't seem that way,parrot,cancel,3 -greeting,hiya!,original,greet,4 -greeting,nice day,lambada,greet,4 -goodbye,buhbye now,lambada,bye,2 -greeting,hello ai,parrot,greet,4 -greeting,ahoy hoy,original,greet,4 -yes,that is right,original,book,1 -cancel_reservation,i made a reservation under mark hamil at the emporium that i don't need any more,original,cancel,3 -goodbye,fairwell,original,bye,2 -no,not correct,parrot,cancel,3 -yes,it's true for sure,parrot,book,1 -goodbye,buhbye,original,bye,2 -how_busy,how busy outback steakhouse will be at 7 o'clock?,parrot,avail,0 -greeting,salutations!,original,greet,4 -calendar,please tell me what is on my calendar for march 5 2019?,parrot,avail,0 -greeting,heller,original,greet,4 -how_busy,can you tell me how busy the food is at mr joes right now?,lambada,avail,0 -greeting,hiya!,original,greet,4 -yes,"yep, that's true",original,book,1 -yes,yeap,original,book,1 -thank_you,much obliged,original,bye,2 -greeting,how you feel?,parrot,greet,4 -thank_you,thankyou,parrot,bye,2 -how_busy,what's the wait time at wendy's around 8 o'clock?,parrot,avail,0 -greeting,are you okay?,original,greet,4 -date,what month is today?,parrot,avail,0 -no,i prefer not,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -goodbye,it was lovely to speak with you,original,bye,2 -no,no,lambada,cancel,3 -yes,that's definitely true,original,book,1 -goodbye,"thanks for the chat, goodbye",lambada,bye,2 -yes,all right,original,book,1 -yes,yes,original,book,1 -date,i need to know the date,lambada,avail,0 -goodbye,bye now,original,bye,2 -no,so that's no,parrot,cancel,3 -yes,sure,original,book,1 -no,certainly false,parrot,cancel,3 -how_busy,should i expect to see a busy day at olive garden at 5,lambada,avail,0 -calendar,let me know if there are any march 31 calendar entries for me,lambada,avail,0 -reminder_update,i need a reminder to take the dinner out of the oven,parrot,resched,5 -how_busy,the wait for a table in olive garden,parrot,avail,0 -no,that isn't correct,original,cancel,3 -goodbye,tootles,original,bye,2 -calendar,do you have anything on my schedule for may 3?,parrot,avail,0 -goodbye,thank you for the talk,parrot,bye,2 -cancel_reservation,please cancel the reservation at red robin for four,parrot,cancel,3 -no,negative,original,cancel,3 -greeting,heyo,original,greet,4 -greeting,hey hey!,original,greet,4 -yes,okay,original,book,1 -yes,a real statement,parrot,book,1 -how_busy,is imbrosio busy around 6 o'clock?,parrot,avail,0 -thank_you,you know i'm grateful,parrot,bye,2 -greeting,hola,original,greet,4 -goodbye,tootles?,parrot,bye,2 -thank_you,many thanks,original,bye,2 -calendar,tell me what my calendar looks like for april 13th?,parrot,avail,0 -goodbye,for now,parrot,bye,2 -date,what is today?,original,avail,0 -goodbye,bye!,original,bye,2 -goodbye,bye bye,lambada,bye,2 -how_busy,how long will it take to get a table at chili's restaurant?,parrot,avail,0 -goodbye,later then,lambada,bye,2 -no,naw,parrot,cancel,3 -goodbye,adios!,original,bye,2 -meeting_schedule,what are the meetings today?,parrot,avail,0 -meeting_schedule,are there meetings between 1 and 3 o'clock?,parrot,avail,0 -goodbye,later then,lambada,bye,2 -greeting,wassup,original,greet,4 -no,i do not agree,lambada,cancel,3 -no,i'll pass,original,cancel,3 -no,invalid,original,cancel,3 -thank_you,thankyou,parrot,bye,2 -date,what's today's date,original,avail,0 -no,not good,parrot,cancel,3 -goodbye,see ya,original,bye,2 -thank_you,thanks for coming,parrot,bye,2 -no,that's wrong,original,cancel,3 -cancel_reservation,could i cancel my reservations,original,cancel,3 -greeting,all right with you?,parrot,greet,4 -thank_you,youre a doll,original,bye,2 -schedule_meeting,can you schedule a meeting with john smith at 1 pm tomorrow,parrot,book,1 -yes,TRUE,original,book,1 -no,negative certainly,parrot,cancel,3 -no,that's not true it's not true,parrot,cancel,3 -how_busy,if i wait in the restaurant how long will it take?,parrot,avail,0 -schedule_meeting,how many hours can a meeting last?,parrot,book,1 -yes,i know,parrot,book,1 -no,that's incorrect!,original,cancel,3 -no,not true,original,cancel,3 -thank_you,okay thank you,parrot,bye,2 -greeting,hey it's up,lambada,greet,4 -thank_you,good job thanks,parrot,bye,2 -no,that's negative,parrot,cancel,3 -calendar,can you tell me what's on my calendar for march 8th?,lambada,avail,0 -thank_you,nice,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -how_busy,outback steakhouse at 6pm,parrot,avail,0 -date,in 10 days?,parrot,avail,0 -no,nope,original,cancel,3 -goodbye,tootles?,parrot,bye,2 -reminder_update,remind me to change my oil,parrot,resched,5 -no,nothing,parrot,cancel,3 -yes,affirmative,original,book,1 -no,nope it's not true,parrot,cancel,3 -goodbye,goodbye my friend,parrot,bye,2 -meeting_schedule,do you have any meetings?,parrot,avail,0 -thank_you,i appeciate it,original,bye,2 -yes,indeed,parrot,book,1 -yes,approved,original,book,1 -thank_you,"great, thanks!",original,bye,2 -no,nothing,parrot,cancel,3 -goodbye,adios,original,bye,2 -thank_you,good job thanks,parrot,bye,2 -greeting,whats new,lambada,greet,4 -no,negatory?,parrot,cancel,3 -no,don't agree,parrot,cancel,3 -how_busy,is the olive garden busy at lunch time?,parrot,avail,0 -greeting,hey how ya been,lambada,greet,4 -goodbye,goodbye helpful ai device,parrot,bye,2 -yes,TRUE,lambada,book,1 -greeting,nice day,lambada,greet,4 -yes,absolutely!,original,book,1 -goodbye,peace,original,bye,2 -goodbye,very happy to talk with you,parrot,bye,2 -calendar_update,remove the bachelorette party from my calendar for 3 may 2018,parrot,resched,5 -reminder_update,set a reminder to go grocery shopping,original,resched,5 -goodbye,goodbyes soon,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -goodbye,i'm going,parrot,bye,2 -goodbye,regards,original,bye,2 -thank_you,i am grateful,lambada,bye,2 -goodbye,this conversation was pleasant,parrot,bye,2 -yes,i'm sure that's true,parrot,book,1 -goodbye,thanks goodbye,parrot,bye,2 -calendar_update,list the best ways to remove an appointment?,parrot,resched,5 -reminder_update,you know something?,parrot,resched,5 -no,naw,original,cancel,3 -no,is my false claim?,parrot,cancel,3 -thank_you,thanks,original,bye,2 -how_busy,what's the wait time at chipotle tonight?,parrot,avail,0 -no,it's a no,original,cancel,3 -no,certainly not,original,cancel,3 -yes,good,parrot,book,1 -goodbye,be sure to talk to me soon,lambada,bye,2 -thank_you,thanks very much for your answer,parrot,bye,2 -thank_you,you just gave me the answer,parrot,bye,2 -greeting,how ya been,original,greet,4 -goodbye,ai goodbye,original,bye,2 -goodbye,later gater,original,bye,2 -goodbye,cya later,original,bye,2 -thank_you,appreciate the support,parrot,bye,2 -thank_you,thank you please,parrot,bye,2 -calendar,what's i supposed to do?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -goodbye,later,original,bye,2 -thank_you,that's all i need,parrot,bye,2 -date,tell me the date for the month and the week,parrot,avail,0 -yes,i'm going to tell you tes,parrot,book,1 -how_busy,how long is the line at olive garden around 6pm?,parrot,avail,0 -yes,it's true,original,book,1 -greeting,how is everything?,parrot,greet,4 -yes,it's indeed true,original,book,1 -yes,approved,original,book,1 -yes,can we please?,original,book,1 -date,is the date?,parrot,avail,0 -yes,yup,original,book,1 -date,please explain today,parrot,avail,0 -reminder_update,create a reminder,original,resched,5 -goodbye,farewell!,original,bye,2 -meeting_schedule,is my schedule clear?,parrot,avail,0 -no,nothing,parrot,cancel,3 -reminder_update,create a reminder to give the cat her flea medicine,original,resched,5 -yes,is true,parrot,book,1 -greeting,hey there,original,greet,4 -greeting,hola!,original,greet,4 -yes,right,parrot,book,1 -greeting,hey how's life,original,greet,4 -goodbye,goodbyes soon,parrot,bye,2 -no,negating,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -date,what's tomorrow's date,original,avail,0 -thank_you,you've helped,parrot,bye,2 -greeting,what's new,lambada,greet,4 -no,nothing,parrot,cancel,3 -goodbye,goodbye ai,parrot,bye,2 -goodbye,bye bye now,lambada,bye,2 -yes,indeed,parrot,book,1 -cancel_reservation,the reservation for my friends at red robin is no longer required,parrot,cancel,3 -yes,absolutely,original,book,1 -greeting,how's this going?,parrot,greet,4 -goodbye,bye bye!,original,bye,2 -date,what is tomorrow?,parrot,avail,0 -no,FALSE,original,cancel,3 -no,yes it's false,parrot,cancel,3 -yes,positive,parrot,book,1 -no,it's false,parrot,cancel,3 -goodbye,just relax,parrot,bye,2 -greeting,how ife treated you?,parrot,greet,4 -cancel_reservation,call my reservation canceled,lambada,cancel,3 -yes,i just said that,parrot,book,1 -yes,that is affirmative,original,book,1 -greeting,how's life,original,greet,4 -calendar,what's on my agenda tomorrow?,parrot,avail,0 -greeting,hi,original,greet,4 -no,it's very wrong,parrot,cancel,3 -no,that'd be a no,original,cancel,3 -greeting,salutations!,original,greet,4 -schedule_meeting,are meeting rooms open between 10 and 11 o'clock in the mornings?,parrot,book,1 -yes,ok,original,book,1 -yes,good,parrot,book,1 -goodbye,peace,original,bye,2 -yes,affirmitive,original,book,1 -goodbye,chat to me later,parrot,bye,2 -no,FALSE,original,cancel,3 -yes,oh-huh,parrot,book,1 -how_busy,how long is it in cheerio's?,parrot,avail,0 -how_busy,how busy is mcdonald's at 5pm?,parrot,avail,0 -greeting,hello,original,greet,4 -no,it seems wrong,parrot,cancel,3 -no,"sorry, that is not true",original,cancel,3 -date,"in 5 days, what will be the date",lambada,avail,0 -yes,you got it,parrot,book,1 -greeting,yo,original,greet,4 -thank_you,thank you for all the information you have given,parrot,bye,2 -no,that's overwhelmingly negative,parrot,cancel,3 -goodbye,go easy,parrot,bye,2 -goodbye,go easy,parrot,bye,2 -greeting,bonjour,original,greet,4 -goodbye,good talk,parrot,bye,2 -no,no it's not right,parrot,cancel,3 -cancel_reservation,can you cancel the reservation?,lambada,cancel,3 -date,what day?,parrot,avail,0 -how_busy,how long would i have to wait for a table at red lobster?,parrot,avail,0 -goodbye,see ya!,original,bye,2 -greeting,hello what are you doing?,parrot,greet,4 -yes,oh yes,original,book,1 -date,tomorrow is the calendar,parrot,avail,0 -reminder_update,set a reminder to pay my rent on monday,lambada,resched,5 -thank_you,and you're doing well,parrot,bye,2 -thank_you,good job on that,lambada,bye,2 -date,in 9 days?,parrot,avail,0 -yes,it'll be yes,parrot,book,1 -date,now what's the day?,parrot,avail,0 -goodbye,the discussion was nice,parrot,bye,2 -yes,yeah,original,book,1 -yes,affirmitive,original,book,1 -greeting,yo,original,greet,4 -how_busy,the average busy hour for chili's around 5,lambada,avail,0 -no,that's negative,parrot,cancel,3 -greeting,heller,original,greet,4 -how_busy,how crowded is the restaurant at 5am?,parrot,avail,0 -goodbye,very nice conversation,parrot,bye,2 -no,i disagree,parrot,cancel,3 -yes,please let's do that,parrot,book,1 -date,today?,parrot,avail,0 -yes,good,parrot,book,1 -yes,that'd be great,parrot,book,1 -yes,confirm,original,book,1 -no,that's not necessarily true,lambada,cancel,3 -how_busy,how long is the wait for me in the restaurant?,parrot,avail,0 -thank_you,thanks very much for your answer,parrot,bye,2 -no,that's not always true,parrot,cancel,3 -greeting,how's the world?,parrot,greet,4 -date,show me the date in 5 days?,parrot,avail,0 -no,negation,parrot,cancel,3 -goodbye,adios!,original,bye,2 -yes,TRUE,lambada,book,1 -no,so that's no,parrot,cancel,3 -yes,great,original,book,1 -greeting,hello there!,original,greet,4 -no,is very false,parrot,cancel,3 -greeting,how is life?,parrot,greet,4 -no,no good,original,cancel,3 -goodbye,chat to me later,parrot,bye,2 -yes,10-Apr,original,book,1 -yes,you got it,parrot,book,1 -meeting_schedule,are you meeting lisa today?,parrot,avail,0 -yes,i think you succeeded,parrot,book,1 -date,a year?,parrot,avail,0 -yes,of course,original,book,1 -greeting,"why, hello bandit",original,greet,4 -thank_you,and i thank you,parrot,bye,2 -yes,absolutely,original,book,1 -no,that isn't right,original,cancel,3 -yes,is true,parrot,book,1 -how_busy,how busy is the restaurant at 5 am,lambada,avail,0 -yes,facts,original,book,1 -no,naw,parrot,cancel,3 -yes,that's correct,original,book,1 -greeting,hello there,original,greet,4 -no,not that one,original,cancel,3 -yes,"yes, that is right",original,book,1 -date,what year is this?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -yes,absolutely correct,original,book,1 -greeting,hello,original,greet,4 -no,it's no,parrot,cancel,3 -no,no please,parrot,cancel,3 -yes,confirmed,lambada,book,1 -greeting,hey,original,greet,4 -yes,confirm,original,book,1 -no,i disagree,parrot,cancel,3 -no,it's overwhelmingly negative,parrot,cancel,3 -how_busy,what time will i be allowed to sit in a restaurant for?,parrot,avail,0 -schedule_meeting,can you schedule a meeting for scott at 12 o'clock?,parrot,book,1 -greeting,hola,original,greet,4 -no,naw,original,cancel,3 -no,no?,parrot,cancel,3 -goodbye,bye!,original,bye,2 -thank_you,thank you?,parrot,bye,2 -yes,oh yeah that is true,lambada,book,1 -yes,i know that it's true,parrot,book,1 -thank_you,you've given me that,parrot,bye,2 -goodbye,see you soon,original,bye,2 -goodbye,goodnight,original,bye,2 -no,it is false,original,cancel,3 -goodbye,lovely conversation,parrot,bye,2 -goodbye,sayonara,original,bye,2 -date,please explain today,parrot,avail,0 -date,is tomorrow's date?,parrot,avail,0 -thank_you,you're welcome,parrot,bye,2 -thank_you,you have my thanks,parrot,bye,2 -no,the answer isn't correct,parrot,cancel,3 -no,that's a huge mistake,parrot,cancel,3 -greeting,hows are ya,original,greet,4 -yes,obviously,parrot,book,1 -thank_you,"oh, thanks",original,bye,2 -yes,TRUE,original,book,1 -goodbye,bye-bye,original,bye,2 -no,what isn't true?,parrot,cancel,3 -how_busy,for how busy are pizza restaurants,lambada,avail,0 -yes,yes,original,book,1 -thank_you,thank you for the response,lambada,bye,2 -greeting,hi ai,original,greet,4 -meeting_schedule,what's on my calendar?,parrot,avail,0 -no,naw,original,cancel,3 -greeting,what's up with you?,parrot,greet,4 -thank_you,thankyou,parrot,bye,2 -how_busy,wait at jalapeno ranch?,parrot,avail,0 -no,would be no?,parrot,cancel,3 -no,don't like that no,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -meeting_schedule,when is homer's meeting?,parrot,avail,0 -greeting,hi,original,greet,4 -how_busy,how busy is the outback at 6,lambada,avail,0 -meeting_schedule,show me some of my meetings for today,parrot,avail,0 -yes,good yes,lambada,book,1 -reminder_update,please add a reminder,lambada,resched,5 -schedule_meeting,i need a meeting scheduled for 3 00 on wednesday,parrot,book,1 -yes,indeed,parrot,book,1 -greeting,salutations!,original,greet,4 -no,i disagree,parrot,cancel,3 -goodbye,just relax,parrot,bye,2 -meeting_schedule,wanna meet roger?,parrot,avail,0 -greeting,"hi, ai",original,greet,4 -how_busy,will this restaurant be crowded,lambada,avail,0 -no,please disagree,lambada,cancel,3 -yes,definitely,original,book,1 -meeting_schedule,any meetings on the calendar today,parrot,avail,0 -thank_you,i am grateful,lambada,bye,2 -goodbye,good bye my friend,original,bye,2 -goodbye,it's over,parrot,bye,2 -no,negative certainly,parrot,cancel,3 -reminder_update,give me a reminder,parrot,resched,5 -thank_you,thanks so much for everything,parrot,bye,2 -no,negatory?,parrot,cancel,3 -cancel_reservation,repeal the dinner reservation,original,cancel,3 -thank_you,okay thank you,parrot,bye,2 -no,there is no,parrot,cancel,3 -goodbye,bye,original,bye,2 -date,what date is that?,parrot,avail,0 -cancel_reservation,i don't need the reservation,parrot,cancel,3 -no,it is false,original,cancel,3 -reminder_update,remind me to clean room,original,resched,5 -yes,roger that,original,book,1 -no,no,lambada,cancel,3 -goodbye,it's time to run,parrot,bye,2 -greeting,heller,original,greet,4 -thank_you,good job helping me,parrot,bye,2 -date,what day is it today,parrot,avail,0 -how_busy,how long will it take to be seated in the cheese cake factory?,parrot,avail,0 -date,can you give me a date in 5 days,parrot,avail,0 -reminder_update,remember to call tomorrow,parrot,resched,5 -no,but that's not true,parrot,cancel,3 -no,that is most definitely false,original,cancel,3 -greeting,how life treats you?,parrot,greet,4 -greeting,salutations,parrot,greet,4 -greeting,whats up,original,greet,4 -yes,"yes, please",parrot,book,1 -yes,affirmitive,original,book,1 -yes,oh-huh,parrot,book,1 -meeting_schedule,what time is it to meet dan?,parrot,avail,0 -meeting_schedule,when do i meet peter?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -no,negation,parrot,cancel,3 -reminder_update,set reminder for tomorrow's meeting,lambada,resched,5 -thank_you,i appreciate that answer,original,bye,2 -yes,my answer is yes,parrot,book,1 -greeting,hello how you doing,lambada,greet,4 -no,don't like that,parrot,cancel,3 -yes,affirmative,original,book,1 -no,but certainly not,parrot,cancel,3 -yes,right,parrot,book,1 -thank_you,i appreciate that answer!,original,bye,2 -goodbye,"bye-bye, my friend",lambada,bye,2 -yes,not a lie,parrot,book,1 -yes,a true statement,parrot,book,1 -no,that’s incorrect,original,cancel,3 -no,what you said is false?,parrot,cancel,3 -cancel_reservation,you canceled my reservation at the oyster bar,parrot,cancel,3 -how_busy,how long will the wait be in a pizza restaurant?,parrot,avail,0 -greeting,hi ai,original,greet,4 -greeting,hi,original,greet,4 -thank_you,thanks for coming,parrot,bye,2 -cancel_reservation,cancel my party reservation for brad at longhorn,original,cancel,3 -yes,uh-huh,original,book,1 -no,that's erroneous,parrot,cancel,3 -no,false sure,parrot,cancel,3 -no,it would be awful,parrot,cancel,3 -no,i think that's false,original,cancel,3 -greeting,how's my life?,parrot,greet,4 -goodbye,talk later,original,bye,2 -goodbye,i enjoyed our talk,parrot,bye,2 -yes,can we please?,original,book,1 -greeting,how's the ai?,parrot,greet,4 -thank_you,thanks very much for your answer,parrot,bye,2 -greeting,well how's the situation?,parrot,greet,4 -yes,agreed,original,book,1 -thank_you,i appreciate your consideration,lambada,bye,2 -greeting,hey how's my day?,parrot,greet,4 -yes,"yes, please",parrot,book,1 -yes,accept,parrot,book,1 -thank_you,thank you,original,bye,2 -greeting,hey fellow,parrot,greet,4 -cancel_reservation,can you cancel the reservation?,lambada,cancel,3 -yes,seems true,parrot,book,1 -goodbye,buhbye,original,bye,2 -yes,it's logical,parrot,book,1 -goodbye,peace,original,bye,2 -thank_you,okay thanks,original,bye,2 -goodbye,see you soon,original,bye,2 -goodbye,im leaving,parrot,bye,2 -how_busy,how long is the wait in the restaurant today?,parrot,avail,0 -thank_you,you helped,parrot,bye,2 -thank_you,thank you for the information,original,bye,2 -thank_you,okay thank you,parrot,bye,2 -goodbye,bye!,original,bye,2 -goodbye,tootles,original,bye,2 -no,nothing,parrot,cancel,3 -no,that's no,parrot,cancel,3 -how_busy,how long will the wait be at the italian restaurant?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -goodbye,i'm going,parrot,bye,2 -greeting,salutations,parrot,greet,4 -how_busy,are french bakers busy around 11 o'clock in the afternoon?,parrot,avail,0 -yes,positive,parrot,book,1 -calendar,help me locate what my calendar holds for february,lambada,avail,0 -no,certainly not true,parrot,cancel,3 -goodbye,glad to talk again,parrot,bye,2 -how_busy,how long will i have to wait before i go to a restaurant?,parrot,avail,0 -yes,TRUE,original,book,1 -goodbye,adios,original,bye,2 -yes,good,parrot,book,1 -thank_you,my sincere thanks,parrot,bye,2 -yes,ya,original,book,1 -no,this isn't true,parrot,cancel,3 -greeting,how's my current situation,parrot,greet,4 -reminder_update,i need the reminder to do something,parrot,resched,5 -greeting,wassup,original,greet,4 -no,erroneous,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -greeting,how're you?,parrot,greet,4 -thank_you,i'm grateful for you,parrot,bye,2 -no,naw,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -calendar_update,take the date off my calendar,lambada,resched,5 -yes,yay,lambada,book,1 -reminder_update,just a reminder,parrot,resched,5 -no,no it's not,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -yes,definitely,original,book,1 -goodbye,adios!,original,bye,2 -yes,ok,original,book,1 -thank_you,my gratitude,parrot,bye,2 -goodbye,later!,original,bye,2 -thank_you,well done,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -yes,absolutely!,original,book,1 -calendar,tell me what's on my calendar for april?,parrot,avail,0 -yes,positive,parrot,book,1 -no,"oh hell no, that'd be terrible!",original,cancel,3 -goodbye,regards,original,bye,2 -no,i'll say no,parrot,cancel,3 -thank_you,my gratitude,parrot,bye,2 -goodbye,good talk,parrot,bye,2 -thank_you,thanks so much for everything,parrot,bye,2 -date,which date is next?,parrot,avail,0 -date,date please,original,avail,0 -goodbye,the conversation was nice,parrot,bye,2 -yes,correct,original,book,1 -goodbye,sayonara,original,bye,2 -no,naw,original,cancel,3 -no,no?,parrot,cancel,3 -goodbye,peace,original,bye,2 -calendar_update,what does cancel the event on may 17?,lambada,resched,5 -goodbye,goodbye,original,bye,2 -goodbye,i had a great time talking with you!,lambada,bye,2 -reminder_update,remind me,original,resched,5 -yes,is true,parrot,book,1 -no,no way,original,cancel,3 -no,not that one,original,cancel,3 -goodbye,goodbye later,parrot,bye,2 -no,negative,original,cancel,3 -goodbye,maybe i'll talk to you later,parrot,bye,2 -yes,my answer is yes,parrot,book,1 -greeting,hi,original,greet,4 -no,negating,parrot,cancel,3 -goodbye,regards,original,bye,2 -greeting,how's it going now?,parrot,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,is a false statement?,parrot,cancel,3 -calendar,what's tuesday on my calendar?,parrot,avail,0 -goodbye,sayonara ,parrot,bye,2 -greeting,how're you?,parrot,greet,4 -yes,that would be true,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,what time does the restaurant open?,parrot,avail,0 -yes,that's definitely true,original,book,1 -goodbye,fairwell,original,bye,2 -goodbye,bye,original,bye,2 -greeting,welcome,parrot,greet,4 -how_busy,how long is the wait to be seated at olive garden,lambada,avail,0 -yes,great,original,book,1 -goodbye,get there soon,lambada,bye,2 -thank_you,thanks!,original,bye,2 -no,erroneous,parrot,cancel,3 -yes,im sure you're right,parrot,book,1 -no,i'll say no,parrot,cancel,3 -yes,i agree,original,book,1 -yes,a true statement,parrot,book,1 -how_busy,how long is the restaurant before we leave,parrot,avail,0 -greeting,how's otc?,parrot,greet,4 -no,invalid,original,cancel,3 -goodbye,bye bye,lambada,bye,2 -thank_you,your answer was enjoyable,original,bye,2 -no,negative,original,cancel,3 -goodbye,i'll go,parrot,bye,2 -goodbye,goodnight,original,bye,2 -goodbye,"nice talking again, bye",original,bye,2 -goodbye,thank you for talking with me,parrot,bye,2 -yes,confirm,original,book,1 -goodbye,cya later,original,bye,2 -cancel_reservation,if you can cancel my reservation for 6 at red robin please,parrot,cancel,3 -how_busy,wait for a table at teeter totter?,parrot,avail,0 -no,it's very false,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -no,i'd say no,original,cancel,3 -goodbye,thanks for the conversation later,parrot,bye,2 -no,negation,parrot,cancel,3 -yes,definitely,original,book,1 -greeting,hola,original,greet,4 -goodbye,wait for me later,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -goodbye,good conversation,parrot,bye,2 -how_busy,what's the wait time for a table at chinese gyoza,lambada,avail,0 -no,nada,original,cancel,3 -date,do you have a date?,parrot,avail,0 -yes,accepted,original,book,1 -goodbye,tootles?,parrot,bye,2 -yes,certainly,parrot,book,1 -yes,yeah,original,book,1 -yes,10-Apr,original,book,1 -greeting,how's my feeling?,parrot,greet,4 -yes,TRUE,original,book,1 -yes,affirmitive,original,book,1 -reminder_update,add a note,parrot,resched,5 -no,i disagree,parrot,cancel,3 -schedule_meeting,how does scheduling meetings work?,parrot,book,1 -yes,yep,original,book,1 -no,invalid,original,cancel,3 -meeting_schedule,when is my meeting with joe?,parrot,avail,0 -schedule_meeting,reserve a meeting room for friday 5 pm,parrot,book,1 -no,most definitely false,parrot,cancel,3 -no,absolutely false,parrot,cancel,3 -goodbye,"nice talking again, bye",original,bye,2 -goodbye,regards,original,bye,2 -reminder_update,i need to remind you please,parrot,resched,5 -goodbye,great talk,lambada,bye,2 -yes,yup,original,book,1 -reminder_update,have i forgotten?,parrot,resched,5 -goodbye,i’m leaving-goodbye!,original,bye,2 -meeting_schedule,do i have to be in meetings today?,parrot,avail,0 -how_busy,how busy will the ti-noodle be around 6pm,parrot,avail,0 -cancel_reservation,can i cancel my reservation at 4 pm in ruth's?,parrot,cancel,3 -calendar_update,the day i'm supposed to go to the hospital is changed,parrot,resched,5 -yes,good,parrot,book,1 -how_busy,waiting at cheeseburgers?,parrot,avail,0 -goodbye,"that's all, bye",original,bye,2 -no,negating,parrot,cancel,3 -no,no!,original,cancel,3 -no,nada,original,cancel,3 -greeting,what's up,original,greet,4 -greeting,"hello, ai",original,greet,4 -thank_you,thank you?,parrot,bye,2 -greeting,yo,original,greet,4 -thank_you,thank you for making my life easier,parrot,bye,2 -greeting,hi,original,greet,4 -thank_you,oh sweet thanks,original,bye,2 -yes,roger that,original,book,1 -goodbye,goodbye goodbye,parrot,bye,2 -no,thanks no,parrot,cancel,3 -yes,10-Apr,original,book,1 -goodbye,the talk was nice,lambada,bye,2 -greeting,yo,original,greet,4 -no,i'll pass,original,cancel,3 -greeting,and what's up?,parrot,greet,4 -no,it's completely false,parrot,cancel,3 -greeting,yo,original,greet,4 -thank_you,i'm glad you helped,parrot,bye,2 -yes,huh,parrot,book,1 -goodbye,", goodbye",lambada,bye,2 -no,that's wrong,original,cancel,3 -yes,accepted,original,book,1 -yes,right,parrot,book,1 -thank_you,thanks!,original,bye,2 -greeting,are you okay now?,parrot,greet,4 -date,i would like to know what the date is today,lambada,avail,0 -no,please disagree,lambada,cancel,3 -greeting,salutations!,original,greet,4 -goodbye,goodnight,original,bye,2 -yes,indeed,original,book,1 -thank_you,you've been amazing,lambada,bye,2 -yes,good yes,lambada,book,1 -schedule_meeting,do you have meeting rooms available at 8?,parrot,book,1 -thank_you,merci beaucoup,original,bye,2 -greeting,hi,original,greet,4 -yes,indeed,original,book,1 -greeting,salutations,parrot,greet,4 -yes,yeap,original,book,1 -greeting,hows it going,lambada,greet,4 -thank_you,i'm happy with my response,parrot,bye,2 -greeting,why hello?,original,greet,4 -goodbye,good call,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -meeting_schedule,what meetings are today?,lambada,avail,0 -greeting,hey how's it going,original,greet,4 -yes,i'll check that out,parrot,book,1 -no,but certainly not,parrot,cancel,3 -date,where is tomorrow's date?,parrot,avail,0 -goodbye,"nice talk, next time",lambada,bye,2 -reminder_update,please remind me again,parrot,resched,5 -no,i say negative,original,cancel,3 -calendar,please update my schedule for march 1st,parrot,avail,0 -yes,oh-huh,parrot,book,1 -yes,that's a fact,lambada,book,1 -goodbye,thanks for chatting,lambada,bye,2 -calendar,what's tuesday's calendar?,parrot,avail,0 -date,today?,parrot,avail,0 -thank_you,thanks for responding,parrot,bye,2 -yes,i'd say yes,parrot,book,1 -greeting,hi,original,greet,4 -yes,is true,parrot,book,1 -how_busy,how busy is applebees at noon,lambada,avail,0 -calendar,tell me what's going on march 2nd?,parrot,avail,0 -no,nope,original,cancel,3 -thank_you,thank you for that reply,original,bye,2 -calendar,tell me what my calendar looks like on march 2?,lambada,avail,0 -yes,yes,original,book,1 -thank_you,thanks again!,original,bye,2 -meeting_schedule,do i have any meetings between 9:15 and 10:15 pm today?,lambada,avail,0 -yes,is true,parrot,book,1 -thank_you,and i'm so grateful for the answer,parrot,bye,2 -yes,it's indeed true,original,book,1 -how_busy,how long will it take me to get seated at the cheese cake company?,parrot,avail,0 -yes,"yes, that is correct",original,book,1 -cancel_reservation,i have to cancel my reservation for a place at red robin,parrot,cancel,3 -greeting,good evening,original,greet,4 -yes,i guess,parrot,book,1 -goodbye,fairwell?,parrot,bye,2 -date,what's the date of day?,parrot,avail,0 -greeting,what's up,original,greet,4 -yes,"yes, please",parrot,book,1 -greeting,tell me how you're doing?,parrot,greet,4 -how_busy,is the parking lot crowded before 8:00 in the morning?,lambada,avail,0 -goodbye,bye!,original,bye,2 -greeting,yo,original,greet,4 -date,is it six days?,parrot,avail,0 -date,the date tomorrow is what,original,avail,0 -how_busy,there are a lot of people at chili's around 830pm?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -how_busy,tell me the time to wait for the lobster?,parrot,avail,0 -yes,i'm going to tell you tes,parrot,book,1 -calendar,what's going on in my calendar for the month of march?,parrot,avail,0 -yes,it's positive,parrot,book,1 -no,no please,parrot,cancel,3 -yes,"yeah, that's it",lambada,book,1 -goodbye,later gater,original,bye,2 -yes,ya,original,book,1 -yes,facts,original,book,1 -schedule_meeting,are meeting rooms available from 11 am to 1 pm?,parrot,book,1 -how_busy,how long can i expect olives to be busy at dinner?,parrot,avail,0 -yes,uh-huh,original,book,1 -calendar,give me an idea of what march 23 will look like for me?,parrot,avail,0 -greeting,aloha,original,greet,4 -yes,yeah,original,book,1 -goodbye,peace,original,bye,2 -greeting,what do you feel?,parrot,greet,4 -greeting,hello bs,parrot,greet,4 -no,no,lambada,cancel,3 -goodbye,good night,original,bye,2 -calendar,tell me what's currently on my calendar for march 1st?,lambada,avail,0 -yes,agreed,original,book,1 -goodbye,good-bye,parrot,bye,2 -meeting_schedule,are there meetings between 1 and 4 today?,parrot,avail,0 -yes,great,original,book,1 -goodbye,peace,original,bye,2 -no,no!,original,cancel,3 -thank_you,you've tried,parrot,bye,2 -yes,ya,original,book,1 -greeting,how's ayi doing?,parrot,greet,4 -no,indeed it's false,parrot,cancel,3 -thank_you,i appreciate the help,original,bye,2 -date,a year?,parrot,avail,0 -no,that's negative,parrot,cancel,3 -no,FALSE,original,cancel,3 -goodbye,sayonara,original,bye,2 -meeting_schedule,what is my schedule?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -goodbye,just relax,parrot,bye,2 -greeting,what's happening?,parrot,greet,4 -how_busy,can i expect to see a lot of people in restaurant at 6:00?,lambada,avail,0 -goodbye,bye bye,lambada,bye,2 -greeting,how's life,original,greet,4 -yes,perfect,parrot,book,1 -yes,all right,parrot,book,1 -yes,indeed,original,book,1 -greeting,hiya!,original,greet,4 -yes,i want that,parrot,book,1 -goodbye,see ya,original,bye,2 -meeting_schedule,meetings today,original,avail,0 -greeting,what's happening,original,greet,4 -no,negative,original,cancel,3 -greeting,nice day,lambada,greet,4 -goodbye,it's over,parrot,bye,2 -date,is today monday?,original,avail,0 -no,no!,original,cancel,3 -yes,yes that's it,original,book,1 -yes,a fact,parrot,book,1 -greeting,hello how's the situation?,parrot,greet,4 -goodbye,later!,original,bye,2 -goodbye,farewell,original,bye,2 -yes,yes that's right,lambada,book,1 -yes,huh,parrot,book,1 -how_busy,how long will i have to wait to be seated in the caprese steak house,parrot,avail,0 -how_busy,how much will the restaurant get crowded before dinner,lambada,avail,0 -goodbye,farewell!,original,bye,2 -goodbye,you're done,parrot,bye,2 -no,what is not true?,parrot,cancel,3 -meeting_schedule,can i meet joan today?,parrot,avail,0 -calendar,what do i have planned for 3/5?,original,avail,0 -no,but no way?,parrot,cancel,3 -how_busy,when is chili busy?,parrot,avail,0 -no,invalid,original,cancel,3 -yes,TRUE,lambada,book,1 -goodbye,the talk was nice,lambada,bye,2 -yes,i'm pretty sure that's true,lambada,book,1 -no,i'll pass,original,cancel,3 -no,it's a lie,parrot,cancel,3 -no,that's untrue,parrot,cancel,3 -no,"no, that's not it",original,cancel,3 -goodbye,great talk with you,lambada,bye,2 -no,nada,original,cancel,3 -yes,yeap,original,book,1 -goodbye,good talk,parrot,bye,2 -thank_you,good job,lambada,bye,2 -meeting_schedule,do i have any meetings with dan today?,lambada,avail,0 -date,what will it be in the next month?,parrot,avail,0 -greeting,and what's up?,parrot,greet,4 -how_busy,what's the wait at iman's,lambada,avail,0 -goodbye,goodbye to yours,parrot,bye,2 -thank_you,awesome thanks,parrot,bye,2 -goodbye,glad to talk again,parrot,bye,2 -date,tell me what's the date today?,parrot,avail,0 -thank_you,my gratitude,parrot,bye,2 -thank_you,nice,parrot,bye,2 -thank_you,good job,lambada,bye,2 -calendar,what's tuesday in my calendar?,parrot,avail,0 -no,nothing,parrot,cancel,3 -greeting,wassup,original,greet,4 -goodbye,goodbye!,original,bye,2 -thank_you,i'm very thankful,parrot,bye,2 -schedule_meeting,i have to have a meeting with john at 11 am,parrot,book,1 -date,where is tomorrow's date?,parrot,avail,0 -no,no,lambada,cancel,3 -greeting,you good?,parrot,greet,4 -no,nada,original,cancel,3 -no,that's a huge mistake,parrot,cancel,3 -how_busy,can you tell me how busy is the cheesecake factory at right now?,lambada,avail,0 -calendar,tell me what's on my calendar for march 19? '',parrot,avail,0 -cancel_reservation,can i cancel the reservation?,lambada,cancel,3 -goodbye,just relax,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -meeting_schedule,tell me when today's meeting is supposed to happen?,original,avail,0 -yes,that would be right,parrot,book,1 -greeting,heyo,original,greet,4 -yes,right,parrot,book,1 -greeting,hiya!,original,greet,4 -date,what's today?,parrot,avail,0 -yes,facts,original,book,1 -goodbye,see ya,original,bye,2 -thank_you,i'm so thankful for my pay check,parrot,bye,2 -how_busy,what's the crowd like at mr joes around 9pm?,parrot,avail,0 -greeting,what do i feel?,parrot,greet,4 -goodbye,i'm going,parrot,bye,2 -yes,yeah,original,book,1 -greeting,"hello, ai",original,greet,4 -goodbye,i am glad we got along fine,lambada,bye,2 -goodbye,the talk was nice,lambada,bye,2 -date,please give me today's date,original,avail,0 -goodbye,bye bye,lambada,bye,2 -goodbye,i'll go,parrot,bye,2 -greeting,aho,parrot,greet,4 -yes,TRUE,lambada,book,1 -goodbye,peace,original,bye,2 -calendar_update,delete the 14th june dinner with brittany,parrot,resched,5 -no,it's not right,parrot,cancel,3 -yes,definitely yes,parrot,book,1 -goodbye,"goodbye, ai assistant",original,bye,2 -meeting_schedule,time of meeting?,parrot,avail,0 -how_busy,are chicken dinners busy?,lambada,avail,0 -cancel_reservation,"i don't need my reservation, cancel it",original,cancel,3 -meeting_schedule,when's the meeting today?,parrot,avail,0 -no,naw,parrot,cancel,3 -no,that's no,parrot,cancel,3 -thank_you,well done,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -no,not so i think,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -goodbye,buhbye,original,bye,2 -reminder_update,remind me to bring out the jacket in 2 weeks,lambada,resched,5 -reminder_update,don't forget to put the garbage in the can,parrot,resched,5 -no,no!,original,cancel,3 -thank_you,i'm grateful for you,parrot,bye,2 -greeting,what's up?,parrot,greet,4 -no,negatory,original,cancel,3 -no,nothing,parrot,cancel,3 -goodbye,bye for now,original,bye,2 -thank_you,thanks for my cooperation,original,bye,2 -goodbye,on the highway,parrot,bye,2 -how_busy,how long will i wait for a table at mac and cheese?,parrot,avail,0 -greeting,how's my life?,parrot,greet,4 -goodbye,sign off,parrot,bye,2 -no,that's false,original,cancel,3 -yes,sure thing,original,book,1 -yes,is true,parrot,book,1 -how_busy,wait how long until dinner?,parrot,avail,0 -thank_you,thank you ai,parrot,bye,2 -thank_you,thank ya!,original,bye,2 -goodbye,take it easy!,original,bye,2 -no,that's bad,parrot,cancel,3 -yes,great,original,book,1 -goodbye,signing off,original,bye,2 -goodbye,bye,original,bye,2 -reminder_update,set a reminder for me to pay my bill,lambada,resched,5 -no,erroneous,parrot,cancel,3 -greeting,"yo, hows it going",original,greet,4 -yes,yes sir,original,book,1 -reminder_update,set a reminder,original,resched,5 -date,what's the day now,parrot,avail,0 -how_busy,how long will i have to wait before i go to restaurant,lambada,avail,0 -greeting,hello i would like to know how you are doing,parrot,greet,4 -thank_you,a million thanks,parrot,bye,2 -goodbye,adios!,original,bye,2 -calendar_update,eliminate the trip to scotland from my calendar on 1st march,parrot,resched,5 -greeting,aloha,original,greet,4 -yes,absolutely,original,book,1 -how_busy,does chili have people sitting around between 5 and 7?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -no,it would be false,parrot,cancel,3 -date,date please,original,avail,0 -how_busy,how long is the wait in the cheese cake factory right now,parrot,avail,0 -how_busy,i want to know the wait time at olive garden,lambada,avail,0 -schedule_meeting,can you book a meeting room for monday at 5pm?,parrot,book,1 -yes,absolutely,original,book,1 -greeting,whats new?,parrot,greet,4 -goodbye,farewell,original,bye,2 -yes,i guess,parrot,book,1 -schedule_meeting,i need an agenda,parrot,book,1 -goodbye,bye,original,bye,2 -goodbye,good-bye,parrot,bye,2 -no,FALSE,original,cancel,3 -yes,just right,parrot,book,1 -no,negative,original,cancel,3 -greeting,how is ai doing?,parrot,greet,4 -yes,accepted,original,book,1 -calendar_update,i must add my grocery list to my calendar for next day,parrot,resched,5 -no,don't agree,parrot,cancel,3 -calendar,tell me what event is on my calendar for 12/23/2019?,lambada,avail,0 -goodbye,great talking to you,parrot,bye,2 -no,i disagree,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -greeting,welcome,parrot,greet,4 -yes,confirmed,original,book,1 -goodbye,i'm leaving now,lambada,bye,2 -goodbye,nice to speak with you,original,bye,2 -greeting,yo,original,greet,4 -no,negating,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -greeting,all right now?,parrot,greet,4 -no,that's wrong,original,cancel,3 -yes,it's true,original,book,1 -yes,affirmative,original,book,1 -date,what's today?,parrot,avail,0 -yes,it's a fact,parrot,book,1 -goodbye,i'll leave,parrot,bye,2 -how_busy,how busy is rancho around 9am?,parrot,avail,0 -yes,a fact,parrot,book,1 -no,that's not factual,parrot,cancel,3 -yes,"yes, that's true",lambada,book,1 -date,please date,parrot,avail,0 -how_busy,the wait for a table in this restaurant?,parrot,avail,0 -meeting_schedule,what's my meeting calendar?,parrot,avail,0 -yes,10-Apr,original,book,1 -yes,yeah yeah,lambada,book,1 -no,don't like it no,parrot,cancel,3 -meeting_schedule,how many meetings are there with jake today?,parrot,avail,0 -yes,ok,original,book,1 -thank_you,okay thank you,parrot,bye,2 -greeting,hi,original,greet,4 -calendar,read my calendar,parrot,avail,0 -greeting,what's going on with you?,parrot,greet,4 -date,what day it today?,original,avail,0 -date,please tell me the day?,parrot,avail,0 -greeting,wassup,original,greet,4 -calendar,what is scheduled for february 22?,parrot,avail,0 -calendar,please know what's on my calendar for march 17,parrot,avail,0 -no,it's not necessarily true,parrot,cancel,3 -how_busy,at four how much business does georgio have?,parrot,avail,0 -no,invalid,original,cancel,3 -date,what date?,parrot,avail,0 -no,that's not the right answer,parrot,cancel,3 -no,that is very false,lambada,cancel,3 -date,today is what day of the week,original,avail,0 -no,invalid,original,cancel,3 -no,no good,original,cancel,3 -greeting,how have you been?,parrot,greet,4 -calendar,is easter already marked on calendar?,parrot,avail,0 -greeting,hi what's up?,parrot,greet,4 -schedule_meeting,is it possible to have a meeting at 3 pm on wednesday,parrot,book,1 -yes,i think that's right,parrot,book,1 -yes,yes that's correct,original,book,1 -no,that's erroneous,parrot,cancel,3 -yes,seems true,parrot,book,1 -goodbye,bye-bye,original,bye,2 -yes,10-Apr,original,book,1 -reminder_update,remember to remember this later,parrot,resched,5 -no,no please,parrot,cancel,3 -no,that's incorrect,original,cancel,3 -thank_you,thanks so much,original,bye,2 -yes,i vote yes,original,book,1 -how_busy,can i wait at the cheese cake factory before dinner?,parrot,avail,0 -yes,affirmitive,original,book,1 -goodbye,my way,parrot,bye,2 -calendar,what do i have for march 2?,parrot,avail,0 -meeting_schedule,are there meetings between 2 and 5?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -date,what's today's date,original,avail,0 -goodbye,buhbye now,lambada,bye,2 -goodbye,adios ai,original,bye,2 -goodbye,later!,original,bye,2 -greeting,salutations!,original,greet,4 -goodbye,catch you around,original,bye,2 -greeting,"good morning, ai",original,greet,4 -no,that's a false statement,lambada,cancel,3 -reminder_update,what about a reminder?,parrot,resched,5 -yes,i guess,parrot,book,1 -goodbye,i'm going,parrot,bye,2 -date,is today the date?,lambada,avail,0 -goodbye,farewell,original,bye,2 -yes,i believe what you said is true,parrot,book,1 -greeting,hey how's life,original,greet,4 -no,that's so wrong,parrot,cancel,3 -no,nothing,parrot,cancel,3 -yes,okay,original,book,1 -no,please no,parrot,cancel,3 -calendar_update,add my spa appointment on 12 to my calendar,parrot,resched,5 -calendar,what do i have on my calendar for march 2th?,parrot,avail,0 -goodbye,maybe next time,parrot,bye,2 -yes,right,parrot,book,1 -no,that seems wrong,lambada,cancel,3 -no,that's negative,parrot,cancel,3 -greeting,hi,original,greet,4 -calendar,please see my calendar,parrot,avail,0 -thank_you,you've been amazing,lambada,bye,2 -greeting,how's my life?,parrot,greet,4 -no,but not right now,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -no,so that's no,parrot,cancel,3 -goodbye,tootles,original,bye,2 -no,the negator,parrot,cancel,3 -thank_you,thanks for the response,lambada,bye,2 -greeting,aloha,original,greet,4 -thank_you,you've tried,parrot,bye,2 -thank_you,thanks!,original,bye,2 -thank_you,thank you!,original,bye,2 -calendar_update,please clear entries on my calendar for the 1st,original,resched,5 -no,not right,parrot,cancel,3 -yes,ok,original,book,1 -yes,"yes, please",parrot,book,1 -how_busy,mcdonald's busy around 9?,parrot,avail,0 -greeting,hi how's everything going?,parrot,greet,4 -greeting,how's it going?,parrot,greet,4 -goodbye,later,original,bye,2 -reminder_update,add a reminder,lambada,resched,5 -greeting,you're all right?,parrot,greet,4 -goodbye,bye-bye,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,goodbye,original,bye,2 -thank_you,appreciate the support,parrot,bye,2 -no,nay,original,cancel,3 -goodbye,tootles?,parrot,bye,2 -goodbye,peace,original,bye,2 -yes,right,parrot,book,1 -greeting,hi there,original,greet,4 -yes,yeap,original,book,1 -goodbye,peace,original,bye,2 -how_busy,how busy is imanas at 6?,parrot,avail,0 -cancel_reservation,the reservation i created,parrot,cancel,3 -yes,it'd be great,parrot,book,1 -how_busy,is chili's long wait for a table?,lambada,avail,0 -greeting,hi,original,greet,4 -greeting,how's idy?,parrot,greet,4 -yes,"yes, that is a fact",original,book,1 -meeting_schedule,are there any meetings scheduled with ash today?,lambada,avail,0 -no,no that's not the case,parrot,cancel,3 -how_busy,how long would i be waiting for the hamster wheel?,parrot,avail,0 -no,that is no,lambada,cancel,3 -greeting,welcome,parrot,greet,4 -yes,sure,original,book,1 -date,today what date?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -yes,yup,original,book,1 -schedule_meeting,are there meeting rooms open between 10 and 11 o'clock in the morning?,parrot,book,1 -meeting_schedule,is there a meeting in my calendar today?,parrot,avail,0 -how_busy,how long will i have to wait if i want to eat in the cheesecake factory?,parrot,avail,0 -yes,yup,original,book,1 -no,i'd rather not,parrot,cancel,3 -date,in eight days?,parrot,avail,0 -yes,that's a yes,original,book,1 -meeting_schedule,when is the meeting?,parrot,avail,0 -goodbye,it's time to run,parrot,bye,2 -thank_you,my sincere gratitude,parrot,bye,2 -no,no,lambada,cancel,3 -goodbye,"bye-bye, my friend",lambada,bye,2 -no,so that's no,parrot,cancel,3 -calendar_update,i'll meet steven on march 5th,parrot,resched,5 -reminder_update,"create a reminder, please",lambada,resched,5 -yes,my answer is yes,parrot,book,1 -thank_you,good job,lambada,bye,2 -yes,yeah,original,book,1 -no,naw,original,cancel,3 -how_busy,is the restaurant always crowded?,parrot,avail,0 -thank_you,"oh, thanks",original,bye,2 -greeting,what's happening?,parrot,greet,4 -goodbye,nice to talk to you,lambada,bye,2 -thank_you,nice,parrot,bye,2 -date,what's today,original,avail,0 -no,i don't like that,parrot,cancel,3 -yes,please let's do that,parrot,book,1 -greeting,hey yai,lambada,greet,4 -date,today?,parrot,avail,0 -yes,obviously,parrot,book,1 -date,date please,original,avail,0 -how_busy,how long will i have to wait if i want to go to the cheesecake factory,lambada,avail,0 -goodbye,give me a talk soon,parrot,bye,2 -reminder_update,add a note,parrot,resched,5 -greeting,hiya,original,greet,4 -yes,i'm sure it's true,parrot,book,1 -goodbye,see you later,original,bye,2 -greeting,ahoy there,lambada,greet,4 -how_busy,is there a waiting period in red robins?,parrot,avail,0 -yes,indeed,parrot,book,1 -date,"is it monday, wednesday, wednesday, friday, or saturday?",lambada,avail,0 -yes,"yup, that's true",original,book,1 -greeting,how's everything?,parrot,greet,4 -how_busy,how long will i wait before i can get a table in an italian bakery?,parrot,avail,0 -no,no!,original,cancel,3 -yes,agreed,original,book,1 -how_busy,tell me how busy ihop will be at 730?,parrot,avail,0 -goodbye,later gator!,original,bye,2 -reminder_update,let me know,parrot,resched,5 -thank_you,thanks,original,bye,2 -no,no please,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -date,what's the next date?,parrot,avail,0 -no,i do not believe that is right,lambada,cancel,3 -meeting_schedule,what meetings are scheduled today?,lambada,avail,0 -how_busy,what are average wait times for grilled cheese from 6 to 830?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -goodbye,this conversation was good,parrot,bye,2 -reminder_update,remind me later,original,resched,5 -yes,positive,original,book,1 -greeting,what's my feeling?,parrot,greet,4 -no,no it's not,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -no,nothing,parrot,cancel,3 -no,that's no,parrot,cancel,3 -how_busy,how busy is imanas?,parrot,avail,0 -greeting,what's new here?,parrot,greet,4 -yes,sure,original,book,1 -greeting,how's everything going?,parrot,greet,4 -greeting,heyo,original,greet,4 -date,can you give me a date that i can expect within 24 hours?,parrot,avail,0 -calendar,check my calendar for me,lambada,avail,0 -thank_you,you've been great,parrot,bye,2 -cancel_reservation,"cancel the dinner reservation i made, okay",original,cancel,3 -greeting,wassup,original,greet,4 -schedule_meeting,help me arrange a meeting please,parrot,book,1 -yes,indeed,original,book,1 -greeting,hola,original,greet,4 -no,the negator,parrot,cancel,3 -schedule_meeting,i need help with scheduling a meeting,parrot,book,1 -goodbye,nice talk,lambada,bye,2 -yes,yeah yeah,lambada,book,1 -date,what's the year?,parrot,avail,0 -yes,sure,original,book,1 -yes,affirmitive,original,book,1 -goodbye,"no problem, goodbye",lambada,bye,2 -yes,10-Apr,original,book,1 -goodbye,sayonara,original,bye,2 -yes,"yes, that's accurate",original,book,1 -no,that's no,parrot,cancel,3 -greeting,hello how are you,lambada,greet,4 -no,not true i think,parrot,cancel,3 -thank_you,"thanks, that's helpful",original,bye,2 -goodbye,good chatting with you,lambada,bye,2 -yes,of course,original,book,1 -yes,yep,original,book,1 -yes,yes it's true,lambada,book,1 -yes,"yep, that's right",original,book,1 -no,but it's false,parrot,cancel,3 -yes,uh-huh,original,book,1 -greeting,aloha,original,greet,4 -greeting,yo,original,greet,4 -no,"no, it's not",lambada,cancel,3 -reminder_update,i need to remember,parrot,resched,5 -no,it's a negation,parrot,cancel,3 -date,date tomorrow?,parrot,avail,0 -greeting,hey bs,lambada,greet,4 -no,invalid,original,cancel,3 -yes,accept,parrot,book,1 -no,naw,parrot,cancel,3 -yes,affirmative,original,book,1 -no,FALSE,lambada,cancel,3 -date,current day,parrot,avail,0 -reminder_update,but i need to remember,parrot,resched,5 -yes,that's correct,original,book,1 -meeting_schedule,can you tell me my scheduled meetings for today only,parrot,avail,0 -meeting_schedule,what's my meeting schedule today?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -goodbye,good conversation,parrot,bye,2 -no,that is incorrect,original,cancel,3 -greeting,well hi there,original,greet,4 -yes,certainly,parrot,book,1 -how_busy,would you say that imo's is busy at 5pm,lambada,avail,0 -how_busy,how busy is chili around 11pm,parrot,avail,0 -calendar_update,remove events like joe's wedding from my calendar,parrot,resched,5 -calendar_update,erase the birthday party from my calendar,lambada,resched,5 -yes,"yup, that's true",original,book,1 -yes,yeah,original,book,1 -greeting,aho,parrot,greet,4 -thank_you,thanks a million,original,bye,2 -greeting,hey hey!,original,greet,4 -greeting,hey yai,lambada,greet,4 -yes,good,parrot,book,1 -no,"no, that's wrong",original,cancel,3 -goodbye,bye bye!,original,bye,2 -yes,great,original,book,1 -no,negating,parrot,cancel,3 -greeting,aloha,original,greet,4 -calendar_update,delete my meeting on april 3rd,parrot,resched,5 -goodbye,goodnight,original,bye,2 -meeting_schedule,when is my invoicing meeting scheduled?,parrot,avail,0 -calendar_update,please clean my calendar,parrot,resched,5 -goodbye,"syonara, ai device!",original,bye,2 -calendar,give me the schedule for march 13th,parrot,avail,0 -date,what's the date of today?,parrot,avail,0 -no,it's negative,parrot,cancel,3 -greeting,what's new?,parrot,greet,4 -yes,huh,parrot,book,1 -yes,positive,original,book,1 -no,it's negative,parrot,cancel,3 -no,it's very wrong,parrot,cancel,3 -no,nay,original,cancel,3 -greeting,hola!,original,greet,4 -yes,yes,original,book,1 -greeting,tell me how you are?,lambada,greet,4 -how_busy,does this pizza place have a long wait?,parrot,avail,0 -greeting,how's my life today?,parrot,greet,4 -no,that's not right,original,cancel,3 -greeting,"hello, how's my day",original,greet,4 -greeting,how's my day been?,parrot,greet,4 -how_busy,i want to know how busy ruby tuesday will be around 845,parrot,avail,0 -how_busy,how long will it take to get a table at red lobster,lambada,avail,0 -greeting,how's life treating you?,parrot,greet,4 -no,please no,parrot,cancel,3 -goodbye,until next time!,original,bye,2 -yes,ok,original,book,1 -yes,i'm going to tell you tes,parrot,book,1 -greeting,how do you feel?,parrot,greet,4 -yes,it makes sense,parrot,book,1 -thank_you,your response was good,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -greeting,salutations!,original,greet,4 -goodbye,thanks goodbye,parrot,bye,2 -reminder_update,reminder of the gas bill,parrot,resched,5 -no,it's a negation,parrot,cancel,3 -no,that is so false,original,cancel,3 -yes,i want that,parrot,book,1 -thank_you,appreciated,original,bye,2 -thank_you,the best,parrot,bye,2 -yes,what i'm saying is correct?,lambada,book,1 -yes,indeed,original,book,1 -thank_you,awesome thanks,parrot,bye,2 -greeting,how's everything?,parrot,greet,4 -greeting,hey,original,greet,4 -no,negatory,original,cancel,3 -date,what's the day now,parrot,avail,0 -goodbye,goodbye ai,parrot,bye,2 -yes,not false,parrot,book,1 -goodbye,goodnight,original,bye,2 -thank_you,i have to thank you,parrot,bye,2 -greeting,hey,original,greet,4 -no,negation,parrot,cancel,3 -thank_you,oh sweet thanks,original,bye,2 -greeting,hiya!,original,greet,4 -reminder_update,remind me to do my chores?,parrot,resched,5 -how_busy,what does a red lobster get at 7pm,parrot,avail,0 -schedule_meeting,can i meet with scott at 9am?,parrot,book,1 -goodbye,ill leave now,parrot,bye,2 -greeting,what do you feel?,parrot,greet,4 -yes,confirmed,original,book,1 -how_busy,how long will it take to sit on the macaroni grill,parrot,avail,0 -no,this is a tough no from me,parrot,cancel,3 -yes,perfect,parrot,book,1 -greeting,"hello, ai",original,greet,4 -no,nay,original,cancel,3 -no,not at all,original,cancel,3 -yes,all right,parrot,book,1 -calendar,i have to see the calendar for february 24th,parrot,avail,0 -yes,my answer is yes,parrot,book,1 -how_busy,how busy will chili be at 5 o'clock,parrot,avail,0 -goodbye,peace,original,bye,2 -goodbye,but it was nice to talk again,parrot,bye,2 -schedule_meeting,list the steps to set up a meeting,parrot,book,1 -how_busy,is ihop currently busy?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -thank_you,so i appreciate it,parrot,bye,2 -meeting_schedule,are there meetings between 5 and 6 pm?,parrot,avail,0 -date,what's the day today?,parrot,avail,0 -thank_you,"nice, excellent!",original,bye,2 -yes,my answer is yes,parrot,book,1 -date,today?,parrot,avail,0 -no,i am saying no,original,cancel,3 -how_busy,how long is a steakhouse wait?,parrot,avail,0 -thank_you,i'm grateful,original,bye,2 -no,is my falsehood?,parrot,cancel,3 -no,is my false assertion?,parrot,cancel,3 -yes,all right,parrot,book,1 -date,where is tomorrow's date?,parrot,avail,0 -thank_you,i want to thank you for making me aware of that,lambada,bye,2 -how_busy,if it's noon how long will it be,parrot,avail,0 -greeting,"ai, how are you doing",original,greet,4 -calendar_update,removing all calendar entries on april 13,parrot,resched,5 -greeting,hola,original,greet,4 -greeting,whats up?,parrot,greet,4 -goodbye,good-bye,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -calendar,what's on january 1st?,parrot,avail,0 -meeting_schedule,how many meetings am i scheduled for today,lambada,avail,0 -no,no thanks,original,cancel,3 -no,negation,parrot,cancel,3 -yes,yup,original,book,1 -date,please date,parrot,avail,0 -yes,huh huh,parrot,book,1 -thank_you,that's what i want,parrot,bye,2 -date,date please,original,avail,0 -greeting,greetings to you,original,greet,4 -goodbye,goodbye,original,bye,2 -goodbye,goodbye bye,parrot,bye,2 -no,it's so bad,parrot,cancel,3 -thank_you,you did a good job doing what you did,lambada,bye,2 -meeting_schedule,is i supposed to have meetings today between 7 and 9?,parrot,avail,0 -yes,TRUE,original,book,1 -meeting_schedule,are there meetings between 3 and 5 pm?,parrot,avail,0 -goodbye,later then,lambada,bye,2 -how_busy,is the restaurant packed during the night?,parrot,avail,0 -goodbye,bye now,original,bye,2 -no,"no, that is invalid",original,cancel,3 -no,no good,original,cancel,3 -goodbye,talk later,original,bye,2 -no,not really,original,cancel,3 -goodbye,tootles?,parrot,bye,2 -goodbye,ill leave now,parrot,bye,2 -yes,ya,original,book,1 -greeting,well hi there,original,greet,4 -yes,indeed,parrot,book,1 -thank_you,i'm grateful for you,parrot,bye,2 -greeting,what is new?,parrot,greet,4 -greeting,well hi there,original,greet,4 -goodbye,regards,original,bye,2 -yes,thats right,original,book,1 -date,what's today?,parrot,avail,0 -meeting_schedule,are there meetings between 2 and 5 o'clock?,parrot,avail,0 -greeting,how does ai do?,parrot,greet,4 -goodbye,talk later,original,bye,2 -no,no way,original,cancel,3 -no,naw,parrot,cancel,3 -no,not good idea,parrot,cancel,3 -calendar_update,remove event from calendar,lambada,resched,5 -no,no!,original,cancel,3 -date,what month is it today? '',parrot,avail,0 -reminder_update,remind me to exercise,original,resched,5 -goodbye,nice chat today,lambada,bye,2 -thank_you,"great, thanks!",original,bye,2 -calendar,can you tell me what is on my calendar for march 19?,lambada,avail,0 -goodbye,later then,lambada,bye,2 -date,tomorrow is the date,parrot,avail,0 -greeting,yo,original,greet,4 -yes,that's correct,original,book,1 -schedule_meeting,help me schedule a meeting,original,book,1 -thank_you,appreciated,original,bye,2 -yes,confirmed,original,book,1 -cancel_reservation,my reservation is not needed,parrot,cancel,3 -thank_you,thanks for that!,original,bye,2 -greeting,whats up?,parrot,greet,4 -no,so that's no,parrot,cancel,3 -goodbye,later then,lambada,bye,2 -yes,certainly true,parrot,book,1 -greeting,heyo,original,greet,4 -greeting,hey fellows,parrot,greet,4 -thank_you,"great, thanks!",original,bye,2 -how_busy,the olive garden is usually busy at noon,parrot,avail,0 -greeting,"good morning, ai",original,greet,4 -greeting,aho,parrot,greet,4 -greeting,hello how's the situation?,parrot,greet,4 -meeting_schedule,when is my meeting scheduled for?,lambada,avail,0 -no,no that is wrong,original,cancel,3 -date,what day is it?,original,avail,0 -date,i'd like to know the date of today,parrot,avail,0 -thank_you,very grateful,parrot,bye,2 -yes,10-Apr,original,book,1 -thank_you,my sincere gratitude,parrot,bye,2 -yes,confirm,original,book,1 -how_busy,how long will it take to be seated in the restaurant?,parrot,avail,0 -no,that's not the case,parrot,cancel,3 -greeting,what's happened?,parrot,greet,4 -no,i'll say no,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -greeting,hey there fellow,original,greet,4 -date,in 7 days?,parrot,avail,0 -yes,so it's checked,parrot,book,1 -no,this is not true,parrot,cancel,3 -thank_you,thanks for that,original,bye,2 -yes,accept,parrot,book,1 -goodbye,regards,original,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -greeting,salutation,parrot,greet,4 -goodbye,good-bye,parrot,bye,2 -yes,huh,parrot,book,1 -schedule_meeting,can you sign me up for a meeting on friday at 10am?,parrot,book,1 -thank_you,thanks for the answer,original,bye,2 -thank_you,"oh, thanks",original,bye,2 -thank_you,you've been amazing,lambada,bye,2 -no,not correct,parrot,cancel,3 -thank_you,okay thank you,parrot,bye,2 -how_busy,does the out of town pizza factory have a long wait for us?,lambada,avail,0 -date,please explain today,parrot,avail,0 -goodbye,adios,original,bye,2 -thank_you,thanks again!,original,bye,2 -calendar,what's on my calendar for march 18th,parrot,avail,0 -how_busy,is ihop busy around 6 o'clock?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -yes,uh-huh,original,book,1 -yes,great,original,book,1 -no,but not right now,parrot,cancel,3 -yes,"yes, you have probably been correct",lambada,book,1 -goodbye,good talk,parrot,bye,2 -goodbye,i'm gone,parrot,bye,2 -cancel_reservation,tell me if i need to cancel my reservation for porterhouse?,lambada,cancel,3 -how_busy,how long is the wait at macaroni and cheese,lambada,avail,0 -greeting,hey hey!,original,greet,4 -goodbye,my friend,parrot,bye,2 -yes,okay,original,book,1 -how_busy,is red lobster busy?,parrot,avail,0 -no,not really,original,cancel,3 -goodbye,fairwell,original,bye,2 -yes,affirmative,original,book,1 -no,that's wrong,original,cancel,3 -cancel_reservation,please get rid of my reservation for friday night at robins,parrot,cancel,3 -thank_you,thanks!,original,bye,2 -no,negation,parrot,cancel,3 -no,that's totally wrong!,original,cancel,3 -yes,yes it's true,lambada,book,1 -no,naw,original,cancel,3 -no,it's false,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -yes,is true,parrot,book,1 -yes,oh-huh,parrot,book,1 -how_busy,how busy will the olive garden be at 730pm,parrot,avail,0 -how_busy,is the chili usually crowded around 6 o'clock?,parrot,avail,0 -goodbye,tootles,original,bye,2 -greeting,hola!,original,greet,4 -yes,i'd say it's true,parrot,book,1 -schedule_meeting,i need an agenda,parrot,book,1 -greeting,why hello?,original,greet,4 -how_busy,is ihop busy around 815am?,parrot,avail,0 -date,what's today?,parrot,avail,0 -no,that's incorrect,original,cancel,3 -goodbye,it's over,parrot,bye,2 -goodbye,just relax,parrot,bye,2 -reminder_update,remind me to prepare for my meeting at 5 pm,parrot,resched,5 -greeting,hello what's up?,parrot,greet,4 -yes,accept,parrot,book,1 -date,what's the day now?,parrot,avail,0 -no,it is no,original,cancel,3 -yes,yeah,original,book,1 -yes,it's certainly true,parrot,book,1 -calendar,how's it going on friday?,parrot,avail,0 -goodbye,good conversation,parrot,bye,2 -goodbye,good luck tomorrow,lambada,bye,2 -goodbye,i'm gone,parrot,bye,2 -no,no,lambada,cancel,3 -goodbye,greetings,parrot,bye,2 -yes,yep,original,book,1 -thank_you,my thanks,parrot,bye,2 -greeting,heyo,original,greet,4 -meeting_schedule,discuss my meeting schedule with me,lambada,avail,0 -no,certainly false,parrot,cancel,3 -no,that's not the truth,parrot,cancel,3 -no,that's not correct it's false,parrot,cancel,3 -reminder_update,i must remind you to go to the post office,parrot,resched,5 -goodbye,farewell,original,bye,2 -no,i don't think so,original,cancel,3 -no,that's incorrect,original,cancel,3 -greeting,aho,parrot,greet,4 -greeting,bonjour,original,greet,4 -goodbye,my friend,parrot,bye,2 -no,it's false,parrot,cancel,3 -greeting,"hello, how are things",original,greet,4 -calendar,what's my schedule for april 1?,parrot,avail,0 -how_busy,wait how long on black friday,parrot,avail,0 -how_busy,how long do i have to wait to go to the wilson steakhouse?,parrot,avail,0 -goodbye,see ya!,original,bye,2 -how_busy,what's the time to sit in this restaurant?,parrot,avail,0 -goodbye,great conversation,parrot,bye,2 -cancel_reservation,get the salad canceled,parrot,cancel,3 -greeting,"hello, friend",original,greet,4 -greeting,hey,original,greet,4 -no,false sure,parrot,cancel,3 -yes,it's certainly true,parrot,book,1 -yes,huh,parrot,book,1 -greeting,hello hello good morning,parrot,greet,4 -calendar,let me know if there's a scheduled event for march 15,parrot,avail,0 -goodbye,bye,original,bye,2 -no,negating,parrot,cancel,3 -yes,affirmitive,original,book,1 -date,what's today?,parrot,avail,0 -yes,all right,original,book,1 -goodbye,tootles,original,bye,2 -greeting,how's my day?,parrot,greet,4 -greeting,hey,original,greet,4 -schedule_meeting,can you hold a meeting for 3 00 on wednesday?,parrot,book,1 -yes,"yes, that's correct",original,book,1 -greeting,hello,original,greet,4 -no,so that's no,parrot,cancel,3 -calendar,is my calendar free next sunday?,original,avail,0 -yes,what's the truth of that,lambada,book,1 -no,not right now,original,cancel,3 -thank_you,thanks so much,original,bye,2 -yes,obviously,parrot,book,1 -no,negatory,original,cancel,3 -yes,just right,parrot,book,1 -greeting,how you're treated?,parrot,greet,4 -no,no!,original,cancel,3 -yes,sure thing,original,book,1 -no,"no, definitely not",original,cancel,3 -greeting,yo,original,greet,4 -goodbye,buhbye now,lambada,bye,2 -no,nope,original,cancel,3 -date,"in three days, when will it be",lambada,avail,0 -greeting,good morning,parrot,greet,4 -greeting,hi how is everything,original,greet,4 -goodbye,bye bye,lambada,bye,2 -greeting,salutations,parrot,greet,4 -yes,seems true,parrot,book,1 -greeting,what's up with you?,parrot,greet,4 -calendar,please read my calendar,parrot,avail,0 -no,negative,original,cancel,3 -yes,yes,original,book,1 -no,it's so bad,parrot,cancel,3 -yes,"yeah, that's right",original,book,1 -thank_you,thanks a million,original,bye,2 -yes,huh,parrot,book,1 -goodbye,farewell,original,bye,2 -no,no,lambada,cancel,3 -how_busy,does the pizza place have a long waiting time?,parrot,avail,0 -thank_you,so grateful,parrot,bye,2 -yes,yes,original,book,1 -calendar,can you tell me what's on my calendar for march 17th?,parrot,avail,0 -date,list the current date?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -yes,yep,original,book,1 -thank_you,special thanks to you,original,bye,2 -cancel_reservation,can i cancel my reservation at the restaurant? how?,parrot,cancel,3 -yes,yeap,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,at 5 pm how busy is chili's,parrot,avail,0 -no,so that's no,parrot,cancel,3 -no,not right now,original,cancel,3 -thank_you,appreciated,original,bye,2 -yes,it's positive,parrot,book,1 -greeting,hey,original,greet,4 -meeting_schedule,when is the meeting?,parrot,avail,0 -yes,not false,parrot,book,1 -goodbye,goodbye!,original,bye,2 -how_busy,how long do i have to wait if we want to go to the cheesecake factory,parrot,avail,0 -greeting,hola,original,greet,4 -yes,you are correct,original,book,1 -greeting,hey fellow,parrot,greet,4 -meeting_schedule,do i have meetings today?,parrot,avail,0 -thank_you,thanks for answering,parrot,bye,2 -calendar,is there a scheduled event for january 15?,parrot,avail,0 -yes,absolutely!,original,book,1 -yes,TRUE,original,book,1 -goodbye,farewell,original,bye,2 -greeting,hello,original,greet,4 -date,which date today?,parrot,avail,0 -no,no,lambada,cancel,3 -how_busy,how busy is that restaurant at dinner time,parrot,avail,0 -goodbye,"thanks for the chat, goodbye",lambada,bye,2 -reminder_update,i need you to remind me to get something,parrot,resched,5 -no,nothing,parrot,cancel,3 -goodbye,ill see you around,original,bye,2 -goodbye,buhbye,original,bye,2 -date,what year?,parrot,avail,0 -yes,yes,original,book,1 -greeting,aho,parrot,greet,4 -date,what is day of the week?,parrot,avail,0 -yes,good,parrot,book,1 -greeting,ahoy there,lambada,greet,4 -greeting,ahoy there,lambada,greet,4 -greeting,"hey, what's up",original,greet,4 -goodbye,tootles?,parrot,bye,2 -calendar,can you tell me what is on my calendar for march 15th?,lambada,avail,0 -yes,huh huh,parrot,book,1 -goodbye,nice chat today,lambada,bye,2 -thank_you,awesome thanks,parrot,bye,2 -greeting,how's my doing?,parrot,greet,4 -greeting,ahoy,lambada,greet,4 -yes,accept,parrot,book,1 -no,it is not that,lambada,cancel,3 -thank_you,my gratitude,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -how_busy,can you tell me how busy the restaurant is?,parrot,avail,0 -cancel_reservation,how can i cancel my reservation for ida at red lobster?,parrot,cancel,3 -date,what day?,parrot,avail,0 -yes,approved,original,book,1 -goodbye,buhbye now,lambada,bye,2 -greeting,salutation,parrot,greet,4 -thank_you,thank you for all the information you have provided,parrot,bye,2 -no,you're not right,parrot,cancel,3 -yes,that is correct,original,book,1 -yes,it's positive,parrot,book,1 -no,don't like that,parrot,cancel,3 -yes,it is true,original,book,1 -yes,it's positive,parrot,book,1 -goodbye,bye-bye,original,bye,2 -thank_you,your answer was enjoyable,original,bye,2 -no,negative sure,parrot,cancel,3 -yes,agreed,original,book,1 -yes,TRUE,lambada,book,1 -goodbye,this was a great conversation,original,bye,2 -no,but it's false,parrot,cancel,3 -cancel_reservation,i need to cancel my reservation for nugget to nugget,lambada,cancel,3 -schedule_meeting,reserve my meeting room for thursday at 3pm,parrot,book,1 -yes,indeed,original,book,1 -no,i'd rather not,parrot,cancel,3 -yes,yeah,original,book,1 -greeting,salutations,parrot,greet,4 -reminder_update,please remind me again,parrot,resched,5 -goodbye,bye bye,lambada,bye,2 -goodbye,bye-bye,original,bye,2 -greeting,aho,parrot,greet,4 -meeting_schedule,can you tell me when the meeting is supposed to be?,parrot,avail,0 -date,a year?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -yes,TRUE,original,book,1 -greeting,hey there,original,greet,4 -yes,10-Apr,original,book,1 -no,i'm sorry it's not,parrot,cancel,3 -goodbye,im leaving,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -cancel_reservation,cancel my reservation in red robin,parrot,cancel,3 -thank_you,you're welcome,parrot,bye,2 -how_busy,is the red lobster very busy around lunchtime?,parrot,avail,0 -thank_you,thanks for that!,original,bye,2 -greeting,ahoy,lambada,greet,4 -how_busy,how long will the wait be between 4:00 and 5:30,lambada,avail,0 -goodbye,tootles?,parrot,bye,2 -no,that's untrue,parrot,cancel,3 -no,naw,parrot,cancel,3 -goodbye,i'm gone,parrot,bye,2 -yes,"yes, please",original,book,1 -schedule_meeting,please give us a meeting room for 9am on friday,parrot,book,1 -date,today?,parrot,avail,0 -how_busy,how busy is michel's at 7 pm,lambada,avail,0 -meeting_schedule,what's my meeting calendar?,parrot,avail,0 -no,no!,original,cancel,3 -how_busy,what is the wait time for olive garden at 5 pm?,lambada,avail,0 -goodbye,i'll leave,parrot,bye,2 -greeting,what's new,lambada,greet,4 -no,so that's no,parrot,cancel,3 -reminder_update,let me remember,parrot,resched,5 -no,not that one,original,cancel,3 -yes,obviously,parrot,book,1 -date,what year?,parrot,avail,0 -how_busy,what's the wait like?,parrot,avail,0 -thank_you,i appreciate the assistance,original,bye,2 -greeting,how's life,original,greet,4 -greeting,"how are you doing today, ai",original,greet,4 -calendar_update,add a farm trip to my calendar for march 1st,parrot,resched,5 -reminder_update,remind me to put the gas in the car,parrot,resched,5 -how_busy,how long can i wait for a table at macaroni grill,parrot,avail,0 -how_busy,are the red lobster guys really busy around 11 o'clock in the evening?,parrot,avail,0 -reminder_update,have i forgotten?,parrot,resched,5 -yes,that's true,original,book,1 -goodbye,i'm going,parrot,bye,2 -yes,all right,original,book,1 -yes,"yep, that's right",original,book,1 -yes,okay,original,book,1 -how_busy,can you tell me how long it will be at the italian place at midnight?,parrot,avail,0 -greeting,hey hey!,original,greet,4 -no,that's absolutely wrong,parrot,cancel,3 -how_busy,can you tell me the wait time at olive garden?,lambada,avail,0 -goodbye,good bye then,original,bye,2 -no,no way!,original,cancel,3 -thank_you,thank you!,original,bye,2 -yes,that makes sense as well,original,book,1 -goodbye,i'll talk with you later,parrot,bye,2 -how_busy,does the wait in the olive garden have to be long?,parrot,avail,0 -yes,not false,parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,really nice talking to you,parrot,bye,2 -how_busy,what's the typical time to be seated at this restaurant?,parrot,avail,0 -how_busy,how busy is chili's around 5pm,lambada,avail,0 -thank_you,i owe you,parrot,bye,2 -goodbye,go easy,parrot,bye,2 -yes,right,parrot,book,1 -goodbye,you can talk later,parrot,bye,2 -thank_you,thanks again,original,bye,2 -goodbye,bye bye now,lambada,bye,2 -date,what's the date of the month?,parrot,avail,0 -goodbye,bye!,original,bye,2 -no,nay,original,cancel,3 -yes,i think you've got it,parrot,book,1 -greeting,hello there,original,greet,4 -no,that's not right?,parrot,cancel,3 -greeting,hey there!,original,greet,4 -yes,"yeah, that's it",lambada,book,1 -reminder_update,a new reminder,parrot,resched,5 -greeting,how are you?,parrot,greet,4 -how_busy,how long is the wait at cheeseburgers,lambada,avail,0 -goodbye,goodbye to yours,parrot,bye,2 -thank_you,it's all i need,parrot,bye,2 -calendar_update,remove an event from my calendar please,parrot,resched,5 -cancel_reservation,can i cancel my reservation please?,parrot,cancel,3 -yes,TRUE,original,book,1 -no,nope,original,cancel,3 -greeting,how're you?,parrot,greet,4 -greeting,salutation,parrot,greet,4 -goodbye,goodbye to yours,parrot,bye,2 -yes,accepted,original,book,1 -yes,a fact,parrot,book,1 -reminder_update,save it for later,parrot,resched,5 -yes,perfect,parrot,book,1 -greeting,bonjour,original,greet,4 -schedule_meeting,can you book a meeting room for 300 wednesday?,parrot,book,1 -goodbye,fairwell,original,bye,2 -how_busy,how busy will chili be at 5pm,parrot,avail,0 -greeting,how are you today?,parrot,greet,4 -yes,huh,parrot,book,1 -goodbye,the conversation was good,parrot,bye,2 -yes,absolutely,original,book,1 -date,i'd like to know what the day is,parrot,avail,0 -yes,all right,parrot,book,1 -yes,it is a yes from me,parrot,book,1 -yes,"yep, that's true",original,book,1 -greeting,hello there,original,greet,4 -meeting_schedule,meeting today,parrot,avail,0 -thank_you,thanks for my support,parrot,bye,2 -no,so that's no,parrot,cancel,3 -date,what day is today?,lambada,avail,0 -yes,yes,original,book,1 -meeting_schedule,are any meetings on my calendar today?,lambada,avail,0 -thank_you,i thank you,original,bye,2 -goodbye,sayonara ,parrot,bye,2 -goodbye,i wanted to speak to you again,parrot,bye,2 -no,no way,original,cancel,3 -yes,accept,parrot,book,1 -meeting_schedule,how many meetings do i have today?,parrot,avail,0 -yes,"yes, that's correct",original,book,1 -date,what today?,parrot,avail,0 -greeting,hola!,original,greet,4 -thank_you,gracias,original,bye,2 -greeting,hello how are things going?,parrot,greet,4 -cancel_reservation,cancellation of dinner reservations,parrot,cancel,3 -calendar,show me my calendar?,parrot,avail,0 -no,that's incorrect!,original,cancel,3 -goodbye,goodnight,original,bye,2 -no,invalid,original,cancel,3 -no,nay,original,cancel,3 -thank_you,good job,lambada,bye,2 -no,i disagree,parrot,cancel,3 -goodbye,adios!,original,bye,2 -greeting,hola,original,greet,4 -greeting,"hello, friend",original,greet,4 -meeting_schedule,do i have any meetings between 10 and 4 today?,lambada,avail,0 -thank_you,merci beaucoup,original,bye,2 -schedule_meeting,i want to know how i can schedule a meeting,parrot,book,1 -goodbye,thanks for chatting,lambada,bye,2 -goodbye,goodbye ai,parrot,bye,2 -date,what is that day?,parrot,avail,0 -greeting,well hello,original,greet,4 -no,negatory?,parrot,cancel,3 -no,invalid,original,cancel,3 -cancel_reservation,i need my reservation to be cancelled for the nugget in xiomara's restaurant,parrot,cancel,3 -no,not good,parrot,cancel,3 -greeting,hi,original,greet,4 -greeting,hiya!,original,greet,4 -greeting,hey bs,lambada,greet,4 -greeting,good day,original,greet,4 -yes,yup,original,book,1 -no,it's overwhelmingly wrong,parrot,cancel,3 -thank_you,thank you!,original,bye,2 -date,what day is it?,original,avail,0 -goodbye,regards,original,bye,2 -yes,what's the truth of my statement,lambada,book,1 -yes,yup,original,book,1 -goodbye,goodbyes,parrot,bye,2 -greeting,salutation,parrot,greet,4 -greeting,show me what's new,parrot,greet,4 -greeting,"hey, what's new",original,greet,4 -how_busy,how busy is mcdonalds around 7 pm,lambada,avail,0 -thank_you,good looking out,original,bye,2 -no,no!,original,cancel,3 -goodbye,bye!,original,bye,2 -goodbye,great talking to you,parrot,bye,2 -thank_you,i'm grateful,original,bye,2 -meeting_schedule,when i'll meet roger?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -calendar,what's my schedule for thursday 14th??,parrot,avail,0 -greeting,now i have to know how my day goes,parrot,greet,4 -how_busy,what kind of wait will be at the jalapeno?,lambada,avail,0 -yes,not false,parrot,book,1 -yes,accept,parrot,book,1 -no,erroneous,parrot,cancel,3 -how_busy,how long is the wait for a table at olive garden right now,lambada,avail,0 -thank_you,you've helped,parrot,bye,2 -no,no?,parrot,cancel,3 -yes,that is true,original,book,1 -no,would be no?,parrot,cancel,3 -thank_you,i appreciate it,original,bye,2 -schedule_meeting,schedule a meeting for john at 11 am,lambada,book,1 -yes,definitely,original,book,1 -date,today?,parrot,avail,0 -how_busy,how busy is mishawaka,lambada,avail,0 -yes,positive,parrot,book,1 -date,date please,original,avail,0 -thank_you,the best,parrot,bye,2 -greeting,how's ayi doing?,parrot,greet,4 -greeting,whats up,original,greet,4 -no,it's not correct,parrot,cancel,3 -thank_you,that's all i need,parrot,bye,2 -greeting,"hello, how are you",original,greet,4 -goodbye,afterward,parrot,bye,2 -yes,of course,original,book,1 -goodbye,as regards,parrot,bye,2 -greeting,how're you today?,parrot,greet,4 -yes,yay,lambada,book,1 -how_busy,what's the wait time at red lobster?,parrot,avail,0 -no,FALSE,original,cancel,3 -thank_you,my gratitude,parrot,bye,2 -no,i think that's false,original,cancel,3 -goodbye,goodbye goodbye,parrot,bye,2 -yes,TRUE,lambada,book,1 -thank_you,i really appreciate it,parrot,bye,2 -yes,yeap,original,book,1 -no,false sure,parrot,cancel,3 -yes,let's do that,parrot,book,1 -yes,affirmative,original,book,1 -goodbye,later good luck,parrot,bye,2 -schedule_meeting,what is the availability of meeting rooms between two and three?,parrot,book,1 -no,"that is no, that is a false statement",lambada,cancel,3 -thank_you,i appreciate the answer,parrot,bye,2 -date,date tomorrow?,parrot,avail,0 -no,invalid,original,cancel,3 -no,certainly not,original,cancel,3 -no,indeed it's false,parrot,cancel,3 -how_busy,how long will it take me to sit in ihop,parrot,avail,0 -how_busy,tell me the time it takes to sit in needham's restaurant,parrot,avail,0 -no,no?,parrot,cancel,3 -date,what's the date of next month?,parrot,avail,0 -how_busy,can you tell me how busy the cheesecake factory is around 11?,lambada,avail,0 -no,that's false,original,cancel,3 -no,"no, definitely not",original,cancel,3 -goodbye,goodnight,original,bye,2 -yes,confirmed,original,book,1 -no,i think that's a bad idea,lambada,cancel,3 -no,FALSE,original,cancel,3 -date,what's it like now?,parrot,avail,0 -yes,okay,original,book,1 -date,what's the date on the next day,lambada,avail,0 -goodbye,afterward,parrot,bye,2 -yes,yes please,original,book,1 -goodbye,i'll go,parrot,bye,2 -thank_you,you've been great,parrot,bye,2 -yes,and you're correct,parrot,book,1 -goodbye,later thanks for talking,parrot,bye,2 -yes,sure,original,book,1 -schedule_meeting,reserve a meeting room for 3:30 on friday,lambada,book,1 -goodbye,goodnight,original,bye,2 -no,negation,parrot,cancel,3 -thank_you,"awesome, thanks",original,bye,2 -goodbye,i'm leaving now,lambada,bye,2 -greeting,welcome,parrot,greet,4 -calendar_update,clear my calendar for may 3rd,original,resched,5 -goodbye,bye-bye,original,bye,2 -how_busy,when will i be waiting at chipotle? '',parrot,avail,0 -thank_you,thank you!,original,bye,2 -calendar,what's tuesday's calendar?,parrot,avail,0 -yes,definitely yes,parrot,book,1 -yes,that's true,original,book,1 -thank_you,i'm thankful,original,bye,2 -how_busy,does applebees have a busy wait time at 5?,parrot,avail,0 -thank_you,thank ya!,original,bye,2 -goodbye,bye bye,lambada,bye,2 -how_busy,list the wait times for red robins?,parrot,avail,0 -no,no is the answer,original,cancel,3 -no,that's incorrect!,original,cancel,3 -date,what's today?,parrot,avail,0 -yes,uh-huh,original,book,1 -no,no?,parrot,cancel,3 -how_busy,is the restaurant crowded around lunch?,lambada,avail,0 -no,FALSE,original,cancel,3 -greeting,you good?,parrot,greet,4 -goodbye,goodbye goodbye,parrot,bye,2 -no,i don't think it's right,parrot,cancel,3 -yes,obviously,parrot,book,1 -thank_you,thanks for helping me,original,bye,2 -goodbye,i'm out,parrot,bye,2 -thank_you,i'm thankful,original,bye,2 -no,that's erroneous,parrot,cancel,3 -goodbye,ai goodbye,original,bye,2 -thank_you,thank a bunch,original,bye,2 -thank_you,your answer is appreciated,original,bye,2 -date,what day is that?,parrot,avail,0 -no,negatory,original,cancel,3 -date,what day?,parrot,avail,0 -meeting_schedule,do i have meetings scheduled today?,original,avail,0 -meeting_schedule,can you show me the next meeting?,parrot,avail,0 -goodbye,great conversation,parrot,bye,2 -greeting,heyo,original,greet,4 -goodbye,sayonara,original,bye,2 -greeting,hello siri,original,greet,4 -goodbye,great to chat with you,parrot,bye,2 -thank_you,really great!,original,bye,2 -yes,affirmative,original,book,1 -no,that’s incorrect,original,cancel,3 -how_busy,can you tell me how busy the olive garden is at 5pm?,parrot,avail,0 -no,no please,parrot,cancel,3 -date,what year?,parrot,avail,0 -thank_you,appreciate the support,parrot,bye,2 -how_busy,how long will the wait time be at ihop,lambada,avail,0 -meeting_schedule,meetings today,original,avail,0 -yes,approved,original,book,1 -goodbye,see ya,lambada,bye,2 -greeting,hey how's life,original,greet,4 -yes,TRUE,original,book,1 -goodbye,i'll go,parrot,bye,2 -how_busy,is it possible to eat beef in ohio?,parrot,avail,0 -yes,i guess,parrot,book,1 -goodbye,great talk with you,lambada,bye,2 -greeting,salutations,parrot,greet,4 -calendar_update,"on the 22nd of this month, we need to clear our calendar so we can leave it open for mark to visit",original,resched,5 -yes,positive,parrot,book,1 -goodbye,wonderful conversation,lambada,bye,2 -yes,"yep, that's correct",lambada,book,1 -goodbye,peace out!,original,bye,2 -greeting,hey how's it going?,parrot,greet,4 -reminder_update,add me a reminder?,parrot,resched,5 -yes,yep,original,book,1 -no,and i'm sorry,parrot,cancel,3 -no,no!,original,cancel,3 -no,naw,original,cancel,3 -no,nada,original,cancel,3 -no,there is no,parrot,cancel,3 -thank_you,appreciate it,original,bye,2 -thank_you,okay thank you,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -reminder_update,make me a reminder,lambada,resched,5 -no,that's completely wrong,parrot,cancel,3 -goodbye,i'm saying goodbye now,original,bye,2 -meeting_schedule,wanna meet with roger?,parrot,avail,0 -no,sure it's wrong,parrot,cancel,3 -goodbye,on the road,parrot,bye,2 -goodbye,be careful then,lambada,bye,2 -calendar,tell me what's going on on march 22?,parrot,avail,0 -no,no!,original,cancel,3 -goodbye,cya later,original,bye,2 -greeting,ahoy there,lambada,greet,4 -thank_you,gracias,original,bye,2 -greeting,salutation,parrot,greet,4 -greeting,salutation,parrot,greet,4 -schedule_meeting,i need a meeting room,parrot,book,1 -yes,yeap,original,book,1 -date,is today monday?,original,avail,0 -goodbye,farewell!,original,bye,2 -yes,it's true,original,book,1 -no,nothing,parrot,cancel,3 -how_busy,how busy will fry's be at 6pm,lambada,avail,0 -goodbye,have a nice day?,lambada,bye,2 -thank_you,nice,parrot,bye,2 -date,what date is that?,parrot,avail,0 -goodbye,nice talk,lambada,bye,2 -reminder_update,i want you to remind me of something,original,resched,5 -how_busy,is it necessary for me to wait for a table at the restaurant?,parrot,avail,0 -reminder_update,remind me later,original,resched,5 -greeting,are you well?,original,greet,4 -greeting,hola!,original,greet,4 -schedule_meeting,i need a meeting,parrot,book,1 -thank_you,appreciated,original,bye,2 -thank_you,much obliged,original,bye,2 -date,current date,original,avail,0 -greeting,aloha,original,greet,4 -goodbye,goodbye now,parrot,bye,2 -how_busy,which place in town is the busiest now?,parrot,avail,0 -how_busy,how long does i need to wait to be seated at pizza maker,lambada,avail,0 -yes,okay,original,book,1 -no,negative,original,cancel,3 -yes,yeap,original,book,1 -thank_you,i'm glad you met,parrot,bye,2 -goodbye,good night,original,bye,2 -greeting,hey fellows,parrot,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -no,i'll pass,original,cancel,3 -thank_you,i have to say thank you,parrot,bye,2 -no,not right,parrot,cancel,3 -schedule_meeting,ask if rooms are free between 1 and 2,parrot,book,1 -yes,confirmed,original,book,1 -yes,TRUE,original,book,1 -no,i mean no,parrot,cancel,3 -goodbye,thanks goodbye,parrot,bye,2 -how_busy,how busy is the olive garden at 730?,parrot,avail,0 -calendar_update,put me up for a test tomorrow,parrot,resched,5 -thank_you,appreciate the support,parrot,bye,2 -yes,that is a yes,original,book,1 -no,it's a no,original,cancel,3 -greeting,hey what's up?,parrot,greet,4 -how_busy,can you tell me how long the wait is?,parrot,avail,0 -yes,say yes,lambada,book,1 -thank_you,gracias,original,bye,2 -greeting,how were you?,parrot,greet,4 -greeting,how's the ayi doing?,parrot,greet,4 -goodbye,glad we've got to talk again,parrot,bye,2 -goodbye,regards,original,bye,2 -yes,correct,original,book,1 -goodbye,as regards,parrot,bye,2 -reminder_update,set a reminder to wash dishes,lambada,resched,5 -no,that's a false,lambada,cancel,3 -how_busy,wait long in this italian place?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -goodbye,have a nice day?,lambada,bye,2 -yes,"agreed, that's valid",original,book,1 -yes,TRUE,original,book,1 -goodbye,regards,original,bye,2 -calendar,what's my schedule for march 2nd?,parrot,avail,0 -yes,TRUE,lambada,book,1 -greeting,hello what's happening,parrot,greet,4 -greeting,"hello, hello, hello",lambada,greet,4 -no,that's erroneous,parrot,cancel,3 -no,that's incorrect!,original,cancel,3 -calendar_update,put up a test for me for next tuesday,lambada,resched,5 -greeting,are you okay??,parrot,greet,4 -yes,"yes, you got it",original,book,1 -meeting_schedule,meeting today,parrot,avail,0 -yes,all right,parrot,book,1 -no,i think it's not right,parrot,cancel,3 -yes,absolutely correct,original,book,1 -schedule_meeting,can you have a meeting room for 12 noon today?,parrot,book,1 -greeting,yo,original,greet,4 -no,nothing,parrot,cancel,3 -yes,definitely,original,book,1 -goodbye,bye bye,lambada,bye,2 -yes,that would be yes,original,book,1 -greeting,hola,original,greet,4 -yes,yep,original,book,1 -goodbye,my friend,parrot,bye,2 -yes,great,original,book,1 -no,negative,original,cancel,3 -no,negatory,original,cancel,3 -thank_you,i'm glad you did it for me,parrot,bye,2 -thank_you,so grateful,parrot,bye,2 -greeting,have you felt?,parrot,greet,4 -yes,"yes, please",parrot,book,1 -goodbye,sayonara,original,bye,2 -goodbye,good conversation,parrot,bye,2 -no,nope that's not true,parrot,cancel,3 -greeting,how have you been,original,greet,4 -goodbye,goodbye now,parrot,bye,2 -schedule_meeting,please schedule a meeting,parrot,book,1 -how_busy,is it busy at mcdonald's at lunch?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -no,naw,parrot,cancel,3 -thank_you,thanks!,original,bye,2 -date,please show the date,parrot,avail,0 -thank_you,glad you did it,parrot,bye,2 -no,not good idea,parrot,cancel,3 -greeting,hello how are things?,parrot,greet,4 -no,no good,original,cancel,3 -date,what today?,parrot,avail,0 -calendar_update,remove the anniversary dinner from my calendar on april,parrot,resched,5 -schedule_meeting,list the availability of conference rooms between 1 and 2 today?,parrot,book,1 -no,say negative,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,that seems true,original,book,1 -greeting,what's new,lambada,greet,4 -goodbye,"have a good day, bye?",original,bye,2 -thank_you,appreciate the support,parrot,bye,2 -no,nay,original,cancel,3 -goodbye,buhbye,original,bye,2 -how_busy,wait for red lobster?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -thank_you,awesome thanks,parrot,bye,2 -cancel_reservation,please cancel my reservation for the resort,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -no,no way,original,cancel,3 -greeting,hi how's the situation?,parrot,greet,4 -date,what's today?,parrot,avail,0 -date,what is the date of tomorrow?,original,avail,0 -greeting,hello,original,greet,4 -no,not happening,original,cancel,3 -no,yes that's false,lambada,cancel,3 -date,date tomorrow,parrot,avail,0 -no,the wrong answer,parrot,cancel,3 -yes,certainly,parrot,book,1 -greeting,hello ai,parrot,greet,4 -how_busy,how long would the wait be at the pizza shop?,parrot,avail,0 -yes,positive,parrot,book,1 -no,no way!,original,cancel,3 -no,it is no,original,cancel,3 -how_busy,how busy the restaurant will be?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -no,certainly false,parrot,cancel,3 -no,ill pass,original,cancel,3 -yes,very true,original,book,1 -greeting,hey yai,lambada,greet,4 -how_busy,how long will the wait be at 5pm,lambada,avail,0 -reminder_update,pay taxes on monday,parrot,resched,5 -thank_you,my thanks,parrot,bye,2 -no,it's a negative,parrot,cancel,3 -thank_you,thanks!,original,bye,2 -yes,that is affirmative,original,book,1 -yes,yep,original,book,1 -thank_you,thank you for my response,lambada,bye,2 -reminder_update,make me a reminder,lambada,resched,5 -yes,i'll vote for you,parrot,book,1 -yes,yeah yeah,lambada,book,1 -greeting,hi,original,greet,4 -no,that's totally wrong!,original,cancel,3 -thank_you,you helped me,parrot,bye,2 -how_busy,how long is the wait at cheese cake factory,lambada,avail,0 -no,"please, no",original,cancel,3 -thank_you,okay thank you,parrot,bye,2 -yes,"yes, ai, that is correct",original,book,1 -meeting_schedule,talk to me about all my meetings between now and midnight,parrot,avail,0 -yes,okay,original,book,1 -thank_you,appreciate it,original,bye,2 -how_busy,tell me the time it takes to sit in chili's restaurant,parrot,avail,0 -yes,"yeah, that's it",lambada,book,1 -thank_you,thanks for trying,original,bye,2 -meeting_schedule,what's on my meeting schedule today?,parrot,avail,0 -reminder_update,please remind me to do my chores,parrot,resched,5 -no,"no, definitely not",original,cancel,3 -thank_you,"nice, excellent!",original,bye,2 -yes,"yes, that's accurate",original,book,1 -no,definitely not,original,cancel,3 -thank_you,nice,parrot,bye,2 -goodbye,im leaving,parrot,bye,2 -cancel_reservation,please cancel my reservation in oyster bar,parrot,cancel,3 -date,what date is that?,parrot,avail,0 -yes,accept,parrot,book,1 -no,so that's no,parrot,cancel,3 -no,that's very false,parrot,cancel,3 -no,no good,original,cancel,3 -goodbye,good-bye,parrot,bye,2 -goodbye,goodbye ai,parrot,bye,2 -no,it seems wrong,parrot,cancel,3 -thank_you,again thanks,parrot,bye,2 -goodbye,bye bye then,original,bye,2 -greeting,bonjour,original,greet,4 -how_busy,how busy is jiro at 12 lunch time,original,avail,0 -calendar,please check my calendar to see if my dog has been found,parrot,avail,0 -goodbye,talk later,original,bye,2 -how_busy,how long will i have to wait for a table in chili's,parrot,avail,0 -no,not right,parrot,cancel,3 -thank_you,i appreciate it,original,bye,2 -meeting_schedule,wanna meet with roger,parrot,avail,0 -calendar,do i have appointments for april?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -thank_you,thank a bunch,original,bye,2 -greeting,tell me what you feel?,parrot,greet,4 -reminder_update,remind me to let the plumber in tomorrow,parrot,resched,5 -calendar,how do i plan my calendar for march 5th?,parrot,avail,0 -greeting,you're all right?,parrot,greet,4 -yes,i know,parrot,book,1 -yes,"yes, that is it",original,book,1 -goodbye,bye,original,bye,2 -greeting,wassup,original,greet,4 -no,that's totally wrong,parrot,cancel,3 -greeting,how's everything,original,greet,4 -greeting,salutations!,original,greet,4 -goodbye,", goodbye",lambada,bye,2 -no,it's very false,parrot,cancel,3 -yes,yes,original,book,1 -date,what is today?,original,avail,0 -thank_you,I owe you one,parrot,bye,2 -no,erroneous,parrot,cancel,3 -meeting_schedule,have meetings between 5 and 6 today?,parrot,avail,0 -no,that's a no,lambada,cancel,3 -goodbye,bye-bye,original,bye,2 -yes,say yes,lambada,book,1 -yes,absolutely!,original,book,1 -how_busy,is ian busy around five?,parrot,avail,0 -how_busy,how busy is panera around 6 pm,lambada,avail,0 -greeting,aho,parrot,greet,4 -no,erroneous,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -yes,ok,original,book,1 -thank_you,i'm so grateful,parrot,bye,2 -thank_you,"awesome, thanks",original,bye,2 -yes,certainly,parrot,book,1 -greeting,how's life?,parrot,greet,4 -date,today?,parrot,avail,0 -goodbye,bye!,original,bye,2 -how_busy,how long would it take to sit down at applebees?,parrot,avail,0 -date,can you give me the date?,lambada,avail,0 -goodbye,maybe next time,parrot,bye,2 -no,nada,original,cancel,3 -goodbye,peace out,original,bye,2 -thank_you,your assistance is appreciated,parrot,bye,2 -greeting,how're you today?,parrot,greet,4 -goodbye,bye,original,bye,2 -no,most definitely false,parrot,cancel,3 -goodbye,we chatted well,parrot,bye,2 -goodbye,a good talk,parrot,bye,2 -no,that's not acceptable,parrot,cancel,3 -goodbye,sayonara ,parrot,bye,2 -how_busy,how long will it take to get a table in ihop?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -no,i would prefer not,original,cancel,3 -no,nay,original,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -thank_you,i'm so thankful for my help,parrot,bye,2 -how_busy,is ihop busy?,parrot,avail,0 -greeting,what's happening to you?,parrot,greet,4 -date,what will the date be in 10 days?,original,avail,0 -reminder_update,i must remind myself to get an additional credit card,parrot,resched,5 -no,naw,parrot,cancel,3 -greeting,what's happening,original,greet,4 -thank_you,thanks so much ai,original,bye,2 -yes,my answer is yes,parrot,book,1 -greeting,how is idy?,parrot,greet,4 -yes,"yes, please",parrot,book,1 -how_busy,how busy is ziggy around dinner,parrot,avail,0 -how_busy,waiting for chocolate chip cookies?,parrot,avail,0 -no,certainly false,parrot,cancel,3 -yes,i'm sure that is a fact,lambada,book,1 -reminder_update,remind me later,original,resched,5 -no,negation,parrot,cancel,3 -thank_you,many thanks,original,bye,2 -goodbye,thanks for chatting,lambada,bye,2 -goodbye,greetings,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -yes,huh huh,parrot,book,1 -goodbye,bye-bye,original,bye,2 -no,this is so negative,parrot,cancel,3 -goodbye,later gator!,original,bye,2 -reminder_update,give me a reminder to get my groceries,parrot,resched,5 -how_busy,how long will macaroni grill be for dinner,lambada,avail,0 -goodbye,fairwell,original,bye,2 -calendar,what do you have scheduled for january 14th?,parrot,avail,0 -greeting,what's new,lambada,greet,4 -goodbye,"great chat, talk later",lambada,bye,2 -no,it is indeed false,lambada,cancel,3 -how_busy,what will the restaurant be like between 5 and 7pm?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -yes,great,original,book,1 -yes,absolutely,original,book,1 -yes,huh,parrot,book,1 -goodbye,greetings,parrot,bye,2 -goodbye,goodbye,original,bye,2 -goodbye,buhbye,original,bye,2 -how_busy,how busy will chili be around 7am,parrot,avail,0 -yes,accept,parrot,book,1 -goodbye,farewell!,original,bye,2 -date,today?,parrot,avail,0 -greeting,hello what are you doing?,parrot,greet,4 -yes,yep,original,book,1 -thank_you,so grateful,parrot,bye,2 -yes,yep,original,book,1 -calendar_update,i want the events on my calendar for march 20 2019 cleared,parrot,resched,5 -thank_you,you did it,parrot,bye,2 -greeting,how's life,original,greet,4 -how_busy,is the place busy at 3 pm?,lambada,avail,0 -yes,yes that's it,original,book,1 -yes,yes sir,original,book,1 -goodbye,thank you for the talk,parrot,bye,2 -goodbye,good bye,original,bye,2 -greeting,hey what's up,original,greet,4 -greeting,aho,parrot,greet,4 -goodbye,sign off,parrot,bye,2 -greeting,all right with you?,parrot,greet,4 -no,erroneous,parrot,cancel,3 -schedule_meeting,how can i submit a new meeting request,lambada,book,1 -goodbye,have to go now,parrot,bye,2 -goodbye,cya later,original,bye,2 -no,no!,original,cancel,3 -yes,"yeah that's right, so true",original,book,1 -yes,that's a fact,parrot,book,1 -no,it's a lie,parrot,cancel,3 -yes,confirm,original,book,1 -date,what day will it be tomorrow?,lambada,avail,0 -thank_you,thanks for answering that,lambada,bye,2 -greeting,hi how's it going,lambada,greet,4 -greeting,hey hey!,original,greet,4 -no,nope that's not right,parrot,cancel,3 -goodbye,peace,original,bye,2 -no,that's bad,parrot,cancel,3 -how_busy,is there a wait time at the red lobster?,parrot,avail,0 -yes,affirmative,original,book,1 -greeting,do you feel?,parrot,greet,4 -no,certainly false,parrot,cancel,3 -how_busy,does waiting in olive garden have to be long?,parrot,avail,0 -yes,great,original,book,1 -goodbye,good bye,original,bye,2 -no,FALSE,original,cancel,3 -goodbye,i'm out,parrot,bye,2 -no,don't agree,parrot,cancel,3 -no,is a lie?,parrot,cancel,3 -goodbye,my way,parrot,bye,2 -greeting,hola,original,greet,4 -no,that's a false,lambada,cancel,3 -thank_you,your answer is appreciated,original,bye,2 -calendar,read my calendar events,original,avail,0 -how_busy,how long will the wait be at yosemite?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -reminder_update,remind me later,original,resched,5 -goodbye,good-bye,parrot,bye,2 -goodbye,thank you goodbye,original,bye,2 -goodbye,good-bye,parrot,bye,2 -greeting,heyo,original,greet,4 -goodbye,great talk,lambada,bye,2 -goodbye,goodbye to yours,parrot,bye,2 -thank_you,you're welcome,parrot,bye,2 -goodbye,sayonara ,parrot,bye,2 -goodbye,have to run,parrot,bye,2 -no,please no,parrot,cancel,3 -greeting,how is idy?,parrot,greet,4 -goodbye,goodbye,original,bye,2 -greeting,whats up,original,greet,4 -yes,indeed,original,book,1 -greeting,ahoy,lambada,greet,4 -yes,yay,lambada,book,1 -yes,ya,original,book,1 -greeting,are you doing well?,original,greet,4 -date,the date is today,parrot,avail,0 -yes,good,parrot,book,1 -thank_you,many thank,original,bye,2 -calendar_update,put abc on my calendar for tuesday the 8th,lambada,resched,5 -goodbye,adios,original,bye,2 -greeting,how are you,original,greet,4 -greeting,salutations,parrot,greet,4 -thank_you,many thank,original,bye,2 -yes,TRUE,lambada,book,1 -yes,yay,lambada,book,1 -no,nope,original,cancel,3 -no,that's negative,parrot,cancel,3 -greeting,hi how's my life?,parrot,greet,4 -greeting,hey yai,lambada,greet,4 -greeting,good morning ai,parrot,greet,4 -greeting,i want to know how things have gone,parrot,greet,4 -yes,that is true,lambada,book,1 -yes,"yes, that is true",original,book,1 -cancel_reservation,please cancel my reservation for the steak house,parrot,cancel,3 -goodbye,goodbye ai,parrot,bye,2 -yes,agreed,original,book,1 -greeting,hello there,original,greet,4 -yes,good,parrot,book,1 -thank_you,thankyou,parrot,bye,2 -greeting,hey fellows,parrot,greet,4 -schedule_meeting,can you schedule a meeting with matt for 3?,original,book,1 -goodbye,great chat goodbye,lambada,bye,2 -greeting,hello ai,parrot,greet,4 -yes,indeed,original,book,1 -goodbye,i want to see you,parrot,bye,2 -goodbye,the pleasure was to talk to you,parrot,bye,2 -date,what date is tomorrow,parrot,avail,0 -thank_you,i'm thankful,original,bye,2 -yes,yeah yeah,lambada,book,1 -greeting,how's life?,parrot,greet,4 -goodbye,goodbye later,parrot,bye,2 -date,in 10 days?,parrot,avail,0 -date,do you know what's the date?,parrot,avail,0 -greeting,what's my feeling?,parrot,greet,4 -thank_you,thanks!,original,bye,2 -goodbye,great talk,lambada,bye,2 -yes,that's a fact,lambada,book,1 -no,that isn't true,lambada,cancel,3 -meeting_schedule,meetings today,original,avail,0 -no,no?,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -no,thanks no,parrot,cancel,3 -how_busy,is mexico crowded at night?,parrot,avail,0 -no,certainly not,original,cancel,3 -goodbye,goodnight,original,bye,2 -how_busy,what's the crowd at the red lobster around 830?,parrot,avail,0 -yes,i want to confirm it,parrot,book,1 -greeting,aho,parrot,greet,4 -goodbye,on the road,parrot,bye,2 -greeting,hi,original,greet,4 -yes,yay,lambada,book,1 -goodbye,it was nice to talk with you,lambada,bye,2 -goodbye,very nice conversation,parrot,bye,2 -goodbye,sayonara,original,bye,2 -how_busy,what's the table wait at applebees,original,avail,0 -thank_you,"great, thanks!",original,bye,2 -goodbye,goodbye to yours,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -yes,definitely,original,book,1 -how_busy,how long will i have to wait at the immaculate steakhouse?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -date,today?,parrot,avail,0 -date,what's the day now??,parrot,avail,0 -yes,yup,original,book,1 -calendar,did i put a repair date on my calendar?,parrot,avail,0 -date,what date today?,parrot,avail,0 -how_busy,would i be able to get a seat at chilis between 11:00 am and 2:00 pm,lambada,avail,0 -yes,ya,original,book,1 -yes,yeah,original,book,1 -greeting,what's going on,original,greet,4 -greeting,hiya!,original,greet,4 -thank_you,thanks,original,bye,2 -date,what's my tomorrow date?,parrot,avail,0 -reminder_update,please remember something,parrot,resched,5 -date,in seven days?,parrot,avail,0 -greeting,"hello, friend",original,greet,4 -goodbye,the talk was nice,lambada,bye,2 -no,not correct,parrot,cancel,3 -greeting,how's the ayi doing?,parrot,greet,4 -no,naw,parrot,cancel,3 -greeting,hello good morning,parrot,greet,4 -yes,absolutely,original,book,1 -yes,10-Apr,original,book,1 -no,nada,original,cancel,3 -thank_you,very grateful,parrot,bye,2 -yes,that is not false,original,book,1 -no,false sure,parrot,cancel,3 -greeting,hiya!,original,greet,4 -goodbye,send a goodbye,lambada,bye,2 -goodbye,adios,original,bye,2 -yes,agreed,original,book,1 -no,not good,parrot,cancel,3 -greeting,hello,original,greet,4 -calendar,show me the calendar?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -date,what day is it today,parrot,avail,0 -goodbye,just relax,parrot,bye,2 -no,no!,original,cancel,3 -yes,yay,lambada,book,1 -yes,say positive,parrot,book,1 -no,if i don't think it's true i'd say it's a false statement,parrot,cancel,3 -goodbye,adios!,original,bye,2 -goodbye,bye,original,bye,2 -yes,it's positive,parrot,book,1 -greeting,how does it go?,parrot,greet,4 -thank_you,you're welcome,parrot,bye,2 -goodbye,", goodbye",lambada,bye,2 -thank_you,thankyou,parrot,bye,2 -yes,"yes, that's right",original,book,1 -goodbye,bye-bye,original,bye,2 -goodbye,nice to see you,original,bye,2 -goodbye,goodbye now,parrot,bye,2 -goodbye,tootles,original,bye,2 -yes,positive,parrot,book,1 -greeting,hey there,original,greet,4 -yes,it is true,original,book,1 -meeting_schedule,when is my next meeting with kevin?,parrot,avail,0 -yes,yep,original,book,1 -reminder_update,remind me to pay my taxes,parrot,resched,5 -yes,truthful is my answer,lambada,book,1 -meeting_schedule,are there any meetings on my calendar?,lambada,avail,0 -schedule_meeting,how can i book a meeting,lambada,book,1 -meeting_schedule,is there a time for my meeting with marketing?,parrot,avail,0 -yes,that makes sense,lambada,book,1 -reminder_update,i would like to remind you to clean the bathroom in the morning,parrot,resched,5 -yes,yup,original,book,1 -goodbye,i'll be on the road,parrot,bye,2 -yes,TRUE,original,book,1 -greeting,hiya!,original,greet,4 -date,which day in a month is the first day of a month in 5 days?,parrot,avail,0 -how_busy,what's the wait time at the olive garden today?,parrot,avail,0 -goodbye,you're done,parrot,bye,2 -goodbye,this conversation was pleasant,parrot,bye,2 -how_busy,is ziggy busy around dinner?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -yes,that'd be great,parrot,book,1 -yes,please let's do that,parrot,book,1 -yes,confirmed,original,book,1 -how_busy,what's the wait like at olive garden,lambada,avail,0 -yes,positive,parrot,book,1 -greeting,what's happening?,parrot,greet,4 -greeting,what's happening?,parrot,greet,4 -yes,uh huh,original,book,1 -yes,sure,original,book,1 -yes,absolutely!,original,book,1 -no,invalid,original,cancel,3 -no,absolutely not,original,cancel,3 -greeting,hiya,original,greet,4 -yes,"yup, that's true",original,book,1 -cancel_reservation,delete my dinner reservation,parrot,cancel,3 -yes,right,parrot,book,1 -goodbye,wonderful conversation,lambada,bye,2 -no,so it's not possible,parrot,cancel,3 -how_busy,is tiaras usually crowded around 7pm?,lambada,avail,0 -no,it's negative,parrot,cancel,3 -greeting,hi how's the situation?,parrot,greet,4 -no,not a good idea,parrot,cancel,3 -schedule_meeting,can you arrange a meeting?,parrot,book,1 -no,FALSE,original,cancel,3 -goodbye,goodnight,original,bye,2 -yes,huh,parrot,book,1 -greeting,why hello?,original,greet,4 -calendar_update,please delete a certain meeting,parrot,resched,5 -date,where is the date tomorrow?,parrot,avail,0 -thank_you,thank you ai,parrot,bye,2 -date,what year is it tomorrow?,parrot,avail,0 -meeting_schedule,when are my meetings?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -date,what the day is?,parrot,avail,0 -goodbye,later goodbye,parrot,bye,2 -date,do you have my date?,parrot,avail,0 -no,i think that's a lie,parrot,cancel,3 -yes,approved,original,book,1 -no,so that's no,parrot,cancel,3 -no,nada,original,cancel,3 -greeting,hey fellows,parrot,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -yes,yeah yeah,lambada,book,1 -no,the information is inaccurate,parrot,cancel,3 -goodbye,buhbye now,lambada,bye,2 -date,tell me the day of the month we are?,parrot,avail,0 -yes,that checks out,original,book,1 -how_busy,what's the seating time in the restaurant?,parrot,avail,0 -thank_you,you made me aware,parrot,bye,2 -no,i dont think it's right,parrot,cancel,3 -greeting,"hey, what's new",original,greet,4 -meeting_schedule,when do you meet roger?,parrot,avail,0 -how_busy,how busy are orchids at 7?,parrot,avail,0 -calendar_update,i want you to cancel the event on march 14,lambada,resched,5 -thank_you,i'm grateful,original,bye,2 -meeting_schedule,when is my meeting with dan scheduled for?,original,avail,0 -no,hell nah,original,cancel,3 -greeting,"hello, ai",original,greet,4 -date,what day is that?,parrot,avail,0 -thank_you,well done,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -meeting_schedule,what is the meeting schedule?,lambada,avail,0 -goodbye,say goodbye,parrot,bye,2 -thank_you,you've tried,parrot,bye,2 -yes,"yep, let's do that",lambada,book,1 -yes,i think you're right,parrot,book,1 -date,in 14 days?,parrot,avail,0 -yes,that's absolutely true,parrot,book,1 -yes,affirmitive,original,book,1 -how_busy,how long will it take to eat at olive garden,lambada,avail,0 -no,invalid,original,cancel,3 -no,this statement is false,parrot,cancel,3 -thank_you,thanks so much,original,bye,2 -greeting,"hi, how are you today",original,greet,4 -thank_you,thankyou,parrot,bye,2 -no,negative certainly,parrot,cancel,3 -thank_you,i'm thankful,original,bye,2 -greeting,heyo,original,greet,4 -how_busy,wait time at the fenway park is there a long wait?,parrot,avail,0 -no,negatory,original,cancel,3 -yes,TRUE,lambada,book,1 -thank_you,it pleased me,parrot,bye,2 -yes,it is true,original,book,1 -no,but that's not true?,parrot,cancel,3 -reminder_update,i want to set a reminder for my check,parrot,resched,5 -no,thanks no,parrot,cancel,3 -how_busy,can you tell me how busy olive garden is at noon?,parrot,avail,0 -yes,all right,original,book,1 -no,not true,original,cancel,3 -greeting,welcome,parrot,greet,4 -no,not right,parrot,cancel,3 -yes,good yes,lambada,book,1 -yes,yes,original,book,1 -how_busy,how long will i have to wait at cheesecake factory,original,avail,0 -schedule_meeting,i want to meet in blue room on friday,parrot,book,1 -thank_you,you answered,parrot,bye,2 -yes,yay,lambada,book,1 -date,what is the month of the year?,lambada,avail,0 -how_busy,how busy is igor at 8 o'clock?,parrot,avail,0 -cancel_reservation,please cancel my reservation for the steakhouse,lambada,cancel,3 -how_busy,is mcdonalds busy?,parrot,avail,0 -date,what day is today,parrot,avail,0 -schedule_meeting,is there a room available between 11am and 12pm?,parrot,book,1 -goodbye,i’m leaving-goodbye!,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -goodbye,bye,original,bye,2 -yes,my answer is yes,parrot,book,1 -reminder_update,i need to remember you,parrot,resched,5 -cancel_reservation,i booked chris at tony's please cancel it,parrot,cancel,3 -yes,confirmed,original,book,1 -greeting,i'd like to know how you're doing,parrot,greet,4 -reminder_update,make a new reminder to study for my final exams,parrot,resched,5 -yes,yeah yeah,lambada,book,1 -yes,yep,original,book,1 -thank_you,"good job, thanks",lambada,bye,2 -how_busy,does applebee have a busy wait time at 5?,parrot,avail,0 -yes,10-Apr,original,book,1 -goodbye,goodbye goodbye,parrot,bye,2 -calendar_update,i would like you to cancel the event on march 18,lambada,resched,5 -no,it's false,parrot,cancel,3 -reminder_update,put a reminder for lunch at 10 am,parrot,resched,5 -no,not really,original,cancel,3 -meeting_schedule,have to find time to do all the meetings on my schedule,parrot,avail,0 -date,what is tomorrow?,parrot,avail,0 -yes,yup,original,book,1 -goodbye,afterward,parrot,bye,2 -how_busy,how long do i have to wait in the pizza factory?,parrot,avail,0 -yes,right,parrot,book,1 -greeting,what's new?,parrot,greet,4 -no,nothing good,parrot,cancel,3 -greeting,aloha,original,greet,4 -greeting,heyo,original,greet,4 -reminder_update,put the steaks on the grill remind me to check them at the right time,parrot,resched,5 -date,what day of the month will it be in 5 days?,parrot,avail,0 -greeting,hey yai,lambada,greet,4 -yes,obviously,parrot,book,1 -goodbye,adios,original,bye,2 -schedule_meeting,please reserve me a meeting room on thursday at 12:00 pm,lambada,book,1 -greeting,wassup,original,greet,4 -yes,"affirmative, go ahead",original,book,1 -no,negative definitely,parrot,cancel,3 -thank_you,thank you for everything,parrot,bye,2 -how_busy,do you think the longhorn steakhouse will be busy at 5 o'clock?,parrot,avail,0 -no,invalid,original,cancel,3 -how_busy,does kimura steakhouse have a lot of customers around 6:30?,lambada,avail,0 -date,what year is tomorrow?,parrot,avail,0 -no,that's absolutely false,parrot,cancel,3 -how_busy,check how busy the cheesecake factory is,parrot,avail,0 -goodbye,goodbye later,parrot,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -thank_you,okay thank you,parrot,bye,2 -greeting,hi what's up?,parrot,greet,4 -greeting,is everything going okay?,original,greet,4 -greeting,you're all right?,parrot,greet,4 -how_busy,waiting at cheeseburgers?,parrot,avail,0 -no,not true,original,cancel,3 -thank_you,thank you!,original,bye,2 -yes,yeah yeah,lambada,book,1 -yes,uh-huh,original,book,1 -goodbye,"syonara, ai device!",original,bye,2 -goodbye,later!,original,bye,2 -date,is today a date?,parrot,avail,0 -yes,say positive,parrot,book,1 -greeting,bonjour,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,correct,original,book,1 -yes,good yes,lambada,book,1 -goodbye,i'll leave now,parrot,bye,2 -yes,that would be great,original,book,1 -no,negative,original,cancel,3 -greeting,whats up,original,greet,4 -greeting,how did you feel?,parrot,greet,4 -no,you're not right,parrot,cancel,3 -schedule_meeting,it needs a schedule and i need to know how,parrot,book,1 -no,naw,original,cancel,3 -greeting,how is life?,parrot,greet,4 -thank_you,awesome thanks,parrot,bye,2 -no,nothing,parrot,cancel,3 -goodbye,fairwell,original,bye,2 -thank_you,thankyou,parrot,bye,2 -no,please disagree,lambada,cancel,3 -greeting,heller,original,greet,4 -greeting,how's everything?,parrot,greet,4 -thank_you,thanks!,original,bye,2 -thank_you,i would like to thank you,original,bye,2 -no,no thank you,original,cancel,3 -goodbye,tootles?,parrot,bye,2 -no,negating,parrot,cancel,3 -goodbye,ai goodbye,original,bye,2 -no,that would be incorrect,lambada,cancel,3 -thank_you,thanks for helping,original,bye,2 -cancel_reservation,get rid of my reservation at 4pm please,parrot,cancel,3 -greeting,aloha,original,greet,4 -reminder_update,let me know,parrot,resched,5 -how_busy,how long would the wait in the restaurant be?,parrot,avail,0 -greeting,"hello, hello, hello",lambada,greet,4 -yes,yes,original,book,1 -no,i must say no,original,cancel,3 -thank_you,you've given me it,parrot,bye,2 -date,date tomorrow,parrot,avail,0 -greeting,aloha,original,greet,4 -yes,"yes, please",parrot,book,1 -how_busy,how long will the wait be at noon if we go to nagomi?,parrot,avail,0 -thank_you,I owe you one,parrot,bye,2 -no,that's not the truth,parrot,cancel,3 -how_busy,how long will it take to get seated at the kitchen sink,lambada,avail,0 -goodbye,adios!,original,bye,2 -calendar_update,add my next doctor visit to my calendar,original,resched,5 -goodbye,the hell i'm out,parrot,bye,2 -date,is tomorrow's date?,parrot,avail,0 -meeting_schedule,what are my meetings today?,original,avail,0 -no,that's false,original,cancel,3 -yes,accepted,original,book,1 -yes,positive,parrot,book,1 -no,no way,original,cancel,3 -goodbye,goodbye!,original,bye,2 -goodbye,peace,original,bye,2 -no,erroneous,parrot,cancel,3 -reminder_update,come on please,parrot,resched,5 -yes,"yes, that is accurate",original,book,1 -greeting,hey,original,greet,4 -goodbye,farewell,original,bye,2 -goodbye,see ya,original,bye,2 -greeting,good day,original,greet,4 -thank_you,okay thanks,original,bye,2 -goodbye,fairwell,original,bye,2 -thank_you,thank you for that,lambada,bye,2 -thank_you,glad you helped me,parrot,bye,2 -no,no thanks,original,cancel,3 -calendar,if there's a march schedule for me let me know,parrot,avail,0 -yes,it is a yes from me,parrot,book,1 -how_busy,how long does the restaurant sit?,parrot,avail,0 -reminder_update,please remind me later,original,resched,5 -date,would you let me know today's date,original,avail,0 -yes,accepted,original,book,1 -greeting,whats up?,parrot,greet,4 -yes,ok,original,book,1 -cancel_reservation,the reservation for 20 at ihop is no longer necessary,parrot,cancel,3 -meeting_schedule,what is my schedule today?,parrot,avail,0 -goodbye,nice talking to you,parrot,bye,2 -meeting_schedule,when is my meeting?,parrot,avail,0 -thank_you,very grateful,parrot,bye,2 -greeting,heyo,original,greet,4 -schedule_meeting,are there meeting rooms available between 9 and 11?,parrot,book,1 -yes,yep,original,book,1 -no,no,lambada,cancel,3 -date,what's the year?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -goodbye,bye for now,original,bye,2 -greeting,how life treats you?,parrot,greet,4 -goodbye,buhbye,original,bye,2 -yes,yes,original,book,1 -how_busy,how long will i need to wait to get a table at angels wing,lambada,avail,0 -greeting,hey how's it hanging,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,yeah,original,book,1 -greeting,hey yai,lambada,greet,4 -no,naw,original,cancel,3 -yes,definitely,original,book,1 -date,in 7 days?,parrot,avail,0 -no,don't like that,parrot,cancel,3 -cancel_reservation,cancel dinner reservation tonight,parrot,cancel,3 -cancel_reservation,my reservation for dinner was cancelled,parrot,cancel,3 -goodbye,good bye,original,bye,2 -yes,absolutely!,original,book,1 -yes,oh-huh,parrot,book,1 -meeting_schedule,give a summary of today's meetings?,parrot,avail,0 -no,not necessarily true,parrot,cancel,3 -no,i don't think it's appropriate,parrot,cancel,3 -no,it's absolutely false,parrot,cancel,3 -yes,definitely,original,book,1 -greeting,how is my current situation,lambada,greet,4 -no,that's so negative,parrot,cancel,3 -yes,positive,parrot,book,1 -yes,"yes, please",parrot,book,1 -no,negation,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -goodbye,goodbye for now ai,original,bye,2 -calendar,what do i have on my calendar for february 8?,original,avail,0 -thank_you,gracias,original,bye,2 -no,it's no,parrot,cancel,3 -no,ill pass,original,cancel,3 -greeting,hello there,original,greet,4 -meeting_schedule,when's the meeting with kara,parrot,avail,0 -goodbye,great conversation,parrot,bye,2 -thank_you,thanks for my assistance,parrot,bye,2 -no,that's so wrong,parrot,cancel,3 -meeting_schedule,please tell me my scheduled meetings for today only?,parrot,avail,0 -goodbye,glad we've got to talk,parrot,bye,2 -greeting,hey how are you feeling?,parrot,greet,4 -greeting,hiya!,original,greet,4 -goodbye,the talk was nice,lambada,bye,2 -greeting,"why, hello bandit",original,greet,4 -thank_you,appreciated,original,bye,2 -how_busy,wait how long?,parrot,avail,0 -thank_you,i appreciate your assistance,parrot,bye,2 -goodbye,i'll be out of here,lambada,bye,2 -yes,correct,original,book,1 -goodbye,goodbye,original,bye,2 -meeting_schedule,do i have any meetings today between 4 and 5?,original,avail,0 -meeting_schedule,"for today only, what meetings are on my calendar",lambada,avail,0 -reminder_update,remind me,original,resched,5 -yes,positive,parrot,book,1 -how_busy,how long will the wait at chili's be around 5pm,parrot,avail,0 -no,it's no,parrot,cancel,3 -greeting,hey there!,original,greet,4 -goodbye,goodbye to you,original,bye,2 -yes,"yes, that's true",lambada,book,1 -no,negatory,original,cancel,3 -calendar,let me know what my calendar shows for march 28th?,parrot,avail,0 -goodbye,later gater,original,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -yes,affirmitive,original,book,1 -goodbye,have to go,parrot,bye,2 -goodbye,"thanks for chatting, bye",lambada,bye,2 -yes,you are yes,lambada,book,1 -greeting,welcome,parrot,greet,4 -no,FALSE,lambada,cancel,3 -calendar_update,remove the date of the birthday party from my calendar,lambada,resched,5 -yes,TRUE,lambada,book,1 -reminder_update,let me remember,parrot,resched,5 -reminder_update,let me remember,parrot,resched,5 -how_busy,the wait time for a table in the olive garden will be 12,parrot,avail,0 -thank_you,thanks!,original,bye,2 -no,no?,parrot,cancel,3 -goodbye,this conversation was wonderful,parrot,bye,2 -yes,uh-huh,original,book,1 -yes,say positive,parrot,book,1 -yes,yeah yeah,lambada,book,1 -greeting,how's ai feeling?,parrot,greet,4 -goodbye,tootles?,parrot,bye,2 -greeting,well hi there,original,greet,4 -yes,positive,original,book,1 -greeting,how's ai doing?,parrot,greet,4 -yes,accepted,original,book,1 -no,that's wrong,original,cancel,3 -no,but not right now,parrot,cancel,3 -how_busy,what is the current waittime at cheerios?,lambada,avail,0 -goodbye,glad we talked,parrot,bye,2 -no,nay,original,cancel,3 -greeting,all right now?,parrot,greet,4 -calendar,show me something in my calendar for a scheduled service appointment?,parrot,avail,0 -goodbye,later gator!,original,bye,2 -calendar,could you let me know if i have any events on my calendar for saturday,lambada,avail,0 -goodbye,peace,original,bye,2 -goodbye,bye!,original,bye,2 -goodbye,have fun?,lambada,bye,2 -meeting_schedule,do i meet with joan today?,original,avail,0 -calendar,list the appointments on my calendar for march 10th?,parrot,avail,0 -goodbye,"thanks, bye",original,bye,2 -how_busy,how many people are at chili's around 9 pm,lambada,avail,0 -goodbye,tootles?,parrot,bye,2 -yes,positive,original,book,1 -date,please share today's date,original,avail,0 -date,what date is tomorrow?,original,avail,0 -greeting,hiya,original,greet,4 -goodbye,i enjoy our conversation,parrot,bye,2 -meeting_schedule,what time is my meeting scheduled?,parrot,avail,0 -meeting_schedule,do i have any meetings with kim today?,lambada,avail,0 -date,what year?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -thank_you,thanks again,original,bye,2 -date,what year is this?,parrot,avail,0 -greeting,hola!,original,greet,4 -no,that's no,parrot,cancel,3 -greeting,how's everything?,parrot,greet,4 -yes,all right,parrot,book,1 -yes,definitely,original,book,1 -yes,agreed,original,book,1 -thank_you,thanks again!,original,bye,2 -yes,that is true,lambada,book,1 -yes,okay,original,book,1 -thank_you,thanks for responding,parrot,bye,2 -goodbye,bye!,original,bye,2 -thank_you,merci beaucoup,original,bye,2 -yes,10-Apr,original,book,1 -goodbye,have a good one?,original,bye,2 -yes,definitely,original,book,1 -calendar,tell me my calendar?,parrot,avail,0 -yes,accepted,original,book,1 -calendar,what's tuesday's calendar?,parrot,avail,0 -date,i have to know the date tomorrow,parrot,avail,0 -meeting_schedule,meeting today,parrot,avail,0 -date,today?,parrot,avail,0 -greeting,have you been good?,original,greet,4 -how_busy,what's the wait time at the chipotle steak house?,parrot,avail,0 -goodbye,i'll leave,parrot,bye,2 -goodbye,sayonara,original,bye,2 -greeting,hiya,original,greet,4 -greeting,hiya,original,greet,4 -greeting,how's idy?,parrot,greet,4 -yes,great,original,book,1 -calendar_update,cancel the event on 23 february,parrot,resched,5 -goodbye,fairwell?,parrot,bye,2 -goodbye,goodbye now,parrot,bye,2 -no,not happening,original,cancel,3 -goodbye,enjoy my day goodbye,parrot,bye,2 -no,invalid,original,cancel,3 -yes,accepted,original,book,1 -no,FALSE,original,cancel,3 -yes,facts,original,book,1 -goodbye,peace out!,original,bye,2 -thank_you,good job helping me,parrot,bye,2 -meeting_schedule,are we scheduled to meet today between 7 and 9?,parrot,avail,0 -goodbye,cya later,original,bye,2 -yes,"yup, that's true",original,book,1 -yes,thats right,original,book,1 -greeting,hey,original,greet,4 -yes,approved,original,book,1 -yes,sure thing,original,book,1 -calendar_update,eliminate all calendar entries on april 13,parrot,resched,5 -goodbye,talk later,original,bye,2 -thank_you,my thanks,parrot,bye,2 -goodbye,bye,original,bye,2 -greeting,"hello, friend",original,greet,4 -thank_you,thank you!,original,bye,2 -yes,you're right,original,book,1 -meeting_schedule,meetings today,original,avail,0 -date,answer the question 'what's the date today,parrot,avail,0 -yes,not a lie,parrot,book,1 -goodbye,talk to me soon,parrot,bye,2 -how_busy,can you tell me if mr joe's steakhouse is busy at 5?,parrot,avail,0 -goodbye,bye,original,bye,2 -goodbye,i'm out,parrot,bye,2 -thank_you,good job,lambada,bye,2 -no,that's so negative,parrot,cancel,3 -thank_you,thanks for helping me,original,bye,2 -goodbye,i enjoyed our goodbye talk,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -greeting,"hello, friend",original,greet,4 -greeting,aloha,original,greet,4 -how_busy,how busy is imanas?,parrot,avail,0 -greeting,salutations!,original,greet,4 -yes,sure thing,original,book,1 -thank_you,okay thank you,parrot,bye,2 -no,negation,parrot,cancel,3 -thank_you,my sincere gratitude,parrot,bye,2 -greeting,how the car is doing?,parrot,greet,4 -yes,right,parrot,book,1 -no,no!,original,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,that's true,original,book,1 -schedule_meeting,i need help with setting a meeting,parrot,book,1 -yes,"yes, please",parrot,book,1 -no,but certainly not,parrot,cancel,3 -goodbye,"later, good luck",lambada,bye,2 -thank_you,thanks for my reply,parrot,bye,2 -yes,is true,parrot,book,1 -goodbye,fairwell?,parrot,bye,2 -no,not correct,parrot,cancel,3 -thank_you,a million thanks,parrot,bye,2 -calendar,do i have any appointments on my calendar march 22nd?,original,avail,0 -reminder_update,reminder to pay my taxes on saturday,parrot,resched,5 -greeting,hi how's it going?,parrot,greet,4 -yes,oh yes,original,book,1 -no,nay,original,cancel,3 -greeting,show me what's new,parrot,greet,4 -yes,perfect,parrot,book,1 -thank_you,you're welcome,parrot,bye,2 -thank_you,i'm grateful,original,bye,2 -goodbye,goodbye now,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -yes,yup,original,book,1 -no,nothing good,parrot,cancel,3 -yes,i know it's true,parrot,book,1 -greeting,ahoy there,lambada,greet,4 -greeting,hey,original,greet,4 -calendar_update,make sure june 1 is cleared on my calendar,lambada,resched,5 -goodbye,peace out!,original,bye,2 -yes,i just said it,parrot,book,1 -no,that's totally false,parrot,cancel,3 -no,naw,parrot,cancel,3 -goodbye,good bye then,original,bye,2 -goodbye,fairwell,original,bye,2 -calendar,can you tell me what's on my calendar for march 31?,parrot,avail,0 -greeting,please tell me how you're feeling?,parrot,greet,4 -no,"nope, that's false",original,cancel,3 -greeting,hey bs,lambada,greet,4 -how_busy,how long will i need to wait to get a table at ehi's,lambada,avail,0 -thank_you,thanks very much for your answer,parrot,bye,2 -no,no?,parrot,cancel,3 -cancel_reservation,this is not required anymore,parrot,cancel,3 -greeting,hello there!,original,greet,4 -goodbye,bye-bye,original,bye,2 -how_busy,how busy is mishawaka?,parrot,avail,0 -calendar_update,i need to put down that i have an appointment for tomorrow on my calendar,lambada,resched,5 -no,it's overwhelmingly negative,parrot,cancel,3 -no,that isn't what we want,lambada,cancel,3 -meeting_schedule,when's my meeting?,parrot,avail,0 -calendar,can you show me my schedule?,parrot,avail,0 -goodbye,no problem goodbye,parrot,bye,2 -greeting,hiya!,original,greet,4 -yes,"yes, that's correct",original,book,1 -no,it's not necessarily true,parrot,cancel,3 -greeting,how goes it,original,greet,4 -thank_you,thanks for that!,original,bye,2 -greeting,hello good morning,parrot,greet,4 -yes,confirm,original,book,1 -no,erroneous,parrot,cancel,3 -yes,yay,lambada,book,1 -greeting,hey how are you,lambada,greet,4 -no,negatory,original,cancel,3 -no,it's a mistake,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -thank_you,thanks for trying,original,bye,2 -no,no!,original,cancel,3 -how_busy,how many people go to chili's around 9pm,original,avail,0 -calendar,please see my calendar,parrot,avail,0 -greeting,yo,original,greet,4 -cancel_reservation,i need to cancel my reservation for sam at umami,lambada,cancel,3 -no,it's a very bad answer,parrot,cancel,3 -date,date please,original,avail,0 -no,no that's not true,parrot,cancel,3 -no,i mean no,parrot,cancel,3 -how_busy,how long is the wait at chili?,parrot,avail,0 -no,but no way?,parrot,cancel,3 -greeting,ahoy,lambada,greet,4 -greeting,whats up?,parrot,greet,4 -greeting,how's my family doing?,parrot,greet,4 -yes,correct,original,book,1 -calendar,what is the tuesday calendar?,parrot,avail,0 -greeting,is everything going okay?,original,greet,4 -meeting_schedule,share my schedule with me,parrot,avail,0 -no,no good,original,cancel,3 -thank_you,thanks for answering,parrot,bye,2 -reminder_update,reminder of the gas bill,parrot,resched,5 -calendar,what's on the calendar for march 4th,original,avail,0 -no,negating,parrot,cancel,3 -no,no that is not correct,lambada,cancel,3 -goodbye,peace,original,bye,2 -no,false sure,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -yes,uh-huh,original,book,1 -greeting,hola!,original,greet,4 -goodbye,goodbye,original,bye,2 -no,erroneous,parrot,cancel,3 -date,please explain today,parrot,avail,0 -how_busy,how busy is olive garden around dinner,lambada,avail,0 -yes,accept,parrot,book,1 -thank_you,you answered,parrot,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -calendar_update,show the best ways to remove an appointment?,parrot,resched,5 -meeting_schedule,check out what meetings i've scheduled,parrot,avail,0 -greeting,hello what's up?,parrot,greet,4 -thank_you,thanks again,original,bye,2 -no,that is no,lambada,cancel,3 -thank_you,thanks again!,original,bye,2 -greeting,hola!,original,greet,4 -yes,"yes, that is factual",original,book,1 -greeting,hello there,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -no,negation,parrot,cancel,3 -thank_you,thank you for helping,parrot,bye,2 -thank_you,you answered,parrot,bye,2 -greeting,hi,original,greet,4 -no,FALSE,lambada,cancel,3 -thank_you,my gratitude,parrot,bye,2 -yes,perfect,parrot,book,1 -yes,"yes, please",parrot,book,1 -date,today?,parrot,avail,0 -calendar,please check my calendar for march 17,parrot,avail,0 -yes,agreed,original,book,1 -no,no?,parrot,cancel,3 -goodbye,bye,original,bye,2 -no,negatory,original,cancel,3 -no,not happening,original,cancel,3 -date,date tomorrow,parrot,avail,0 -no,no way,original,cancel,3 -no,no it's not right,parrot,cancel,3 -greeting,hello how's it going?,parrot,greet,4 -meeting_schedule,what meetings do i have planned for today?,lambada,avail,0 -goodbye,lovely conversation,parrot,bye,2 -yes,i can confirm,parrot,book,1 -no,no good,original,cancel,3 -greeting,nice day,lambada,greet,4 -yes,i guess,parrot,book,1 -goodbye,later thanks for talking,parrot,bye,2 -goodbye,glad we talked,parrot,bye,2 -reminder_update,"new reminder, please",original,resched,5 -how_busy,how busy is chili's around noon,lambada,avail,0 -yes,sure thing,original,book,1 -no,FALSE,lambada,cancel,3 -greeting,hola!,original,greet,4 -yes,good,parrot,book,1 -no,that's absolutely false,parrot,cancel,3 -meeting_schedule,when is homer's meeting?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -yes,"yes, please",original,book,1 -greeting,how's that hanging?,parrot,greet,4 -no,nay,original,cancel,3 -thank_you,you helped me out,parrot,bye,2 -yes,10-Apr,original,book,1 -goodbye,farewell,original,bye,2 -how_busy,tell me how busy miami marriott will be at 5 pm,parrot,avail,0 -no,nada,original,cancel,3 -date,today?,parrot,avail,0 -goodbye,a good conversation,parrot,bye,2 -yes,certainly true,parrot,book,1 -reminder_update,keep me in mind,parrot,resched,5 -thank_you,thanks for that,original,bye,2 -greeting,hey fellow,parrot,greet,4 -how_busy,will the restaurant fill up,parrot,avail,0 -date,today?,parrot,avail,0 -yes,yeap,original,book,1 -yes,oh yes,original,book,1 -no,nada,original,cancel,3 -thank_you,good job thanks,parrot,bye,2 -yes,yeap,original,book,1 -meeting_schedule,what meetings do you have for today?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -date,what's today's date,original,avail,0 -no,but it's not factual,parrot,cancel,3 -thank_you,you're a great help,parrot,bye,2 -greeting,hola!,original,greet,4 -greeting,how're you doing?,parrot,greet,4 -date,date tomorrow,parrot,avail,0 -goodbye,nice conversation today,parrot,bye,2 -reminder_update,i need to be reminded to pray,original,resched,5 -goodbye,cya later,original,bye,2 -no,nothing,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -date,do you know what is the current date?,parrot,avail,0 -how_busy,how long will i have to wait at mr joes,lambada,avail,0 -goodbye,i leave now,parrot,bye,2 -no,absolutely false,parrot,cancel,3 -thank_you,i'm thankful for my help,original,bye,2 -no,so that's no,parrot,cancel,3 -how_busy,is the wait long?,parrot,avail,0 -goodbye,glad to talk,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -reminder_update,i have to remind myself to pay taxes,parrot,resched,5 -yes,"yup, that is true",lambada,book,1 -goodbye,goodbye!,original,bye,2 -yes,certainly,parrot,book,1 -yes,great,original,book,1 -how_busy,how long will the wait for a table be at this restaurant,lambada,avail,0 -yes,huh huh,parrot,book,1 -yes,i want that,parrot,book,1 -how_busy,list the wait times for a meal at a restaurant?,parrot,avail,0 -no,no way,original,cancel,3 -thank_you,thank you for making my life easier,parrot,bye,2 -reminder_update,add a reminder for me?,parrot,resched,5 -no,that is no longer valid,lambada,cancel,3 -goodbye,goodbye later,parrot,bye,2 -thank_you,you've helped,parrot,bye,2 -no,that's very wrong,parrot,cancel,3 -how_busy,how busy will ti-noodle be around 6pm?,parrot,avail,0 -how_busy,how busy will the chili's be at 6pm,lambada,avail,0 -how_busy,is the cheesecake factory busy at 9 o'clock?,parrot,avail,0 -no,it's no,parrot,cancel,3 -yes,definitely,original,book,1 -goodbye,bye,original,bye,2 -yes,oh-huh,parrot,book,1 -greeting,heyo,original,greet,4 -goodbye,regards,original,bye,2 -date,this is the day,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,so that's no,parrot,cancel,3 -date,what date?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -no,negation,parrot,cancel,3 -thank_you,gracias,original,bye,2 -thank_you,i appreciate the answer,parrot,bye,2 -goodbye,bye!,original,bye,2 -yes,definitely,original,book,1 -meeting_schedule,share my schedule with me,parrot,avail,0 -yes,huh,parrot,book,1 -date,what the day?,parrot,avail,0 -goodbye,i'm out,parrot,bye,2 -cancel_reservation,i must cancel my reservation for barry in red robin,parrot,cancel,3 -no,not right,parrot,cancel,3 -yes,yup,original,book,1 -yes,TRUE,original,book,1 -schedule_meeting,set up meeting room for 9am on friday,parrot,book,1 -how_busy,can you tell me what the wait is like at olive garden right now?,lambada,avail,0 -date,today?,parrot,avail,0 -meeting_schedule,when is that meeting with kara?,original,avail,0 -date,what day?,parrot,avail,0 -greeting,"hi, ai",original,greet,4 -yes,it appears true,parrot,book,1 -thank_you,okay thanks,original,bye,2 -no,that's false,original,cancel,3 -how_busy,does the olive garden get crowded during the meal?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -goodbye,catch you later,original,bye,2 -yes,sure,original,book,1 -yes,absolutely!,original,book,1 -greeting,"hello, friend",original,greet,4 -goodbye,goodbye to yours,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -yes,certainly,parrot,book,1 -greeting,aho,parrot,greet,4 -no,not correct,parrot,cancel,3 -yes,facts,original,book,1 -yes,approved,original,book,1 -thank_you,thanks for the information you've given me,parrot,bye,2 -yes,affirmitive,original,book,1 -reminder_update,make a reminder of the mortgage,parrot,resched,5 -thank_you,i owe you a thing,parrot,bye,2 -greeting,hello good morning,parrot,greet,4 -greeting,ahoy there,lambada,greet,4 -yes,agreed,original,book,1 -goodbye,bye!,original,bye,2 -goodbye,bye now,original,bye,2 -reminder_update,a new reminder,parrot,resched,5 -greeting,heyo,original,greet,4 -no,no thanks,original,cancel,3 -no,negatory,original,cancel,3 -cancel_reservation,nix that reservation for 4 at strip house,original,cancel,3 -date,i need the date,parrot,avail,0 -thank_you,many thanks,original,bye,2 -meeting_schedule,when do i have meetings today?,original,avail,0 -goodbye,good talk,parrot,bye,2 -date,what date tomorrow?,parrot,avail,0 -no,it's no,parrot,cancel,3 -thank_you,"awesome, thanks",original,bye,2 -thank_you,thanks i appreciate it,parrot,bye,2 -greeting,how's it going with you?,parrot,greet,4 -yes,affirmitive,original,book,1 -goodbye,goodbye,original,bye,2 -cancel_reservation,please cancel my reservation for dinner this evening,parrot,cancel,3 -no,i'm afraid that's not the case,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -yes,my answer is yes,parrot,book,1 -thank_you,appreciated,original,bye,2 -greeting,wassup,original,greet,4 -thank_you,much obliged,original,bye,2 -goodbye,see ya,original,bye,2 -date,what is current day?,parrot,avail,0 -calendar,search my calendar for birthdays,parrot,avail,0 -thank_you,awesome thank you,parrot,bye,2 -no,no it's a no,parrot,cancel,3 -yes,affirmative,original,book,1 -date,in 8 days?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -how_busy,do you know how busy chili is at 730?,parrot,avail,0 -thank_you,well done,parrot,bye,2 -no,FALSE,lambada,cancel,3 -no,not good,parrot,cancel,3 -goodbye,thanks for chatting,lambada,bye,2 -goodbye,goodnight,original,bye,2 -how_busy,how long before i can eat macaroni on the grill,parrot,avail,0 -schedule_meeting,can you sign me up for a meeting at 10 am on friday?,parrot,book,1 -how_busy,how long will it take to be seated at the macaron grill,parrot,avail,0 -greeting,how ya doin,original,greet,4 -meeting_schedule,show me the time i meet sarah?,parrot,avail,0 -yes,approved,original,book,1 -yes,okay,original,book,1 -meeting_schedule,when's my meeting today?,parrot,avail,0 -meeting_schedule,meetings today,original,avail,0 -calendar,what's my calendar for march 20?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -no,thanks no,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -yes,i believe that's true,original,book,1 -no,nada,original,cancel,3 -goodbye,say goodbye now,parrot,bye,2 -how_busy,do you know how busy chili's is at 5pm?,parrot,avail,0 -goodbye,maybe next time,parrot,bye,2 -greeting,well hello,original,greet,4 -yes,yeah,original,book,1 -goodbye,say goodbye,parrot,bye,2 -no,not happening,original,cancel,3 -yes,definitely,original,book,1 -yes,"that is true, yes",original,book,1 -no,negating,parrot,cancel,3 -goodbye,later gater,original,bye,2 -no,that's not right?,parrot,cancel,3 -reminder_update,new reminder please,lambada,resched,5 -greeting,how's the situation?,parrot,greet,4 -yes,that is affirmative,original,book,1 -no,erroneous,parrot,cancel,3 -no,that's incorrect,original,cancel,3 -yes,absolutely,original,book,1 -greeting,salutations!,original,greet,4 -goodbye,tootles?,parrot,bye,2 -schedule_meeting,do you know how to schedule meetings?,parrot,book,1 -greeting,how's life going?,parrot,greet,4 -greeting,bonjour,original,greet,4 -greeting,ahoy,lambada,greet,4 -no,nay,original,cancel,3 -greeting,how's life?,parrot,greet,4 -reminder_update,just a reminder,parrot,resched,5 -how_busy,do you think the steakhouse is crowded at dinner?,parrot,avail,0 -thank_you,very grateful,parrot,bye,2 -yes,yay,lambada,book,1 -goodbye,it's over,parrot,bye,2 -goodbye,buhbye now,lambada,bye,2 -greeting,wanted to say hi,parrot,greet,4 -how_busy,wait how long do you think i have to wait for a table at chipotle restaurant,parrot,avail,0 -greeting,good morning,parrot,greet,4 -goodbye,bye for now,original,bye,2 -greeting,what's up?,parrot,greet,4 -thank_you,very grateful,parrot,bye,2 -no,invalid,original,cancel,3 -goodbye,goodbye!,original,bye,2 -greeting,hey,original,greet,4 -no,don't agree,parrot,cancel,3 -greeting,hey there!,original,greet,4 -thank_you,thank you!,original,bye,2 -yes,confirmed,original,book,1 -greeting,why hello?,original,greet,4 -yes,okay,original,book,1 -greeting,how's everything,original,greet,4 -yes,absolutely correct,original,book,1 -no,nothing,parrot,cancel,3 -yes,accept,parrot,book,1 -goodbye,bye bye then,original,bye,2 -reminder_update,let me know,parrot,resched,5 -greeting,hey there,original,greet,4 -yes,"yes, that's true",lambada,book,1 -yes,indeed,parrot,book,1 -reminder_update,create a reminder,original,resched,5 -no,don't like that,parrot,cancel,3 -cancel_reservation,i need to cancel my reservation for new york,parrot,cancel,3 -goodbye,good thing to see you,lambada,bye,2 -greeting,hi,original,greet,4 -goodbye,thanks for chatting,lambada,bye,2 -goodbye,adios,original,bye,2 -no,i believe it's incorrect,lambada,cancel,3 -calendar,can you check my calendar to see if i have scheduled any events?,parrot,avail,0 -yes,yeah,original,book,1 -thank_you,thanks,original,bye,2 -meeting_schedule,i need to know if i have meetings with michael,parrot,avail,0 -how_busy,wait for a cheese cake in the restaurant?,parrot,avail,0 -calendar,tell me what's on my calendar for the 17th march?,parrot,avail,0 -yes,positive,parrot,book,1 -greeting,hi what's up,original,greet,4 -calendar_update,remove the training meeting events from my calendar,parrot,resched,5 -goodbye,great talk,lambada,bye,2 -date,i need to know which day is next,lambada,avail,0 -how_busy,is chili's going to be busy around 5:30 pm?,lambada,avail,0 -how_busy,is this restaurant crowded?,parrot,avail,0 -greeting,"hi, how are you doing",lambada,greet,4 -goodbye,fairwell,original,bye,2 -how_busy,can you tell me if there will be a long wait at the red lobster?,parrot,avail,0 -yes,correct,original,book,1 -yes,we would say yes,lambada,book,1 -no,negating,parrot,cancel,3 -how_busy,will the pizza place be busy around seven?,parrot,avail,0 -yes,certainly true,parrot,book,1 -calendar_update,schedule family dinner on my calendar for march 8,parrot,resched,5 -how_busy,how busy is toby's at 11,lambada,avail,0 -date,where is the date tomorrow?,parrot,avail,0 -greeting,are you okay??,parrot,greet,4 -no,naw,parrot,cancel,3 -date,what is the current date?,original,avail,0 -no,you're not right,parrot,cancel,3 -yes,i guess,parrot,book,1 -cancel_reservation,scrap the dinner reservation,parrot,cancel,3 -goodbye,i want it now,parrot,bye,2 -yes,i agree,original,book,1 -no,nay,original,cancel,3 -no,"no, that is invalid",original,cancel,3 -yes,confirm,original,book,1 -goodbye,great talk,lambada,bye,2 -greeting,how goes it,original,greet,4 -reminder_update,i need to remember how to care for the garden,parrot,resched,5 -how_busy,how busy will chili be at 8pm,parrot,avail,0 -no,erroneous,parrot,cancel,3 -goodbye,next time we'll talk,parrot,bye,2 -no,no that isn't true,lambada,cancel,3 -goodbye,later!,original,bye,2 -yes,yes is my answer,original,book,1 -greeting,hiya!,original,greet,4 -calendar,get events in my calendar,parrot,avail,0 -date,what day?,parrot,avail,0 -yes,absolutely!,original,book,1 -goodbye,i'll see you later ai,lambada,bye,2 -yes,i know,parrot,book,1 -thank_you,nice,parrot,bye,2 -yes,that is correct,original,book,1 -goodbye,good bye,original,bye,2 -goodbye,thanks goodbye,parrot,bye,2 -yes,great,original,book,1 -how_busy,how busy is the cheesecake factory around lunch time?,parrot,avail,0 -no,negative,original,cancel,3 -date,today?,parrot,avail,0 -no,"please, no",original,cancel,3 -greeting,how is my day?,parrot,greet,4 -yes,definitely,original,book,1 -thank_you,thanks for doing it,parrot,bye,2 -yes,absolutely,original,book,1 -thank_you,thank ya!,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -date,please date,parrot,avail,0 -reminder_update,make me a reminder about booking it,original,resched,5 -goodbye,see you soon,original,bye,2 -goodbye,as regards,parrot,bye,2 -no,i gotta say no,original,cancel,3 -yes,roger that,original,book,1 -calendar,what do you have planned for february 28?,parrot,avail,0 -greeting,whats up,original,greet,4 -greeting,hey there!,original,greet,4 -greeting,whats new?,parrot,greet,4 -thank_you,appreciated,original,bye,2 -greeting,hello,original,greet,4 -greeting,hola,original,greet,4 -greeting,what's new?,parrot,greet,4 -no,no,lambada,cancel,3 -date,today?,parrot,avail,0 -no,it's a negation,parrot,cancel,3 -yes,correct,original,book,1 -greeting,aloha,original,greet,4 -goodbye,peace out,original,bye,2 -date,tell me what the date is for tomorrow?,original,avail,0 -yes,oh-huh,parrot,book,1 -goodbye,goodbye bye,parrot,bye,2 -meeting_schedule,is there any meetings today?,parrot,avail,0 -meeting_schedule,time of meeting?,parrot,avail,0 -thank_you,thanks,original,bye,2 -yes,right,parrot,book,1 -reminder_update,may i be reminded,lambada,resched,5 -yes,can we please?,original,book,1 -date,tell me the date of the day,parrot,avail,0 -reminder_update,can you send me a reminder to put the clothes in the dryer?,parrot,resched,5 -goodbye,i enjoyed our goodbye,parrot,bye,2 -no,so that's no,parrot,cancel,3 -no,the negator,parrot,cancel,3 -thank_you,my thanks,parrot,bye,2 -yes,yep,original,book,1 -greeting,what is new?,parrot,greet,4 -yes,"yep, that's right",original,book,1 -yes,i'll say yes,parrot,book,1 -thank_you,appreciated,original,bye,2 -calendar,check my calendar,parrot,avail,0 -greeting,hi how is everything,original,greet,4 -thank_you,again thanks,parrot,bye,2 -greeting,well hi there,original,greet,4 -date,what date is today?,original,avail,0 -no,it's so bad,parrot,cancel,3 -greeting,are you okay?,original,greet,4 -thank_you,you've been great,parrot,bye,2 -yes,you got it,original,book,1 -goodbye,goodbye bye,parrot,bye,2 -greeting,what's happened?,parrot,greet,4 -no,that is most definitely false,original,cancel,3 -how_busy,how long can i wait in the restaurant?,parrot,avail,0 -no,hell nah,original,cancel,3 -no,negative,original,cancel,3 -thank_you,thanks for coming,parrot,bye,2 -goodbye,catch you later,original,bye,2 -greeting,hey,original,greet,4 -thank_you,gracias,original,bye,2 -thank_you,thank ya!,original,bye,2 -reminder_update,please do not forget,parrot,resched,5 -reminder_update,create a reminder to wash the dishes,original,resched,5 -yes,"yes, that's right",original,book,1 -goodbye,goodbyes,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -yes,that is a yes,original,book,1 -greeting,hey,original,greet,4 -date,in 100 days?,parrot,avail,0 -yes,okay,original,book,1 -schedule_meeting,book the meeting room for thursday at 3pm,parrot,book,1 -yes,"yes, that's correct",original,book,1 -goodbye,farewell,original,bye,2 -thank_you,and thank you for my help,parrot,bye,2 -greeting,whats new?,parrot,greet,4 -greeting,wanted to say hello,parrot,greet,4 -no,not really,original,cancel,3 -goodbye,i'm saying goodbye now,original,bye,2 -yes,confirm,original,book,1 -greeting,hiya!,original,greet,4 -no,nay,original,cancel,3 -greeting,what is new?,parrot,greet,4 -calendar,what do i have on my calendar for monday the 1st of march?,original,avail,0 -no,i don't think that's right,lambada,cancel,3 -greeting,"hey, ai",original,greet,4 -yes,say yes,lambada,book,1 -thank_you,you answered,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -thank_you,thanks,original,bye,2 -how_busy,how long will i need to wait for a table at the avocado cafe,lambada,avail,0 -no,nope,original,cancel,3 -goodbye,buhbye,original,bye,2 -cancel_reservation,can you cancel a reservation?,parrot,cancel,3 -yes,sure,original,book,1 -calendar_update,the day i'm supposed to be in the hospital has changed,parrot,resched,5 -no,that isn't true,lambada,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -yes,that is right,original,book,1 -yes,definitely,original,book,1 -yes,TRUE,lambada,book,1 -greeting,what's up,original,greet,4 -goodbye,glad we could talk,parrot,bye,2 -schedule_meeting,please schedule a meeting?,parrot,book,1 -greeting,how's my day?,parrot,greet,4 -goodbye,goodbye,original,bye,2 -how_busy,how long do i have to wait for a table in louisiana,parrot,avail,0 -greeting,how's the world?,parrot,greet,4 -goodbye,later,original,bye,2 -no,that's no longer valid,parrot,cancel,3 -no,no way!,original,cancel,3 -reminder_update,a new reminder please,parrot,resched,5 -no,naw,original,cancel,3 -no,that's incorrect!,original,cancel,3 -greeting,have you felt?,parrot,greet,4 -yes,facts,original,book,1 -thank_you,my thanks,parrot,bye,2 -no,nada,original,cancel,3 -greeting,hiya,original,greet,4 -thank_you,thankyou,parrot,bye,2 -meeting_schedule,when's the meeting with kar?,parrot,avail,0 -goodbye,im leaving,parrot,bye,2 -goodbye,goodnight,original,bye,2 -greeting,hello there!,original,greet,4 -goodbye,take it easy,lambada,bye,2 -thank_you,thank a bunch,original,bye,2 -calendar_update,delete any event on my calendar that's set for wednesday of next week,parrot,resched,5 -greeting,what's new,lambada,greet,4 -yes,accepted,original,book,1 -yes,thats right,original,book,1 -reminder_update,remind me of something,parrot,resched,5 -schedule_meeting,how does scheduling work?,parrot,book,1 -greeting,hey what's up?,parrot,greet,4 -yes,perfect,parrot,book,1 -goodbye,"nice talking again, bye",original,bye,2 -yes,my answer is yes,parrot,book,1 -calendar,can you tell me what's on my calendar for march 25?,parrot,avail,0 -greeting,what's happening,original,greet,4 -no,that's a wrong answer?,parrot,cancel,3 -no,no this is not correct,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -yes,TRUE,lambada,book,1 -goodbye,later then,lambada,bye,2 -calendar,can you give me an idea of what march 23 will look like for me?,parrot,avail,0 -no,FALSE,original,cancel,3 -how_busy,how long will it take to sit at applebees?,parrot,avail,0 -greeting,how's life going?,parrot,greet,4 -yes,i guess yes,parrot,book,1 -yes,sure thing,original,book,1 -no,the information is not correct?,parrot,cancel,3 -no,invalid,original,cancel,3 -greeting,aho,parrot,greet,4 -thank_you,thank ya!,original,bye,2 -goodbye,greetings,parrot,bye,2 -greeting,hi ai,original,greet,4 -goodbye,peace,original,bye,2 -yes,you are correct,original,book,1 -yes,good,parrot,book,1 -how_busy,tell me the time to wait for a table at macaroni and cheese?,parrot,avail,0 -how_busy,how long will i wait if i want to go to the cheese cake factory,parrot,avail,0 -thank_you,really great!,original,bye,2 -yes,TRUE,original,book,1 -yes,TRUE,original,book,1 -no,no good,original,cancel,3 -greeting,hi ai,original,greet,4 -no,negatory?,parrot,cancel,3 -thank_you,"great, thanks!",original,bye,2 -no,certainly not,original,cancel,3 -thank_you,glad you helped me,parrot,bye,2 -goodbye,"see you later, alligator",original,bye,2 -yes,i vote yes,original,book,1 -how_busy,can you tell me if i should expect long wait times for a taqueria meal at 7 am?,lambada,avail,0 -thank_you,appreciated,original,bye,2 -how_busy,how busy is the outback around 7pm?,parrot,avail,0 -no,that's incorrect!,original,cancel,3 -how_busy,is the mexican place crowded?,parrot,avail,0 -no,that can't be true,original,cancel,3 -no,no thanks,original,cancel,3 -how_busy,how busy will a potato salad be around 5?,parrot,avail,0 -yes,confirm,original,book,1 -calendar,what's on my calendar for tuesday,original,avail,0 -greeting,wassup,original,greet,4 -thank_you,you did that for me,parrot,bye,2 -greeting,hey bs,lambada,greet,4 -goodbye,i enjoy our chat,lambada,bye,2 -goodbye,goodbye soon,lambada,bye,2 -greeting,what's new,lambada,greet,4 -greeting,hello,original,greet,4 -greeting,hey fellows,parrot,greet,4 -yes,10-Apr,original,book,1 -thank_you,thanks!,original,bye,2 -no,negatory?,parrot,cancel,3 -yes,that is totally true,original,book,1 -thank_you,thankyou,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -yes,it's logical,parrot,book,1 -no,negating,parrot,cancel,3 -greeting,yo,original,greet,4 -goodbye,good bye for now,parrot,bye,2 -no,no?,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -yes,yeah you got it,lambada,book,1 -goodbye,later gator!,original,bye,2 -goodbye,bye,original,bye,2 -date,tell me the date?,original,avail,0 -calendar_update,please remove my 1st meeting from my calendar,parrot,resched,5 -thank_you,your assistance is appreciated,parrot,bye,2 -no,it seems wrong,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,and you're doing well,parrot,bye,2 -yes,i'll check that out,parrot,book,1 -greeting,whats up?,parrot,greet,4 -yes,TRUE,original,book,1 -greeting,you good?,parrot,greet,4 -no,that’s actually wrong,original,cancel,3 -greeting,and what's up?,parrot,greet,4 -calendar,read my calendar on march 21st,lambada,avail,0 -greeting,what's up,original,greet,4 -goodbye,my way,parrot,bye,2 -no,no it wouldn't be true,parrot,cancel,3 -how_busy,how long would i wait for the hamster wheel?,parrot,avail,0 -yes,yeap,original,book,1 -reminder_update,add a reminder to wash dishes,parrot,resched,5 -thank_you,you're welcome,parrot,bye,2 -no,false sure,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -date,what day?,parrot,avail,0 -yes,"yeah, that's true",lambada,book,1 -goodbye,i'm outta here!,original,bye,2 -yes,it's certainly positive,parrot,book,1 -no,that's a no,lambada,cancel,3 -greeting,"hello, ai",original,greet,4 -no,nope,original,cancel,3 -yes,that's right,original,book,1 -yes,yes please,original,book,1 -greeting,what's up,original,greet,4 -date,which date today?,parrot,avail,0 -thank_you,why thank you?,original,bye,2 -yes,yes that's it,original,book,1 -yes,it'll be yes,parrot,book,1 -calendar,tell me what's on my calendar for march 19th,parrot,avail,0 -no,you are wrong,original,cancel,3 -schedule_meeting,how does scheduling work?,parrot,book,1 -greeting,whats new?,parrot,greet,4 -no,FALSE,original,cancel,3 -yes,that's true,original,book,1 -thank_you,awesome thanks,parrot,bye,2 -no,negative,original,cancel,3 -goodbye,you're done,parrot,bye,2 -greeting,how're you?,parrot,greet,4 -thank_you,merci beaucoup,original,bye,2 -meeting_schedule,do i have any meetings with michael today?,original,avail,0 -goodbye,adios,original,bye,2 -how_busy,do you know how long the wait time is at the coffee shops?,lambada,avail,0 -thank_you,thankyou,parrot,bye,2 -greeting,aho,parrot,greet,4 -goodbye,peace,original,bye,2 -greeting,hiya,original,greet,4 -how_busy,how long will i have to wait for a table in red lobster,parrot,avail,0 -thank_you,awesome thank you,parrot,bye,2 -goodbye,i'll see you around,lambada,bye,2 -yes,i guess,parrot,book,1 -yes,i'll give it a try,parrot,book,1 -yes,certainly,parrot,book,1 -yes,positive,original,book,1 -goodbye,this conversation was good,parrot,bye,2 -calendar_update,remove my dinner with ariel from my calendar on may 26th,parrot,resched,5 -yes,correct,original,book,1 -greeting,salutations,parrot,greet,4 -date,today?,parrot,avail,0 -cancel_reservation,cancel the reservation i made,parrot,cancel,3 -greeting,hey how's it going?,parrot,greet,4 -thank_you,gracias,original,bye,2 -thank_you,you did it,parrot,bye,2 -greeting,what's happened?,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -yes,obviously,parrot,book,1 -goodbye,as regards,parrot,bye,2 -greeting,are you well?,original,greet,4 -cancel_reservation,make a cancellation of my reservation for 6 pm,parrot,cancel,3 -cancel_reservation,cancellation of the dinner reservation,parrot,cancel,3 -greeting,yo,original,greet,4 -no,is my falsehood?,parrot,cancel,3 -no,nothing,parrot,cancel,3 -yes,yup,original,book,1 -no,that's false,original,cancel,3 -goodbye,please talk to me,parrot,bye,2 -greeting,hello siri,original,greet,4 -how_busy,tell me how long will it take to get a seat at chili's at 6 pm?,lambada,avail,0 -thank_you,thank you kindly,original,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -yes,absolutely!,original,book,1 -how_busy,how much is the wait at outback steakhouse,lambada,avail,0 -greeting,how's ayi doing?,parrot,greet,4 -yes,accept,parrot,book,1 -goodbye,afterward,parrot,bye,2 -goodbye,goodnight,original,bye,2 -goodbye,have to go,parrot,bye,2 -yes,definitely,original,book,1 -yes,indeed,original,book,1 -goodbye,goodnight,original,bye,2 -greeting,hello bs,parrot,greet,4 -goodbye,see ya,original,bye,2 -yes,TRUE,original,book,1 -greeting,ahoy,lambada,greet,4 -goodbye,farewell,original,bye,2 -date,what is today?,original,avail,0 -no,this is false,parrot,cancel,3 -no,it's no,parrot,cancel,3 -no,negation,parrot,cancel,3 -goodbye,"later, goodbye",lambada,bye,2 -goodbye,the talk was nice,lambada,bye,2 -no,negatory,original,cancel,3 -greeting,hey,original,greet,4 -thank_you,for my help i'm very grateful,parrot,bye,2 -cancel_reservation,can you cancel my reservation for 6 pm?,lambada,cancel,3 -yes,10-Apr,original,book,1 -yes,confirm,original,book,1 -calendar_update,i want to remove an event from my calendar please,parrot,resched,5 -yes,it's true,original,book,1 -no,certainly false,parrot,cancel,3 -goodbye,i'll leave,parrot,bye,2 -thank_you,"thanks, you've helped me",original,bye,2 -yes,"yes, please",parrot,book,1 -no,that's a lie,parrot,cancel,3 -thank_you,thanks for my cooperation,original,bye,2 -how_busy,how long can i expect to wait at the red lobster?,parrot,avail,0 -meeting_schedule,check my schedule for today,parrot,avail,0 -yes,right,parrot,book,1 -no,FALSE,original,cancel,3 -date,can you tell me the year?,parrot,avail,0 -no,nay,original,cancel,3 -thank_you,your answer pleased me,original,bye,2 -calendar,bowling on my calendar?,parrot,avail,0 -schedule_meeting,how does scheduling work?,parrot,book,1 -no,but it's false,parrot,cancel,3 -goodbye,nice to see you,original,bye,2 -no,most definitely false,parrot,cancel,3 -no,please no,parrot,cancel,3 -goodbye,send a goodbye,lambada,bye,2 -no,negative definitely,parrot,cancel,3 -greeting,ahoy,lambada,greet,4 -greeting,hello there!,original,greet,4 -yes,definitely,original,book,1 -no,the negator,parrot,cancel,3 -how_busy,how busy the restaurant is around dinner time? '',parrot,avail,0 -yes,is true,parrot,book,1 -date,tell me what day today is?,original,avail,0 -thank_you,you helped,parrot,bye,2 -goodbye,thanks for chatting,lambada,bye,2 -no,invalid,original,cancel,3 -thank_you,thanks for the response,lambada,bye,2 -yes,yeah,original,book,1 -date,can you tell me the date of today,parrot,avail,0 -yes,of course,original,book,1 -no,please disagree,lambada,cancel,3 -yes,"yeah, that's it",lambada,book,1 -thank_you,much obliged,original,bye,2 -how_busy,how long will i have to wait at the chocolate fountain?,parrot,avail,0 -how_busy,is kaya busy at 5pm?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -calendar_update,add my wedding to my calendar for march 7th,parrot,resched,5 -goodbye,i'm outta here!,original,bye,2 -goodbye,catch you around,original,bye,2 -yes,a fact,parrot,book,1 -goodbye,afterward,parrot,bye,2 -yes,okay,original,book,1 -goodbye,regards,original,bye,2 -greeting,hola!,original,greet,4 -no,nada,original,cancel,3 -no,that's absolutely false,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -no,not right?,parrot,cancel,3 -no,"no, that's not the case",lambada,cancel,3 -yes,definitely,original,book,1 -no,invalid,original,cancel,3 -goodbye,goodbye now,parrot,bye,2 -meeting_schedule,what date is the meeting today?,parrot,avail,0 -schedule_meeting,are there meeting rooms open between 9 and 10 o'clock?,parrot,book,1 -how_busy,wait in the restaurant right now?,parrot,avail,0 -no,it's no,parrot,cancel,3 -schedule_meeting,i want to meet bob in the morning,parrot,book,1 -how_busy,please tell me how busy it is in the olive garden at 5pm?,parrot,avail,0 -yes,perfect,parrot,book,1 -date,in 100 days what will it be?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -greeting,yo,original,greet,4 -reminder_update,can you add a reminder?,parrot,resched,5 -thank_you,much obliged,original,bye,2 -yes,confirm,original,book,1 -no,that's so negative,parrot,cancel,3 -thank_you,thanks,original,bye,2 -date,is today the day?,parrot,avail,0 -thank_you,awesome thank you,parrot,bye,2 -reminder_update,can i set a reminder?,original,resched,5 -calendar,tell me what's on my calendar for march 28th?,parrot,avail,0 -no,that's untrue,parrot,cancel,3 -calendar_update,i want to take the 8am meeting with sam on monday the 5th off my calendar,original,resched,5 -thank_you,thankyou,parrot,bye,2 -calendar_update,remove event from calendar,lambada,resched,5 -yes,absolutely!,original,book,1 -no,please no,parrot,cancel,3 -date,what today?,parrot,avail,0 -yes,yeap,original,book,1 -how_busy,"around 5 pm, how busy is kaya",original,avail,0 -how_busy,is there a waiting time for chips?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -how_busy,will this restaurant be crowded?,parrot,avail,0 -yes,okay,original,book,1 -yes,do that?,original,book,1 -goodbye,buhbye,original,bye,2 -no,erroneous,parrot,cancel,3 -goodbye,wonderful conversation,lambada,bye,2 -meeting_schedule,i need to know if i have any meetings with mark today,lambada,avail,0 -no,so that's no,parrot,cancel,3 -greeting,"why, hello bandit",original,greet,4 -yes,it is a yes from me,parrot,book,1 -calendar,please tell me what's on my calendar for april 15th,parrot,avail,0 -goodbye,you're done,parrot,bye,2 -no,erroneous,parrot,cancel,3 -greeting,yo,original,greet,4 -no,please disagree,lambada,cancel,3 -yes,very true,original,book,1 -greeting,are you okay?,original,greet,4 -thank_you,thank you for trying,parrot,bye,2 -no,that's certainly false,parrot,cancel,3 -greeting,aho,parrot,greet,4 -yes,10-Apr,original,book,1 -thank_you,the best,parrot,bye,2 -yes,"yes, that is it",original,book,1 -goodbye,good-bye,parrot,bye,2 -thank_you,appreciated,original,bye,2 -yes,perfect,parrot,book,1 -yes,absolutely,original,book,1 -calendar_update,remove the lunch with jeff from my calendar for may 3,parrot,resched,5 -yes,i know,parrot,book,1 -goodbye,fairwell,original,bye,2 -schedule_meeting,how many rooms are available between 2 and 3?,parrot,book,1 -no,negatory,original,cancel,3 -date,please date,parrot,avail,0 -thank_you,thanks very much for your answer,parrot,bye,2 -yes,yeap,original,book,1 -goodbye,later!,original,bye,2 -goodbye,thanks for chatting,lambada,bye,2 -how_busy,tell me how busy red robin is at 730?,parrot,avail,0 -how_busy,is ihop busy?,parrot,avail,0 -goodbye,will leave now,parrot,bye,2 -schedule_meeting,how are meetings scheduled?,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -yes,"yes, please",parrot,book,1 -yes,positive,original,book,1 -yes,great,original,book,1 -goodbye,goodbye to your,lambada,bye,2 -goodbye,tootles,original,bye,2 -calendar,tell me the march date in my calendar?,parrot,avail,0 -how_busy,is this restaurant open at night?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -goodbye,the talk was nice,lambada,bye,2 -meeting_schedule,do we meet today?,parrot,avail,0 -thank_you,gracias,original,bye,2 -yes,yep,original,book,1 -no,negation,parrot,cancel,3 -how_busy,how long will i wait for a table in louisiana?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -goodbye,great talk,lambada,bye,2 -greeting,how's ai feeling?,parrot,greet,4 -greeting,hey how's it going,original,greet,4 -greeting,please tell me how you're doing?,parrot,greet,4 -greeting,how's idy?,parrot,greet,4 -goodbye,ai goodbye,original,bye,2 -yes,it's certainly true,parrot,book,1 -how_busy,if i order a burger in this restaurant how long will it take,parrot,avail,0 -no,that's a negation,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -thank_you,i appeciate it,parrot,bye,2 -no,nothing,parrot,cancel,3 -thank_you,i'm thankful,original,bye,2 -goodbye,i'll be gone,parrot,bye,2 -thank_you,you've helped,parrot,bye,2 -greeting,salutations!,original,greet,4 -yes,affirmitive,original,book,1 -greeting,yo,original,greet,4 -yes,indeed,original,book,1 -calendar_update,i don't have to go to the zoo on the 8th of this month anymore,parrot,resched,5 -greeting,yo,original,greet,4 -no,thanks no,parrot,cancel,3 -goodbye,signing off,original,bye,2 -yes,yeah that's right,lambada,book,1 -greeting,hey bs,lambada,greet,4 -yes,TRUE,lambada,book,1 -greeting,how's ayi doing?,parrot,greet,4 -cancel_reservation,"cancel my reservation for dinner this friday, please",original,cancel,3 -yes,affirmative,original,book,1 -how_busy,how busy is the olive garden restaurant at 730 pm?,parrot,avail,0 -thank_you,thank you,original,bye,2 -no,it's negative,parrot,cancel,3 -goodbye,a good conversation,parrot,bye,2 -schedule_meeting,can you schedule a meeting for me,parrot,book,1 -greeting,ahoy,lambada,greet,4 -yes,i believe what you've said is true,parrot,book,1 -goodbye,go easy,parrot,bye,2 -date,do you have my date?,parrot,avail,0 -yes,okay,original,book,1 -yes,absolutely,original,book,1 -goodbye,ensure you get some rest,parrot,bye,2 -greeting,what's up?,parrot,greet,4 -yes,10-Apr,original,book,1 -goodbye,thank you for talking with me,parrot,bye,2 -greeting,"hi, ai",original,greet,4 -goodbye,fairwell,original,bye,2 -greeting,i want to know how you're doing?,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -thank_you,thanks again!,original,bye,2 -yes,good,parrot,book,1 -yes,im sure you're right,parrot,book,1 -greeting,how is life?,parrot,greet,4 -goodbye,ill leave now,parrot,bye,2 -no,not good,parrot,cancel,3 -greeting,hiya!,original,greet,4 -greeting,hows it going,lambada,greet,4 -cancel_reservation,get rid of my 4 pm reservation at the steakhouse please,original,cancel,3 -thank_you,much obliged,original,bye,2 -yes,not false,parrot,book,1 -greeting,hola,original,greet,4 -thank_you,thanks,original,bye,2 -how_busy,what time does the oklahoma county farmer's market have a long wait?,parrot,avail,0 -no,no!,original,cancel,3 -no,negation,parrot,cancel,3 -reminder_update,remember to remember later,parrot,resched,5 -goodbye,goodbye goodbye,parrot,bye,2 -no,i'll pass,original,cancel,3 -goodbye,goodnight,original,bye,2 -how_busy,how busy is cheesecake factory at 8 pm,lambada,avail,0 -goodbye,peace out!,original,bye,2 -schedule_meeting,i need to know how do i schedule a meeting,lambada,book,1 -date,this is the day,parrot,avail,0 -no,that’s incorrect,original,cancel,3 -how_busy,tell me how busy is regina's right now?,lambada,avail,0 -goodbye,good call,parrot,bye,2 -thank_you,the help is appreciated,parrot,bye,2 -goodbye,my friend,parrot,bye,2 -goodbye,great talk with you,lambada,bye,2 -goodbye,goodbye,original,bye,2 -date,what today?,parrot,avail,0 -yes,great,original,book,1 -goodbye,adios ai,original,bye,2 -how_busy,how long will it be before lunch?,parrot,avail,0 -yes,of course,original,book,1 -greeting,welcome,parrot,greet,4 -goodbye,i'll be gone,parrot,bye,2 -no,not right,parrot,cancel,3 -reminder_update,make me a reminder to exercise this week,parrot,resched,5 -goodbye,see ya,lambada,bye,2 -goodbye,bye bye,lambada,bye,2 -no,that's false,original,cancel,3 -goodbye,bye bye now,lambada,bye,2 -meeting_schedule,go over my meeting schedule please,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -meeting_schedule,check my schedule for today,parrot,avail,0 -greeting,"hey, what's new",original,greet,4 -schedule_meeting,can you book a meeting with john for 12?,parrot,book,1 -no,naw,parrot,cancel,3 -no,that's no,parrot,cancel,3 -greeting,hola!,original,greet,4 -cancel_reservation,get rid of my reservation for dinner at umami,lambada,cancel,3 -no,please disagree,lambada,cancel,3 -greeting,bonjour,original,greet,4 -yes,absolutely correct,original,book,1 -date,what's the current date?,parrot,avail,0 -how_busy,how long will i have to wait to be seated at the outback steakhouse,parrot,avail,0 -meeting_schedule,what's on my calendar?,parrot,avail,0 -how_busy,what hours of use do you have in a restaurant?,parrot,avail,0 -how_busy,how long can i expect to wait in this place?,parrot,avail,0 -greeting,how's idy?,parrot,greet,4 -yes,"yup, that's correct",lambada,book,1 -how_busy,what is waiting at chili's at ten?,parrot,avail,0 -goodbye,good talk,parrot,bye,2 -greeting,why hello?,original,greet,4 -goodbye,sayonara,original,bye,2 -yes,"yes, please",parrot,book,1 -no,so that's no,parrot,cancel,3 -yes,yes,original,book,1 -yes,positive,original,book,1 -goodbye,later!,original,bye,2 -no,it's not correct,parrot,cancel,3 -no,no no no,parrot,cancel,3 -no,no,lambada,cancel,3 -thank_you,thankyou,parrot,bye,2 -goodbye,you can talk later,parrot,bye,2 -no,negative,original,cancel,3 -thank_you,you're the best!,original,bye,2 -no,i don't agree,parrot,cancel,3 -meeting_schedule,are there meetings between 9 and 10 today?,parrot,avail,0 -goodbye,as regards,parrot,bye,2 -goodbye,fairwell,original,bye,2 -goodbye,good-bye,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -no,certainly not,original,cancel,3 -calendar_update,remove the friday event from my calendar,parrot,resched,5 -goodbye,tootles?,parrot,bye,2 -no,naw,original,cancel,3 -no,negative,original,cancel,3 -goodbye,good luck,lambada,bye,2 -how_busy,tell me how busy the miami marriott will be at 5 o'clock?,parrot,avail,0 -no,no this is false,parrot,cancel,3 -yes,huh,parrot,book,1 -how_busy,does the restaurant have a lot of business around lunchtime?,parrot,avail,0 -greeting,have you felt?,parrot,greet,4 -calendar,tell me my march 30 calendar information?,lambada,avail,0 -goodbye,peace,original,bye,2 -calendar,tell me what's on my calendar for may 1,parrot,avail,0 -reminder_update,i have to remind you please,parrot,resched,5 -yes,yay,lambada,book,1 -greeting,hey,original,greet,4 -date,what date is it?,original,avail,0 -goodbye,", goodbye",lambada,bye,2 -goodbye,tootles,original,bye,2 -no,negation,parrot,cancel,3 -thank_you,my thanks,parrot,bye,2 -cancel_reservation,please cancel my reservation for tonight's meal,parrot,cancel,3 -goodbye,sayonara ,parrot,bye,2 -no,no!,original,cancel,3 -goodbye,later!,original,bye,2 -greeting,yo,original,greet,4 -thank_you,thank you for coming,parrot,bye,2 -thank_you,"oh, thanks",original,bye,2 -goodbye,thanks goodbye,parrot,bye,2 -no,"please, no",original,cancel,3 -greeting,hello siri,original,greet,4 -no,erroneous,parrot,cancel,3 -how_busy,wait for a long time at the chocolate fountain around 11 o'clock?,parrot,avail,0 -goodbye,i have to go,parrot,bye,2 -yes,agreed,original,book,1 -no,negatory,original,cancel,3 -greeting,hey what's up,original,greet,4 -greeting,salutations,parrot,greet,4 -yes,yup,original,book,1 -goodbye,goodbye!,original,bye,2 -yes,definitely yes,parrot,book,1 -no,no way,original,cancel,3 -goodbye,wonderful conversation,lambada,bye,2 -thank_you,thanks very much for your answer,parrot,bye,2 -greeting,what's happened?,parrot,greet,4 -greeting,hiya!,original,greet,4 -thank_you,thank you please,parrot,bye,2 -calendar_update,"you can remove the dinner party from my calendar for january 21, 2019",original,resched,5 -meeting_schedule,which meetings will be in san francisco,lambada,avail,0 -goodbye,nice to see you bye,parrot,bye,2 -goodbye,peace,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -yes,uh-huh,original,book,1 -no,nothing,parrot,cancel,3 -how_busy,how long will i have to wait before i get a table at the restaurant,lambada,avail,0 -greeting,are you well?,original,greet,4 -calendar,are there any active events for march 4th 2019?,original,avail,0 -yes,that's right,original,book,1 -goodbye,later!,original,bye,2 -calendar,are there points on my calendar for annual membership dues?,parrot,avail,0 -goodbye,go easy,parrot,bye,2 -goodbye,adios,original,bye,2 -how_busy,is ihop busy around 815am?,parrot,avail,0 -thank_you,oh sweet thanks,original,bye,2 -greeting,welcome,parrot,greet,4 -goodbye,so glad i can talk with you,parrot,bye,2 -meeting_schedule,is there a meeting scheduled for today between 7 and 9?,parrot,avail,0 -no,that's incorrect,original,cancel,3 -schedule_meeting,get me a meeting room for noon?,parrot,book,1 -no,i'd say no,original,cancel,3 -goodbye,wonderful conversation,lambada,bye,2 -no,not really,original,cancel,3 -reminder_update,remind me,original,resched,5 -greeting,how's the ayi?,parrot,greet,4 -no,naw,parrot,cancel,3 -goodbye,thank you for the chat,parrot,bye,2 -reminder_update,please remind me to write down the food,parrot,resched,5 -greeting,hi there,original,greet,4 -date,a year?,parrot,avail,0 -reminder_update,make a reminder,parrot,resched,5 -goodbye,i leave now,parrot,bye,2 -yes,that would be right,parrot,book,1 -thank_you,thanks for coming,parrot,bye,2 -yes,i think that's right,parrot,book,1 -greeting,how's it hanging?,parrot,greet,4 -greeting,how're you?,parrot,greet,4 -calendar,i want my calendar for march 2,parrot,avail,0 -thank_you,gracias,original,bye,2 -greeting,hola,original,greet,4 -no,no!,original,cancel,3 -goodbye,tootles?,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -goodbye,buhbye,original,bye,2 -yes,uh-huh,original,book,1 -goodbye,greetings,parrot,bye,2 -no,negating,parrot,cancel,3 -no,that's inaccurate,original,cancel,3 -no,certainly not,original,cancel,3 -greeting,heller,original,greet,4 -yes,accepted,original,book,1 -how_busy,how long would i have to wait for a table at the macaroni grill,parrot,avail,0 -how_busy,how long will i have to wait if i go to chili's,lambada,avail,0 -yes,accept,parrot,book,1 -goodbye,will leave now,parrot,bye,2 -thank_you,nice,parrot,bye,2 -greeting,hello how's the situation?,parrot,greet,4 -how_busy,what's the wait for a table in this restaurant?,parrot,avail,0 -thank_you,much obliged,original,bye,2 -no,not good,parrot,cancel,3 -goodbye,adios!,original,bye,2 -how_busy,tell me the time to wait for a table in louisiana?,parrot,avail,0 -thank_you,you're welcome,parrot,bye,2 -yes,facts,original,book,1 -thank_you,you helped,parrot,bye,2 -yes,okay,original,book,1 -thank_you,my sincere thanks,parrot,bye,2 -greeting,hola,original,greet,4 -thank_you,you've helped,parrot,bye,2 -reminder_update,remind me something,parrot,resched,5 -date,what today?,parrot,avail,0 -no,don't agree,parrot,cancel,3 -goodbye,wonderful conversation,lambada,bye,2 -thank_you,i just want to thank you,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -no,negative,original,cancel,3 -thank_you,awesome thanks,parrot,bye,2 -yes,that is accurate,original,book,1 -how_busy,how busy would this place be at 6 pm,lambada,avail,0 -reminder_update,new reminder please,lambada,resched,5 -goodbye,farewell!,original,bye,2 -yes,"yes, please",parrot,book,1 -thank_you,you answered,parrot,bye,2 -how_busy,how long is the wait at ohio restaurant,lambada,avail,0 -no,yes that's false,lambada,cancel,3 -meeting_schedule,and i need to know when i'll meet with robert,parrot,avail,0 -goodbye,good seeing you,original,bye,2 -goodbye,bye my friend,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -calendar,what's my schedule for march 3rd?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -yes,i know,parrot,book,1 -goodbye,regards,original,bye,2 -thank_you,my sincere gratitude,parrot,bye,2 -goodbye,regards,original,bye,2 -no,negation,parrot,cancel,3 -goodbye,on the highway,parrot,bye,2 -greeting,how's my current situation,parrot,greet,4 -greeting,how do you feel?,parrot,greet,4 -greeting,welcome,parrot,greet,4 -no,erroneous,parrot,cancel,3 -reminder_update,can you make a reminder?,parrot,resched,5 -no,i would prefer not,original,cancel,3 -yes,accept,parrot,book,1 -reminder_update,what's a reminder,parrot,resched,5 -meeting_schedule,meetings today,original,avail,0 -date,what's the date tomorrow?,parrot,avail,0 -no,no!,original,cancel,3 -how_busy,tell me how busy this chili hole is?,lambada,avail,0 -cancel_reservation,the reservation is not necessary anymore,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -how_busy,how long would i wait at the wheel?,parrot,avail,0 -greeting,how is idy?,parrot,greet,4 -greeting,good morning,parrot,greet,4 -date,what date will be tomorrow?,lambada,avail,0 -yes,agreed,original,book,1 -greeting,good day,original,greet,4 -greeting,what am i feeling now?,parrot,greet,4 -no,it's no,parrot,cancel,3 -schedule_meeting,make an appointment with tom for 6pm,parrot,book,1 -greeting,hello how's the situation?,parrot,greet,4 -goodbye,i must catch up,parrot,bye,2 -yes,accepted,original,book,1 -greeting,how's it hanging?,parrot,greet,4 -goodbye,regards,original,bye,2 -goodbye,go easy,parrot,bye,2 -how_busy,is there a wait time at the tsunami grill?,parrot,avail,0 -goodbye,later then,lambada,bye,2 -yes,yes please,original,book,1 -no,definitely not,original,cancel,3 -calendar,can you check my calendar for march 31?,parrot,avail,0 -how_busy,how long will it take to get a table at the restaurant,lambada,avail,0 -greeting,are you doing alright?,original,greet,4 -greeting,well hello,original,greet,4 -reminder_update,please set a reminder for me?,parrot,resched,5 -thank_you,thanks for doing it,parrot,bye,2 -thank_you,really great!,original,bye,2 -date,tell me what day?,parrot,avail,0 -yes,affirmitive,original,book,1 -reminder_update,remind me something,parrot,resched,5 -yes,great,original,book,1 -greeting,how's life?,parrot,greet,4 -cancel_reservation,i need to cancel the reservation for tonight's dinner,parrot,cancel,3 -no,negatory,original,cancel,3 -yes,a fact,parrot,book,1 -goodbye,it was nice to be able to speak with you,lambada,bye,2 -how_busy,how busy will this place be at 8 pm,lambada,avail,0 -greeting,how's my day?,parrot,greet,4 -meeting_schedule,bring up any mettings for today,original,avail,0 -greeting,salutation,parrot,greet,4 -yes,it's logical,parrot,book,1 -no,that's incorrect!,original,cancel,3 -date,what's the date 400 days from now,original,avail,0 -yes,and you're right,parrot,book,1 -yes,so it works,parrot,book,1 -greeting,hey how's life,original,greet,4 -greeting,hey fellows,parrot,greet,4 -date,in 100 days?,parrot,avail,0 -cancel_reservation,can you tell the restaurant to cancel my booking?,parrot,cancel,3 -calendar,what's the tuesday calendar?,parrot,avail,0 -yes,perfect,parrot,book,1 -yes,oh-huh,parrot,book,1 -yes,definitely,original,book,1 -goodbye,good bye then,original,bye,2 -yes,that is true,lambada,book,1 -yes,yes you have been successful,lambada,book,1 -yes,yes you are,original,book,1 -no,no,lambada,cancel,3 -yes,my answer is yes,parrot,book,1 -goodbye,i'm leaving,parrot,bye,2 -how_busy,how long does it take to sit in carraba?,parrot,avail,0 -no,certainly not,original,cancel,3 -yes,right,parrot,book,1 -yes,accept,parrot,book,1 -meeting_schedule,what scheduled meetings do i have today?,original,avail,0 -goodbye,good see you,lambada,bye,2 -schedule_meeting,a meeting needs to be schedule and i need to know how,original,book,1 -goodbye,sayonara ,parrot,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -greeting,wassup,original,greet,4 -cancel_reservation,you can cancel my reservation,parrot,cancel,3 -yes,all right,original,book,1 -yes,so it works,parrot,book,1 -thank_you,thank you kindly,original,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -no,negatory,original,cancel,3 -goodbye,bye-bye,original,bye,2 -greeting,hiya,original,greet,4 -no,i would say no,lambada,cancel,3 -date,i need to know what day it's next,parrot,avail,0 -no,i'd rather not,parrot,cancel,3 -yes,this is true,lambada,book,1 -yes,"yes, please",parrot,book,1 -goodbye,fairwell,original,bye,2 -calendar,please read my calendar for march 3rd,parrot,avail,0 -goodbye,"later, goodbye",lambada,bye,2 -yes,yes it's true,lambada,book,1 -no,please disagree,lambada,cancel,3 -greeting,how you are,original,greet,4 -thank_you,the best,parrot,bye,2 -meeting_schedule,is my schedule clear today?,parrot,avail,0 -no,no please,parrot,cancel,3 -date,what's the date,original,avail,0 -thank_you,good job on that,lambada,bye,2 -yes,i agree,original,book,1 -greeting,hello how're you doing?,parrot,greet,4 -goodbye,peace,original,bye,2 -schedule_meeting,list the availability of meeting rooms between two and three?,parrot,book,1 -yes,facts,original,book,1 -yes,indeed,original,book,1 -yes,agreed,original,book,1 -how_busy,what is it like at olive garden around 4?,parrot,avail,0 -meeting_schedule,time of meeting?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -yes,sure,original,book,1 -goodbye,bye,original,bye,2 -calendar,can you check my calendar to see if my annual health insurance plan has any dates on it?,lambada,avail,0 -how_busy,is the restaurant busy during dinner?,parrot,avail,0 -yes,agreed,original,book,1 -how_busy,the crowd at the red lobster at 8?,parrot,avail,0 -yes,obviously,parrot,book,1 -yes,accepted,original,book,1 -reminder_update,make me remember,parrot,resched,5 -greeting,hey there,original,greet,4 -greeting,how are you?,parrot,greet,4 -greeting,hi,original,greet,4 -goodbye,adios ai,original,bye,2 -goodbye,sayonara,original,bye,2 -no,nada,original,cancel,3 -reminder_update,please remind me,parrot,resched,5 -calendar,what's on my calendar for march 29th?,parrot,avail,0 -goodbye,adios ai,original,bye,2 -thank_you,much obliged,original,bye,2 -date,date please,original,avail,0 -goodbye,as regards,parrot,bye,2 -thank_you,"good job, thanks",lambada,bye,2 -yes,that's a fact,parrot,book,1 -date,what's the year?,parrot,avail,0 -no,negative certainly,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -date,which day will it be five days from now,original,avail,0 -cancel_reservation,cancel the reservation for the dinner,parrot,cancel,3 -how_busy,if you want a table at aljolo how long will it take,parrot,avail,0 -yes,obviously,parrot,book,1 -no,naw,original,cancel,3 -yes,uh-huh,original,book,1 -thank_you,the best,parrot,bye,2 -date,in 7 days?,parrot,avail,0 -greeting,hello good day,parrot,greet,4 -yes,confirm,original,book,1 -greeting,good evening,original,greet,4 -greeting,hello,original,greet,4 -yes,definitely,original,book,1 -how_busy,how long will it take to sit in the chipotle?,parrot,avail,0 -thank_you,i'm really thankful,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -greeting,get up ai,parrot,greet,4 -thank_you,you have done well,lambada,bye,2 -no,nothing,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -greeting,hola,original,greet,4 -date,you have the date?,parrot,avail,0 -goodbye,later!,original,bye,2 -no,nothing good,parrot,cancel,3 -yes,great,original,book,1 -goodbye,goodbyes,parrot,bye,2 -greeting,hello there!,original,greet,4 -greeting,how's my treatment?,parrot,greet,4 -goodbye,goodnight,original,bye,2 -yes,huh,parrot,book,1 -greeting,"hey, how's my day going",lambada,greet,4 -yes,definitely,original,book,1 -date,what will be tomorrow?,parrot,avail,0 -greeting,heyo,original,greet,4 -no,nope,original,cancel,3 -goodbye,i’m leaving-goodbye!,original,bye,2 -thank_you,thank you,original,bye,2 -greeting,well hi there,original,greet,4 -goodbye,my friend,parrot,bye,2 -reminder_update,set a reminder for me to pay my bill today,lambada,resched,5 -no,not correct,parrot,cancel,3 -yes,that's a fact,parrot,book,1 -thank_you,really great!,original,bye,2 -date,today's date is what,original,avail,0 -greeting,wassup,original,greet,4 -yes,my answer is yes,parrot,book,1 -how_busy,what's the wait at iman's,lambada,avail,0 -yes,all right,parrot,book,1 -cancel_reservation,go ahead and close the reservation,original,cancel,3 -yes,okay,original,book,1 -goodbye,tootles,original,bye,2 -greeting,hey yai,lambada,greet,4 -date,give me a date,parrot,avail,0 -no,that's negative,parrot,cancel,3 -thank_you,thanks!,original,bye,2 -yes,my answer is yes,parrot,book,1 -no,but it's wrong,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -yes,TRUE,lambada,book,1 -thank_you,thank you for the cooperation,parrot,bye,2 -no,erroneous,parrot,cancel,3 -yes,that's a fact,lambada,book,1 -reminder_update,do you want me to remind me to pay taxes tomorrow?,parrot,resched,5 -no,no,lambada,cancel,3 -goodbye,buhbye,original,bye,2 -how_busy,how busy the restaurant is at 6pm?,parrot,avail,0 -yes,ya,original,book,1 -thank_you,thanks very much,parrot,bye,2 -calendar_update,write down an appointment for next week on my calendar,parrot,resched,5 -how_busy,can you tell me how long the wait is at this place?,lambada,avail,0 -thank_you,thank you,original,bye,2 -goodbye,goodbye,original,bye,2 -greeting,hi how's the situation?,parrot,greet,4 -no,that's totally wrong!,original,cancel,3 -date,"tomorrow, what will the date be",original,avail,0 -greeting,what's up,original,greet,4 -no,not true,original,cancel,3 -goodbye,later!,original,bye,2 -greeting,what's happening?,parrot,greet,4 -goodbye,thanks goodbye,parrot,bye,2 -yes,TRUE,original,book,1 -no,that's not correct it's false,parrot,cancel,3 -yes,accept,parrot,book,1 -yes,yes i am,original,book,1 -goodbye,as regards,parrot,bye,2 -calendar_update,you can delete sam's birthday from my calendar on march 14,parrot,resched,5 -yes,certainly true,parrot,book,1 -greeting,what's happening?,parrot,greet,4 -no,negation,parrot,cancel,3 -greeting,hey it's up,lambada,greet,4 -yes,yeap,original,book,1 -greeting,hello what's happening,parrot,greet,4 -yes,agreed,original,book,1 -calendar,when will my doctor visit me?,parrot,avail,0 -no,it's a mistake,parrot,cancel,3 -thank_you,you've been a big help,original,bye,2 -calendar_update,i must set a time for the lab for tomorrow,parrot,resched,5 -cancel_reservation,cancel my reservation at the osteria for our party,parrot,cancel,3 -goodbye,goodbye soon,lambada,bye,2 -how_busy,is chili usually crowded around 6 pm?,parrot,avail,0 -greeting,hey fellow,parrot,greet,4 -greeting,aloha,original,greet,4 -date,what date is tomorrow,parrot,avail,0 -no,nope,original,cancel,3 -date,what is tomorrow?,parrot,avail,0 -yes,uh-huh,original,book,1 -goodbye,later,original,bye,2 -thank_you,thanks for responding,parrot,bye,2 -goodbye,send a goodbye,lambada,bye,2 -greeting,how is ayi doing?,parrot,greet,4 -date,what month today?,parrot,avail,0 -greeting,how is idy?,parrot,greet,4 -greeting,welcome,parrot,greet,4 -goodbye,i'll go,parrot,bye,2 -greeting,how are you doing,original,greet,4 -goodbye,good luck tomorrow,lambada,bye,2 -yes,ok,original,book,1 -greeting,welcome,parrot,greet,4 -no,it's indeed false,parrot,cancel,3 -calendar_update,please delete all appointments from my calendar on thursday,parrot,resched,5 -yes,positive,parrot,book,1 -meeting_schedule,have to find time for all the meetings in my schedule,parrot,avail,0 -date,when is it going to be in seven days?,parrot,avail,0 -yes,indeed,original,book,1 -yes,confirm,original,book,1 -greeting,good day,original,greet,4 -reminder_update,remind me to pay my bill today,parrot,resched,5 -schedule_meeting,i need you to arrange a meeting,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -yes,oh-huh,parrot,book,1 -no,you got that wrong,original,cancel,3 -yes,i'm telling you it's true,parrot,book,1 -greeting,hey,original,greet,4 -yes,yay,lambada,book,1 -no,that's inaccurate,original,cancel,3 -how_busy,how long do i have to wait for the table at chipotle,parrot,avail,0 -thank_you,appreciated,original,bye,2 -greeting,hi,original,greet,4 -goodbye,bye bye,lambada,bye,2 -greeting,ahoy,lambada,greet,4 -no,not that,original,cancel,3 -greeting,welcome,parrot,greet,4 -greeting,hi what's up?,parrot,greet,4 -yes,positive,parrot,book,1 -calendar,what's on my agenda for tomorrow,original,avail,0 -schedule_meeting,i'd like to arrange a meeting,parrot,book,1 -no,not good idea,parrot,cancel,3 -yes,yup,original,book,1 -no,that's not true,original,cancel,3 -how_busy,what will it take to sit at the chipotle?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -reminder_update,should i be reminded to set my reminder for my flight,lambada,resched,5 -goodbye,later!,original,bye,2 -greeting,how's my doing?,parrot,greet,4 -goodbye,tootles?,parrot,bye,2 -calendar_update,remove the party for sally from my calendar,lambada,resched,5 -thank_you,very grateful,parrot,bye,2 -goodbye,goodbye no problem,parrot,bye,2 -goodbye,later then,lambada,bye,2 -calendar,list the events on my calendar for march 23?,parrot,avail,0 -no,negation,parrot,cancel,3 -yes,affirmative,original,book,1 -yes,definitely,original,book,1 -goodbye,ai goodbye,original,bye,2 -reminder_update,maybe a reminder?,parrot,resched,5 -yes,right,parrot,book,1 -no,that's absolutely false,parrot,cancel,3 -goodbye,go easy,parrot,bye,2 -yes,yay,lambada,book,1 -yes,great,original,book,1 -how_busy,is canadian restaurant usually busy at 5 pm?,lambada,avail,0 -goodbye,sayonara,original,bye,2 -no,nada,original,cancel,3 -cancel_reservation,my reservation was for dinner,parrot,cancel,3 -date,date please,original,avail,0 -goodbye,goodbyes soon,parrot,bye,2 -yes,approved,original,book,1 -greeting,how is life?,parrot,greet,4 -calendar,what's on january 1st?,parrot,avail,0 -greeting,how's my doing?,parrot,greet,4 -thank_you,thanks,original,bye,2 -yes,approved,original,book,1 -goodbye,goodbye no problem,parrot,bye,2 -goodbye,a good talk,parrot,bye,2 -yes,that's a yes,original,book,1 -greeting,hello there,original,greet,4 -date,what's tomorrow's date,original,avail,0 -date,what's the next month?,parrot,avail,0 -yes,ok,original,book,1 -thank_you,thanks for that response,original,bye,2 -yes,sure,original,book,1 -yes,good,parrot,book,1 -no,that isn't correct,original,cancel,3 -no,that's absolutely false,parrot,cancel,3 -no,and i say negative,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,i'm grateful,original,bye,2 -greeting,"ai, how are you doing",original,greet,4 -date,what year is tomorrow,parrot,avail,0 -meeting_schedule,wanna meet with roger?,parrot,avail,0 -no,that is not correct,original,cancel,3 -calendar_update,remove my birthday party on friday from my calendar,parrot,resched,5 -yes,absolutely,original,book,1 -yes,of course,original,book,1 -schedule_meeting,please schedule a meeting with me,parrot,book,1 -calendar_update,add jake's birthday party for friday at 5,original,resched,5 -no,that's inaccurate,original,cancel,3 -greeting,hello bs,parrot,greet,4 -greeting,and what's up?,parrot,greet,4 -no,that isn't correct,original,cancel,3 -goodbye,goodbye ai,parrot,bye,2 -thank_you,please thank you,lambada,bye,2 -no,nothing,parrot,cancel,3 -thank_you,gracias,original,bye,2 -cancel_reservation,i do not actually need my reservation anymore,original,cancel,3 -thank_you,thanks please,original,bye,2 -goodbye,good call,parrot,bye,2 -goodbye,goodnight,original,bye,2 -yes,it's certainly positive,parrot,book,1 -no,erroneous,parrot,cancel,3 -no,no way!,original,cancel,3 -thank_you,special thanks to you ,parrot,bye,2 -how_busy,how busy is the cheesecake factory at 6 o'clock?,parrot,avail,0 -greeting,how's my family?,parrot,greet,4 -yes,certainly,parrot,book,1 -no,negative,original,cancel,3 -greeting,"hi, ai",original,greet,4 -goodbye,you're done,parrot,bye,2 -goodbye,i'll be gone,parrot,bye,2 -greeting,all right now?,parrot,greet,4 -calendar,retrieve events in my calendar,parrot,avail,0 -goodbye,sayonara,original,bye,2 -thank_you,thank you?,parrot,bye,2 -reminder_update,i need to remind myself,parrot,resched,5 -goodbye,later thanks for talking,parrot,bye,2 -yes,positive,original,book,1 -goodbye,fairwell,original,bye,2 -goodbye,my friend,parrot,bye,2 -date,today?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -how_busy,how busy is ihop?,parrot,avail,0 -greeting,good morning,parrot,greet,4 -goodbye,farewell,original,bye,2 -how_busy,how long will i wait to be seated at the cheesecake factory?,parrot,avail,0 -goodbye,good luck,lambada,bye,2 -date,a year?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -yes,absolutely!,original,book,1 -no,no it's not,parrot,cancel,3 -reminder_update,"create a reminder, please",lambada,resched,5 -yes,that statement was correct,original,book,1 -greeting,good morning ai,parrot,greet,4 -how_busy,how busy is imanas?,parrot,avail,0 -greeting,hello there!,original,greet,4 -meeting_schedule,how many meetings are on my schedule?,parrot,avail,0 -goodbye,farewell,original,bye,2 -yes,it's logical,parrot,book,1 -thank_you,thanks!,original,bye,2 -calendar,can you check what is on my calendar for tuesday?,original,avail,0 -thank_you,thankyou,parrot,bye,2 -yes,uh-huh,original,book,1 -yes,correct,original,book,1 -yes,it makes sense,parrot,book,1 -yes,huh,parrot,book,1 -meeting_schedule,what is the meeting schedule today?,original,avail,0 -reminder_update,remember to bring raincoat tomorrow,parrot,resched,5 -reminder_update,and i'd like to be reminded,parrot,resched,5 -goodbye,regards,original,bye,2 -yes,facts,original,book,1 -date,what day is today,parrot,avail,0 -yes,i know,parrot,book,1 -cancel_reservation,my reservation is not needed anymore,parrot,cancel,3 -greeting,whats up,original,greet,4 -how_busy,how long do i have to wait before i can go to wilson steakhouse,parrot,avail,0 -no,no,lambada,cancel,3 -goodbye,goodbye soon,lambada,bye,2 -how_busy,can you tell me how busy the olive garden will be at 10am?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -meeting_schedule,time of meeting?,parrot,avail,0 -cancel_reservation,cancel my reservation for the steakhouse,parrot,cancel,3 -greeting,how's idy doing?,parrot,greet,4 -yes,okay,original,book,1 -goodbye,a good conversation,parrot,bye,2 -no,definitely not,original,cancel,3 -yes,that's right,original,book,1 -how_busy,how busy is iman at 9 pm,lambada,avail,0 -no,it's a negative,parrot,cancel,3 -yes,10-Apr,original,book,1 -no,what you said is false?,parrot,cancel,3 -calendar_update,remove friday events from my calendar,parrot,resched,5 -greeting,how's it going now?,parrot,greet,4 -reminder_update,make a reminder to buy cat food,lambada,resched,5 -reminder_update,just a reminder,parrot,resched,5 -greeting,how were you?,parrot,greet,4 -goodbye,goodbye!,original,bye,2 -goodbye,farewell!,original,bye,2 -goodbye,good bye,original,bye,2 -yes,definitely,original,book,1 -no,no longer valid,parrot,cancel,3 -yes,it appears true,parrot,book,1 -no,i'm afraid not,parrot,cancel,3 -thank_you,my thanks,parrot,bye,2 -calendar,have i added a doctor appointment to my calendar yet?,parrot,avail,0 -thank_you,i appreciate you helping me,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -yes,that's true,original,book,1 -goodbye,afterward,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -goodbye,talk to me later,parrot,bye,2 -how_busy,how busy is peanuts around 7,lambada,avail,0 -greeting,how's life going?,parrot,greet,4 -yes,correct,original,book,1 -no,negative definitely,parrot,cancel,3 -goodbye,adios,original,bye,2 -date,what day?,parrot,avail,0 -no,would be no?,parrot,cancel,3 -greeting,how's idy doing,lambada,greet,4 -goodbye,i enjoyed our goodbye,parrot,bye,2 -yes,it's true yes,parrot,book,1 -goodbye,very nice conversation,parrot,bye,2 -goodbye,bye!,original,bye,2 -meeting_schedule,show me the schedule of meetings?,parrot,avail,0 -goodbye,peace,original,bye,2 -no,no!,original,cancel,3 -yes,say yes,lambada,book,1 -meeting_schedule,what meetings do i have planned today?,parrot,avail,0 -greeting,hey there,original,greet,4 -yes,indeed,original,book,1 -greeting,ahoy,lambada,greet,4 -goodbye,greetings,parrot,bye,2 -goodbye,i've got to go,lambada,bye,2 -date,in 10 days?,parrot,avail,0 -yes,is true,parrot,book,1 -how_busy,how busy is applebees at noon,lambada,avail,0 -calendar,is bowling on my calendar?,parrot,avail,0 -goodbye,catch you around,original,bye,2 -thank_you,i appreciate it,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -no,no way,original,cancel,3 -yes,sure,original,book,1 -goodbye,goodbyes,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -no,we don't want that,parrot,cancel,3 -goodbye,adios,original,bye,2 -goodbye,goodbye,original,bye,2 -no,but certainly not,parrot,cancel,3 -how_busy,how busy the chili is at 6 o'clock?,parrot,avail,0 -thank_you,thanks please,original,bye,2 -thank_you,merci beaucoup,original,bye,2 -greeting,hey there!,original,greet,4 -thank_you,you're a big help,parrot,bye,2 -date,tell me the date it will be 5 days from now?,original,avail,0 -thank_you,thank you!,original,bye,2 -no,that's wrong,original,cancel,3 -yes,confirmed,original,book,1 -greeting,what is new?,parrot,greet,4 -no,that’s actually wrong,original,cancel,3 -meeting_schedule,have any meetings scheduled with ashley?,parrot,avail,0 -no,that's no longer valid,parrot,cancel,3 -no,that's not true,original,cancel,3 -no,negative sure,parrot,cancel,3 -yes,indeed,original,book,1 -date,please share the date today,parrot,avail,0 -no,nope,original,cancel,3 -no,no?,parrot,cancel,3 -thank_you,you've tried,parrot,bye,2 -how_busy,how busy will olive garden be at 7 pm,lambada,avail,0 -thank_you,please thank you,lambada,bye,2 -calendar_update,"put ""get tires checked"" on my calendar",original,resched,5 -how_busy,how busy the olive garden is at 730?,parrot,avail,0 -greeting,how is life treating you?,parrot,greet,4 -goodbye,just relax,parrot,bye,2 -greeting,aho,parrot,greet,4 -no,naw,parrot,cancel,3 -greeting,heyo,original,greet,4 -yes,that's correct,original,book,1 -how_busy,how long do i have to wait for shokudo,original,avail,0 -greeting,what's new here?,parrot,greet,4 -yes,perfect,parrot,book,1 -goodbye,nice talk,lambada,bye,2 -no,this is false,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -meeting_schedule,how long is the meeting with diana?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -no,not true,original,cancel,3 -goodbye,just relax,parrot,bye,2 -greeting,wassup,original,greet,4 -greeting,what's up?,parrot,greet,4 -greeting,salutations,parrot,greet,4 -yes,ya,original,book,1 -goodbye,farewell to you,lambada,bye,2 -no,false for sure,original,cancel,3 -yes,my answer is yes,parrot,book,1 -yes,perfect,parrot,book,1 -schedule_meeting,i need a room,parrot,book,1 -goodbye,just relax,parrot,bye,2 -how_busy,how long do i have to wait to go to the cheesecake factory?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -greeting,aloha,original,greet,4 -date,can you give me a date in 4 days,parrot,avail,0 -thank_you,good job trying to achieve something,parrot,bye,2 -reminder_update,"new reminder, please",original,resched,5 -goodbye,i have to go later on,parrot,bye,2 -no,"please, no",original,cancel,3 -meeting_schedule,please show me my meeting schedules for the day?,parrot,avail,0 -greeting,good morning,parrot,greet,4 -greeting,hello bs,parrot,greet,4 -yes,i agree,original,book,1 -no,negative certainly,parrot,cancel,3 -thank_you,you did it,parrot,bye,2 -goodbye,buhbye,original,bye,2 -greeting,yo,original,greet,4 -greeting,hi,original,greet,4 -no,say negative,parrot,cancel,3 -greeting,tell me how you're doing,parrot,greet,4 -how_busy,how long will i have to wait at red robin to get a table?,parrot,avail,0 -yes,it's true yes,parrot,book,1 -meeting_schedule,what are my calendar appointments?,parrot,avail,0 -no,no good,original,cancel,3 -date,please date,parrot,avail,0 -goodbye,thanks goodbye,parrot,bye,2 -yes,approved,original,book,1 -greeting,i need to know how you are doing,lambada,greet,4 -yes,i guess,parrot,book,1 -greeting,how are things treating you?,parrot,greet,4 -no,nope,original,cancel,3 -greeting,how are you doing today,lambada,greet,4 -calendar,what's my schedule for april 30th?,parrot,avail,0 -yes,agreed,original,book,1 -how_busy,are there queues at the cheese shop around 3 pm?,parrot,avail,0 -calendar,please tell me what is on my calendar for march 3rd,parrot,avail,0 -goodbye,farewell to you,lambada,bye,2 -meeting_schedule,when does richard meet me,parrot,avail,0 -goodbye,regards,original,bye,2 -no,no no no,parrot,cancel,3 -greeting,"hello, good day",lambada,greet,4 -greeting,hello,original,greet,4 -goodbye,tootles?,parrot,bye,2 -date,what is tomorrow?,parrot,avail,0 -greeting,heyo,original,greet,4 -goodbye,and i'll have to talk to you later,parrot,bye,2 -yes,yeap,original,book,1 -no,nope,original,cancel,3 -goodbye,afterward,parrot,bye,2 -no,that's no,parrot,cancel,3 -goodbye,peace,original,bye,2 -thank_you,thank you please,parrot,bye,2 -schedule_meeting,is there a meeting room between noon and 1pm?,parrot,book,1 -greeting,hello how is it going?,parrot,greet,4 -greeting,how do you feel?,parrot,greet,4 -how_busy,how long will it take me to get seated in olive garden for dinner,parrot,avail,0 -goodbye,sayonara,original,bye,2 -goodbye,see ya later,original,bye,2 -yes,say yes,lambada,book,1 -how_busy,how long can i wait at cheese cake factory,lambada,avail,0 -no,negative,original,cancel,3 -yes,"yes, please",parrot,book,1 -greeting,"hey, how's my day",lambada,greet,4 -meeting_schedule,are there meetings scheduled today?,parrot,avail,0 -calendar_update,please take the date off my calendar,parrot,resched,5 -thank_you,many thanks,original,bye,2 -meeting_schedule,i need to know when i have meetings with robert,lambada,avail,0 -greeting,good day,original,greet,4 -yes,perfect,parrot,book,1 -reminder_update,don't let me forget later,parrot,resched,5 -calendar,have you added any events to my calendar for april 1st?,parrot,avail,0 -greeting,how's life for you today,lambada,greet,4 -thank_you,you answered my questions,parrot,bye,2 -goodbye,i'm leaving,parrot,bye,2 -goodbye,i leave now,parrot,bye,2 -yes,is true,parrot,book,1 -goodbye,lovely conversation,parrot,bye,2 -date,current day,parrot,avail,0 -yes,positive,parrot,book,1 -thank_you,you've helped,parrot,bye,2 -thank_you,thanks for giving me assistance,original,bye,2 -goodbye,nice talk,lambada,bye,2 -yes,and you're right,parrot,book,1 -no,no way,original,cancel,3 -goodbye,i loved talking to you,parrot,bye,2 -thank_you,thanks!,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -cancel_reservation,please cancel the reservation at pat's,lambada,cancel,3 -greeting,hola!,original,greet,4 -yes,positive,parrot,book,1 -goodbye,later goodbye,parrot,bye,2 -calendar_update,remove the birthday party from my calendar,parrot,resched,5 -date,what's my date?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -goodbye,goodbye thank you,parrot,bye,2 -reminder_update,please reminder for car meet,original,resched,5 -no,FALSE,lambada,cancel,3 -reminder_update,reminder to prepare for my meeting at 5 pm,parrot,resched,5 -no,not a good idea,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -yes,huh,parrot,book,1 -schedule_meeting,i want you to schedule a meeting,lambada,book,1 -greeting,hello,original,greet,4 -no,no don't do that,parrot,cancel,3 -no,no,lambada,cancel,3 -greeting,heller,original,greet,4 -date,what's the date,original,avail,0 -date,what's on the calendar tomorrow?,parrot,avail,0 -no,"please, no",original,cancel,3 -date,today?,parrot,avail,0 -no,i believe it's wrong,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -greeting,and how's it going,parrot,greet,4 -yes,"correct, that's true",original,book,1 -yes,so it's true,parrot,book,1 -goodbye,farewell,original,bye,2 -goodbye,sayonara ,parrot,bye,2 -no,there is no,parrot,cancel,3 -yes,approved,original,book,1 -thank_you,you helped,parrot,bye,2 -date,current date,original,avail,0 -how_busy,show me the wait times at chili's?,parrot,avail,0 -greeting,are you good?,original,greet,4 -schedule_meeting,i need a meeting,parrot,book,1 -schedule_meeting,do you know how to schedule a meeting?,parrot,book,1 -goodbye,adios ai,original,bye,2 -yes,can we please?,original,book,1 -goodbye,we'll talk later ai,original,bye,2 -goodbye,see ya,lambada,bye,2 -yes,that's a fact,lambada,book,1 -goodbye,adios,original,bye,2 -cancel_reservation,can you cancel the reservation for kyle's party at red lobster?,original,cancel,3 -no,it is no,original,cancel,3 -no,so that's no,parrot,cancel,3 -yes,all right,parrot,book,1 -yes,right,parrot,book,1 -thank_you,nice,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -yes,sure thing,original,book,1 -schedule_meeting,i need to know how to schedule a meeting,original,book,1 -schedule_meeting,can you book a meeting room for monday at 5 pm,parrot,book,1 -no,that's no,parrot,cancel,3 -date,give me today's date,original,avail,0 -date,today?,parrot,avail,0 -how_busy,is the restaurant busy at dinner?,lambada,avail,0 -yes,exactly right,original,book,1 -thank_you,i have to thank you for your time,parrot,bye,2 -goodbye,adios!,original,bye,2 -thank_you,you answered,parrot,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -yes,"yes, please",parrot,book,1 -no,not right?,parrot,cancel,3 -no,would be no?,parrot,cancel,3 -goodbye,just relax,parrot,bye,2 -yes,obviously,parrot,book,1 -greeting,salutation,parrot,greet,4 -goodbye,thank you goodbye,original,bye,2 -yes,indeed,parrot,book,1 -thank_you,i'm thankful,original,bye,2 -goodbye,later gator!,original,bye,2 -cancel_reservation,cancel my reservation for tomorrow at the steakhouse,lambada,cancel,3 -no,it's overwhelmingly negative,parrot,cancel,3 -goodbye,bye,original,bye,2 -yes,ok,original,book,1 -greeting,how's everything?,parrot,greet,4 -thank_you,you're a great help,parrot,bye,2 -thank_you,i am grateful,lambada,bye,2 -goodbye,a good conversation,parrot,bye,2 -date,i need a date,parrot,avail,0 -yes,agreed,original,book,1 -greeting,how's my treatment?,parrot,greet,4 -thank_you,thanks again!,original,bye,2 -goodbye,see you soon,original,bye,2 -greeting,what do you feel?,parrot,greet,4 -goodbye,regards,original,bye,2 -calendar,please see my calendar,parrot,avail,0 -reminder_update,remember to remind me later on,parrot,resched,5 -no,that's a false,lambada,cancel,3 -yes,approved,original,book,1 -greeting,hiya,original,greet,4 -thank_you,thanks for the response,lambada,bye,2 -no,not good,parrot,cancel,3 -yes,perfect,parrot,book,1 -yes,sure,original,book,1 -how_busy,does the chipotle chopper have a good wait time around 5pm?,parrot,avail,0 -schedule_meeting,are there rooms available between 5 and 530?,original,book,1 -greeting,how it goes?,parrot,greet,4 -no,that's untrue,parrot,cancel,3 -yes,uh-huh,original,book,1 -cancel_reservation,remove my reservation for the dinner,parrot,cancel,3 -how_busy,i need to know how busy denny's is at 6 am,original,avail,0 -greeting,hey hey!,original,greet,4 -goodbye,bye,original,bye,2 -how_busy,can you tell me if cheesecake factory is busy right now?,lambada,avail,0 -yes,that's right,original,book,1 -reminder_update,please remember to clean the floor,parrot,resched,5 -yes,positive,parrot,book,1 -greeting,bonjour,original,greet,4 -greeting,whats up?,parrot,greet,4 -no,that's so false,parrot,cancel,3 -goodbye,"thanks, bye",original,bye,2 -yes,and you're correct,parrot,book,1 -thank_you,thanks for answering that,lambada,bye,2 -yes,yeah yeah,lambada,book,1 -yes,i would say yes,lambada,book,1 -goodbye,goodbyes,parrot,bye,2 -yes,good,parrot,book,1 -thank_you,i'm thankful,original,bye,2 -date,please explain today,parrot,avail,0 -goodbye,sayonara,original,bye,2 -no,i disagree,parrot,cancel,3 -goodbye,bye-bye,original,bye,2 -goodbye,adios!,original,bye,2 -greeting,so how's everything?,parrot,greet,4 -no,negative,original,cancel,3 -no,most definitely false,parrot,cancel,3 -no,it's false,parrot,cancel,3 -how_busy,how long is the wait at applebee tonight?,parrot,avail,0 -yes,it's a fact,parrot,book,1 -yes,it also makes sense,parrot,book,1 -yes,affirmitive,original,book,1 -calendar,tell me what's on my calendar for march 23rd?,parrot,avail,0 -reminder_update,new reminder please,lambada,resched,5 -goodbye,"i enjoyed talking to you, see you soon",lambada,bye,2 -calendar,tell me what's on my calendar for march 14th?,lambada,avail,0 -goodbye,bye bye,lambada,bye,2 -yes,ok,original,book,1 -goodbye,goodbye bye,parrot,bye,2 -yes,uh huh,original,book,1 -meeting_schedule,do you have any meetings between 6 and 7 today?,parrot,avail,0 -greeting,hello bs,parrot,greet,4 -no,negatory,original,cancel,3 -greeting,bonjour,original,greet,4 -no,this is a hard no,parrot,cancel,3 -thank_you,thanks again!,original,bye,2 -yes,affirmitive,original,book,1 -greeting,how's otc?,parrot,greet,4 -yes,correct,original,book,1 -no,you are wrong,original,cancel,3 -no,that's the wrong answer,parrot,cancel,3 -schedule_meeting,please get together with matthew,parrot,book,1 -date,which day is next,parrot,avail,0 -greeting,how're you?,parrot,greet,4 -yes,okay,original,book,1 -how_busy,please tell me the crowd in this restaurant?,parrot,avail,0 -goodbye,bye,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -no,negating,parrot,cancel,3 -greeting,"hey, ai",original,greet,4 -no,naw,parrot,cancel,3 -goodbye,later,original,bye,2 -goodbye,tootles,original,bye,2 -yes,correct,original,book,1 -yes,definitely,original,book,1 -yes,a fact,parrot,book,1 -goodbye,tata for now,original,bye,2 -no,not that,original,cancel,3 -yes,that's a true statement,lambada,book,1 -date,what's the name of today?,parrot,avail,0 -goodbye,thanks bye bye!,original,bye,2 -greeting,how are you doing today?,parrot,greet,4 -greeting,how's the world?,parrot,greet,4 -thank_you,thanks for the information you gave,parrot,bye,2 -goodbye,good speaking to you,original,bye,2 -greeting,hi there,original,greet,4 -thank_you,very grateful,parrot,bye,2 -no,nay,original,cancel,3 -how_busy,would you say ihop is busy around 3:30pm,lambada,avail,0 -thank_you,you answered,parrot,bye,2 -yes,yeah,original,book,1 -yes,TRUE,lambada,book,1 -goodbye,adios!,original,bye,2 -yes,huh,parrot,book,1 -schedule_meeting,can you make a meeting room?,parrot,book,1 -thank_you,you've given me it,parrot,bye,2 -how_busy,how busy will i be at tadao's,lambada,avail,0 -greeting,"hello, ai",original,greet,4 -greeting,hey what's going on?,parrot,greet,4 -goodbye,maybe i'll see you,parrot,bye,2 -how_busy,is the wait time very long in this restaurant?,parrot,avail,0 -yes,let's do it,parrot,book,1 -how_busy,how long do you think i'll have to wait for a table at olive garden,lambada,avail,0 -no,that's a negation,parrot,cancel,3 -yes,positive,parrot,book,1 -greeting,hey how's ot,lambada,greet,4 -yes,i know what i get,parrot,book,1 -goodbye,later,original,bye,2 -no,no?,parrot,cancel,3 -goodbye,farewell!,original,bye,2 -reminder_update,my cat needs neutered,parrot,resched,5 -thank_you,i appreciate you doing that,original,bye,2 -no,that’s incorrect,original,cancel,3 -greeting,"hey, how are you",original,greet,4 -thank_you,nice,parrot,bye,2 -yes,indeed,parrot,book,1 -greeting,wassup,original,greet,4 -goodbye,good talk,parrot,bye,2 -thank_you,you've tried,parrot,bye,2 -thank_you,much obliged,original,bye,2 -thank_you,please thank you for my work,parrot,bye,2 -goodbye,peace,original,bye,2 -greeting,what's happened?,parrot,greet,4 -thank_you,you've been great,parrot,bye,2 -greeting,what do you feel?,parrot,greet,4 -how_busy,how busy will red lobster be at noon,lambada,avail,0 -greeting,how's life,original,greet,4 -no,this is false,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -thank_you,i'm happy you've helped me,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -goodbye,goodbye to your,lambada,bye,2 -thank_you,thanks for responding,parrot,bye,2 -no,it would be false,parrot,cancel,3 -how_busy,how busy is the cheesecake factory at 7 am,lambada,avail,0 -yes,im sure you're true,parrot,book,1 -greeting,heller,original,greet,4 -yes,say yes,lambada,book,1 -greeting,heller,original,greet,4 -thank_you,i'm glad you laughed,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -no,it is no,original,cancel,3 -goodbye,i'm leaving,parrot,bye,2 -no,no,lambada,cancel,3 -no,no,lambada,cancel,3 -yes,yes,original,book,1 -how_busy,are there queues at the cheese shop around 3pm?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -yes,great,original,book,1 -thank_you,okay thanks,original,bye,2 -date,what day of the month is that?,parrot,avail,0 -calendar_update,remove events on friday from my calendar,lambada,resched,5 -no,that's not it,parrot,cancel,3 -goodbye,regards,original,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -yes,uh huh,original,book,1 -yes,yes,original,book,1 -yes,huh,parrot,book,1 -yes,right,parrot,book,1 -how_busy,i want to know how busy red robin is at 6 pm,lambada,avail,0 -thank_you,thanks very much,parrot,bye,2 -thank_you,appreciated,original,bye,2 -date,what's today?,parrot,avail,0 -cancel_reservation,can you tell the restaurant to cancel my reservation?,parrot,cancel,3 -yes,facts,original,book,1 -goodbye,peace,original,bye,2 -thank_you,"oh, thanks",original,bye,2 -greeting,hola!,original,greet,4 -greeting,what's my day like?,parrot,greet,4 -yes,confirm,original,book,1 -how_busy,how busy will chili be around 7pm?,parrot,avail,0 -meeting_schedule,how much time is scheduled for my meeting?,parrot,avail,0 -yes,that seems true,original,book,1 -reminder_update,please set up a reminder for my hair appointment,parrot,resched,5 -greeting,heyo,original,greet,4 -date,calender says tomorrow is,original,avail,0 -yes,positive,original,book,1 -goodbye,goodbye!,original,bye,2 -goodbye,good seeing you,original,bye,2 -goodbye,goodbye later,parrot,bye,2 -goodbye,adios!,original,bye,2 -how_busy,how busy will i be at 5 pm?,parrot,avail,0 -calendar,can you check if i added an event to my calendar?,lambada,avail,0 -greeting,well hello,original,greet,4 -meeting_schedule,how long is the meeting between saturday and sunday?,parrot,avail,0 -how_busy,can i know how long is the wait at pizza parlor at noon?,lambada,avail,0 -goodbye,good luck,lambada,bye,2 -no,don't agree,parrot,cancel,3 -no,no?,parrot,cancel,3 -yes,good yes,lambada,book,1 -meeting_schedule,what meeting are i scheduled for today?,lambada,avail,0 -thank_you,i have to thank you for your time,parrot,bye,2 -yes,right,parrot,book,1 -no,not good idea,parrot,cancel,3 -how_busy,how busy is this cheesecake factory right now?,parrot,avail,0 -no,it's negative,parrot,cancel,3 -reminder_update,make a reminder please,parrot,resched,5 -greeting,well hi there,original,greet,4 -how_busy,show the chances that i'll have a good time if i go to applebee's at 5pm?,parrot,avail,0 -thank_you,thanks so much!,original,bye,2 -goodbye,great conversation,parrot,bye,2 -greeting,how's life for you?,parrot,greet,4 -how_busy,wait how long?,parrot,avail,0 -no,that's no,parrot,cancel,3 -greeting,hey,original,greet,4 -date,today?,parrot,avail,0 -yes,that's true,original,book,1 -cancel_reservation,can i cancel my reservation for dinner on friday please,parrot,cancel,3 -how_busy,how long will i have to wait for a table in louisiana?,parrot,avail,0 -yes,i agree,original,book,1 -yes,yes,original,book,1 -yes,oh-huh,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,hello are you doing well?,parrot,greet,4 -goodbye,i’m leaving-goodbye!,original,bye,2 -calendar,do you have appointments for saturday?,parrot,avail,0 -no,negatory,original,cancel,3 -goodbye,"nice talk, goodbye",lambada,bye,2 -greeting,what's happening,original,greet,4 -schedule_meeting,how do i set up a meeting with someone?,parrot,book,1 -goodbye,i'm going,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -no,i mean no,parrot,cancel,3 -yes,certainly,parrot,book,1 -no,i say negative,original,cancel,3 -no,FALSE,lambada,cancel,3 -goodbye,maybe next time,parrot,bye,2 -no,"no, it's not",lambada,cancel,3 -goodbye,goodnight,original,bye,2 -no,negation,parrot,cancel,3 -greeting,"hey, what's up with you",lambada,greet,4 -yes,perfect,parrot,book,1 -greeting,bonjour,original,greet,4 -how_busy,can you tell me how long will the wait be at tucson shrimps today?,lambada,avail,0 -yes,i'll say yes,parrot,book,1 -thank_you,you're the best!,original,bye,2 -no,FALSE,original,cancel,3 -goodbye,greetings,parrot,bye,2 -greeting,how's life,original,greet,4 -how_busy,how long will it take me to get a table at the cheesecake factory,lambada,avail,0 -goodbye,buhbye now,lambada,bye,2 -thank_you,thank you,original,bye,2 -calendar_update,on 22 of this month we need to clear our calendar so we can leave it open for mark to visit,parrot,resched,5 -calendar_update,make sure 1 june is cleared on my calendar,parrot,resched,5 -goodbye,goodbye soon,lambada,bye,2 -thank_you,you've been great,parrot,bye,2 -thank_you,i appeciate it,parrot,bye,2 -yes,yes,original,book,1 -how_busy,how long is the wait time at the italian place,lambada,avail,0 -greeting,hey hey!,original,greet,4 -how_busy,if i want a table at chipotle how long will it take,parrot,avail,0 -greeting,yo how is it going?,parrot,greet,4 -yes,absolutely!,original,book,1 -no,nay,original,cancel,3 -yes,i can tell you,parrot,book,1 -goodbye,fairwell,original,bye,2 -goodbye,goodnight,original,bye,2 -goodbye,goodbye!,original,bye,2 -greeting,what's new?,parrot,greet,4 -calendar_update,clear my calendar for friday,lambada,resched,5 -cancel_reservation,delete my dinner reservation,parrot,cancel,3 -yes,say positive,parrot,book,1 -yes,it's true,original,book,1 -no,it'd be awful,parrot,cancel,3 -no,that is no,lambada,cancel,3 -thank_you,okay thank you,parrot,bye,2 -greeting,how're you?,parrot,greet,4 -yes,positive,parrot,book,1 -yes,ya,original,book,1 -no,"no, it is not true",lambada,cancel,3 -reminder_update,tell me to call my mom,parrot,resched,5 -no,negative,original,cancel,3 -date,tell me the date i need to go to next?,lambada,avail,0 -no,"i don't believe that is possible, it is false",original,cancel,3 -reminder_update,i need to remind myself,parrot,resched,5 -goodbye,later gator!,original,bye,2 -reminder_update,remember to workout at the gym,parrot,resched,5 -date,list the current date?,parrot,avail,0 -yes,yes that's right,lambada,book,1 -yes,10-Apr,original,book,1 -yes,my answer is yes,parrot,book,1 -yes,absolutely!,original,book,1 -no,but it's wrong,parrot,cancel,3 -no,not correct,parrot,cancel,3 -thank_you,thank you for the money,parrot,bye,2 -goodbye,peace,original,bye,2 -greeting,how was my day?,parrot,greet,4 -greeting,yo,original,greet,4 -thank_you,you've given me it,parrot,bye,2 -goodbye,later,original,bye,2 -yes,accepted,original,book,1 -no,nada,original,cancel,3 -no,i say negative,original,cancel,3 -greeting,how's life?,parrot,greet,4 -yes,confirm,original,book,1 -goodbye,good talk,parrot,bye,2 -goodbye,just relax,parrot,bye,2 -goodbye,farewell to you,lambada,bye,2 -calendar_update,you can remove the date of play from my calendar for february 18 2019,parrot,resched,5 -greeting,how does ai feel?,parrot,greet,4 -no,negation,parrot,cancel,3 -no,it's false,parrot,cancel,3 -how_busy,is jacks steakhouse usually packed?,parrot,avail,0 -yes,roger that,original,book,1 -cancel_reservation,please cancel my lunch reservation,lambada,cancel,3 -goodbye,need to talk with you,parrot,bye,2 -no,i'd rather not answer that,parrot,cancel,3 -calendar,what's my schedule for thursday?,parrot,avail,0 -reminder_update,keep setting reminders for storing money,parrot,resched,5 -calendar_update,take work off of my calendar for may 7th,parrot,resched,5 -no,that's a no,lambada,cancel,3 -no,negative sure,parrot,cancel,3 -no,no it's not,parrot,cancel,3 -greeting,hola!,original,greet,4 -goodbye,adios,original,bye,2 -yes,uh huh,original,book,1 -yes,say positive,parrot,book,1 -no,nada,original,cancel,3 -goodbye,buhbye now,lambada,bye,2 -goodbye,later,original,bye,2 -goodbye,i must say goodbye,original,bye,2 -no,nay,original,cancel,3 -no,nay,original,cancel,3 -schedule_meeting,please arrange for a meeting with matthew,parrot,book,1 -yes,sure,original,book,1 -goodbye,afterward,parrot,bye,2 -greeting,hey fellows,parrot,greet,4 -no,that's not acceptable,parrot,cancel,3 -meeting_schedule,check my schedule today,parrot,avail,0 -no,negation,parrot,cancel,3 -yes,uh-huh,original,book,1 -calendar_update,can you remove the cook-out from the calendar for june 29th?,parrot,resched,5 -greeting,bonjour,original,greet,4 -goodbye,have to run,parrot,bye,2 -no,that is incorrect,original,cancel,3 -greeting,what's happening?,parrot,greet,4 -how_busy,how busy is cheesecake factory at 7:00,lambada,avail,0 -meeting_schedule,is there any meeting between 2 and 5?,parrot,avail,0 -no,definitely not,original,cancel,3 -goodbye,thanks for the great talk,parrot,bye,2 -yes,good,parrot,book,1 -calendar,tell me what my calendar looks like on march 1?,parrot,avail,0 -no,that is overwhelmingly wrong,lambada,cancel,3 -schedule_meeting,are there meeting rooms available between 4-8?,original,book,1 -yes,yay,lambada,book,1 -greeting,whats up?,parrot,greet,4 -how_busy,do you know the busy times at olive garden?,lambada,avail,0 -calendar,is event on my calendar?,original,avail,0 -yes,affirmative,original,book,1 -calendar,show me what's on my calendar for march 26?,parrot,avail,0 -goodbye,the talk was nice,lambada,bye,2 -yes,yeah,original,book,1 -greeting,what's happening,original,greet,4 -how_busy,how busy is the steak house around midnight?,parrot,avail,0 -yes,TRUE,lambada,book,1 -yes,it's a yes from me,parrot,book,1 -schedule_meeting,let me know how to make a meeting,parrot,book,1 -meeting_schedule,on what day is my meeting with dr lee,original,avail,0 -date,please date,parrot,avail,0 -yes,affirmative,original,book,1 -yes,so it's real,parrot,book,1 -yes,okay,original,book,1 -no,no good,original,cancel,3 -yes,you got it,original,book,1 -yes,10-Apr,original,book,1 -thank_you,appreciated,original,bye,2 -no,negation,parrot,cancel,3 -yes,affirmitive,original,book,1 -thank_you,many thank,original,bye,2 -no,nothing good,parrot,cancel,3 -schedule_meeting,please schedule a meeting with marnie at 9am,parrot,book,1 -date,give me the date for tomorrow,parrot,avail,0 -yes,"yup, that's true",original,book,1 -no,that's untrue,parrot,cancel,3 -how_busy,how long will i have to wait to get seated at the imovie,parrot,avail,0 -thank_you,"oh, thanks",original,bye,2 -goodbye,bye bye,lambada,bye,2 -how_busy,how busy the restaurant is today?,parrot,avail,0 -yes,perfect,parrot,book,1 -greeting,how's my life today?,parrot,greet,4 -how_busy,is this pizza place a long wait?,parrot,avail,0 -cancel_reservation,please cancel my reservation for winters at the palace tonight?,parrot,cancel,3 -no,certainly false,parrot,cancel,3 -yes,correct,original,book,1 -yes,correct,original,book,1 -thank_you,thankyou,parrot,bye,2 -yes,great,original,book,1 -greeting,how's life for you today,lambada,greet,4 -greeting,aloha,original,greet,4 -no,negative definitely,parrot,cancel,3 -no,"nope, that's false",original,cancel,3 -yes,that's true,original,book,1 -yes,approved,original,book,1 -yes,it's true,original,book,1 -no,negatory,original,cancel,3 -greeting,yo how is this going?,parrot,greet,4 -greeting,how's otc?,parrot,greet,4 -greeting,what's new,lambada,greet,4 -no,negation,parrot,cancel,3 -date,i'd like to know the date for today,parrot,avail,0 -how_busy,can you tell me what the wait is like at the olive garden right now?,lambada,avail,0 -thank_you,awesome thanks,parrot,bye,2 -meeting_schedule,wanna meet with roger?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -yes,TRUE,lambada,book,1 -meeting_schedule,please tell me what types of meetings i'm going to attend between noon and 3pm,lambada,avail,0 -thank_you,i'm happy you've helped me,parrot,bye,2 -yes,yes i know it's true,lambada,book,1 -no,that's inaccurate,original,cancel,3 -goodbye,tata for now,original,bye,2 -greeting,aloha,original,greet,4 -no,false sure,parrot,cancel,3 -goodbye,later,original,bye,2 -thank_you,you've been a great support,parrot,bye,2 -calendar_update,please add to my calendar for the staff meeting scheduled for march 1 2019 at 10 am please,parrot,resched,5 -reminder_update,"new reminder, please",original,resched,5 -greeting,bonjour,original,greet,4 -yes,10-Apr,original,book,1 -yes,good,parrot,book,1 -greeting,how's my life going?,parrot,greet,4 -thank_you,why thank you?,original,bye,2 -goodbye,say goodbye now,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -yes,it makes sense,parrot,book,1 -thank_you,you've been great,parrot,bye,2 -thank_you,awesome thanks,parrot,bye,2 -thank_you,"awesome, thanks",original,bye,2 -no,no that's not it,parrot,cancel,3 -greeting,what's new?,parrot,greet,4 -reminder_update,keep an eye on me,parrot,resched,5 -reminder_update,put a reminder for lunch at 10am,lambada,resched,5 -yes,uh-huh,original,book,1 -reminder_update,set a reminder to go check my mail,lambada,resched,5 -greeting,bonjour,original,greet,4 -no,negatory?,parrot,cancel,3 -how_busy,is immaculate around 6 dinner?,lambada,avail,0 -how_busy,show me the wait time at olive garden?,parrot,avail,0 -thank_you,good looking out,original,bye,2 -greeting,salutation,parrot,greet,4 -thank_you,thanks for cooperating,parrot,bye,2 -reminder_update,please add a reminder,lambada,resched,5 -how_busy,how long will the restaurant be before we leave,parrot,avail,0 -yes,definitely,original,book,1 -thank_you,gracias,original,bye,2 -how_busy,how busy is cocoa baker around dinner,lambada,avail,0 -date,what year?,parrot,avail,0 -no,no please,parrot,cancel,3 -greeting,can you tell me how the ai is doing?,lambada,greet,4 -reminder_update,just a reminder,parrot,resched,5 -goodbye,on the highway,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,goodbye bye,parrot,bye,2 -thank_you,many thank,original,bye,2 -cancel_reservation,can you cancel my reservation at the restaurant?,lambada,cancel,3 -cancel_reservation,what if i want to cancel my reservation?,parrot,cancel,3 -greeting,what's new?,parrot,greet,4 -greeting,get up ai,parrot,greet,4 -date,what will the date be tomorrow?,lambada,avail,0 -greeting,how's idy doing?,parrot,greet,4 -no,is my false statement?,parrot,cancel,3 -goodbye,bye,original,bye,2 -meeting_schedule,is my meeting with jim planned?,parrot,avail,0 -thank_you,gracias,original,bye,2 -how_busy,how many people are at the olive garden at 7?,parrot,avail,0 -how_busy,how long will it take to eat at the cheese cake factory?,parrot,avail,0 -greeting,and what's up?,parrot,greet,4 -yes,"yes, please",original,book,1 -how_busy,is ihop busy around 9?,lambada,avail,0 -greeting,salutation,parrot,greet,4 -goodbye,talk to you later,original,bye,2 -goodbye,goodbye to your,lambada,bye,2 -how_busy,chili's busy around 730?,parrot,avail,0 -goodbye,nice talk,lambada,bye,2 -yes,agreed,original,book,1 -goodbye,nice seeing you bye,original,bye,2 -greeting,what's happening?,parrot,greet,4 -calendar_update,can you remove this event from my calendar please?,parrot,resched,5 -greeting,what's new?,parrot,greet,4 -no,naw,original,cancel,3 -thank_you,thank you!,original,bye,2 -yes,yes i am,original,book,1 -greeting,aloha,original,greet,4 -meeting_schedule,plan my meetings for today,parrot,avail,0 -yes,ya,original,book,1 -yes,yes,original,book,1 -greeting,heyo,original,greet,4 -yes,huh,parrot,book,1 -no,it's so bad,parrot,cancel,3 -goodbye,later,original,bye,2 -no,it seems wrong,parrot,cancel,3 -goodbye,bye,original,bye,2 -goodbye,goodbye!,original,bye,2 -yes,yep,original,book,1 -yes,very true,original,book,1 -yes,that is right,original,book,1 -calendar,let me know what's currently on my calendar for march 26th,parrot,avail,0 -calendar,recommend some events scheduled for april 15?,parrot,avail,0 -date,what date is tomorrow,parrot,avail,0 -calendar,is there a calendar for march 31?,parrot,avail,0 -greeting,"hello, friend",original,greet,4 -yes,yeah yeah,lambada,book,1 -greeting,whats new,lambada,greet,4 -yes,facts,original,book,1 -yes,affirmative,original,book,1 -goodbye,farewell!,original,bye,2 -greeting,why hello?,original,greet,4 -yes,"yes, that's accurate",original,book,1 -cancel_reservation,cancel my reservation at odeon,lambada,cancel,3 -how_busy,how long will the wait be for dinner at the tandoor?,parrot,avail,0 -thank_you,i'm really thankful,parrot,bye,2 -yes,affirmative,original,book,1 -schedule_meeting,please schedule a meeting with steven?,parrot,book,1 -yes,confirm,original,book,1 -schedule_meeting,can you sign me up for a meeting in the blue room at 8 o'clock?,parrot,book,1 -no,nothing,parrot,cancel,3 -date,what's the date now,parrot,avail,0 -greeting,ahoy hoy,original,greet,4 -yes,say positive,parrot,book,1 -yes,right,parrot,book,1 -yes,all right,parrot,book,1 -no,but no way?,parrot,cancel,3 -no,not happening,original,cancel,3 -yes,do that?,original,book,1 -yes,"yes, that is it",original,book,1 -how_busy,is tilman's busy at 5?,lambada,avail,0 -no,it seems wrong,parrot,cancel,3 -no,but we don't want that,parrot,cancel,3 -yes,TRUE,lambada,book,1 -yes,yeap,original,book,1 -yes,oh-huh,parrot,book,1 -greeting,hiya,original,greet,4 -thank_you,thanks for helping me!,original,bye,2 -goodbye,later!,original,bye,2 -yes,agreed,original,book,1 -yes,absolutely,original,book,1 -yes,huh,parrot,book,1 -yes,accept,parrot,book,1 -schedule_meeting,can you book a meeting with matt for 3?,parrot,book,1 -cancel_reservation,call my reservation cancelled,parrot,cancel,3 -calendar,can you check my calendar for march 5?,parrot,avail,0 -date,please explain today,parrot,avail,0 -no,naw,parrot,cancel,3 -yes,yes,original,book,1 -yes,"yes, please",parrot,book,1 -yes,approved,original,book,1 -calendar_update,eliminate all my birthday celebrations from my calendar,parrot,resched,5 -no,that's no,parrot,cancel,3 -goodbye,bye bye now,lambada,bye,2 -no,it's a no,original,cancel,3 -greeting,hiya,original,greet,4 -cancel_reservation,i booked chris at tony's please cancel it,parrot,cancel,3 -yes,okay,original,book,1 -greeting,so how's everything?,parrot,greet,4 -thank_you,thanks,original,bye,2 -thank_you,a million thanks,parrot,bye,2 -yes,oh-huh,parrot,book,1 -yes,yep,original,book,1 -goodbye,fairwell,original,bye,2 -yes,that's true,original,book,1 -how_busy,how long will it take to be seated at the mw steakhouse?,parrot,avail,0 -goodbye,bye,original,bye,2 -meeting_schedule,how much time is my meeting planned for?,parrot,avail,0 -yes,great,original,book,1 -no,no,lambada,cancel,3 -greeting,hello there,original,greet,4 -no,the negator,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -no,i think it's wrong,parrot,cancel,3 -how_busy,can i expect chilis to be crowded before 5?,parrot,avail,0 -no,not really,original,cancel,3 -date,please share today's date,original,avail,0 -yes,"yeah, that's right",original,book,1 -goodbye,goodbye,original,bye,2 -goodbye,sayonara,original,bye,2 -greeting,ahoy,lambada,greet,4 -calendar_update,i must add something to my calendar for next week,parrot,resched,5 -goodbye,thank you goodbye,original,bye,2 -how_busy,how busy is olive garden at 7:00,lambada,avail,0 -yes,indeed,original,book,1 -no,it's false,parrot,cancel,3 -date,what is tomorrow?,parrot,avail,0 -yes,accept,parrot,book,1 -yes,certainly,parrot,book,1 -date,do you know what the date of the day will be?,lambada,avail,0 -greeting,"howdy, what's new",original,greet,4 -goodbye,goodbye goodbye,parrot,bye,2 -how_busy,how long will it be before i'm seated in the red lobster?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -how_busy,how busy will chili be at 730?,parrot,avail,0 -greeting,hi ai,original,greet,4 -thank_you,thanks for doing it,parrot,bye,2 -greeting,aho,parrot,greet,4 -yes,yes,original,book,1 -reminder_update,when it rains remember to shut the windows,parrot,resched,5 -yes,i'd say that's true,parrot,book,1 -no,that's so wrong,parrot,cancel,3 -greeting,what's up?,parrot,greet,4 -calendar_update,take lunch off of my calendar on the 3rd,parrot,resched,5 -greeting,aho,parrot,greet,4 -greeting,good day,original,greet,4 -how_busy,is it busy in italy?,parrot,avail,0 -meeting_schedule,when's the meeting?,parrot,avail,0 -greeting,hola,original,greet,4 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -goodbye,tootles,original,bye,2 -goodbye,see you soon,original,bye,2 -goodbye,take it easy,lambada,bye,2 -meeting_schedule,when's my meeting?,parrot,avail,0 -how_busy,if i want a table at chili's how long will it take?,parrot,avail,0 -calendar,is there anything on my calendar for march 2nd?,parrot,avail,0 -goodbye,i'm going,parrot,bye,2 -no,nope that's not it,original,cancel,3 -thank_you,i'm very grateful,parrot,bye,2 -date,what is the date?,original,avail,0 -no,not happening,original,cancel,3 -thank_you,well done,parrot,bye,2 -how_busy,how long does it take to get a table in the olive garden?,parrot,avail,0 -goodbye,i'll see you later,lambada,bye,2 -how_busy,what's the wait time at olive garden,lambada,avail,0 -how_busy,is the wait at iberia long?,parrot,avail,0 -greeting,whats new,lambada,greet,4 -thank_you,i appreciate the answer,parrot,bye,2 -yes,definitely,original,book,1 -no,that's negative,parrot,cancel,3 -schedule_meeting,please schedule a meeting with sam at 1pm?,parrot,book,1 -goodbye,peace,original,bye,2 -how_busy,is ihop busy around 5?,lambada,avail,0 -goodbye,goodbye,original,bye,2 -greeting,how's idy?,parrot,greet,4 -goodbye,send a goodbye,lambada,bye,2 -date,what today?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -greeting,how's life?,parrot,greet,4 -goodbye,afterward,parrot,bye,2 -thank_you,"nice, excellent!",original,bye,2 -goodbye,adios,original,bye,2 -date,today?,parrot,avail,0 -how_busy,how long will the wait be at chinese onuys,lambada,avail,0 -yes,TRUE,original,book,1 -no,that’s incorrect,original,cancel,3 -goodbye,later!,original,bye,2 -yes,yes it's true,lambada,book,1 -yes,TRUE,lambada,book,1 -thank_you,thanks for my help,original,bye,2 -goodbye,see you later!,original,bye,2 -yes,good,parrot,book,1 -reminder_update,remind me,original,resched,5 -calendar,please check my calendar for tuesday?,parrot,avail,0 -thank_you,so grateful,parrot,bye,2 -greeting,how is everything?,parrot,greet,4 -greeting,hi how is everything,original,greet,4 -yes,yup,original,book,1 -goodbye,goodbye!,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -yes,yeap,original,book,1 -goodbye,adios!,original,bye,2 -no,thanks no,parrot,cancel,3 -how_busy,wait at the cheese cake factory long?,parrot,avail,0 -greeting,aloha,original,greet,4 -greeting,how are things,original,greet,4 -yes,10-Apr,original,book,1 -no,negation,parrot,cancel,3 -meeting_schedule,what's the meeting today?,parrot,avail,0 -yes,yep,original,book,1 -reminder_update,remember to bring a checkbook,parrot,resched,5 -goodbye,farewell!,original,bye,2 -greeting,good evening,original,greet,4 -yes,accepted,original,book,1 -no,not good,parrot,cancel,3 -how_busy,what's the typical wait in an italian restaurant right now?,parrot,avail,0 -date,what date will it be in 7 days?,parrot,avail,0 -greeting,hiya,original,greet,4 -yes,perfect,parrot,book,1 -yes,that is correct,original,book,1 -schedule_meeting,recommend some of the best ways to schedule a meeting?,parrot,book,1 -how_busy,can you tell me how busy olive garden is at 6:30?,lambada,avail,0 -goodbye,fairwell,original,bye,2 -no,this statement is false,parrot,cancel,3 -goodbye,on the road,parrot,bye,2 -cancel_reservation,must cancel my reservation in hawaii for next week,parrot,cancel,3 -greeting,hi,original,greet,4 -greeting,hi,original,greet,4 -cancel_reservation,i won't need the reservation,parrot,cancel,3 -no,naw,parrot,cancel,3 -goodbye,"thanks for chatting, bye",lambada,bye,2 -date,i have to know the date,parrot,avail,0 -how_busy,how busy will the panera be at noon,parrot,avail,0 -goodbye,goodbye later,parrot,bye,2 -greeting,how you're doing?,parrot,greet,4 -calendar_update,please clean my calendar,parrot,resched,5 -goodbye,i'll leave,parrot,bye,2 -thank_you,thanks!,original,bye,2 -goodbye,sayonara,original,bye,2 -greeting,how's my family going?,parrot,greet,4 -goodbye,goodbye helpful ai devices,parrot,bye,2 -reminder_update,"new reminder, please",original,resched,5 -no,it's no,parrot,cancel,3 -cancel_reservation,i have to cancel my reservation for barclay's,parrot,cancel,3 -greeting,how's this going?,parrot,greet,4 -thank_you,youre a doll,original,bye,2 -meeting_schedule,is my meeting with jim planned?,parrot,avail,0 -no,negative,original,cancel,3 -how_busy,will i be able to get a seat at 5pm,original,avail,0 -yes,positive,original,book,1 -no,not correct,parrot,cancel,3 -how_busy,when is macaroni grill busy?,parrot,avail,0 -date,describe the day?,parrot,avail,0 -how_busy,how busy is the asian restaurant at 5:30,lambada,avail,0 -date,what the day?,parrot,avail,0 -no,it's negative,parrot,cancel,3 -date,let me know what's the day?,parrot,avail,0 -yes,i'm going to tell you tes,parrot,book,1 -how_busy,do people in tv towns go to ios to eat at ios 9?,parrot,avail,0 -yes,yep,original,book,1 -schedule_meeting,set up a meeting,parrot,book,1 -yes,TRUE,lambada,book,1 -greeting,hiya,original,greet,4 -goodbye,later good luck,parrot,bye,2 -date,i need to know what today's date is,lambada,avail,0 -how_busy,how long will i wait if i go to the steakhouse in the outback,parrot,avail,0 -yes,accept,parrot,book,1 -date,what's the date tomorrow,original,avail,0 -goodbye,talk later,original,bye,2 -goodbye,regards,original,bye,2 -no,that's incorrect,original,cancel,3 -thank_you,thank you!,original,bye,2 -greeting,bonjour,original,greet,4 -greeting,how's the world?,parrot,greet,4 -goodbye,adios!,original,bye,2 -how_busy,how long will it take for me to be seated at the chipotle,lambada,avail,0 -date,give me the date today,original,avail,0 -goodbye,bye now,original,bye,2 -yes,very true,original,book,1 -yes,perfect,parrot,book,1 -date,what will it be in 500 days?,parrot,avail,0 -goodbye,i'm out,parrot,bye,2 -goodbye,we'll talk later ai,original,bye,2 -yes,yay,lambada,book,1 -date,give me the date for tomorrow please,parrot,avail,0 -greeting,yo,original,greet,4 -yes,positive,parrot,book,1 -greeting,hi what's going on,parrot,greet,4 -date,which day is next?,parrot,avail,0 -calendar,do i have appointments for april 3rd?,parrot,avail,0 -goodbye,later,original,bye,2 -no,no?,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -yes,all right,parrot,book,1 -no,negation,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -calendar,i need to know what's on my calendar for friday the 1st,parrot,avail,0 -cancel_reservation,do not need to put on my dinner reservation?,lambada,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,appreciated,original,bye,2 -no,"please, no",original,cancel,3 -yes,accepted,original,book,1 -date,in five days?,parrot,avail,0 -greeting,whats up with you,original,greet,4 -greeting,salutation,parrot,greet,4 -yes,i vote yes,original,book,1 -greeting,how are things?,parrot,greet,4 -how_busy,can you tell me how long the wait is in the pizza factory?,parrot,avail,0 -yes,that would be awesome,original,book,1 -how_busy,does applebee's have a busy wait time at 5?,lambada,avail,0 -no,that isn't correct,original,cancel,3 -schedule_meeting,i need a meeting for john at 9 o'clock,parrot,book,1 -greeting,how ya doing,lambada,greet,4 -date,in 4 days what date will it be?,parrot,avail,0 -yes,absolutely correct,original,book,1 -yes,"yup, that's true",original,book,1 -thank_you,thanks for the information,parrot,bye,2 -yes,i guess,parrot,book,1 -date,is it six days?,parrot,avail,0 -yes,oh yes,original,book,1 -goodbye,"that's all, bye",original,bye,2 -yes,that is not false,original,book,1 -date,what's my day?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -calendar,what's tuesday's calendar?,parrot,avail,0 -how_busy,how long will i be able to wait for a table at the tiffany steakhouse,parrot,avail,0 -goodbye,goodnight,original,bye,2 -reminder_update,remind me to call a vet tomorrow,parrot,resched,5 -goodbye,buhbye,original,bye,2 -goodbye,tootles?,parrot,bye,2 -greeting,how's life?,parrot,greet,4 -greeting,ahoy,lambada,greet,4 -date,tell me the current date?,parrot,avail,0 -no,definitely not,original,cancel,3 -greeting,wassup,original,greet,4 -thank_you,thankyou,parrot,bye,2 -no,nope that's not right,parrot,cancel,3 -goodbye,thanks for the talk,lambada,bye,2 -meeting_schedule,how many meetings do i have today between noon and one?,parrot,avail,0 -thank_you,"oh, thanks",original,bye,2 -thank_you,merci beaucoup,original,bye,2 -calendar,what i have going on for 1212?,parrot,avail,0 -greeting,heller,original,greet,4 -goodbye,goodbye!,original,bye,2 -greeting,hey there!,original,greet,4 -date,current date,original,avail,0 -greeting,wassup,original,greet,4 -calendar_update,please cancel the party on may 13th,parrot,resched,5 -greeting,how is ife treating you,parrot,greet,4 -no,false sure,parrot,cancel,3 -yes,confirmed,original,book,1 -yes,great,original,book,1 -goodbye,very nice conversation,parrot,bye,2 -calendar_update,add mom's birthday to my calendar on april 12,original,resched,5 -greeting,"hello, good morning",lambada,greet,4 -greeting,hey how's my day going,parrot,greet,4 -no,"please, no",original,cancel,3 -date,a year?,parrot,avail,0 -no,no!,original,cancel,3 -cancel_reservation,cancel my reservation at chris's for dinner,lambada,cancel,3 -reminder_update,please remember to visit ryan,parrot,resched,5 -no,not at all,original,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,nice day,lambada,greet,4 -reminder_update,help me remember to pay my taxes,parrot,resched,5 -reminder_update,to remind myself of this,parrot,resched,5 -yes,i want that,parrot,book,1 -no,no that isn't right,original,cancel,3 -goodbye,tootles,original,bye,2 -thank_you,thanks for the payment,parrot,bye,2 -greeting,hello siri,original,greet,4 -goodbye,goodbye!,original,bye,2 -how_busy,how busy is ruby at 9pm?,parrot,avail,0 -goodbye,bye bye now,lambada,bye,2 -yes,i know,parrot,book,1 -how_busy,what time will i be allowed in the restaurant?,parrot,avail,0 -no,that's negative,parrot,cancel,3 -goodbye,i have to leave now?,parrot,bye,2 -greeting,hola,original,greet,4 -greeting,how is the ai doing?,parrot,greet,4 -thank_you,thanks a million,original,bye,2 -goodbye,i'm leaving now,lambada,bye,2 -greeting,hey,original,greet,4 -thank_you,"great, thanks!",original,bye,2 -goodbye,have fun?,lambada,bye,2 -yes,approved,original,book,1 -thank_you,good job thanks,parrot,bye,2 -date,today?,parrot,avail,0 -no,naw,original,cancel,3 -yes,it's indeed true,original,book,1 -schedule_meeting,i need to know how to get approval for a meeting,parrot,book,1 -no,not that,original,cancel,3 -yes,"yes, please",original,book,1 -no,that's not the case,parrot,cancel,3 -greeting,hello,original,greet,4 -no,erroneous,parrot,cancel,3 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -goodbye,peace out!,original,bye,2 -meeting_schedule,i'm going to meet john,parrot,avail,0 -thank_you,"oh, thanks",original,bye,2 -no,it's no,parrot,cancel,3 -greeting,hola!,original,greet,4 -no,erroneous,parrot,cancel,3 -goodbye,a good conversation,parrot,bye,2 -yes,positive,original,book,1 -greeting,ahoy,lambada,greet,4 -no,that's untrue,parrot,cancel,3 -how_busy,can you tell me how long it takes to get a table at the egg salad factory?,parrot,avail,0 -no,that's certainly false,parrot,cancel,3 -no,nada,original,cancel,3 -how_busy,how busy is macy's around 7,lambada,avail,0 -greeting,welcome,parrot,greet,4 -calendar_update,please add my calendar for the staff meeting scheduled for march 1 2019 at 10 am,parrot,resched,5 -yes,ok,original,book,1 -no,so that's no,parrot,cancel,3 -no,not that,original,cancel,3 -yes,good,parrot,book,1 -thank_you,thank you?,parrot,bye,2 -yes,but i think you got it,parrot,book,1 -yes,obviously,parrot,book,1 -date,what day of the week is it today?,lambada,avail,0 -goodbye,goodbye,original,bye,2 -thank_you,many thanks,original,bye,2 -how_busy,how busy will the macaroni grill be at 5pm?,parrot,avail,0 -yes,ok,original,book,1 -date,what day?,parrot,avail,0 -greeting,hey bs,lambada,greet,4 -greeting,ahoy there,lambada,greet,4 -calendar,do you have any active events for march 4th?,parrot,avail,0 -goodbye,adios!,original,bye,2 -no,negatory,original,cancel,3 -greeting,hiya,original,greet,4 -no,don't like that no,parrot,cancel,3 -no,no way!,original,cancel,3 -reminder_update,let me be reminded?,parrot,resched,5 -yes,that would be yes,original,book,1 -yes,it'd be great,parrot,book,1 -how_busy,how long before dinner,parrot,avail,0 -no,no!,original,cancel,3 -yes,"yes, please",original,book,1 -greeting,hello there ai,original,greet,4 -no,the answer is no,original,cancel,3 -greeting,good morning,parrot,greet,4 -schedule_meeting,schedule a meeting with lisa and carrie,parrot,book,1 -greeting,hola,original,greet,4 -goodbye,great talk,lambada,bye,2 -yes,definitely,original,book,1 -no,it's false,parrot,cancel,3 -date,tell me the date for tomorrow?,parrot,avail,0 -yes,yeah,original,book,1 -meeting_schedule,when do you have my meetings?,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -thank_you,you've been great,parrot,bye,2 -no,no,lambada,cancel,3 -how_busy,what's the wait time at chipotle steakhouse?,parrot,avail,0 -calendar,do i have plans on 12/03/2019?,original,avail,0 -yes,yeap,original,book,1 -greeting,yo,original,greet,4 -no,i think that's false,original,cancel,3 -no,that's incorrect!,original,cancel,3 -no,i disagree,parrot,cancel,3 -how_busy,how long until dinner?,parrot,avail,0 -meeting_schedule,what's on my meeting schedule today,original,avail,0 -calendar,check out my calendar,parrot,avail,0 -thank_you,thanks please,original,bye,2 -thank_you,thanks again,original,bye,2 -goodbye,say goodbye,parrot,bye,2 -thank_you,i'm glad that you helped me,parrot,bye,2 -schedule_meeting,what do i need to do to schedule a meeting?,lambada,book,1 -no,no that's not it?,parrot,cancel,3 -yes,huh,parrot,book,1 -no,FALSE,original,cancel,3 -calendar_update,remove this anniversary from my calendar,lambada,resched,5 -goodbye,adios ai,original,bye,2 -no,thanks no,parrot,cancel,3 -goodbye,will leave now,parrot,bye,2 -goodbye,bye now,original,bye,2 -no,naw,parrot,cancel,3 -greeting,how's the ayi?,parrot,greet,4 -meeting_schedule,meeting today,parrot,avail,0 -how_busy,how long will it take to wait at olive garden?,parrot,avail,0 -yes,confirm,original,book,1 -goodbye,bye,original,bye,2 -calendar_update,i must put my appointment tomorrow on my calendar,parrot,resched,5 -yes,is true,parrot,book,1 -how_busy,how long will it take to get seated at applebees?,parrot,avail,0 -yes,accepted,original,book,1 -no,no that's not true,parrot,cancel,3 -yes,"yes, that is right",original,book,1 -date,"what is tomorrow's date, please?",original,avail,0 -greeting,"hey, what's up",original,greet,4 -no,that's certainly false,parrot,cancel,3 -no,that's completely wrong,parrot,cancel,3 -calendar,what will i do on 3rd march?,parrot,avail,0 -no,this is a lie,parrot,cancel,3 -how_busy,how long can i wait in a restaurant,parrot,avail,0 -yes,10-Apr,original,book,1 -no,nothing,parrot,cancel,3 -meeting_schedule,meetings today,original,avail,0 -meeting_schedule,when's my meeting with leroy?,parrot,avail,0 -how_busy,does mr joes pizza have a long waiting time?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -yes,absolutely!,original,book,1 -reminder_update,the cat needs neutering,parrot,resched,5 -date,please date,parrot,avail,0 -date,what's it today?,parrot,avail,0 -greeting,do you think about acii?,parrot,greet,4 -greeting,how's ai doing?,parrot,greet,4 -goodbye,i'll leave,parrot,bye,2 -yes,yeah,original,book,1 -greeting,greetings to you,original,greet,4 -no,no?,parrot,cancel,3 -thank_you,thanks for the help,original,bye,2 -how_busy,can you tell me how busy orange blossoms is at 3 pm?,lambada,avail,0 -greeting,hey fellows,parrot,greet,4 -greeting,good day,original,greet,4 -how_busy,will chili be busy around 5pm?,parrot,avail,0 -goodbye,good night,original,bye,2 -goodbye,regards,original,bye,2 -calendar,what's on my calendar for august 7th,parrot,avail,0 -goodbye,goodnight,original,bye,2 -how_busy,will the restaurant fill up,parrot,avail,0 -no,hell nah,original,cancel,3 -no,not so i think,parrot,cancel,3 -greeting,how's the ayi?,parrot,greet,4 -goodbye,good night,original,bye,2 -yes,i'll say yes,parrot,book,1 -no,i disagree,parrot,cancel,3 -goodbye,i'm glad we talked later,lambada,bye,2 -goodbye,goodbye then,parrot,bye,2 -yes,yup,original,book,1 -yes,affirmitive,original,book,1 -greeting,aho,parrot,greet,4 -date,please explain today,parrot,avail,0 -greeting,what are you feeling today?,original,greet,4 -greeting,hey there,original,greet,4 -goodbye,the hell i'm out,parrot,bye,2 -yes,ok,original,book,1 -no,and i'm sorry,parrot,cancel,3 -how_busy,is iman busy at 6pm?,parrot,avail,0 -thank_you,thank you?,parrot,bye,2 -no,naw,parrot,cancel,3 -no,that is false,original,cancel,3 -greeting,how's the life?,parrot,greet,4 -how_busy,tell me the time to wait for a table in the restaurant?,parrot,avail,0 -yes,certainly,parrot,book,1 -no,naw,original,cancel,3 -meeting_schedule,when's my next meeting with jack?,parrot,avail,0 -yes,i'm voting for you,parrot,book,1 -date,what the day?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -goodbye,good night,original,bye,2 -yes,yeah yeah,lambada,book,1 -yes,a fact,parrot,book,1 -greeting,ahoy,lambada,greet,4 -goodbye,ai goodbye,original,bye,2 -how_busy,the wait time at a nice steak house?,parrot,avail,0 -yes,i'll say yes,parrot,book,1 -how_busy,i want to know how busy olive garden is at 6pm,lambada,avail,0 -greeting,how's everything,original,greet,4 -yes,definitely,original,book,1 -how_busy,how busy the steakhouse will be at 730?,parrot,avail,0 -date,what's my day?,parrot,avail,0 -no,it'd be awful,parrot,cancel,3 -thank_you,you answered,parrot,bye,2 -greeting,hi how's it going,lambada,greet,4 -reminder_update,set a reminder,original,resched,5 -how_busy,is the friday full after 4?,parrot,avail,0 -thank_you,i'm thankful,original,bye,2 -date,what's tomorrow's date,original,avail,0 -no,that's wrong,original,cancel,3 -yes,certainly true,parrot,book,1 -greeting,whats up?,parrot,greet,4 -greeting,hey how's life,original,greet,4 -yes,TRUE,original,book,1 -yes,ok,original,book,1 -yes,roger that,original,book,1 -thank_you,you've helped,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,indeed,original,book,1 -how_busy,wait time at macaroni grill?,parrot,avail,0 -how_busy,how long does it take to get a table at chili's,original,avail,0 -no,that's absolutely false,parrot,cancel,3 -yes,"true, most definitely",original,book,1 -yes,obviously,parrot,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -yes,"yes, that's accurate",original,book,1 -yes,i'll say yes,parrot,book,1 -greeting,ahoy,lambada,greet,4 -goodbye,catch you later,original,bye,2 -no,i'd like to say it's not true,parrot,cancel,3 -no,no way!,original,cancel,3 -goodbye,have a good one?,original,bye,2 -thank_you,much obliged,original,bye,2 -calendar,please tell me what's in my calendar for march 31?,parrot,avail,0 -greeting,how's life,original,greet,4 -how_busy,how long is the wait at applebee's,original,avail,0 -how_busy,what's the wait time in greengrocers?,parrot,avail,0 -no,but certainly not,parrot,cancel,3 -goodbye,goodbye goodbye,parrot,bye,2 -goodbye,farewell!,original,bye,2 -how_busy,how busy is arizona's red robin at 5 pm?,parrot,avail,0 -yes,it appears true,parrot,book,1 -yes,"yes, this is true",original,book,1 -greeting,salutations,parrot,greet,4 -calendar,check my calendar,parrot,avail,0 -goodbye,later!,original,bye,2 -thank_you,thanks for telling me,parrot,bye,2 -yes,it makes sense,parrot,book,1 -reminder_update,remember to call me tomorrow,parrot,resched,5 -no,"no, that information is wrong",original,cancel,3 -date,current date,original,avail,0 -thank_you,you've helped,parrot,bye,2 -yes,uh-huh,original,book,1 -goodbye,greetings,parrot,bye,2 -thank_you,thanks for my reply,parrot,bye,2 -no,no thanks,original,cancel,3 -yes,correct,original,book,1 -yes,agreed,original,book,1 -greeting,how's my doing?,parrot,greet,4 -date,in 8 days?,parrot,avail,0 -cancel_reservation,for tonight forget my oyster bar reservation,parrot,cancel,3 -thank_you,thanks for helping out,original,bye,2 -yes,sure,original,book,1 -goodbye,i’m leaving-goodbye!,original,bye,2 -goodbye,good see you,lambada,bye,2 -greeting,hey hey!,original,greet,4 -reminder_update,i'd like a reminder,parrot,resched,5 -thank_you,good job helping me,parrot,bye,2 -greeting,how's life?,parrot,greet,4 -meeting_schedule,i must know when i have meetings with robert,parrot,avail,0 -goodbye,"great talk, thanks",original,bye,2 -thank_you,thank you,original,bye,2 -goodbye,later,original,bye,2 -thank_you,so glad you did it,parrot,bye,2 -calendar_update,clear my calendar for march 1,parrot,resched,5 -how_busy,can you tell me how busy the olive garden is at 10?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -greeting,how is everything?,parrot,greet,4 -no,naw,parrot,cancel,3 -yes,uh-huh,original,book,1 -no,it seems wrong,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -no,so that's no,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -date,a year?,parrot,avail,0 -goodbye,adios,original,bye,2 -date,what will be the date in nine days?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -schedule_meeting,are the meeting rooms open between 9 and 10?,parrot,book,1 -reminder_update,remember to listen to music on monday,parrot,resched,5 -schedule_meeting,is there a meeting room available between 7 and 8?,parrot,book,1 -how_busy,how long is the restaurant sitting?,parrot,avail,0 -thank_you,thanks for helping me,original,bye,2 -no,that's so wrong,parrot,cancel,3 -date,in 6 days what will it be?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -calendar,the 21st what's in my calendar,parrot,avail,0 -no,it's false,parrot,cancel,3 -greeting,nice day,lambada,greet,4 -yes,positive,parrot,book,1 -yes,10-Apr,original,book,1 -yes,yes that's it,original,book,1 -thank_you,i'm thankful for you,parrot,bye,2 -reminder_update,let me be reminded,parrot,resched,5 -goodbye,ill be leaving now,parrot,bye,2 -thank_you,i appreciate that,original,bye,2 -yes,it's logical,parrot,book,1 -goodbye,fairwell,original,bye,2 -yes,ok,original,book,1 -goodbye,peace out,original,bye,2 -reminder_update,can you set a reminder to put my clothes in the dryer?,parrot,resched,5 -greeting,ahoy there,lambada,greet,4 -no,that's untrue,parrot,cancel,3 -greeting,wassup,original,greet,4 -reminder_update,keep an eye on tomorrow's meeting,parrot,resched,5 -reminder_update,remember to call tomorrow,parrot,resched,5 -thank_you,thanks!,original,bye,2 -thank_you,i sincerely thank you for it,parrot,bye,2 -thank_you,it's been awesome doing what you ask me to do,lambada,bye,2 -no,nada,original,cancel,3 -thank_you,"great, thanks!",original,bye,2 -goodbye,peace out,original,bye,2 -no,erroneous,parrot,cancel,3 -calendar_update,remove the june 12 event called sasha's wedding from my calendar,original,resched,5 -thank_you,your answer was a delight,parrot,bye,2 -goodbye,thank you so much for talking with me,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -no,"no, you are wrong",original,cancel,3 -goodbye,peace,original,bye,2 -how_busy,outback steakhouse at 6pm,parrot,avail,0 -thank_you,much obliged,original,bye,2 -no,nope,original,cancel,3 -reminder_update,can you set a reminder alarm for me to workout?,original,resched,5 -yes,yep,original,book,1 -no,nay,original,cancel,3 -greeting,hey fellow,parrot,greet,4 -yes,absolutely,original,book,1 -goodbye,nice drive by,lambada,bye,2 -yes,it is a positive answer,parrot,book,1 -thank_you,gracias,original,bye,2 -no,that is very false,lambada,cancel,3 -goodbye,see ya!,original,bye,2 -greeting,good day,original,greet,4 -reminder_update,add a reminder,lambada,resched,5 -date,let me know the date tomorrow,original,avail,0 -meeting_schedule,are there any meetings i have scheduled today?,parrot,avail,0 -how_busy,how long does it take to get a table in the hotel?,parrot,avail,0 -calendar_update,delete the party i had with sir on april 14 from my calendar,parrot,resched,5 -thank_you,it's my debt,parrot,bye,2 -schedule_meeting,i need to find a new meeting,parrot,book,1 -date,current day,parrot,avail,0 -yes,TRUE,original,book,1 -greeting,what's happened?,parrot,greet,4 -yes,oh-huh,parrot,book,1 -no,nope not it,original,cancel,3 -goodbye,bye-bye,original,bye,2 -no,negation,parrot,cancel,3 -reminder_update,make a reminder to clean my room,parrot,resched,5 -no,it's no,parrot,cancel,3 -goodbye,take it easy,lambada,bye,2 -schedule_meeting,schedule a meeting for me,original,book,1 -no,certainly not true,parrot,cancel,3 -how_busy,how long will it take to wait in olive garden at 10?,parrot,avail,0 -calendar,can you show me the calendar?,parrot,avail,0 -thank_you,i'm thankful for my support,parrot,bye,2 -goodbye,tootles,original,bye,2 -thank_you,thanks for the answer,original,bye,2 -greeting,have you felt?,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -yes,sure,original,book,1 -yes,"yes, please",parrot,book,1 -meeting_schedule,do you have any meetings with roger today?,parrot,avail,0 -goodbye,bye,original,bye,2 -goodbye,regards,original,bye,2 -greeting,heller,original,greet,4 -yes,yeah,original,book,1 -meeting_schedule,are there meetings from 1 to 5?,parrot,avail,0 -thank_you,you've tried,parrot,bye,2 -greeting,so what's up?,parrot,greet,4 -greeting,aho,parrot,greet,4 -goodbye,"thanks for chatting, bye",lambada,bye,2 -calendar_update,add my family reunion to my calendar for next friday,parrot,resched,5 -no,erroneous,parrot,cancel,3 -how_busy,how long is the wait at buffalo wild wings,original,avail,0 -yes,yay,lambada,book,1 -how_busy,if i want a table at chili's how long will i have to wait?,parrot,avail,0 -reminder_update,please remember something,parrot,resched,5 -greeting,aloha,original,greet,4 -schedule_meeting,show me the way to schedule a meeting,parrot,book,1 -goodbye,", goodbye",lambada,bye,2 -yes,indeed,original,book,1 -reminder_update,come on please,parrot,resched,5 -meeting_schedule,are there any meetings on my calendar today?,original,avail,0 -no,that's no way,parrot,cancel,3 -greeting,what's happening,original,greet,4 -yes,TRUE,original,book,1 -greeting,hey there!,original,greet,4 -thank_you,awesome thanks,parrot,bye,2 -yes,confirmed,original,book,1 -schedule_meeting,can you tell me how to schedule a meeting?,parrot,book,1 -yes,my answer is yes,parrot,book,1 -how_busy,how busy is chili's around 6pm,lambada,avail,0 -goodbye,bye bye!,original,bye,2 -no,not true,original,cancel,3 -no,nope not it,original,cancel,3 -no,nothing,parrot,cancel,3 -greeting,how're you doing,original,greet,4 -greeting,salutations,parrot,greet,4 -no,it is indeed false,lambada,cancel,3 -reminder_update,make me a reminder to buy some groceries,lambada,resched,5 -greeting,hi,original,greet,4 -meeting_schedule,when are my meetings?,parrot,avail,0 -goodbye,later,original,bye,2 -no,nothing,parrot,cancel,3 -date,do you know the date of the day?,parrot,avail,0 -no,nay,original,cancel,3 -calendar_update,can you remove this event from my calendar?,original,resched,5 -goodbye,as regards,parrot,bye,2 -cancel_reservation,call the restaurant to cancel my reservation for dinner this evening,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -greeting,why hello?,original,greet,4 -no,no that's wrong,original,cancel,3 -no,no no it's not,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -yes,exactly right,original,book,1 -greeting,"hello, ai",original,greet,4 -date,in 8 days?,parrot,avail,0 -calendar,display my calendar,lambada,avail,0 -greeting,yo how's it going,parrot,greet,4 -date,in 2 weeks what date will it be,parrot,avail,0 -thank_you,you gave me that,parrot,bye,2 -how_busy,show the odds that i'll have a good time if i go to applebee's at 5 pm?,parrot,avail,0 -greeting,how's it going now?,parrot,greet,4 -thank_you,okay thank you,parrot,bye,2 -greeting,yo,original,greet,4 -reminder_update,i need a reminder please,parrot,resched,5 -goodbye,buhbye,original,bye,2 -no,nay,original,cancel,3 -greeting,"good morning, ai",original,greet,4 -goodbye,be careful then,lambada,bye,2 -greeting,bonjour,original,greet,4 -date,what's the current day?,parrot,avail,0 -cancel_reservation,please delete the reservation for roberts at village tavern,original,cancel,3 -goodbye,sayonara,original,bye,2 -greeting,well hello,original,greet,4 -how_busy,how busy is iman at noon?,parrot,avail,0 -no,FALSE,original,cancel,3 -no,i think it's not possible,parrot,cancel,3 -greeting,bonjour,original,greet,4 -thank_you,appreciated,original,bye,2 -yes,yay,lambada,book,1 -greeting,have you felt?,parrot,greet,4 -greeting,welcome,parrot,greet,4 -thank_you,much obliged,original,bye,2 -no,is very false,parrot,cancel,3 -no,that's no way,parrot,cancel,3 -goodbye,as regards,parrot,bye,2 -goodbye,good call,parrot,bye,2 -reminder_update,please set up a reminder for my appointment,parrot,resched,5 -goodbye,sayonara ,parrot,bye,2 -yes,i know this is a true statement,parrot,book,1 -how_busy,can you tell me how long it will be at olive garden at 5pm?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -thank_you,i'm thankful for my help,original,bye,2 -thank_you,appreciated,original,bye,2 -thank_you,you helped me,parrot,bye,2 -cancel_reservation,get the salad canceled,parrot,cancel,3 -no,that's bad,parrot,cancel,3 -yes,that is true,lambada,book,1 -how_busy,tell me the time to wait if i want to go to golden corral?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -goodbye,bye bye now,lambada,bye,2 -yes,indeed,original,book,1 -goodbye,bye!,original,bye,2 -greeting,how're you doing,original,greet,4 -goodbye,i'm done talking to you,parrot,bye,2 -how_busy,i want to know how long the wait will be at the olive garden at 5pm,parrot,avail,0 -greeting,what do i feel?,parrot,greet,4 -greeting,heyo,original,greet,4 -date,in seven days?,parrot,avail,0 -goodbye,good call,parrot,bye,2 -no,no!,original,cancel,3 -greeting,how ya doing,lambada,greet,4 -date,let me know what date it will be in three days,parrot,avail,0 -how_busy,is the wait at chili long?,parrot,avail,0 -date,is tomorrow's date?,parrot,avail,0 -no,it's completely false,parrot,cancel,3 -how_busy,when will i have to wait before making a reservation at the olive garden?,parrot,avail,0 -date,a year?,parrot,avail,0 -yes,exactly right,original,book,1 -goodbye,goodnight,original,bye,2 -greeting,salutations,parrot,greet,4 -thank_you,you helped me today,parrot,bye,2 -greeting,aho,parrot,greet,4 -date,list the current date?,parrot,avail,0 -date,what day are we on?,lambada,avail,0 -yes,ok,original,book,1 -yes,yup,original,book,1 -no,i believe it's wrong,parrot,cancel,3 -greeting,salutations!,original,greet,4 -yes,yeap,original,book,1 -goodbye,see ya!,original,bye,2 -yes,and you're right,parrot,book,1 -no,naw,parrot,cancel,3 -no,definitely not,original,cancel,3 -yes,yay,lambada,book,1 -no,it's certainly a false claim,parrot,cancel,3 -greeting,heller,original,greet,4 -yes,it's logical,parrot,book,1 -goodbye,goodbye then,parrot,bye,2 -greeting,hi there,original,greet,4 -greeting,whats new,lambada,greet,4 -reminder_update,reminder of the gas bill,parrot,resched,5 -schedule_meeting,i must have a meeting to start today,parrot,book,1 -thank_you,the best,parrot,bye,2 -no,that's very wrong,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -greeting,how's everything?,parrot,greet,4 -thank_you,i appreciate the assistance,original,bye,2 -no,that's totally wrong!,original,cancel,3 -no,i'll pass,original,cancel,3 -goodbye,goodbyes,parrot,bye,2 -thank_you,thanks very much,parrot,bye,2 -thank_you,your assistance is appreciated,parrot,bye,2 -how_busy,how long will i have to wait for a table at louisiana,lambada,avail,0 -date,in five days?,parrot,avail,0 -thank_you,"awesome, thanks",original,bye,2 -goodbye,later good luck,parrot,bye,2 -thank_you,i'm grateful,original,bye,2 -no,erroneous,parrot,cancel,3 -goodbye,it's nice to talk to you about it,parrot,bye,2 -greeting,salutations!,original,greet,4 -greeting,hey fellows,parrot,greet,4 -yes,obviously,parrot,book,1 -thank_you,well done,parrot,bye,2 -goodbye,goodbye for now ai,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -date,today?,parrot,avail,0 -goodbye,get there soon,lambada,bye,2 -yes,yes,original,book,1 -greeting,hey it's up,lambada,greet,4 -greeting,"hey, ai",original,greet,4 -how_busy,how busy will the red robin be at 5pm?,parrot,avail,0 -meeting_schedule,do you have any meetings with dan?,parrot,avail,0 -greeting,are you good?,original,greet,4 -cancel_reservation,i need to cancel my barclay's reservation,parrot,cancel,3 -how_busy,is tiaras crowded around 7pm?,parrot,avail,0 -how_busy,how long can you expect to wait to be seated at italian restaurant,lambada,avail,0 -greeting,i need to know how everything is going,lambada,greet,4 -no,negation,parrot,cancel,3 -reminder_update,keep me in mind later,parrot,resched,5 -no,nada,original,cancel,3 -date,tell me the date?,original,avail,0 -no,no don't do that,parrot,cancel,3 -yes,okay,original,book,1 -how_busy,how long will i wait for a table in olive garden,parrot,avail,0 -thank_you,thank you!,original,bye,2 -goodbye,regards,original,bye,2 -goodbye,bye bye,lambada,bye,2 -yes,and you're correct,parrot,book,1 -yes,affirmative,original,book,1 -how_busy,how long will the wait be at olive garden,lambada,avail,0 -meeting_schedule,how many meetings do i have to attend today?,parrot,avail,0 -no,no please,parrot,cancel,3 -calendar,did you set a date on my calendar for my doctor's appointment?,parrot,avail,0 -how_busy,how busy is the cheesecake factory right now,lambada,avail,0 -date,today?,parrot,avail,0 -no,negative certainly,parrot,cancel,3 -thank_you,i owe you,parrot,bye,2 -greeting,"hello, how are you",original,greet,4 -cancel_reservation,do you need to cancel my reservation at the loft?,lambada,cancel,3 -date,tell me the date this month?,parrot,avail,0 -goodbye,thanks for talking to me later,parrot,bye,2 -yes,confirmed,original,book,1 -how_busy,how long is the wait at olive garden at 11 pm,lambada,avail,0 -yes,yes you have been successful,lambada,book,1 -how_busy,what's the wait time at the greengrocer?,parrot,avail,0 -no,that's incorrect!,original,cancel,3 -no,it's not true,parrot,cancel,3 -no,negative for sure,original,cancel,3 -yes,yep,original,book,1 -goodbye,tootles?,parrot,bye,2 -how_busy,outback steakhouse at 7 pm,parrot,avail,0 -no,that's incorrect,original,cancel,3 -how_busy,tell me the time to wait in the outback steak house?,parrot,avail,0 -no,the negator,parrot,cancel,3 -thank_you,really great!,original,bye,2 -cancel_reservation,can you cancel my reservation?,parrot,cancel,3 -no,negative sure,parrot,cancel,3 -yes,right,parrot,book,1 -goodbye,buhbye,original,bye,2 -date,where is tomorrow's date,lambada,avail,0 -greeting,hola,original,greet,4 -yes,is true,parrot,book,1 -how_busy,how busy will garlic bread be at 5?,parrot,avail,0 -yes,absolutely!,original,book,1 -calendar,check my calendar to see if an event called the final exams exists,parrot,avail,0 -yes,it's true,original,book,1 -date,what's the date?,parrot,avail,0 -yes,that's correct,original,book,1 -goodbye,adios ai,original,bye,2 -yes,10-Apr,original,book,1 -goodbye,bye bye then,original,bye,2 -greeting,welcome,parrot,greet,4 -yes,absolutely,original,book,1 -goodbye,sayonara,original,bye,2 -date,what is tomorrow's date?,original,avail,0 -greeting,what's happening,original,greet,4 -goodbye,goodbye!,original,bye,2 -no,i must say no,original,cancel,3 -yes,accepted,original,book,1 -how_busy,would you say that red lobster is pretty good at noon?,parrot,avail,0 -goodbye,i need to go now,original,bye,2 -date,what's today,original,avail,0 -yes,that's absolutely true,parrot,book,1 -thank_you,thanks again,original,bye,2 -greeting,what's happening,original,greet,4 -greeting,hey,original,greet,4 -date,what's my date?,parrot,avail,0 -date,tell me what the date will be?,parrot,avail,0 -reminder_update,remind me to pay the gas bill,parrot,resched,5 -goodbye,my way,parrot,bye,2 -thank_you,you answered my questions,parrot,bye,2 -yes,that appears true,original,book,1 -goodbye,adios!,original,bye,2 -schedule_meeting,"i need a meeting room between 3-7, are any available",original,book,1 -yes,a fact,parrot,book,1 -yes,please let's do this,parrot,book,1 -thank_you,thanks,original,bye,2 -no,that's not the answer,parrot,cancel,3 -no,invalid,original,cancel,3 -cancel_reservation,it's necessary to cancel my reservation,parrot,cancel,3 -how_busy,how long will i have to wait if i'm seated at the departmental,lambada,avail,0 -yes,huh,parrot,book,1 -no,"no, that is inaccurate",original,cancel,3 -greeting,whats up,original,greet,4 -date,what year?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -greeting,how's idy?,parrot,greet,4 -goodbye,later!,original,bye,2 -greeting,hi how's it going,lambada,greet,4 -greeting,ahoy hoy,original,greet,4 -yes,absolutely,original,book,1 -date,what is tomorrow?,parrot,avail,0 -reminder_update,make a reminder to pay the bill,parrot,resched,5 -greeting,what's my feeling?,parrot,greet,4 -goodbye,tootles?,parrot,bye,2 -date,give me a date,parrot,avail,0 -thank_you,very grateful,parrot,bye,2 -greeting,hi,original,greet,4 -greeting,hi how's everything?,parrot,greet,4 -yes,say positive,parrot,book,1 -yes,definitely yes,parrot,book,1 -goodbye,see ya,original,bye,2 -how_busy,how long do i have to wait for a table at the cheese cake factory,parrot,avail,0 -greeting,can you tell me how it goes?,parrot,greet,4 -goodbye,i enjoyed the interaction with you,parrot,bye,2 -yes,is true,parrot,book,1 -yes,i guess,parrot,book,1 -yes,positive,original,book,1 -how_busy,how busy is zippy around 10?,parrot,avail,0 -meeting_schedule,when will i be meeting with loren today?,lambada,avail,0 -yes,oh-huh,parrot,book,1 -yes,a real statement,parrot,book,1 -greeting,aho,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -greeting,give me the information,parrot,greet,4 -goodbye,i enjoyed our talk,parrot,bye,2 -no,naw,original,cancel,3 -how_busy,is ihop busy around 6?,lambada,avail,0 -meeting_schedule,when is today's meeting?,lambada,avail,0 -how_busy,is macy's busy around 7?,parrot,avail,0 -no,negating,parrot,cancel,3 -yes,that also makes sense,parrot,book,1 -yes,absolutely,original,book,1 -thank_you,thanks for that,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -meeting_schedule,go over my schedule with me please,parrot,avail,0 -greeting,hey,original,greet,4 -thank_you,thank ya!,original,bye,2 -date,what day is it today,parrot,avail,0 -yes,facts,original,book,1 -yes,not a false statement,parrot,book,1 -goodbye,i'll go,parrot,bye,2 -no,negative for sure,original,cancel,3 -no,the negator,parrot,cancel,3 -yes,a real statement,parrot,book,1 -yes,positive,parrot,book,1 -goodbye,the talk was nice,lambada,bye,2 -greeting,how does it go?,parrot,greet,4 -yes,sure,original,book,1 -greeting,hello how are you doing?,parrot,greet,4 -meeting_schedule,are there meetings between 2 and 3 today?,parrot,avail,0 -goodbye,good talk,parrot,bye,2 -yes,okay,original,book,1 -no,is a lie?,parrot,cancel,3 -date,today?,parrot,avail,0 -goodbye,regards,original,bye,2 -thank_you,i'm so grateful for this answer,parrot,bye,2 -date,tell me the date today,parrot,avail,0 -goodbye,adios,original,bye,2 -yes,approved,original,book,1 -yes,"correct, that's true",original,book,1 -date,what year?,parrot,avail,0 -greeting,aho,parrot,greet,4 -no,negation,parrot,cancel,3 -thank_you,good answer thanks for the answer,parrot,bye,2 -meeting_schedule,what meetings do i have today from 3 to 4?,original,avail,0 -greeting,hey yai,lambada,greet,4 -goodbye,have fun?,lambada,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,that's absolutely true,parrot,book,1 -greeting,yo,original,greet,4 -yes,TRUE,lambada,book,1 -thank_you,thank you,original,bye,2 -goodbye,"thanks for chatting, later",original,bye,2 -how_busy,is there any wait time for bjs?,parrot,avail,0 -goodbye,bye for now,original,bye,2 -no,i believe it to be false,parrot,cancel,3 -calendar,what's on my calendar for next january?,parrot,avail,0 -date,give me today's date,original,avail,0 -yes,it'd be great,parrot,book,1 -no,is very false,parrot,cancel,3 -no,no,lambada,cancel,3 -goodbye,bye,original,bye,2 -date,what date today?,parrot,avail,0 -goodbye,nice conversation today,parrot,bye,2 -yes,absolutely!,original,book,1 -no,erroneous,parrot,cancel,3 -goodbye,the hell i'm out,parrot,bye,2 -yes,yeah,original,book,1 -greeting,heyo,original,greet,4 -yes,i agree,original,book,1 -yes,accept,parrot,book,1 -goodbye,take a break,parrot,bye,2 -thank_you,well done,parrot,bye,2 -date,what's my day?,parrot,avail,0 -yes,of course,original,book,1 -no,not correct,parrot,cancel,3 -goodbye,i'm going,parrot,bye,2 -yes,yep,original,book,1 -yes,TRUE,original,book,1 -no,negative,original,cancel,3 -greeting,how's it hanging?,parrot,greet,4 -how_busy,is applebee busy around 1130?,parrot,avail,0 -thank_you,you helped,parrot,bye,2 -date,where is tomorrow's date,lambada,avail,0 -yes,positive,original,book,1 -greeting,"hello, ai",original,greet,4 -greeting,what's new,lambada,greet,4 -how_busy,how long will i have to wait to be seated in the outback steakhouse,parrot,avail,0 -thank_you,thanks very much for your answer,parrot,bye,2 -goodbye,goodbye,original,bye,2 -thank_you,thank you for all the information you have given us,parrot,bye,2 -no,negatory?,parrot,cancel,3 -thank_you,"oh, thanks",original,bye,2 -goodbye,for now,parrot,bye,2 -no,negation,parrot,cancel,3 -yes,just right,parrot,book,1 -goodbye,goodbye to yours,parrot,bye,2 -yes,ok,original,book,1 -cancel_reservation,i need to cancel my reservation for dinner,parrot,cancel,3 -yes,yes please,original,book,1 -yes,absolutely,original,book,1 -yes,TRUE,original,book,1 -meeting_schedule,are there meetings between 10 and 4pm?,parrot,avail,0 -no,naw,original,cancel,3 -greeting,how's the world?,parrot,greet,4 -greeting,how you're doing?,parrot,greet,4 -thank_you,i thank you for the information,lambada,bye,2 -no,not happening,original,cancel,3 -reminder_update,make a reminder,parrot,resched,5 -greeting,whats up?,parrot,greet,4 -thank_you,gracias,original,bye,2 -goodbye,need to catch up,parrot,bye,2 -yes,ya,original,book,1 -greeting,wassup,original,greet,4 -reminder_update,add a reminder to wash the dishes,lambada,resched,5 -greeting,please tell me what's going on,parrot,greet,4 -thank_you,well done,parrot,bye,2 -no,that's absolutely wrong,parrot,cancel,3 -no,that is no,lambada,cancel,3 -goodbye,later goodbye,parrot,bye,2 -thank_you,appreciated,original,bye,2 -meeting_schedule,show me the schedule of the meeting?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -reminder_update,please remind me to put my clothes in the dryer,parrot,resched,5 -yes,yay,lambada,book,1 -how_busy,is michel busy at 3 o'clock?,parrot,avail,0 -yes,absolutely,original,book,1 -yes,confirm,original,book,1 -thank_you,i'm happy you've helped me,parrot,bye,2 -goodbye,a good conversation,parrot,bye,2 -no,i don't think so,original,cancel,3 -goodbye,buhbye now,lambada,bye,2 -schedule_meeting,are meeting rooms available between 10 and 11 o'clock?,parrot,book,1 -thank_you,"oh, thanks",original,bye,2 -how_busy,how long is the wait time at michigan steakhouse,lambada,avail,0 -thank_you,appreciate the support,parrot,bye,2 -greeting,aho,parrot,greet,4 -yes,"correct, it is affirmative",original,book,1 -schedule_meeting,i have to meet with john at 11 o'clock on the morning,parrot,book,1 -date,tell me what day it's,parrot,avail,0 -yes,yeah,original,book,1 -date,what month today?,parrot,avail,0 -goodbye,adios!,original,bye,2 -greeting,yo,original,greet,4 -yes,accepted,original,book,1 -yes,yes i am,original,book,1 -goodbye,sign off,parrot,bye,2 -meeting_schedule,do you have any meetings today?,parrot,avail,0 -yes,it makes sense too,parrot,book,1 -greeting,good evening,original,greet,4 -date,date tomorrow?,parrot,avail,0 -no,i disagree,parrot,cancel,3 -how_busy,list the average wait time in a chinese restaurant?,parrot,avail,0 -no,"no, that's not right",original,cancel,3 -goodbye,bye-bye,original,bye,2 -yes,"yes, please",original,book,1 -goodbye,peace,original,bye,2 -calendar,what's i have to do on wednesday?,parrot,avail,0 -cancel_reservation,stop making the reservation for me,lambada,cancel,3 -thank_you,appreciate the help,original,bye,2 -no,negating,parrot,cancel,3 -yes,approved,original,book,1 -no,negative,original,cancel,3 -reminder_update,would you like a reminder?,parrot,resched,5 -no,not happening,original,cancel,3 -yes,yay,lambada,book,1 -yes,let's do it,parrot,book,1 -greeting,how's the situation?,parrot,greet,4 -yes,"yeah, that's it",lambada,book,1 -cancel_reservation,my reservation for nugget tom dallas has to be cancelled,parrot,cancel,3 -cancel_reservation,i do not need my reservation anymore,lambada,cancel,3 -goodbye,talk later,original,bye,2 -yes,it's definitely positive,parrot,book,1 -meeting_schedule,do i have any meetings with ben today?,original,avail,0 -goodbye,thanks for chatting,lambada,bye,2 -goodbye,fairwell?,parrot,bye,2 -goodbye,we chatted well,parrot,bye,2 -no,nothing,parrot,cancel,3 -goodbye,nice seeing you bye,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -date,date please,original,avail,0 -schedule_meeting,can you have a meeting room set for 12 noon?,parrot,book,1 -how_busy,wait for us in the out of town pizza factory?,parrot,avail,0 -thank_you,thanks for helping me,original,bye,2 -greeting,how is everything?,parrot,greet,4 -no,that is erroneous,original,cancel,3 -meeting_schedule,do you have meetings between 1 and 5?,parrot,avail,0 -yes,obviously,parrot,book,1 -greeting,how's idy?,parrot,greet,4 -no,negatory,original,cancel,3 -yes,confirm,original,book,1 -no,don't like that no,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -no,nada,original,cancel,3 -greeting,"hello, good morning",lambada,greet,4 -yes,indeed,original,book,1 -yes,positive,parrot,book,1 -no,i'm afraid not,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -thank_you,okay thank you,parrot,bye,2 -no,nada,original,cancel,3 -goodbye,good bye,original,bye,2 -reminder_update,add a note,parrot,resched,5 -yes,certainly,parrot,book,1 -thank_you,appreciated,original,bye,2 -no,FALSE,lambada,cancel,3 -thank_you,you've been great,parrot,bye,2 -schedule_meeting,you know how i can schedule a meeting?,parrot,book,1 -how_busy,i want to know how busy the chili's is between 5 and 9,lambada,avail,0 -meeting_schedule,when i'll meet roger?,parrot,avail,0 -cancel_reservation,let robert be my reservation manager for valentine's day,parrot,cancel,3 -reminder_update,can you tell me something?,parrot,resched,5 -yes,"yeah, that's it",lambada,book,1 -yes,obviously,parrot,book,1 -no,the information is false,parrot,cancel,3 -greeting,aloha,original,greet,4 -thank_you,thank ya!,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -how_busy,how busy will the chili's be at 8pm,lambada,avail,0 -date,in 7 days?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -no,that's incorrect,original,cancel,3 -goodbye,good luck tomorrow,lambada,bye,2 -reminder_update,what about a reminder,parrot,resched,5 -yes,what you said is accurate?,lambada,book,1 -thank_you,you've been great,parrot,bye,2 -no,no!,original,cancel,3 -calendar_update,please remove the event from my calendar,parrot,resched,5 -goodbye,"syonara, ai device!",original,bye,2 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -how_busy,what time is the table reserved for me at this restaurant?,lambada,avail,0 -goodbye,signing off,original,bye,2 -no,that's not the truth,parrot,cancel,3 -goodbye,good conversation,parrot,bye,2 -greeting,hello siri,original,greet,4 -yes,oh-huh,parrot,book,1 -goodbye,goodbye to you,original,bye,2 -calendar,what do you have on my calendar for monday the 1st march?,parrot,avail,0 -greeting,what's going on,original,greet,4 -greeting,how's the ai?,parrot,greet,4 -goodbye,thank you for talking to you,parrot,bye,2 -no,"no, definitely not",original,cancel,3 -yes,affirmative,original,book,1 -thank_you,thanks very much,parrot,bye,2 -thank_you,i'm very grateful,parrot,bye,2 -greeting,welcome,parrot,greet,4 -yes,yup,original,book,1 -no,definitely not,original,cancel,3 -how_busy,tell me the current status of chichi at 6pm?,parrot,avail,0 -thank_you,i appeciate it,original,bye,2 -thank_you,did you do well?,parrot,bye,2 -yes,all right,original,book,1 -yes,indeed,original,book,1 -goodbye,tootles,original,bye,2 -greeting,bonjour,original,greet,4 -no,that's a negation,parrot,cancel,3 -greeting,good morning,parrot,greet,4 -yes,agreed,original,book,1 -yes,true is my response,original,book,1 -calendar_update,check my calendar for june 5,parrot,resched,5 -date,what's today?,parrot,avail,0 -goodbye,get there soon,lambada,bye,2 -greeting,aloha,original,greet,4 -greeting,hello,original,greet,4 -how_busy,how long will it be at red lobster?,parrot,avail,0 -thank_you,thanks for the help!,original,bye,2 -no,that's incorrect!,original,cancel,3 -goodbye,you're done,parrot,bye,2 -calendar,what's happening on my calendar for march 12th?,parrot,avail,0 -yes,approved,original,book,1 -no,nothing,parrot,cancel,3 -no,that's inaccurate,original,cancel,3 -no,sure it's wrong,parrot,cancel,3 -calendar,what do you have on my calendar for march 11?,parrot,avail,0 -cancel_reservation,joe and i have to cancel the reservation at zephers now,parrot,cancel,3 -goodbye,fairwell,original,bye,2 -goodbye,later gator!,original,bye,2 -how_busy,is it possible to tell you how busy this restaurant is at 6pm?,parrot,avail,0 -goodbye,for now,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -greeting,how is idy?,parrot,greet,4 -yes,yep,original,book,1 -meeting_schedule,how much time is my meeting scheduled to last?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -no,and i'm sorry,parrot,cancel,3 -no,no please,parrot,cancel,3 -thank_you,your response was good,parrot,bye,2 -goodbye,goodnight,original,bye,2 -goodbye,afterward,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -yes,not false,parrot,book,1 -goodbye,peace,original,bye,2 -no,that's no,parrot,cancel,3 -reminder_update,add a note,parrot,resched,5 -no,that's wrong,original,cancel,3 -thank_you,appreciated,original,bye,2 -how_busy,how long will i have to wait at the rancho rancho,parrot,avail,0 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -no,naw,original,cancel,3 -meeting_schedule,tell me how i know i'm talking about a meeting?,parrot,avail,0 -greeting,"hello, friend",original,greet,4 -thank_you,thanks very much for your answer,parrot,bye,2 -yes,indeed,original,book,1 -schedule_meeting,you need a meeting room for friday at 3pm?,parrot,book,1 -date,what's my date?,parrot,avail,0 -how_busy,how busy is this restaurant around 5,lambada,avail,0 -greeting,"hey, what's new",original,greet,4 -yes,huh,parrot,book,1 -thank_you,gracias,original,bye,2 -yes,roger that,original,book,1 -yes,positive,parrot,book,1 -date,tell me which day of the week it is?,lambada,avail,0 -goodbye,i want it now,parrot,bye,2 -yes,is true,parrot,book,1 -goodbye,it's over,parrot,bye,2 -goodbye,ai goodbye,original,bye,2 -yes,yeah,original,book,1 -greeting,hi,original,greet,4 -yes,accepted,original,book,1 -thank_you,nice,parrot,bye,2 -yes,definitely yes,parrot,book,1 -greeting,are you okay??,parrot,greet,4 -no,that's false,original,cancel,3 -yes,i agree with what you just said,parrot,book,1 -yes,a real statement,parrot,book,1 -cancel_reservation,cancel my reservation at osteria for our party,original,cancel,3 -calendar,tell me what's happening on march 6th,parrot,avail,0 -no,the negator,parrot,cancel,3 -schedule_meeting,do you have a meeting room between 930 and 1130?,parrot,book,1 -cancel_reservation,i have to cancel my reservation for dinner at red robin,parrot,cancel,3 -yes,10-Apr,original,book,1 -greeting,aloha,original,greet,4 -thank_you,you have done well,lambada,bye,2 -how_busy,why is this place so busy at lunch time?,parrot,avail,0 -reminder_update,please set a reminder?,parrot,resched,5 -greeting,ahoy,lambada,greet,4 -goodbye,buhbye,original,bye,2 -no,no?,parrot,cancel,3 -no,not right?,parrot,cancel,3 -greeting,how's it going,lambada,greet,4 -thank_you,your answer pleased me,original,bye,2 -date,what's today,original,avail,0 -goodbye,regards,original,bye,2 -thank_you,glad you helped me,parrot,bye,2 -date,give me the date,original,avail,0 -calendar_update,add a farm trip to my calendar on march 1,parrot,resched,5 -thank_you,thankyou,parrot,bye,2 -goodbye,im leaving,parrot,bye,2 -yes,"yep, that's correct",lambada,book,1 -greeting,have you been good??,parrot,greet,4 -no,nope,original,cancel,3 -no,no is the answer,original,cancel,3 -yes,yes sir,original,book,1 -how_busy,how busy will i be at 8 am?,parrot,avail,0 -greeting,you're all right?,parrot,greet,4 -goodbye,i'll talk to you later,parrot,bye,2 -goodbye,adios!,original,bye,2 -date,tell me what the day is?,lambada,avail,0 -yes,absolutely!,original,book,1 -yes,certainly,parrot,book,1 -goodbye,my way,parrot,bye,2 -greeting,salutations!,original,greet,4 -date,please date,parrot,avail,0 -yes,i believe it's true,lambada,book,1 -yes,positive,original,book,1 -greeting,how ya doing,lambada,greet,4 -no,the wrong answer,parrot,cancel,3 -greeting,hiya,original,greet,4 -goodbye,later gater,original,bye,2 -thank_you,you helped me today,parrot,bye,2 -date,date tomorrow,parrot,avail,0 -schedule_meeting,i have to schedule a meeting with steve at 3pm,parrot,book,1 -yes,yeah,original,book,1 -goodbye,see ya,lambada,bye,2 -yes,huh huh,parrot,book,1 -thank_you,thanks for the information,parrot,bye,2 -calendar_update,please take my yoga class off my calendar for march 21st,parrot,resched,5 -calendar_update,i have an appointment i need to cancel for march 18,lambada,resched,5 -how_busy,i need to know how long i will need to wait to eat at marinara,lambada,avail,0 -yes,that's a fact,lambada,book,1 -thank_you,awesome thanks,parrot,bye,2 -date,i'd like to know what the date today is,parrot,avail,0 -greeting,how's my treatment?,parrot,greet,4 -no,negative definitely,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -goodbye,farewell!,original,bye,2 -no,not at all,original,cancel,3 -greeting,ai how you're doing,lambada,greet,4 -greeting,how's otc?,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -greeting,hey what's up?,parrot,greet,4 -calendar_update,put a reminder on the calendar to buy a gun on 1 march,parrot,resched,5 -no,certainly false,parrot,cancel,3 -how_busy,how busy is chimichanga at 6 pm,lambada,avail,0 -thank_you,i appreciate that answer,original,bye,2 -yes,definitely,original,book,1 -thank_you,merci beaucoup,original,bye,2 -yes,affirmative,original,book,1 -no,no,lambada,cancel,3 -yes,ok,original,book,1 -greeting,well hi there,original,greet,4 -yes,obviously,parrot,book,1 -date,what today?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -no,no way!,original,cancel,3 -yes,yes,original,book,1 -greeting,what's new?,parrot,greet,4 -date,what today?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -yes,absolutely!,original,book,1 -date,what's the date tomorrow?,parrot,avail,0 -meeting_schedule,meeting today,parrot,avail,0 -how_busy,is the area busy during the lunch hours?,parrot,avail,0 -goodbye,regards,original,bye,2 -thank_you,i'm so grateful,parrot,bye,2 -no,that's a negative,original,cancel,3 -no,negatory,original,cancel,3 -no,most definitely false,parrot,cancel,3 -yes,accept,parrot,book,1 -calendar_update,remove all birthday celebrations from my calendar,parrot,resched,5 -how_busy,how busy will i be at chili's at 5,lambada,avail,0 -goodbye,great talk,lambada,bye,2 -greeting,heller,original,greet,4 -yes,yes,original,book,1 -greeting,how ife treated you?,parrot,greet,4 -no,invalid,original,cancel,3 -yes,it makes sense,parrot,book,1 -goodbye,later,original,bye,2 -thank_you,nice,parrot,bye,2 -greeting,aho,parrot,greet,4 -yes,sure,original,book,1 -greeting,ahoy,lambada,greet,4 -calendar,is event on my calendar?,original,avail,0 -thank_you,thanks for the payment,parrot,bye,2 -yes,i agree,original,book,1 -goodbye,you're done,parrot,bye,2 -thank_you,"great, thanks!",original,bye,2 -thank_you,glad that you did it,parrot,bye,2 -yes,sure,original,book,1 -greeting,hello there!,original,greet,4 -meeting_schedule,when should i meet my father?,parrot,avail,0 -yes,ya,original,book,1 -thank_you,thankyou,parrot,bye,2 -no,negatory?,parrot,cancel,3 -greeting,nice day,lambada,greet,4 -calendar,can you check my calendar for october 3rd?,lambada,avail,0 -no,yes it's false,parrot,cancel,3 -no,not true,original,cancel,3 -greeting,salutations!,original,greet,4 -no,it's very wrong,parrot,cancel,3 -thank_you,for the help i'm grateful,parrot,bye,2 -greeting,how's it going my friend,parrot,greet,4 -date,in 100 days?,parrot,avail,0 -no,negating,parrot,cancel,3 -goodbye,chat with me later,lambada,bye,2 -calendar_update,please add my final exams to my calendar for may 2,parrot,resched,5 -no,no way!,original,cancel,3 -how_busy,how long is the wait at chicken tikka masala right now,lambada,avail,0 -yes,not false,parrot,book,1 -calendar,what do i have for feb 22?,parrot,avail,0 -goodbye,adios,original,bye,2 -goodbye,good luck tomorrow,lambada,bye,2 -yes,yay,lambada,book,1 -no,that's not the case,parrot,cancel,3 -yes,facts,original,book,1 -goodbye,tootles?,parrot,bye,2 -goodbye,"bye-bye, my friend",lambada,bye,2 -goodbye,goodnight,original,bye,2 -yes,exactly right,original,book,1 -no,no!,original,cancel,3 -yes,confirmed,original,book,1 -no,negating,parrot,cancel,3 -goodbye,fairwell,original,bye,2 -greeting,how're you?,parrot,greet,4 -no,so that's no,parrot,cancel,3 -date,please tell me the date of this account,parrot,avail,0 -thank_you,thanks!,original,bye,2 -greeting,hola!,original,greet,4 -greeting,you good?,parrot,greet,4 -no,that would be incorrect,lambada,cancel,3 -no,nothing,parrot,cancel,3 -goodbye,take it easy,lambada,bye,2 -greeting,hiya,original,greet,4 -goodbye,nice talk,lambada,bye,2 -yes,positive,parrot,book,1 -greeting,hey there,original,greet,4 -yes,indeed,original,book,1 -no,"no, that information is wrong",original,cancel,3 -no,naw,parrot,cancel,3 -reminder_update,keep an eye on the bread,parrot,resched,5 -yes,can we please?,original,book,1 -greeting,how is this going?,parrot,greet,4 -greeting,hola!,original,greet,4 -yes,all right,parrot,book,1 -goodbye,"nice talk, goodbye",lambada,bye,2 -no,that seems wrong,lambada,cancel,3 -no,false for sure,original,cancel,3 -how_busy,will i have a good time at red robin during lunch?,parrot,avail,0 -yes,confirm,original,book,1 -goodbye,see ya,lambada,bye,2 -greeting,so how's everything going?,parrot,greet,4 -no,nothing good,parrot,cancel,3 -reminder_update,have i forgotten?,parrot,resched,5 -goodbye,i'll see you around,lambada,bye,2 -greeting,hey there,original,greet,4 -goodbye,"it was lovely to speak with you, bye bye",original,bye,2 -yes,affirmitive,original,book,1 -goodbye,"nice talk, goodbye",lambada,bye,2 -greeting,heller,original,greet,4 -goodbye,tootles,original,bye,2 -how_busy,can i expect to be busy at six?,parrot,avail,0 -yes,yep,original,book,1 -yes,certainly,parrot,book,1 -no,i think that's false,original,cancel,3 -yes,yep,original,book,1 -goodbye,afterward,parrot,bye,2 -greeting,"hey, ai",original,greet,4 -no,that's wrong,original,cancel,3 -goodbye,goodbye then,parrot,bye,2 -yes,positive,parrot,book,1 -schedule_meeting,reservate a meeting room for 9am on tuesday,parrot,book,1 -yes,uh huh,original,book,1 -no,that's totally wrong!,original,cancel,3 -greeting,how's everything?,parrot,greet,4 -no,most definitely false,parrot,cancel,3 -thank_you,why thank you?,original,bye,2 -meeting_schedule,tell me what meetings i have planned for today?,lambada,avail,0 -meeting_schedule,when will i meet roger?,parrot,avail,0 -yes,that makes sense,lambada,book,1 -date,let me know what's the day?,parrot,avail,0 -yes,yup,original,book,1 -yes,ok,original,book,1 -greeting,hi,original,greet,4 -calendar,tell me what's on my calendar for march 1?,parrot,avail,0 -yes,okay,original,book,1 -thank_you,thankyou,parrot,bye,2 -how_busy,how busy is the cheese cake factory around 6?,parrot,avail,0 -no,it's my false statement,parrot,cancel,3 -goodbye,adios ai,original,bye,2 -date,what today?,parrot,avail,0 -thank_you,thank you,original,bye,2 -no,i meant nothing,parrot,cancel,3 -no,nay,original,cancel,3 -no,negating,parrot,cancel,3 -reminder_update,i want a reminder,lambada,resched,5 -thank_you,thanks for the response,lambada,bye,2 -cancel_reservation,remove my dinner reservation,original,cancel,3 -goodbye,the talk was nice,lambada,bye,2 -thank_you,really great!,original,bye,2 -meeting_schedule,will we have meetings today?,parrot,avail,0 -yes,indeed,original,book,1 -goodbye,this conversation was nice,parrot,bye,2 -goodbye,adios,original,bye,2 -no,say negative,parrot,cancel,3 -goodbye,see you around,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -thank_you,you gave me this,parrot,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -yes,affirmitive,original,book,1 -yes,sure,original,book,1 -no,naw,parrot,cancel,3 -goodbye,we can talk later,parrot,bye,2 -no,nada,original,cancel,3 -goodbye,bye-bye,original,bye,2 -goodbye,take it easy,lambada,bye,2 -how_busy,how long will it take to sit in olive garden?,parrot,avail,0 -reminder_update,remember to bring checkbook,parrot,resched,5 -yes,it is definitely affirmative,original,book,1 -no,not correct,parrot,cancel,3 -cancel_reservation,make sure my reservation at umami with carl is cancelled,parrot,cancel,3 -goodbye,adios,original,bye,2 -meeting_schedule,wanna meet roger?,parrot,avail,0 -calendar,what's my plan for march 3rd?,parrot,avail,0 -thank_you,you helped,parrot,bye,2 -thank_you,you helped me,parrot,bye,2 -yes,yes that is correct,original,book,1 -no,there is no,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -goodbye,this conversation was wonderful,parrot,bye,2 -reminder_update,i need to remember how to take care of my garden,parrot,resched,5 -greeting,hiya!,original,greet,4 -goodbye,let me see you around,parrot,bye,2 -how_busy,how busy is a meal at the red lobster tonight?,parrot,avail,0 -no,that's definitely false,original,cancel,3 -goodbye,goodbyes soon,parrot,bye,2 -goodbye,fairwell,original,bye,2 -greeting,what's new?,parrot,greet,4 -how_busy,how busy is jiro at lunchtime?,parrot,avail,0 -goodbye,i’m leaving-goodbye!,original,bye,2 -greeting,how's it going?,parrot,greet,4 -thank_you,gracias,original,bye,2 -goodbye,regards,original,bye,2 -no,that's not true,original,cancel,3 -greeting,hows it going,lambada,greet,4 -greeting,heyo,original,greet,4 -calendar_update,add meeting with carla to my calendar for july 4th,parrot,resched,5 -greeting,how's life,original,greet,4 -goodbye,my friend,parrot,bye,2 -goodbye,goodbye,original,bye,2 -greeting,hiya!,original,greet,4 -yes,that is correct,original,book,1 -greeting,and i need to know how it goes,parrot,greet,4 -goodbye,farewell,original,bye,2 -thank_you,thanks for coming by,lambada,bye,2 -yes,definitely,original,book,1 -no,it's a false,lambada,cancel,3 -yes,"agreed, that's valid",original,book,1 -reminder_update,new reminder please,lambada,resched,5 -goodbye,farewell,original,bye,2 -thank_you,"awesome, thanks",original,bye,2 -no,negatory,original,cancel,3 -yes,yes please,original,book,1 -meeting_schedule,bring up the mettings for today,parrot,avail,0 -thank_you,"thanks, i appreciate it",original,bye,2 -yes,10-Apr,original,book,1 -goodbye,afterward,parrot,bye,2 -goodbye,farewell,original,bye,2 -no,invalid,original,cancel,3 -calendar,what's on my agenda tomorrow?,parrot,avail,0 -date,what's the day today?,parrot,avail,0 -how_busy,what's the wait time at the red lobster?,parrot,avail,0 -greeting,"hi, ai",original,greet,4 -goodbye,fairwell?,parrot,bye,2 -reminder_update,"new reminder, please",original,resched,5 -goodbye,tootles?,parrot,bye,2 -no,that’s not correct,original,cancel,3 -greeting,how things go?,parrot,greet,4 -greeting,bonjour,original,greet,4 -thank_you,thankyou,parrot,bye,2 -yes,indeed,parrot,book,1 -schedule_meeting,i want to check whether there is a meeting room available between 6 and 8,parrot,book,1 -how_busy,how many people are on the server at michelin steakhouse right now?,parrot,avail,0 -cancel_reservation,repeal the dinner reservation,original,cancel,3 -yes,obviously,parrot,book,1 -how_busy,how long will the restaurant be for dinner,lambada,avail,0 -thank_you,thanks,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,is my falsehood?,parrot,cancel,3 -yes,that is totally true,original,book,1 -reminder_update,my cat needs neutered,parrot,resched,5 -greeting,aho,parrot,greet,4 -yes,TRUE,lambada,book,1 -thank_you,you helped,parrot,bye,2 -yes,accepted,original,book,1 -thank_you,good job thanks,parrot,bye,2 -cancel_reservation,get rid of my reservation for dinner,parrot,cancel,3 -how_busy,how busy is the cafe at 7 o'clock,parrot,avail,0 -yes,ya,original,book,1 -meeting_schedule,when is my meeting with mark?,parrot,avail,0 -greeting,"hello, what's up",original,greet,4 -thank_you,thanks!,original,bye,2 -no,"no, that is invalid",original,cancel,3 -yes,TRUE,original,book,1 -yes,ok,original,book,1 -no,that's actually false,parrot,cancel,3 -yes,sure,original,book,1 -thank_you,thanks!,original,bye,2 -yes,is true,parrot,book,1 -greeting,salutations!,original,greet,4 -yes,of course,original,book,1 -goodbye,see ya,lambada,bye,2 -goodbye,see ya,lambada,bye,2 -goodbye,"thanks, bye",original,bye,2 -yes,yep,original,book,1 -thank_you,you've answered my questions well,lambada,bye,2 -no,i prefer not,parrot,cancel,3 -goodbye,you're done,parrot,bye,2 -calendar_update,please cancel the party on 13th may,parrot,resched,5 -date,when will it be 10 days?,parrot,avail,0 -yes,TRUE,lambada,book,1 -no,not happening,original,cancel,3 -no,it's false,parrot,cancel,3 -reminder_update,can you set a reminder alarm to workout?,parrot,resched,5 -greeting,are you well?,original,greet,4 -how_busy,how long will i have to wait before i'm seated in the cheese cake factory?,parrot,avail,0 -thank_you,i'm thankful,original,bye,2 -yes,uh-huh,original,book,1 -yes,im sure you're right,parrot,book,1 -yes,sure,original,book,1 -schedule_meeting,can you schedule me a meeting with me?,parrot,book,1 -goodbye,regards,original,bye,2 -how_busy,how long is the wait for mr joes pizza right now,lambada,avail,0 -greeting,"wake up, ai",original,greet,4 -yes,positive,parrot,book,1 -yes,"yes, that's accurate",original,book,1 -goodbye,goodbye helpful ai devices,parrot,bye,2 -meeting_schedule,check my schedule today,parrot,avail,0 -yes,do that?,original,book,1 -date,what's today,original,avail,0 -calendar_update,remove anniversary dinner from my calendar on april 5,original,resched,5 -goodbye,nice to see you,original,bye,2 -greeting,hello bs,parrot,greet,4 -no,not good,parrot,cancel,3 -greeting,aloha,original,greet,4 -yes,approved,original,book,1 -meeting_schedule,give me a list of my meetings for the day,parrot,avail,0 -thank_you,you've helped,parrot,bye,2 -yes,yep,original,book,1 -thank_you,very grateful,parrot,bye,2 -goodbye,and then goodbye,parrot,bye,2 -schedule_meeting,can you arrange a meeting?,parrot,book,1 -greeting,aloha,original,greet,4 -yes,not false,parrot,book,1 -goodbye,goodbye ai,parrot,bye,2 -no,"no, that's not right",original,cancel,3 -goodbye,i like our conversation,parrot,bye,2 -how_busy,how long will i have to wait at cheese cake factory,lambada,avail,0 -no,nope that's not true,parrot,cancel,3 -how_busy,how long before i go to the restaurant?,parrot,avail,0 -yes,uh-huh,original,book,1 -date,what today?,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -cancel_reservation,can i cancel my steakhouse reservation?,parrot,cancel,3 -calendar,what is scheduled to be on my schedule on march 7th?,lambada,avail,0 -thank_you,your answer was fun,parrot,bye,2 -goodbye,have to run,parrot,bye,2 -no,no,lambada,cancel,3 -goodbye,adios,original,bye,2 -yes,positive,original,book,1 -goodbye,bye for now,original,bye,2 -yes,let's do that,parrot,book,1 -yes,i think it's right,parrot,book,1 -no,that's not a good idea,parrot,cancel,3 -goodbye,i'm leaving,parrot,bye,2 -yes,do that?,original,book,1 -greeting,whats up,original,greet,4 -greeting,how's it going?,parrot,greet,4 -yes,"yes, that's right",original,book,1 -calendar,show me what i have planned for tomorrow?,parrot,avail,0 -yes,huh,parrot,book,1 -greeting,hi ai,original,greet,4 -how_busy,if i want to sit at applebee's how long will i have to wait?,parrot,avail,0 -meeting_schedule,meeting today,parrot,avail,0 -thank_you,i'm grateful,original,bye,2 -goodbye,good bye,original,bye,2 -how_busy,how busy is mcdonald's at lunch?,parrot,avail,0 -no,yes that's false,lambada,cancel,3 -yes,"yes, that's true",lambada,book,1 -no,negation,parrot,cancel,3 -schedule_meeting,can you tell me if there are meeting rooms between 1 and 4?,parrot,book,1 -yes,uh-huh,original,book,1 -yes,it's true,original,book,1 -goodbye,sayonara ,parrot,bye,2 -yes,affirmitive,original,book,1 -no,please disagree,lambada,cancel,3 -yes,positive,parrot,book,1 -greeting,how it goes?,parrot,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -yes,positive,parrot,book,1 -greeting,hello good day,parrot,greet,4 -calendar_update,can you remove my trip to the zoo from my calendar on march 1st?,parrot,resched,5 -no,thanks no,parrot,cancel,3 -yes,indeed,parrot,book,1 -how_busy,how long would the wait be in the restaurant?,parrot,avail,0 -how_busy,has the cheesecake factory been busy?,parrot,avail,0 -no,"no, that is invalid",original,cancel,3 -meeting_schedule,do you have any meetings between 2 and 3 today?,parrot,avail,0 -goodbye,bye,original,bye,2 -no,that's very wrong,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -greeting,bonjour,original,greet,4 -no,that’s actually wrong,original,cancel,3 -how_busy,how busy will red lobster be at 7:00 pm,lambada,avail,0 -yes,certainly,parrot,book,1 -date,what day?,parrot,avail,0 -reminder_update,remind me to take the garbage out in the morning,parrot,resched,5 -schedule_meeting,can you schedule a meeting for 3 pm on wednesday?,parrot,book,1 -how_busy,how long is the restaurant waiting before i go,lambada,avail,0 -yes,affirmative,original,book,1 -how_busy,how long will it take to get a table at a barbecue?,parrot,avail,0 -reminder_update,remind me to put the onions on the grill,parrot,resched,5 -meeting_schedule,when is my next meeting with roger?,parrot,avail,0 -no,it's overwhelmingly wrong,parrot,cancel,3 -greeting,heyo,original,greet,4 -reminder_update,remind me of my chores,parrot,resched,5 -yes,confirmed,original,book,1 -goodbye,thanks for talking,original,bye,2 -meeting_schedule,what meetings do i have today between 9 and 11?,lambada,avail,0 -no,nothing good,parrot,cancel,3 -greeting,"hello, ai",original,greet,4 -no,that's certainly false,parrot,cancel,3 -greeting,wake up ai,parrot,greet,4 -no,most definitely false,parrot,cancel,3 -how_busy,is the red lobster very busy around lunch time?,parrot,avail,0 -greeting,aho,parrot,greet,4 -goodbye,later!,original,bye,2 -goodbye,you're done,parrot,bye,2 -meeting_schedule,when is my meeting?,parrot,avail,0 -goodbye,goodbyes soon,parrot,bye,2 -thank_you,thank you!,original,bye,2 -no,you can't make it true,parrot,cancel,3 -how_busy,at 3 pm is the place busy?,parrot,avail,0 -no,nada,original,cancel,3 -goodbye,goodbyes,parrot,bye,2 -goodbye,good talk,parrot,bye,2 -yes,roger that,original,book,1 -yes,i'm going to tell you tes,parrot,book,1 -goodbye,thanks bye bye!,original,bye,2 -yes,absolutely!,original,book,1 -yes,agreed,original,book,1 -no,nay,original,cancel,3 -yes,indeed,parrot,book,1 -goodbye,buhbye now,lambada,bye,2 -reminder_update,remind me,original,resched,5 -no,no it's not good,parrot,cancel,3 -cancel_reservation,you can cancel my booking,parrot,cancel,3 -yes,yes,original,book,1 -calendar,can you tell me if i have any appointments on my calendar for march 20th? why?,parrot,avail,0 -yes,i know,parrot,book,1 -no,no that's not correct,parrot,cancel,3 -goodbye,it's over,parrot,bye,2 -no,negatory?,parrot,cancel,3 -no,i'm afraid not,parrot,cancel,3 -yes,ya,original,book,1 -yes,indeed,original,book,1 -greeting,aloha,original,greet,4 -no,"please, no",original,cancel,3 -goodbye,sayonara ,parrot,bye,2 -date,what year is this?,parrot,avail,0 -yes,perfect,parrot,book,1 -greeting,why hello?,original,greet,4 -greeting,salutations,parrot,greet,4 -thank_you,"great, thanks!",original,bye,2 -thank_you,"great, thanks!",original,bye,2 -calendar_update,delete all calendar entries on march 7th,lambada,resched,5 -how_busy,is mcdonalds busy?,parrot,avail,0 -greeting,aho,parrot,greet,4 -thank_you,my thanks,parrot,bye,2 -goodbye,good call,parrot,bye,2 -greeting,how does ayi get on?,parrot,greet,4 -date,is the date?,parrot,avail,0 -date,which date today?,parrot,avail,0 -date,a year?,parrot,avail,0 -no,i'd prefer not to,parrot,cancel,3 -no,that's incorrect!,original,cancel,3 -greeting,good evening,original,greet,4 -meeting_schedule,can you tell me when my meeting with roger is scheduled?,parrot,avail,0 -greeting,so what's up?,parrot,greet,4 -no,the negator,parrot,cancel,3 -greeting,hey,original,greet,4 -greeting,how's ayi doing?,parrot,greet,4 -date,which date today?,parrot,avail,0 -thank_you,your response is appreciated,parrot,bye,2 -goodbye,regards,original,bye,2 -goodbye,good seeing you,original,bye,2 -thank_you,"thanks, that's helpful",original,bye,2 -greeting,wassup,original,greet,4 -yes,roger that,original,book,1 -greeting,hiya!,original,greet,4 -yes,it is true,original,book,1 -yes,good,parrot,book,1 -greeting,what's up,original,greet,4 -meeting_schedule,how many meetings am i scheduled for today between one and five,lambada,avail,0 -greeting,hello are you all right?,parrot,greet,4 -goodbye,i enjoyed our goodbye talk,parrot,bye,2 -yes,oh yes,original,book,1 -goodbye,farewell,original,bye,2 -thank_you,i'm thankful,original,bye,2 -yes,definitely yes,parrot,book,1 -goodbye,the talk was nice,lambada,bye,2 -date,what's today,original,avail,0 -how_busy,do you know how long it takes to wait in coffee shops?,parrot,avail,0 -how_busy,in olive gardens how long does it take to wait?,parrot,avail,0 -date,tell me the next month?,parrot,avail,0 -yes,uh-huh,original,book,1 -calendar,i need my calendar,parrot,avail,0 -yes,agreed,original,book,1 -how_busy,what's the wait in this restaurant?,parrot,avail,0 -goodbye,peace,original,bye,2 -thank_you,so grateful,parrot,bye,2 -calendar_update,remove the dinner party from my schedule,lambada,resched,5 -date,what year?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -reminder_update,set up a new reminder to alert me when it's time to get rid of the garbage,parrot,resched,5 -how_busy,how busy is the olive garden at noon?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -meeting_schedule,when are my meetings?,parrot,avail,0 -date,is the date?,parrot,avail,0 -thank_you,well done,parrot,bye,2 -yes,right,parrot,book,1 -yes,"yes, please",parrot,book,1 -reminder_update,remind me,original,resched,5 -yes,great,original,book,1 -greeting,how has my day been,lambada,greet,4 -no,it's not correct,parrot,cancel,3 -goodbye,talk to you soon,parrot,bye,2 -date,give me today's date,original,avail,0 -no,nope,original,cancel,3 -greeting,hey,original,greet,4 -goodbye,sayonara,original,bye,2 -greeting,hey what's up,original,greet,4 -yes,positive,original,book,1 -calendar,what's my schedule for april 30?,parrot,avail,0 -thank_you,really great!,original,bye,2 -yes,the answer is yes,original,book,1 -greeting,hola!,original,greet,4 -no,negatory,original,cancel,3 -meeting_schedule,the meetings today,parrot,avail,0 -greeting,hey,original,greet,4 -goodbye,see ya,original,bye,2 -no,so that's no,parrot,cancel,3 -no,it's overwhelmingly wrong,parrot,cancel,3 -goodbye,see ya,original,bye,2 -yes,you're right,original,book,1 -thank_you,thank you i appreciate it,parrot,bye,2 -no,negatory?,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -goodbye,bye-bye,original,bye,2 -yes,confirmed,original,book,1 -goodbye,peace,original,bye,2 -no,FALSE,lambada,cancel,3 -yes,yeap,original,book,1 -greeting,how is my day?,parrot,greet,4 -yes,yeap,original,book,1 -date,tell me the next week?,parrot,avail,0 -thank_you,thank you!,original,bye,2 -yes,yup,original,book,1 -no,that's very false,parrot,cancel,3 -yes,yup,original,book,1 -yes,ya,original,book,1 -goodbye,we had a nice chat,parrot,bye,2 -yes,absolutely,original,book,1 -yes,oh-huh,parrot,book,1 -thank_you,thank you?,parrot,bye,2 -goodbye,bye!,original,bye,2 -no,negatory,original,cancel,3 -greeting,hey yai,lambada,greet,4 -thank_you,thank you!,original,bye,2 -no,that's wrong,original,cancel,3 -goodbye,fairwell,original,bye,2 -no,that's so wrong,parrot,cancel,3 -thank_you,you have my thanks,parrot,bye,2 -greeting,heller,original,greet,4 -yes,perfect,parrot,book,1 -greeting,ai how you're doing,lambada,greet,4 -thank_you,really great!,original,bye,2 -greeting,hello good morning,parrot,greet,4 -how_busy,can you tell me if there's a lot of waiting time at wendy's around 8am?,parrot,avail,0 -yes,obviously,parrot,book,1 -no,naw,original,cancel,3 -date,what's my day?,parrot,avail,0 -date,what is it today?,lambada,avail,0 -goodbye,goodbye thank you,parrot,bye,2 -goodbye,talk later,original,bye,2 -no,negative,original,cancel,3 -yes,a fact,parrot,book,1 -greeting,hello ai,parrot,greet,4 -goodbye,it was good chatting,original,bye,2 -goodbye,good luck later,parrot,bye,2 -yes,oh-huh,parrot,book,1 -reminder_update,i need you to remind me to buy my clothes,parrot,resched,5 -greeting,yo,original,greet,4 -goodbye,nice to see you,original,bye,2 -goodbye,ai goodbye,original,bye,2 -greeting,wassup,original,greet,4 -greeting,how's the ayi?,parrot,greet,4 -greeting,how's ai feeling?,parrot,greet,4 -no,say negative,parrot,cancel,3 -greeting,what's up with you?,parrot,greet,4 -no,no,lambada,cancel,3 -greeting,hello,original,greet,4 -yes,accept,parrot,book,1 -greeting,how are you?,parrot,greet,4 -goodbye,goodbye thank you,parrot,bye,2 -schedule_meeting,please make a meeting room for friday at 3pm,parrot,book,1 -date,what month is today?,parrot,avail,0 -no,i prefer not,parrot,cancel,3 -date,can you tell me what the date will be,parrot,avail,0 -goodbye,later!,original,bye,2 -how_busy,how long can i wait for the red lobster?,parrot,avail,0 -calendar_update,please clear my calendar,original,resched,5 -yes,of course,original,book,1 -thank_you,thank you for the update,parrot,bye,2 -thank_you,i'm happy with my answer,original,bye,2 -goodbye,bye-bye,original,bye,2 -yes,yay,lambada,book,1 -no,invalid,original,cancel,3 -goodbye,fairwell?,parrot,bye,2 -greeting,how's idy?,parrot,greet,4 -thank_you,your answer was fun,parrot,bye,2 -no,no?,parrot,cancel,3 -no,no?,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -how_busy,how busy is the olive garden at 6?,parrot,avail,0 -thank_you,again thanks,parrot,bye,2 -no,no that's not correct,parrot,cancel,3 -no,not happening,original,cancel,3 -no,so that's no,parrot,cancel,3 -no,that's not always true,parrot,cancel,3 -no,i meant nothing,parrot,cancel,3 -meeting_schedule,when is my meeting with dan scheduled to begin?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -thank_you,merci beaucoup,original,bye,2 -greeting,whats up,original,greet,4 -thank_you,i appreciate your assistance,parrot,bye,2 -yes,absolutely!,original,book,1 -no,"no, that's a lie",lambada,cancel,3 -how_busy,does the cheese cake have a long wait in the restaurant?,parrot,avail,0 -greeting,hola!,original,greet,4 -no,indeed it's false,parrot,cancel,3 -calendar_update,i have to put my car repair on the calendar for tomorrow,parrot,resched,5 -date,please date,parrot,avail,0 -no,that's not always true,parrot,cancel,3 -no,the statement is false,original,cancel,3 -goodbye,goodbyes,parrot,bye,2 -schedule_meeting,how many rooms are available between 2 and 3,original,book,1 -yes,exactly right,original,book,1 -goodbye,on the highway,parrot,bye,2 -greeting,all right now?,parrot,greet,4 -no,nope,original,cancel,3 -greeting,how's my doing?,parrot,greet,4 -goodbye,maybe next time,parrot,bye,2 -thank_you,thanks again,original,bye,2 -how_busy,will i have to wait to get a table at ihop,original,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -date,please explain today,parrot,avail,0 -goodbye,good night,original,bye,2 -reminder_update,please set a reminder?,parrot,resched,5 -thank_you,gracias,original,bye,2 -yes,that is totally true,original,book,1 -no,absolutely not,original,cancel,3 -thank_you,thanks,original,bye,2 -greeting,how's life treating you?,parrot,greet,4 -greeting,whats new?,parrot,greet,4 -thank_you,thanks!,original,bye,2 -thank_you,i'm glad you answered,parrot,bye,2 -greeting,you good?,parrot,greet,4 -yes,confirmed,original,book,1 -no,i prefer not,parrot,cancel,3 -how_busy,tell me the time to wait for the caprese steak house?,parrot,avail,0 -goodbye,good conversation,parrot,bye,2 -no,nope,original,cancel,3 -goodbye,good-bye,parrot,bye,2 -yes,correct,original,book,1 -yes,uh huh,original,book,1 -date,what's today,original,avail,0 -no,ill pass,original,cancel,3 -goodbye,goodbye for now,parrot,bye,2 -greeting,aloha,original,greet,4 -greeting,how's idy doing,lambada,greet,4 -yes,ok,original,book,1 -greeting,heller,original,greet,4 -no,no that's not true,parrot,cancel,3 -how_busy,how busy is macaroni grill,lambada,avail,0 -yes,absolutely correct,original,book,1 -greeting,hello siri,original,greet,4 -no,that is no,lambada,cancel,3 -goodbye,bye for now,original,bye,2 -no,nope,original,cancel,3 -goodbye,fairwell?,parrot,bye,2 -schedule_meeting,how does scheduling work?,parrot,book,1 -how_busy,sage's busy at noon?,parrot,avail,0 -date,in 14 days?,parrot,avail,0 -how_busy,can you tell me how busy chili's will be at 730?,parrot,avail,0 -yes,right,parrot,book,1 -how_busy,how busy will olive garden be at 6,lambada,avail,0 -no,naw,parrot,cancel,3 -greeting,heyo,original,greet,4 -goodbye,peace,original,bye,2 -yes,certainly,parrot,book,1 -yes,is true,parrot,book,1 -no,but certainly not,parrot,cancel,3 -no,that’s actually wrong,original,cancel,3 -no,naw,parrot,cancel,3 -no,invalid,original,cancel,3 -no,i disagree,parrot,cancel,3 -greeting,bonjour,original,greet,4 -how_busy,i need to know about how much time i'd have to wait to get a table at dibruno's,original,avail,0 -thank_you,i appreciate my help,original,bye,2 -date,you know the date of today?,parrot,avail,0 -no,no!,original,cancel,3 -greeting,wassup,original,greet,4 -greeting,what's new here?,parrot,greet,4 -calendar,does my calendar show anything for thursday 14?,parrot,avail,0 -schedule_meeting,list the steps to set up a meeting?,parrot,book,1 -goodbye,i'm out,parrot,bye,2 -schedule_meeting,is there a meeting room available at 8am?,parrot,book,1 -yes,affirmitive,original,book,1 -yes,my answer is yes,parrot,book,1 -yes,good,parrot,book,1 -greeting,hi ai,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -yes,10-Apr,original,book,1 -reminder_update,set a reminder,original,resched,5 -yes,it's logical,parrot,book,1 -greeting,what's up?,parrot,greet,4 -reminder_update,can you send me a reminder to pay taxes?,parrot,resched,5 -no,that's totally wrong!,original,cancel,3 -calendar,what's on the calendar for march 4?,parrot,avail,0 -thank_you,i'm very thankful,parrot,bye,2 -greeting,how's it going now?,parrot,greet,4 -how_busy,is mcdonalds busy?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -how_busy,how busy is pizza at 7?,parrot,avail,0 -date,what's today?,parrot,avail,0 -yes,sure,original,book,1 -goodbye,good-bye,parrot,bye,2 -greeting,aloha,original,greet,4 -no,it's very false,parrot,cancel,3 -yes,yes,original,book,1 -goodbye,later then,lambada,bye,2 -yes,it's true yes,parrot,book,1 -yes,that's true,original,book,1 -yes,ya,original,book,1 -yes,good yes,lambada,book,1 -no,erroneous,parrot,cancel,3 -yes,all right,parrot,book,1 -greeting,hola,original,greet,4 -how_busy,is the restaurant packed around dinner?,parrot,avail,0 -greeting,hey hey!,original,greet,4 -goodbye,farewell!,original,bye,2 -greeting,how's idy?,parrot,greet,4 -date,what's today's date,original,avail,0 -goodbye,goodbye to you,original,bye,2 -calendar_update,can you add this event to my calendar this friday?,parrot,resched,5 -thank_you,appreciate it,original,bye,2 -thank_you,thanks for trying,original,bye,2 -no,negatory,original,cancel,3 -schedule_meeting,can you book a meeting room between 10 and 11?,parrot,book,1 -goodbye,nice talk,lambada,bye,2 -how_busy,is there a lot of wait time at impala right now?,lambada,avail,0 -no,erroneous,parrot,cancel,3 -greeting,hiya,original,greet,4 -greeting,what's new?,parrot,greet,4 -goodbye,i'm leaving,parrot,bye,2 -greeting,how's life for you today,lambada,greet,4 -greeting,hello,original,greet,4 -goodbye,no problem goodbye,parrot,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -thank_you,your assistance is appreciated,parrot,bye,2 -greeting,how's the ai?,parrot,greet,4 -no,it's a false,lambada,cancel,3 -how_busy,how busy will honey's be around dinner,lambada,avail,0 -meeting_schedule,when is the meeting with john?,parrot,avail,0 -goodbye,bye!,original,bye,2 -no,no good,original,cancel,3 -greeting,whats up,original,greet,4 -yes,absolutely,original,book,1 -greeting,how ya been,original,greet,4 -yes,yeap,original,book,1 -yes,oh-huh,parrot,book,1 -how_busy,how busy is chili at 5 pm?,parrot,avail,0 -yes,confirmed,original,book,1 -how_busy,how busy will ihop be at 8 am,lambada,avail,0 -no,i think it's false,parrot,cancel,3 -no,that's a lie,parrot,cancel,3 -how_busy,when is the restaurant busiest around 11 o'clock?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -no,not that,original,cancel,3 -goodbye,nice talking to you,parrot,bye,2 -goodbye,farewell!,original,bye,2 -greeting,bonjour,original,greet,4 -goodbye,nice talk,lambada,bye,2 -thank_you,i'm grateful,original,bye,2 -greeting,hiya!,original,greet,4 -calendar_update,can you delete dinner with jim from my calendar?,parrot,resched,5 -goodbye,goodbye bye,parrot,bye,2 -meeting_schedule,are there meetings between 8 and 9?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -no,no?,parrot,cancel,3 -yes,"yeah, that's it",lambada,book,1 -date,what will it be tomorrow?,lambada,avail,0 -greeting,hey fellows,parrot,greet,4 -thank_you,thankyou,parrot,bye,2 -schedule_meeting,i'd like to schedule a meeting between 6 and 8,parrot,book,1 -greeting,aloha,original,greet,4 -goodbye,nice talk,lambada,bye,2 -greeting,how is ayi doing?,parrot,greet,4 -goodbye,adios ai,original,bye,2 -yes,not false,parrot,book,1 -yes,oh-huh,parrot,book,1 -yes,sure,original,book,1 -how_busy,"around nine, is ambrosio busy",original,avail,0 -schedule_meeting,me and seth would like to have a meeting at 11am,parrot,book,1 -calendar,is my daughter's birthday on the calendar?,parrot,avail,0 -reminder_update,make me a reminder to pay my mortgage,lambada,resched,5 -no,no!,original,cancel,3 -calendar_update,please remove june's dinner from my calendar for may 14th?,parrot,resched,5 -yes,yes,original,book,1 -goodbye,adios,original,bye,2 -thank_you,thanks for helping,original,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -yes,i want that,parrot,book,1 -yes,"yes, that is correct",original,book,1 -date,tell me what's the day tomorrow?,parrot,avail,0 -no,no no no,parrot,cancel,3 -thank_you,very grateful,parrot,bye,2 -yes,great,original,book,1 -yes,that is true,original,book,1 -yes,huh,parrot,book,1 -meeting_schedule,is my schedule clear today?,parrot,avail,0 -goodbye,great talk,lambada,bye,2 -yes,good,parrot,book,1 -goodbye,ill leave now,parrot,bye,2 -no,nada,original,cancel,3 -reminder_update,remind me later,original,resched,5 -greeting,hello,original,greet,4 -greeting,hiya,original,greet,4 -no,that's absolutely false,parrot,cancel,3 -yes,good,parrot,book,1 -thank_you,my gratitude,parrot,bye,2 -greeting,hiya,original,greet,4 -yes,i know that's true,parrot,book,1 -goodbye,bye bye!,original,bye,2 -thank_you,i'm grateful,original,bye,2 -yes,yay,lambada,book,1 -cancel_reservation,carla doesn't want her reservation in the olive garden,parrot,cancel,3 -greeting,hey there!,original,greet,4 -no,i don't agree,parrot,cancel,3 -meeting_schedule,wanna meet roger?,parrot,avail,0 -greeting,hello,original,greet,4 -goodbye,i'll go,parrot,bye,2 -cancel_reservation,are we supposed to cancel our reservations at the table?,parrot,cancel,3 -yes,yes that is true,lambada,book,1 -no,that's no way,parrot,cancel,3 -no,no thank you,original,cancel,3 -no,no?,parrot,cancel,3 -date,i'd like to know tomorrow's date,parrot,avail,0 -greeting,ahoy hoy,original,greet,4 -greeting,hiya!,original,greet,4 -goodbye,signing off,original,bye,2 -no,so that's no,parrot,cancel,3 -yes,10-Apr,original,book,1 -thank_you,i'm glad you laughed,parrot,bye,2 -yes,very true,original,book,1 -no,nothing,parrot,cancel,3 -thank_you,so grateful,parrot,bye,2 -greeting,hey fellows,parrot,greet,4 -yes,approved,original,book,1 -goodbye,peace out!,original,bye,2 -yes,confirm,original,book,1 -greeting,hey bs,lambada,greet,4 -thank_you,okay thanks,original,bye,2 -date,is today the day?,parrot,avail,0 -no,naw,parrot,cancel,3 -greeting,well hello,original,greet,4 -yes,it is definitely affirmative,original,book,1 -thank_you,well done,parrot,bye,2 -date,after eight days what day will it be?,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -goodbye,tootles,original,bye,2 -goodbye,really nice talking to you,parrot,bye,2 -no,no way!,original,cancel,3 -thank_you,i am grateful,lambada,bye,2 -no,no,lambada,cancel,3 -no,FALSE,original,cancel,3 -goodbye,you're done,parrot,bye,2 -cancel_reservation,call the restaurant to cancel my reservation for dinner tonight,lambada,cancel,3 -goodbye,no problem take it easy,parrot,bye,2 -no,that's a false,lambada,cancel,3 -calendar,please know what's on my calendar for march 17th,parrot,avail,0 -no,negating,parrot,cancel,3 -goodbye,"see you later, alligator",original,bye,2 -thank_you,appreciated,original,bye,2 -schedule_meeting,are there meeting rooms available between 11-12?,original,book,1 -goodbye,adios ai,original,bye,2 -greeting,whats up?,parrot,greet,4 -how_busy,is mcdonalds busy?,parrot,avail,0 -date,date tomorrow,parrot,avail,0 -how_busy,how long will it take for a table in the olive garden?,parrot,avail,0 -yes,oh yes,original,book,1 -greeting,get up ai,parrot,greet,4 -how_busy,how long can i expect to wait for a table in a restaurant,parrot,avail,0 -how_busy,how long will the wait at tamales be?,parrot,avail,0 -thank_you,much obliged,original,bye,2 -no,it's not correct,parrot,cancel,3 -greeting,yo,original,greet,4 -yes,great,original,book,1 -yes,positive,parrot,book,1 -how_busy,is the chili's busy at 9?,lambada,avail,0 -yes,huh huh,parrot,book,1 -date,in 9 days?,parrot,avail,0 -no,that’s incorrect,original,cancel,3 -thank_you,good job,lambada,bye,2 -thank_you,good job,lambada,bye,2 -thank_you,you've helped,parrot,bye,2 -no,that is false,original,cancel,3 -greeting,nice day,lambada,greet,4 -thank_you,thanks for this information,lambada,bye,2 -thank_you,you gave me this,parrot,bye,2 -greeting,good evening,original,greet,4 -thank_you,thanks for the assist,original,bye,2 -yes,okay,original,book,1 -cancel_reservation,can you cancel the reservation?,lambada,cancel,3 -no,it is false,original,cancel,3 -no,that's incorrect,original,cancel,3 -no,this is not true,parrot,cancel,3 -yes,so it's checked,parrot,book,1 -greeting,bonjour,original,greet,4 -goodbye,a good talk,parrot,bye,2 -no,naw,original,cancel,3 -yes,accepted,original,book,1 -goodbye,bye bye,lambada,bye,2 -yes,confirm,original,book,1 -schedule_meeting,what do i do to schedule a meeting?,original,book,1 -how_busy,can you tell me how long the wait is at olive garden right now?,parrot,avail,0 -no,negation,parrot,cancel,3 -yes,that statement is true,lambada,book,1 -greeting,"hello, ai",original,greet,4 -goodbye,bye,original,bye,2 -yes,positive,parrot,book,1 -yes,approved,original,book,1 -no,negating,parrot,cancel,3 -no,i'll pass,original,cancel,3 -yes,is true,parrot,book,1 -thank_you,i thank you,original,bye,2 -how_busy,how busy is cheesecake factory at 6 pm,lambada,avail,0 -schedule_meeting,can i schedule a meeting?,parrot,book,1 -yes,TRUE,original,book,1 -goodbye,sayonara,original,bye,2 -yes,my answer is yes,parrot,book,1 -no,it's not necessarily true,parrot,cancel,3 -reminder_update,make me remember to request time off,parrot,resched,5 -goodbye,signing off,original,bye,2 -calendar,how does my calendar look on thursday?,parrot,avail,0 -yes,do that?,original,book,1 -cancel_reservation,delete my dinner reservation,parrot,cancel,3 -yes,yes sir,original,book,1 -reminder_update,remind me something,parrot,resched,5 -how_busy,when the place is crowded in the morning?,parrot,avail,0 -greeting,hello what's up?,parrot,greet,4 -thank_you,thanks for my support,parrot,bye,2 -greeting,"hi, ai",original,greet,4 -date,what date?,parrot,avail,0 -no,naw,original,cancel,3 -greeting,salutations,parrot,greet,4 -goodbye,afterward,parrot,bye,2 -yes,uh-huh,original,book,1 -thank_you,you've helped,parrot,bye,2 -yes,"yes, please",original,book,1 -goodbye,later goodbye,parrot,bye,2 -greeting,salutations,parrot,greet,4 -no,that's false,original,cancel,3 -meeting_schedule,list today's meetings on the calendar,parrot,avail,0 -greeting,wassup,original,greet,4 -greeting,how's it going,lambada,greet,4 -yes,it's certainly positive,parrot,book,1 -no,negative,original,cancel,3 -yes,"yes, please",parrot,book,1 -greeting,heller,original,greet,4 -yes,all right,parrot,book,1 -no,FALSE,lambada,cancel,3 -no,nada,original,cancel,3 -no,nay,original,cancel,3 -cancel_reservation,i have to cancel my reservation for a nudist in houston,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -greeting,what's up,original,greet,4 -goodbye,just relax,parrot,bye,2 -yes,you're right that that's true,lambada,book,1 -meeting_schedule,wanna meet roger?,parrot,avail,0 -thank_you,i appreciate it,original,bye,2 -goodbye,good luck later,parrot,bye,2 -yes,very true,original,book,1 -date,what date is tomorrow?,original,avail,0 -yes,not false,parrot,book,1 -goodbye,fairwell,original,bye,2 -yes,that appears true,original,book,1 -no,that's a lie,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -date,which date is next?,parrot,avail,0 -yes,"yes, that's affirmative",original,book,1 -yes,it is a true,original,book,1 -no,no,lambada,cancel,3 -greeting,good morning,parrot,greet,4 -yes,ya,original,book,1 -yes,positive,parrot,book,1 -goodbye,goodbye later,parrot,bye,2 -no,indeed it's false,parrot,cancel,3 -greeting,are you doing alright?,original,greet,4 -thank_you,nice,parrot,bye,2 -meeting_schedule,do i have any meetings today between 9 and 10?,original,avail,0 -how_busy,how busy is chili's around 8:00 pm,lambada,avail,0 -goodbye,goodnight,original,bye,2 -greeting,"hey, what's new",original,greet,4 -how_busy,does coffee bean work pretty well at 7?,lambada,avail,0 -how_busy,how busy is red robin at 5:30 pm,lambada,avail,0 -how_busy,how long will i need to wait at the red robin at 6 pm,lambada,avail,0 -goodbye,thanks goodbye,parrot,bye,2 -yes,positive,parrot,book,1 -goodbye,"thanks for chatting, later",original,bye,2 -yes,very true,original,book,1 -goodbye,goodbye!,original,bye,2 -goodbye,thank you for my chat,parrot,bye,2 -greeting,aho,parrot,greet,4 -yes,approved,original,book,1 -goodbye,please talk soon,parrot,bye,2 -how_busy,how busy is the restaurant around 6pm,lambada,avail,0 -greeting,bonjour,original,greet,4 -meeting_schedule,which meetings will be held in san francisco?,parrot,avail,0 -how_busy,list the current wait times at macy's?,parrot,avail,0 -greeting,"hello, ai",original,greet,4 -yes,TRUE,original,book,1 -goodbye,have to go,parrot,bye,2 -goodbye,goodbye then,parrot,bye,2 -yes,"yes, you got it",original,book,1 -how_busy,what's the wait time for mac 'n cheese right now?,parrot,avail,0 -goodbye,bye,original,bye,2 -how_busy,how long will it take to get seated at tuesdays pizza,lambada,avail,0 -no,that's inaccurate,original,cancel,3 -greeting,you're all right?,parrot,greet,4 -greeting,hey fellows,parrot,greet,4 -greeting,"hello, good morning",lambada,greet,4 -goodbye,later goodbye,parrot,bye,2 -yes,i know,parrot,book,1 -meeting_schedule,meeting today,parrot,avail,0 -no,FALSE,original,cancel,3 -no,no no no,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -how_busy,"around nine, is ambrosio busy",original,avail,0 -yes,yup,original,book,1 -goodbye,have fun?,lambada,bye,2 -how_busy,chili's busy around 730?,parrot,avail,0 -calendar,does my calendar have an event called shana's baby showers?,parrot,avail,0 -goodbye,take it easy!,original,bye,2 -thank_you,i'm grateful for you,parrot,bye,2 -yes,say yes,lambada,book,1 -yes,correct,original,book,1 -yes,huh,parrot,book,1 -date,what date will it be in 3 days?,lambada,avail,0 -greeting,hello there,original,greet,4 -greeting,hi ai,original,greet,4 -no,that is not acceptable,lambada,cancel,3 -thank_you,thanks again!,original,bye,2 -greeting,salutations!,original,greet,4 -goodbye,later good luck,parrot,bye,2 -meeting_schedule,when's my meeting?,parrot,avail,0 -yes,positive,parrot,book,1 -yes,right,parrot,book,1 -yes,it'd be great,parrot,book,1 -no,not correct,parrot,cancel,3 -goodbye,bye-bye,original,bye,2 -goodbye,goodbye!,original,bye,2 -calendar,tell me what my calendar looks like for march 13th,parrot,avail,0 -no,"that would be ""no",original,cancel,3 -greeting,how's life?,parrot,greet,4 -thank_you,i owe you,parrot,bye,2 -yes,absolutely correct,original,book,1 -date,what's my date tomorrow?,parrot,avail,0 -greeting,how's the ai?,parrot,greet,4 -thank_you,my gratitude,parrot,bye,2 -how_busy,i think outback steakhouse will be busy around 7pm,parrot,avail,0 -greeting,hey there,original,greet,4 -no,don't like that,parrot,cancel,3 -thank_you,thanks for doing it,parrot,bye,2 -no,no,lambada,cancel,3 -calendar_update,add an event to my calendar for march 1,lambada,resched,5 -yes,oh-huh,parrot,book,1 -yes,i'll say yes,parrot,book,1 -no,it's the wrong answer,parrot,cancel,3 -goodbye,cya later,original,bye,2 -greeting,what's up,original,greet,4 -yes,yay,lambada,book,1 -goodbye,good call,parrot,bye,2 -how_busy,in a chinese restaurant how long will i have to wait?,parrot,avail,0 -date,what is the month and day of tomorrow?,lambada,avail,0 -yes,and you're right,parrot,book,1 -how_busy,can you tell me how busy red lobster is at 6:30?,lambada,avail,0 -meeting_schedule,what meetings are planned today?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -how_busy,how busy is macaroni grill?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -no,naw,parrot,cancel,3 -thank_you,thanks so much!,original,bye,2 -goodbye,goodbyes soon,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -yes,a fact,parrot,book,1 -goodbye,until the next time,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -yes,say yes,lambada,book,1 -greeting,whats up?,parrot,greet,4 -meeting_schedule,on my list today are any meetings,lambada,avail,0 -meeting_schedule,please let me know if i have meetings with stan,parrot,avail,0 -greeting,how is life?,parrot,greet,4 -greeting,what's new?,parrot,greet,4 -no,that's no way,parrot,cancel,3 -greeting,hi how are things going?,parrot,greet,4 -no,but it's totally wrong,parrot,cancel,3 -yes,great,original,book,1 -no,negatory?,parrot,cancel,3 -no,nay,original,cancel,3 -no,that's negative,parrot,cancel,3 -yes,"yes, please",original,book,1 -thank_you,really great!,original,bye,2 -yes,is true,parrot,book,1 -yes,all right,parrot,book,1 -goodbye,great talk,lambada,bye,2 -date,where is tomorrow's date?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -yes,ya,original,book,1 -goodbye,buhbye,original,bye,2 -how_busy,does the grocer have a lot of people at noon?,parrot,avail,0 -no,negative,original,cancel,3 -greeting,you good?,parrot,greet,4 -yes,obviously,parrot,book,1 -greeting,ahoy there,lambada,greet,4 -yes,yes,original,book,1 -greeting,hello,original,greet,4 -yes,okay,original,book,1 -greeting,hi ai,original,greet,4 -greeting,hey yai,lambada,greet,4 -no,FALSE,lambada,cancel,3 -goodbye,nice talk,lambada,bye,2 -yes,so it's real,parrot,book,1 -greeting,how are you treated?,parrot,greet,4 -goodbye,great conversation,parrot,bye,2 -greeting,wassup,original,greet,4 -greeting,get up ai,parrot,greet,4 -thank_you,you did it,parrot,bye,2 -goodbye,im leaving goodbye,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -calendar_update,clear my calendar for the feb 6th,lambada,resched,5 -yes,that would be right,parrot,book,1 -calendar,what's my schedule for january 14?,parrot,avail,0 -how_busy,how long is the wait at restaurant,lambada,avail,0 -thank_you,my gratitude,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -reminder_update,please make a reminder,original,resched,5 -date,what today?,parrot,avail,0 -how_busy,is chili busy around dinner?,parrot,avail,0 -greeting,how're you doing?,parrot,greet,4 -yes,accepted,original,book,1 -how_busy,what's the wait like at olive garden right now,lambada,avail,0 -yes,yeah,original,book,1 -schedule_meeting,i would like to find out how do i schedule a meeting,parrot,book,1 -how_busy,how long would i have to wait for a table at macaroni grill?,parrot,avail,0 -date,what's the date of the day,lambada,avail,0 -meeting_schedule,are there meetings between 4 and 5 today?,parrot,avail,0 -greeting,how are you today?,parrot,greet,4 -greeting,welcome,parrot,greet,4 -greeting,salutations!,original,greet,4 -calendar,tell me what's on my calendar april 1st,parrot,avail,0 -how_busy,i want to know how busy the chili is between 5 and 9,parrot,avail,0 -yes,TRUE,original,book,1 -date,what date?,parrot,avail,0 -yes,sure,original,book,1 -thank_you,thank you for the payment,lambada,bye,2 -no,it's false,parrot,cancel,3 -date,what's tomorrow's date,original,avail,0 -yes,a fact,parrot,book,1 -date,what is my tomorrow's date?,lambada,avail,0 -how_busy,what's the wait like at chima brazilian steakhouse at this time,original,avail,0 -yes,great,original,book,1 -cancel_reservation,abrogate the reservation for dinner,parrot,cancel,3 -no,nothing,parrot,cancel,3 -yes,it seems true,parrot,book,1 -date,tomorrow is the calendar,parrot,avail,0 -date,today?,parrot,avail,0 -calendar,check calendar for events,lambada,avail,0 -goodbye,see ya!,original,bye,2 -no,nada,original,cancel,3 -goodbye,goodbye!,original,bye,2 -goodbye,as regards,parrot,bye,2 -reminder_update,make me a reminder about my vacation,parrot,resched,5 -goodbye,"later, goodbye",lambada,bye,2 -thank_you,thank you for answering,parrot,bye,2 -no,that's no,parrot,cancel,3 -thank_you,gracias,original,bye,2 -thank_you,you answered,parrot,bye,2 -calendar_update,add iras' birthday to my calendar,lambada,resched,5 -no,the answer isn't correct,parrot,cancel,3 -how_busy,can i know how long it takes to open tequila bars,parrot,avail,0 -goodbye,my way,parrot,bye,2 -cancel_reservation,please let my reservation for saturday in my favorite restaurant expire,parrot,cancel,3 -greeting,good evening,original,greet,4 -reminder_update,remind me to remind my cat to give her her flea medicine,lambada,resched,5 -greeting,salutations,parrot,greet,4 -goodbye,bye!,original,bye,2 -yes,perfect,parrot,book,1 -reminder_update,make a reminder to clean the apartment,parrot,resched,5 -yes,is true,parrot,book,1 -greeting,how's the ayi doing?,parrot,greet,4 -thank_you,you're special thanks,parrot,bye,2 -greeting,ahoy hoy,original,greet,4 -goodbye,goodbye!,original,bye,2 -yes,agreed,original,book,1 -no,please disagree,lambada,cancel,3 -date,what is current day?,parrot,avail,0 -greeting,aho,parrot,greet,4 -goodbye,sayonara ,parrot,bye,2 -reminder_update,make a reminder to pick up the cat,lambada,resched,5 -calendar,if my annual health insurance plan has any dates on it can you check it?,parrot,avail,0 -thank_you,again thanks,parrot,bye,2 -thank_you,i have to thank you for your time,parrot,bye,2 -no,i meant nothing,parrot,cancel,3 -calendar_update,i need a calendar for april 15,parrot,resched,5 -no,FALSE,lambada,cancel,3 -greeting,hi how's everything going?,parrot,greet,4 -yes,positive,original,book,1 -goodbye,good night,original,bye,2 -date,today's date is exactly what,parrot,avail,0 -goodbye,until next time!,original,bye,2 -yes,yep,original,book,1 -yes,exactly right,original,book,1 -yes,yeah,original,book,1 -thank_you,you helped,parrot,bye,2 -thank_you,you helped,parrot,bye,2 -no,that's totally false,parrot,cancel,3 -how_busy,what is the wait at chili's tonight?,lambada,avail,0 -greeting,"hello, good morning",lambada,greet,4 -yes,roger that,original,book,1 -how_busy,how busy is olive garden at 4:30 pm,lambada,avail,0 -greeting,welcome,parrot,greet,4 -no,say negative,parrot,cancel,3 -no,nope,original,cancel,3 -how_busy,outback steakhouse at 6pm,parrot,avail,0 -date,what today?,parrot,avail,0 -no,this information is false,parrot,cancel,3 -greeting,ahoy there,lambada,greet,4 -yes,yeah,original,book,1 -no,FALSE,lambada,cancel,3 -yes,definitely,original,book,1 -thank_you,very grateful,parrot,bye,2 -reminder_update,add a note,parrot,resched,5 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -yes,positive,original,book,1 -yes,approved,original,book,1 -no,that is not correct,original,cancel,3 -date,the date is tomorrow,parrot,avail,0 -yes,agreed,original,book,1 -goodbye,i'm out of here,original,bye,2 -thank_you,good job thanks,parrot,bye,2 -thank_you,thanks!,original,bye,2 -how_busy,how busy is macaroni grill?,parrot,avail,0 -how_busy,how long will the wait be at red robins?,parrot,avail,0 -calendar,what's my schedule for march 3rd?,parrot,avail,0 -yes,right true,lambada,book,1 -meeting_schedule,time of meeting?,parrot,avail,0 -how_busy,what's the olive garden like at 7 pm?,parrot,avail,0 -greeting,hello there!,original,greet,4 -no,"please, no",original,cancel,3 -yes,"agreed, that's valid",original,book,1 -goodbye,bye bye,lambada,bye,2 -thank_you,thank you for the thanks,parrot,bye,2 -no,certainly not true,parrot,cancel,3 -yes,right,parrot,book,1 -greeting,are you okay??,parrot,greet,4 -no,not right now,original,cancel,3 -reminder_update,can you remind me to clean the floors?,parrot,resched,5 -calendar,what do you have for next friday?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -goodbye,see ya,original,bye,2 -greeting,good evening,original,greet,4 -yes,yeah,original,book,1 -greeting,are you doing okay?,original,greet,4 -calendar,tell me what's on my calendar for april 24th,parrot,avail,0 -goodbye,see ya!,original,bye,2 -yes,just right,parrot,book,1 -yes,confirmed,original,book,1 -how_busy,how long can i expect the wait to be at a pistachio tree,lambada,avail,0 -thank_you,okay thank you,parrot,bye,2 -greeting,how's ai doing?,parrot,greet,4 -greeting,hola,original,greet,4 -no,i'm sorry it isn't,lambada,cancel,3 -thank_you,thank you for my consideration,parrot,bye,2 -yes,right,parrot,book,1 -yes,absolutely correct,original,book,1 -no,nope,original,cancel,3 -no,no that's not accurate,parrot,cancel,3 -yes,absolutely,original,book,1 -no,no way!,original,cancel,3 -how_busy,how long will it take to sit in iman's chair?,parrot,avail,0 -thank_you,thanks for that!,original,bye,2 -yes,i know this is true,lambada,book,1 -date,"what is the date tomorrow, please?",original,avail,0 -greeting,hiya!,original,greet,4 -thank_you,"great, thanks!",original,bye,2 -how_busy,how busy will iroquois be at 10am,lambada,avail,0 -goodbye,talk later,original,bye,2 -calendar_update,i need you to cancel the event on april 12th,parrot,resched,5 -no,that's erroneous,parrot,cancel,3 -calendar,check my calendar,parrot,avail,0 -thank_you,i appreciate this answer,parrot,bye,2 -greeting,how is life treating you?,parrot,greet,4 -greeting,salutations,parrot,greet,4 -greeting,hola!,original,greet,4 -date,what is today's month day?,parrot,avail,0 -no,negation,parrot,cancel,3 -goodbye,later gator!,original,bye,2 -how_busy,oh chicken fingers at six o'clock?,parrot,avail,0 -greeting,what's up,original,greet,4 -date,what date today?,parrot,avail,0 -greeting,aloha,original,greet,4 -greeting,what is new?,parrot,greet,4 -goodbye,goodnight,original,bye,2 -how_busy,i would like to find out if macaroni grill will be busy around 7:00 pm,original,avail,0 -yes,yeah yeah,lambada,book,1 -goodbye,adios,original,bye,2 -how_busy,what time should i wait when i go to a restaurant?,parrot,avail,0 -no,that's totally wrong,parrot,cancel,3 -date,what's the date,original,avail,0 -schedule_meeting,how do i book meetings?,parrot,book,1 -no,nothing,parrot,cancel,3 -greeting,hi,original,greet,4 -greeting,hiya!,original,greet,4 -no,it's overwhelmingly negative,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -yes,is true,parrot,book,1 -how_busy,how long will it take before i can get a table at chili's,lambada,avail,0 -greeting,bonjour,original,greet,4 -reminder_update,what's a reminder,parrot,resched,5 -reminder_update,save the reminder for later,parrot,resched,5 -thank_you,really great!,original,bye,2 -no,no no no,parrot,cancel,3 -cancel_reservation,can i cancel my reservations?,original,cancel,3 -date,tell me what's the day,parrot,avail,0 -yes,great,original,book,1 -goodbye,i must say goodbye,original,bye,2 -goodbye,now i have to leave,parrot,bye,2 -yes,all right,parrot,book,1 -greeting,hello,original,greet,4 -thank_you,you helped me today,parrot,bye,2 -date,what's today,original,avail,0 -goodbye,goodbyes,parrot,bye,2 -yes,TRUE,original,book,1 -thank_you,thanks please,original,bye,2 -greeting,hey how's life,original,greet,4 -goodbye,time to say goodbye,parrot,bye,2 -yes,and you're correct,parrot,book,1 -how_busy,what's the wait time for chipotle tonight?,parrot,avail,0 -no,that is not a good sign,lambada,cancel,3 -goodbye,say goodbye now,parrot,bye,2 -how_busy,show me the wait times in chili's restaurant?,parrot,avail,0 -greeting,how you're doing?,parrot,greet,4 -thank_you,okay thank you,parrot,bye,2 -goodbye,signing off,original,bye,2 -yes,a real statement,parrot,book,1 -yes,oh-huh,parrot,book,1 -thank_you,i appreciate you helping me out,lambada,bye,2 -goodbye,and then goodbye,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -how_busy,how long will it take me to sit in mw steakhouse?,parrot,avail,0 -thank_you,my thanks,parrot,bye,2 -yes,sure,original,book,1 -yes,that is correct,original,book,1 -greeting,hi what's up,original,greet,4 -meeting_schedule,give me a list of the meetings on my calendar today,parrot,avail,0 -greeting,hello ai,parrot,greet,4 -no,negating,parrot,cancel,3 -thank_you,i'm thankful,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -schedule_meeting,plan a meeting with saul,parrot,book,1 -goodbye,bye bye!,original,bye,2 -goodbye,"enjoy my day, bye",lambada,bye,2 -yes,TRUE,lambada,book,1 -calendar,can you tell me anything about the 29th of march on the calendar?,parrot,avail,0 -yes,"yes, that's confirmed",original,book,1 -yes,positive,parrot,book,1 -greeting,hola!,original,greet,4 -no,naw,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -yes,yep,original,book,1 -yes,that statement is true,lambada,book,1 -calendar_update,remove april 16th's birthday party from my calendar,parrot,resched,5 -how_busy,what is the wait time at this restaurant?,original,avail,0 -greeting,aloha,original,greet,4 -meeting_schedule,do we meet today?,parrot,avail,0 -calendar_update,clear my calendar for the date of june 23,original,resched,5 -no,negative,original,cancel,3 -yes,absolutely correct,original,book,1 -calendar,tell me what's going on on march 6th?,parrot,avail,0 -greeting,hey fellow,parrot,greet,4 -yes,uh-huh,original,book,1 -date,date please,original,avail,0 -no,that's definitely false,original,cancel,3 -yes,agreed,original,book,1 -goodbye,afterward,parrot,bye,2 -schedule_meeting,add a new meeting with tom for 6pm,original,book,1 -yes,perfect,parrot,book,1 -goodbye,bye,original,bye,2 -greeting,aloha,original,greet,4 -thank_you,why thank you?,original,bye,2 -how_busy,is mr joe's steakhouse crowded?,parrot,avail,0 -yes,i'll tell you it's a true statement,parrot,book,1 -yes,of course,original,book,1 -greeting,ai how are you feeling,lambada,greet,4 -no,nada,original,cancel,3 -goodbye,later!,original,bye,2 -no,not right?,parrot,cancel,3 -yes,i guess yes,parrot,book,1 -no,invalid,original,cancel,3 -goodbye,farewell!,original,bye,2 -no,FALSE,original,cancel,3 -no,that’s incorrect,original,cancel,3 -greeting,hi what's up,original,greet,4 -yes,yup,original,book,1 -greeting,whats new?,parrot,greet,4 -no,that is wrong,original,cancel,3 -goodbye,adios!,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -no,no?,parrot,cancel,3 -yes,certainly,parrot,book,1 -yes,sure,original,book,1 -how_busy,is imbrosia busy at 7?,parrot,avail,0 -how_busy,can you tell me how busy the cheesecake factory will be at 6 am?,lambada,avail,0 -yes,correct,original,book,1 -greeting,how's ai doing?,parrot,greet,4 -goodbye,"thanks, bye",original,bye,2 -goodbye,good-bye,parrot,bye,2 -goodbye,nice drive by,lambada,bye,2 -yes,facts,original,book,1 -no,negatory?,parrot,cancel,3 -yes,certainly,parrot,book,1 -how_busy,how busy is olive garden at 4,lambada,avail,0 -yes,ya,original,book,1 -thank_you,you helped,parrot,bye,2 -yes,yep,original,book,1 -greeting,hello,original,greet,4 -goodbye,fairwell,original,bye,2 -no,FALSE,original,cancel,3 -thank_you,thank you very much,original,bye,2 -yes,yeah you got it,lambada,book,1 -goodbye,this conversation was great,parrot,bye,2 -yes,obviously,parrot,book,1 -no,thanks no,parrot,cancel,3 -yes,good,parrot,book,1 -thank_you,thanks for the info,original,bye,2 -no,the negator,parrot,cancel,3 -greeting,salutations!,original,greet,4 -goodbye,bye!,original,bye,2 -no,naw,original,cancel,3 -thank_you,you've helped,parrot,bye,2 -yes,sure thing,original,book,1 -thank_you,nice,parrot,bye,2 -date,what day?,parrot,avail,0 -yes,confirmed,original,book,1 -greeting,aho,parrot,greet,4 -date,current date,original,avail,0 -yes,"yes, please",parrot,book,1 -date,what's the present day?,parrot,avail,0 -calendar,what's on my calendar today?,parrot,avail,0 -yes,true is my response,original,book,1 -calendar_update,lunch with deb at noon today,original,resched,5 -greeting,hey fellow,parrot,greet,4 -date,tell me the month and day of the year in 4 days?,parrot,avail,0 -goodbye,for now,parrot,bye,2 -yes,perfect,parrot,book,1 -no,so that's no,parrot,cancel,3 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -calendar_update,delete all calendar entries on march 13,lambada,resched,5 -greeting,how's my current situation?,parrot,greet,4 -how_busy,how long before i can eat macaroni grill?,parrot,avail,0 -no,that's a false,lambada,cancel,3 -no,negatory,original,cancel,3 -greeting,hiya,original,greet,4 -how_busy,is she busy at 5 o'clock?,parrot,avail,0 -how_busy,how busy will olive garden be at 9 pm,lambada,avail,0 -no,no it's not right,parrot,cancel,3 -no,it's indeed false,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,i'll say yes,parrot,book,1 -how_busy,tell me if chili's busy at 8 am?,parrot,avail,0 -yes,obviously,parrot,book,1 -thank_you,thankyou,parrot,bye,2 -yes,accept,parrot,book,1 -no,but that's not factual,parrot,cancel,3 -greeting,hello what's up?,parrot,greet,4 -yes,absolutely!,original,book,1 -no,naw,original,cancel,3 -goodbye,tootles,original,bye,2 -date,what day?,parrot,avail,0 -no,absolutely false,parrot,cancel,3 -greeting,hey there,original,greet,4 -no,FALSE,lambada,cancel,3 -thank_you,merci beaucoup,original,bye,2 -yes,that would be true,original,book,1 -calendar_update,clear my calendar for thursday,parrot,resched,5 -greeting,hello,original,greet,4 -goodbye,bye!,original,bye,2 -yes,accepted,original,book,1 -meeting_schedule,whose meetings will take place in san francisco,parrot,avail,0 -meeting_schedule,don't you know if we have a meeting today?,parrot,avail,0 -no,you're not right,parrot,cancel,3 -thank_you,thank you for helping,parrot,bye,2 -no,nope,original,cancel,3 -how_busy,you think the red lobster is pretty good at noon?,parrot,avail,0 -meeting_schedule,can you list the dates of the homer meeting?,parrot,avail,0 -how_busy,is imbrosio crowded at night?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -greeting,hiya,original,greet,4 -reminder_update,remind me,original,resched,5 -how_busy,how long before dinner,parrot,avail,0 -no,don't agree,parrot,cancel,3 -thank_you,you're special thanks,parrot,bye,2 -greeting,hey how's my day?,parrot,greet,4 -date,today's date is exactly what?,parrot,avail,0 -thank_you,thank you!,original,bye,2 -greeting,nice to hear what's going on,lambada,greet,4 -greeting,hello,original,greet,4 -yes,affirmative,original,book,1 -no,nope not it,original,cancel,3 -yes,huh,parrot,book,1 -greeting,get up ai,parrot,greet,4 -yes,agreed,original,book,1 -thank_you,thanks,original,bye,2 -greeting,whats new,lambada,greet,4 -goodbye,i enjoy our conversation,parrot,bye,2 -no,it's negative,parrot,cancel,3 -greeting,"why, hello bandit",original,greet,4 -yes,positive,parrot,book,1 -cancel_reservation,can i cancel a reservation?,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -no,that's very false,parrot,cancel,3 -yes,it's certainly true,parrot,book,1 -thank_you,thank you please,parrot,bye,2 -greeting,"hello, how are you",original,greet,4 -goodbye,good call,parrot,bye,2 -no,thanks no,parrot,cancel,3 -greeting,yo,original,greet,4 -yes,i guess,parrot,book,1 -greeting,salutations,parrot,greet,4 -no,erroneous,parrot,cancel,3 -no,invalid,original,cancel,3 -thank_you,nice,parrot,bye,2 -how_busy,what is the seating availability at this restaurant?,lambada,avail,0 -reminder_update,i need to remember,parrot,resched,5 -yes,it's definitely positive,parrot,book,1 -greeting,yo,original,greet,4 -greeting,welcome,parrot,greet,4 -how_busy,how long will it take to sit in olive garden,parrot,avail,0 -greeting,hello there!,original,greet,4 -greeting,"hello, ai",original,greet,4 -yes,confirm,original,book,1 -no,the information is incorrect,parrot,cancel,3 -greeting,hi,original,greet,4 -yes,facts,original,book,1 -greeting,hi how's everything?,parrot,greet,4 -how_busy,how long the restaurant is usually busy?,parrot,avail,0 -schedule_meeting,what should i do to find a new meeting?,parrot,book,1 -goodbye,have to go,parrot,bye,2 -greeting,salutations!,original,greet,4 -thank_you,i appeciate it,parrot,bye,2 -greeting,yo,original,greet,4 -yes,agreed,original,book,1 -date,where is tomorrow's date,lambada,avail,0 -yes,approved,original,book,1 -yes,all right,parrot,book,1 -no,that's totally wrong!,original,cancel,3 -no,negatory?,parrot,cancel,3 -no,nay,original,cancel,3 -goodbye,tootles?,parrot,bye,2 -no,not that,original,cancel,3 -date,a year?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -goodbye,i'm going,parrot,bye,2 -no,negative certainly,parrot,cancel,3 -date,tell me what the date will be tomorrow?,original,avail,0 -yes,ya,original,book,1 -no,that's totally false,parrot,cancel,3 -yes,accepted,original,book,1 -yes,huh,parrot,book,1 -how_busy,how busy is olive garden at 5,lambada,avail,0 -greeting,whats up?,parrot,greet,4 -no,thats a negative,original,cancel,3 -how_busy,tell me the average wait time for a red lobster?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -no,this is a hard no,parrot,cancel,3 -calendar,what is my schedule for march 15th?,lambada,avail,0 -thank_you,so i appreciate it,parrot,bye,2 -how_busy,how much will the restaurant be crowded before dinner?,parrot,avail,0 -how_busy,wait how long?,parrot,avail,0 -thank_you,you gave me that,parrot,bye,2 -goodbye,see you later alligator,original,bye,2 -thank_you,thank you,original,bye,2 -yes,accept,parrot,book,1 -calendar,show me my calendar?,parrot,avail,0 -goodbye,goodbye for now,parrot,bye,2 -meeting_schedule,will you meet ann?,parrot,avail,0 -yes,good,parrot,book,1 -yes,definitely,original,book,1 -goodbye,you're done,parrot,bye,2 -date,today is what date,original,avail,0 -reminder_update,can you set a reminder for me to put the clothes in the dryer?,lambada,resched,5 -yes,that is true,lambada,book,1 -goodbye,until next time,original,bye,2 -yes,yay,lambada,book,1 -goodbye,peace out!,original,bye,2 -greeting,whats up,original,greet,4 -greeting,hey,original,greet,4 -greeting,salutations,parrot,greet,4 -greeting,hi,original,greet,4 -no,that's a wrong answer?,parrot,cancel,3 -no,that's no,parrot,cancel,3 -yes,absolutely!,original,book,1 -thank_you,thank you please,parrot,bye,2 -goodbye,get there soon,lambada,bye,2 -goodbye,i'm out,parrot,bye,2 -goodbye,"great talk, thanks",original,bye,2 -yes,that is accurate,original,book,1 -no,but that's not true?,parrot,cancel,3 -yes,all right,parrot,book,1 -calendar,what do i have scheduled for march 05th on my calendar?,lambada,avail,0 -schedule_meeting,what is the room number between noon and 2?,parrot,book,1 -meeting_schedule,is there any meetings today?,parrot,avail,0 -goodbye,adios!,original,bye,2 -no,no way,original,cancel,3 -greeting,hey,original,greet,4 -goodbye,see ya,original,bye,2 -goodbye,bye,original,bye,2 -greeting,what's happened?,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -goodbye,peace,original,bye,2 -greeting,heller,original,greet,4 -yes,sure thing,original,book,1 -yes,correct,original,book,1 -how_busy,how long will i wait for a table at olive garden?,parrot,avail,0 -yes,approved,original,book,1 -yes,huh,parrot,book,1 -goodbye,goodbye then,parrot,bye,2 -calendar_update,please remove the final exams from my calendar for may 3rd,parrot,resched,5 -how_busy,will i have to wait long for a table at pietro's this evening,original,avail,0 -no,that seems wrong,lambada,cancel,3 -no,certainly false,parrot,cancel,3 -no,that is not correct,original,cancel,3 -goodbye,peace,original,bye,2 -date,i need to know tomorrow,parrot,avail,0 -yes,i know,parrot,book,1 -how_busy,is this restaurant crowded?,parrot,avail,0 -no,negatory?,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -goodbye,make sure you get some rest,parrot,bye,2 -goodbye,goodbye then,parrot,bye,2 -thank_you,thanks!,original,bye,2 -no,please no,parrot,cancel,3 -yes,very true,original,book,1 -no,absolutely not,original,cancel,3 -no,this is a hard no from me,parrot,cancel,3 -greeting,hiya!,original,greet,4 -greeting,whats up?,parrot,greet,4 -goodbye,ill leave now,parrot,bye,2 -greeting,welcome,parrot,greet,4 -greeting,hola!,original,greet,4 -yes,10-Apr,original,book,1 -date,what's the day of tomorrow?,parrot,avail,0 -greeting,you good?,parrot,greet,4 -date,what date will it be in the next month?,lambada,avail,0 -yes,i think that's correct,parrot,book,1 -date,what's the year?,parrot,avail,0 -how_busy,how busy is macy's around 7,lambada,avail,0 -no,naw,parrot,cancel,3 -thank_you,thanks a million,original,bye,2 -how_busy,wait in the restaurant?,parrot,avail,0 -goodbye,farewell,original,bye,2 -no,no no thanks,parrot,cancel,3 -reminder_update,remind me to call bob,original,resched,5 -yes,oh-huh,parrot,book,1 -schedule_meeting,how do i find a new meeting?,parrot,book,1 -greeting,hey what's up,original,greet,4 -schedule_meeting,can you check if the meeting room is available between 4 and 5?,parrot,book,1 -no,nothing,parrot,cancel,3 -how_busy,is the restaurant open at night?,parrot,avail,0 -goodbye,goodbye to yours,parrot,bye,2 -no,it turns out to be false,parrot,cancel,3 -greeting,hey,original,greet,4 -reminder_update,what's a reminder,parrot,resched,5 -goodbye,farewell,original,bye,2 -greeting,hiya,original,greet,4 -thank_you,"awesome, thanks",original,bye,2 -yes,positive,parrot,book,1 -thank_you,i'm thankful for my support,parrot,bye,2 -yes,approved,original,book,1 -thank_you,you've helped,parrot,bye,2 -goodbye,was wonderful to talk to you,parrot,bye,2 -yes,obviously,parrot,book,1 -no,so that's no,parrot,cancel,3 -thank_you,really great!,original,bye,2 -greeting,how's idy doing,lambada,greet,4 -greeting,"hey, what's new",original,greet,4 -meeting_schedule,i should count my meetings because i don't have any today,parrot,avail,0 -thank_you,you've been great,parrot,bye,2 -greeting,salutations,parrot,greet,4 -no,not right so,parrot,cancel,3 -no,that's absolutely false,parrot,cancel,3 -yes,"yes, that is factual",original,book,1 -greeting,hey,original,greet,4 -goodbye,see ya!,original,bye,2 -goodbye,goodbyes soon,parrot,bye,2 -yes,that's a yes,original,book,1 -yes,do that?,original,book,1 -no,that's negative,parrot,cancel,3 -greeting,bonjour,original,greet,4 -no,that's inaccurate,original,cancel,3 -no,nay,original,cancel,3 -yes,sure,original,book,1 -greeting,hello what's happening,parrot,greet,4 -yes,accepted,original,book,1 -goodbye,see ya,original,bye,2 -goodbye,i'm leaving,parrot,bye,2 -how_busy,wait how long?,parrot,avail,0 -greeting,how's the life?,parrot,greet,4 -goodbye,farewell to you,lambada,bye,2 -goodbye,im leaving,parrot,bye,2 -reminder_update,remind me again please,original,resched,5 -yes,that is true,original,book,1 -yes,perfect,parrot,book,1 -how_busy,how long is the wait at red lobster right now,lambada,avail,0 -how_busy,how long will it take before we get seated in this restaurant?,parrot,avail,0 -how_busy,what time do you expect to wait for a table at chili's?,parrot,avail,0 -yes,absolutely correct,original,book,1 -greeting,salutations!,original,greet,4 -reminder_update,can you add a reminder to the list?,lambada,resched,5 -reminder_update,let me know,parrot,resched,5 -greeting,aho,parrot,greet,4 -goodbye,say goodbye now,parrot,bye,2 -yes,yup,original,book,1 -no,i'll pass,original,cancel,3 -no,this is not true,parrot,cancel,3 -greeting,how were you?,parrot,greet,4 -how_busy,how long will it take to wait in olive garden at 5pm,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -calendar_update,you can remove the play date from my calendar for february 18 2019,parrot,resched,5 -goodbye,just relax,parrot,bye,2 -no,not right i don't think,parrot,cancel,3 -meeting_schedule,do you know when my meeting with nick is today?,lambada,avail,0 -thank_you,appreciate the assistance,parrot,bye,2 -yes,positive,original,book,1 -greeting,why hello?,original,greet,4 -no,it's no,parrot,cancel,3 -thank_you,thanks for that!,original,bye,2 -greeting,welcome,parrot,greet,4 -yes,TRUE,original,book,1 -thank_you,i am thankful,lambada,bye,2 -goodbye,greetings,parrot,bye,2 -goodbye,bye bye!,original,bye,2 -meeting_schedule,is it possible to meet kim today?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -calendar,can you check my calendar for an event called annual physical called the physical?,lambada,avail,0 -greeting,how's my doing?,parrot,greet,4 -goodbye,my friend,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -goodbye,i'll be gone,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -yes,that's definitely true,original,book,1 -greeting,salutations!,original,greet,4 -greeting,wassup,original,greet,4 -goodbye,sign off,parrot,bye,2 -greeting,wanted to say hi,parrot,greet,4 -goodbye,signing off,original,bye,2 -how_busy,is the wait time in this restaurant high?,parrot,avail,0 -no,nope that's not it,original,cancel,3 -no,certainly not true,parrot,cancel,3 -thank_you,thank you?,parrot,bye,2 -yes,a true statement,parrot,book,1 -thank_you,i'm grateful,original,bye,2 -yes,ya,original,book,1 -no,no thanks,original,cancel,3 -thank_you,nice,parrot,bye,2 -how_busy,is mcdonalds busy around 9?,original,avail,0 -calendar,what does my schedule look like for march 3rd?,lambada,avail,0 -goodbye,good call,parrot,bye,2 -schedule_meeting,i have to meet with scott at 1 pm,parrot,book,1 -how_busy,what hours are used in the restaurant?,parrot,avail,0 -goodbye,you're done,parrot,bye,2 -how_busy,how busy is georgios around 11?,parrot,avail,0 -date,describe the day?,parrot,avail,0 -no,nay,original,cancel,3 -goodbye,was nice to catch you,parrot,bye,2 -greeting,heyo,original,greet,4 -no,nada,original,cancel,3 -no,what is not true?,parrot,cancel,3 -no,negatory,original,cancel,3 -thank_you,appreciated,original,bye,2 -goodbye,buhbye,original,bye,2 -date,today what date?,parrot,avail,0 -goodbye,just relax,parrot,bye,2 -goodbye,later goodbye,parrot,bye,2 -greeting,hello,original,greet,4 -thank_you,thanks!,original,bye,2 -goodbye,sign off,parrot,bye,2 -goodbye,i'm leaving,parrot,bye,2 -yes,uh-huh,original,book,1 -no,negative sure,parrot,cancel,3 -no,not right so,parrot,cancel,3 -goodbye,goodbye ai,parrot,bye,2 -goodbye,later!,original,bye,2 -greeting,whats up?,parrot,greet,4 -greeting,aloha,original,greet,4 -greeting,hola,original,greet,4 -yes,definitely,original,book,1 -yes,correct,original,book,1 -thank_you,okay thank you,parrot,bye,2 -cancel_reservation,i need to cancel my reservation in phoenix,parrot,cancel,3 -date,what day are we on?,lambada,avail,0 -date,what date?,parrot,avail,0 -no,no,lambada,cancel,3 -goodbye,signing off,original,bye,2 -yes,correct,original,book,1 -thank_you,you helped,parrot,bye,2 -date,what date is today?,original,avail,0 -yes,okay,original,book,1 -greeting,"hello, friend",original,greet,4 -goodbye,thank you for speaking with you,parrot,bye,2 -cancel_reservation,can you cancel my reservation for 6 pm,parrot,cancel,3 -no,it's no,parrot,cancel,3 -no,nothing,parrot,cancel,3 -no,there is no,parrot,cancel,3 -greeting,hola!,original,greet,4 -goodbye,"see you later, alligator",original,bye,2 -thank_you,thank you for the heip,original,bye,2 -yes,okay,original,book,1 -cancel_reservation,please delete the reservation for roberts in the village tavern,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -goodbye,goodnight,original,bye,2 -meeting_schedule,when's my meeting with leroy scheduled?,parrot,avail,0 -meeting_schedule,is there a meeting with sam today?,original,avail,0 -how_busy,what's the wait?,parrot,avail,0 -yes,that is a fact,original,book,1 -greeting,how's the world?,parrot,greet,4 -schedule_meeting,i've got to know how to get the meeting approved,parrot,book,1 -goodbye,the talk was nice,lambada,bye,2 -how_busy,how busy will the olive garden be at 7,parrot,avail,0 -no,negatory?,parrot,cancel,3 -yes,affirmative,original,book,1 -no,it's actually false,parrot,cancel,3 -yes,all right,parrot,book,1 -schedule_meeting,i need to set a meeting with tom at 6pm,original,book,1 -how_busy,list the current wait times at macys?,parrot,avail,0 -yes,my answer is yes,parrot,book,1 -greeting,salutations!,original,greet,4 -yes,"yes, please",parrot,book,1 -date,if it's six days,parrot,avail,0 -thank_you,much obliged,original,bye,2 -thank_you,appreciate it,original,bye,2 -how_busy,how long will it take before we are seated in this restaurant?,parrot,avail,0 -no,that's totally false,parrot,cancel,3 -thank_you,thanks for answering,parrot,bye,2 -yes,roger that,original,book,1 -no,that's incorrect!,original,cancel,3 -how_busy,what's the wait for a table in the olive garden right now?,parrot,avail,0 -thank_you,i really thank you,original,bye,2 -how_busy,what's the wait time for a table in red lobster?,parrot,avail,0 -yes,yeap,original,book,1 -no,the answer isn't correct,parrot,cancel,3 -no,negative sure,parrot,cancel,3 -greeting,hello good day,parrot,greet,4 -no,negative,original,cancel,3 -no,that's bad,parrot,cancel,3 -yes,of course,original,book,1 -thank_you,"good job, thanks",lambada,bye,2 -thank_you,thanks!,original,bye,2 -yes,great,original,book,1 -schedule_meeting,can you schedule a meeting for 3 pm wednesday night?,parrot,book,1 -how_busy,how long will i be waiting before i can get a table at italian bakery,lambada,avail,0 -greeting,welcome,parrot,greet,4 -calendar,are there appointments for march 10?,parrot,avail,0 -greeting,do you feel?,parrot,greet,4 -thank_you,i'm very thankful,parrot,bye,2 -yes,yeap,original,book,1 -yes,it seems true,parrot,book,1 -greeting,how ya been,original,greet,4 -goodbye,i'm out,parrot,bye,2 -how_busy,is the wait at applebees real long?,parrot,avail,0 -meeting_schedule,what's my day's schedule?,parrot,avail,0 -thank_you,gracias,original,bye,2 -no,definitely not,original,cancel,3 -yes,it's logical,parrot,book,1 -goodbye,be careful then,lambada,bye,2 -no,nada,original,cancel,3 -goodbye,good-bye,parrot,bye,2 -greeting,hola!,original,greet,4 -no,that's negative,parrot,cancel,3 -no,definitely not,original,cancel,3 -goodbye,good-bye,parrot,bye,2 -yes,good,parrot,book,1 -no,it's a false,lambada,cancel,3 -no,not that one,original,cancel,3 -greeting,hi how's it going?,parrot,greet,4 -no,would be no?,parrot,cancel,3 -yes,"yes, please",original,book,1 -meeting_schedule,what is my meeting schedule like for the day?,original,avail,0 -calendar,read my calendar,parrot,avail,0 -yes,my answer is yes,parrot,book,1 -calendar_update,remove my calendar from this friday,parrot,resched,5 -greeting,hi what's up?,parrot,greet,4 -no,no that isn't right,original,cancel,3 -no,erroneous,parrot,cancel,3 -no,not that,original,cancel,3 -goodbye,later gator!,original,bye,2 -yes,definitely,original,book,1 -how_busy,how busy is the red robin around 7pm,parrot,avail,0 -no,that's totally false,parrot,cancel,3 -greeting,please tell me how it's going,parrot,greet,4 -no,please disagree,lambada,cancel,3 -how_busy,how long will the macaroni grill be for dinner,parrot,avail,0 -no,absolutely false,parrot,cancel,3 -cancel_reservation,please cancel my reservation for 5 nights at the loft,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -yes,okay,original,book,1 -goodbye,goodbye my friend,parrot,bye,2 -greeting,hello there!,original,greet,4 -goodbye,later,original,bye,2 -no,false sure,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -yes,TRUE,lambada,book,1 -yes,good yes,lambada,book,1 -goodbye,fairwell,original,bye,2 -no,negatory,original,cancel,3 -goodbye,farewell!,original,bye,2 -no,that's wrong,original,cancel,3 -yes,i'll say yes,parrot,book,1 -yes,yay,lambada,book,1 -yes,right,parrot,book,1 -yes,affirmative,original,book,1 -goodbye,and then goodbye,parrot,bye,2 -goodbye,say goodbye,parrot,bye,2 -goodbye,farewell,original,bye,2 -goodbye,great to talk to you,parrot,bye,2 -goodbye,farewell!,original,bye,2 -thank_you,i want to thank you for the reply,parrot,bye,2 -thank_you,appreciated,original,bye,2 -yes,great,original,book,1 -cancel_reservation,tell the restaurant i have to cancel my reservation?,lambada,cancel,3 -how_busy,how many people do you think will be at applebees at 7,original,avail,0 -goodbye,this conversation was pleasant,parrot,bye,2 -goodbye,bye,original,bye,2 -yes,positive,parrot,book,1 -no,but it seems like a no,parrot,cancel,3 -yes,uh-huh,original,book,1 -how_busy,oh how busy is the cheesecake factory at 6pm,parrot,avail,0 -how_busy,is there any wait time at red lobster?,lambada,avail,0 -no,i think that's false,original,cancel,3 -thank_you,thanks again!,original,bye,2 -how_busy,what's the wait for chili's tonight?,parrot,avail,0 -date,what date will be 840 days?,parrot,avail,0 -yes,approved,original,book,1 -no,there is no,parrot,cancel,3 -date,what date tomorrow?,parrot,avail,0 -how_busy,how busy will golden corral be at 730 tonight?,parrot,avail,0 -goodbye,my way,parrot,bye,2 -yes,i guess,parrot,book,1 -yes,yes,original,book,1 -yes,indeed,original,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,what's happening?,parrot,greet,4 -greeting,"hey, how's it going",original,greet,4 -greeting,hiya!,original,greet,4 -yes,yup,original,book,1 -goodbye,later goodbye,parrot,bye,2 -greeting,how's idy?,parrot,greet,4 -no,nada,original,cancel,3 -date,in 100 days?,parrot,avail,0 -no,definitely not,original,cancel,3 -no,that isn't right,original,cancel,3 -yes,perfect,parrot,book,1 -thank_you,i appeciate it,parrot,bye,2 -no,that is untrue,original,cancel,3 -greeting,bonjour,original,greet,4 -yes,i agree,original,book,1 -greeting,and how's it going?,parrot,greet,4 -thank_you,you helped,parrot,bye,2 -no,that's totally wrong,parrot,cancel,3 -how_busy,what is the seating time at the restaurant?,lambada,avail,0 -goodbye,goodbyes,parrot,bye,2 -goodbye,nice to see you,original,bye,2 -no,FALSE,lambada,cancel,3 -goodbye,just relax,parrot,bye,2 -how_busy,can you tell me what the wait time will be for a table at red robin?,lambada,avail,0 -goodbye,farewell!,original,bye,2 -meeting_schedule,when is my meeting with infrastructure?,original,avail,0 -greeting,how's everything,original,greet,4 -greeting,hola!,original,greet,4 -greeting,what's my feeling?,parrot,greet,4 -goodbye,good bye,original,bye,2 -yes,that checks out,original,book,1 -how_busy,how long does it take to get a table in olive garden?,parrot,avail,0 -meeting_schedule,when is my meeting with mark scheduled?,parrot,avail,0 -greeting,hi there,original,greet,4 -calendar_update,on 22 of this month we need to clear our calendar so we can leave it open for mark to visit,parrot,resched,5 -greeting,aho,parrot,greet,4 -greeting,how is idy?,parrot,greet,4 -how_busy,wait for the olive garden before dinner?,parrot,avail,0 -how_busy,how busy is red lobster?,parrot,avail,0 -thank_you,awesome thanks,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -no,this is so negative,parrot,cancel,3 -yes,correct,original,book,1 -how_busy,how busy is chili around 11 o'clock,parrot,avail,0 -yes,perfect,parrot,book,1 -no,certainly not true,parrot,cancel,3 -meeting_schedule,exactly what time is my meeting with robin scheduled for on,original,avail,0 -yes,yes sir,original,book,1 -no,FALSE,lambada,cancel,3 -yes,yeap,original,book,1 -how_busy,how long will it take me to be seated at ihop,original,avail,0 -greeting,how you are,original,greet,4 -thank_you,gracias,original,bye,2 -greeting,hey what's up?,parrot,greet,4 -greeting,how you are?,parrot,greet,4 -yes,affirmative,original,book,1 -date,what year?,parrot,avail,0 -yes,approved,original,book,1 -calendar,is bowling in my calendar?,parrot,avail,0 -yes,absolutely,original,book,1 -goodbye,let me see you around,parrot,bye,2 -greeting,how are you doing,original,greet,4 -meeting_schedule,is ruth on my schedule today?,parrot,avail,0 -no,not right so,parrot,cancel,3 -no,naw,original,cancel,3 -how_busy,how busy will the potato salad be around 5,parrot,avail,0 -schedule_meeting,please make a room for the meeting,parrot,book,1 -goodbye,"later, thanks for chatting",original,bye,2 -goodbye,signing off,original,bye,2 -no,no!,original,cancel,3 -yes,i know,parrot,book,1 -no,definitely not,original,cancel,3 -no,FALSE,original,cancel,3 -goodbye,later gater,original,bye,2 -greeting,how's life?,parrot,greet,4 -goodbye,goodnight,original,bye,2 -yes,i know,parrot,book,1 -greeting,hi how are you?,parrot,greet,4 -goodbye,"that's all, bye",original,bye,2 -yes,sure,original,book,1 -goodbye,goodbye,original,bye,2 -yes,great,original,book,1 -yes,"yes, please",parrot,book,1 -date,what's the date?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -greeting,salutation,parrot,greet,4 -how_busy,the area is busy during lunch hours?,parrot,avail,0 -greeting,wassup,original,greet,4 -date,is it six days?,parrot,avail,0 -calendar_update,i no longer want this event in my calendar,original,resched,5 -date,a year?,parrot,avail,0 -yes,"yes, that's accurate",original,book,1 -how_busy,how busy the chili's will be at 11 o'clock?,parrot,avail,0 -meeting_schedule,is my meeting scheduled?,parrot,avail,0 -date,current day,parrot,avail,0 -thank_you,i sincerely thank you for it,parrot,bye,2 -no,nothing good,parrot,cancel,3 -no,i do not agree,lambada,cancel,3 -no,nada,original,cancel,3 -how_busy,how long will the wait be for an ohio dinner at red lobster,lambada,avail,0 -greeting,ahoy,lambada,greet,4 -yes,TRUE,original,book,1 -yes,oh-huh,parrot,book,1 -yes,yeap,original,book,1 -yes,affirmative,original,book,1 -how_busy,mcdonald's busy around 9?,parrot,avail,0 -goodbye,my friend,parrot,bye,2 -yes,uh-huh,original,book,1 -no,not that,original,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,nada,original,cancel,3 -goodbye,"thanks for chatting, later",original,bye,2 -thank_you,i'm very grateful,parrot,bye,2 -yes,say positive,parrot,book,1 -goodbye,goodbye!,original,bye,2 -greeting,what's up with you,original,greet,4 -greeting,whats up?,parrot,greet,4 -greeting,how're you today?,parrot,greet,4 -greeting,"hey, ai",original,greet,4 -thank_you,thanks!,original,bye,2 -goodbye,good luck,lambada,bye,2 -goodbye,"later, good luck",lambada,bye,2 -thank_you,okay thanks,original,bye,2 -yes,uh huh,original,book,1 -goodbye,thanks for the chat,parrot,bye,2 -no,so that's no,parrot,cancel,3 -yes,i vote yes,original,book,1 -no,FALSE,original,cancel,3 -goodbye,good call,parrot,bye,2 -thank_you,many thank,original,bye,2 -yes,positive,parrot,book,1 -reminder_update,add a reminder to clean the refrigerator,parrot,resched,5 -date,what is today?,original,avail,0 -yes,it'll be yes,parrot,book,1 -no,ill pass,original,cancel,3 -no,no,lambada,cancel,3 -date,in 100 days?,parrot,avail,0 -yes,i guess,parrot,book,1 -yes,"yeah, that's true",lambada,book,1 -yes,certainly,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -yes,"yep, that's true",original,book,1 -thank_you,thank you please,parrot,bye,2 -calendar,what do i need to have on my schedule for march 5th?,lambada,avail,0 -no,no thanks,original,cancel,3 -thank_you,thanks for helping,original,bye,2 -thank_you,i'm so very grateful,parrot,bye,2 -how_busy,how busy will blue mountain be around 5pm,parrot,avail,0 -greeting,are you doing good?,lambada,greet,4 -thank_you,many thanks,original,bye,2 -no,nay,original,cancel,3 -thank_you,i appeciate it,parrot,bye,2 -yes,not a lie,parrot,book,1 -yes,that is right,original,book,1 -goodbye,bye bye,lambada,bye,2 -yes,that appears true,original,book,1 -goodbye,i like to talk to you goodbye,parrot,bye,2 -no,erroneous,parrot,cancel,3 -schedule_meeting,how do i find a new meeting,lambada,book,1 -thank_you,you helped,parrot,bye,2 -no,false for sure,original,cancel,3 -calendar,if there's an annual physical on my calendar?,parrot,avail,0 -reminder_update,remember me to call tomorrow,parrot,resched,5 -how_busy,how busy is the cheese cake factory around 5pm?,parrot,avail,0 -no,is it a lie?,parrot,cancel,3 -date,what is it today?,lambada,avail,0 -no,is my false assertion?,parrot,cancel,3 -calendar,tell me my calendar?,parrot,avail,0 -goodbye,i'm going,parrot,bye,2 -how_busy,the restaurant is busy at dinner?,parrot,avail,0 -no,no,lambada,cancel,3 -no,false sure,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -reminder_update,please remind me to call tomorrow,parrot,resched,5 -goodbye,goodbye goodbye,parrot,bye,2 -reminder_update,make me a reminder to pay tax?,parrot,resched,5 -thank_you,"awesome, thanks",original,bye,2 -no,no?,parrot,cancel,3 -goodbye,later,original,bye,2 -how_busy,how long will it take to be seated at the lobster restaurant?,parrot,avail,0 -yes,correct,original,book,1 -thank_you,gracias,original,bye,2 -goodbye,lovely conversation,parrot,bye,2 -goodbye,fairwell,original,bye,2 -yes,"yes, that's what i want",original,book,1 -greeting,how's life,original,greet,4 -no,negation,parrot,cancel,3 -greeting,"hello, friend",original,greet,4 -yes,certainly,parrot,book,1 -calendar_update,i don't need to go to the zoo on the 8th of this month,parrot,resched,5 -reminder_update,please remind me again,parrot,resched,5 -no,naw,original,cancel,3 -greeting,salutations,parrot,greet,4 -goodbye,great chat goodbye,lambada,bye,2 -calendar,display my calendar,lambada,avail,0 -yes,yeap,original,book,1 -no,no,lambada,cancel,3 -goodbye,the talk was nice,lambada,bye,2 -greeting,how's ai doing?,parrot,greet,4 -yes,affirmative,original,book,1 -how_busy,tell me how busy the rooster is at 8 pm,parrot,avail,0 -yes,good,parrot,book,1 -goodbye,adios!,original,bye,2 -no,no that isn't it,original,cancel,3 -greeting,wassup,original,greet,4 -yes,my response to you is correct,lambada,book,1 -yes,agreed,original,book,1 -cancel_reservation,can you cancel the reservation i have for the dinner?,parrot,cancel,3 -how_busy,how long is the wait at olive garden for dinner,lambada,avail,0 -date,let me know the date of today,parrot,avail,0 -date,is it monday?,parrot,avail,0 -reminder_update,remind me to exercise,original,resched,5 -goodbye,i'm going,parrot,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -how_busy,how long can i wait at the macaroni grill?,parrot,avail,0 -no,negatory,original,cancel,3 -greeting,heller,original,greet,4 -goodbye,it was nice to get in touch,original,bye,2 -no,FALSE,lambada,cancel,3 -yes,sure thing,original,book,1 -schedule_meeting,i need you to meet with john at 11 am,parrot,book,1 -yes,i'd say yes,parrot,book,1 -no,not right,parrot,cancel,3 -yes,right,parrot,book,1 -greeting,hello how are you doing today,parrot,greet,4 -meeting_schedule,will i have any meetings today from 9-11,lambada,avail,0 -meeting_schedule,tell me if i have meetings from 3 to 6 pm,parrot,avail,0 -goodbye,i'm leaving,parrot,bye,2 -thank_you,good job helping me,parrot,bye,2 -yes,affirmative,original,book,1 -date,today?,parrot,avail,0 -reminder_update,please remember me again,parrot,resched,5 -thank_you,and i thank you,parrot,bye,2 -goodbye,bye!,original,bye,2 -yes,right,parrot,book,1 -thank_you,again thanks,parrot,bye,2 -greeting,how you feel?,parrot,greet,4 -thank_you,i'm thankful,original,bye,2 -yes,obviously,parrot,book,1 -greeting,aho,parrot,greet,4 -yes,yup,original,book,1 -thank_you,thanks,original,bye,2 -greeting,please tell me what's going on?,parrot,greet,4 -thank_you,"ai you have given me so much information, thank you",original,bye,2 -how_busy,what's the average wait time for dinner at rouge?,parrot,avail,0 -date,today?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -greeting,hola,original,greet,4 -greeting,"hello, ai",original,greet,4 -thank_you,you've been great,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -yes,that's a fact,parrot,book,1 -greeting,what i feel?,parrot,greet,4 -greeting,hola,original,greet,4 -no,certainly not,original,cancel,3 -date,what's the date?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -meeting_schedule,when is my meeting with john? '',parrot,avail,0 -reminder_update,i want to remind you,parrot,resched,5 -goodbye,adios,original,bye,2 -greeting,hey there,original,greet,4 -thank_you,thanks very much for your answer,parrot,bye,2 -yes,yup,original,book,1 -greeting,hi there,original,greet,4 -goodbye,i'll leave,parrot,bye,2 -calendar,please tell me what's on my calendar for march 25th?,parrot,avail,0 -yes,"yup, that is true",lambada,book,1 -yes,i'm going to tell you tes,parrot,book,1 -thank_you,thanks for the payment,parrot,bye,2 -no,i disagree,parrot,cancel,3 -reminder_update,how about a reminder,original,resched,5 -meeting_schedule,do i have any meetings with stan today?,original,avail,0 -meeting_schedule,i have a meeting with paul today?,parrot,avail,0 -yes,ok,original,book,1 -how_busy,how busy will outback steakhouse be at 7 pm,lambada,avail,0 -goodbye,bye,original,bye,2 -goodbye,bye,original,bye,2 -date,give me tomorrow's date please,original,avail,0 -greeting,and what's up?,parrot,greet,4 -thank_you,the best,parrot,bye,2 -greeting,how are things going,original,greet,4 -greeting,whats up,original,greet,4 -date,current day,parrot,avail,0 -greeting,whats up with you,original,greet,4 -no,that's actually false,parrot,cancel,3 -yes,say yes,lambada,book,1 -no,that's so false,parrot,cancel,3 -thank_you,"oh, thanks",original,bye,2 -how_busy,what is the average wait time at red robin?,lambada,avail,0 -no,no!,original,cancel,3 -no,not right?,parrot,cancel,3 -goodbye,i'm leaving,parrot,bye,2 -goodbye,farewell,original,bye,2 -goodbye,adios ai,original,bye,2 -greeting,hi,original,greet,4 -calendar_update,please add my calendar for the staff meeting scheduled for march 1 2019 at 10 am please,parrot,resched,5 -goodbye,farewell!,original,bye,2 -goodbye,i'll go,parrot,bye,2 -thank_you,you've been great,parrot,bye,2 -thank_you,thank a bunch,original,bye,2 -no,i'd say no,original,cancel,3 -goodbye,goodbyes,parrot,bye,2 -greeting,hiya,original,greet,4 -yes,i agree with what you have said,parrot,book,1 -greeting,hey fellows,parrot,greet,4 -no,it's absolutely false,parrot,cancel,3 -date,what date will be the following day,parrot,avail,0 -thank_you,thanks,original,bye,2 -yes,yay,lambada,book,1 -date,tell me the day?,parrot,avail,0 -goodbye,goodbye for now ai,original,bye,2 -calendar,i put an item on my calendar to get my car repaired?,parrot,avail,0 -yes,i vote yes,original,book,1 -no,that's incorrect,original,cancel,3 -yes,definitely yes,parrot,book,1 -no,FALSE,lambada,cancel,3 -greeting,how is idy doing?,parrot,greet,4 -thank_you,the best,parrot,bye,2 -date,current date,original,avail,0 -goodbye,sayonara,original,bye,2 -greeting,hey there,original,greet,4 -no,so that's no,parrot,cancel,3 -greeting,hi what's up,original,greet,4 -greeting,hey fellow,parrot,greet,4 -meeting_schedule,when do i meet loren today?,parrot,avail,0 -no,no!,original,cancel,3 -date,what's going on today?,parrot,avail,0 -greeting,hiya,original,greet,4 -goodbye,good conversation,parrot,bye,2 -no,FALSE,lambada,cancel,3 -greeting,what's new?,parrot,greet,4 -goodbye,good conversation,parrot,bye,2 -reminder_update,set a reminder,original,resched,5 -thank_you,i'm grateful for my answer,parrot,bye,2 -how_busy,would i be forced to wait long if i wanted to eat at chili's,parrot,avail,0 -calendar,what's my schedule for march 30th,lambada,avail,0 -date,what's the date today?,parrot,avail,0 -meeting_schedule,do i have meetings between 8 and 9?,parrot,avail,0 -goodbye,later goodbye,parrot,bye,2 -no,nope,original,cancel,3 -greeting,how's my feeling?,parrot,greet,4 -no,that's inaccurate,original,cancel,3 -goodbye,it's over,parrot,bye,2 -yes,say positive,parrot,book,1 -goodbye,goodbye goodbye,parrot,bye,2 -no,no!,original,cancel,3 -greeting,hi how's everything going?,parrot,greet,4 -how_busy,how long would i wait at the hamster wheel?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -how_busy,what's the wait like?,parrot,avail,0 -no,it's actually false,parrot,cancel,3 -thank_you,thanks for doing that for me,lambada,bye,2 -goodbye,tootles,original,bye,2 -goodbye,peace,original,bye,2 -goodbye,chat to me later,parrot,bye,2 -yes,yeap,original,book,1 -greeting,hiya,original,greet,4 -date,give me a date,parrot,avail,0 -calendar_update,i need to add my wedding to my calendar for march 1,lambada,resched,5 -yes,uh-huh,original,book,1 -how_busy,can you tell me if there's a lot of wait time at wendy's around 8am?,original,avail,0 -meeting_schedule,what if i have meetings today?,parrot,avail,0 -no,i meant no,original,cancel,3 -yes,that will be true,original,book,1 -no,nope that's not it,original,cancel,3 -thank_you,you helped,parrot,bye,2 -yes,okay,original,book,1 -greeting,hola!,original,greet,4 -no,don't like that,parrot,cancel,3 -how_busy,please give me some info about how long the wait will be for mrs and mrs after 9?,parrot,avail,0 -goodbye,great talk,lambada,bye,2 -goodbye,goodnight,original,bye,2 -greeting,bonjour,original,greet,4 -thank_you,thanks very much for the answer,parrot,bye,2 -no,would be no?,parrot,cancel,3 -no,negating,parrot,cancel,3 -reminder_update,make me a reminder to bathe?,parrot,resched,5 -date,in five days?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -thank_you,appreciate it,original,bye,2 -no,negative sure,parrot,cancel,3 -date,today?,parrot,avail,0 -calendar,is there anything scheduled for tuesday?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -greeting,salutations,parrot,greet,4 -thank_you,you've been great,parrot,bye,2 -greeting,hi how are you,original,greet,4 -date,what will be 373 days from now?,parrot,avail,0 -thank_you,thanks for my help!,original,bye,2 -how_busy,tell me the time to wait for a table in macaroni and cheese?,parrot,avail,0 -date,what's my day?,parrot,avail,0 -thank_you,really great!,original,bye,2 -thank_you,you're welcome,parrot,bye,2 -goodbye,farewell,original,bye,2 -yes,uh-huh,original,book,1 -no,naw,original,cancel,3 -yes,TRUE,lambada,book,1 -thank_you,thanks!,original,bye,2 -calendar,what's on my calendar for march 3?,parrot,avail,0 -schedule_meeting,is it possible to meet cole at 4 pm?,parrot,book,1 -yes,confirm,original,book,1 -greeting,how's the situation?,parrot,greet,4 -greeting,hiya,original,greet,4 -how_busy,is the cheesecake factory busy?,parrot,avail,0 -meeting_schedule,the meetings today,parrot,avail,0 -yes,that checks out,original,book,1 -no,absolutely not,original,cancel,3 -reminder_update,add a reminder,lambada,resched,5 -goodbye,please chat to me,parrot,bye,2 -yes,accept,parrot,book,1 -goodbye,i've got to run now,original,bye,2 -yes,correct,original,book,1 -no,nothing,parrot,cancel,3 -yes,TRUE,original,book,1 -calendar,did i set an appointment on my calendar to see a doctor?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -yes,okay,original,book,1 -no,not right i don't believe,parrot,cancel,3 -thank_you,youre a doll,original,bye,2 -goodbye,good night,original,bye,2 -thank_you,nice,parrot,bye,2 -yes,that is true,original,book,1 -thank_you,my sincere thanks,parrot,bye,2 -thank_you,i'm thankful,original,bye,2 -date,what happens in six days?,parrot,avail,0 -how_busy,wait for a table at tomato soup,parrot,avail,0 -thank_you,i'm very thankful,parrot,bye,2 -yes,TRUE,original,book,1 -greeting,hiya,original,greet,4 -how_busy,how long will it take to get seated at chili's,lambada,avail,0 -how_busy,how long will i have to wait before being seated at the cheese cake factory,original,avail,0 -no,so it's not possible,parrot,cancel,3 -reminder_update,new reminder please,lambada,resched,5 -greeting,hello,original,greet,4 -goodbye,adios,original,bye,2 -yes,yup,original,book,1 -no,that's a very bad answer,parrot,cancel,3 -yes,confirm,original,book,1 -calendar_update,please cancel the event on 15 march,parrot,resched,5 -how_busy,when is the ihop usually busy?,parrot,avail,0 -goodbye,adios!,original,bye,2 -goodbye,i'll leave,parrot,bye,2 -yes,positive,original,book,1 -yes,TRUE,lambada,book,1 -cancel_reservation,i need you to cancel my reservation for eight at pat's,parrot,cancel,3 -goodbye,i'll talk with you later,parrot,bye,2 -how_busy,wait at jalapeno ranch?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -thank_you,"awesome, thanks",original,bye,2 -no,naw,parrot,cancel,3 -yes,"yes, that's confirmed",original,book,1 -greeting,how's life?,parrot,greet,4 -calendar,tell me what is on my calendar for march 21?,parrot,avail,0 -goodbye,thank you for this conversation,parrot,bye,2 -date,what is tomorrow?,parrot,avail,0 -greeting,hi,original,greet,4 -no,negatory?,parrot,cancel,3 -yes,"yep, let's do that",lambada,book,1 -goodbye,i enjoy our conversation,parrot,bye,2 -thank_you,really great!,original,bye,2 -yes,absolutely,original,book,1 -yes,can we please?,original,book,1 -yes,indeed,original,book,1 -no,that's a hard no from me,original,cancel,3 -thank_you,thank you for my response,lambada,bye,2 -greeting,wassup,original,greet,4 -thank_you,you helped,parrot,bye,2 -no,negating,parrot,cancel,3 -yes,great,original,book,1 -calendar_update,remove the anniversary from my calendar,parrot,resched,5 -goodbye,ai goodbye,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -goodbye,i'm gone,parrot,bye,2 -thank_you,very grateful,parrot,bye,2 -yes,please let's do this,parrot,book,1 -greeting,are you well?,original,greet,4 -goodbye,we chatted well,parrot,bye,2 -thank_you,thanks so much!,original,bye,2 -yes,agreed,original,book,1 -no,so that's no,parrot,cancel,3 -greeting,how's life?,parrot,greet,4 -meeting_schedule,when does i meet richard?,parrot,avail,0 -meeting_schedule,when's the meeting?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -yes,yay,lambada,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -date,today?,parrot,avail,0 -how_busy,what is waiting at chili's at 10 o'clock?,parrot,avail,0 -calendar,can you check my calendar for saturday?,parrot,avail,0 -goodbye,later!,original,bye,2 -yes,huh huh,parrot,book,1 -no,"no, that can't be right",original,cancel,3 -yes,yeap,original,book,1 -no,that is actually false,original,cancel,3 -date,what date?,parrot,avail,0 -no,negation,parrot,cancel,3 -reminder_update,what about a reminder,parrot,resched,5 -date,tell me the month and the day of the next month?,parrot,avail,0 -no,nope it's not true,parrot,cancel,3 -date,what's the day for tomorrow?,parrot,avail,0 -no,ill pass,original,cancel,3 -thank_you,okay thank you,parrot,bye,2 -goodbye,i have to go but it was nice talking again,parrot,bye,2 -yes,it's certainly positive,parrot,book,1 -yes,not false,parrot,book,1 -thank_you,thanks for that,original,bye,2 -greeting,how's life,original,greet,4 -yes,ok,original,book,1 -greeting,hiya!,original,greet,4 -how_busy,tell me how busy the cheesecake factory is around 6pm?,parrot,avail,0 -no,hell nah,original,cancel,3 -no,negation,parrot,cancel,3 -how_busy,how long will it take for me to sit in the olive garden?,parrot,avail,0 -greeting,are you well?,original,greet,4 -yes,i'll say yes,parrot,book,1 -no,nope,original,cancel,3 -reminder_update,do not let me forget to do that later,parrot,resched,5 -yes,accepted,original,book,1 -greeting,what's happened to you?,parrot,greet,4 -goodbye,later then,lambada,bye,2 -goodbye,adios,original,bye,2 -reminder_update,add a reminder,lambada,resched,5 -thank_you,your answer was enjoyable,original,bye,2 -goodbye,later,original,bye,2 -greeting,how's everything with you?,parrot,greet,4 -goodbye,buhbye now,lambada,bye,2 -yes,correct,original,book,1 -yes,positive,parrot,book,1 -no,i'll pass,original,cancel,3 -date,describe the day?,parrot,avail,0 -calendar,check out my calendar,parrot,avail,0 -meeting_schedule,check to see if i have any meetings with peter today,original,avail,0 -yes,right,parrot,book,1 -thank_you,thanks for the assist,original,bye,2 -yes,it makes sense,parrot,book,1 -reminder_update,please remember me,parrot,resched,5 -greeting,how ya doin,original,greet,4 -calendar,can you tell me if i added something to my calendar?,parrot,avail,0 -yes,affirmative,original,book,1 -calendar,show me what's on my calendar for march 26th?,parrot,avail,0 -goodbye,good luck,lambada,bye,2 -no,that seems wrong,lambada,cancel,3 -no,nope,original,cancel,3 -goodbye,adios ai,original,bye,2 -greeting,hola,original,greet,4 -no,negative definitely,parrot,cancel,3 -how_busy,how many people come to the restaurant before dinner?,parrot,avail,0 -no,invalid,original,cancel,3 -greeting,what's new,lambada,greet,4 -yes,yay,lambada,book,1 -greeting,how's ai doing?,parrot,greet,4 -no,it's no,parrot,cancel,3 -yes,accepted,original,book,1 -cancel_reservation,please take care of the reservation at the restaurant,lambada,cancel,3 -goodbye,buhbye,original,bye,2 -yes,ya,original,book,1 -goodbye,afterward,parrot,bye,2 -thank_you,many thanks,original,bye,2 -goodbye,later goodbye,parrot,bye,2 -goodbye,good call,parrot,bye,2 -no,not happening,original,cancel,3 -how_busy,is chili busy at 730?,parrot,avail,0 -no,it's negative,parrot,cancel,3 -yes,thats right,original,book,1 -how_busy,tell me what's the wait time at the cheese cake factory,parrot,avail,0 -no,that isn't true,lambada,cancel,3 -no,"please, no",original,cancel,3 -no,it's no,parrot,cancel,3 -cancel_reservation,i won't need the reservation,parrot,cancel,3 -goodbye,bye-bye,original,bye,2 -greeting,yo,original,greet,4 -yes,ok,original,book,1 -no,negative definitely,parrot,cancel,3 -yes,"that's right, it's true",lambada,book,1 -calendar_update,please cancel my planned meal,parrot,resched,5 -goodbye,catch you around,original,bye,2 -goodbye,really nice talking to you,parrot,bye,2 -greeting,what's new,lambada,greet,4 -how_busy,check out the wait times in olive garden right now,parrot,avail,0 -goodbye,say goodbye now,parrot,bye,2 -date,date tomorrow,parrot,avail,0 -calendar,tell me what's showing on my calendar for the 17th of march?,lambada,avail,0 -greeting,hows it going,lambada,greet,4 -thank_you,thank you again,parrot,bye,2 -yes,good yes,lambada,book,1 -yes,yep,original,book,1 -yes,ok,original,book,1 -goodbye,goodnight,original,bye,2 -yes,TRUE,original,book,1 -date,which date is it,lambada,avail,0 -yes,approved,original,book,1 -no,not good,parrot,cancel,3 -greeting,how're you today?,parrot,greet,4 -calendar,have any scheduled events on my calendar?,parrot,avail,0 -greeting,bonjour,original,greet,4 -greeting,hey what's up?,parrot,greet,4 -meeting_schedule,have a meeting today?,parrot,avail,0 -yes,TRUE,lambada,book,1 -goodbye,nice chat today,lambada,bye,2 -reminder_update,set a reminder,original,resched,5 -yes,certainly,parrot,book,1 -date,do you know the date today?,lambada,avail,0 -how_busy,how long is the wait for a table at the outback steakhouse,lambada,avail,0 -no,don't agree,parrot,cancel,3 -yes,yay,lambada,book,1 -greeting,heyo,original,greet,4 -no,that's a wrong answer,parrot,cancel,3 -yes,accepted,original,book,1 -yes,positive,parrot,book,1 -date,tell me the month and day of the year in four days?,parrot,avail,0 -yes,right,parrot,book,1 -no,the information is incorrect,parrot,cancel,3 -no,naw,parrot,cancel,3 -yes,indeed,original,book,1 -greeting,hola,original,greet,4 -yes,yes,original,book,1 -goodbye,i'll leave now,parrot,bye,2 -yes,accepted,original,book,1 -how_busy,tell me the time to wait for the table at the cheese cake factory?,parrot,avail,0 -goodbye,regards,original,bye,2 -meeting_schedule,list the meetings on my agenda today?,parrot,avail,0 -yes,uh-huh,original,book,1 -yes,yup,original,book,1 -schedule_meeting,i would like to know how to find a new meeting,parrot,book,1 -thank_you,my gratitude,parrot,bye,2 -yes,a true statement,parrot,book,1 -how_busy,does a macaroni grill have a wait time?,parrot,avail,0 -calendar_update,remove my prom from my calendar for march 15 2019,parrot,resched,5 -yes,correct,original,book,1 -meeting_schedule,what kind of meeting is there today between 10 and noon?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -reminder_update,please remind me of the car meeting,parrot,resched,5 -goodbye,i'm going,parrot,bye,2 -yes,that statement is true,lambada,book,1 -no,not at all,original,cancel,3 -greeting,hiya!,original,greet,4 -meeting_schedule,when is my meeting with lucas scheduled for?,lambada,avail,0 -yes,"yes, please",parrot,book,1 -thank_you,thankyou,parrot,bye,2 -yes,sure,original,book,1 -yes,certainly,parrot,book,1 -no,that is very very wrong,lambada,cancel,3 -goodbye,i'm leaving,parrot,bye,2 -yes,yup,original,book,1 -goodbye,my way,parrot,bye,2 -date,tell me what the date is in 9 days?,parrot,avail,0 -calendar_update,clear my calendar for february 29,parrot,resched,5 -no,negatory,original,cancel,3 -yes,absolutely!,original,book,1 -yes,yes,original,book,1 -reminder_update,remember to check the mail,parrot,resched,5 -goodbye,goodbye now,parrot,bye,2 -yes,yep,original,book,1 -yes,"yeah, that is true",lambada,book,1 -no,no thanks,original,cancel,3 -greeting,what's new,lambada,greet,4 -greeting,wassup,original,greet,4 -goodbye,goodbyes soon,parrot,bye,2 -how_busy,tell me the typical wait time at red lobster,parrot,avail,0 -goodbye,see you later,original,bye,2 -no,i say negative,original,cancel,3 -greeting,hey how are you,lambada,greet,4 -yes,that's right,original,book,1 -how_busy,is macy's busy?,parrot,avail,0 -thank_you,thank you for the job,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -greeting,hello siri,original,greet,4 -how_busy,how crowded is the restaurant at this time?,parrot,avail,0 -no,that'd be a no,original,cancel,3 -reminder_update,remember me to do my chores,parrot,resched,5 -thank_you,gracias,original,bye,2 -goodbye,tootles,original,bye,2 -date,is tomorrow's date?,parrot,avail,0 -yes,it's positive,parrot,book,1 -goodbye,the conversation was nice,parrot,bye,2 -greeting,good evening,original,greet,4 -goodbye,later gator!,original,bye,2 -yes,i would say yes,lambada,book,1 -no,negative,original,cancel,3 -goodbye,see ya,original,bye,2 -thank_you,thanks for that answer,original,bye,2 -reminder_update,remember to write later,parrot,resched,5 -goodbye,sayonara,original,bye,2 -goodbye,goodnight,original,bye,2 -yes,right,parrot,book,1 -greeting,aho,parrot,greet,4 -greeting,aho,parrot,greet,4 -no,it's no,parrot,cancel,3 -yes,yes sir,original,book,1 -greeting,hi ai,original,greet,4 -yes,right,parrot,book,1 -greeting,hello what's happening,parrot,greet,4 -yes,sure thing,original,book,1 -no,that's a negative,original,cancel,3 -greeting,hiya,original,greet,4 -yes,i think it's right,parrot,book,1 -no,it's negative,parrot,cancel,3 -greeting,"hello, anyone there",original,greet,4 -reminder_update,"new reminder, please",original,resched,5 -yes,a fact,parrot,book,1 -reminder_update,remember to book a flight to america,parrot,resched,5 -thank_you,nice,parrot,bye,2 -yes,positive,original,book,1 -thank_you,thankyou,parrot,bye,2 -greeting,hiya,original,greet,4 -goodbye,just relax,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -yes,accept,parrot,book,1 -greeting,what's new here?,parrot,greet,4 -yes,indeed,original,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -yes,oh-huh,parrot,book,1 -goodbye,great conversation,parrot,bye,2 -calendar,is my calendar free next sunday?,original,avail,0 -no,indeed it's false,parrot,cancel,3 -greeting,wassup,original,greet,4 -yes,you're right that that's true,lambada,book,1 -how_busy,tell me how busy the restaurant is when i go?,lambada,avail,0 -date,do you have a date today?,parrot,avail,0 -no,that's bad,parrot,cancel,3 -no,that's wrong,original,cancel,3 -how_busy,how long would i have to wait if i want to go to golden corral,original,avail,0 -yes,yes you are,original,book,1 -goodbye,goodnight,original,bye,2 -yes,i'll vote for you,parrot,book,1 -yes,ok,original,book,1 -how_busy,at 10 pm how busy will the olive garden be,parrot,avail,0 -greeting,how are you,original,greet,4 -thank_you,thank you!,original,bye,2 -goodbye,goodbye then,parrot,bye,2 -no,that's wrong,original,cancel,3 -cancel_reservation,cancel my reservation for chris at jp field's,original,cancel,3 -greeting,how's ai doing today?,parrot,greet,4 -thank_you,for my help i'm grateful,parrot,bye,2 -greeting,hi there,original,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -no,that's definitely false,original,cancel,3 -goodbye,on the highway,parrot,bye,2 -goodbye,buhbye,original,bye,2 -goodbye,lovely conversation,parrot,bye,2 -greeting,so how's everything?,parrot,greet,4 -yes,is true,parrot,book,1 -yes,my answer is yes,parrot,book,1 -yes,"yes, that's affirmative",original,book,1 -no,no!,original,cancel,3 -goodbye,bye-bye,original,bye,2 -greeting,hows it going,lambada,greet,4 -no,negative,original,cancel,3 -yes,indeed,original,book,1 -how_busy,how busy is shokudo at 12?,parrot,avail,0 -goodbye,i'm out,parrot,bye,2 -greeting,what's new?,parrot,greet,4 -calendar,search my calendar for birthday,original,avail,0 -calendar,tell me my calendar?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -no,not correct,parrot,cancel,3 -schedule_meeting,what rooms are available for a meeting at 5pm friday night?,parrot,book,1 -no,sure it's wrong,parrot,cancel,3 -thank_you,thanks for that,original,bye,2 -thank_you,appreciate it,original,bye,2 -schedule_meeting,can you schedule a meeting with john smith at 1 pm tomorrow?,parrot,book,1 -no,please disagree,lambada,cancel,3 -yes,accept,parrot,book,1 -yes,confirm,original,book,1 -goodbye,talk later,original,bye,2 -meeting_schedule,tell me today's scheduled conferences from noon onward?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -yes,sure,original,book,1 -goodbye,afterward,parrot,bye,2 -no,negation,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -thank_you,gracias,original,bye,2 -yes,certainly,parrot,book,1 -greeting,aho,parrot,greet,4 -goodbye,goodnight,original,bye,2 -goodbye,later,original,bye,2 -goodbye,just relax,parrot,bye,2 -yes,good,parrot,book,1 -goodbye,im leaving goodbye,parrot,bye,2 -goodbye,sayonara,original,bye,2 -greeting,nice day,lambada,greet,4 -greeting,"hi, how are you",original,greet,4 -date,tell me what day of the week it is,parrot,avail,0 -goodbye,please talk soon,parrot,bye,2 -reminder_update,set reminder for 6 pm for the meeting,lambada,resched,5 -no,erroneous,parrot,cancel,3 -goodbye,goodbyes soon,parrot,bye,2 -yes,and you're correct,parrot,book,1 -greeting,whats up,original,greet,4 -goodbye,i need to go,lambada,bye,2 -calendar,display my calendar,lambada,avail,0 -goodbye,goodbye!,original,bye,2 -goodbye,sayonara ,parrot,bye,2 -date,tell me the date in 32 days,parrot,avail,0 -yes,correct,original,book,1 -yes,yay,lambada,book,1 -meeting_schedule,time for today's meeting?,parrot,avail,0 -greeting,whats new,lambada,greet,4 -date,tell me what day it is?,original,avail,0 -no,definitely not,original,cancel,3 -yes,yes you are,original,book,1 -how_busy,what's the crowd like at olive garden at 7pm,lambada,avail,0 -yes,i think you've got it,parrot,book,1 -yes,TRUE,lambada,book,1 -no,it's indeed false,parrot,cancel,3 -goodbye,sayonara ,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -greeting,what's happened?,parrot,greet,4 -how_busy,is it possible to know how long it takes to get to red lobster?,parrot,avail,0 -greeting,hello good morning,parrot,greet,4 -thank_you,thankyou,parrot,bye,2 -yes,approved,original,book,1 -reminder_update,keep an eye on the meeting tomorrow,parrot,resched,5 -yes,can we please?,original,book,1 -schedule_meeting,the meeting should be arranged,parrot,book,1 -yes,uh-huh,original,book,1 -greeting,hey hey!,original,greet,4 -no,nope,original,cancel,3 -no,it's false,parrot,cancel,3 -yes,accept,parrot,book,1 -greeting,"hey, ai",original,greet,4 -yes,confirmed,original,book,1 -how_busy,does this place get a lot of business around eight?,parrot,avail,0 -how_busy,what is the wait for a table at red lobster?,lambada,avail,0 -yes,ya,original,book,1 -how_busy,can you tell me the wait time at applebee's,parrot,avail,0 -greeting,are you okay??,parrot,greet,4 -no,no it's not good,parrot,cancel,3 -no,negation,parrot,cancel,3 -greeting,"hi, ai",original,greet,4 -greeting,hey fellows,parrot,greet,4 -calendar,what's on my agenda for tomorrow?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -greeting,aloha,original,greet,4 -goodbye,i really enjoyed talking with you,lambada,bye,2 -goodbye,you're done,parrot,bye,2 -yes,it's certainly true,parrot,book,1 -greeting,hello,original,greet,4 -goodbye,talk later,original,bye,2 -greeting,good day,original,greet,4 -schedule_meeting,can you meet kate at 8am?,parrot,book,1 -greeting,whats up?,parrot,greet,4 -greeting,heyo,original,greet,4 -yes,affirmative,original,book,1 -no,that is no way,lambada,cancel,3 -greeting,you're all right?,parrot,greet,4 -goodbye,farewell,original,bye,2 -how_busy,how busy will outback steakhouse be at 7pm,parrot,avail,0 -yes,that is true,original,book,1 -yes,i know,parrot,book,1 -greeting,hey yai,lambada,greet,4 -greeting,are you okay??,parrot,greet,4 -greeting,hiya!,original,greet,4 -no,it's absolutely false,parrot,cancel,3 -calendar,look at my calendar for birthday parties,parrot,avail,0 -greeting,salutations!,original,greet,4 -yes,obviously,parrot,book,1 -greeting,yo,original,greet,4 -greeting,wassup,original,greet,4 -greeting,salutations!,original,greet,4 -thank_you,thank you?,parrot,bye,2 -greeting,how's life going?,parrot,greet,4 -how_busy,is there a wait time for a table at chipotle bar?,lambada,avail,0 -greeting,heyo,original,greet,4 -yes,that's a yes,original,book,1 -yes,yes that's it,original,book,1 -no,that's a wrong answer,parrot,cancel,3 -no,nay,original,cancel,3 -calendar,show me the appointments on my calendar for march 10?,parrot,avail,0 -greeting,you're all right?,parrot,greet,4 -no,negation,parrot,cancel,3 -yes,confirmed,original,book,1 -yes,that'd be great,parrot,book,1 -yes,positive,parrot,book,1 -cancel_reservation,my reservation for tonight must be cancelled,parrot,cancel,3 -schedule_meeting,i need to schedule a meeting,original,book,1 -yes,accepted,original,book,1 -yes,right,parrot,book,1 -yes,absolutely correct,original,book,1 -thank_you,good job thanks,parrot,bye,2 -greeting,salutation,parrot,greet,4 -goodbye,i have to leave,parrot,bye,2 -no,don't agree,parrot,cancel,3 -greeting,you're all right?,parrot,greet,4 -yes,it's logical,parrot,book,1 -goodbye,see you soon,original,bye,2 -how_busy,i'm waiting for carl jr,parrot,avail,0 -how_busy,is the restaurant open at what time?,parrot,avail,0 -how_busy,can i wait at chili's?,parrot,avail,0 -goodbye,goodbye soon,lambada,bye,2 -reminder_update,create a reminder please,parrot,resched,5 -no,false sure,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -greeting,how're you?,parrot,greet,4 -greeting,heller,original,greet,4 -calendar,look in my calendar for upcoming appointments,parrot,avail,0 -no,naw,original,cancel,3 -no,that’s incorrect,original,cancel,3 -yes,confirm,original,book,1 -goodbye,it's over,parrot,bye,2 -yes,it is a true,original,book,1 -no,no,lambada,cancel,3 -no,no way!,original,cancel,3 -meeting_schedule,is my meeting with jim scheduled?,parrot,avail,0 -thank_you,thanks for the answer,original,bye,2 -no,absolutely false,parrot,cancel,3 -thank_you,again thanks,parrot,bye,2 -no,not right,parrot,cancel,3 -calendar_update,please add an event to my calendar for september 1st,parrot,resched,5 -yes,"yes, this is true",original,book,1 -no,no?,parrot,cancel,3 -yes,it'll be yes,parrot,book,1 -meeting_schedule,meeting today,parrot,avail,0 -date,what year?,parrot,avail,0 -yes,yay,lambada,book,1 -yes,certainly,parrot,book,1 -schedule_meeting,is there a meeting room open on wednesday at 10pm?,parrot,book,1 -no,negation,parrot,cancel,3 -yes,confirm,original,book,1 -goodbye,sayonara,original,bye,2 -no,naw,parrot,cancel,3 -no,i'm sorry it isn't,lambada,cancel,3 -how_busy,how long is the wait in the restaurant now?,parrot,avail,0 -schedule_meeting,let me know if we can schedule a meeting,parrot,book,1 -yes,indeed,original,book,1 -greeting,how's my day been?,parrot,greet,4 -goodbye,i'll have to go,parrot,bye,2 -calendar,what's going on in my calendar for march 18?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -how_busy,how busy is mc jonny around five?,parrot,avail,0 -yes,that's a fact,parrot,book,1 -calendar_update,"on the 22nd of this month, we need to clear our calendar so we can leave it open for mark to visit",original,resched,5 -date,tell me tomorrow's date?,original,avail,0 -no,negatory?,parrot,cancel,3 -cancel_reservation,cancellation of the reservation for pizza place at 4pm,parrot,cancel,3 -no,it is false,original,cancel,3 -goodbye,peace,original,bye,2 -greeting,heyo,original,greet,4 -yes,right,parrot,book,1 -yes,sure,original,book,1 -how_busy,tell me the number of people at chipotle at 6pm?,parrot,avail,0 -no,what you said is false?,parrot,cancel,3 -no,naw,parrot,cancel,3 -goodbye,good conversation,parrot,bye,2 -meeting_schedule,i want to know if i have meetings with jackson today,lambada,avail,0 -date,i want to find out the date today,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -no,negative,original,cancel,3 -yes,uh huh,original,book,1 -greeting,how's my family?,parrot,greet,4 -thank_you,really great!,original,bye,2 -yes,approved,original,book,1 -greeting,heller,original,greet,4 -how_busy,how much time will i wait to be seated in an italian restaurant,parrot,avail,0 -date,date tomorrow,parrot,avail,0 -no,that's totally false,parrot,cancel,3 -yes,confirm,original,book,1 -thank_you,i'm very grateful,parrot,bye,2 -goodbye,go easy,parrot,bye,2 -greeting,so what's up?,parrot,greet,4 -date,what happens in three days?,parrot,avail,0 -yes,that's the truth,original,book,1 -goodbye,tootles?,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -no,negatory,original,cancel,3 -goodbye,bye bye now,lambada,bye,2 -date,what date?,parrot,avail,0 -how_busy,how long will the restaurant be at noon,parrot,avail,0 -cancel_reservation,cancel my reservation at odeon,lambada,cancel,3 -thank_you,your assistance is appreciated,parrot,bye,2 -no,that’s incorrect,original,cancel,3 -no,erroneous,parrot,cancel,3 -goodbye,this conversation was pleasant,parrot,bye,2 -yes,it'll be yes,parrot,book,1 -no,no?,parrot,cancel,3 -yes,ok,original,book,1 -no,nada,original,cancel,3 -yes,obviously,parrot,book,1 -calendar,what's on my calendar for easter?,parrot,avail,0 -reminder_update,let me know,parrot,resched,5 -yes,indeed,original,book,1 -greeting,how's everything?,parrot,greet,4 -greeting,wassup,original,greet,4 -yes,agreed,original,book,1 -meeting_schedule,what time and date did you meet with stacy?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -how_busy,i need to know how busy denny's is at 6am,parrot,avail,0 -goodbye,buhbye,original,bye,2 -goodbye,later goodbye,parrot,bye,2 -greeting,salutation,parrot,greet,4 -yes,huh,parrot,book,1 -goodbye,ill see you around,original,bye,2 -greeting,hey bs,lambada,greet,4 -thank_you,"good job, thanks",lambada,bye,2 -greeting,hello are you doing okay?,parrot,greet,4 -greeting,what's new,lambada,greet,4 -date,today?,parrot,avail,0 -calendar_update,annull all events on my calendar,parrot,resched,5 -yes,accept,parrot,book,1 -yes,it's logical,parrot,book,1 -cancel_reservation,call off the reservation for the dinner,parrot,cancel,3 -date,today what date?,parrot,avail,0 -goodbye,i'll talk to you later ai,original,bye,2 -calendar,read my calendar,parrot,avail,0 -no,that's a negatory,original,cancel,3 -thank_you,very grateful,parrot,bye,2 -greeting,salutation,parrot,greet,4 -greeting,how life treats you?,parrot,greet,4 -schedule_meeting,i need a meeting room for 930 am on sunday,parrot,book,1 -how_busy,how long will it take to be seated at the lobster table?,parrot,avail,0 -goodbye,take care then,parrot,bye,2 -goodbye,buhbye,original,bye,2 -goodbye,good-bye,parrot,bye,2 -yes,sure thing,original,book,1 -goodbye,tootles?,parrot,bye,2 -yes,it's positive,parrot,book,1 -yes,i want it,parrot,book,1 -yes,so it's true,parrot,book,1 -schedule_meeting,go ahead and hold a conference room for friday at 11am please,parrot,book,1 -yes,do that?,original,book,1 -meeting_schedule,show me my schedule of meetings,parrot,avail,0 -greeting,how's my day?,parrot,greet,4 -no,it's very wrong,parrot,cancel,3 -no,hell nah,original,cancel,3 -calendar_update,clear my calendar for friday,lambada,resched,5 -greeting,ahoy,lambada,greet,4 -yes,yup,original,book,1 -calendar,do i have anything scheduled for thursday 14?,parrot,avail,0 -greeting,hi there,original,greet,4 -goodbye,"thanks, bye",original,bye,2 -reminder_update,to be a professional photographer,parrot,resched,5 -goodbye,fairwell?,parrot,bye,2 -yes,"true, most definitely",original,book,1 -goodbye,nice talk,lambada,bye,2 -greeting,so how's everything?,parrot,greet,4 -greeting,"howdy, what's new",original,greet,4 -yes,that is accurate,original,book,1 -thank_you,you've helped,parrot,bye,2 -date,what today?,parrot,avail,0 -date,is the date?,parrot,avail,0 -goodbye,bye,original,bye,2 -no,naw,parrot,cancel,3 -no,not right?,parrot,cancel,3 -yes,yeah,original,book,1 -yes,i think that's true,original,book,1 -goodbye,thanks for the good talk,parrot,bye,2 -yes,yes that's right,lambada,book,1 -goodbye,bye-bye,original,bye,2 -no,"no, that is wrong",original,cancel,3 -meeting_schedule,is the gang going to meet this afternoon?,parrot,avail,0 -thank_you,gracias,original,bye,2 -date,what's the date?,parrot,avail,0 -yes,yup,original,book,1 -goodbye,later,original,bye,2 -greeting,well hi there,original,greet,4 -how_busy,how long will the wait at this restaurant be,lambada,avail,0 -goodbye,fairwell?,parrot,bye,2 -meeting_schedule,what's the meeting today?,parrot,avail,0 -goodbye,goodbye my friend,parrot,bye,2 -yes,TRUE,original,book,1 -yes,"yep, that's true",original,book,1 -no,that's so negative,parrot,cancel,3 -goodbye,peace out,original,bye,2 -yes,is true,parrot,book,1 -thank_you,appreciated,original,bye,2 -greeting,salutation,parrot,greet,4 -no,i prefer not,parrot,cancel,3 -greeting,"hello, friend",original,greet,4 -no,no?,parrot,cancel,3 -goodbye,tootles,original,bye,2 -greeting,what's happening,original,greet,4 -goodbye,tootles,original,bye,2 -goodbye,my way,parrot,bye,2 -calendar,can you check my calendar to see if an event called final exam is scheduled?,parrot,avail,0 -greeting,hola!,original,greet,4 -greeting,ahoy,lambada,greet,4 -greeting,hola!,original,greet,4 -goodbye,see ya,original,bye,2 -thank_you,youre a doll,original,bye,2 -no,that's wrong,original,cancel,3 -yes,not false,parrot,book,1 -greeting,"hey, ai",original,greet,4 -reminder_update,i need to remember how to take care of the gardens,parrot,resched,5 -how_busy,how long is the wait at this restaurant,lambada,avail,0 -yes,positive,parrot,book,1 -yes,i'll say yes,parrot,book,1 -yes,yup,original,book,1 -yes,is true,parrot,book,1 -no,that is a completely false statement,original,cancel,3 -thank_you,thanks for the response,lambada,bye,2 -yes,confirmed,original,book,1 -greeting,hello hello good morning,parrot,greet,4 -thank_you,nice,parrot,bye,2 -yes,good yes,lambada,book,1 -yes,i guess,parrot,book,1 -yes,agreed,original,book,1 -goodbye,afterward,parrot,bye,2 -thank_you,thanks so much,original,bye,2 -no,that's wrong,original,cancel,3 -yes,positive,parrot,book,1 -how_busy,can i expect a lot of people at olive garden at 6?,parrot,avail,0 -goodbye,adios!,original,bye,2 -how_busy,will iman be busy at 6 o'clock?,parrot,avail,0 -calendar_update,take my wedding from my calendar for march 30th,lambada,resched,5 -how_busy,can you tell me the wait times for a table at the cheesecake shop?,parrot,avail,0 -yes,all right,original,book,1 -date,can you tell me the date of this?,parrot,avail,0 -date,which date today?,parrot,avail,0 -goodbye,regards,original,bye,2 -no,not a good sign,parrot,cancel,3 -yes,all right,original,book,1 -schedule_meeting,please help me plan a meeting,parrot,book,1 -goodbye,i enjoy our conversation,parrot,bye,2 -date,today?,parrot,avail,0 -reminder_update,make a reminder to book a flight to the us,parrot,resched,5 -no,FALSE,lambada,cancel,3 -calendar,do i have any appointments on my calendar for the 29th?,lambada,avail,0 -yes,confirm,original,book,1 -no,it is very much false,original,cancel,3 -how_busy,how many people usually go to chili around 12pm,parrot,avail,0 -how_busy,tell me the time to wait at the red robin at 6pm?,parrot,avail,0 -yes,indeed,original,book,1 -yes,absolutely!,original,book,1 -thank_you,thankyou,parrot,bye,2 -calendar_update,please add my final exams to my calendar for may 2nd,parrot,resched,5 -how_busy,will i be in chili at 5pm?,parrot,avail,0 -how_busy,how long is the wait for a burger at red lobster,lambada,avail,0 -cancel_reservation,please cancel my booking,parrot,cancel,3 -greeting,tell me how are you?,original,greet,4 -calendar_update,get rid of this event today,parrot,resched,5 -date,today is what date,original,avail,0 -goodbye,it was nice to see you,parrot,bye,2 -goodbye,regards,original,bye,2 -no,but that's not the case,parrot,cancel,3 -greeting,hola!,original,greet,4 -how_busy,how long will it take to sit in the cheese cake factory?,parrot,avail,0 -yes,approved,original,book,1 -calendar,find events in my calendar,parrot,avail,0 -reminder_update,can we set a reminder?,parrot,resched,5 -greeting,bonjour,original,greet,4 -thank_you,okay thank you,parrot,bye,2 -thank_you,thanks for coming,parrot,bye,2 -greeting,how's everything,original,greet,4 -no,FALSE,lambada,cancel,3 -cancel_reservation,i need you to cancel my reservation for smith's at 6:15,original,cancel,3 -how_busy,can i wait at the red lobster until 9 pm,parrot,avail,0 -no,nay,original,cancel,3 -no,"no, that is wrong",original,cancel,3 -how_busy,wait at jalapeno ranch?,parrot,avail,0 -greeting,hiya,original,greet,4 -greeting,yo how's it going,parrot,greet,4 -schedule_meeting,please make a meeting room,lambada,book,1 -no,naw,original,cancel,3 -reminder_update,i need to remember,parrot,resched,5 -goodbye,adios!,original,bye,2 -goodbye,goodbye soon,lambada,bye,2 -how_busy,how busy is chili's around 5,lambada,avail,0 -goodbye,bye bye,lambada,bye,2 -yes,it seems true,parrot,book,1 -goodbye,goodbye,original,bye,2 -goodbye,good night,original,bye,2 -yes,"yes, that is right",original,book,1 -no,that's incorrect,original,cancel,3 -thank_you,thanks for the info,original,bye,2 -goodbye,have fun?,lambada,bye,2 -date,is it monday?,parrot,avail,0 -calendar,do you have any scheduled events on my calendar for january 15?,parrot,avail,0 -yes,i know,parrot,book,1 -greeting,what's happened to you?,parrot,greet,4 -no,yes that's false,lambada,cancel,3 -greeting,hello,original,greet,4 -meeting_schedule,can you show me the next meeting,parrot,avail,0 -goodbye,goodnight,original,bye,2 -no,that is erroneous,original,cancel,3 -goodbye,later,original,bye,2 -greeting,hi there,original,greet,4 -goodbye,bye bye,lambada,bye,2 -goodbye,later gater,original,bye,2 -no,absolutely false,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -no,it is indeed false,lambada,cancel,3 -how_busy,does the olive garden get crowded around dinner time?,parrot,avail,0 -thank_you,you did a good job,lambada,bye,2 -no,nada,original,cancel,3 -meeting_schedule,what's my day's schedule?,parrot,avail,0 -goodbye,later!,original,bye,2 -greeting,whats up?,parrot,greet,4 -no,no,lambada,cancel,3 -thank_you,you have made my life so much easier,lambada,bye,2 -goodbye,very nice conversation,parrot,bye,2 -yes,that's right,original,book,1 -goodbye,goodbyes,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -how_busy,how long will it take me to sit in the restaurant?,parrot,avail,0 -calendar,display my calendar,lambada,avail,0 -date,what is the day now?,original,avail,0 -goodbye,buhbye,original,bye,2 -goodbye,good night,original,bye,2 -yes,i say yes,lambada,book,1 -date,what is the day?,original,avail,0 -goodbye,adios,original,bye,2 -cancel_reservation,my dinner reservation will not be necessary,parrot,cancel,3 -yes,my answer is yes,parrot,book,1 -yes,good,parrot,book,1 -how_busy,tell me how long the wait is at olive garden right now?,lambada,avail,0 -calendar_update,i need to make an appointment for tomorrow for 10am,parrot,resched,5 -thank_you,thank you!,original,bye,2 -greeting,do you feel?,parrot,greet,4 -calendar_update,i'll be meeting steven on 5 march,parrot,resched,5 -goodbye,greetings,parrot,bye,2 -date,what today?,parrot,avail,0 -calendar,can you tell me anything about the 29th of march?,parrot,avail,0 -thank_you,really appreciate your help thank you,parrot,bye,2 -yes,sure,original,book,1 -yes,sure,original,book,1 -how_busy,can you tell me how busy olive garden is at 10?,lambada,avail,0 -no,it's false,parrot,cancel,3 -calendar_update,please cancel the party on may 13,parrot,resched,5 -goodbye,later,original,bye,2 -no,is my falsehood?,parrot,cancel,3 -date,what month and day?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -how_busy,how busy is cheesecake factory right now,original,avail,0 -how_busy,how many people attend olive garden?,parrot,avail,0 -greeting,what's new?,parrot,greet,4 -no,not right so,parrot,cancel,3 -no,i'll pass,original,cancel,3 -goodbye,my friend,parrot,bye,2 -thank_you,very grateful,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -thank_you,i'm grateful,original,bye,2 -calendar_update,delete all events on my calendar that have the word girlfriend in them,original,resched,5 -yes,that's correct,original,book,1 -calendar,is there an annual physical on the calendar?,parrot,avail,0 -schedule_meeting,can i schedule a meeting for 5 pm friday?,parrot,book,1 -greeting,how's ai doing today?,parrot,greet,4 -no,that’s not correct,original,cancel,3 -reminder_update,make me remember,parrot,resched,5 -yes,great,original,book,1 -yes,oh-huh,parrot,book,1 -how_busy,show me the wait times at the chinese table?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -yes,confirmed,original,book,1 -yes,so it works,parrot,book,1 -no,it's negative,parrot,cancel,3 -thank_you,i appeciate it,parrot,bye,2 -reminder_update,remind me something,parrot,resched,5 -no,nope,original,cancel,3 -goodbye,regards,original,bye,2 -yes,right,parrot,book,1 -how_busy,how busy will the olive garden be at 6pm,parrot,avail,0 -yes,yup,original,book,1 -meeting_schedule,tell me when the meeting is supposed to take place?,parrot,avail,0 -no,false sure,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -no,negation,parrot,cancel,3 -no,that’s incorrect,original,cancel,3 -no,FALSE,original,cancel,3 -greeting,ahoy there,lambada,greet,4 -goodbye,i like our conversation,parrot,bye,2 -no,negatory?,parrot,cancel,3 -thank_you,much obliged,original,bye,2 -meeting_schedule,when is my next meeting with mike scheduled?,parrot,avail,0 -yes,perfect,parrot,book,1 -greeting,how does it go?,parrot,greet,4 -no,that's overwhelmingly negative,parrot,cancel,3 -meeting_schedule,will we have meetings today?,parrot,avail,0 -calendar,do i have any calendar events on tuesday?,lambada,avail,0 -yes,yeah,original,book,1 -goodbye,i enjoyed our goodbye,parrot,bye,2 -yes,10-Apr,original,book,1 -yes,please let's do it,original,book,1 -how_busy,wait at jalapeno ranch?,parrot,avail,0 -goodbye,goodbye then,parrot,bye,2 -how_busy,can you tell me how busy chili will be at 5?,parrot,avail,0 -no,i'd say no,original,cancel,3 -no,yes it's false,parrot,cancel,3 -no,i think it's wrong,parrot,cancel,3 -date,what's the date for tomorrow,parrot,avail,0 -goodbye,have fun?,lambada,bye,2 -cancel_reservation,cancel my reservation for dinner this weekend please,parrot,cancel,3 -how_busy,show me the wait times at a chinese table?,parrot,avail,0 -thank_you,thanks for coming by,lambada,bye,2 -no,this is a lie,parrot,cancel,3 -yes,that's true,original,book,1 -thank_you,you've been great,parrot,bye,2 -yes,that's true,original,book,1 -date,where is tomorrow's date?,parrot,avail,0 -yes,good,parrot,book,1 -yes,facts,original,book,1 -no,that's wrong,original,cancel,3 -yes,absolutely!,original,book,1 -how_busy,find out how busy chili's is at 5 pm,lambada,avail,0 -greeting,aloha,original,greet,4 -no,and i'm sorry,parrot,cancel,3 -no,no it's not true,parrot,cancel,3 -yes,yeah,original,book,1 -how_busy,can i wait for a table at ihop,parrot,avail,0 -goodbye,tootles,original,bye,2 -yes,let's do it,parrot,book,1 -how_busy,how busy is chili's at 8:00,lambada,avail,0 -greeting,good morning ai,parrot,greet,4 -yes,definitely,original,book,1 -goodbye,goodbye bye,parrot,bye,2 -thank_you,you answered,parrot,bye,2 -no,not happening,original,cancel,3 -no,certainly false,parrot,cancel,3 -greeting,what's happened?,parrot,greet,4 -yes,yup,original,book,1 -yes,absolutely,original,book,1 -date,in 100 days?,parrot,avail,0 -yes,so it's real,parrot,book,1 -date,he's got the date today,parrot,avail,0 -no,negation,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -goodbye,for now,parrot,bye,2 -greeting,salutation,parrot,greet,4 -no,negatory?,parrot,cancel,3 -yes,indeed,original,book,1 -calendar_update,remove the birthday party date from my calendar,parrot,resched,5 -goodbye,great to chat with you,parrot,bye,2 -yes,you are yes,lambada,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,that is a fact,original,book,1 -yes,uh huh,original,book,1 -yes,accept,parrot,book,1 -yes,absolutely,original,book,1 -calendar,what do i have for march 12th?,parrot,avail,0 -cancel_reservation,get a salad off,parrot,cancel,3 -yes,it'll be yes,parrot,book,1 -yes,correct,original,book,1 -goodbye,it was a pleasure to talk to you goodbye,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -yes,do that?,original,book,1 -greeting,"howdy, what's new",original,greet,4 -greeting,"hello, friend",original,greet,4 -yes,confirmed,original,book,1 -goodbye,i'm going,parrot,bye,2 -thank_you,i owe you,parrot,bye,2 -goodbye,it was pleasant conversing with you,original,bye,2 -no,that's bad,parrot,cancel,3 -yes,TRUE,original,book,1 -date,what date is it?,original,avail,0 -yes,"yep, that's correct",lambada,book,1 -yes,great,original,book,1 -yes,huh,parrot,book,1 -goodbye,as regards,parrot,bye,2 -date,list the current days?,parrot,avail,0 -cancel_reservation,repeal the dinner reservation,original,cancel,3 -no,that's completely false,original,cancel,3 -goodbye,good night,original,bye,2 -date,the date is tomorrow,parrot,avail,0 -goodbye,regards,original,bye,2 -greeting,"hello, good day",lambada,greet,4 -goodbye,goodbye later,parrot,bye,2 -yes,confirm,original,book,1 -no,yes that's false,lambada,cancel,3 -yes,obviously,parrot,book,1 -goodbye,"bye-bye, my friend",lambada,bye,2 -goodbye,thanks bye bye!,original,bye,2 -date,today what date?,parrot,avail,0 -no,that is the wrong answer,original,cancel,3 -yes,yes it's true,lambada,book,1 -goodbye,later gater,original,bye,2 -greeting,hi how's everything?,parrot,greet,4 -thank_you,why thank you?,original,bye,2 -yes,obviously,parrot,book,1 -goodbye,bye bye!,original,bye,2 -goodbye,tootles,original,bye,2 -no,you are wrong,original,cancel,3 -yes,agreed,original,book,1 -how_busy,is it possible to eat beef in ohio for a few hours?,parrot,avail,0 -thank_you,thanks,original,bye,2 -yes,so it's true,parrot,book,1 -thank_you,much obliged,original,bye,2 -how_busy,"at 5 pm, can i expect tgor to be busy",lambada,avail,0 -goodbye,sign off,parrot,bye,2 -how_busy,how busy is the place around 6?,parrot,avail,0 -thank_you,your assistance is appreciated,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -goodbye,was nice to have a chat with you,parrot,bye,2 -goodbye,i'll go,parrot,bye,2 -date,what will be the date in 500 days from now on?,parrot,avail,0 -goodbye,later,original,bye,2 -greeting,hiya,original,greet,4 -how_busy,is the cheesecake factory busy right?,parrot,avail,0 -greeting,hey,original,greet,4 -thank_you,thankyou,parrot,bye,2 -how_busy,how busy is the cheesecake factory at 7 o'clock,parrot,avail,0 -greeting,"hello, friend",original,greet,4 -date,in five days?,parrot,avail,0 -goodbye,bye,original,bye,2 -calendar,if there are any march schedules for me please let me know,parrot,avail,0 -yes,great,original,book,1 -yes,absolutely,original,book,1 -goodbye,goodbye later,parrot,bye,2 -yes,correct,original,book,1 -yes,facts,original,book,1 -goodbye,thank you for the discussion,parrot,bye,2 -greeting,"hey, ai",original,greet,4 -no,so that's no,parrot,cancel,3 -date,what the day?,parrot,avail,0 -yes,10-Apr,original,book,1 -greeting,how ya doin,original,greet,4 -goodbye,have fun?,lambada,bye,2 -no,nope it's not true,parrot,cancel,3 -greeting,hello there,original,greet,4 -no,that isn't true,lambada,cancel,3 -greeting,how's my doing?,parrot,greet,4 -thank_you,gracias,original,bye,2 -thank_you,you helped me today,parrot,bye,2 -goodbye,adios,original,bye,2 -yes,oh-huh,parrot,book,1 -yes,right,parrot,book,1 -meeting_schedule,show me the hours of my meetings,parrot,avail,0 -yes,all right,parrot,book,1 -greeting,ahoy,lambada,greet,4 -how_busy,wait for us at the out-of-town pizza factory?,parrot,avail,0 -thank_you,your answer is good,parrot,bye,2 -no,yes it's false,parrot,cancel,3 -yes,that appears true,original,book,1 -yes,10-Apr,original,book,1 -goodbye,goodbye,original,bye,2 -greeting,wassup,original,greet,4 -yes,sure thing,original,book,1 -no,that's completely false,original,cancel,3 -goodbye,adios,original,bye,2 -no,no,lambada,cancel,3 -date,what's the current date?,parrot,avail,0 -goodbye,good conversation,parrot,bye,2 -yes,yes is my answer,original,book,1 -no,i mean no,parrot,cancel,3 -greeting,yo how is it going,lambada,greet,4 -goodbye,bye-bye,original,bye,2 -no,nope,original,cancel,3 -no,i would rather not,lambada,cancel,3 -yes,please let's do that,parrot,book,1 -goodbye,goodbye to you,original,bye,2 -yes,agreed,original,book,1 -goodbye,peace,original,bye,2 -goodbye,later,original,bye,2 -reminder_update,not to forget to call mom,parrot,resched,5 -meeting_schedule,i want to know if i have a meeting with jackson today,parrot,avail,0 -reminder_update,remind me to put some gas in my car,parrot,resched,5 -greeting,hello there ai,original,greet,4 -goodbye,it's over,parrot,bye,2 -how_busy,how busy will avocado forest be at 8pm,parrot,avail,0 -how_busy,how busy will imesa be around 515 pm,parrot,avail,0 -no,nope,original,cancel,3 -goodbye,goodbyes soon,parrot,bye,2 -thank_you,you were so nice,parrot,bye,2 -how_busy,how much time does the restaurant open between 5 and 7?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -goodbye,regards,original,bye,2 -goodbye,bye!,original,bye,2 -goodbye,adios ai,original,bye,2 -goodbye,buhbye,original,bye,2 -how_busy,how busy will the red lobster be at noon?,parrot,avail,0 -yes,yeah,original,book,1 -greeting,how ya doing,lambada,greet,4 -greeting,how is idy?,parrot,greet,4 -meeting_schedule,please tell me when my meeting is scheduled with john,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,awesome thank you,parrot,bye,2 -cancel_reservation,abrogate the dinner reservation,parrot,cancel,3 -thank_you,thanks for doing what you do,lambada,bye,2 -schedule_meeting,i need a meeting to start today,parrot,book,1 -goodbye,goodbye soon,lambada,bye,2 -goodbye,see ya!,original,bye,2 -reminder_update,need a reminder for signing up for the conference,parrot,resched,5 -how_busy,is the restaurant always crowded?,parrot,avail,0 -no,no that's not accurate,parrot,cancel,3 -goodbye,sign off,parrot,bye,2 -yes,indeed,original,book,1 -thank_you,it's my debt,parrot,bye,2 -yes,obviously,parrot,book,1 -meeting_schedule,is the meeting with lisa today?,original,avail,0 -how_busy,check the wait time for the macaroni grills,parrot,avail,0 -goodbye,good night,original,bye,2 -goodbye,adios,original,bye,2 -goodbye,goodbye!,original,bye,2 -yes,it is definitely affirmative,original,book,1 -thank_you,thankyou,parrot,bye,2 -greeting,hola!,original,greet,4 -yes,okay,original,book,1 -no,it's a false statement,parrot,cancel,3 -schedule_meeting,can you schedule a meeting for scott at noon?,lambada,book,1 -goodbye,the talk was nice,lambada,bye,2 -meeting_schedule,do i need to be present to do any meetings?,lambada,avail,0 -goodbye,buhbye,original,bye,2 -goodbye,adios!,original,bye,2 -no,absolutely false,parrot,cancel,3 -no,it's certainly a false claim,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how long will it take to get a table at the buffalo wings?,parrot,avail,0 -date,what'll it be tomorrow?,parrot,avail,0 -no,nothing,parrot,cancel,3 -no,no!,original,cancel,3 -goodbye,goodbyes,parrot,bye,2 -goodbye,adios!,original,bye,2 -thank_you,again thanks,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -greeting,hiya,original,greet,4 -no,no good,original,cancel,3 -how_busy,how long will the restaurant be waiting for you,parrot,avail,0 -calendar_update,please add my wedding to my calendar for march 5,lambada,resched,5 -yes,yeah,original,book,1 -no,nothing good,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -yes,absolutely!,original,book,1 -goodbye,later!,original,bye,2 -no,not good,parrot,cancel,3 -no,but it's totally wrong,parrot,cancel,3 -greeting,"hey, ai",original,greet,4 -goodbye,farewell!,original,bye,2 -greeting,hello how's the situation?,parrot,greet,4 -thank_you,appreciated,original,bye,2 -how_busy,how long until dinner?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -yes,that's absolutely true,parrot,book,1 -date,today?,parrot,avail,0 -goodbye,bye my friend,parrot,bye,2 -no,nay,original,cancel,3 -no,naw,parrot,cancel,3 -thank_you,gracias,original,bye,2 -thank_you,thanks,original,bye,2 -date,in three days,parrot,avail,0 -greeting,hello there!,original,greet,4 -no,it's very wrong,parrot,cancel,3 -greeting,how does ai do?,parrot,greet,4 -how_busy,how busy is raspberry pie at 545?,parrot,avail,0 -goodbye,i'll go,parrot,bye,2 -no,i'll pass,original,cancel,3 -no,there is no,parrot,cancel,3 -yes,obviously,parrot,book,1 -greeting,yo,original,greet,4 -no,no no no,parrot,cancel,3 -how_busy,how long before i can eat at chic fil a,original,avail,0 -yes,it's certainly true,parrot,book,1 -no,i am saying no,original,cancel,3 -no,that's no,parrot,cancel,3 -goodbye,adios,original,bye,2 -meeting_schedule,what's my schedule for today?,parrot,avail,0 -greeting,hey there!,original,greet,4 -goodbye,regards,original,bye,2 -how_busy,how long is the restaurant line before dinner?,parrot,avail,0 -goodbye,later!,original,bye,2 -no,that's totally false,parrot,cancel,3 -how_busy,please look at the current wait times at chili right now,parrot,avail,0 -how_busy,how busy is steakhouse red robin at 5:00,lambada,avail,0 -greeting,how does ai feel?,parrot,greet,4 -goodbye,for now,parrot,bye,2 -no,is not true?,parrot,cancel,3 -goodbye,i'll be gone,parrot,bye,2 -calendar_update,i need to delete this event from my calendar,parrot,resched,5 -yes,"yeah, that's true",lambada,book,1 -greeting,how you're doing?,parrot,greet,4 -thank_you,thank a bunch,original,bye,2 -yes,perfect,parrot,book,1 -goodbye,afterward,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -yes,absolutely!,original,book,1 -yes,TRUE,original,book,1 -calendar,what's tuesday on my calendar?,parrot,avail,0 -date,in eight days?,parrot,avail,0 -yes,that is accurate,original,book,1 -thank_you,thanks for all the help,parrot,bye,2 -goodbye,i finished talking with you,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -no,nope,original,cancel,3 -yes,it makes sense,parrot,book,1 -greeting,heller,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,later!,original,bye,2 -no,that's not factual,parrot,cancel,3 -goodbye,peace,original,bye,2 -thank_you,so grateful,parrot,bye,2 -reminder_update,remember to use the bathroom,parrot,resched,5 -no,nada,original,cancel,3 -no,negatory,original,cancel,3 -no,no,lambada,cancel,3 -yes,yay,lambada,book,1 -thank_you,i appreciate that answer,original,bye,2 -greeting,how are you,original,greet,4 -no,that's no,parrot,cancel,3 -goodbye,send a goodbye,lambada,bye,2 -date,what year?,parrot,avail,0 -date,a year?,parrot,avail,0 -how_busy,how busy is chipotle pho at 5pm,lambada,avail,0 -goodbye,goodnight,original,bye,2 -no,not good,parrot,cancel,3 -goodbye,later then,lambada,bye,2 -greeting,all right with you?,parrot,greet,4 -how_busy,is the restaurant usually packed around noon?,parrot,avail,0 -goodbye,glad to talk,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -no,not true i don't think,parrot,cancel,3 -goodbye,farewell!,original,bye,2 -yes,i guess,parrot,book,1 -yes,affirmative,original,book,1 -no,yes that's false,lambada,cancel,3 -meeting_schedule,what if i have meetings today?,parrot,avail,0 -no,no that's wrong,original,cancel,3 -no,"no, that's not right",original,cancel,3 -yes,10-Apr,original,book,1 -no,nope,original,cancel,3 -yes,yeap,original,book,1 -greeting,"hi, ai",original,greet,4 -yes,confirmed,original,book,1 -goodbye,see ya,lambada,bye,2 -yes,"yes, please",original,book,1 -how_busy,show me how long it will take to get a table at the red lobster restaurant?,parrot,avail,0 -no,hell nah,original,cancel,3 -thank_you,thanks,original,bye,2 -greeting,how's this going?,parrot,greet,4 -no,i am afraid that that is not the case,original,cancel,3 -yes,affirmitive,original,book,1 -thank_you,really great!,original,bye,2 -yes,accepted,original,book,1 -goodbye,farewell,original,bye,2 -yes,my answer is yes,parrot,book,1 -no,absolutely not,original,cancel,3 -goodbye,have to run,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -no,that's totally wrong!,original,cancel,3 -yes,obviously,parrot,book,1 -no,i'll pass,original,cancel,3 -how_busy,how long will a macaroni grill be for dinner,parrot,avail,0 -yes,ya,original,book,1 -no,that's negative,parrot,cancel,3 -thank_you,thanks very much,parrot,bye,2 -no,no,lambada,cancel,3 -goodbye,fairwell?,parrot,bye,2 -yes,approved,original,book,1 -greeting,how's the ai?,parrot,greet,4 -goodbye,bye bye,lambada,bye,2 -how_busy,tell me the time it takes me to sit at the octopus,parrot,avail,0 -goodbye,peace,original,bye,2 -no,hell nah,original,cancel,3 -thank_you,thanks for helping out,original,bye,2 -yes,yes,original,book,1 -no,i mean no,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -yes,approved,original,book,1 -goodbye,see ya,lambada,bye,2 -goodbye,afterward,parrot,bye,2 -greeting,how are things going,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -greeting,hi how's it going?,parrot,greet,4 -goodbye,great conversation,parrot,bye,2 -greeting,hi there,original,greet,4 -goodbye,adios ai,original,bye,2 -no,no!,original,cancel,3 -no,don't agree,parrot,cancel,3 -goodbye,farewell,original,bye,2 -no,invalid,original,cancel,3 -goodbye,later,original,bye,2 -goodbye,goodbye then,parrot,bye,2 -thank_you,thank you kindly,original,bye,2 -thank_you,i appeciate it,parrot,bye,2 -no,that's not true,original,cancel,3 -meeting_schedule,check my schedule for today's meetings,parrot,avail,0 -no,so that's no,parrot,cancel,3 -greeting,"hello, how are things going",lambada,greet,4 -goodbye,see ya,lambada,bye,2 -yes,"that's right, it's true",lambada,book,1 -calendar_update,make sure i put a ban on lunch on october 31,lambada,resched,5 -greeting,hiya!,original,greet,4 -no,erroneous,parrot,cancel,3 -schedule_meeting,can you schedule a meeting with steve at the office?,original,book,1 -greeting,good day,original,greet,4 -goodbye,take a break,parrot,bye,2 -meeting_schedule,tell me what i have booked for today?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -thank_you,you answered my question,parrot,bye,2 -greeting,salutations!,original,greet,4 -no,no this is false,parrot,cancel,3 -goodbye,tootles,original,bye,2 -how_busy,show me how long it'll take to get a table at red lobster?,parrot,avail,0 -no,but it's wrong,parrot,cancel,3 -goodbye,goodbye soon,lambada,bye,2 -date,what date will it be in three days?,parrot,avail,0 -yes,huh,parrot,book,1 -goodbye,have fun?,lambada,bye,2 -calendar_update,erase the friday event on my calendar,parrot,resched,5 -how_busy,is the wait long?,parrot,avail,0 -no,not that one,original,cancel,3 -yes,that checks out,original,book,1 -yes,exactly right,original,book,1 -how_busy,how long will the wait be in the restaurant,parrot,avail,0 -greeting,how's my day going?,parrot,greet,4 -meeting_schedule,how many meetings do i have scheduled between 10 and 3,original,avail,0 -how_busy,what do you think about the wait in olive garden?,parrot,avail,0 -no,negatory,original,cancel,3 -goodbye,bye bye,lambada,bye,2 -no,the answer is false,original,cancel,3 -no,i'd rather not,parrot,cancel,3 -greeting,well hello,original,greet,4 -no,hell nah,original,cancel,3 -goodbye,nice talk,lambada,bye,2 -no,not right,parrot,cancel,3 -greeting,hello,original,greet,4 -yes,i agree,original,book,1 -greeting,hey bs,lambada,greet,4 -goodbye,afterward,parrot,bye,2 -goodbye,buhbye now,lambada,bye,2 -greeting,what is new?,parrot,greet,4 -thank_you,thanks,original,bye,2 -greeting,aho,parrot,greet,4 -meeting_schedule,when's my meeting with roger? '',parrot,avail,0 -greeting,yo,original,greet,4 -no,we don't want that,parrot,cancel,3 -yes,yup,original,book,1 -greeting,hello ai,parrot,greet,4 -goodbye,it was good chatting,original,bye,2 -yes,positive,parrot,book,1 -yes,TRUE,original,book,1 -goodbye,catch you around,original,bye,2 -yes,TRUE,original,book,1 -yes,yes,original,book,1 -greeting,you good?,parrot,greet,4 -calendar,how's it going on friday?,parrot,avail,0 -no,certainly false,parrot,cancel,3 -no,"please, no",original,cancel,3 -no,that's negative,parrot,cancel,3 -no,that is false,original,cancel,3 -goodbye,take it easy!,original,bye,2 -yes,yes,original,book,1 -goodbye,goodbyes,parrot,bye,2 -yes,TRUE,original,book,1 -no,that's not right,original,cancel,3 -how_busy,how long will the wait be at the red lobster at 5pm?,parrot,avail,0 -meeting_schedule,i have meetings from 1 to 4 today?,parrot,avail,0 -how_busy,how busy will it be at 9 pm?,parrot,avail,0 -yes,10-Apr,original,book,1 -reminder_update,remember for tomorrow's meeting,parrot,resched,5 -goodbye,greetings,parrot,bye,2 -greeting,what's new,lambada,greet,4 -no,nothing good,parrot,cancel,3 -goodbye,i must say goodbye,original,bye,2 -no,"no, that is incorrect",original,cancel,3 -calendar_update,the day i'm supposed to be at the hospital is changed,parrot,resched,5 -goodbye,it was nice to have a conversation,parrot,bye,2 -goodbye,a good talk,parrot,bye,2 -yes,it seems true,parrot,book,1 -thank_you,i'm very grateful,parrot,bye,2 -yes,correct,original,book,1 -date,what will be the day?,parrot,avail,0 -date,what will be the date in 10 days?,parrot,avail,0 -no,that's certainly false,parrot,cancel,3 -yes,yes sir,original,book,1 -goodbye,farewell!,original,bye,2 -goodbye,thanks goodbye,parrot,bye,2 -calendar_update,event cancelled scheduled for this afternoon,parrot,resched,5 -thank_you,thanks!,original,bye,2 -goodbye,i've got to go,lambada,bye,2 -thank_you,i appreciate my help!,original,bye,2 -yes,right,parrot,book,1 -goodbye,im leaving,parrot,bye,2 -no,that's untrue,parrot,cancel,3 -yes,absolutely!,original,book,1 -greeting,aho,parrot,greet,4 -yes,exactly right,original,book,1 -goodbye,later!,original,bye,2 -how_busy,does the place get busy around 5?,parrot,avail,0 -thank_you,i'm grateful for the support,parrot,bye,2 -thank_you,i really appreciate my help,parrot,bye,2 -no,negative,original,cancel,3 -date,today?,parrot,avail,0 -how_busy,how busy is applebees at 6 pm,lambada,avail,0 -thank_you,i'm so very grateful,parrot,bye,2 -greeting,welcome,parrot,greet,4 -goodbye,adios!,original,bye,2 -how_busy,tell me the time it takes to get a table at the red lobster,parrot,avail,0 -no,FALSE,lambada,cancel,3 -thank_you,i'm grateful,original,bye,2 -thank_you,thank you for taking my time,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -greeting,heller,original,greet,4 -yes,yup,original,book,1 -greeting,how you are,original,greet,4 -goodbye,ill be leaving now,parrot,bye,2 -yes,positive,original,book,1 -goodbye,bye-bye,original,bye,2 -no,don't agree,parrot,cancel,3 -thank_you,i want to thank you ai,parrot,bye,2 -no,that's incorrect!,original,cancel,3 -no,this statement is completely false,parrot,cancel,3 -how_busy,how long is the wait at cheesecake factory,original,avail,0 -no,not good,parrot,cancel,3 -thank_you,appreciate it,original,bye,2 -yes,accepted,original,book,1 -thank_you,"great, thanks!",original,bye,2 -how_busy,is there a wait time at bjs right now?,original,avail,0 -no,not good idea,parrot,cancel,3 -no,so it's not possible,parrot,cancel,3 -reminder_update,please check the steak,parrot,resched,5 -cancel_reservation,get the salad canceled,parrot,cancel,3 -thank_you,i appreciate my help!,original,bye,2 -greeting,hi,original,greet,4 -no,"that would be ""no",original,cancel,3 -date,what date tomorrow?,parrot,avail,0 -calendar,tell me what my calendar looks like for march 23rd?,lambada,avail,0 -goodbye,bye!,original,bye,2 -goodbye,i have to run now,lambada,bye,2 -reminder_update,make reminder for 5pm to clean the house,lambada,resched,5 -greeting,ahoy,lambada,greet,4 -thank_you,thanks for answering,parrot,bye,2 -yes,10-Apr,original,book,1 -goodbye,regards,original,bye,2 -thank_you,thanks for all the help,parrot,bye,2 -yes,affirmitive,original,book,1 -how_busy,is mcdonalds busy?,parrot,avail,0 -greeting,heyo,original,greet,4 -greeting,hiya,original,greet,4 -thank_you,thanks for responding,parrot,bye,2 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -goodbye,just relax,parrot,bye,2 -how_busy,tell me how busy the macaroni grill will be around 8 pm,parrot,avail,0 -no,it's false,parrot,cancel,3 -no,negative,original,cancel,3 -greeting,aloha,original,greet,4 -no,nay,original,cancel,3 -yes,ya,original,book,1 -yes,facts,original,book,1 -greeting,hey there,original,greet,4 -schedule_meeting,please set up a meeting room for thursday at 5pm,lambada,book,1 -greeting,"hey, how are you",original,greet,4 -yes,certainly,parrot,book,1 -schedule_meeting,can i book a meeting room from 2:00 pm to 3:00 pm?,original,book,1 -yes,you are yes,lambada,book,1 -greeting,whats new,lambada,greet,4 -thank_you,appreciate the assistance,parrot,bye,2 -schedule_meeting,i would like you to help me set up a meeting,lambada,book,1 -no,absolutely not,original,cancel,3 -calendar,did i set an appointment for the doctor to my calendar?,lambada,avail,0 -goodbye,just relax,parrot,bye,2 -greeting,why hello?,original,greet,4 -no,no!,original,cancel,3 -goodbye,it's over,parrot,bye,2 -yes,right,parrot,book,1 -greeting,how's ai doing?,parrot,greet,4 -no,is not true?,parrot,cancel,3 -yes,absolutely!,original,book,1 -goodbye,goodbye later,parrot,bye,2 -greeting,how is life?,parrot,greet,4 -yes,do that?,original,book,1 -yes,positive,parrot,book,1 -yes,great,original,book,1 -yes,that is a fact,original,book,1 -greeting,how're you?,parrot,greet,4 -no,that's bad,parrot,cancel,3 -goodbye,say goodbye,parrot,bye,2 -calendar,is bowling in my calendar?,parrot,avail,0 -no,it's false,parrot,cancel,3 -calendar_update,get rid of tuesday the 5ths dinner,original,resched,5 -greeting,heyo,original,greet,4 -yes,oh yes,original,book,1 -reminder_update,have i forgotten?,parrot,resched,5 -schedule_meeting,do you need a meeting room for friday at 3pm?,lambada,book,1 -yes,definitely yes,parrot,book,1 -yes,absolutely,original,book,1 -yes,that is totally true,original,book,1 -goodbye,good seeing you,original,bye,2 -calendar,what's my schedule for thursday 14?,parrot,avail,0 -yes,ya,original,book,1 -date,today what date?,parrot,avail,0 -yes,i agree,original,book,1 -no,negative definitely,parrot,cancel,3 -how_busy,how busy is the restaurant,lambada,avail,0 -how_busy,how busy is chicory's grill before dinner,parrot,avail,0 -yes,yay,lambada,book,1 -greeting,aloha,original,greet,4 -thank_you,i appreciate this answer,parrot,bye,2 -greeting,how's the ai?,parrot,greet,4 -goodbye,adios!,original,bye,2 -how_busy,wait for dinner at red lobster?,parrot,avail,0 -greeting,hey,original,greet,4 -goodbye,buhbye,original,bye,2 -meeting_schedule,tell me if i have meetings from 3 to 6 pm i need to know,parrot,avail,0 -how_busy,how long does it take for a table at applebee's,parrot,avail,0 -greeting,how's my doing?,parrot,greet,4 -greeting,hiya!,original,greet,4 -meeting_schedule,when am i meeting roger?,lambada,avail,0 -greeting,how you are?,parrot,greet,4 -calendar,list the events in my calendar for march 23?,parrot,avail,0 -yes,thats right,original,book,1 -thank_you,thanks for the response,lambada,bye,2 -goodbye,regards,original,bye,2 -yes,agreed,original,book,1 -schedule_meeting,i need you to schedule a meeting with jason,lambada,book,1 -goodbye,greetings,parrot,bye,2 -greeting,hiya,original,greet,4 -no,"no, that's incorrect",original,cancel,3 -greeting,aho,parrot,greet,4 -greeting,hiya,original,greet,4 -calendar,was there an event on the calendar for an annual physical?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -no,so that's no,parrot,cancel,3 -yes,accept,parrot,book,1 -yes,that's absolutely true,parrot,book,1 -thank_you,"oh, thanks",original,bye,2 -goodbye,you're done,parrot,bye,2 -no,FALSE,lambada,cancel,3 -no,no?,parrot,cancel,3 -yes,i think that's true,original,book,1 -how_busy,how long should i wait to sit in the red rooster?,parrot,avail,0 -greeting,well hello,original,greet,4 -yes,facts,original,book,1 -no,that's wrong,original,cancel,3 -no,i don't think it's the right thing to do,parrot,cancel,3 -thank_you,thanks for responding,parrot,bye,2 -calendar,what's the tuesday calendar?,parrot,avail,0 -goodbye,im leaving,parrot,bye,2 -yes,that's right,original,book,1 -date,what month is it today??,parrot,avail,0 -how_busy,can i wait at the red lobster?,parrot,avail,0 -how_busy,can i know how long it takes to open the tequila bar?,parrot,avail,0 -greeting,hey fellow,parrot,greet,4 -greeting,heller,original,greet,4 -yes,just right,parrot,book,1 -schedule_meeting,i have to schedule a meeting,parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,thanks!,original,bye,2 -yes,i want that,parrot,book,1 -greeting,what's new,lambada,greet,4 -how_busy,how much time does it take to sit in the restaurant,parrot,avail,0 -yes,uh huh,original,book,1 -how_busy,how many minutes wait in the restaurant before you're seated,parrot,avail,0 -yes,TRUE,original,book,1 -greeting,how's everything?,parrot,greet,4 -thank_you,thanks so much!,original,bye,2 -no,false sure,parrot,cancel,3 -reminder_update,make sure to take out the trash in an hour,lambada,resched,5 -yes,affirmitive,original,book,1 -yes,confirmed,original,book,1 -goodbye,bye bye!,original,bye,2 -yes,indeed,original,book,1 -yes,absolutely!,original,book,1 -no,i'd prefer not to answer,parrot,cancel,3 -greeting,"hi, ai",original,greet,4 -yes,yes please,original,book,1 -goodbye,bye bye,lambada,bye,2 -yes,not false,parrot,book,1 -how_busy,say how busy it will be at the cheesecake factory?,parrot,avail,0 -goodbye,signing off,original,bye,2 -calendar,let me know what's on my calendar for march 17th,parrot,avail,0 -how_busy,how busy is ihop at 5 am,lambada,avail,0 -greeting,hello,original,greet,4 -thank_you,thanks for helping me today,parrot,bye,2 -yes,agreed,original,book,1 -goodbye,sayonara,original,bye,2 -yes,TRUE,original,book,1 -yes,10-Apr,original,book,1 -calendar,what is scheduled for february 22?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -date,date please,original,avail,0 -how_busy,how long will it take me to get seated at olive garden for dinner,lambada,avail,0 -greeting,why hello?,original,greet,4 -cancel_reservation,is it possible to cancel my reservations?,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -goodbye,ai goodbye,original,bye,2 -cancel_reservation,make sure my reservation for dinner has been cancelled,parrot,cancel,3 -yes,yeah that's right,lambada,book,1 -calendar_update,clear my calendar for march 1,parrot,resched,5 -goodbye,adios,original,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -meeting_schedule,meetings today,original,avail,0 -meeting_schedule,check my schedule today,parrot,avail,0 -thank_you,i'm thankful,original,bye,2 -yes,definitely yes,parrot,book,1 -date,date tomorrow,parrot,avail,0 -yes,is true,parrot,book,1 -greeting,how you are?,parrot,greet,4 -date,which day is next,parrot,avail,0 -no,nope not it,original,cancel,3 -goodbye,bye-bye,original,bye,2 -no,that isn't correct,original,cancel,3 -greeting,how's life treating you,parrot,greet,4 -thank_you,you've been great,parrot,bye,2 -date,what the day is?,parrot,avail,0 -goodbye,nice conversation today,parrot,bye,2 -yes,huh,parrot,book,1 -yes,yay,lambada,book,1 -cancel_reservation,cancel the reservation i made for 8 pm in black rock,parrot,cancel,3 -no,i mean no,parrot,cancel,3 -calendar_update,can you add exercise to my calendar?,parrot,resched,5 -calendar,show me what's on my calendar for march 18th?,parrot,avail,0 -goodbye,good conversation,parrot,bye,2 -thank_you,i am grateful,lambada,bye,2 -reminder_update,please remember me later,parrot,resched,5 -yes,affirmative,original,book,1 -cancel_reservation,joe and i are to cancel the reservation at zephers now,original,cancel,3 -no,"please, no",original,cancel,3 -calendar_update,cancel doctors appointment from my calendar,original,resched,5 -yes,that's correct,original,book,1 -date,current date,original,avail,0 -greeting,how's life?,parrot,greet,4 -yes,accepted,original,book,1 -meeting_schedule,please tell me how many meetings i have with pete?,parrot,avail,0 -goodbye,bye!,original,bye,2 -goodbye,great conversation,parrot,bye,2 -thank_you,you answered,parrot,bye,2 -no,not correct,parrot,cancel,3 -no,that's not true it's false,parrot,cancel,3 -yes,i just said that,parrot,book,1 -greeting,hello,original,greet,4 -greeting,hola,original,greet,4 -yes,so it's true,parrot,book,1 -no,that's not always true,parrot,cancel,3 -yes,ok,original,book,1 -how_busy,wait how long?,parrot,avail,0 -thank_you,really great!,original,bye,2 -how_busy,how long does it take to get a table at outback steakhouse?,parrot,avail,0 -yes,roger that,original,book,1 -reminder_update,remind me to pay my rent tomorrow at 6pm,parrot,resched,5 -reminder_update,come on please,parrot,resched,5 -no,nope,original,cancel,3 -greeting,what's my day like?,parrot,greet,4 -no,negative,original,cancel,3 -reminder_update,make a reminder please,parrot,resched,5 -reminder_update,let me be reminded?,parrot,resched,5 -no,negative,original,cancel,3 -greeting,heyo,original,greet,4 -no,negative certainly,parrot,cancel,3 -yes,is true,parrot,book,1 -yes,absolutely,original,book,1 -no,don't like that no,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -goodbye,farewell,original,bye,2 -greeting,let me know how you feel,parrot,greet,4 -no,it seems not,original,cancel,3 -no,nada,original,cancel,3 -greeting,good evening,original,greet,4 -greeting,hello,original,greet,4 -thank_you,you have made my life so much easier,lambada,bye,2 -greeting,whats up?,parrot,greet,4 -greeting,how've you been,original,greet,4 -greeting,hiya,original,greet,4 -yes,it's indeed true,original,book,1 -how_busy,how busy will chili be at five?,parrot,avail,0 -cancel_reservation,scrap that dinner reservation,original,cancel,3 -goodbye,"thanks for chatting, bye",lambada,bye,2 -no,no?,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -yes,perfect,parrot,book,1 -thank_you,awesome thanks,parrot,bye,2 -yes,ok,original,book,1 -greeting,aloha,original,greet,4 -thank_you,i appeciate it,parrot,bye,2 -yes,yes please,original,book,1 -greeting,how is everything going?,parrot,greet,4 -schedule_meeting,set up a meeting with frank at 2pm,original,book,1 -schedule_meeting,are any rooms available between 5 and 10 pm?,lambada,book,1 -greeting,hey fellow,parrot,greet,4 -no,negating,parrot,cancel,3 -yes,great,original,book,1 -date,date tomorrow?,parrot,avail,0 -reminder_update,i need a reminder,original,resched,5 -goodbye,buhbye,original,bye,2 -no,no?,parrot,cancel,3 -no,it's not correct,parrot,cancel,3 -reminder_update,how about a reminder,original,resched,5 -no,nothing good,parrot,cancel,3 -greeting,how's it going,lambada,greet,4 -date,"is it monday, tuesday, wednesday, thursday, friday, saturday, or sunday?",original,avail,0 -schedule_meeting,i need a meeting room between 11:30 and noon,lambada,book,1 -no,erroneous,parrot,cancel,3 -no,nope,original,cancel,3 -no,nay,original,cancel,3 -no,negation,parrot,cancel,3 -date,tell me the date of tomorrow?,parrot,avail,0 -yes,yeah,original,book,1 -goodbye,you're done,parrot,bye,2 -no,it's no,parrot,cancel,3 -reminder_update,remember to write this memo,parrot,resched,5 -how_busy,how long are the lines at cheesecake factory?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -greeting,aloha,original,greet,4 -date,what year?,parrot,avail,0 -yes,accept,parrot,book,1 -greeting,hiya!,original,greet,4 -goodbye,greetings,parrot,bye,2 -greeting,how's the situation?,parrot,greet,4 -how_busy,how long will i have to wait to get a table in the restaurant?,parrot,avail,0 -goodbye,later then,lambada,bye,2 -yes,good yes,lambada,book,1 -goodbye,bye-bye,original,bye,2 -no,nada,original,cancel,3 -yes,thats right,original,book,1 -meeting_schedule,when is this meeting?,parrot,avail,0 -goodbye,later goodbye,parrot,bye,2 -goodbye,it's nice to talk to you,parrot,bye,2 -thank_you,okay thanks,original,bye,2 -goodbye,i'm glad we got along,parrot,bye,2 -yes,it's logical,parrot,book,1 -no,that's bad,parrot,cancel,3 -no,that's no,parrot,cancel,3 -greeting,how's otc?,parrot,greet,4 -yes,confirm,original,book,1 -no,nope,original,cancel,3 -yes,TRUE,original,book,1 -yes,ok,original,book,1 -goodbye,later goodbye,parrot,bye,2 -schedule_meeting,can you schedule a meeting with damon for one?,parrot,book,1 -goodbye,good conversation,parrot,bye,2 -no,nope,original,cancel,3 -no,nada,original,cancel,3 -yes,uh-huh,original,book,1 -reminder_update,please remind me,parrot,resched,5 -calendar,show me my calendar?,parrot,avail,0 -greeting,how are you?,parrot,greet,4 -goodbye,im leaving,parrot,bye,2 -thank_you,it's my debt,parrot,bye,2 -greeting,heller,original,greet,4 -goodbye,i enjoy our chat,lambada,bye,2 -yes,right,parrot,book,1 -yes,certainly true,parrot,book,1 -goodbye,buhbye now,lambada,bye,2 -greeting,what's up?,parrot,greet,4 -yes,correct,original,book,1 -thank_you,thank you again,parrot,bye,2 -no,no no no,parrot,cancel,3 -cancel_reservation,please cancel my reservation for franklin in the outback,parrot,cancel,3 -goodbye,thanks goodbye,parrot,bye,2 -yes,definitely,original,book,1 -date,what year is tomorrow?,parrot,avail,0 -calendar_update,clear my entire schedule for april 1,original,resched,5 -reminder_update,remind me to put the clothes away,parrot,resched,5 -greeting,ahoy there,lambada,greet,4 -no,that's bad,parrot,cancel,3 -no,invalid,original,cancel,3 -goodbye,bye!,original,bye,2 -date,what date?,parrot,avail,0 -greeting,hola!,original,greet,4 -no,that's no,parrot,cancel,3 -date,tell me what's the date tomorrow?,parrot,avail,0 -yes,agreed,original,book,1 -no,certainly false,parrot,cancel,3 -goodbye,great talk with you,lambada,bye,2 -greeting,hello,original,greet,4 -how_busy,can you find out the waiting times for mr joes pizza?,original,avail,0 -yes,i guess,parrot,book,1 -greeting,how does life treat you?,parrot,greet,4 -yes,huh,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -yes,"yes, please",original,book,1 -yes,"yes, that is accurate",original,book,1 -yes,positive,original,book,1 -yes,obviously,parrot,book,1 -thank_you,thanks again,original,bye,2 -no,definitely not,original,cancel,3 -thank_you,your answer is appreciated,original,bye,2 -cancel_reservation,can you cancel black cherry reservation?,parrot,cancel,3 -goodbye,buhbye now,lambada,bye,2 -goodbye,goodbyes,parrot,bye,2 -no,"no, that is invalid",original,cancel,3 -no,there is no,parrot,cancel,3 -thank_you,the best,parrot,bye,2 -greeting,wassup,original,greet,4 -greeting,hey fellow,parrot,greet,4 -greeting,hola,original,greet,4 -yes,yeap,original,book,1 -how_busy,when is macaroni grill busy?,parrot,avail,0 -greeting,how are things with you,original,greet,4 -no,indeed it's false,parrot,cancel,3 -yes,"yes, that's true",lambada,book,1 -yes,im sure you're true,parrot,book,1 -goodbye,goodbye,original,bye,2 -thank_you,the best,parrot,bye,2 -thank_you,the best,parrot,bye,2 -date,tomorrow is the date,parrot,avail,0 -greeting,how's life?,parrot,greet,4 -goodbye,good bye,original,bye,2 -yes,uh-huh,original,book,1 -schedule_meeting,is there a meeting room available between one and two?,original,book,1 -goodbye,goodnight,original,bye,2 -calendar_update,can you remove an event from my calendar?,lambada,resched,5 -greeting,hi there,original,greet,4 -greeting,hey fellow,parrot,greet,4 -no,not that,original,cancel,3 -how_busy,how busy is chocolate milkshakes around 9,lambada,avail,0 -date,can you tell me the date of today?,parrot,avail,0 -yes,"yep, that's true",original,book,1 -no,that's a negative,original,cancel,3 -yes,absolutely!,original,book,1 -goodbye,cya later,original,bye,2 -how_busy,what time should i wait for caesar's steakhouse?,parrot,avail,0 -greeting,give me the details,parrot,greet,4 -reminder_update,please remember me again,parrot,resched,5 -date,what's today?,parrot,avail,0 -goodbye,ai goodbye,original,bye,2 -thank_you,i appreciate that,original,bye,2 -greeting,so how's everything?,parrot,greet,4 -yes,agreed,original,book,1 -yes,i'm voting for you,parrot,book,1 -calendar_update,on 22 of this month we need to clear our calendar so we can leave it open for mark to visit,parrot,resched,5 -yes,i agree,original,book,1 -no,negation,parrot,cancel,3 -no,not right?,parrot,cancel,3 -greeting,hey how's life,original,greet,4 -goodbye,see ya,lambada,bye,2 -no,negative,original,cancel,3 -greeting,whats new?,parrot,greet,4 -thank_you,my gratitude,parrot,bye,2 -goodbye,adios!,original,bye,2 -how_busy,how long will i have to wait for tequila bar,lambada,avail,0 -yes,i'll say yes,parrot,book,1 -yes,yup,original,book,1 -no,that is so false,original,cancel,3 -date,when will it be 10 days?,parrot,avail,0 -goodbye,it's time to say goodbye,parrot,bye,2 -no,that's not factual,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,is the cheesecake factory busy at 5 o'clock?,parrot,avail,0 -no,that's erroneous,parrot,cancel,3 -no,i'm saying no,parrot,cancel,3 -calendar,i must know what is currently on my calendar for friday the 1st,original,avail,0 -thank_you,I owe you one,parrot,bye,2 -no,that isn't correct,original,cancel,3 -no,naw,parrot,cancel,3 -goodbye,i really enjoyed talking with you,lambada,bye,2 -yes,okay,original,book,1 -greeting,salutations,parrot,greet,4 -goodbye,thank you for the great conversation bye,parrot,bye,2 -goodbye,goodnight,original,bye,2 -no,"no, that is not right",original,cancel,3 -no,negative sure,parrot,cancel,3 -no,yes that's false,lambada,cancel,3 -greeting,how's my feeling?,parrot,greet,4 -schedule_meeting,i need a room,parrot,book,1 -reminder_update,remind me to prepare for my meeting at 10 am,parrot,resched,5 -calendar,what are my dates on my calendar?,lambada,avail,0 -no,ill pass,original,cancel,3 -thank_you,thank you please,parrot,bye,2 -greeting,salutations,parrot,greet,4 -yes,ya,original,book,1 -goodbye,bye,original,bye,2 -greeting,salutations!,original,greet,4 -goodbye,thanks bye bye!,original,bye,2 -goodbye,tootles,original,bye,2 -schedule_meeting,i need an agenda,parrot,book,1 -cancel_reservation,how can i cancel a reservation in red robin?,parrot,cancel,3 -thank_you,your assistance is appreciated,parrot,bye,2 -greeting,welcome,parrot,greet,4 -greeting,hey bs,lambada,greet,4 -yes,good,parrot,book,1 -how_busy,how long will it take to wait in olive garden?,parrot,avail,0 -yes,TRUE,lambada,book,1 -meeting_schedule,do you know if i have any meetings set up with travis today?,original,avail,0 -goodbye,i'm out of this,parrot,bye,2 -how_busy,how long is the wait to get a table at yellow mill,lambada,avail,0 -meeting_schedule,meeting today,parrot,avail,0 -goodbye,adios!,original,bye,2 -thank_you,okay thank you,parrot,bye,2 -how_busy,how busy will angie be around 5 pm?,parrot,avail,0 -goodbye,ai goodbye,original,bye,2 -thank_you,you helped me today,parrot,bye,2 -no,definitely not,original,cancel,3 -yes,TRUE,lambada,book,1 -thank_you,you've tried,parrot,bye,2 -yes,facts,original,book,1 -greeting,how've you been,original,greet,4 -date,what's my date?,parrot,avail,0 -no,i am saying no,original,cancel,3 -thank_you,very grateful,parrot,bye,2 -how_busy,how long will i have to wait for a table in a restaurant?,parrot,avail,0 -yes,huh,parrot,book,1 -no,no thanks,original,cancel,3 -no,please no,parrot,cancel,3 -thank_you,thanks for that!,original,bye,2 -yes,facts,original,book,1 -no,i meant no,original,cancel,3 -thank_you,thankyou,parrot,bye,2 -no,this is a hard no,parrot,cancel,3 -no,negative certainly,parrot,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -no,that's not it,parrot,cancel,3 -goodbye,just relax,parrot,bye,2 -no,invalid,original,cancel,3 -goodbye,goodbye my friend,parrot,bye,2 -yes,right,parrot,book,1 -thank_you,my thanks,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -thank_you,you're welcome,parrot,bye,2 -greeting,hola,original,greet,4 -no,it is false,original,cancel,3 -date,today?,parrot,avail,0 -greeting,how are things going? hello,parrot,greet,4 -greeting,heyo,original,greet,4 -goodbye,peace,original,bye,2 -thank_you,thankyou,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -yes,correct,original,book,1 -goodbye,take it easy!,original,bye,2 -goodbye,goodbyes soon,parrot,bye,2 -how_busy,is the immaculate house busy at 10pm?,parrot,avail,0 -how_busy,how long is the wait at dr chuck's,lambada,avail,0 -no,naw,parrot,cancel,3 -how_busy,how long will the wait be at white taters,lambada,avail,0 -yes,definitely,original,book,1 -no,that's no way,parrot,cancel,3 -yes,indeed,parrot,book,1 -thank_you,i'm grateful,original,bye,2 -no,negating,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -no,no?,parrot,cancel,3 -meeting_schedule,meetings today,original,avail,0 -goodbye,it's over,parrot,bye,2 -goodbye,goodbye thank you,parrot,bye,2 -schedule_meeting,can you set up a meeting with tom at 3pm?,lambada,book,1 -greeting,how things go?,parrot,greet,4 -no,that's not true,original,cancel,3 -goodbye,goodbyes,parrot,bye,2 -calendar,read my calendar,parrot,avail,0 -calendar_update,i need to put my appointment for the dentist on the calendar for tomorrow,lambada,resched,5 -greeting,what's up?,parrot,greet,4 -no,it's overwhelmingly wrong,parrot,cancel,3 -how_busy,is the mexican place crowded at night?,original,avail,0 -greeting,hiya!,original,greet,4 -calendar_update,please remove this event from my calendar,parrot,resched,5 -thank_you,thank you for making my life easier,parrot,bye,2 -no,no good,original,cancel,3 -goodbye,afterward,parrot,bye,2 -meeting_schedule,meetings today,original,avail,0 -greeting,what is new?,parrot,greet,4 -goodbye,i'm out,parrot,bye,2 -no,"no, you are wrong",original,cancel,3 -yes,this is true,lambada,book,1 -no,no!,original,cancel,3 -how_busy,what time does it take to wait in the cheese cake factory?,parrot,avail,0 -greeting,heller,original,greet,4 -no,that's totally wrong!,original,cancel,3 -greeting,hey yai,lambada,greet,4 -no,i'll say no,parrot,cancel,3 -date,what's the date now?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -yes,absolutely!,original,book,1 -goodbye,buhbye,original,bye,2 -greeting,hey what's up?,parrot,greet,4 -how_busy,will i be able to get a table at chili's around 6pm,lambada,avail,0 -no,naw,original,cancel,3 -thank_you,you've helped,parrot,bye,2 -thank_you,thank a bunch,original,bye,2 -no,"no, it's not",lambada,cancel,3 -date,what's the next date?,parrot,avail,0 -date,today?,parrot,avail,0 -greeting,how's idy?,parrot,greet,4 -how_busy,how long will the wait be for white taters?,parrot,avail,0 -no,no way!,original,cancel,3 -greeting,how's idy?,parrot,greet,4 -cancel_reservation,can you cancel the reservation?,lambada,cancel,3 -goodbye,bye-bye,original,bye,2 -no,negative,original,cancel,3 -yes,"yeah, that's right",original,book,1 -thank_you,glad you helped me,parrot,bye,2 -goodbye,fairwell,original,bye,2 -no,no it wouldn't be true,parrot,cancel,3 -thank_you,again thank you,parrot,bye,2 -date,tell me what day tomorrow is?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -greeting,hello,original,greet,4 -goodbye,bye-bye,original,bye,2 -goodbye,good-bye,parrot,bye,2 -yes,that will be true,original,book,1 -date,what will the day be?,lambada,avail,0 -goodbye,bye bye!,original,bye,2 -yes,"yep, i will give that a go",lambada,book,1 -how_busy,list the wait times for tiburon beer?,parrot,avail,0 -thank_you,thank you so much for my help,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -yes,i guess,parrot,book,1 -yes,is a real statement,parrot,book,1 -greeting,salutations,parrot,greet,4 -how_busy,waiting at cheeseburgers?,parrot,avail,0 -yes,so it's true,parrot,book,1 -no,FALSE,original,cancel,3 -goodbye,good call,parrot,bye,2 -reminder_update,remind me to exercise,original,resched,5 -thank_you,you were so nice,parrot,bye,2 -no,negatory?,parrot,cancel,3 -no,i'd rather not answer it,parrot,cancel,3 -how_busy,does the grocer have a lot of busy people around the noon time?,parrot,avail,0 -no,naw,original,cancel,3 -yes,affirmitive,original,book,1 -cancel_reservation,i want to cancel my reservation for fred in red robin,parrot,cancel,3 -date,can you tell me what date it will be in eight days?,parrot,avail,0 -schedule_meeting,i want a meeting with daniel,parrot,book,1 -thank_you,thanks for coming by,lambada,bye,2 -yes,positive,parrot,book,1 -cancel_reservation,i would like to cancel my reservation for 5 at red robin,parrot,cancel,3 -no,naw,original,cancel,3 -greeting,what i feel?,parrot,greet,4 -no,would be no?,parrot,cancel,3 -date,in 14 days?,parrot,avail,0 -goodbye,i'll go,parrot,bye,2 -yes,correct,original,book,1 -greeting,heller,original,greet,4 -goodbye,bye for now,original,bye,2 -no,please disagree,lambada,cancel,3 -goodbye,adios,original,bye,2 -calendar,is there an annual physical?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -no,nothing,parrot,cancel,3 -greeting,"hello, friend",original,greet,4 -thank_you,thank you for that response,original,bye,2 -goodbye,peace out,original,bye,2 -no,no that isn't right,original,cancel,3 -calendar_update,cancel a dinner i planned on my calendar,parrot,resched,5 -greeting,hey how's ot,lambada,greet,4 -meeting_schedule,when is my appointment with dr robin scheduled?,parrot,avail,0 -greeting,salutations!,original,greet,4 -no,that's erroneous,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -no,the negator,parrot,cancel,3 -goodbye,bye bye!,original,bye,2 -greeting,yo,original,greet,4 -calendar,can you tell me anything about march 29?,parrot,avail,0 -date,date tomorrow?,parrot,avail,0 -date,what today?,parrot,avail,0 -yes,right,parrot,book,1 -greeting,how's otc?,parrot,greet,4 -calendar_update,a date added to my calendar for the week of may 14,parrot,resched,5 -cancel_reservation,please cancel my booking for 5 at the loft,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -how_busy,how much time does the restaurant take to eat?,parrot,avail,0 -no,nothing,parrot,cancel,3 -schedule_meeting,plan a meeting with saul at noon,parrot,book,1 -goodbye,goodbye,original,bye,2 -how_busy,is there waiting time at the tsunami grill?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -calendar,do you have any activities planned for march 4th?,parrot,avail,0 -no,that is incorrect,original,cancel,3 -yes,okay,original,book,1 -greeting,"hello, good morning",lambada,greet,4 -no,that is untrue,original,cancel,3 -greeting,hola,original,greet,4 -no,most definitely false,parrot,cancel,3 -date,what year?,parrot,avail,0 -meeting_schedule,meetings today,original,avail,0 -greeting,hiya!,original,greet,4 -goodbye,it's nice to talk to you about this,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -reminder_update,set a reminder,original,resched,5 -meeting_schedule,when's my meeting?,parrot,avail,0 -goodbye,talk later,original,bye,2 -thank_you,okay thanks,original,bye,2 -no,negative,original,cancel,3 -yes,you got it,parrot,book,1 -how_busy,how long will i have to wait at the red robin at 6 p,parrot,avail,0 -thank_you,thank you for trying,parrot,bye,2 -no,please no,parrot,cancel,3 -yes,TRUE,original,book,1 -how_busy,how many people are there at chili at 7 pm,parrot,avail,0 -yes,yeap,original,book,1 -greeting,you're all right?,parrot,greet,4 -no,that's not really the case,parrot,cancel,3 -yes,right,parrot,book,1 -no,i prefer not,parrot,cancel,3 -greeting,how's everything?,parrot,greet,4 -goodbye,nice talk,lambada,bye,2 -greeting,ahoy,lambada,greet,4 -yes,yup,original,book,1 -goodbye,maybe next time,parrot,bye,2 -goodbye,i'm outta here!,original,bye,2 -greeting,heyo,original,greet,4 -yes,you are correct,original,book,1 -no,no way,original,cancel,3 -goodbye,i’m leaving-goodbye!,original,bye,2 -yes,absolutely!,original,book,1 -greeting,hey bs,lambada,greet,4 -greeting,hola!,original,greet,4 -no,absolutely not,original,cancel,3 -greeting,how's ayi doing?,parrot,greet,4 -greeting,why hello?,original,greet,4 -greeting,hi,original,greet,4 -yes,a fact,parrot,book,1 -goodbye,sign off,parrot,bye,2 -greeting,good day,original,greet,4 -cancel_reservation,i don't need a reservation anymore,parrot,cancel,3 -yes,uh-huh,original,book,1 -schedule_meeting,and i want to meet with john at 6pm,parrot,book,1 -goodbye,ill leave now,parrot,bye,2 -yes,certainly,parrot,book,1 -no,FALSE,original,cancel,3 -thank_you,very grateful,parrot,bye,2 -cancel_reservation,you can cancel my lunch reservation,parrot,cancel,3 -yes,of course,original,book,1 -calendar,is there a date on my calendar that i have to pay for the surgery?,parrot,avail,0 -goodbye,ai goodbye,original,bye,2 -no,it's false,parrot,cancel,3 -no,no?,parrot,cancel,3 -no,that's untrue,parrot,cancel,3 -greeting,so what's up?,parrot,greet,4 -greeting,hello there,original,greet,4 -yes,yeap,original,book,1 -yes,that is a fact,original,book,1 -greeting,tell me how you're doing,parrot,greet,4 -schedule_meeting,please schedule a meeting,parrot,book,1 -date,what day?,parrot,avail,0 -greeting,yo,original,greet,4 -goodbye,the talk was nice,lambada,bye,2 -reminder_update,let me remember,parrot,resched,5 -greeting,yo,original,greet,4 -goodbye,see ya,original,bye,2 -greeting,bonjour,original,greet,4 -yes,yeah yeah,lambada,book,1 -how_busy,are the restaurants full when you're eating?,parrot,avail,0 -no,negation,parrot,cancel,3 -no,negating,parrot,cancel,3 -thank_you,i'm pleased with my answer,parrot,bye,2 -yes,uh huh,original,book,1 -no,is a lie?,parrot,cancel,3 -thank_you,"oh, thanks",original,bye,2 -reminder_update,make a reminder to pay my taxes,lambada,resched,5 -thank_you,thank you!,original,bye,2 -no,nothing,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -yes,yeap,original,book,1 -goodbye,a good talk,parrot,bye,2 -greeting,hey,original,greet,4 -goodbye,see ya,original,bye,2 -date,what was my date today?,parrot,avail,0 -goodbye,"syonara, ai device!",original,bye,2 -how_busy,how busy is mcdonald's at lunch?,parrot,avail,0 -goodbye,i'll go,parrot,bye,2 -how_busy,how busy will cheesecake factory be at 8 pm,lambada,avail,0 -goodbye,goodbye to you,original,bye,2 -greeting,how are you doing,original,greet,4 -calendar,check my calendar for saturday,original,avail,0 -yes,that also makes sense,parrot,book,1 -thank_you,appreciated,original,bye,2 -meeting_schedule,check out what meetings i've scheduled,parrot,avail,0 -how_busy,the wait time at michigan steakhouse?,parrot,avail,0 -yes,yes sir,original,book,1 -no,it's not correct,parrot,cancel,3 -thank_you,thanks!,original,bye,2 -goodbye,bye bye,lambada,bye,2 -goodbye,afterward,parrot,bye,2 -how_busy,list the wait times at the outback steakhouse?,parrot,avail,0 -yes,right,parrot,book,1 -greeting,how is idy doing?,parrot,greet,4 -no,the answer is no,original,cancel,3 -yes,absolutely correct,original,book,1 -yes,certainly,parrot,book,1 -yes,obviously,parrot,book,1 -date,can you tell me the date for the next four days,parrot,avail,0 -greeting,how is my situation?,parrot,greet,4 -no,say negative,parrot,cancel,3 -greeting,what am i feeling?,lambada,greet,4 -yes,i want that,parrot,book,1 -reminder_update,remind me again please,original,resched,5 -yes,all right,parrot,book,1 -no,not true,original,cancel,3 -meeting_schedule,am i scheduled for any meetings between noon and one,original,avail,0 -no,that's false,original,cancel,3 -goodbye,see ya,original,bye,2 -how_busy,how busy will oompa be at lunch?,parrot,avail,0 -greeting,hey,original,greet,4 -goodbye,goodbye ai,parrot,bye,2 -yes,confirmed,original,book,1 -yes,affirmative,original,book,1 -yes,correct,original,book,1 -greeting,"hello, how are things",original,greet,4 -no,negatory?,parrot,cancel,3 -yes,thats right,original,book,1 -how_busy,how long do i have to wait for a table at macaroni and cheese?,parrot,avail,0 -no,indeed it's false,parrot,cancel,3 -yes,that'd be great,parrot,book,1 -no,negation,parrot,cancel,3 -yes,"yes, please",original,book,1 -no,that is incorrect,original,cancel,3 -greeting,hello bs,parrot,greet,4 -no,would be a lie,parrot,cancel,3 -no,no?,parrot,cancel,3 -no,it's very wrong,parrot,cancel,3 -greeting,heyo,original,greet,4 -thank_you,i'm grateful,original,bye,2 -how_busy,i'd like to know how busy the chili is between 5 and 9,parrot,avail,0 -no,negating,parrot,cancel,3 -thank_you,my sincere gratitude,parrot,bye,2 -date,today?,parrot,avail,0 -yes,"yes, that's accurate",original,book,1 -goodbye,let me see you around,parrot,bye,2 -how_busy,is the cheesecake factory open at 7 am?,parrot,avail,0 -date,what the day is today?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -schedule_meeting,does scheduling a meeting help?,parrot,book,1 -calendar_update,i must set a date for the lab for tomorrow,parrot,resched,5 -thank_you,thank a bunch,original,bye,2 -greeting,and how's it going,parrot,greet,4 -greeting,how're you today?,parrot,greet,4 -calendar_update,i have to change my calendar for may 29th,parrot,resched,5 -yes,absolutely,original,book,1 -no,naw,original,cancel,3 -date,can you give me a date to expect in 24 hours?,lambada,avail,0 -goodbye,catch you around,original,bye,2 -schedule_meeting,how many people can go to the meeting?,parrot,book,1 -no,FALSE,lambada,cancel,3 -yes,that checks out,original,book,1 -greeting,hey there!,original,greet,4 -how_busy,how busy would it be at 6 pm,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -calendar,what's the tuesday calendar?,parrot,avail,0 -no,negative,original,cancel,3 -no,invalid,original,cancel,3 -goodbye,my friend,parrot,bye,2 -yes,of course,original,book,1 -how_busy,how long do i have to wait before i can go to the wilson steakhouse,lambada,avail,0 -no,i don't think that's right,lambada,cancel,3 -greeting,hola,original,greet,4 -greeting,how's my doing?,parrot,greet,4 -no,that's negative,parrot,cancel,3 -yes,it's gonna be a yes,lambada,book,1 -goodbye,for now,parrot,bye,2 -no,nope not it,original,cancel,3 -greeting,how is idy?,parrot,greet,4 -greeting,how does ai do?,parrot,greet,4 -yes,i agree,original,book,1 -goodbye,good bye,original,bye,2 -yes,yay,lambada,book,1 -cancel_reservation,can i cancel my reservation for dinner on saturday please,parrot,cancel,3 -greeting,how's my feeling?,parrot,greet,4 -goodbye,bye!,original,bye,2 -goodbye,this conversation was wonderful,parrot,bye,2 -goodbye,cya later,original,bye,2 -calendar_update,clear my calendar on feb 28,original,resched,5 -yes,absolutely,original,book,1 -date,today?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -goodbye,very nice conversation,parrot,bye,2 -yes,i think you're right,parrot,book,1 -yes,"that's right, it's true",lambada,book,1 -cancel_reservation,cancel my dinner reservation,lambada,cancel,3 -no,i believe it's wrong,parrot,cancel,3 -reminder_update,remind me later,original,resched,5 -greeting,how's idy doing?,parrot,greet,4 -yes,yes sir,original,book,1 -greeting,salutations,parrot,greet,4 -greeting,salutations!,original,greet,4 -date,current day,parrot,avail,0 -goodbye,peace out!,original,bye,2 -greeting,"hi, ai",original,greet,4 -thank_you,good job,lambada,bye,2 -cancel_reservation,scrap the dinner reservation,parrot,cancel,3 -yes,all right,parrot,book,1 -goodbye,later gater,original,bye,2 -calendar,do i have my nephew's birthday on november 10th?,parrot,avail,0 -goodbye,good luck later,parrot,bye,2 -thank_you,you answered,parrot,bye,2 -how_busy,what's the wait?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -date,what's today,original,avail,0 -thank_you,your assistance is appreciated,parrot,bye,2 -yes,"yes, please",original,book,1 -greeting,heyo,original,greet,4 -greeting,how's otc?,parrot,greet,4 -yes,absolutely,original,book,1 -no,negation,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -greeting,salutation,parrot,greet,4 -goodbye,later!,original,bye,2 -no,not right,parrot,cancel,3 -thank_you,"oh, thanks",original,bye,2 -thank_you,"great, thanks!",original,bye,2 -yes,absolutely,original,book,1 -no,nay,original,cancel,3 -greeting,how're you?,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -greeting,whats up?,parrot,greet,4 -no,that's a wrong answer?,parrot,cancel,3 -date,what is it today?,lambada,avail,0 -greeting,what do you think about this?,parrot,greet,4 -thank_you,thankyou,parrot,bye,2 -yes,good,parrot,book,1 -yes,a fact,parrot,book,1 -goodbye,i'm leaving,parrot,bye,2 -goodbye,i'm leaving,parrot,bye,2 -no,negatory?,parrot,cancel,3 -goodbye,later,original,bye,2 -goodbye,and then goodbye,parrot,bye,2 -how_busy,how busy is the olive garden around 730,parrot,avail,0 -date,what is tomorrow?,parrot,avail,0 -greeting,aloha,original,greet,4 -yes,definitely yes,parrot,book,1 -reminder_update,what's a reminder,parrot,resched,5 -yes,indeed,original,book,1 -thank_you,many thank,original,bye,2 -yes,oh-huh,parrot,book,1 -date,what year?,parrot,avail,0 -yes,all right,parrot,book,1 -greeting,hello there,original,greet,4 -yes,that is a true statement,lambada,book,1 -calendar_update,delete any event on my calendar that is set for wednesday of next week,parrot,resched,5 -yes,yes i am,original,book,1 -thank_you,you were so nice,parrot,bye,2 -no,nothing good,parrot,cancel,3 -yes,yep,original,book,1 -no,no that is wrong,original,cancel,3 -no,not correct,parrot,cancel,3 -no,not that one,original,cancel,3 -greeting,whats up?,parrot,greet,4 -no,negation,parrot,cancel,3 -yes,obviously,parrot,book,1 -goodbye,adios,original,bye,2 -no,"no, definitely not",original,cancel,3 -goodbye,now i have to say goodbye,parrot,bye,2 -meeting_schedule,meetings today,original,avail,0 -yes,yeap,original,book,1 -how_busy,is mr joe's steakhouse crowded during dinner?,parrot,avail,0 -calendar_update,delete the hair appointment i scheduled on may 1st,parrot,resched,5 -no,that's totally wrong,parrot,cancel,3 -no,that's not the case,parrot,cancel,3 -goodbye,"goodbye, ai assistant",original,bye,2 -no,not correct,parrot,cancel,3 -cancel_reservation,give me a cancelation for my reservation for dave at red robin,lambada,cancel,3 -no,negatory?,parrot,cancel,3 -reminder_update,make a reminder to check the cat litter,lambada,resched,5 -no,is not true?,parrot,cancel,3 -how_busy,how long will it take to sit at red lobster?,parrot,avail,0 -yes,10-Apr,original,book,1 -how_busy,how long will it take to sit in this restaurant?,parrot,avail,0 -yes,that's true,original,book,1 -yes,affirmative,original,book,1 -yes,it's logical,parrot,book,1 -yes,yeap,original,book,1 -yes,of course,original,book,1 -no,invalid,original,cancel,3 -greeting,salutation,parrot,greet,4 -goodbye,nice chat today,lambada,bye,2 -greeting,how're you doing,original,greet,4 -date,what day?,parrot,avail,0 -no,please do not agree,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -thank_you,merci beaucoup,original,bye,2 -date,in 8 days?,parrot,avail,0 -goodbye,bye now,original,bye,2 -no,that's totally false,parrot,cancel,3 -date,what date today?,parrot,avail,0 -calendar,can you tell me what is on my calendar for march 31?,parrot,avail,0 -thank_you,thanks please,original,bye,2 -no,"no, it's not",lambada,cancel,3 -yes,"yes, that is factual",original,book,1 -greeting,whats new?,parrot,greet,4 -no,naw,parrot,cancel,3 -greeting,hi there alexa,original,greet,4 -greeting,bonjour,original,greet,4 -yes,positive,parrot,book,1 -no,negative sure,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -no,negative,original,cancel,3 -yes,that is a fact,original,book,1 -thank_you,i'm grateful,original,bye,2 -reminder_update,remind me later,original,resched,5 -yes,that's all right,parrot,book,1 -reminder_update,remind me later,original,resched,5 -greeting,why hello?,original,greet,4 -how_busy,what's the average wait time at the cheese cake factory?,parrot,avail,0 -how_busy,please tell me what's the wait?,parrot,avail,0 -reminder_update,make a reminder,parrot,resched,5 -how_busy,canadian grill at 6pm?,parrot,avail,0 -cancel_reservation,"i made a reservation for chris at tony's, please cancel it",original,cancel,3 -yes,a fact,parrot,book,1 -greeting,hello siri,original,greet,4 -goodbye,bye!,original,bye,2 -goodbye,"thanks, bye",original,bye,2 -yes,you are not wrong about that,original,book,1 -goodbye,later!,original,bye,2 -no,that's completely wrong,parrot,cancel,3 -goodbye,good chatting with you,lambada,bye,2 -goodbye,just relax,parrot,bye,2 -date,today is what date,original,avail,0 -meeting_schedule,i need to know if i have meetings with mark,parrot,avail,0 -how_busy,what is typical time to sit in this restaurant,parrot,avail,0 -calendar_update,this month we need to clear our calendar so we can leave it open for mark to visit,parrot,resched,5 -yes,good,parrot,book,1 -thank_you,your response was good,parrot,bye,2 -greeting,how's ai feeling?,parrot,greet,4 -greeting,"hey, ai",original,greet,4 -greeting,hello,original,greet,4 -yes,of course,original,book,1 -goodbye,fairwell?,parrot,bye,2 -no,don't like that,parrot,cancel,3 -no,it's not right,parrot,cancel,3 -no,not right?,parrot,cancel,3 -how_busy,can you tell me how busy the restaurant is at 5 pm?,parrot,avail,0 -calendar_update,erase jeff's meeting from my calendar,parrot,resched,5 -greeting,yo,original,greet,4 -calendar_update,add my dentist appointment to the calendar,original,resched,5 -goodbye,goodbye,original,bye,2 -date,what day is it today,parrot,avail,0 -greeting,you good?,parrot,greet,4 -yes,perfect,parrot,book,1 -goodbye,goodbye now,parrot,bye,2 -yes,that is correct,original,book,1 -yes,okay,original,book,1 -goodbye,bye,original,bye,2 -no,definitely not,original,cancel,3 -reminder_update,set a reminder for my taxes on thursday,parrot,resched,5 -goodbye,good luck,lambada,bye,2 -no,invalid,original,cancel,3 -goodbye,be careful then,lambada,bye,2 -thank_you,thankyou,parrot,bye,2 -no,nay,original,cancel,3 -yes,it's logical,parrot,book,1 -schedule_meeting,please schedule a meeting,parrot,book,1 -thank_you,i'm happy you've helped me,parrot,bye,2 -greeting,what's new,lambada,greet,4 -meeting_schedule,can you list the dates of my meeting with joe?,parrot,avail,0 -thank_you,i want you to give me the aid i need,lambada,bye,2 -goodbye,great talk,lambada,bye,2 -yes,"yes, that is factual",original,book,1 -schedule_meeting,whether or not i can reserve a meeting room between 12 and 1pm,parrot,book,1 -how_busy,how long will i have to wait to be seated at macy's,parrot,avail,0 -goodbye,peace,original,bye,2 -no,that would be no,lambada,cancel,3 -goodbye,bye,original,bye,2 -thank_you,your answer was a delight,parrot,bye,2 -yes,that is a yes,original,book,1 -yes,okay,original,book,1 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -how_busy,i need to know how busy the olive garden is at 6 pm,parrot,avail,0 -goodbye,sayonara ,parrot,bye,2 -yes,ya,original,book,1 -no,that's totally wrong,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -yes,yeah,original,book,1 -thank_you,thanks for that response,original,bye,2 -greeting,what's up?,parrot,greet,4 -no,nothing good,parrot,cancel,3 -how_busy,tell me the average wait time at chris brown's steak house?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -no,nada,original,cancel,3 -goodbye,see ya,lambada,bye,2 -goodbye,fairwell?,parrot,bye,2 -goodbye,tootles,original,bye,2 -thank_you,thank you for the thanks,parrot,bye,2 -reminder_update,set a reminder for lunch at 10 am,parrot,resched,5 -reminder_update,let me remember,parrot,resched,5 -schedule_meeting,i have to set up a meeting with jane for 3pm,parrot,book,1 -thank_you,i'm thankful,original,bye,2 -no,that's no,parrot,cancel,3 -goodbye,i'm going,parrot,bye,2 -goodbye,ai goodbye,original,bye,2 -date,is the date?,parrot,avail,0 -no,i disagree,parrot,cancel,3 -yes,thats right,original,book,1 -yes,indeed,parrot,book,1 -thank_you,i'm glad you responded,parrot,bye,2 -calendar,know what's on my calendar for march 15th,lambada,avail,0 -reminder_update,please remember me,parrot,resched,5 -how_busy,how busy is iman at 5:30,lambada,avail,0 -date,what is today?,original,avail,0 -greeting,how's everything,original,greet,4 -thank_you,thankyou,parrot,bye,2 -thank_you,thanks for my time,parrot,bye,2 -yes,approved,original,book,1 -greeting,how's my family?,parrot,greet,4 -meeting_schedule,when is the meeting?,parrot,avail,0 -no,no please,parrot,cancel,3 -schedule_meeting,can you schedule a meeting with mark at noon?,lambada,book,1 -thank_you,thank you again,parrot,bye,2 -yes,it's a fact,parrot,book,1 -no,invalid,original,cancel,3 -goodbye,adios ai,original,bye,2 -goodbye,farewell!,original,bye,2 -how_busy,the wait to get into the restaurant?,parrot,avail,0 -goodbye,"later, goodbye",lambada,bye,2 -greeting,ahoy,lambada,greet,4 -greeting,how did you feel?,parrot,greet,4 -greeting,greetings to you,original,greet,4 -greeting,how's my treatment?,parrot,greet,4 -yes,ok,original,book,1 -calendar,display my calendar,lambada,avail,0 -yes,correct,original,book,1 -no,that is incorrect,original,cancel,3 -goodbye,goodbyes,parrot,bye,2 -no,absolutely false,parrot,cancel,3 -thank_you,you answered,parrot,bye,2 -yes,great,original,book,1 -thank_you,thanks!,original,bye,2 -yes,sure,original,book,1 -thank_you,appreciate the support,parrot,bye,2 -goodbye,goodnight,original,bye,2 -yes,absolutely!,original,book,1 -goodbye,adios!,original,bye,2 -goodbye,buhbye now,lambada,bye,2 -yes,you're right,original,book,1 -yes,i'm sure it was done,parrot,book,1 -how_busy,how busy is jiro at lunch time?,parrot,avail,0 -greeting,bonjour,original,greet,4 -no,nada,original,cancel,3 -reminder_update,maybe a reminder?,parrot,resched,5 -yes,oh-huh,parrot,book,1 -yes,"yup, that's correct",lambada,book,1 -cancel_reservation,i have to cancel my reservation for nugget tom dallas,parrot,cancel,3 -no,invalid,original,cancel,3 -yes,great,original,book,1 -goodbye,sayonara,original,bye,2 -greeting,are you good?,original,greet,4 -no,nope,original,cancel,3 -yes,certainly,parrot,book,1 -reminder_update,can you set up a reminder?,lambada,resched,5 -greeting,how's my day?,parrot,greet,4 -date,date tomorrow?,parrot,avail,0 -thank_you,many thank,original,bye,2 -yes,yeah,original,book,1 -meeting_schedule,can you list the dates for the homer meeting?,parrot,avail,0 -yes,yes that's right,lambada,book,1 -cancel_reservation,call my reservation canceled,lambada,cancel,3 -reminder_update,please remember me,parrot,resched,5 -yes,i think that's right,parrot,book,1 -meeting_schedule,can you list the schedule of the meeting today?,parrot,avail,0 -yes,sure,original,book,1 -yes,that is true,lambada,book,1 -no,it's very false,parrot,cancel,3 -no,naw,original,cancel,3 -how_busy,can you tell me what the wait is like at michel's currently?,lambada,avail,0 -thank_you,awesome thanks,parrot,bye,2 -greeting,how's life treating you,parrot,greet,4 -date,tell me what day it's,parrot,avail,0 -how_busy,is mcdonalds busy?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -thank_you,and i'm grateful,parrot,bye,2 -greeting,well hello,original,greet,4 -no,FALSE,original,cancel,3 -no,i disagree with that,lambada,cancel,3 -greeting,hello what's happening,parrot,greet,4 -thank_you,thanks so much i appreciate it,parrot,bye,2 -no,FALSE,lambada,cancel,3 -yes,"that is true, yes",original,book,1 -how_busy,how long would it take to get a table at the red lobster,lambada,avail,0 -no,that's erroneous,parrot,cancel,3 -how_busy,how long will it take to get a table at red lobster?,parrot,avail,0 -yes,exactly right,original,book,1 -greeting,aho,parrot,greet,4 -greeting,whats new,lambada,greet,4 -greeting,how's that hanging?,parrot,greet,4 -goodbye,adios,original,bye,2 -meeting_schedule,please let me know if i have a meeting with stan,parrot,avail,0 -no,that's inaccurate,original,cancel,3 -yes,agreed,original,book,1 -greeting,hey what's up?,parrot,greet,4 -yes,can we please?,original,book,1 -no,no?,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -thank_you,i am very grateful,original,bye,2 -no,negation,parrot,cancel,3 -how_busy,can you tell me how busy the cheesecake factory will be at 6am?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -no,no no thanks,parrot,cancel,3 -yes,affirmitive,original,book,1 -goodbye,i'm out,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -yes,sure,original,book,1 -yes,yeah,original,book,1 -goodbye,buhbye,original,bye,2 -thank_you,many thank,original,bye,2 -no,don't like that,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -goodbye,fairwell?,parrot,bye,2 -goodbye,my way,parrot,bye,2 -goodbye,later,original,bye,2 -date,in eight days?,parrot,avail,0 -no,would be no?,parrot,cancel,3 -greeting,ahoy,lambada,greet,4 -yes,TRUE,original,book,1 -yes,indeed,original,book,1 -greeting,hi,original,greet,4 -greeting,"hey, what's up",original,greet,4 -yes,so it's checked,parrot,book,1 -thank_you,youre a doll,original,bye,2 -no,that's a false,lambada,cancel,3 -goodbye,adios!,original,bye,2 -no,no?,parrot,cancel,3 -yes,definitely,original,book,1 -yes,it's true for sure,parrot,book,1 -greeting,how you are,original,greet,4 -yes,ya,original,book,1 -thank_you,thanks for the update,lambada,bye,2 -greeting,well hello,original,greet,4 -cancel_reservation,i'd like to cancel my reservation for 5 in hoss's steak house,parrot,cancel,3 -reminder_update,please give me a reminder,original,resched,5 -goodbye,later gator!,original,bye,2 -yes,perfect,parrot,book,1 -no,negative,original,cancel,3 -greeting,how's it with you?,parrot,greet,4 -yes,a real statement,parrot,book,1 -no,negation,parrot,cancel,3 -no,but it's false,parrot,cancel,3 -goodbye,tootles,original,bye,2 -yes,definitely,original,book,1 -yes,uh-huh,original,book,1 -yes,correct,original,book,1 -no,nay,original,cancel,3 -yes,yay,lambada,book,1 -goodbye,adios ai,original,bye,2 -calendar,do i have 30th birthday party on my calendar?,original,avail,0 -thank_you,your assistance is appreciated,parrot,bye,2 -no,nothing,parrot,cancel,3 -goodbye,fairwell,original,bye,2 -yes,it's certainly positive,parrot,book,1 -yes,sure,original,book,1 -goodbye,i'm leaving,parrot,bye,2 -no,that's very wrong,parrot,cancel,3 -date,do you have my date?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -date,a year?,parrot,avail,0 -how_busy,how busy are applebees at lunch?,parrot,avail,0 -no,no!,original,cancel,3 -greeting,aloha,original,greet,4 -no,it's false,parrot,cancel,3 -no,not good,parrot,cancel,3 -schedule_meeting,can you arrange a meeting with eve?,parrot,book,1 -goodbye,my friend,parrot,bye,2 -date,what's today?,parrot,avail,0 -greeting,how's ayi doing?,parrot,greet,4 -no,no!,original,cancel,3 -no,yes that's false,lambada,cancel,3 -yes,absolutely,original,book,1 -goodbye,you're done,parrot,bye,2 -goodbye,later good luck,parrot,bye,2 -yes,affirmitive,original,book,1 -schedule_meeting,can you list the meeting rooms available between 5 and 6 o'clock?,parrot,book,1 -reminder_update,remind me of something,parrot,resched,5 -no,it is false,original,cancel,3 -greeting,what's up,original,greet,4 -date,tell me the date in 10 days,parrot,avail,0 -reminder_update,"new reminder, please",original,resched,5 -calendar_update,i need to buy a birthday gift for sue taken from my calendar it's monday or tuesday last week,parrot,resched,5 -no,no!,original,cancel,3 -greeting,how's idy?,parrot,greet,4 -how_busy,tell me how busy ihop is at 730?,parrot,avail,0 -thank_you,special thanks to you,original,bye,2 -thank_you,nice,parrot,bye,2 -thank_you,thanks for that!,original,bye,2 -goodbye,regards,original,bye,2 -thank_you,thanks very much for your answer,parrot,bye,2 -calendar,read my calendar,parrot,avail,0 -greeting,yo,original,greet,4 -goodbye,a good talk,parrot,bye,2 -greeting,what's happened?,parrot,greet,4 -calendar,did i mark the mechanic's appointment on my calendar?,original,avail,0 -goodbye,goodbye goodbye,parrot,bye,2 -yes,yes that's right,lambada,book,1 -thank_you,thanks again!,original,bye,2 -no,"no, it's not",lambada,cancel,3 -greeting,salutations,parrot,greet,4 -no,is a lie?,parrot,cancel,3 -yes,that'd be great,parrot,book,1 -yes,all right,original,book,1 -yes,confirm,original,book,1 -greeting,hi,original,greet,4 -greeting,aloha,original,greet,4 -date,which day is it today,original,avail,0 -no,erroneous,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -reminder_update,have i forgotten?,parrot,resched,5 -goodbye,goodbyes soon,parrot,bye,2 -reminder_update,remember to remember later,parrot,resched,5 -no,nay,original,cancel,3 -greeting,"howdy, what's new",original,greet,4 -greeting,welcome,parrot,greet,4 -goodbye,have fun?,lambada,bye,2 -yes,right,parrot,book,1 -no,negation,parrot,cancel,3 -yes,okay,original,book,1 -yes,yes please,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,how ya doing,lambada,greet,4 -yes,great,original,book,1 -calendar_update,clear my calendar on march 15,parrot,resched,5 -cancel_reservation,repeal the dinner reservation,original,cancel,3 -thank_you,thanks again!,original,bye,2 -thank_you,it's my debt,parrot,bye,2 -date,what date today?,parrot,avail,0 -no,invalid,original,cancel,3 -goodbye,later!,original,bye,2 -date,what's today?,parrot,avail,0 -no,no it's not good,parrot,cancel,3 -reminder_update,remind me to take medicine,parrot,resched,5 -goodbye,goodbye now,parrot,bye,2 -no,no that isn't it,original,cancel,3 -greeting,hello how's my life?,parrot,greet,4 -greeting,bonjour,original,greet,4 -yes,my response is correct,parrot,book,1 -greeting,"hi, ai",original,greet,4 -goodbye,i have to go,parrot,bye,2 -yes,not false,parrot,book,1 -thank_you,"thanks, you've helped me",original,bye,2 -no,i would rather not,lambada,cancel,3 -thank_you,i'm really thankful,parrot,bye,2 -goodbye,great talk,lambada,bye,2 -meeting_schedule,do you have meetings between 3 and 5 pm?,parrot,avail,0 -goodbye,signing off,original,bye,2 -no,that’s incorrect,original,cancel,3 -goodbye,later,original,bye,2 -greeting,and how's it going,parrot,greet,4 -yes,huh huh,parrot,book,1 -reminder_update,keep me in mind later,parrot,resched,5 -goodbye,my way,parrot,bye,2 -thank_you,you answered,parrot,bye,2 -goodbye,see you soon,original,bye,2 -no,naw,parrot,cancel,3 -thank_you,good job,lambada,bye,2 -how_busy,tell me the time to wait for a table in the pizza bakery?,parrot,avail,0 -thank_you,i thank you,original,bye,2 -goodbye,bye bye,lambada,bye,2 -no,it's a mistake,parrot,cancel,3 -yes,affirmative,original,book,1 -greeting,hola,original,greet,4 -no,that's not factual,parrot,cancel,3 -no,definitely not,original,cancel,3 -greeting,hiya!,original,greet,4 -goodbye,goodnight,original,bye,2 -yes,ok,original,book,1 -thank_you,thanks again,original,bye,2 -no,that's actually false,parrot,cancel,3 -yes,obviously,parrot,book,1 -goodbye,goodbye ai,parrot,bye,2 -thank_you,nice,parrot,bye,2 -how_busy,is chili busy at 9?,parrot,avail,0 -thank_you,thanks,original,bye,2 -goodbye,adios,original,bye,2 -goodbye,glad to talk,parrot,bye,2 -how_busy,how long do i have to wait for ihop?,parrot,avail,0 -goodbye,"syonara, ai device!",original,bye,2 -thank_you,gracias,original,bye,2 -goodbye,fairwell,original,bye,2 -goodbye,see ya,lambada,bye,2 -date,date tomorrow?,parrot,avail,0 -calendar,what is on the calendar for march 2?,lambada,avail,0 -reminder_update,please remember to pay taxes,parrot,resched,5 -thank_you,thanks for the info,original,bye,2 -date,please date,parrot,avail,0 -no,certainly false,parrot,cancel,3 -calendar,what should i do on wednesday?,parrot,avail,0 -greeting,hey,original,greet,4 -yes,obviously,parrot,book,1 -thank_you,you answered my questions,parrot,bye,2 -yes,ok,original,book,1 -how_busy,how long will the wait at the cheese cake factory be?,parrot,avail,0 -greeting,"hi, ai",original,greet,4 -goodbye,bye bye then,original,bye,2 -goodbye,catch you around,original,bye,2 -thank_you,youre a doll,original,bye,2 -no,nope,original,cancel,3 -greeting,"hi, ai",original,greet,4 -thank_you,did you do well?,parrot,bye,2 -yes,yes,original,book,1 -goodbye,get there soon,lambada,bye,2 -date,what date?,parrot,avail,0 -no,absolutely false,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -goodbye,later good luck,parrot,bye,2 -greeting,whats new?,parrot,greet,4 -no,negatory,original,cancel,3 -greeting,"hello, good day",lambada,greet,4 -calendar,do you have any appointments for april 19th?,parrot,avail,0 -how_busy,how well does a coffee bean work at 7?,parrot,avail,0 -greeting,wassup,original,greet,4 -schedule_meeting,can you book a meeting with steve for 5?,parrot,book,1 -yes,that's the truth,original,book,1 -no,that's untrue,parrot,cancel,3 -no,that is overwhelmingly negative,lambada,cancel,3 -how_busy,can you tell me if there is a lot of wait time at chili's around 10 am?,lambada,avail,0 -greeting,hey there!,original,greet,4 -yes,yes please,original,book,1 -date,i want to find out today's date,lambada,avail,0 -yes,good,parrot,book,1 -meeting_schedule,what's my meeting schedule for that day?,parrot,avail,0 -date,current day,parrot,avail,0 -no,the answer is false,original,cancel,3 -yes,that is not false,original,book,1 -yes,seems true,parrot,book,1 -no,no,lambada,cancel,3 -goodbye,good bye,original,bye,2 -yes,it makes sense too,parrot,book,1 -schedule_meeting,how much are meeting rooms open between 9-1,lambada,book,1 -no,negation,parrot,cancel,3 -greeting,i want to know how you are feeling,lambada,greet,4 -goodbye,tootles?,parrot,bye,2 -yes,great,original,book,1 -goodbye,maybe next time,parrot,bye,2 -thank_you,thank you for everything,parrot,bye,2 -greeting,hey fellow,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -yes,indeed,original,book,1 -how_busy,when is the red lobster usually busy?,parrot,avail,0 -no,nay,original,cancel,3 -calendar,the 21st what is on my calendar,parrot,avail,0 -yes,affirmative,original,book,1 -yes,yup,original,book,1 -yes,good,parrot,book,1 -yes,yes,original,book,1 -yes,TRUE,lambada,book,1 -yes,you are yes,lambada,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,right,parrot,book,1 -yes,yay,lambada,book,1 -greeting,hello i'd like to know how you are doing,parrot,greet,4 -calendar,can you tell me what's on my calendar for march 17th,parrot,avail,0 -no,that is false,original,cancel,3 -how_busy,how busy will i be at the pizzeria around 8pm,parrot,avail,0 -yes,"yes, please",original,book,1 -calendar_update,add to my friday calendar a doctor's appointment,original,resched,5 -greeting,hi,original,greet,4 -greeting,how ya doin,original,greet,4 -goodbye,great conversation,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -date,what today?,parrot,avail,0 -no,no,lambada,cancel,3 -yes,great,original,book,1 -no,naw,original,cancel,3 -calendar,tell me my calendar?,parrot,avail,0 -calendar_update,remove event from calendar,lambada,resched,5 -date,what date is tomorrow?,original,avail,0 -thank_you,thank you very much,original,bye,2 -greeting,heyo,original,greet,4 -no,not happening,original,cancel,3 -how_busy,what's the wait time at cheese cake factory,lambada,avail,0 -no,i disagree,parrot,cancel,3 -yes,great,original,book,1 -date,i would like to know the date of tomorrow,parrot,avail,0 -reminder_update,a new reminder,parrot,resched,5 -greeting,how've you been,original,greet,4 -yes,confirm,original,book,1 -yes,i would say yes,lambada,book,1 -goodbye,tootles?,parrot,bye,2 -goodbye,adios!,original,bye,2 -no,i'd say no,original,cancel,3 -how_busy,how busy will ihop be at 5 pm?,parrot,avail,0 -yes,okay,original,book,1 -how_busy,when will i have to wait for a table at san francisco,parrot,avail,0 -no,the negator,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -yes,oh-huh,parrot,book,1 -goodbye,goodbye for now,parrot,bye,2 -date,tell me what day it will be?,parrot,avail,0 -thank_you,so grateful,parrot,bye,2 -yes,okay,original,book,1 -goodbye,buhbye,original,bye,2 -goodbye,good-bye,parrot,bye,2 -goodbye,"nice talk, goodbye",lambada,bye,2 -goodbye,bye bye,lambada,bye,2 -thank_you,thanks for coming,parrot,bye,2 -thank_you,thank you!,original,bye,2 -yes,it's logical,parrot,book,1 -greeting,ahoy there,lambada,greet,4 -no,naw,parrot,cancel,3 -date,please tell me the date,parrot,avail,0 -no,that’s incorrect,original,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -greeting,hola!,original,greet,4 -how_busy,how crowded will the olive garden be at 9 pm?,parrot,avail,0 -date,what day is it today,parrot,avail,0 -yes,yup,original,book,1 -how_busy,tell me the time to wait for the cheesecake factory?,parrot,avail,0 -thank_you,i'm very thankful,parrot,bye,2 -schedule_meeting,please reserve a meeting room for 9am on sunday,lambada,book,1 -no,this isn't true,parrot,cancel,3 -goodbye,bye bye!,original,bye,2 -goodbye,it was nice to have interaction with you,parrot,bye,2 -no,naw,parrot,cancel,3 -greeting,hello there,original,greet,4 -cancel_reservation,scrap that dinner reservation,original,cancel,3 -goodbye,i like our chat,parrot,bye,2 -meeting_schedule,when is my meeting?,parrot,avail,0 -goodbye,later goodbye,parrot,bye,2 -cancel_reservation,you can cancel my booking,parrot,cancel,3 -yes,i'll check that out,parrot,book,1 -greeting,aho,parrot,greet,4 -goodbye,bye,original,bye,2 -thank_you,oh sweet thanks,original,bye,2 -goodbye,thanks goodbye,parrot,bye,2 -schedule_meeting,are meeting rooms available between 10 and 4?,parrot,book,1 -yes,right,parrot,book,1 -thank_you,gracias,original,bye,2 -meeting_schedule,i need to know if i have a meeting scheduled today,parrot,avail,0 -goodbye,"enjoy my day, goodbye",original,bye,2 -no,negatory?,parrot,cancel,3 -calendar_update,remove my doctor appointment from my calendar,parrot,resched,5 -goodbye,for now,parrot,bye,2 -no,"no, that's not right",original,cancel,3 -meeting_schedule,what time do i meet with john?,parrot,avail,0 -yes,i know,parrot,book,1 -schedule_meeting,are any rooms available between 11 am and 5 pm?,lambada,book,1 -no,negative,original,cancel,3 -yes,a true statement,parrot,book,1 -yes,that checks out,original,book,1 -goodbye,bye my friend,parrot,bye,2 -yes,positive,original,book,1 -no,no,lambada,cancel,3 -goodbye,good talk,parrot,bye,2 -yes,facts,original,book,1 -how_busy,how long can i wait before i go to the chocolate fountain?,parrot,avail,0 -how_busy,is there a long wait for restaurant pizza today?,lambada,avail,0 -greeting,how's the world?,parrot,greet,4 -cancel_reservation,cancell my reservation at the burger joint,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -no,no way!,original,cancel,3 -no,that's negative,parrot,cancel,3 -greeting,how's everything?,parrot,greet,4 -goodbye,regards,original,bye,2 -date,which date is it?,parrot,avail,0 -yes,accept,parrot,book,1 -meeting_schedule,what time do i meet john,parrot,avail,0 -calendar,check my calendar please,parrot,avail,0 -reminder_update,let me be reminded,parrot,resched,5 -greeting,good morning,parrot,greet,4 -calendar_update,delete the hair appointment i scheduled on 1st may,parrot,resched,5 -calendar_update,forget my scheduled appointment i have set for tomorrow,lambada,resched,5 -goodbye,bye bye,lambada,bye,2 -greeting,salutations,parrot,greet,4 -no,that's a negative,original,cancel,3 -thank_you,the best,parrot,bye,2 -cancel_reservation,i must cancel my reservation,lambada,cancel,3 -yes,it's certainly true,parrot,book,1 -greeting,hello how are things?,parrot,greet,4 -thank_you,thank you for that!,lambada,bye,2 -yes,i'd say that it's true,lambada,book,1 -greeting,hola,original,greet,4 -goodbye,bye,original,bye,2 -greeting,how are things going with my family,lambada,greet,4 -how_busy,is the wait time high at this restaurant?,parrot,avail,0 -goodbye,adios,original,bye,2 -greeting,whats new,lambada,greet,4 -yes,sure,original,book,1 -greeting,"hi, ai",original,greet,4 -yes,it'll be yes,parrot,book,1 -goodbye,goodbye now,parrot,bye,2 -schedule_meeting,i want a meeting with daniel,parrot,book,1 -no,negating,parrot,cancel,3 -greeting,how's everything,original,greet,4 -how_busy,is macy's busy?,parrot,avail,0 -date,where is tomorrow's date,lambada,avail,0 -yes,ok,original,book,1 -yes,that's right,original,book,1 -greeting,salutations!,original,greet,4 -how_busy,how long does the restaurant wait before i go,parrot,avail,0 -thank_you,special thanks to you,original,bye,2 -meeting_schedule,how many meetings am i attending between 12 and 3 today?,parrot,avail,0 -yes,yeah,original,book,1 -goodbye,tootles,original,bye,2 -meeting_schedule,when do you meet kara?,parrot,avail,0 -yes,sure,original,book,1 -thank_you,"nice, excellent!",original,bye,2 -goodbye,bye-bye,original,bye,2 -meeting_schedule,please let me know if i have any meetings with stan,lambada,avail,0 -no,nope,original,cancel,3 -thank_you,the best,parrot,bye,2 -yes,"yup, that's correct",lambada,book,1 -no,i'm sorry for the statement,parrot,cancel,3 -thank_you,it's my debt,parrot,bye,2 -greeting,heller,original,greet,4 -thank_you,"good job, thanks",lambada,bye,2 -thank_you,"oh, thanks",original,bye,2 -how_busy,tell me the time it takes to get into pizzerias?,parrot,avail,0 -greeting,how's life for you?,parrot,greet,4 -no,absolutely not,original,cancel,3 -no,"no, that's not it",original,cancel,3 -yes,facts,original,book,1 -no,but we don't want that,parrot,cancel,3 -greeting,wassup,original,greet,4 -greeting,how's my life?,parrot,greet,4 -greeting,hello,original,greet,4 -goodbye,my friend,parrot,bye,2 -greeting,hi ai,original,greet,4 -yes,affirmitive,original,book,1 -goodbye,goodbyes,parrot,bye,2 -how_busy,how busy will the cheesecake factory be at 6 pm,lambada,avail,0 -reminder_update,pay taxes on monday,parrot,resched,5 -thank_you,your assistance is appreciated,parrot,bye,2 -goodbye,great conversation,parrot,bye,2 -no,i disagree with this,parrot,cancel,3 -thank_you,gracias,original,bye,2 -how_busy,are chicken dinners busy?,lambada,avail,0 -greeting,nice day,lambada,greet,4 -meeting_schedule,any meetings on schedule today,parrot,avail,0 -no,i'd prefer not to answer,parrot,cancel,3 -thank_you,appreciate it,original,bye,2 -how_busy,can you tell me the amount of wait time at the restaurant?,lambada,avail,0 -no,negating,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,absolutely false,parrot,cancel,3 -goodbye,good call,parrot,bye,2 -goodbye,adios ai,original,bye,2 -greeting,hey how ya feeling,lambada,greet,4 -yes,absolutely correct,original,book,1 -no,thanks no,parrot,cancel,3 -how_busy,what's the average wait time for a grilled cheese from 6 to 8:30,lambada,avail,0 -goodbye,i'll be on the way,parrot,bye,2 -date,what is that day?,parrot,avail,0 -goodbye,have to run,parrot,bye,2 -greeting,how are you,original,greet,4 -goodbye,fairwell,original,bye,2 -yes,yup,original,book,1 -yes,great,original,book,1 -date,what day will it be in five days,parrot,avail,0 -reminder_update,set up a reminder to set the alarm at 8pm,parrot,resched,5 -goodbye,tootles,original,bye,2 -yes,yeah yeah,lambada,book,1 -how_busy,has the wait been long for the orange blossom?,parrot,avail,0 -yes,"yes, that's confirmed",original,book,1 -yes,i'm sure that's true,parrot,book,1 -yes,i guess,parrot,book,1 -reminder_update,please remind me to pay my cable bill today,parrot,resched,5 -how_busy,what's the current wait time for red lobsters?,parrot,avail,0 -thank_you,i'm very grateful,parrot,bye,2 -no,the answer is no,original,cancel,3 -thank_you,thanks for my help,original,bye,2 -how_busy,what is a cheesecake factory like right now?,parrot,avail,0 -no,no?,parrot,cancel,3 -how_busy,how busy is the restaurant around 7?,parrot,avail,0 -goodbye,sign off,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -greeting,are you all right?,parrot,greet,4 -how_busy,please tell me how busy the red robin is at 7pm?,parrot,avail,0 -no,that's a very bad answer,parrot,cancel,3 -no,nothing,parrot,cancel,3 -goodbye,"i enjoyed our talk, bye",original,bye,2 -goodbye,bye bye,lambada,bye,2 -no,negative sure,parrot,cancel,3 -date,what will be tomorrow?,parrot,avail,0 -yes,good yes,lambada,book,1 -schedule_meeting,please get together with matthew and write it?,parrot,book,1 -reminder_update,remind me,original,resched,5 -meeting_schedule,what time is my meeting with marketing scheduled?,parrot,avail,0 -yes,i'm voting for you,parrot,book,1 -calendar_update,please take away my anniversary party from my calendar,parrot,resched,5 -how_busy,is mr joes pizza crowded?,parrot,avail,0 -yes,it seems true,parrot,book,1 -yes,yes sir,original,book,1 -how_busy,how busy the chili is at 6 pm?,parrot,avail,0 -how_busy,list the seats available in this restaurant?,parrot,avail,0 -date,is it monday?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -greeting,ai how you're doing,lambada,greet,4 -goodbye,it's over,parrot,bye,2 -schedule_meeting,i want to schedule a meeting with tom for 6pm,original,book,1 -thank_you,thank you ai,parrot,bye,2 -reminder_update,make a note to call my mom,parrot,resched,5 -how_busy,how long will i have to wait for a table in the olive garden?,parrot,avail,0 -thank_you,my sincere gratitude,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -greeting,"hello, anyone there",original,greet,4 -thank_you,again thanks,parrot,bye,2 -greeting,hi what's going on,parrot,greet,4 -no,no!,original,cancel,3 -no,not right?,parrot,cancel,3 -meeting_schedule,have any meetings between 9 and 10?,parrot,avail,0 -yes,perfect,parrot,book,1 -yes,absolutely correct,original,book,1 -thank_you,why thank you?,original,bye,2 -yes,approved,original,book,1 -date,current day,parrot,avail,0 -reminder_update,new reminder please,lambada,resched,5 -no,don't like it no,parrot,cancel,3 -yes,affirmative,original,book,1 -goodbye,later!,original,bye,2 -calendar_update,remove the anniversary dinner from my calendar on april 5,parrot,resched,5 -no,i disagree,parrot,cancel,3 -no,no thanks,original,cancel,3 -yes,yes,original,book,1 -no,negation,parrot,cancel,3 -how_busy,how long will i have to wait at chili at 7pm,parrot,avail,0 -date,what today?,parrot,avail,0 -goodbye,farewell,original,bye,2 -how_busy,is mcdonalds busy?,parrot,avail,0 -no,would be no?,parrot,cancel,3 -no,it's a lie,parrot,cancel,3 -yes,"yes, this is true",original,book,1 -how_busy,how busy is cheesecake factory around 7,lambada,avail,0 -how_busy,at 6 o'clock can i expect a lot of people at olive garden?,parrot,avail,0 -yes,yes,original,book,1 -greeting,good evening,original,greet,4 -goodbye,bye!,original,bye,2 -yes,it's indeed true,original,book,1 -goodbye,i'll go,parrot,bye,2 -greeting,hey how's ot,lambada,greet,4 -no,that’s actually wrong,original,cancel,3 -how_busy,how long do i have to wait if i want to sit in macadamia?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -goodbye,"a pleasure as always to speak with you, bye",original,bye,2 -schedule_meeting,would you know if there are meeting rooms available for noon,lambada,book,1 -yes,indeed,original,book,1 -thank_you,nice,parrot,bye,2 -how_busy,is there a long wait for pizza in the restaurant today?,parrot,avail,0 -goodbye,i'm gone,parrot,bye,2 -no,no please,parrot,cancel,3 -greeting,aho,parrot,greet,4 -yes,it's true,original,book,1 -yes,TRUE,original,book,1 -goodbye,"nice talking again, bye",original,bye,2 -no,so that's no,parrot,cancel,3 -goodbye,later goodbye,parrot,bye,2 -greeting,hi,original,greet,4 -greeting,ahoy there,lambada,greet,4 -calendar,tell me what's on my calendar for march 28?,parrot,avail,0 -goodbye,"thanks for the talk, bye",lambada,bye,2 -goodbye,sayonara,original,bye,2 -date,date tomorrow,parrot,avail,0 -no,negating,parrot,cancel,3 -no,FALSE,original,cancel,3 -date,what day is that?,parrot,avail,0 -calendar,get me what event is taking place on march 6th,lambada,avail,0 -date,what's the date we'll be here?,parrot,avail,0 -thank_you,thank you for my prompt response,parrot,bye,2 -thank_you,i appeciate it,parrot,bye,2 -how_busy,wait how long on black friday?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -yes,positive,original,book,1 -no,no thanks,original,cancel,3 -how_busy,wait how long?,parrot,avail,0 -goodbye,"no problem, goodbye",lambada,bye,2 -thank_you,you did it,parrot,bye,2 -yes,"yep, that's correct",lambada,book,1 -reminder_update,add a reminder,lambada,resched,5 -date,current day,parrot,avail,0 -cancel_reservation,now my reservation is no longer needed,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -date,what's the day of tomorrow?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -thank_you,thank you?,parrot,bye,2 -greeting,how's life,original,greet,4 -no,that's no,parrot,cancel,3 -thank_you,that's what you did,parrot,bye,2 -no,negative,original,cancel,3 -greeting,ahoy hoy,original,greet,4 -how_busy,how long will i have to wait to be seated in chili's restaurant?,parrot,avail,0 -greeting,what's up?,parrot,greet,4 -goodbye,fairwell?,parrot,bye,2 -how_busy,is the chili busy at 9 o'clock?,parrot,avail,0 -how_busy,get a good estimate of how busy the cheesecake factory is at 9 pm,parrot,avail,0 -no,negation,parrot,cancel,3 -thank_you,thank you for the time,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,what's the wait?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -yes,"yes, please",parrot,book,1 -no,no,lambada,cancel,3 -yes,yeah yeah,lambada,book,1 -greeting,"hello, how are you",original,greet,4 -yes,yes please,original,book,1 -goodbye,greetings,parrot,bye,2 -goodbye,talk to you later!,original,bye,2 -cancel_reservation,i have to cancel my reservation for two nights in the red rooster,parrot,cancel,3 -thank_you,i appreciate your assistance,parrot,bye,2 -no,"no, that's not correct",lambada,cancel,3 -yes,definitely,original,book,1 -goodbye,buhbye now,lambada,bye,2 -no,definitely not,original,cancel,3 -date,what's today,original,avail,0 -yes,agreed,original,book,1 -goodbye,adios,original,bye,2 -thank_you,your answer was enjoyable,original,bye,2 -no,and i'm sorry,parrot,cancel,3 -schedule_meeting,i want a meeting,parrot,book,1 -greeting,welcome,parrot,greet,4 -how_busy,how long will it take to sit in the olympia stadium,parrot,avail,0 -yes,positive,parrot,book,1 -greeting,hello there,original,greet,4 -yes,positive,parrot,book,1 -greeting,how are things,original,greet,4 -no,"no, that's wrong",original,cancel,3 -thank_you,very much thanks for the answer,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -yes,my answer is yes,parrot,book,1 -no,no?,parrot,cancel,3 -greeting,get up ai,parrot,greet,4 -no,no?,parrot,cancel,3 -no,but that's not true,parrot,cancel,3 -date,what's the day like?,parrot,avail,0 -thank_you,you're the best!,original,bye,2 -date,how many days will the date be in 840?,parrot,avail,0 -how_busy,does this restaurant have a high attendance for dinner?,parrot,avail,0 -no,invalid,original,cancel,3 -yes,positive,parrot,book,1 -goodbye,later!,original,bye,2 -no,i'll say no,parrot,cancel,3 -thank_you,"great, thanks!",original,bye,2 -no,FALSE,original,cancel,3 -thank_you,thanks please,original,bye,2 -date,show me a calendar,original,avail,0 -goodbye,afterward,parrot,bye,2 -goodbye,goodbye,original,bye,2 -how_busy,what is the average wait time at the chipotle grill?,lambada,avail,0 -calendar,check calendar for events,lambada,avail,0 -greeting,how's my feeling?,parrot,greet,4 -goodbye,goodnight,original,bye,2 -goodbye,goodnight,original,bye,2 -date,what is the first day of a month in 5 days?,parrot,avail,0 -no,it's negative,parrot,cancel,3 -greeting,how's otc?,parrot,greet,4 -greeting,how're you?,parrot,greet,4 -goodbye,have fun?,lambada,bye,2 -how_busy,is the restaurant crowded for dinner?,parrot,avail,0 -goodbye,see ya,original,bye,2 -goodbye,thanks bye bye!,original,bye,2 -yes,confirmed,original,book,1 -thank_you,thank you please,parrot,bye,2 -goodbye,farewell!,original,bye,2 -thank_you,gracias,original,bye,2 -goodbye,come on soon,parrot,bye,2 -goodbye,i'm outta here!,original,bye,2 -thank_you,you've been great,parrot,bye,2 -date,current day,parrot,avail,0 -yes,ya,original,book,1 -goodbye,good chatting with you,lambada,bye,2 -yes,okay,original,book,1 -greeting,hey how ya been,lambada,greet,4 -calendar_update,please remove dinner with june on the ranch from my calendar for may 14?,parrot,resched,5 -date,in 8 days?,parrot,avail,0 -how_busy,waiting for macaroni and cheese?,parrot,avail,0 -how_busy,please take a look at how busy ihop is at 6,lambada,avail,0 -reminder_update,set a reminder for me to let the plumber in tomorrow,original,resched,5 -greeting,hey what's going on?,parrot,greet,4 -thank_you,appreciated,original,bye,2 -cancel_reservation,cancel the reservation i made,parrot,cancel,3 -yes,affirmative,original,book,1 -yes,confirmed,original,book,1 -greeting,heyo,original,greet,4 -no,that's negative,parrot,cancel,3 -no,"that would be ""no",original,cancel,3 -goodbye,fairwell,original,bye,2 -greeting,yo,original,greet,4 -yes,definitely,original,book,1 -schedule_meeting,the meeting should be scheduled,lambada,book,1 -goodbye,sayonara,original,bye,2 -yes,confirm,original,book,1 -how_busy,how busy is the olive garden around 7 pm,parrot,avail,0 -how_busy,tell me how busy is regina?,parrot,avail,0 -no,nope it's not true,parrot,cancel,3 -calendar,i would like to know what's happening in my calendar,parrot,avail,0 -no,negatory?,parrot,cancel,3 -yes,10-Apr,original,book,1 -yes,certainly,parrot,book,1 -yes,confirmed,original,book,1 -yes,indeed,original,book,1 -date,which date do we enter in the future? '',parrot,avail,0 -cancel_reservation,can i cancel my reservation for jason at ruth's,parrot,cancel,3 -date,tell me what date tomorrow?,parrot,avail,0 -no,no that isn't true,lambada,cancel,3 -greeting,hello siri,original,greet,4 -calendar,what's my plan for april 23?,parrot,avail,0 -greeting,how is idy?,parrot,greet,4 -yes,huh huh,parrot,book,1 -greeting,yo,original,greet,4 -no,erroneous,parrot,cancel,3 -no,no please,parrot,cancel,3 -goodbye,fairwell,original,bye,2 -how_busy,wait for a long wait at the chocolate fountain around 11 am?,parrot,avail,0 -greeting,"hi, ai",original,greet,4 -yes,i can confirm,parrot,book,1 -date,today?,parrot,avail,0 -yes,obviously,parrot,book,1 -no,are you sure i don’t think that’s correct?,original,cancel,3 -meeting_schedule,when do we have meetings today?,parrot,avail,0 -how_busy,how busy is macaroni around 8:30,lambada,avail,0 -how_busy,list the wait times at red lobsters?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -calendar,is there anything on my calendar for next sunday?,parrot,avail,0 -no,but it's wrong,parrot,cancel,3 -yes,huh,parrot,book,1 -yes,it's certainly true,parrot,book,1 -goodbye,lovely conversation,parrot,bye,2 -no,it's false,parrot,cancel,3 -date,in three days,parrot,avail,0 -greeting,hi how's it going,lambada,greet,4 -thank_you,thanks,original,bye,2 -greeting,hey there,original,greet,4 -goodbye,as regards,parrot,bye,2 -no,the negator,parrot,cancel,3 -meeting_schedule,about what date is today's meeting?,parrot,avail,0 -goodbye,will leave now,parrot,bye,2 -greeting,bonjour,original,greet,4 -no,that's erroneous,parrot,cancel,3 -yes,yeap,original,book,1 -how_busy,how long does it take to wait for teddy bears?,parrot,avail,0 -date,date tomorrow,parrot,avail,0 -greeting,yo,original,greet,4 -yes,confirm that i'm on the correct list?,parrot,book,1 -thank_you,my gratitude,parrot,bye,2 -calendar,did i put'repair appointment' on my calendar?,lambada,avail,0 -thank_you,gracias,original,bye,2 -greeting,"hey, ai",original,greet,4 -thank_you,i'm really thankful,parrot,bye,2 -yes,so it's true,parrot,book,1 -no,that's a negative,original,cancel,3 -thank_you,thank you,original,bye,2 -goodbye,later!,original,bye,2 -goodbye,very nice conversation,parrot,bye,2 -yes,thats right,original,book,1 -how_busy,can the wait be long for chocolate fountains?,parrot,avail,0 -no,that's absolutely false,parrot,cancel,3 -greeting,what is new?,parrot,greet,4 -yes,approved,original,book,1 -yes,confirmed,original,book,1 -how_busy,how busy is outback steakhouse around 7pm,lambada,avail,0 -goodbye,peace,original,bye,2 -no,i say negative,original,cancel,3 -yes,uh huh,original,book,1 -yes,can we please?,original,book,1 -no,nay,original,cancel,3 -schedule_meeting,i want to know if there are meeting rooms available between 9:30 and 11:30,lambada,book,1 -cancel_reservation,cancellation of dinner reservations,parrot,cancel,3 -yes,right,parrot,book,1 -no,so that's no,parrot,cancel,3 -no,FALSE,original,cancel,3 -how_busy,does red lobster have a lot of people around?,lambada,avail,0 -yes,it's positive,parrot,book,1 -schedule_meeting,you know if meeting rooms are open for 1-2?,parrot,book,1 -date,current date,original,avail,0 -calendar,where do i have to be on 12/03/2019,original,avail,0 -no,the answer is false,original,cancel,3 -greeting,hi there,original,greet,4 -schedule_meeting,can you book the meeting?,parrot,book,1 -yes,right,parrot,book,1 -greeting,hello siri,original,greet,4 -thank_you,i'm thankful,original,bye,2 -yes,confirmed,original,book,1 -thank_you,thank you?,parrot,bye,2 -calendar_update,can you remove an event from this calendar?,parrot,resched,5 -no,negating,parrot,cancel,3 -reminder_update,please keep the reminder to put the clothes in the dryer,parrot,resched,5 -how_busy,how long will it be in this restaurant,parrot,avail,0 -how_busy,how busy is the restaurant at lunchtime?,parrot,avail,0 -greeting,how is it going?,parrot,greet,4 -yes,"yes, please",original,book,1 -greeting,welcome,parrot,greet,4 -no,not that,original,cancel,3 -reminder_update,make me a reminder to pay my bills,lambada,resched,5 -yes,confirm,original,book,1 -yes,positive,parrot,book,1 -goodbye,peace out,original,bye,2 -yes,right,parrot,book,1 -calendar,check my calendar,parrot,avail,0 -goodbye,peace,original,bye,2 -yes,yup,original,book,1 -how_busy,can you tell me what kind of crowd is in this restaurant?,lambada,avail,0 -schedule_meeting,i need you to reserve a meeting room for 2:30 on thursday,lambada,book,1 -date,is it monday?,parrot,avail,0 -goodbye,good see you,lambada,bye,2 -no,that’s incorrect,original,cancel,3 -calendar,can you check my calendar for an item titled checkbook?,parrot,avail,0 -date,today?,parrot,avail,0 -thank_you,well done,parrot,bye,2 -yes,accept,parrot,book,1 -goodbye,bye-bye,original,bye,2 -goodbye,peace out!,original,bye,2 -greeting,how are you treated,lambada,greet,4 -yes,certainly,parrot,book,1 -thank_you,thanks for trying,original,bye,2 -yes,approved,original,book,1 -thank_you,oh sweet thanks,original,bye,2 -no,that is untrue,original,cancel,3 -no,no way!,original,cancel,3 -reminder_update,let me remember,parrot,resched,5 -no,so that's no,parrot,cancel,3 -yes,yup,original,book,1 -yes,oh-huh,parrot,book,1 -yes,facts,original,book,1 -cancel_reservation,i've got to cancel my reservations,parrot,cancel,3 -thank_you,i owe you a thing,parrot,bye,2 -thank_you,i appreciate your consideration,lambada,bye,2 -how_busy,how busy is cheesecake factory at 6,lambada,avail,0 -no,not good idea,parrot,cancel,3 -thank_you,i am grateful for the help,original,bye,2 -goodbye,"no problem, goodbye",lambada,bye,2 -date,what date?,parrot,avail,0 -thank_you,i appreciate it,original,bye,2 -thank_you,thanks for helping,original,bye,2 -goodbye,regards,original,bye,2 -calendar,does my calendar show anything for thursday?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -calendar,did i set a day on my calendar to vote in the next election?,parrot,avail,0 -greeting,"hey, what's up with you",lambada,greet,4 -goodbye,thank you for this conversation,parrot,bye,2 -greeting,get up ai,parrot,greet,4 -goodbye,tootles?,parrot,bye,2 -goodbye,good night,original,bye,2 -how_busy,does the olive garden get crowded around 5?,parrot,avail,0 -no,it's very wrong,parrot,cancel,3 -goodbye,come on soon,parrot,bye,2 -greeting,"good morning, ai",original,greet,4 -yes,yay,lambada,book,1 -greeting,salutation,parrot,greet,4 -thank_you,"nice, excellent!",original,bye,2 -yes,you're right,original,book,1 -no,negative,original,cancel,3 -yes,positive,original,book,1 -greeting,"hello, ai",original,greet,4 -how_busy,tell me how busy the cheesecake factory will be around 6pm,parrot,avail,0 -goodbye,for now,parrot,bye,2 -date,a year?,parrot,avail,0 -cancel_reservation,cancell my reservation for dinner tonight,parrot,cancel,3 -greeting,hey there,original,greet,4 -no,negation,parrot,cancel,3 -yes,positive,parrot,book,1 -greeting,whats up?,parrot,greet,4 -no,FALSE,original,cancel,3 -yes,all right,original,book,1 -schedule_meeting,schedule a meeting with carrie and lisa please?,parrot,book,1 -yes,a real statement,parrot,book,1 -no,that isn't true,lambada,cancel,3 -no,is a lie?,parrot,cancel,3 -goodbye,bye now,original,bye,2 -date,tell me the date in four days?,parrot,avail,0 -thank_you,"thanks, that's helpful",original,bye,2 -meeting_schedule,when should i meet jane?,parrot,avail,0 -goodbye,i enjoyed our goodbye,parrot,bye,2 -greeting,how've you been?,parrot,greet,4 -greeting,heller,original,greet,4 -yes,i'd say yes,parrot,book,1 -calendar_update,remove anniversary celebration from my calendar,lambada,resched,5 -yes,okay,original,book,1 -yes,and you're right,parrot,book,1 -goodbye,get there soon,lambada,bye,2 -greeting,how's the life?,parrot,greet,4 -yes,ok,original,book,1 -thank_you,your answer impressed me,parrot,bye,2 -thank_you,gracias,original,bye,2 -cancel_reservation,please cancel my reservation for larry at the red robin,parrot,cancel,3 -no,not right?,parrot,cancel,3 -goodbye,later!,original,bye,2 -calendar_update,remove my birthday dinners from my schedule,lambada,resched,5 -date,what the day?,parrot,avail,0 -no,no,lambada,cancel,3 -yes,is true,parrot,book,1 -thank_you,"thanks, that's helpful",original,bye,2 -no,please do not agree,parrot,cancel,3 -thank_you,i love my pay check,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -no,erroneous,parrot,cancel,3 -calendar,show me the events on my calendar for april 1st?,parrot,avail,0 -yes,ok,original,book,1 -cancel_reservation,just cancel my reservation,lambada,cancel,3 -thank_you,my gratitude,parrot,bye,2 -greeting,so how's everything going?,parrot,greet,4 -yes,i know that's true,parrot,book,1 -reminder_update,create a reminder,original,resched,5 -goodbye,goodbye,original,bye,2 -how_busy,is mcdonalds busy?,parrot,avail,0 -greeting,bonjour,original,greet,4 -greeting,how's my family doing?,parrot,greet,4 -how_busy,i wanna know if there is a long wait to get into the restaurant at 7 pm,lambada,avail,0 -no,negative,original,cancel,3 -goodbye,tata for now,original,bye,2 -thank_you,i'm thankful,original,bye,2 -goodbye,later,original,bye,2 -no,absolutely not,original,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,thank you!,original,bye,2 -no,FALSE,original,cancel,3 -goodbye,later!,original,bye,2 -yes,that's correct,original,book,1 -yes,good yes,lambada,book,1 -thank_you,thank ya!,original,bye,2 -thank_you,awesome thanks,parrot,bye,2 -no,not true,original,cancel,3 -how_busy,is the restaurant at 2pm crowded?,parrot,avail,0 -no,would be a lie,parrot,cancel,3 -no,that's a negatory,original,cancel,3 -yes,yup,original,book,1 -no,not good,parrot,cancel,3 -thank_you,and you're doing well,parrot,bye,2 -greeting,"hey, how's my day",lambada,greet,4 -thank_you,"great, thanks!",original,bye,2 -goodbye,bye for now,original,bye,2 -calendar,is there an annual physical?,parrot,avail,0 -no,no that isn't it,original,cancel,3 -yes,definitely,original,book,1 -no,that is incorrect,original,cancel,3 -thank_you,many thanks,original,bye,2 -date,today?,parrot,avail,0 -meeting_schedule,are there meetings between 11 and 4pm?,parrot,avail,0 -yes,TRUE,original,book,1 -yes,that is a yes,original,book,1 -how_busy,wait how long on friday?,parrot,avail,0 -date,a year?,parrot,avail,0 -greeting,ai how are you doing today,original,greet,4 -greeting,hiya!,original,greet,4 -how_busy,how busy will the olive garden be at 9 pm?,parrot,avail,0 -greeting,hello,original,greet,4 -schedule_meeting,how do i set up a meeting,original,book,1 -thank_you,youre a doll,original,bye,2 -thank_you,many thank,original,bye,2 -thank_you,really great!,original,bye,2 -greeting,hiya,original,greet,4 -goodbye,goodbye now,parrot,bye,2 -no,that's absolutely false,parrot,cancel,3 -no,FALSE,original,cancel,3 -goodbye,later!,original,bye,2 -no,i disagree,parrot,cancel,3 -goodbye,i enjoyed our goodbye,parrot,bye,2 -greeting,bonjour,original,greet,4 -yes,it's indeed true,original,book,1 -greeting,i'm going to tell you how it goes,parrot,greet,4 -thank_you,thanks!,original,bye,2 -goodbye,later,original,bye,2 -how_busy,red lobster at 8 pm?,parrot,avail,0 -goodbye,bye,original,bye,2 -no,it's actually a lie,parrot,cancel,3 -thank_you,appreciate the help,original,bye,2 -yes,my answer is yes,parrot,book,1 -date,what date is that?,parrot,avail,0 -date,what's the date for tomorrow?,parrot,avail,0 -how_busy,how long would it take to get a table at chili's steak house,parrot,avail,0 -greeting,aho,parrot,greet,4 -goodbye,maybe next time,parrot,bye,2 -no,not happening,original,cancel,3 -no,that’s incorrect,original,cancel,3 -goodbye,sayonara,original,bye,2 -no,invalid,original,cancel,3 -yes,facts,original,book,1 -no,negative sure,parrot,cancel,3 -calendar,what's the tuesday calendar?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -schedule_meeting,how can i create a meeting,original,book,1 -no,that's erroneous,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -goodbye,sayonara,original,bye,2 -greeting,hiya!,original,greet,4 -no,it's a mistake,parrot,cancel,3 -yes,true is my response,original,book,1 -date,what date?,parrot,avail,0 -goodbye,the conversation was nice,parrot,bye,2 -goodbye,great talk,lambada,bye,2 -meeting_schedule,when is my meeting with ann?,original,avail,0 -thank_you,you're a good help,parrot,bye,2 -how_busy,does red lobster have many people around it?,parrot,avail,0 -thank_you,you've helped,parrot,bye,2 -no,that's absolutely wrong,parrot,cancel,3 -goodbye,later!,original,bye,2 -no,it seems wrong,parrot,cancel,3 -yes,confirmed,original,book,1 -greeting,hello there ai,original,greet,4 -thank_you,thanks very much for your answer,parrot,bye,2 -thank_you,thank you?,parrot,bye,2 -greeting,aloha,original,greet,4 -no,negating,parrot,cancel,3 -yes,good,parrot,book,1 -greeting,what's new,lambada,greet,4 -no,nope,original,cancel,3 -no,that is erroneous,original,cancel,3 -how_busy,how busy will red lobster be at 6 pm,lambada,avail,0 -no,FALSE,lambada,cancel,3 -thank_you,oh sweet thanks,original,bye,2 -thank_you,why thank you?,original,bye,2 -goodbye,goodbye!,original,bye,2 -yes,you got it,parrot,book,1 -thank_you,many thank,original,bye,2 -no,you're not right,parrot,cancel,3 -greeting,hey fellow,parrot,greet,4 -date,what day is that?,parrot,avail,0 -greeting,how's the world?,parrot,greet,4 -date,a year?,parrot,avail,0 -meeting_schedule,what's my plan today?,parrot,avail,0 -no,there's no way it's true,parrot,cancel,3 -goodbye,good bye,original,bye,2 -reminder_update,give the cat fleas medicine,parrot,resched,5 -goodbye,thank you for the conversation,parrot,bye,2 -no,i have a feeling that this is not true,parrot,cancel,3 -no,i didn't mean that,parrot,cancel,3 -how_busy,how long will the restaurant be after noon,lambada,avail,0 -goodbye,adios,original,bye,2 -no,that's no,parrot,cancel,3 -date,in eight days?,parrot,avail,0 -thank_you,i appreciate your assistance,parrot,bye,2 -yes,accepted,original,book,1 -no,no please,parrot,cancel,3 -greeting,hey bs,lambada,greet,4 -reminder_update,save it for later,parrot,resched,5 -yes,ya,original,book,1 -greeting,hi,original,greet,4 -reminder_update,i need to remember to wash dishes,parrot,resched,5 -thank_you,good looking out,original,bye,2 -yes,agreed,original,book,1 -no,it's a false,lambada,cancel,3 -yes,positive,original,book,1 -cancel_reservation,i no longer need to book for 20 at ihop,parrot,cancel,3 -yes,yeah,original,book,1 -yes,that's a clear yes,parrot,book,1 -no,no?,parrot,cancel,3 -no,FALSE,original,cancel,3 -yes,absolutely correct,original,book,1 -goodbye,buhbye,original,bye,2 -yes,10-Apr,original,book,1 -yes,okay,original,book,1 -yes,affirmitive,original,book,1 -no,not really,original,cancel,3 -goodbye,my friend,parrot,bye,2 -no,thats a negative,original,cancel,3 -schedule_meeting,what meeting rooms are available between 5 pm and 6 pm?,lambada,book,1 -how_busy,how long will it take me to sit in the cheese cake factory?,parrot,avail,0 -date,current date,original,avail,0 -yes,is true,parrot,book,1 -yes,oh yes,original,book,1 -yes,confirm,original,book,1 -schedule_meeting,i need a meeting with john at 8 pm,parrot,book,1 -greeting,aho,parrot,greet,4 -date,in three days,parrot,avail,0 -greeting,good day,original,greet,4 -greeting,salutations!,original,greet,4 -greeting,hello,original,greet,4 -goodbye,take it easy!,original,bye,2 -no,"no, that's not it",original,cancel,3 -no,nothing,parrot,cancel,3 -how_busy,what's the wait at iman's,lambada,avail,0 -no,no that isn't correct,original,cancel,3 -no,it's negative,parrot,cancel,3 -cancel_reservation,cancel my reservation for the evening,parrot,cancel,3 -date,what's the date tomorrow,original,avail,0 -greeting,salutations,parrot,greet,4 -calendar,what's my schedule for april 1?,parrot,avail,0 -no,that's no,parrot,cancel,3 -greeting,how does ai do?,parrot,greet,4 -greeting,whats up,original,greet,4 -greeting,wake up ai,parrot,greet,4 -yes,affirmative,original,book,1 -no,negation,parrot,cancel,3 -goodbye,i'm out,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -reminder_update,remind me to check the meat,parrot,resched,5 -thank_you,let me thank you,original,bye,2 -greeting,whats up?,parrot,greet,4 -schedule_meeting,i need a room,parrot,book,1 -reminder_update,have i forgotten?,parrot,resched,5 -cancel_reservation,call my reservation canceled,lambada,cancel,3 -greeting,how's everything?,parrot,greet,4 -yes,absolutely!,original,book,1 -no,and i'm sorry,parrot,cancel,3 -greeting,hello there!,original,greet,4 -date,what is the day today?,lambada,avail,0 -yes,a fact,parrot,book,1 -date,i need to know the date of tomorrow,lambada,avail,0 -yes,yeap,original,book,1 -schedule_meeting,schedule the meeting room for friday at 3pm,parrot,book,1 -calendar,does my calendar show anything for thursday the 14th?,original,avail,0 -thank_you,thankyou,parrot,bye,2 -yes,"yeah, that's it",lambada,book,1 -goodbye,bye bye,lambada,bye,2 -thank_you,thanks for cooperating,parrot,bye,2 -meeting_schedule,time of meeting?,parrot,avail,0 -greeting,hiya!,original,greet,4 -calendar_update,a doctor appointment for friday,parrot,resched,5 -how_busy,what is the sitting time at this restaurant?,original,avail,0 -greeting,hey fellow,parrot,greet,4 -no,the answer is not true,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -thank_you,very grateful,parrot,bye,2 -yes,ya,original,book,1 -no,negation,parrot,cancel,3 -schedule_meeting,please meet kate at 8am?,parrot,book,1 -yes,uh-huh,original,book,1 -greeting,how's it going?,parrot,greet,4 -greeting,whats new?,parrot,greet,4 -date,today is what day of the week?,parrot,avail,0 -greeting,how are you?,parrot,greet,4 -no,no it's not good,parrot,cancel,3 -goodbye,i'm leaving,parrot,bye,2 -yes,10-Apr,original,book,1 -greeting,hey,original,greet,4 -calendar_update,please clean my calendar,parrot,resched,5 -goodbye,i'm out,parrot,bye,2 -yes,confirm,original,book,1 -no,FALSE,original,cancel,3 -no,thats a negative,original,cancel,3 -greeting,how you are?,parrot,greet,4 -meeting_schedule,meetings today,original,avail,0 -yes,okay,original,book,1 -thank_you,you helped,parrot,bye,2 -thank_you,good looking out,original,bye,2 -no,negation,parrot,cancel,3 -how_busy,how long will i have to wait if i want a table at chili's,parrot,avail,0 -goodbye,farewell to you,lambada,bye,2 -thank_you,i appreciate that,original,bye,2 -thank_you,thankyou,parrot,bye,2 -yes,uh huh,original,book,1 -yes,right,parrot,book,1 -goodbye,you're done,parrot,bye,2 -greeting,hola!,original,greet,4 -yes,agreed,original,book,1 -greeting,welcome,parrot,greet,4 -thank_you,thanks for the payment,parrot,bye,2 -goodbye,i'm leaving now,lambada,bye,2 -no,no thanks,original,cancel,3 -schedule_meeting,is there a meeting room available between 9 and 11?,parrot,book,1 -thank_you,my thanks,parrot,bye,2 -how_busy,how long can i expect to wait for a table in the restaurant?,parrot,avail,0 -date,describe the day?,parrot,avail,0 -no,that's incorrect,original,cancel,3 -how_busy,tell me how much time i have to wait for a table at dibruno,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -goodbye,need to catch up,parrot,bye,2 -goodbye,goodbye thank you,parrot,bye,2 -no,i prefer not,parrot,cancel,3 -meeting_schedule,is there any meetings today?,parrot,avail,0 -goodbye,later goodbye,parrot,bye,2 -thank_you,thank you for everything you've done,lambada,bye,2 -no,that's a false statement,lambada,cancel,3 -goodbye,fairwell,original,bye,2 -no,negating,parrot,cancel,3 -thank_you,thank you for answering,parrot,bye,2 -date,what year?,parrot,avail,0 -thank_you,merci beaucoup,original,bye,2 -goodbye,adios,original,bye,2 -no,no it's not correct,parrot,cancel,3 -schedule_meeting,the meeting needs to be set up for john at 9am,parrot,book,1 -no,and it's very false,parrot,cancel,3 -thank_you,okay thank you,parrot,bye,2 -greeting,how's the situation?,parrot,greet,4 -yes,TRUE,original,book,1 -yes,that is accurate,original,book,1 -greeting,wassup,original,greet,4 -yes,right,parrot,book,1 -no,it's overwhelmingly negative,parrot,cancel,3 -thank_you,my gratitude,parrot,bye,2 -calendar,when do i have a meeting in december next?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -goodbye,good luck,lambada,bye,2 -reminder_update,remind me,original,resched,5 -yes,TRUE,original,book,1 -greeting,hi,original,greet,4 -yes,that would be great,original,book,1 -goodbye,i need to go for it now,lambada,bye,2 -no,nada,original,cancel,3 -thank_you,thanks for the payment,parrot,bye,2 -yes,correct,original,book,1 -thank_you,i appreciate the help,original,bye,2 -thank_you,good job,lambada,bye,2 -yes,accepted,original,book,1 -no,negative,original,cancel,3 -yes,yeap,original,book,1 -goodbye,goodbye,original,bye,2 -meeting_schedule,what's my meeting plan?,parrot,avail,0 -yes,affirmative,original,book,1 -calendar,what's on my calendar for march 28?,parrot,avail,0 -how_busy,waiting at cheeseburgers?,parrot,avail,0 -goodbye,i'm out,parrot,bye,2 -no,naw,parrot,cancel,3 -greeting,how's my life?,parrot,greet,4 -how_busy,how long will i wait if i want to go to cheese cake factory,lambada,avail,0 -calendar,can you tell me what is on my calendar for march 30?,parrot,avail,0 -goodbye,until next time!,original,bye,2 -date,what's today,original,avail,0 -calendar,can you check something on my calendar for a repair?,parrot,avail,0 -no,that's a no,lambada,cancel,3 -goodbye,regards,original,bye,2 -yes,uh huh,original,book,1 -how_busy,how long will it take to eat black jack?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -goodbye,thank you for talking to me,lambada,bye,2 -greeting,hello siri,original,greet,4 -no,this is my false statement,lambada,cancel,3 -meeting_schedule,i wanna know when my meeting is with dan,original,avail,0 -greeting,what's happened?,parrot,greet,4 -yes,TRUE,lambada,book,1 -no,indeed it's false,parrot,cancel,3 -thank_you,okay thank you,parrot,bye,2 -thank_you,well done,parrot,bye,2 -how_busy,how long will i have to wait for a table at the cheesecake factory?,parrot,avail,0 -yes,all right,original,book,1 -thank_you,i sincerely thank you,parrot,bye,2 -greeting,hey there,original,greet,4 -goodbye,goodbye now,parrot,bye,2 -no,certainly not,original,cancel,3 -calendar,please check my calendar for an event called annual physical,parrot,avail,0 -goodbye,later goodbye,parrot,bye,2 -greeting,aloha,original,greet,4 -thank_you,thanks for the update,lambada,bye,2 -thank_you,thanks please,original,bye,2 -greeting,how's life?,parrot,greet,4 -reminder_update,new reminder please,lambada,resched,5 -yes,it's positive,parrot,book,1 -no,that’s not correct,original,cancel,3 -yes,accept,parrot,book,1 -greeting,wassup,original,greet,4 -goodbye,", goodbye",lambada,bye,2 -yes,uh-huh,original,book,1 -goodbye,good night,original,bye,2 -date,i need a date,parrot,avail,0 -yes,affirmitive,original,book,1 -how_busy,does olive garden have a lot of seating at 8pm?,lambada,avail,0 -greeting,how've you been,original,greet,4 -how_busy,is jack's steakhouse usually packed when we're there?,parrot,avail,0 -greeting,how's everything,original,greet,4 -goodbye,fairwell,original,bye,2 -no,not correct,parrot,cancel,3 -reminder_update,come on please,parrot,resched,5 -calendar_update,cancel doctors appointment from my calendar,original,resched,5 -greeting,hey,original,greet,4 -how_busy,how busy is the olive garden at 12 pm,lambada,avail,0 -greeting,hello,original,greet,4 -greeting,heller,original,greet,4 -no,certainly not,original,cancel,3 -greeting,hi ai,original,greet,4 -yes,confirm,original,book,1 -yes,positive,original,book,1 -greeting,whats up?,parrot,greet,4 -how_busy,do i know how long i will need to wait to go to caesar's steakhouse?,lambada,avail,0 -greeting,yo,original,greet,4 -date,what's today,original,avail,0 -no,that's incorrect,original,cancel,3 -greeting,whats up?,parrot,greet,4 -no,FALSE,original,cancel,3 -goodbye,goodbye,original,bye,2 -no,FALSE,original,cancel,3 -no,not correct,parrot,cancel,3 -calendar_update,i have to make an appointment for tomorrow at 10 am,parrot,resched,5 -how_busy,tell me the wait time at applebee's,parrot,avail,0 -goodbye,i'm gone,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -greeting,and what's up?,parrot,greet,4 -how_busy,what's the wait time at the red robin?,parrot,avail,0 -how_busy,is ihop busy at 9?,parrot,avail,0 -thank_you,i'm glad you helped me,lambada,bye,2 -no,that is wrong,original,cancel,3 -goodbye,have fun?,lambada,bye,2 -yes,yeap,original,book,1 -yes,indeed,original,book,1 -greeting,heyo,original,greet,4 -how_busy,tell me the time it takes to be in the restaurant?,parrot,avail,0 -yes,my answer is yes,parrot,book,1 -greeting,how is everything going for you,original,greet,4 -goodbye,bye bye,lambada,bye,2 -goodbye,have to run,parrot,bye,2 -goodbye,buhbye now,lambada,bye,2 -goodbye,later!,original,bye,2 -yes,i want that,parrot,book,1 -no,that's definitely false,original,cancel,3 -yes,yay,lambada,book,1 -no,certainly false,parrot,cancel,3 -yes,"yes, that is accurate",original,book,1 -yes,it's a fact,parrot,book,1 -greeting,whats new?,parrot,greet,4 -yes,definitely,original,book,1 -goodbye,until next time!,original,bye,2 -greeting,heyo,original,greet,4 -goodbye,farewell,original,bye,2 -yes,that's a clear yes,parrot,book,1 -calendar,what is showing on my calendar for the 17th of march?,original,avail,0 -yes,TRUE,lambada,book,1 -no,not correct,parrot,cancel,3 -no,naw,parrot,cancel,3 -meeting_schedule,please let me know my schedule for the day,parrot,avail,0 -no,please disagree,lambada,cancel,3 -greeting,good morning,parrot,greet,4 -greeting,"hello, how's my day",original,greet,4 -calendar,read my appointments for march 2,original,avail,0 -no,is my falsehood?,parrot,cancel,3 -yes,great,original,book,1 -yes,so it's true,parrot,book,1 -yes,"yes, that's true",lambada,book,1 -thank_you,okay thanks,original,bye,2 -greeting,how's it going,lambada,greet,4 -greeting,whats up?,parrot,greet,4 -yes,10-Apr,original,book,1 -thank_you,good job,lambada,bye,2 -thank_you,it pleased me,parrot,bye,2 -goodbye,peace,original,bye,2 -greeting,how is the ai feeling?,parrot,greet,4 -yes,agreed,original,book,1 -no,that's not correct,original,cancel,3 -no,that’s incorrect,original,cancel,3 -greeting,hello bs,parrot,greet,4 -date,can you give me a date for today,parrot,avail,0 -greeting,well hello,original,greet,4 -greeting,hi how're things going,lambada,greet,4 -yes,a fact,parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,what's happening,original,greet,4 -yes,yeah that's right,lambada,book,1 -greeting,salutations!,original,greet,4 -thank_you,you've been great,parrot,bye,2 -no,nothing good,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -yes,i think it's true,original,book,1 -no,negation,parrot,cancel,3 -goodbye,peace out,original,bye,2 -no,that isn't true,lambada,cancel,3 -yes,it'd be great,parrot,book,1 -no,it's no,parrot,cancel,3 -yes,yeap,original,book,1 -no,say negative,parrot,cancel,3 -date,what year?,parrot,avail,0 -goodbye,thanks goodbye,parrot,bye,2 -yes,accepted,original,book,1 -date,what will be the date after marriage?,parrot,avail,0 -no,invalid,original,cancel,3 -thank_you,you've tried,parrot,bye,2 -yes,great,original,book,1 -yes,yeah,original,book,1 -no,FALSE,lambada,cancel,3 -goodbye,goodnight,original,bye,2 -no,negative,original,cancel,3 -greeting,what's happening,original,greet,4 -how_busy,how busy is macaroni and cheese at 6?,parrot,avail,0 -yes,so it's true,parrot,book,1 -greeting,how's my family going?,parrot,greet,4 -no,that's wrong,original,cancel,3 -no,that's completely wrong,parrot,cancel,3 -goodbye,buhbye now,lambada,bye,2 -goodbye,sayonara,original,bye,2 -greeting,salutations,parrot,greet,4 -goodbye,tootles,original,bye,2 -goodbye,the conversation was great,parrot,bye,2 -goodbye,"enjoy my day, bye",lambada,bye,2 -reminder_update,remember to take care of yourself,parrot,resched,5 -yes,obviously,parrot,book,1 -yes,accept,parrot,book,1 -yes,is true,parrot,book,1 -cancel_reservation,cancel the table i reserved at the oyster bar,lambada,cancel,3 -reminder_update,can you set me up with a reminder to pay rent?,parrot,resched,5 -date,do you have a date?,parrot,avail,0 -no,so it's not possible,parrot,cancel,3 -date,please tell me what the date is,lambada,avail,0 -how_busy,is iman busy around five?,lambada,avail,0 -yes,affirmitive,original,book,1 -no,it seems not,original,cancel,3 -greeting,what's happened?,parrot,greet,4 -greeting,"hey, what's new",original,greet,4 -greeting,good morning ai,parrot,greet,4 -reminder_update,remind me to clean my room,parrot,resched,5 -no,i think it's incorrect,parrot,cancel,3 -yes,positive,original,book,1 -yes,affirmative,original,book,1 -meeting_schedule,meeting today,parrot,avail,0 -yes,you're right,original,book,1 -yes,absolutely,original,book,1 -greeting,you're all right?,parrot,greet,4 -thank_you,thanks for trying,original,bye,2 -cancel_reservation,call off the dinner reservation,original,cancel,3 -no,negating,parrot,cancel,3 -goodbye,bye-bye,original,bye,2 -how_busy,tell me the time it takes to get in this steakhouse?,parrot,avail,0 -cancel_reservation,cancell my dinner reservation,parrot,cancel,3 -yes,accepted,original,book,1 -goodbye,go easy,parrot,bye,2 -calendar,do i have a check on my calendar for tuesday?,lambada,avail,0 -yes,of course,original,book,1 -date,what will be tomorrow?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -no,that's bad,parrot,cancel,3 -date,date tomorrow?,parrot,avail,0 -yes,affirmative,original,book,1 -no,not good,parrot,cancel,3 -reminder_update,make me remember to pay my utility bill,parrot,resched,5 -yes,facts,original,book,1 -yes,just right,parrot,book,1 -thank_you,i appreciate your answer,parrot,bye,2 -cancel_reservation,i won't require my reservation anymore,original,cancel,3 -thank_you,thanks again!,original,bye,2 -how_busy,how long do you think i'll have to wait for a table in olive garden,parrot,avail,0 -greeting,how's that hanging?,parrot,greet,4 -reminder_update,make me a reminder to pay my utility bill,lambada,resched,5 -greeting,why hello?,original,greet,4 -schedule_meeting,how do i schedule meetings?,parrot,book,1 -date,i'm trying to find out what date it will be,lambada,avail,0 -no,that seems wrong,lambada,cancel,3 -yes,uh-huh,original,book,1 -yes,i just said it,parrot,book,1 -no,but that's certainly not true,parrot,cancel,3 -calendar,tell me what's on my calendar for march 23rd,parrot,avail,0 -no,don't agree,parrot,cancel,3 -no,nope,original,cancel,3 -goodbye,later,original,bye,2 -yes,do that?,original,book,1 -goodbye,later gater,original,bye,2 -greeting,how're you today?,parrot,greet,4 -greeting,what's happened?,parrot,greet,4 -goodbye,bye bye,lambada,bye,2 -date,what's the next month and day?,parrot,avail,0 -thank_you,why thank you?,original,bye,2 -goodbye,farewell!,original,bye,2 -no,negative certainly,parrot,cancel,3 -goodbye,regards,original,bye,2 -no,i don't think that's the case,parrot,cancel,3 -greeting,good morning,parrot,greet,4 -greeting,bonjour,original,greet,4 -goodbye,i'll leave now,parrot,bye,2 -how_busy,how long will i have to wait to be seated at the imovie,parrot,avail,0 -no,negating,parrot,cancel,3 -yes,absolutely!,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -reminder_update,i'd like to remind you to bring the plants tonight,parrot,resched,5 -goodbye,later,original,bye,2 -how_busy,what time can i expect to be seated at this restaurant?,original,avail,0 -goodbye,tootles,original,bye,2 -goodbye,goodbye,original,bye,2 -how_busy,how long will it take me to get a table at the buffalo wing,parrot,avail,0 -yes,indeed,original,book,1 -reminder_update,can you remind me to wash?,parrot,resched,5 -thank_you,appreciated,original,bye,2 -yes,i guess you're right,parrot,book,1 -greeting,hey how's ot,lambada,greet,4 -goodbye,bye!,original,bye,2 -goodbye,bye!,original,bye,2 -yes,sure thing,original,book,1 -date,what date today?,parrot,avail,0 -greeting,what's going on with you?,parrot,greet,4 -how_busy,what's the olive garden like at 10?,parrot,avail,0 -how_busy,mcdonald's busy around 9?,parrot,avail,0 -yes,affirmitive,original,book,1 -yes,say yes,lambada,book,1 -no,FALSE,lambada,cancel,3 -greeting,why hello?,original,greet,4 -goodbye,great talking with you,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -greeting,well hi there,original,greet,4 -reminder_update,set a reminder,original,resched,5 -greeting,how's idy?,parrot,greet,4 -thank_you,thanks!,original,bye,2 -schedule_meeting,i want to have a meeting with bob tomorrow,parrot,book,1 -goodbye,peace,original,bye,2 -yes,sure,original,book,1 -yes,yeah yeah,lambada,book,1 -yes,a fact,parrot,book,1 -no,please disagree,lambada,cancel,3 -greeting,what's new?,parrot,greet,4 -goodbye,peace,original,bye,2 -date,tell me what day of the week it's?,parrot,avail,0 -yes,i think that's right,parrot,book,1 -greeting,why hello?,original,greet,4 -goodbye,good talking to you,lambada,bye,2 -thank_you,thanks,original,bye,2 -yes,great,original,book,1 -thank_you,thanks,original,bye,2 -no,we don't want that,parrot,cancel,3 -greeting,hey there,original,greet,4 -yes,i agree,original,book,1 -greeting,what's happening?,parrot,greet,4 -greeting,how's this going?,parrot,greet,4 -no,negating,parrot,cancel,3 -goodbye,thank you for contacting me,parrot,bye,2 -goodbye,"great talk, thanks",original,bye,2 -goodbye,fairwell,original,bye,2 -greeting,what is new?,parrot,greet,4 -yes,agreed,original,book,1 -no,that's so false,parrot,cancel,3 -goodbye,"thanks for the chat, goodbye",lambada,bye,2 -goodbye,see ya!,original,bye,2 -date,what's today,original,avail,0 -goodbye,i'm out of this,parrot,bye,2 -how_busy,when is chili busy?,parrot,avail,0 -yes,that's a clear yes,parrot,book,1 -yes,perfect,parrot,book,1 -reminder_update,pay taxes on monday,parrot,resched,5 -goodbye,adios,original,bye,2 -goodbye,take it easy!,original,bye,2 -cancel_reservation,the reservation i made is no longer required,parrot,cancel,3 -greeting,hey bs,lambada,greet,4 -goodbye,please talk soon,parrot,bye,2 -yes,i know this is true,lambada,book,1 -no,erroneous,parrot,cancel,3 -goodbye,adios!,original,bye,2 -goodbye,bye now,original,bye,2 -greeting,yo,original,greet,4 -schedule_meeting,how can i schedule a meeting,original,book,1 -no,nay,original,cancel,3 -goodbye,adios,original,bye,2 -how_busy,can you tell me how long the wait will be at olive garden at 5pm?,lambada,avail,0 -goodbye,bye,original,bye,2 -no,it's not true,parrot,cancel,3 -yes,facts,original,book,1 -yes,confirm,original,book,1 -goodbye,thank you for talking to me,lambada,bye,2 -reminder_update,save the reminder for later,parrot,resched,5 -no,erroneous,parrot,cancel,3 -greeting,how's life?,parrot,greet,4 -yes,absolutely,original,book,1 -no,nay,original,cancel,3 -greeting,how's my treatment?,parrot,greet,4 -no,so that's no,parrot,cancel,3 -thank_you,thanks for the cooperation,parrot,bye,2 -date,a year?,parrot,avail,0 -yes,a fact,parrot,book,1 -goodbye,see ya,lambada,bye,2 -goodbye,peace out!,original,bye,2 -date,what year?,parrot,avail,0 -thank_you,thanks a million,original,bye,2 -yes,yay,lambada,book,1 -goodbye,goodbye,original,bye,2 -no,the information is incorrect,parrot,cancel,3 -yes,ok,original,book,1 -yes,a fact,parrot,book,1 -greeting,hello what's happening,parrot,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -date,in 8 days?,parrot,avail,0 -greeting,what's happened?,parrot,greet,4 -thank_you,i appeciate it,parrot,bye,2 -yes,oh-huh,parrot,book,1 -how_busy,how long will i have to wait before being seated in this restaurant?,parrot,avail,0 -no,negation,parrot,cancel,3 -yes,definitely,original,book,1 -how_busy,is the wait at the cheese cake factory too long?,parrot,avail,0 -goodbye,go easy,parrot,bye,2 -yes,absolutely!,original,book,1 -reminder_update,remember to call bob tomorrow,parrot,resched,5 -cancel_reservation,please cancel my reservation for chris at the brio,parrot,cancel,3 -calendar,tell me what events are in my calendar for march 23rd?,lambada,avail,0 -greeting,aloha,original,greet,4 -date,what a day is it?,parrot,avail,0 -yes,huh,parrot,book,1 -greeting,how's idy?,parrot,greet,4 -goodbye,the chat was good,parrot,bye,2 -goodbye,bye!,original,bye,2 -greeting,you good?,parrot,greet,4 -yes,yes,original,book,1 -yes,okay,original,book,1 -no,ill pass,original,cancel,3 -thank_you,and i'm grateful,parrot,bye,2 -goodbye,goodbye later,parrot,bye,2 -how_busy,how long will i have to wait if i want to go to tom's fries,lambada,avail,0 -how_busy,does the cheesecake factory have lots of people?,parrot,avail,0 -greeting,hola,original,greet,4 -greeting,how's everything,original,greet,4 -greeting,hey hey!,original,greet,4 -calendar,tell me what is on my calendar for march 2?,original,avail,0 -greeting,how's that hanging?,parrot,greet,4 -greeting,are you good?,original,greet,4 -yes,great,original,book,1 -greeting,"hello, how is it going",original,greet,4 -how_busy,check how busy the chili is at 10 am,parrot,avail,0 -date,can you tell me tomorrow's date?,original,avail,0 -how_busy,how long do you expect to wait at the cheesecake factory?,parrot,avail,0 -thank_you,it pleased me,parrot,bye,2 -yes,10-Apr,original,book,1 -how_busy,how busy is chocolate fountain around 10,lambada,avail,0 -goodbye,greetings,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -how_busy,how long will chili's wait,parrot,avail,0 -goodbye,sayonara,original,bye,2 -goodbye,later gater,original,bye,2 -yes,huh huh,parrot,book,1 -yes,TRUE,original,book,1 -greeting,what's happening to you?,parrot,greet,4 -yes,good,parrot,book,1 -goodbye,peace,original,bye,2 -date,date tomorrow,parrot,avail,0 -yes,very true,original,book,1 -date,what's the day now?,parrot,avail,0 -yes,affirmitive,original,book,1 -no,naw,original,cancel,3 -no,negatory,original,cancel,3 -thank_you,thank you?,parrot,bye,2 -date,what day of the month is this?,parrot,avail,0 -no,i disagree,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -calendar,check my calendar for saturday,original,avail,0 -goodbye,until next time,original,bye,2 -how_busy,what is the typical time to be seated at this restaurant?,lambada,avail,0 -goodbye,greetings,parrot,bye,2 -goodbye,time to say goodbye,parrot,bye,2 -no,not true,original,cancel,3 -goodbye,it's over,parrot,bye,2 -greeting,aloha,original,greet,4 -greeting,hi how are you?,parrot,greet,4 -goodbye,i'll go,parrot,bye,2 -greeting,yo,original,greet,4 -greeting,salutation,parrot,greet,4 -yes,10-Apr,original,book,1 -how_busy,if i want to go to tom's fries how long will it take?,parrot,avail,0 -yes,accepted,original,book,1 -cancel_reservation,please cancel my booking,parrot,cancel,3 -date,list the next week?,parrot,avail,0 -no,it's not correct,parrot,cancel,3 -no,is a lie?,parrot,cancel,3 -no,definitely not,original,cancel,3 -yes,please let's do it,original,book,1 -greeting,hola,original,greet,4 -yes,i can confirm,parrot,book,1 -no,FALSE,lambada,cancel,3 -goodbye,will leave now,parrot,bye,2 -greeting,hi what's up,original,greet,4 -greeting,hiya,original,greet,4 -thank_you,thanks so much,original,bye,2 -how_busy,how long until i go to the restaurant?,parrot,avail,0 -how_busy,what's the wait at milton's at 11,lambada,avail,0 -goodbye,good night,original,bye,2 -no,no no thanks,parrot,cancel,3 -yes,TRUE,lambada,book,1 -no,negative for sure,original,cancel,3 -yes,exactly right,original,book,1 -yes,that's a yes,original,book,1 -date,in three days,parrot,avail,0 -goodbye,"nice talk, goodbye",lambada,bye,2 -yes,is true,parrot,book,1 -greeting,"ai, how is my life",lambada,greet,4 -yes,ok,original,book,1 -how_busy,how long will the restaurant last before lunch?,parrot,avail,0 -date,do you know the date of today?,parrot,avail,0 -greeting,are you good?,original,greet,4 -no,you can't make that statement true,parrot,cancel,3 -yes,yeah,original,book,1 -no,"please, no",original,cancel,3 -yes,my answer is yes,parrot,book,1 -greeting,hello ai,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -yes,accept,parrot,book,1 -goodbye,later gator!,original,bye,2 -goodbye,bye bye,lambada,bye,2 -greeting,what's happening?,parrot,greet,4 -no,that is no,lambada,cancel,3 -greeting,you good?,parrot,greet,4 -meeting_schedule,wanna meet with roger?,parrot,avail,0 -reminder_update,let me know,parrot,resched,5 -no,that's bad,parrot,cancel,3 -greeting,good evening,original,greet,4 -no,negating,parrot,cancel,3 -no,nope,original,cancel,3 -reminder_update,can you give me a reminder to bathe?,parrot,resched,5 -yes,certainly,parrot,book,1 -greeting,hola,original,greet,4 -thank_you,gracias,original,bye,2 -greeting,how are you today?,parrot,greet,4 -no,it's completely false,parrot,cancel,3 -thank_you,your assistance is appreciated,parrot,bye,2 -no,absolutely not,original,cancel,3 -goodbye,good call,parrot,bye,2 -no,don't like that,parrot,cancel,3 -how_busy,how busy is macaroni and cheese?,parrot,avail,0 -yes,definitely confirmed,parrot,book,1 -yes,perfect,parrot,book,1 -yes,positive,original,book,1 -greeting,"hi there, how are things",original,greet,4 -greeting,aho,parrot,greet,4 -thank_you,appreciated,original,bye,2 -goodbye,bye bye!,original,bye,2 -no,negatory,original,cancel,3 -calendar_update,can you add events to my calendar,parrot,resched,5 -no,negatory,original,cancel,3 -no,that's not acceptable,parrot,cancel,3 -no,please disagree,lambada,cancel,3 -greeting,how're you doing,original,greet,4 -goodbye,will be talking to you soon,parrot,bye,2 -cancel_reservation,you can cancel my reservation for five at the loft,parrot,cancel,3 -greeting,how you are?,parrot,greet,4 -date,is it monday?,parrot,avail,0 -goodbye,it was nice to talk to you,lambada,bye,2 -schedule_meeting,please book a meeting room for thusday at 4:00,original,book,1 -meeting_schedule,time of meeting?,parrot,avail,0 -calendar_update,i need to put my grocery store's calendar on the calendar for tomorrow,lambada,resched,5 -goodbye,goodnight,original,bye,2 -no,no it's a no,parrot,cancel,3 -no,naw,parrot,cancel,3 -no,the negator,parrot,cancel,3 -reminder_update,i have to make a reminder for dinner,parrot,resched,5 -no,"no, that is a falsehood",original,cancel,3 -greeting,how's my day going,lambada,greet,4 -goodbye,farewell!,original,bye,2 -greeting,how's my doing?,parrot,greet,4 -no,no good,original,cancel,3 -thank_you,i'm very thankful,parrot,bye,2 -greeting,whats new?,parrot,greet,4 -no,it's overwhelmingly negative,parrot,cancel,3 -how_busy,how long will i have to wait at the cheesecake factory,parrot,avail,0 -how_busy,how busy will ihop be at 5:30,lambada,avail,0 -thank_you,okay thanks,original,bye,2 -thank_you,appreciated,original,bye,2 -no,that's inaccurate,original,cancel,3 -goodbye,i'm leaving,parrot,bye,2 -thank_you,i'm grateful,original,bye,2 -no,negative definitely,parrot,cancel,3 -thank_you,appreciate the support,parrot,bye,2 -reminder_update,i'd like to set a reminder to give my boss the paycheck,parrot,resched,5 -goodbye,goodbyes,parrot,bye,2 -thank_you,you're a good help,parrot,bye,2 -goodbye,thank you for my conversation,parrot,bye,2 -goodbye,farewell to you,lambada,bye,2 -goodbye,bye!,original,bye,2 -calendar_update,please get rid of my prom from march 25th,parrot,resched,5 -yes,accept,parrot,book,1 -schedule_meeting,i need you to schedule a meeting with bob brown at noon the day after,parrot,book,1 -goodbye,as regards,parrot,bye,2 -meeting_schedule,when will i meet with loren today?,parrot,avail,0 -no,"no, that's not it",original,cancel,3 -how_busy,can you tell me about the wait at olive garden right now?,parrot,avail,0 -yes,affirmitive,original,book,1 -yes,"yes, that is right",original,book,1 -goodbye,have fun?,lambada,bye,2 -goodbye,peace,original,bye,2 -greeting,ahoy,lambada,greet,4 -calendar,what's going on in the march 2 calendar?,parrot,avail,0 -goodbye,bye my friend,parrot,bye,2 -greeting,so how's everything?,parrot,greet,4 -no,naw,parrot,cancel,3 -thank_you,really great!,original,bye,2 -no,negative certainly,parrot,cancel,3 -how_busy,is that olive garden busy?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -greeting,how're you doing,original,greet,4 -yes,ok,original,book,1 -how_busy,waiting for a burger in red lobster,parrot,avail,0 -yes,ok,original,book,1 -goodbye,goodbye for now,parrot,bye,2 -greeting,hey fellows,parrot,greet,4 -greeting,salutations,parrot,greet,4 -goodbye,please talk to me,parrot,bye,2 -yes,agreed,original,book,1 -thank_you,good job with trying to make sure i'm doing well,lambada,bye,2 -date,please date,parrot,avail,0 -greeting,hi,original,greet,4 -greeting,hiya,original,greet,4 -yes,positive,parrot,book,1 -goodbye,sayonara ,parrot,bye,2 -meeting_schedule,when are we gonna meet?,parrot,avail,0 -calendar,if i have an appointment on march 17th let me know,parrot,avail,0 -reminder_update,remind me to take out the trash in the morning,parrot,resched,5 -thank_you,you've tried,parrot,bye,2 -thank_you,i thank you,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -calendar,what's tuesday's calendar?,parrot,avail,0 -no,negatory,original,cancel,3 -goodbye,good-bye,parrot,bye,2 -no,it's a negative,parrot,cancel,3 -calendar_update,"on the 22nd of this month, we need to clear our calendar so we can leave it open for mark to visit",original,resched,5 -goodbye,greetings,parrot,bye,2 -thank_you,good job trying to make sure i'm doing well,parrot,bye,2 -how_busy,tell me the time i'll have to wait in the restaurant?,parrot,avail,0 -how_busy,how long will it take to be seated at the macaroni grill,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -greeting,how were you?,parrot,greet,4 -date,will the date be 500 days?,parrot,avail,0 -yes,TRUE,lambada,book,1 -goodbye,"later, goodbye",lambada,bye,2 -yes,right,parrot,book,1 -greeting,"hello, friend",original,greet,4 -no,that's totally false,parrot,cancel,3 -greeting,hey what's going on?,parrot,greet,4 -greeting,salutations,parrot,greet,4 -greeting,how's my life?,parrot,greet,4 -no,not at all,original,cancel,3 -goodbye,later,original,bye,2 -goodbye,goodbye!,original,bye,2 -greeting,hola!,original,greet,4 -schedule_meeting,i want a meeting,parrot,book,1 -cancel_reservation,abrogate the dinner reservation,parrot,cancel,3 -yes,approved,original,book,1 -yes,indeed,original,book,1 -thank_you,i'm grateful,original,bye,2 -thank_you,i'm so grateful,parrot,bye,2 -yes,very true,original,book,1 -yes,huh huh,parrot,book,1 -no,negatory,original,cancel,3 -yes,okay,original,book,1 -schedule_meeting,i want to know if i can schedule a meeting,lambada,book,1 -yes,approved,original,book,1 -yes,yay,lambada,book,1 -thank_you,okay thank you,parrot,bye,2 -no,so that's no,parrot,cancel,3 -greeting,how you're treated?,parrot,greet,4 -goodbye,sayonara ,parrot,bye,2 -thank_you,much obliged,original,bye,2 -no,that is incorrect,original,cancel,3 -no,i am saying no,original,cancel,3 -thank_you,thank you for making my life easier,parrot,bye,2 -reminder_update,please do not forget,parrot,resched,5 -goodbye,tootles,original,bye,2 -goodbye,take it easy!,original,bye,2 -yes,that is affirmative,original,book,1 -goodbye,send a goodbye,lambada,bye,2 -greeting,ahoy,lambada,greet,4 -thank_you,"thanks, you've helped me",original,bye,2 -greeting,salutation,parrot,greet,4 -meeting_schedule,when i'll meet roger?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -calendar,tell me what is currently showing on my calendar for thursday the 1st?,lambada,avail,0 -how_busy,how busy will the olive garden be at 9pm?,parrot,avail,0 -how_busy,tell me how busy the red robin is at 7pm?,lambada,avail,0 -no,negative,original,cancel,3 -no,so that's no,parrot,cancel,3 -goodbye,i'm glad you talked to me,parrot,bye,2 -no,negating,parrot,cancel,3 -reminder_update,remind me to call my mother saturday morning,original,resched,5 -goodbye,", goodbye",lambada,bye,2 -meeting_schedule,when is my meeting with joe scheduled?,parrot,avail,0 -reminder_update,add a note,parrot,resched,5 -meeting_schedule,any meetings on schedule today,parrot,avail,0 -greeting,how's the life?,parrot,greet,4 -yes,"agreed, that's valid",original,book,1 -how_busy,how many people are in chili's around 9 pm,parrot,avail,0 -schedule_meeting,can you schedule a meeting with jessica at the office?,parrot,book,1 -calendar_update,please clear my calendar,original,resched,5 -how_busy,tell me the time to wait for a pizza at ookla?,parrot,avail,0 -calendar,when do you have a meeting next month?,parrot,avail,0 -thank_you,appreciate it,original,bye,2 -yes,please confirm this is true,parrot,book,1 -no,naw,original,cancel,3 -goodbye,catch you around,original,bye,2 -greeting,hey bs,lambada,greet,4 -yes,"yep, that's true",original,book,1 -how_busy,how long will the wait be at cheesecake factory,lambada,avail,0 -calendar,help me find my schedule for january 4th,parrot,avail,0 -cancel_reservation,can i cancel my steakhouse reservation?,parrot,cancel,3 -no,hell nah,original,cancel,3 -no,that's incorrect,original,cancel,3 -yes,i can tell you,parrot,book,1 -greeting,hey fellows,parrot,greet,4 -greeting,salutations,parrot,greet,4 -thank_you,thanks very much,parrot,bye,2 -yes,absolutely correct,original,book,1 -greeting,how've you been feeling,original,greet,4 -no,negatory?,parrot,cancel,3 -thank_you,gracias,original,bye,2 -goodbye,greetings,parrot,bye,2 -calendar,can you tell me what's on my calendar for march 31st?,lambada,avail,0 -date,in 7 days?,parrot,avail,0 -yes,definitely,original,book,1 -goodbye,im leaving,parrot,bye,2 -no,"please, no",original,cancel,3 -yes,agreed,original,book,1 -yes,10-Apr,original,book,1 -no,it's false,parrot,cancel,3 -how_busy,how long will i have to wait to get a table at angel wings,parrot,avail,0 -no,that's wrong,original,cancel,3 -date,what year is tomorrow?,parrot,avail,0 -calendar,get events in my calendar,parrot,avail,0 -no,that’s incorrect,original,cancel,3 -goodbye,i must run now,parrot,bye,2 -greeting,heyo,original,greet,4 -goodbye,i'm leaving now,lambada,bye,2 -greeting,hi,original,greet,4 -yes,yay,lambada,book,1 -no,definitely not,original,cancel,3 -how_busy,how busy will avocado forest be at 8 pm,lambada,avail,0 -no,it's a negative,parrot,cancel,3 -no,it's the wrong answer,parrot,cancel,3 -no,that's not factual,parrot,cancel,3 -yes,positive,original,book,1 -how_busy,how long will i have to wait for a steak at,lambada,avail,0 -yes,good,parrot,book,1 -no,no?,parrot,cancel,3 -yes,ya,original,book,1 -greeting,aloha,original,greet,4 -greeting,hello there,original,greet,4 -greeting,welcome,parrot,greet,4 -greeting,"hey, ai",original,greet,4 -yes,yes sir,original,book,1 -no,it's a mistake,parrot,cancel,3 -goodbye,the talk was nice,lambada,bye,2 -how_busy,how busy is georgios around 11?,parrot,avail,0 -goodbye,later!,original,bye,2 -how_busy,how busy is ihop now?,parrot,avail,0 -date,what date is tomorrow?,original,avail,0 -yes,you got it,parrot,book,1 -no,naw,parrot,cancel,3 -yes,good,parrot,book,1 -yes,great,original,book,1 -goodbye,get there soon,lambada,bye,2 -goodbye,maybe next time,parrot,bye,2 -no,i believe it's wrong,parrot,cancel,3 -date,where's the date tomorrow?,parrot,avail,0 -goodbye,enjoy my day goodbye,parrot,bye,2 -yes,huh huh,parrot,book,1 -greeting,aho,parrot,greet,4 -no,so that's no,parrot,cancel,3 -goodbye,good call,parrot,bye,2 -date,let me know what date it is,parrot,avail,0 -greeting,what's happening?,parrot,greet,4 -greeting,yo how's it going,parrot,greet,4 -goodbye,goodbye goodbye,parrot,bye,2 -goodbye,goodbye to yours,parrot,bye,2 -calendar,is there a date on my calendar that i have to pay for my surgery?,parrot,avail,0 -greeting,hola,original,greet,4 -reminder_update,create a reminder for me to send flowers to my mom for mother's day,original,resched,5 -thank_you,okay thanks,original,bye,2 -no,that's a negation,parrot,cancel,3 -no,nay,original,cancel,3 -greeting,how's idy?,parrot,greet,4 -yes,yeah,original,book,1 -yes,"yes, that's accurate",original,book,1 -date,give me the date,original,avail,0 -yes,it is true,original,book,1 -date,what is tomorrow?,parrot,avail,0 -how_busy,how busy will the panera be at noon?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how long until dinner?,parrot,avail,0 -no,negation,parrot,cancel,3 -goodbye,later!,original,bye,2 -how_busy,is mcdonalds busy?,parrot,avail,0 -greeting,whats new?,parrot,greet,4 -no,nope,original,cancel,3 -yes,i'll say yes,parrot,book,1 -greeting,hola,original,greet,4 -how_busy,how busy is the tomato plant at 5pm?,parrot,avail,0 -schedule_meeting,i need a meeting with mike at 5pm,parrot,book,1 -greeting,what's new?,parrot,greet,4 -no,nada,original,cancel,3 -goodbye,have to run,parrot,bye,2 -yes,indeed,parrot,book,1 -greeting,how's the world?,parrot,greet,4 -thank_you,well done,parrot,bye,2 -yes,"yes, please",original,book,1 -calendar,show me what's on my calendar for march 15?,parrot,avail,0 -yes,TRUE,original,book,1 -greeting,hey,original,greet,4 -goodbye,glad we talked,parrot,bye,2 -thank_you,thanks for that,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -yes,"yep, that's true",original,book,1 -thank_you,very grateful,parrot,bye,2 -no,negative for sure,original,cancel,3 -no,naw,original,cancel,3 -goodbye,glad to talk,parrot,bye,2 -goodbye,i'm leaving now,lambada,bye,2 -reminder_update,let me be reminded,parrot,resched,5 -greeting,hey what's up?,parrot,greet,4 -greeting,what's happening?,parrot,greet,4 -yes,you're right,original,book,1 -greeting,why hello?,original,greet,4 -goodbye,bye bye,lambada,bye,2 -greeting,heyo,original,greet,4 -no,false for sure,original,cancel,3 -calendar_update,add my work in my calendar,parrot,resched,5 -date,current day,parrot,avail,0 -greeting,hey,original,greet,4 -calendar_update,please clean my calendar,parrot,resched,5 -thank_you,i'm glad you did it for me,parrot,bye,2 -thank_you,i appreciate the help,original,bye,2 -thank_you,thanks!,original,bye,2 -yes,absolutely correct,original,book,1 -goodbye,afterward,parrot,bye,2 -thank_you,"i appreciate my help, thank you",original,bye,2 -greeting,you good?,parrot,greet,4 -greeting,how are things going for you?,parrot,greet,4 -goodbye,i'm glad you've had a good chat with me,parrot,bye,2 -goodbye,regards,original,bye,2 -no,nothing,parrot,cancel,3 -thank_you,you answered,parrot,bye,2 -greeting,wassup,original,greet,4 -date,you have the date?,parrot,avail,0 -how_busy,do you think outback steakhouse will be busy between 6 and 9 pm?,lambada,avail,0 -greeting,how's everything?,parrot,greet,4 -meeting_schedule,time of meeting?,parrot,avail,0 -no,nope,original,cancel,3 -no,it's false,parrot,cancel,3 -goodbye,it was very enjoyable talking with you,lambada,bye,2 -thank_you,thanks for the update,lambada,bye,2 -goodbye,adios ai,original,bye,2 -date,what year?,parrot,avail,0 -goodbye,adios!,original,bye,2 -no,nope,original,cancel,3 -greeting,what's happening?,parrot,greet,4 -goodbye,fairwell?,parrot,bye,2 -goodbye,you're done,parrot,bye,2 -yes,positive,original,book,1 -date,what's the date today?,parrot,avail,0 -yes,yay,lambada,book,1 -no,FALSE,lambada,cancel,3 -yes,good yes,lambada,book,1 -greeting,salutations!,original,greet,4 -no,FALSE,lambada,cancel,3 -goodbye,i'm out,parrot,bye,2 -thank_you,appreciated,original,bye,2 -yes,do that?,original,book,1 -date,current day,parrot,avail,0 -goodbye,farewell,original,bye,2 -goodbye,goodnight,original,bye,2 -goodbye,see ya,original,bye,2 -calendar_update,take my wedding off my calendar for march 30th,parrot,resched,5 -greeting,what's up,original,greet,4 -goodbye,bye!,original,bye,2 -date,in 10 days?,parrot,avail,0 -date,what today?,parrot,avail,0 -no,i disagree with this,parrot,cancel,3 -no,nada,original,cancel,3 -yes,is true,parrot,book,1 -yes,TRUE,lambada,book,1 -greeting,how are things going?,parrot,greet,4 -how_busy,"around nine, is ambrosio busy",original,avail,0 -date,i want to know the date,parrot,avail,0 -yes,indeed,original,book,1 -greeting,so how's everything?,parrot,greet,4 -meeting_schedule,tell me if i have a meeting with liz?,parrot,avail,0 -no,nope,original,cancel,3 -meeting_schedule,when are we meeting today?,parrot,avail,0 -goodbye,sign off,parrot,bye,2 -goodbye,later!,original,bye,2 -greeting,heyo,original,greet,4 -thank_you,"awesome, thanks",original,bye,2 -how_busy,how busy is the olive garden around 3?,parrot,avail,0 -no,i don't like that,parrot,cancel,3 -thank_you,merci beaucoup,original,bye,2 -yes,10-Apr,original,book,1 -no,nope,original,cancel,3 -date,and what's the day?,parrot,avail,0 -how_busy,how long will it take to wait at 6pm?,parrot,avail,0 -goodbye,this conversation was good,parrot,bye,2 -cancel_reservation,get rid of my reservation after all,lambada,cancel,3 -yes,yup,original,book,1 -yes,absolutely,original,book,1 -greeting,how is idy?,parrot,greet,4 -thank_you,merci beaucoup,original,bye,2 -date,today?,parrot,avail,0 -how_busy,tell me how busy michel is at 5 pm?,parrot,avail,0 -reminder_update,come on please,parrot,resched,5 -greeting,whats up,original,greet,4 -yes,obviously,parrot,book,1 -yes,i guess,parrot,book,1 -greeting,how's it hanging,original,greet,4 -thank_you,"great, thanks!",original,bye,2 -greeting,greetings to you,original,greet,4 -yes,say positive,parrot,book,1 -goodbye,goodbye to you,original,bye,2 -goodbye,tootles?,parrot,bye,2 -greeting,wassup,original,greet,4 -no,it seems not,original,cancel,3 -thank_you,please thank you,lambada,bye,2 -schedule_meeting,whether or not i can reserve a meeting room between 12 and 1 pm,lambada,book,1 -no,that's not correct it's false,parrot,cancel,3 -no,negative definitely,parrot,cancel,3 -meeting_schedule,what's the date of this meeting?,parrot,avail,0 -cancel_reservation,i'm going to have to cancel my reservation for tonight,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -yes,yes sir,original,book,1 -no,naw,parrot,cancel,3 -greeting,how is everything going?,parrot,greet,4 -goodbye,later gater,original,bye,2 -goodbye,good night,original,bye,2 -cancel_reservation,please cancel my reservation for 5 in the loft,parrot,cancel,3 -yes,okay,original,book,1 -goodbye,bye bye,lambada,bye,2 -no,invalid,original,cancel,3 -goodbye,regards,original,bye,2 -yes,roger that,original,book,1 -date,what date is it now?,lambada,avail,0 -no,is my false claim?,parrot,cancel,3 -goodbye,good call,parrot,bye,2 -yes,definitely yes,parrot,book,1 -reminder_update,remind me,original,resched,5 -goodbye,good bye,original,bye,2 -no,no please,parrot,cancel,3 -thank_you,you're welcome,parrot,bye,2 -no,so that's no,parrot,cancel,3 -goodbye,adios!,original,bye,2 -no,i don't agree,parrot,cancel,3 -greeting,how are you doing?,parrot,greet,4 -goodbye,later gater,original,bye,2 -goodbye,farewell,original,bye,2 -yes,absolutely,original,book,1 -goodbye,it was nice to speak with you,original,bye,2 -how_busy,if i want to eat in panera how long will i have to wait?,parrot,avail,0 -yes,yay,lambada,book,1 -greeting,how's idy?,parrot,greet,4 -goodbye,i have to get out there,parrot,bye,2 -thank_you,much obliged,original,bye,2 -yes,very true,original,book,1 -no,certainly not,original,cancel,3 -yes,that is true,original,book,1 -goodbye,adios,original,bye,2 -thank_you,i'm very grateful,parrot,bye,2 -yes,that's a yes,original,book,1 -yes,yeap,original,book,1 -schedule_meeting,is there a room available from 5 to 9?,parrot,book,1 -yes,yeap,original,book,1 -greeting,how's the ayi?,parrot,greet,4 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -no,it's false,parrot,cancel,3 -yes,ok,original,book,1 -no,"no, definitely not",original,cancel,3 -goodbye,nice drive by,lambada,bye,2 -no,it's not correct,parrot,cancel,3 -greeting,nice day,lambada,greet,4 -goodbye,good luck later,parrot,bye,2 -date,give me the date today,original,avail,0 -no,thanks no,parrot,cancel,3 -how_busy,how busy will angie be around 5 o'clock in the evening,parrot,avail,0 -how_busy,is the restaurant busy between 11 and 5 hours?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -yes,obviously,parrot,book,1 -date,i'd like to know tomorrow,parrot,avail,0 -yes,that is correct,original,book,1 -goodbye,farewell,original,bye,2 -thank_you,okay thanks,original,bye,2 -thank_you,thanks for helping me!,original,bye,2 -no,"no, definitely not",original,cancel,3 -no,nada,original,cancel,3 -yes,yep,original,book,1 -thank_you,"great, thanks!",original,bye,2 -thank_you,"oh, thanks",original,bye,2 -greeting,how are you doing today?,parrot,greet,4 -no,negatory,original,cancel,3 -reminder_update,i have a doctor appointment tomorrow at 3pm,parrot,resched,5 -greeting,what's happening?,parrot,greet,4 -goodbye,have to go now,parrot,bye,2 -no,absolutely not,original,cancel,3 -calendar_update,remove the scott's birthday party from my calendar,lambada,resched,5 -thank_you,the best,parrot,bye,2 -goodbye,goodbye later,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -no,thanks no,parrot,cancel,3 -yes,true is my response,original,book,1 -no,erroneous,parrot,cancel,3 -no,negative,original,cancel,3 -yes,definitely,original,book,1 -greeting,yo,original,greet,4 -date,in 14 days?,parrot,avail,0 -yes,not a falsehood,parrot,book,1 -date,a year?,parrot,avail,0 -goodbye,peace out!,original,bye,2 -thank_you,i'm grateful,original,bye,2 -goodbye,tootles?,parrot,bye,2 -how_busy,how long will i have to wait if i want a table at chili?,parrot,avail,0 -yes,yup,original,book,1 -meeting_schedule,what's the meeting today?,parrot,avail,0 -schedule_meeting,i need you for a meeting,parrot,book,1 -yes,TRUE,lambada,book,1 -thank_you,thanks very much,parrot,bye,2 -thank_you,appreciate the assistance,parrot,bye,2 -date,what's today,original,avail,0 -yes,absolutely!,original,book,1 -calendar_update,"make sure the events on my calendar for march 30th, 2019 are clear",lambada,resched,5 -goodbye,bye bye,lambada,bye,2 -calendar_update,remove jeff's birthday from my calendar on may 12,lambada,resched,5 -goodbye,thanks for talking,original,bye,2 -greeting,hiya,original,greet,4 -goodbye,good conversation,parrot,bye,2 -no,naw,original,cancel,3 -how_busy,what's the wait at jalapeno ranch?,parrot,avail,0 -date,what date?,parrot,avail,0 -yes,positive,original,book,1 -greeting,what's new,lambada,greet,4 -how_busy,how long will i wait to be seated at the cheese cake factory,lambada,avail,0 -goodbye,see ya,lambada,bye,2 -yes,yeah,original,book,1 -yes,accepted,original,book,1 -thank_you,gracias,original,bye,2 -goodbye,goodbye soon,lambada,bye,2 -no,not really,original,cancel,3 -yes,confirmed,original,book,1 -goodbye,ai goodbye,original,bye,2 -yes,good,parrot,book,1 -thank_you,much obliged,original,bye,2 -no,i mean no,parrot,cancel,3 -how_busy,how busy is imanas right now,lambada,avail,0 -greeting,wassup,original,greet,4 -yes,yeah,original,book,1 -greeting,please tell me how you feel?,parrot,greet,4 -yes,you got it,parrot,book,1 -reminder_update,my cat needs neutered,parrot,resched,5 -thank_you,gracias,original,bye,2 -greeting,aloha,original,greet,4 -goodbye,buhbye,original,bye,2 -greeting,how's ai feeling?,parrot,greet,4 -greeting,what's new here?,parrot,greet,4 -greeting,aho,parrot,greet,4 -goodbye,tootles,original,bye,2 -no,"please, no",original,cancel,3 -how_busy,how busy will the olive garden be around 5,parrot,avail,0 -no,naw,parrot,cancel,3 -calendar,on my calendar for march 10,parrot,avail,0 -goodbye,i've got to run now,original,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -yes,that's correct,original,book,1 -yes,uh-huh,original,book,1 -thank_you,good job,lambada,bye,2 -how_busy,why does the restaurant have a busy time at 5pm?,parrot,avail,0 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -greeting,hey,original,greet,4 -no,certainly not,original,cancel,3 -yes,i'm going to tell you tes,parrot,book,1 -goodbye,adios,original,bye,2 -no,yes that's false,lambada,cancel,3 -thank_you,and i'm grateful,parrot,bye,2 -no,"no, that's incorrect",original,cancel,3 -greeting,how's idy doing?,parrot,greet,4 -greeting,hola,original,greet,4 -schedule_meeting,are there meeting rooms between 10 and 11?,parrot,book,1 -how_busy,what's the cheesecake factory like at 6 am?,parrot,avail,0 -date,tell me what's the date?,parrot,avail,0 -date,give me the date,original,avail,0 -greeting,aho,parrot,greet,4 -date,what month today?,parrot,avail,0 -meeting_schedule,how many meetings do i have between 9 and ten?,parrot,avail,0 -how_busy,is jacks' steakhouse usually packed when we go?,lambada,avail,0 -thank_you,my thanks,parrot,bye,2 -goodbye,thanks for the conversation later,parrot,bye,2 -date,let me know what's the time today,parrot,avail,0 -goodbye,farewell,original,bye,2 -yes,that's a definite yes,original,book,1 -how_busy,how long do i have to wait at imagus,lambada,avail,0 -reminder_update,come on please,parrot,resched,5 -reminder_update,give the cat a reminder to come home at 9 am,parrot,resched,5 -date,a year?,parrot,avail,0 -goodbye,see you around,original,bye,2 -thank_you,you've been great,parrot,bye,2 -meeting_schedule,what's my meeting schedule today?,parrot,avail,0 -date,is tomorrow's date?,parrot,avail,0 -date,a year?,parrot,avail,0 -yes,that is accurate,original,book,1 -thank_you,thank you please,parrot,bye,2 -yes,that's the truth,original,book,1 -no,false sure,parrot,cancel,3 -no,invalid,original,cancel,3 -greeting,so how is everything,original,greet,4 -how_busy,does the italian restaurant usually have long lines of customers?,parrot,avail,0 -no,"no, that's wrong",original,cancel,3 -yes,agreed,original,book,1 -goodbye,adios ai,original,bye,2 -date,do you know what the date of the day is?,parrot,avail,0 -goodbye,adios!,original,bye,2 -greeting,and what's up?,parrot,greet,4 -calendar,show me the calendar for march 14th?,parrot,avail,0 -yes,ya,original,book,1 -how_busy,how long will it take for me to get seated at red lobster,lambada,avail,0 -calendar_update,please clean my calendar,parrot,resched,5 -how_busy,how long can i wait to eat in a restaurant?,parrot,avail,0 -date,current date,original,avail,0 -no,negatory?,parrot,cancel,3 -how_busy,is the wait too long?,parrot,avail,0 -calendar_update,can i remove this event from my calendar?,parrot,resched,5 -thank_you,your answer pleased me,original,bye,2 -no,that is untrue,original,cancel,3 -thank_you,nice,parrot,bye,2 -yes,good,parrot,book,1 -thank_you,i want to thank you for your time,parrot,bye,2 -date,what year?,parrot,avail,0 -reminder_update,set another reminder for tomorrow at 4am,parrot,resched,5 -goodbye,tootles,original,bye,2 -no,no?,parrot,cancel,3 -goodbye,it's over,parrot,bye,2 -thank_you,thanks for the reply,original,bye,2 -how_busy,i want to know how long will i wait to be seated at x factor,lambada,avail,0 -greeting,hiya!,original,greet,4 -greeting,hola,original,greet,4 -greeting,how you are,original,greet,4 -meeting_schedule,meeting today,parrot,avail,0 -no,there is no,parrot,cancel,3 -goodbye,fairwell,original,bye,2 -meeting_schedule,when am i supposed to meet today?,parrot,avail,0 -goodbye,it was a good conversation,parrot,bye,2 -no,negating,parrot,cancel,3 -no,absolutely false,parrot,cancel,3 -goodbye,farewell!,original,bye,2 -no,i gotta say no,original,cancel,3 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -goodbye,lovely conversation,parrot,bye,2 -no,nada,original,cancel,3 -greeting,how are things?,parrot,greet,4 -yes,accepted,original,book,1 -no,no it is not true,parrot,cancel,3 -thank_you,thanks again,original,bye,2 -greeting,yo how yo feelin,lambada,greet,4 -greeting,aloha,original,greet,4 -yes,ok,original,book,1 -reminder_update,i need you to remind me to do something,parrot,resched,5 -goodbye,later thanks for talking,parrot,bye,2 -how_busy,how long will i have to wait for chili's?,parrot,avail,0 -greeting,how's my treatment?,parrot,greet,4 -greeting,aho,parrot,greet,4 -greeting,welcome,parrot,greet,4 -how_busy,what is going on at olive garden?,parrot,avail,0 -goodbye,it was good to catch up with you,parrot,bye,2 -how_busy,how busy will black beans be around 11 am?,parrot,avail,0 -yes,positive,parrot,book,1 -thank_you,thanks again!,original,bye,2 -calendar_update,add a new event in my calendar,parrot,resched,5 -meeting_schedule,can you show me my schedule of meetings,parrot,avail,0 -greeting,hey hey!,original,greet,4 -no,that's false,original,cancel,3 -yes,"yup, that's correct",lambada,book,1 -goodbye,farewell,original,bye,2 -no,that's so false,parrot,cancel,3 -no,and i say negative,parrot,cancel,3 -yes,great,original,book,1 -date,what's the year?,parrot,avail,0 -greeting,hey,original,greet,4 -no,not really,original,cancel,3 -thank_you,i'm happy you helped me,parrot,bye,2 -greeting,and what's up?,parrot,greet,4 -greeting,what have you been doing lately?,parrot,greet,4 -yes,yes that is correct,original,book,1 -no,negating,parrot,cancel,3 -yes,TRUE,original,book,1 -goodbye,i'm out,parrot,bye,2 -goodbye,sayonara ,parrot,bye,2 -thank_you,you helped,parrot,bye,2 -greeting,hey bs,lambada,greet,4 -greeting,whats up,original,greet,4 -greeting,hey,original,greet,4 -yes,affirmative,original,book,1 -no,it's false,parrot,cancel,3 -date,in seven days?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -no,that's no way,parrot,cancel,3 -greeting,please tell me what's happening,lambada,greet,4 -meeting_schedule,what's the date of the meeting?,parrot,avail,0 -greeting,good to see you,original,greet,4 -thank_you,nice,parrot,bye,2 -no,naw,original,cancel,3 -thank_you,gracias,original,bye,2 -goodbye,"great talk, thanks for it",lambada,bye,2 -no,negatory?,parrot,cancel,3 -no,that's incorrect,original,cancel,3 -cancel_reservation,what do i need to do to cancel my booking?,parrot,cancel,3 -greeting,hiya,original,greet,4 -thank_you,i'm very thankful,parrot,bye,2 -no,that's so false,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -thank_you,thank you please,parrot,bye,2 -goodbye,adios!,original,bye,2 -yes,definitely,original,book,1 -goodbye,goodnight,original,bye,2 -how_busy,how long will it take me to get a seat at the outback steak house?,parrot,avail,0 -date,what day will it be in 7 days?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -yes,accept,parrot,book,1 -goodbye,farewell to you,lambada,bye,2 -greeting,how are you,original,greet,4 -yes,affirmitive,original,book,1 -goodbye,good seeing you,original,bye,2 -how_busy,how busy are the orchids at 7?,parrot,avail,0 -yes,10-Apr,original,book,1 -no,don't like that,parrot,cancel,3 -greeting,ahoy,lambada,greet,4 -schedule_meeting,can you help me set up a meeting for me?,parrot,book,1 -greeting,what's happening?,parrot,greet,4 -no,erroneous,parrot,cancel,3 -greeting,hi there,original,greet,4 -greeting,how's the life for you,parrot,greet,4 -goodbye,the chat was good,parrot,bye,2 -yes,yep,original,book,1 -how_busy,is this restaurant crowded at night?,parrot,avail,0 -goodbye,thanks for chatting,lambada,bye,2 -no,no?,parrot,cancel,3 -yes,ok,original,book,1 -how_busy,what's the wait time for chipotle?,parrot,avail,0 -reminder_update,i need to clean my apartment,parrot,resched,5 -how_busy,is macy's busy?,parrot,avail,0 -goodbye,it's time to say goodbye,parrot,bye,2 -no,nada,original,cancel,3 -thank_you,"thanks, i appreciate it",original,bye,2 -greeting,how's otc?,parrot,greet,4 -no,say negative,parrot,cancel,3 -date,tell me the day tomorrow?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -cancel_reservation,how do i cancel a booking?,parrot,cancel,3 -yes,ok,original,book,1 -goodbye,good bye,original,bye,2 -yes,accepted,original,book,1 -greeting,hey yai,lambada,greet,4 -goodbye,peace,original,bye,2 -no,nope,original,cancel,3 -thank_you,appreciated,original,bye,2 -yes,10-Apr,original,book,1 -goodbye,buhbye,original,bye,2 -thank_you,thanks!,original,bye,2 -no,please disagree,lambada,cancel,3 -thank_you,my gratitude,parrot,bye,2 -greeting,are you good?,original,greet,4 -how_busy,how busy is the restaurant at dinner?,parrot,avail,0 -goodbye,bye!,original,bye,2 -no,negation,parrot,cancel,3 -yes,do that?,original,book,1 -meeting_schedule,are there any meetings on the calendar today?,lambada,avail,0 -greeting,salutations!,original,greet,4 -cancel_reservation,please cancel my oyster bar reservation,parrot,cancel,3 -greeting,what's up?,parrot,greet,4 -no,that’s incorrect,original,cancel,3 -calendar,is the event on my calendar?,parrot,avail,0 -yes,it seems true,parrot,book,1 -no,FALSE,lambada,cancel,3 -yes,good,parrot,book,1 -goodbye,ill leave now,parrot,bye,2 -goodbye,sayonara,original,bye,2 -thank_you,thanks very much,parrot,bye,2 -yes,let's do that,parrot,book,1 -reminder_update,keep an eye on tomorrow's meetings,parrot,resched,5 -thank_you,thank you for the answer,original,bye,2 -yes,confirmed,original,book,1 -yes,positive,original,book,1 -goodbye,this conversation was good,parrot,bye,2 -date,a year?,parrot,avail,0 -goodbye,thank you goodbye,original,bye,2 -cancel_reservation,can i cancel my reservation for brad at the longhorn?,parrot,cancel,3 -no,no,lambada,cancel,3 -calendar,tell me what's on my calendar for the 17th of march,parrot,avail,0 -greeting,so how is everything,original,greet,4 -how_busy,how busy will the mac and cheese be at 5pm,parrot,avail,0 -calendar,tell me what my calendar looks like on march 2nd?,parrot,avail,0 -goodbye,peace,original,bye,2 -date,tell me what's the date?,parrot,avail,0 -greeting,hi,original,greet,4 -yes,affirmitive,original,book,1 -thank_you,thank you for my vacation,lambada,bye,2 -no,nope,original,cancel,3 -date,today?,parrot,avail,0 -reminder_update,remind me to remind my cat to give her fleas medicine,parrot,resched,5 -goodbye,goodbye now,parrot,bye,2 -no,i meant nothing,parrot,cancel,3 -greeting,hiya!,original,greet,4 -no,i prefer not,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -yes,confirm,original,book,1 -yes,great,original,book,1 -thank_you,thank you?,parrot,bye,2 -yes,TRUE,lambada,book,1 -date,tell me what the day will be,parrot,avail,0 -greeting,hey hey!,original,greet,4 -yes,yup,original,book,1 -date,date tomorrow,parrot,avail,0 -thank_you,i owe you,parrot,bye,2 -goodbye,it was fun to talk with you,lambada,bye,2 -date,would you let me know the date of today?,parrot,avail,0 -schedule_meeting,i need an agenda,parrot,book,1 -greeting,hey,original,greet,4 -calendar,let me know if there's a march 31 calendar entry for me,parrot,avail,0 -greeting,hey,original,greet,4 -thank_you,thank you again,parrot,bye,2 -yes,confirm,original,book,1 -greeting,what's new,lambada,greet,4 -thank_you,i'm grateful to you,original,bye,2 -yes,i want that,parrot,book,1 -thank_you,appreciate the help,original,bye,2 -yes,indeed,parrot,book,1 -meeting_schedule,what's my meeting today?,parrot,avail,0 -thank_you,thanks a lot,original,bye,2 -thank_you,thank you?,parrot,bye,2 -no,negative sure,parrot,cancel,3 -reminder_update,set a reminder for me to take my meds,original,resched,5 -thank_you,appreciate the support,parrot,bye,2 -goodbye,goodbye now,parrot,bye,2 -yes,affirmative,original,book,1 -greeting,whats up?,parrot,greet,4 -thank_you,thank you please,parrot,bye,2 -no,i'm sorry it isn't,lambada,cancel,3 -how_busy,how busy will black bean be around 11 o'clock,parrot,avail,0 -calendar,does my calendar have a baby shower?,parrot,avail,0 -goodbye,i like our conversation,parrot,bye,2 -goodbye,great to talk with you,parrot,bye,2 -greeting,how are things?,parrot,greet,4 -yes,"yes, please",parrot,book,1 -no,it's false,parrot,cancel,3 -no,negative definitely,parrot,cancel,3 -goodbye,adios!,original,bye,2 -thank_you,i'm thankful,original,bye,2 -how_busy,how busy will olive garden be around 8 pm,lambada,avail,0 -no,nope,original,cancel,3 -thank_you,you answered,parrot,bye,2 -yes,"yes, please",original,book,1 -how_busy,how busy will red robin be if i get there at 6:30 pm,lambada,avail,0 -goodbye,i'll leave now,parrot,bye,2 -yes,10-Apr,original,book,1 -goodbye,for now,parrot,bye,2 -yes,definitely yes,parrot,book,1 -greeting,salutations!,original,greet,4 -thank_you,you have done well,lambada,bye,2 -schedule_meeting,are meeting rooms available from 11 am to 1pm?,parrot,book,1 -yes,great,original,book,1 -cancel_reservation,we have a table at the taco bell under bowie we need to release,original,cancel,3 -reminder_update,i need a reminder,original,resched,5 -thank_you,again thanks,parrot,bye,2 -date,tell me what the day is tomorrow?,parrot,avail,0 -yes,is true,parrot,book,1 -no,i'll pass,original,cancel,3 -meeting_schedule,please read my schedule,parrot,avail,0 -goodbye,later gator!,original,bye,2 -how_busy,how long will i have to wait for a table at macaroni and cheese?,parrot,avail,0 -reminder_update,i want to set up a reminder to get my check,lambada,resched,5 -no,please no,parrot,cancel,3 -no,is that a lie?,parrot,cancel,3 -yes,uh-huh,original,book,1 -goodbye,tootles,original,bye,2 -date,what's today,original,avail,0 -greeting,ahoy,lambada,greet,4 -no,negatory?,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -no,but that's not true?,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -goodbye,farewell,original,bye,2 -date,today?,parrot,avail,0 -goodbye,my way,parrot,bye,2 -no,that's totally wrong,parrot,cancel,3 -yes,absolutely,original,book,1 -meeting_schedule,have any meetings scheduled today?,parrot,avail,0 -yes,facts,original,book,1 -yes,TRUE,original,book,1 -cancel_reservation,if i need to cancel my dinner reservation,parrot,cancel,3 -greeting,ahoy there,lambada,greet,4 -goodbye,until next time,original,bye,2 -no,indeed it's false,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -greeting,hello bs,parrot,greet,4 -how_busy,what's the wait like right now at olive garden,lambada,avail,0 -goodbye,take a break,parrot,bye,2 -no,no,lambada,cancel,3 -greeting,hello how's the situation?,parrot,greet,4 -no,nada,original,cancel,3 -yes,yay,lambada,book,1 -meeting_schedule,are there any meetings in the calendar today?,parrot,avail,0 -calendar,tell me what my calendar looks like on 2 march?,parrot,avail,0 -how_busy,say how busy it is at 6 o'clock?,parrot,avail,0 -no,that is untrue,original,cancel,3 -goodbye,adios,original,bye,2 -date,what's my date today?,parrot,avail,0 -goodbye,later gater,original,bye,2 -yes,indeed,parrot,book,1 -yes,i'm going to tell you tes,parrot,book,1 -yes,definitely,original,book,1 -goodbye,i'll be gone,parrot,bye,2 -date,today what day of the week,parrot,avail,0 -yes,i know what i get,parrot,book,1 -goodbye,goodbye soon,lambada,bye,2 -date,what's my date tomorrow?,parrot,avail,0 -goodbye,later gator!,original,bye,2 -no,that's so false,parrot,cancel,3 -greeting,bonjour,original,greet,4 -greeting,wassup,original,greet,4 -yes,do that?,original,book,1 -date,what date it will be in eight days?,parrot,avail,0 -yes,ya,original,book,1 -how_busy,how long will i have to wait for the tequila bar?,parrot,avail,0 -greeting,how are things treating you?,parrot,greet,4 -goodbye,later!,original,bye,2 -goodbye,farewell!,original,bye,2 -yes,positive,original,book,1 -goodbye,afterward,parrot,bye,2 -yes,"yes, please",parrot,book,1 -no,that's not right,original,cancel,3 -yes,so it's true,parrot,book,1 -greeting,hello are you all right?,parrot,greet,4 -goodbye,later!,original,bye,2 -yes,very true,original,book,1 -reminder_update,would you please remind me that it's time to clean my apartment,lambada,resched,5 -yes,"yep, let's do that",lambada,book,1 -date,what year?,parrot,avail,0 -how_busy,what is the average wait at olive garden for 5:00?,lambada,avail,0 -cancel_reservation,please cancel my dinner reservation for tuesday,original,cancel,3 -no,negating,parrot,cancel,3 -thank_you,thanks again!,original,bye,2 -greeting,hey fellow,parrot,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -cancel_reservation,go ahead and cancel the reservation for four at prime rib,lambada,cancel,3 -goodbye,fairwell?,parrot,bye,2 -reminder_update,make a reminder to clean out the basement,parrot,resched,5 -no,that is untrue,original,cancel,3 -schedule_meeting,please set a meeting with john at 9am,lambada,book,1 -meeting_schedule,meeting today,parrot,avail,0 -thank_you,my thanks,parrot,bye,2 -yes,obviously,parrot,book,1 -no,no,lambada,cancel,3 -greeting,ahoy hoy,original,greet,4 -reminder_update,remind me to call my brother at 8 pm,parrot,resched,5 -greeting,hey how do you feel?,parrot,greet,4 -yes,agreed,original,book,1 -goodbye,bye!,original,bye,2 -date,what's it today?,parrot,avail,0 -no,negation,parrot,cancel,3 -no,not true,original,cancel,3 -how_busy,what time will it take to sit down at the macaroni grill?,parrot,avail,0 -how_busy,is the wait time at olive garden long?,lambada,avail,0 -reminder_update,help me set a reminder to work out,original,resched,5 -schedule_meeting,can you arrange a meeting with cole for 4pm?,parrot,book,1 -date,what's today,original,avail,0 -greeting,how's everything?,parrot,greet,4 -how_busy,how long will i have to wait before i'm seated at the cheese cake factory,parrot,avail,0 -greeting,let me know how you are feeling,parrot,greet,4 -date,current date,original,avail,0 -calendar_update,put abc on my calendar on feb 3rd,parrot,resched,5 -thank_you,thankyou,parrot,bye,2 -no,definitely not,original,cancel,3 -thank_you,appreciated,original,bye,2 -no,definitely not,original,cancel,3 -goodbye,later,original,bye,2 -meeting_schedule,please show me the next meeting?,parrot,avail,0 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -no,is very false,parrot,cancel,3 -goodbye,i'll talk to you soon,parrot,bye,2 -yes,"affirmative, go ahead",original,book,1 -yes,oh yes,original,book,1 -yes,accept,parrot,book,1 -greeting,"why, hello bandit",original,greet,4 -goodbye,goodbye bye,parrot,bye,2 -no,no way,original,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -goodbye,sayonara ,parrot,bye,2 -no,ill pass,original,cancel,3 -no,no longer valid,parrot,cancel,3 -yes,good,parrot,book,1 -yes,exactly right,original,book,1 -goodbye,glad we talked,parrot,bye,2 -greeting,hola,original,greet,4 -thank_you,thanks for the response,lambada,bye,2 -meeting_schedule,what's the date of this meeting today?,parrot,avail,0 -yes,yeap,original,book,1 -goodbye,see ya,lambada,bye,2 -date,what is tomorrow?,parrot,avail,0 -yes,i want you to know that this is a true statement,lambada,book,1 -yes,so it's real,parrot,book,1 -goodbye,lovely to see you again,lambada,bye,2 -yes,oh-huh,parrot,book,1 -no,this information is false,parrot,cancel,3 -date,"in 2 days, what date will it be",original,avail,0 -goodbye,great talk,lambada,bye,2 -thank_you,keep up the good work,parrot,bye,2 -yes,indeed,original,book,1 -no,it's actually false,parrot,cancel,3 -how_busy,how long will i have to wait to be seated at macys,lambada,avail,0 -how_busy,what is the average wait time for chili's at 6:30?,lambada,avail,0 -yes,positive,parrot,book,1 -yes,definitely,original,book,1 -thank_you,thanks for that answer,original,bye,2 -date,list the next week?,parrot,avail,0 -thank_you,thanks for the update,lambada,bye,2 -greeting,hey,original,greet,4 -thank_you,"great, thanks!",original,bye,2 -goodbye,farewell!,original,bye,2 -calendar,let me know what's in my calendar for thursday,parrot,avail,0 -cancel_reservation,stop making a reservation for me,parrot,cancel,3 -yes,and you're correct,parrot,book,1 -no,that's a lie,parrot,cancel,3 -yes,good yes,lambada,book,1 -thank_you,appreciated,original,bye,2 -yes,huh huh,parrot,book,1 -greeting,hola!,original,greet,4 -greeting,hiya,original,greet,4 -how_busy,how busy will honey be around dinner?,parrot,avail,0 -yes,it's true this information is true,parrot,book,1 -goodbye,regards,original,bye,2 -no,no!,original,cancel,3 -greeting,hey how's it going,original,greet,4 -no,no,lambada,cancel,3 -greeting,how's ai doing?,parrot,greet,4 -yes,do that?,original,book,1 -reminder_update,i want a reminder,lambada,resched,5 -meeting_schedule,what's on my schedule today?,parrot,avail,0 -greeting,well hello,original,greet,4 -no,so that's no,parrot,cancel,3 -yes,perfect,parrot,book,1 -yes,uh huh,original,book,1 -how_busy,what's the wait for a table at the olive garden right now?,parrot,avail,0 -yes,perfect,parrot,book,1 -yes,is true,parrot,book,1 -yes,that's a sure yes,parrot,book,1 -goodbye,goodbye bye,parrot,bye,2 -date,"can you tell me the month, day or year?",lambada,avail,0 -yes,okay,original,book,1 -thank_you,appreciate it,original,bye,2 -greeting,hi how are you?,parrot,greet,4 -greeting,why hello?,original,greet,4 -greeting,hi,original,greet,4 -greeting,can you tell me how it's going?,parrot,greet,4 -goodbye,i'll leave,parrot,bye,2 -yes,oh yeah that is true,lambada,book,1 -meeting_schedule,when is my meeting with ann?,original,avail,0 -how_busy,wait in the restaurant?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -greeting,good evening,original,greet,4 -goodbye,later gater,original,bye,2 -no,naw,parrot,cancel,3 -goodbye,thank you for talking to me,lambada,bye,2 -thank_you,glad you did it,parrot,bye,2 -goodbye,thank you for the conversation,parrot,bye,2 -greeting,hello there!,original,greet,4 -calendar,is there anything on my calendar for july 28th?,parrot,avail,0 -how_busy,how long will i wait at cheese cake factory,lambada,avail,0 -greeting,how's life?,parrot,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,go easy,parrot,bye,2 -no,so it's not possible,parrot,cancel,3 -yes,my answer is yes,parrot,book,1 -yes,absolutely correct,original,book,1 -goodbye,good seeing you,original,bye,2 -reminder_update,let me remember,parrot,resched,5 -no,that is overwhelmingly false,original,cancel,3 -meeting_schedule,do i have any meetings from 10 am to 4 pm today?,lambada,avail,0 -greeting,salutation,parrot,greet,4 -date,what month is today?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -how_busy,how many people are at olive garden at 7?,parrot,avail,0 -yes,that appears true,original,book,1 -yes,"yes, please",parrot,book,1 -yes,absolutely!,original,book,1 -greeting,heyo,original,greet,4 -yes,"yes, please",parrot,book,1 -goodbye,goodbye!,original,bye,2 -greeting,how have you been,original,greet,4 -thank_you,much obliged,original,bye,2 -yes,say yes,lambada,book,1 -cancel_reservation,go ahead and cancel my reservation for 5 at the red robin,parrot,cancel,3 -date,please explain today,parrot,avail,0 -thank_you,nice,parrot,bye,2 -no,nada,original,cancel,3 -goodbye,will we talk about tomorrow?,parrot,bye,2 -yes,positive,original,book,1 -goodbye,tata for now,original,bye,2 -how_busy,is ihop busy?,parrot,avail,0 -how_busy,is macy's busy?,parrot,avail,0 -greeting,so how's everything going?,parrot,greet,4 -no,negatory,original,cancel,3 -greeting,hey fellow,parrot,greet,4 -yes,i guess,parrot,book,1 -thank_you,thank you again,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -reminder_update,make me a reminder,lambada,resched,5 -thank_you,thanks so much,original,bye,2 -thank_you,my thanks,parrot,bye,2 -how_busy,how long will it take to get a table at bbq?,parrot,avail,0 -date,today what date?,parrot,avail,0 -yes,perfect,parrot,book,1 -yes,certainly,parrot,book,1 -no,negatory?,parrot,cancel,3 -meeting_schedule,tell me what meeting i have today?,lambada,avail,0 -no,nothing,parrot,cancel,3 -how_busy,is the place crowded at night?,parrot,avail,0 -greeting,what's happening,original,greet,4 -no,that would be no,lambada,cancel,3 -thank_you,thanks!,original,bye,2 -no,this is not true,parrot,cancel,3 -goodbye,just relax,parrot,bye,2 -yes,seems true,parrot,book,1 -greeting,what's new?,parrot,greet,4 -thank_you,thanks for doing it,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -no,that’s incorrect,original,cancel,3 -yes,that makes sense,lambada,book,1 -goodbye,regards,original,bye,2 -yes,yes you have been correct,lambada,book,1 -greeting,hey bs,lambada,greet,4 -no,naw,parrot,cancel,3 -how_busy,is mr joe's pizza usually full?,parrot,avail,0 -thank_you,thank you for trying,parrot,bye,2 -no,that's inaccurate,original,cancel,3 -no,"no, that's not it",original,cancel,3 -goodbye,bye now,original,bye,2 -schedule_meeting,can i meet with steve?,parrot,book,1 -greeting,hey,original,greet,4 -goodbye,good talk,parrot,bye,2 -goodbye,im leaving,parrot,bye,2 -greeting,hey,original,greet,4 -goodbye,fairwell,original,bye,2 -no,negation,parrot,cancel,3 -greeting,hiya!,original,greet,4 -cancel_reservation,remove my reservation for dinner,lambada,cancel,3 -reminder_update,maybe a reminder?,parrot,resched,5 -thank_you,why thank you?,original,bye,2 -yes,perfect,parrot,book,1 -yes,uh-huh,original,book,1 -goodbye,goodbye goodbye,parrot,bye,2 -date,in 10 days?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -calendar,what do you have planned for january 14th?,parrot,avail,0 -yes,confirmed,original,book,1 -goodbye,bye-bye,original,bye,2 -goodbye,farewell to you,lambada,bye,2 -no,negative,original,cancel,3 -greeting,hello and how are things?,parrot,greet,4 -date,what year is it?,original,avail,0 -greeting,aho,parrot,greet,4 -yes,not false,parrot,book,1 -greeting,wake up ai,parrot,greet,4 -how_busy,how long does the restaurant wait before you're seated?,parrot,avail,0 -cancel_reservation,how can i cancel my reservation?,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -schedule_meeting,how is a meeting planned?,parrot,book,1 -yes,absolutely,original,book,1 -no,no!,original,cancel,3 -date,is the date?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -goodbye,adios,original,bye,2 -no,negating,parrot,cancel,3 -how_busy,how long will it take to wait at noon if we go to nagomi,parrot,avail,0 -calendar,read my calendar of events,parrot,avail,0 -yes,positive,parrot,book,1 -how_busy,how long will it take to be seated at this restaurant,lambada,avail,0 -how_busy,what's the crowd like at the red lobsters?,parrot,avail,0 -greeting,hello how's it going?,parrot,greet,4 -greeting,hey bs,lambada,greet,4 -goodbye,the pleasure of talking with you,parrot,bye,2 -thank_you,my sincere thanks,parrot,bye,2 -meeting_schedule,are there meetings for today?,parrot,avail,0 -no,nay,original,cancel,3 -no,this information is false,parrot,cancel,3 -yes,10-Apr,original,book,1 -how_busy,tell me if this restaurant is busy at 6pm?,parrot,avail,0 -how_busy,how long will it take to get a place in pizzerias?,parrot,avail,0 -goodbye,as regards,parrot,bye,2 -no,but it's not factual,parrot,cancel,3 -goodbye,later then,lambada,bye,2 -yes,okay,original,book,1 -goodbye,good-bye,parrot,bye,2 -greeting,"howdy, what's new",original,greet,4 -goodbye,buhbye,original,bye,2 -goodbye,bye bye!,original,bye,2 -no,erroneous,parrot,cancel,3 -no,not correct,parrot,cancel,3 -yes,yay,lambada,book,1 -greeting,whats up?,parrot,greet,4 -yes,definitely,original,book,1 -no,that's false,original,cancel,3 -cancel_reservation,discard my dinner reservation,parrot,cancel,3 -meeting_schedule,what time is today's meeting?,original,avail,0 -yes,confirm,original,book,1 -yes,is true,parrot,book,1 -goodbye,peace out!,original,bye,2 -schedule_meeting,how do you schedule a meeting?,parrot,book,1 -yes,right,parrot,book,1 -thank_you,my gratitude,parrot,bye,2 -no,nay,original,cancel,3 -date,today?,parrot,avail,0 -thank_you,"oh, thanks",original,bye,2 -greeting,hiya,original,greet,4 -greeting,hi,original,greet,4 -date,is today the day?,parrot,avail,0 -how_busy,is the restaurant crowded for lunch?,parrot,avail,0 -goodbye,was a pleasure speaking with you,parrot,bye,2 -thank_you,youre a doll,original,bye,2 -yes,oh-huh,parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -goodbye,i'll go,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -thank_you,i'm glad you responded,parrot,bye,2 -goodbye,say goodbye,parrot,bye,2 -date,what would be tomorrow's date?,parrot,avail,0 -greeting,how you feel?,parrot,greet,4 -yes,that makes sense,lambada,book,1 -goodbye,sayonara,original,bye,2 -date,what is tomorrow?,parrot,avail,0 -schedule_meeting,make a reservation for a meeting room for monday at 5pm?,parrot,book,1 -schedule_meeting,tell me the procedure for setting up a meeting?,parrot,book,1 -goodbye,fairwell,original,bye,2 -no,that's a lie,parrot,cancel,3 -yes,absolutely!,original,book,1 -goodbye,farewell!,original,bye,2 -yes,affirmitive,original,book,1 -reminder_update,please remember me again,parrot,resched,5 -thank_you,okay thank you,parrot,bye,2 -no,the information is wrong,original,cancel,3 -thank_you,i'm happy you've helped me,parrot,bye,2 -thank_you,i'm grateful,original,bye,2 -yes,certainly true,parrot,book,1 -greeting,hello hello good morning,parrot,greet,4 -yes,TRUE,original,book,1 -no,i meant nothing,parrot,cancel,3 -greeting,hey bs,lambada,greet,4 -no,that's very negative,parrot,cancel,3 -goodbye,talk to me later,parrot,bye,2 -goodbye,i have to leave,parrot,bye,2 -greeting,hiya,original,greet,4 -no,it's so bad,parrot,cancel,3 -no,naw,parrot,cancel,3 -date,what year?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -yes,please let's do it,original,book,1 -thank_you,gracias,original,bye,2 -goodbye,glad we talked,parrot,bye,2 -greeting,"hey, what's new",original,greet,4 -date,what do you think will be the date in 200 days?,parrot,avail,0 -yes,TRUE,lambada,book,1 -thank_you,thanks for the help!,original,bye,2 -greeting,whats up?,parrot,greet,4 -no,that isn't correct,original,cancel,3 -how_busy,can you tell me how long the wait is at the pizza shop at noon?,parrot,avail,0 -thank_you,you helped me,parrot,bye,2 -yes,accepted,original,book,1 -thank_you,gracias,original,bye,2 -schedule_meeting,please check if there is meeting space available between 10:00 am and 12:30 pm,lambada,book,1 -thank_you,appreciate it,original,bye,2 -yes,exactly right,original,book,1 -goodbye,adios,original,bye,2 -how_busy,what is the wait like at olive garden right now?,lambada,avail,0 -thank_you,really great!,original,bye,2 -no,naw,parrot,cancel,3 -how_busy,how long does it take for chili's pizza?,parrot,avail,0 -goodbye,the chat was good,parrot,bye,2 -goodbye,fairwell,original,bye,2 -greeting,hi,original,greet,4 -yes,yep,original,book,1 -cancel_reservation,fill in my reservation at the white cliffs ,parrot,cancel,3 -yes,TRUE,original,book,1 -yes,yeah,original,book,1 -thank_you,you are very grateful for my assistance,lambada,bye,2 -greeting,hello there,original,greet,4 -reminder_update,the cat needs neutering,parrot,resched,5 -yes,obviously,parrot,book,1 -thank_you,so grateful,parrot,bye,2 -yes,positive,parrot,book,1 -how_busy,please tell me how busy the red robin is at 7 pm?,parrot,avail,0 -greeting,bonjour,original,greet,4 -thank_you,merci beaucoup,original,bye,2 -yes,TRUE,original,book,1 -no,yes that's false,lambada,cancel,3 -yes,10-Apr,original,book,1 -yes,agreed,original,book,1 -cancel_reservation,abrogate the reservation of dinner,parrot,cancel,3 -goodbye,farewell,original,bye,2 -no,that's so negative,parrot,cancel,3 -goodbye,please talk to me,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,why hello?,original,greet,4 -calendar_update,erase any event on my calendar that's set for wednesday of next week,original,resched,5 -yes,okay,original,book,1 -cancel_reservation,tell the restaurant i booked to cancel my reservation? '',parrot,cancel,3 -no,it's so negative,parrot,cancel,3 -how_busy,how long is the wait at mcdonalds today?,parrot,avail,0 -goodbye,goodbye goodbye,parrot,bye,2 -yes,confirmed,original,book,1 -reminder_update,how about a reminder,original,resched,5 -greeting,how's idy doing?,parrot,greet,4 -yes,accept,parrot,book,1 -thank_you,"oh, thanks",original,bye,2 -yes,say positive,parrot,book,1 -calendar,i want to see my calendar,parrot,avail,0 -no,FALSE,original,cancel,3 -how_busy,what number of people are waiting at chili's around 9pm? '',parrot,avail,0 -yes,you are yes,lambada,book,1 -no,false for sure,original,cancel,3 -calendar,what do you have planned for next sunday?,parrot,avail,0 -no,no good,original,cancel,3 -yes,perfect,parrot,book,1 -greeting,wassup,original,greet,4 -greeting,ahoy,lambada,greet,4 -thank_you,i thank you,original,bye,2 -no,the negator,parrot,cancel,3 -how_busy,how busy will the cheesecake factory be?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -yes,that's correct,original,book,1 -goodbye,farewell,original,bye,2 -yes,do that?,original,book,1 -no,nothing,parrot,cancel,3 -goodbye,"no problem, goodbye",lambada,bye,2 -thank_you,thank you for making my life easier,parrot,bye,2 -date,tomorrow is the calendar,parrot,avail,0 -no,invalid,original,cancel,3 -goodbye,cya later,original,bye,2 -how_busy,is macy's busy?,parrot,avail,0 -yes,confirm,original,book,1 -yes,my answer is yes,parrot,book,1 -greeting,hello what's happening,parrot,greet,4 -yes,yes,original,book,1 -yes,yes you have been successful,lambada,book,1 -thank_you,really great!,original,bye,2 -yes,definitely yes,parrot,book,1 -no,"that is not true, it's false",original,cancel,3 -yes,i agree,original,book,1 -greeting,how you feel?,parrot,greet,4 -yes,okay,original,book,1 -no,false sure,parrot,cancel,3 -no,naw,parrot,cancel,3 -no,this is false,parrot,cancel,3 -how_busy,how long will the wait be at cheese ball pizza,lambada,avail,0 -thank_you,thanks,original,bye,2 -no,not correct,parrot,cancel,3 -no,no!,original,cancel,3 -how_busy,how busy is red lobster,lambada,avail,0 -goodbye,farewell,original,bye,2 -how_busy,tell me how busy the red rooster is at 8 pm?,lambada,avail,0 -calendar_update,i have an appointment on the 5th put it on for 5pm,original,resched,5 -how_busy,how long will it take me to get a table at st jerome?,parrot,avail,0 -goodbye,bye bye now,lambada,bye,2 -date,i need the full date for today,original,avail,0 -thank_you,again thanks,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -date,please tell me the day?,parrot,avail,0 -no,that's a negative,original,cancel,3 -yes,sure,original,book,1 -how_busy,if i want a table in the olive garden how long will it take?,parrot,avail,0 -date,what month is today?,parrot,avail,0 -greeting,what's up,original,greet,4 -thank_you,you did it,parrot,bye,2 -no,FALSE,original,cancel,3 -yes,what i'm saying is correct?,lambada,book,1 -yes,it'll be yes,parrot,book,1 -goodbye,adios,original,bye,2 -thank_you,i appeciate it,original,bye,2 -greeting,hi,original,greet,4 -yes,perfect,parrot,book,1 -meeting_schedule,meetings today,original,avail,0 -date,today?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -yes,great,original,book,1 -yes,TRUE,lambada,book,1 -yes,good,parrot,book,1 -goodbye,catch you around,original,bye,2 -date,what date?,parrot,avail,0 -calendar,what do i have to do on january 1?,parrot,avail,0 -how_busy,how long will i have to wait before i get to the restaurant,lambada,avail,0 -no,no!,original,cancel,3 -how_busy,is ihop busy around 815 o'clock?,parrot,avail,0 -no,i disagree with that,lambada,cancel,3 -goodbye,the talk was nice,lambada,bye,2 -thank_you,appreciate it,original,bye,2 -goodbye,say goodbye,parrot,bye,2 -goodbye,bye!,original,bye,2 -yes,confirmed,original,book,1 -yes,"yes, that's confirmed",original,book,1 -no,FALSE,original,cancel,3 -thank_you,"awesome, thanks",original,bye,2 -date,what's the month and day tomorrow,lambada,avail,0 -goodbye,greetings,parrot,bye,2 -date,tell me the year and month?,parrot,avail,0 -greeting,hey there!,original,greet,4 -thank_you,oh sweet thanks,original,bye,2 -date,a year?,parrot,avail,0 -yes,exactly right,original,book,1 -calendar,are there plans for 12032019?,parrot,avail,0 -yes,facts,original,book,1 -how_busy,how long until dinner?,parrot,avail,0 -yes,i know it's true,parrot,book,1 -goodbye,goodbye,original,bye,2 -no,negatory?,parrot,cancel,3 -reminder_update,please remind me of the car meet,parrot,resched,5 -goodbye,farewell,original,bye,2 -yes,i believe you're right,parrot,book,1 -no,nada,original,cancel,3 -thank_you,thanks so much!,original,bye,2 -yes,it's true,original,book,1 -no,no way!,original,cancel,3 -schedule_meeting,can you schedule a meeting with james at work?,parrot,book,1 -goodbye,sign off,parrot,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -no,not necessarily true,parrot,cancel,3 -no,naw,parrot,cancel,3 -yes,it's certainly positive,parrot,book,1 -greeting,how ya been,original,greet,4 -goodbye,farewell!,original,bye,2 -goodbye,goodbye,original,bye,2 -goodbye,enjoy my day goodbye,parrot,bye,2 -no,no i have to say,parrot,cancel,3 -no,"no, that's incorrect",original,cancel,3 -yes,"yes, please",parrot,book,1 -greeting,heyo,original,greet,4 -goodbye,later!,original,bye,2 -how_busy,how long do we have to wait in the restaurant?,parrot,avail,0 -calendar_update,delete all events on my calendar that have the word girlfriend in it,parrot,resched,5 -reminder_update,set a reminder to pick up the trash,lambada,resched,5 -meeting_schedule,when is the meeting with homer?,parrot,avail,0 -thank_you,thank you!,original,bye,2 -how_busy,if i wait in a restaurant how long will it take,parrot,avail,0 -goodbye,great conversation,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -how_busy,how long will the wait be if i want to be seated at red lobster,lambada,avail,0 -greeting,whats up?,parrot,greet,4 -yes,you are correct,original,book,1 -yes,and you're right,parrot,book,1 -date,what's the date?,parrot,avail,0 -no,is my falsehood?,parrot,cancel,3 -greeting,hey it's up,lambada,greet,4 -no,but no way?,parrot,cancel,3 -greeting,hello,original,greet,4 -no,so that's no,parrot,cancel,3 -no,negation,parrot,cancel,3 -yes,perfect,parrot,book,1 -goodbye,goodbye soon,lambada,bye,2 -greeting,i need to know how my day goes,parrot,greet,4 -cancel_reservation,take away my reservation for dinner,parrot,cancel,3 -yes,right,parrot,book,1 -greeting,salutations!,original,greet,4 -greeting,hey how's life,original,greet,4 -greeting,what's happening?,parrot,greet,4 -greeting,are things going well for you?,original,greet,4 -thank_you,"nice, excellent!",original,bye,2 -yes,all right,original,book,1 -greeting,are you doing well?,original,greet,4 -greeting,are you okay??,parrot,greet,4 -calendar,are there any events planned for march 4th?,parrot,avail,0 -goodbye,bye for now,original,bye,2 -yes,yeap,original,book,1 -yes,i'll say yes,parrot,book,1 -yes,right,parrot,book,1 -greeting,"hello, friend",original,greet,4 -calendar_update,take my dinner plans off my calendar today,lambada,resched,5 -cancel_reservation,cancel my reservation with brad at longhorn,lambada,cancel,3 -no,that is wrong,original,cancel,3 -date,what's going on today?,parrot,avail,0 -how_busy,how long will chili's wait,parrot,avail,0 -yes,right,parrot,book,1 -goodbye,until next time!,original,bye,2 -greeting,what's happening?,parrot,greet,4 -greeting,how's my treatment?,parrot,greet,4 -yes,certainly,parrot,book,1 -goodbye,fairwell?,parrot,bye,2 -date,in 10 days?,parrot,avail,0 -goodbye,cya later,original,bye,2 -goodbye,goodnight,original,bye,2 -goodbye,goodnight,original,bye,2 -greeting,all right now?,parrot,greet,4 -how_busy,is red lobster typically busy around 8pm?,lambada,avail,0 -thank_you,thankyou,parrot,bye,2 -yes,yep,original,book,1 -thank_you,i'm happy you've helped me,parrot,bye,2 -goodbye,tootles,original,bye,2 -greeting,wassup,original,greet,4 -date,what date today?,parrot,avail,0 -no,that's no,parrot,cancel,3 -no,that's so wrong,parrot,cancel,3 -greeting,how does ai do?,parrot,greet,4 -thank_you,thank you,original,bye,2 -how_busy,is there waiting time for a seat at e-li?,parrot,avail,0 -goodbye,good call,parrot,bye,2 -goodbye,i'm very happy to be able to talk to you,parrot,bye,2 -goodbye,lovely conversation,parrot,bye,2 -greeting,hey how ya feeling,lambada,greet,4 -calendar_update,get rid of my dinner plans for tomorrow,parrot,resched,5 -thank_you,i'm happy you've helped me,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -yes,facts,original,book,1 -goodbye,i'm gone,parrot,bye,2 -yes,yeap,original,book,1 -how_busy,will i get a table at chili's around 8:30,lambada,avail,0 -no,nope,original,cancel,3 -schedule_meeting,i'd like to schedule a meeting with seth at 11 am,parrot,book,1 -thank_you,thankyou,parrot,bye,2 -yes,right,parrot,book,1 -greeting,hola,original,greet,4 -date,what day are we?,parrot,avail,0 -how_busy,what's the wait?,parrot,avail,0 -thank_you,thank you for that answer,lambada,bye,2 -reminder_update,remind me of exercise,parrot,resched,5 -no,that's no way,parrot,cancel,3 -how_busy,is there any traffic around dinner time?,parrot,avail,0 -thank_you,it's my debt,parrot,bye,2 -no,naw,original,cancel,3 -how_busy,"for dinner, how busy is chili's",lambada,avail,0 -thank_you,that's a very helpful answer,parrot,bye,2 -no,nothing,parrot,cancel,3 -yes,yay,lambada,book,1 -greeting,hi what's up,original,greet,4 -greeting,welcome,parrot,greet,4 -no,erroneous,parrot,cancel,3 -greeting,"hello, what's up",original,greet,4 -goodbye,good-bye,parrot,bye,2 -yes,absolutely,original,book,1 -meeting_schedule,schedule my meeting for today,parrot,avail,0 -goodbye,nice talk,lambada,bye,2 -greeting,bonjour,original,greet,4 -yes,it is a yes from me,parrot,book,1 -reminder_update,can you remind me of something nice in ny?,parrot,resched,5 -schedule_meeting,what's the room number between noon and 2?,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -date,today is what date is it,lambada,avail,0 -reminder_update,add a reminder on my check,parrot,resched,5 -no,it's not true,parrot,cancel,3 -reminder_update,i'd like a reminder,parrot,resched,5 -thank_you,i'm grateful to you,original,bye,2 -no,no that's wrong,original,cancel,3 -greeting,hey there,original,greet,4 -greeting,"hey, how's it going",original,greet,4 -reminder_update,remember to check the mail,parrot,resched,5 -greeting,hi,original,greet,4 -greeting,hiya,original,greet,4 -date,when will it be eight days?,parrot,avail,0 -no,that's certainly false,parrot,cancel,3 -goodbye,bye,original,bye,2 -no,nay,original,cancel,3 -how_busy,can i expect red robin to be busy at 5pm?,parrot,avail,0 -yes,good,parrot,book,1 -yes,absolutely!,original,book,1 -yes,"yep, that's correct",lambada,book,1 -yes,oh yes,original,book,1 -how_busy,how long will the wait be at chili's?,parrot,avail,0 -no,negatory,original,cancel,3 -yes,im sure you're right,parrot,book,1 -thank_you,i'm glad you laughed,parrot,bye,2 -yes,agreed,original,book,1 -how_busy,how busy is the restaurant at dinner,lambada,avail,0 -goodbye,goodbye soon,lambada,bye,2 -goodbye,was on a good run,parrot,bye,2 -thank_you,i appreciate the answer,parrot,bye,2 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -greeting,what's my feeling?,parrot,greet,4 -no,i don't think it's correct,parrot,cancel,3 -thank_you,i would like to thank you for that,lambada,bye,2 -yes,obviously,parrot,book,1 -goodbye,fairwell?,parrot,bye,2 -no,not true,original,cancel,3 -yes,ya,original,book,1 -goodbye,have fun?,lambada,bye,2 -no,false for sure,original,cancel,3 -schedule_meeting,if i want to schedule a meeting how should i do it?,parrot,book,1 -no,hell nah,original,cancel,3 -cancel_reservation,you can cancel my reservation,parrot,cancel,3 -thank_you,my sincere thanks,parrot,bye,2 -meeting_schedule,tell me if i have a meeting today with liz?,parrot,avail,0 -thank_you,thank you,original,bye,2 -goodbye,talk later,original,bye,2 -date,in what year is tomorrow,lambada,avail,0 -thank_you,you helped me so i'm thankful,parrot,bye,2 -how_busy,how long will the restaurant be before noon,lambada,avail,0 -yes,ok,original,book,1 -no,no?,parrot,cancel,3 -greeting,how's my doing?,parrot,greet,4 -greeting,hi,original,greet,4 -how_busy,how busy is chili's at 5 pm,lambada,avail,0 -date,in 100 days?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -meeting_schedule,i need to know if i have meetings scheduled with mark,parrot,avail,0 -no,don't agree,parrot,cancel,3 -schedule_meeting,can you schedule a meeting with sam at 1 pm?,parrot,book,1 -greeting,salutation,parrot,greet,4 -no,that's inaccurate,original,cancel,3 -greeting,hola!,original,greet,4 -greeting,what's new,lambada,greet,4 -yes,true is my response,original,book,1 -yes,yes please,original,book,1 -date,what year?,parrot,avail,0 -yes,just right,parrot,book,1 -no,that's not true,original,cancel,3 -how_busy,how busy will the chili kitchen be at 4:30,lambada,avail,0 -no,not right?,parrot,cancel,3 -no,please disagree,lambada,cancel,3 -greeting,what do i feel?,parrot,greet,4 -reminder_update,set reminder for meeting time at 2 pm,lambada,resched,5 -goodbye,goodbye!,original,bye,2 -goodbye,i'm leaving,parrot,bye,2 -goodbye,i leave now,parrot,bye,2 -yes,indeed,original,book,1 -reminder_update,i want to remind you to look at this one,parrot,resched,5 -how_busy,wait at chili at 5 pm?,parrot,avail,0 -yes,yes sir,original,book,1 -date,today?,parrot,avail,0 -no,the statement is absolutely false,parrot,cancel,3 -how_busy,is that place crowded during dinner?,lambada,avail,0 -calendar_update,delete my golf tournament from tomorrow,parrot,resched,5 -goodbye,until the next time,parrot,bye,2 -how_busy,show me how busy this restaurant is?,parrot,avail,0 -goodbye,it was nice to have an interaction with you,lambada,bye,2 -goodbye,later then,lambada,bye,2 -goodbye,i need to speak to you,lambada,bye,2 -goodbye,good-bye,parrot,bye,2 -reminder_update,remind me to put the onion on the grill,lambada,resched,5 -goodbye,fairwell,original,bye,2 -greeting,hello,original,greet,4 -no,that would be wrong,lambada,cancel,3 -greeting,tell me how it goes with my family,parrot,greet,4 -meeting_schedule,what's the time of meeting?,parrot,avail,0 -no,that's very negative,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,huh,parrot,book,1 -reminder_update,make me remember,parrot,resched,5 -yes,"yes, that is accurate",original,book,1 -how_busy,how long does it take to get a table at chili's restaurant?,parrot,avail,0 -schedule_meeting,how can i know if i can open a new meeting,lambada,book,1 -thank_you,many thank,original,bye,2 -calendar,what's my schedule for october 14th?,parrot,avail,0 -greeting,hi what's up?,parrot,greet,4 -goodbye,bye-bye,original,bye,2 -yes,seems true,parrot,book,1 -thank_you,thanks!,original,bye,2 -yes,certainly,parrot,book,1 -goodbye,adios,original,bye,2 -yes,approved,original,book,1 -how_busy,how long will it be at ihop around 8,lambada,avail,0 -how_busy,how long will i have to wait for the red lobster,parrot,avail,0 -yes,yeah,original,book,1 -no,negative sure,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -greeting,hola!,original,greet,4 -no,and i'm sorry,parrot,cancel,3 -how_busy,how long should i wait at the cheesecake factory before getting seated?,parrot,avail,0 -yes,positive,original,book,1 -yes,yes i can say yes,lambada,book,1 -how_busy,how long can i wait to eat at a restaurant?,parrot,avail,0 -no,that's incorrect!,original,cancel,3 -yes,i want to confirm that this is true,lambada,book,1 -goodbye,good see you,lambada,bye,2 -date,can you tell me the day of the month or a year?,parrot,avail,0 -yes,that's right,original,book,1 -yes,positive,parrot,book,1 -how_busy,how busy is igor's at 8 pm,lambada,avail,0 -no,naw,original,cancel,3 -goodbye,goodbye then,parrot,bye,2 -goodbye,talk to you later!,original,bye,2 -thank_you,thanks!,original,bye,2 -no,not correct,parrot,cancel,3 -calendar_update,remove the june 7 symphony event from my calendar,parrot,resched,5 -date,what is the full date after today?,original,avail,0 -greeting,hello,original,greet,4 -thank_you,good job on that,lambada,bye,2 -date,date tomorrow,parrot,avail,0 -how_busy,how long will i have to wait to be at the red lobster,parrot,avail,0 -calendar,show me the calendar?,parrot,avail,0 -goodbye,and i had fun speaking with you,parrot,bye,2 -no,no that isn't it,original,cancel,3 -greeting,salutation,parrot,greet,4 -goodbye,adios ai,original,bye,2 -no,so it's not possible,parrot,cancel,3 -greeting,hey there!,original,greet,4 -greeting,hi there,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -greeting,what's happening?,parrot,greet,4 -goodbye,goodbye goodbye,parrot,bye,2 -date,what day will it be in 6 days?,parrot,avail,0 -goodbye,say goodbye now,parrot,bye,2 -goodbye,goodnight,original,bye,2 -yes,yes,original,book,1 -goodbye,just relax,parrot,bye,2 -schedule_meeting,i need to schedule a meeting with steve at 3pm,lambada,book,1 -no,negatory,original,cancel,3 -no,that can't be true,original,cancel,3 -yes,accept,parrot,book,1 -yes,it's positive,parrot,book,1 -how_busy,is ihop busy around 8 am?,parrot,avail,0 -date,what date will it be two days from now?,lambada,avail,0 -goodbye,buhbye now,lambada,bye,2 -calendar,what's my schedule for april 30,lambada,avail,0 -meeting_schedule,give me my schedule of meetings,parrot,avail,0 -cancel_reservation,please cancel my dinner reservation tonight,parrot,cancel,3 -goodbye,come on soon,parrot,bye,2 -calendar,did i had my wife and mine anniversary to my calendar?,original,avail,0 -no,that is erroneous,original,cancel,3 -no,this is a lie,parrot,cancel,3 -no,"that's not right, so no",original,cancel,3 -how_busy,how long will i have to wait if i want to be seated at applebee's,lambada,avail,0 -goodbye,need to talk with you,parrot,bye,2 -greeting,hola,original,greet,4 -greeting,"hello, what's up",original,greet,4 -date,i need to know what's the date today?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -greeting,heyo,original,greet,4 -date,please explain today,parrot,avail,0 -thank_you,you gave me this,parrot,bye,2 -thank_you,thank ya!,original,bye,2 -greeting,hey there,original,greet,4 -goodbye,i'll leave,parrot,bye,2 -thank_you,i'm so very grateful,parrot,bye,2 -no,FALSE,original,cancel,3 -thank_you,thank you!,original,bye,2 -date,what's today,original,avail,0 -thank_you,so grateful,parrot,bye,2 -goodbye,good luck,lambada,bye,2 -thank_you,okay thank you,parrot,bye,2 -calendar,check my calendar,parrot,avail,0 -meeting_schedule,meeting today,parrot,avail,0 -no,that’s incorrect,original,cancel,3 -thank_you,appreciated,original,bye,2 -greeting,how're you doing?,parrot,greet,4 -no,i'll say no,parrot,cancel,3 -yes,say yes,lambada,book,1 -goodbye,have to go,parrot,bye,2 -no,negative,original,cancel,3 -meeting_schedule,i have any meetings today,lambada,avail,0 -yes,that checks out,original,book,1 -goodbye,i loved talking to you goodbye,parrot,bye,2 -how_busy,at lunch time is the restaurant full of people?,parrot,avail,0 -date,what is the date it will be 3 days from now?,lambada,avail,0 -no,certainly false,parrot,cancel,3 -thank_you,you've been great,parrot,bye,2 -yes,indeed,original,book,1 -thank_you,you've been great,parrot,bye,2 -no,negation,parrot,cancel,3 -greeting,how you are,original,greet,4 -yes,yes,original,book,1 -goodbye,fairwell?,parrot,bye,2 -greeting,hello what's up?,parrot,greet,4 -yes,TRUE,lambada,book,1 -reminder_update,add me a reminder?,parrot,resched,5 -greeting,salutations!,original,greet,4 -date,i need to know the date tomorrow,lambada,avail,0 -how_busy,when is chili busy?,parrot,avail,0 -no,nope that's not right,parrot,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -date,current day,parrot,avail,0 -reminder_update,let me know,parrot,resched,5 -goodbye,bye bye,lambada,bye,2 -calendar_update,i want you to cancel the event called 'bachelorette party' on april 15,original,resched,5 -greeting,how's it going?,parrot,greet,4 -goodbye,buhbye now,lambada,bye,2 -yes,absolutely,original,book,1 -greeting,why hello?,original,greet,4 -goodbye,as regards,parrot,bye,2 -thank_you,gracias,original,bye,2 -reminder_update,please remind me to put the clothes in the dryer,parrot,resched,5 -thank_you,i appreciate this answer,parrot,bye,2 -reminder_update,i want to remind you to look at this,parrot,resched,5 -no,no!,original,cancel,3 -thank_you,thanks,original,bye,2 -yes,accept,parrot,book,1 -yes,facts,original,book,1 -date,what's today?,parrot,avail,0 -no,sorry but not true,parrot,cancel,3 -reminder_update,remember to call me tomorrow,parrot,resched,5 -yes,not false,parrot,book,1 -date,what's the date today?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -goodbye,good luck later,parrot,bye,2 -goodbye,later!,original,bye,2 -no,nope,original,cancel,3 -goodbye,fairwell?,parrot,bye,2 -no,would be a lie,parrot,cancel,3 -yes,facts,original,book,1 -no,negative sure,parrot,cancel,3 -greeting,how are things going?,parrot,greet,4 -how_busy,how long will i have to wait to be seated at the chili's,lambada,avail,0 -no,i'd say no,original,cancel,3 -date,wednesday friday or saturday?,parrot,avail,0 -greeting,how have you been?,parrot,greet,4 -goodbye,send a goodbye,lambada,bye,2 -how_busy,is there a lot of people at chili's around 830?,parrot,avail,0 -greeting,what's happening?,parrot,greet,4 -date,current date,original,avail,0 -no,that's not right,original,cancel,3 -greeting,hey bs,lambada,greet,4 -goodbye,good night,original,bye,2 -goodbye,later!,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -thank_you,very grateful,parrot,bye,2 -yes,accepted,original,book,1 -how_busy,what does a red lobster get at 7pm?,parrot,avail,0 -yes,absolutely!,original,book,1 -no,not good idea,parrot,cancel,3 -greeting,yo,original,greet,4 -goodbye,great talk,lambada,bye,2 -yes,a fact,parrot,book,1 -cancel_reservation,cancel my reservation at the restaurant for robin,parrot,cancel,3 -greeting,hello hello good day,parrot,greet,4 -goodbye,tootles,original,bye,2 -meeting_schedule,i have a meeting with alice,parrot,avail,0 -yes,it's true,original,book,1 -yes,great,original,book,1 -yes,that's a fact,parrot,book,1 -no,it's false,parrot,cancel,3 -how_busy,can you tell me how busy that restaurant is today?,lambada,avail,0 -goodbye,sign off,parrot,bye,2 -yes,certainly,parrot,book,1 -yes,huh,parrot,book,1 -no,negatory,original,cancel,3 -greeting,whats up?,parrot,greet,4 -thank_you,i owe you,parrot,bye,2 -goodbye,later gater,original,bye,2 -yes,confirmed,original,book,1 -no,negatory,original,cancel,3 -goodbye,the chat was great,parrot,bye,2 -goodbye,ai goodbye,original,bye,2 -no,that's erroneous,parrot,cancel,3 -goodbye,", goodbye",lambada,bye,2 -goodbye,adios,original,bye,2 -calendar,did i put an item on the calendar called my doctor appointment?,parrot,avail,0 -no,please disagree,lambada,cancel,3 -how_busy,what's the wait like?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -date,what date is that?,parrot,avail,0 -yes,"affirmative, go ahead",original,book,1 -calendar_update,how can i add a veterinarian appointment on march 1?,parrot,resched,5 -how_busy,is ihop busy?,parrot,avail,0 -goodbye,i've got to go out,parrot,bye,2 -goodbye,have fun?,lambada,bye,2 -greeting,welcome,parrot,greet,4 -thank_you,thanks for the assist,original,bye,2 -how_busy,how busy will imbrosi be at 745,parrot,avail,0 -date,is today monday?,original,avail,0 -yes,definitely,original,book,1 -calendar_update,remove june 7 event called symphony from my calendar,lambada,resched,5 -how_busy,can we expect a long wait at the cheesecake factory?,parrot,avail,0 -yes,right,parrot,book,1 -goodbye,goodbyes soon,parrot,bye,2 -goodbye,im leaving,parrot,bye,2 -no,so that's no,parrot,cancel,3 -yes,approved,original,book,1 -goodbye,see you around,original,bye,2 -no,no,lambada,cancel,3 -yes,and you're right,parrot,book,1 -meeting_schedule,will you meet ann?,parrot,avail,0 -goodbye,later,original,bye,2 -greeting,hi there alexa,original,greet,4 -yes,obviously,parrot,book,1 -goodbye,see ya,original,bye,2 -yes,huh,parrot,book,1 -calendar_update,can you change the date of the doctor's appointment event in my calendar from april 1st to april 3rd?,parrot,resched,5 -yes,affirmitive,original,book,1 -greeting,hows it going,lambada,greet,4 -greeting,what's happened to you?,parrot,greet,4 -how_busy,is the restaurant crowded around lunch? '',parrot,avail,0 -calendar_update,go ahead and cancel the appointment that was planned yesterday,parrot,resched,5 -reminder_update,new reminder please,lambada,resched,5 -greeting,salutations!,original,greet,4 -how_busy,how long will the wait time be for a table at olive garden at 12,lambada,avail,0 -thank_you,"thanks, that's helpful",original,bye,2 -yes,ya,original,book,1 -goodbye,buhbye now,lambada,bye,2 -yes,yes,original,book,1 -greeting,hello there!,original,greet,4 -no,that's erroneous,parrot,cancel,3 -goodbye,good bye for now,parrot,bye,2 -goodbye,just relax,parrot,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -greeting,yo,original,greet,4 -goodbye,goodbye,original,bye,2 -yes,right,parrot,book,1 -calendar,tell me what's on sunday?,parrot,avail,0 -yes,true is my response,original,book,1 -goodbye,tootles,original,bye,2 -meeting_schedule,is there any meetings in my calendar?,parrot,avail,0 -yes,good,parrot,book,1 -thank_you,"great, thanks!",original,bye,2 -yes,oh-huh,parrot,book,1 -goodbye,i'll see you around,lambada,bye,2 -yes,im sure you are true,parrot,book,1 -yes,confirm,original,book,1 -greeting,ahoy,lambada,greet,4 -no,no way,original,cancel,3 -greeting,bonjour,original,greet,4 -greeting,how ya doing,lambada,greet,4 -calendar_update,i want to make an appointment for friday,parrot,resched,5 -date,what is month and year?,parrot,avail,0 -date,what date will it be tomorrow?,original,avail,0 -yes,huh,parrot,book,1 -goodbye,fairwell,original,bye,2 -goodbye,"great talk, thanks",original,bye,2 -goodbye,goodbye soon,lambada,bye,2 -yes,oh-huh,parrot,book,1 -greeting,ahoy,lambada,greet,4 -greeting,how's my feeling?,parrot,greet,4 -reminder_update,set a reminder to pay the bill tonight,lambada,resched,5 -no,i meant no,original,cancel,3 -cancel_reservation,cancel my reservation for 5:30 at red lobster,lambada,cancel,3 -greeting,give me the information,parrot,greet,4 -greeting,"good morning, ai",original,greet,4 -goodbye,cya later,original,bye,2 -how_busy,how long will the wait be when i go to olive gardens?,parrot,avail,0 -calendar_update,i have to add an event to my calendar for the 7th,parrot,resched,5 -greeting,aho,parrot,greet,4 -no,nada,original,cancel,3 -how_busy,will the chipotle fries menu be busy?,parrot,avail,0 -no,ill pass,original,cancel,3 -yes,TRUE,original,book,1 -meeting_schedule,meetings today,original,avail,0 -thank_you,thankyou,parrot,bye,2 -thank_you,i'm thankful,original,bye,2 -no,i disagree,parrot,cancel,3 -greeting,heller,original,greet,4 -yes,it is true yes,parrot,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -greeting,hey fellows,parrot,greet,4 -goodbye,farewell!,original,bye,2 -thank_you,many thanks,original,bye,2 -no,don't like that no,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -goodbye,farewell,original,bye,2 -goodbye,lovely conversation,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -reminder_update,maybe a reminder?,parrot,resched,5 -yes,yeap,original,book,1 -yes,great,original,book,1 -yes,absolutely!,original,book,1 -greeting,hi what's up?,parrot,greet,4 -cancel_reservation,shut down the dinner reservation,parrot,cancel,3 -how_busy,tell me how busy regina is?,parrot,avail,0 -no,no?,parrot,cancel,3 -date,is the date?,parrot,avail,0 -no,naw,original,cancel,3 -no,that's not acceptable,parrot,cancel,3 -reminder_update,create a reminder to take the dog to the vet,lambada,resched,5 -goodbye,"later, goodbye",lambada,bye,2 -greeting,how's the ai?,parrot,greet,4 -no,not good,parrot,cancel,3 -yes,TRUE,original,book,1 -reminder_update,make reminder to pay rent on the 30th of every month,original,resched,5 -reminder_update,give me a reminder,parrot,resched,5 -no,no,lambada,cancel,3 -thank_you,i'm really thankful,parrot,bye,2 -yes,that's absolutely true,parrot,book,1 -date,what is the date it will be in nine days?,lambada,avail,0 -how_busy,what are the wait times at chinese table?,lambada,avail,0 -cancel_reservation,scrap the dinner reservation,parrot,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -calendar,let me know what's on my calendar for march 26,parrot,avail,0 -yes,TRUE,lambada,book,1 -greeting,hello bs,parrot,greet,4 -no,that's so false,parrot,cancel,3 -yes,thats right,original,book,1 -how_busy,how busy is red lobster at 6?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -how_busy,when is rancho crowded?,parrot,avail,0 -no,it's false,parrot,cancel,3 -no,no,lambada,cancel,3 -cancel_reservation,cancel the reservation for 6 at the red robin,lambada,cancel,3 -goodbye,later,original,bye,2 -reminder_update,let me remember,parrot,resched,5 -greeting,hi how's my life?,parrot,greet,4 -yes,huh,parrot,book,1 -calendar_update,remove the event on friday from my calendar,parrot,resched,5 -goodbye,sayonara ,parrot,bye,2 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -greeting,hello what are you doing?,parrot,greet,4 -date,what's the next month?,parrot,avail,0 -no,negative,original,cancel,3 -yes,great,original,book,1 -how_busy,does the olive garden get crowded during the dinner?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -date,what is a date in 5 days?,parrot,avail,0 -no,nada,original,cancel,3 -no,FALSE,lambada,cancel,3 -goodbye,bye,original,bye,2 -greeting,yo,original,greet,4 -thank_you,thank you please,parrot,bye,2 -no,it's a false claim,parrot,cancel,3 -yes,yeap,original,book,1 -no,FALSE,lambada,cancel,3 -yes,okay,original,book,1 -how_busy,learn about the olive garden at 730pm,parrot,avail,0 -greeting,aloha,original,greet,4 -calendar_update,is it possible to delete an event from this calendar please?,parrot,resched,5 -cancel_reservation,should i cancel my reservations at my table?,parrot,cancel,3 -greeting,"hi, ai",original,greet,4 -yes,definitely,original,book,1 -reminder_update,create a reminder to wash dishes,parrot,resched,5 -greeting,hello,original,greet,4 -yes,positive,original,book,1 -greeting,how's life?,parrot,greet,4 -cancel_reservation,annull a reservation for robin,parrot,cancel,3 -meeting_schedule,are there meetings between 10 and 4?,parrot,avail,0 -date,what is tomorrow's date?,original,avail,0 -no,nothing good,parrot,cancel,3 -yes,sure,original,book,1 -thank_you,my gratitude,parrot,bye,2 -how_busy,what time will i be allowed to sit at the restaurant?,lambada,avail,0 -no,invalid,original,cancel,3 -date,show me the date,original,avail,0 -no,not true,original,cancel,3 -thank_you,really great!,original,bye,2 -no,"please, no",original,cancel,3 -thank_you,again thanks,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -greeting,how's that hanging?,parrot,greet,4 -meeting_schedule,show me the meetings on my agenda today?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -calendar,are there calendar events on march 19th?,parrot,avail,0 -reminder_update,please set a reminder?,parrot,resched,5 -no,please no,parrot,cancel,3 -greeting,ahoy,lambada,greet,4 -yes,yeah that's right,lambada,book,1 -goodbye,afterward,parrot,bye,2 -greeting,yo,original,greet,4 -no,it's very wrong,parrot,cancel,3 -no,that's negative,parrot,cancel,3 -goodbye,good call,parrot,bye,2 -thank_you,i'm thankful,original,bye,2 -greeting,salutations,parrot,greet,4 -greeting,are you okay now?,parrot,greet,4 -date,today what day of the week?,parrot,avail,0 -goodbye,goodbyes soon,parrot,bye,2 -yes,that's right,original,book,1 -no,don't agree,parrot,cancel,3 -yes,definitely,original,book,1 -thank_you,please thank you for letting me know,parrot,bye,2 -yes,exactly right,original,book,1 -goodbye,please talk soon,parrot,bye,2 -meeting_schedule,when are my meetings today?,lambada,avail,0 -yes,absolutely!,original,book,1 -greeting,hola,original,greet,4 -greeting,how're you doing?,parrot,greet,4 -goodbye,fairwell?,parrot,bye,2 -cancel_reservation,no longer need for reservation,parrot,cancel,3 -no,that's no,parrot,cancel,3 -no,most definitely false,parrot,cancel,3 -greeting,i want to know how you are doing,original,greet,4 -no,negating,parrot,cancel,3 -how_busy,how long will the wait be when i go to olive garden?,parrot,avail,0 -date,what month is this today?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -no,that's incorrect,original,cancel,3 -goodbye,goodbye later,parrot,bye,2 -cancel_reservation,can i cancel my reservation for dinner please,parrot,cancel,3 -greeting,do you feel?,parrot,greet,4 -how_busy,is ihop busy around 6?,lambada,avail,0 -no,no good,original,cancel,3 -yes,definitely,original,book,1 -yes,just right,parrot,book,1 -no,i'll pass,original,cancel,3 -yes,correct,original,book,1 -how_busy,how busy is the raspberry pie at 545?,parrot,avail,0 -calendar,what events are scheduled for april 15?,parrot,avail,0 -meeting_schedule,are there meetings from 10 to 4 today?,parrot,avail,0 -goodbye,adios,original,bye,2 -yes,ok,original,book,1 -yes,yes you are right,original,book,1 -yes,positive,original,book,1 -meeting_schedule,are there any meetings with ben today?,parrot,avail,0 -greeting,aloha,original,greet,4 -yes,certainly true,parrot,book,1 -greeting,how's otc?,parrot,greet,4 -how_busy,how busy the cheesecake factory will be?,parrot,avail,0 -thank_you,merci beaucoup,original,bye,2 -no,i would rather not,lambada,cancel,3 -goodbye,sayonara,original,bye,2 -no,so that's no,parrot,cancel,3 -reminder_update,a new reminder please,parrot,resched,5 -goodbye,", goodbye",lambada,bye,2 -goodbye,i'll have to go later,parrot,bye,2 -yes,good,parrot,book,1 -greeting,heller,original,greet,4 -goodbye,buhbye,original,bye,2 -date,is it six days?,parrot,avail,0 -goodbye,good night,original,bye,2 -date,do you have a date today?,parrot,avail,0 -schedule_meeting,are there meeting rooms available from 11am to 1pm?,parrot,book,1 -thank_you,i want to thank you for your time,parrot,bye,2 -meeting_schedule,when do i get to see roger?,parrot,avail,0 -schedule_meeting,one and three pm are there meeting rooms open,original,book,1 -no,don't agree,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -no,negatory?,parrot,cancel,3 -no,that's certainly false,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -no,nothing,parrot,cancel,3 -meeting_schedule,can you list the schedule of my meeting today?,parrot,avail,0 -thank_you,thank you,original,bye,2 -reminder_update,please remember to pay my tax,parrot,resched,5 -goodbye,"later, good luck",lambada,bye,2 -goodbye,ai goodbye,original,bye,2 -thank_you,thank you for the answer,original,bye,2 -goodbye,bye now,original,bye,2 -yes,10-Apr,original,book,1 -no,that's inaccurate,original,cancel,3 -calendar_update,remove the dinner party from my calendar,parrot,resched,5 -no,it's not true,parrot,cancel,3 -no,i meant nothing,parrot,cancel,3 -how_busy,list the current seating times at this restaurant?,parrot,avail,0 -schedule_meeting,can you schedule a meeting for 6 pm on monday?,parrot,book,1 -date,what's the year?,parrot,avail,0 -how_busy,is ihop busy around 815am?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -yes,i think that's correct,parrot,book,1 -yes,affirmative,original,book,1 -yes,i know,parrot,book,1 -date,please date,parrot,avail,0 -date,what date will it be tomorrow,parrot,avail,0 -cancel_reservation,is it possible to cancel the reservation at outback for the johnsons?,original,cancel,3 -goodbye,fairwell,original,bye,2 -yes,say positive,parrot,book,1 -date,current date,original,avail,0 -no,it's so bad,parrot,cancel,3 -how_busy,is red lobster busy?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -yes,indeed,original,book,1 -greeting,hello bs,parrot,greet,4 -no,negatory?,parrot,cancel,3 -no,"no, that's wrong",original,cancel,3 -yes,"yes, please",parrot,book,1 -no,nope that's not it,original,cancel,3 -no,no please,parrot,cancel,3 -no,negatory,original,cancel,3 -yes,uh-huh,original,book,1 -thank_you,i appeciate it,parrot,bye,2 -thank_you,thank you?,parrot,bye,2 -yes,yup,original,book,1 -yes,great,original,book,1 -date,current day,parrot,avail,0 -thank_you,youre a doll,original,bye,2 -yes,confirm,original,book,1 -greeting,ahoy,lambada,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,hey,original,greet,4 -reminder_update,i need to pay for my car on the 23rd,parrot,resched,5 -no,say negative,parrot,cancel,3 -yes,that's correct,original,book,1 -goodbye,i'll go,parrot,bye,2 -cancel_reservation,cancel my reservation for xander at red robin,lambada,cancel,3 -date,what date is in 30 days?,lambada,avail,0 -yes,say yes,lambada,book,1 -no,sure it's wrong,parrot,cancel,3 -no,nope not it,original,cancel,3 -meeting_schedule,exactly what time is my meeting with robin scheduled for?,parrot,avail,0 -date,what is a date in 100 days?,parrot,avail,0 -thank_you,oh sweet thanks,original,bye,2 -goodbye,afterward,parrot,bye,2 -no,FALSE,lambada,cancel,3 -goodbye,adios,original,bye,2 -greeting,aloha,original,greet,4 -greeting,hello,original,greet,4 -thank_you,thank ya!,original,bye,2 -yes,i guess you're right,parrot,book,1 -how_busy,can you tell me the wait time for applebee's?,parrot,avail,0 -reminder_update,what's a reminder,parrot,resched,5 -yes,ok,original,book,1 -how_busy,how busy will honey be at the dinner,parrot,avail,0 -no,negatory?,parrot,cancel,3 -no,FALSE,original,cancel,3 -no,that's inaccurate,original,cancel,3 -yes,absolutely!,original,book,1 -date,list the current days?,parrot,avail,0 -no,i think it's wrong,parrot,cancel,3 -goodbye,good luck,lambada,bye,2 -greeting,heller,original,greet,4 -no,it's negative,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -goodbye,i enjoyed our goodbye,parrot,bye,2 -thank_you,nice,parrot,bye,2 -reminder_update,i need a reminder to wash the dish,parrot,resched,5 -greeting,how's it going,lambada,greet,4 -date,in 9 days?,parrot,avail,0 -how_busy,how long will i have to wait to be seated at outback steakhouse,lambada,avail,0 -goodbye,fairwell,original,bye,2 -yes,and you're correct,parrot,book,1 -no,no!,original,cancel,3 -thank_you,thanks,original,bye,2 -yes,indeed,parrot,book,1 -thank_you,very grateful,parrot,bye,2 -goodbye,peace out,original,bye,2 -date,what is the date tomorrow?,original,avail,0 -greeting,"hello, good day",lambada,greet,4 -schedule_meeting,what's the meeting room availability between noon and 2,original,book,1 -calendar,did i set a date on my calendar for doctor's appointment?,lambada,avail,0 -goodbye,adios,original,bye,2 -yes,certainly,parrot,book,1 -goodbye,my friend,parrot,bye,2 -no,nada,original,cancel,3 -no,not true,original,cancel,3 -how_busy,tell me the time it'll be?,parrot,avail,0 -how_busy,tell me how busy is michel at 5 pm?,parrot,avail,0 -yes,absolutely,original,book,1 -thank_you,again thanks,parrot,bye,2 -calendar_update,i have an appointment i have to cancel for march 18th,parrot,resched,5 -date,where's tomorrow's date,parrot,avail,0 -goodbye,as regards,parrot,bye,2 -greeting,hey there fellow,original,greet,4 -goodbye,afterward,parrot,bye,2 -date,what day?,parrot,avail,0 -no,not that one,original,cancel,3 -no,is my falsehood?,parrot,cancel,3 -greeting,hiya!,original,greet,4 -goodbye,adios,original,bye,2 -yes,good,parrot,book,1 -no,this is false,parrot,cancel,3 -thank_you,i'm glad you did it for me,parrot,bye,2 -reminder_update,please reminder for car meet,original,resched,5 -date,what's my date in five days?,parrot,avail,0 -reminder_update,add a reminder,lambada,resched,5 -meeting_schedule,is my schedule clear?,parrot,avail,0 -yes,right,parrot,book,1 -yes,it's certainly positive,parrot,book,1 -greeting,hello how are you,lambada,greet,4 -thank_you,thank you again,parrot,bye,2 -yes,facts,original,book,1 -date,what date?,parrot,avail,0 -goodbye,good luck,lambada,bye,2 -thank_you,thanks,original,bye,2 -thank_you,please thank you for doing it,parrot,bye,2 -thank_you,you gave me that,parrot,bye,2 -date,is today monday?,original,avail,0 -how_busy,is there a waiting time for a seat at e-li?,lambada,avail,0 -goodbye,have a good day?,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -goodbye,goodbye bye,parrot,bye,2 -greeting,aho,parrot,greet,4 -date,in 8 days?,parrot,avail,0 -goodbye,for now,parrot,bye,2 -no,nope,original,cancel,3 -greeting,aloha,original,greet,4 -how_busy,how long will it take to get seated at olive garden at 6,lambada,avail,0 -greeting,hiya,original,greet,4 -how_busy,can you tell me the current wait time in the restaurant?,parrot,avail,0 -reminder_update,should i be reminded to set a reminder for my flight,parrot,resched,5 -greeting,hello ai,parrot,greet,4 -greeting,yo,original,greet,4 -no,negation,parrot,cancel,3 -greeting,wassup,original,greet,4 -date,current day,parrot,avail,0 -goodbye,good bye then,original,bye,2 -goodbye,my friend,parrot,bye,2 -yes,that's true,original,book,1 -meeting_schedule,meetings today,original,avail,0 -goodbye,good conversation,parrot,bye,2 -no,no it's not true,parrot,cancel,3 -greeting,hola!,original,greet,4 -yes,say positive,parrot,book,1 -goodbye,ai goodbye,original,bye,2 -greeting,can you describe what you feel today?,parrot,greet,4 -yes,"yes, that's affirmative",original,book,1 -greeting,"hello, ai",original,greet,4 -yes,yeah,original,book,1 -date,in seven days?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -yes,yep,original,book,1 -yes,sure thing,original,book,1 -calendar_update,must add the farm trip to my calendar for friday,parrot,resched,5 -no,please no,parrot,cancel,3 -thank_you,you're welcome,parrot,bye,2 -calendar,is there an amy surprise party on my calendar?,parrot,avail,0 -goodbye,cya later,original,bye,2 -goodbye,good conversation,parrot,bye,2 -greeting,hola,original,greet,4 -no,that has to be false,original,cancel,3 -thank_you,thanks a lot,original,bye,2 -yes,is true,parrot,book,1 -greeting,hiya,original,greet,4 -yes,confirm,original,book,1 -yes,ya,original,book,1 -goodbye,good speaking to you,original,bye,2 -how_busy,can you tell me if the olive garden is busy around 9pm?,parrot,avail,0 -no,naw,parrot,cancel,3 -calendar,what's tuesday's calendar?,parrot,avail,0 -thank_you,thanks very much for your answer,parrot,bye,2 -greeting,hello,original,greet,4 -no,"no, it's not",lambada,cancel,3 -date,what date do we enter in the future? '',parrot,avail,0 -no,not right?,parrot,cancel,3 -greeting,ahoy there,lambada,greet,4 -no,negation,parrot,cancel,3 -cancel_reservation,can i cancel my reservation for red robin at 4 o'clock?,lambada,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how busy will ihop be at noon?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -meeting_schedule,what is the time of the meeting with diana,parrot,avail,0 -goodbye,see ya,original,bye,2 -schedule_meeting,i want to find out how do i schedule a meeting?,parrot,book,1 -no,false sure,parrot,cancel,3 -greeting,aho,parrot,greet,4 -cancel_reservation,would you like to cancel my reservation?,parrot,cancel,3 -thank_you,awesome thanks,parrot,bye,2 -how_busy,can you tell me what the wait at chipotle is?,parrot,avail,0 -greeting,salutations!,original,greet,4 -calendar,tell me if i have any events on my calendar for march 16?,parrot,avail,0 -no,negatory,original,cancel,3 -date,what is the month and day tomorrow?,original,avail,0 -yes,yeah,original,book,1 -date,tell me the date,parrot,avail,0 -no,there is no,parrot,cancel,3 -how_busy,check the wait time for macaroni grill,original,avail,0 -date,tell me the date?,original,avail,0 -greeting,hi,original,greet,4 -greeting,how things go?,parrot,greet,4 -date,please tell me what the date is?,parrot,avail,0 -greeting,how does ai feel?,parrot,greet,4 -goodbye,goodbye soon,lambada,bye,2 -no,that's not right,original,cancel,3 -no,that’s incorrect,original,cancel,3 -reminder_update,set reminder to pay my taxes on saturday,lambada,resched,5 -date,what's my day?,parrot,avail,0 -goodbye,glad to talk again,parrot,bye,2 -yes,"yes, that's right",original,book,1 -goodbye,peace out,original,bye,2 -goodbye,tootles?,parrot,bye,2 -no,naw,parrot,cancel,3 -yes,great,original,book,1 -yes,obviously,parrot,book,1 -greeting,are you doing ok?,original,greet,4 -greeting,yo,original,greet,4 -how_busy,wait at jalapeno ranch?,parrot,avail,0 -calendar,ask me if my calendar has any appointments on may 15,lambada,avail,0 -yes,so it's true,parrot,book,1 -yes,a real statement,parrot,book,1 -yes,confirm,original,book,1 -greeting,how's everything?,parrot,greet,4 -greeting,aloha,original,greet,4 -greeting,what's my feeling?,parrot,greet,4 -goodbye,the talk was nice,lambada,bye,2 -greeting,you good?,parrot,greet,4 -thank_you,i'm thankful for you,parrot,bye,2 -goodbye,i've had a good talk with you,lambada,bye,2 -thank_you,"nice, excellent!",original,bye,2 -schedule_meeting,can you set up a meeting room please?,parrot,book,1 -goodbye,goodnight,original,bye,2 -no,"please, no",original,cancel,3 -no,that’s not correct,original,cancel,3 -calendar,tell me the date of march on my calendar?,parrot,avail,0 -greeting,hiya!,original,greet,4 -greeting,how's everything,original,greet,4 -goodbye,good night,original,bye,2 -no,that's not acceptable,parrot,cancel,3 -reminder_update,remind me to bring a jacket in tomorrow,original,resched,5 -greeting,how's everything?,parrot,greet,4 -goodbye,goodbyes,parrot,bye,2 -no,nada,original,cancel,3 -greeting,salutations,parrot,greet,4 -yes,certainly,parrot,book,1 -yes,indeed,parrot,book,1 -yes,yeah,original,book,1 -how_busy,how busy is the cheesecake factory around lunch time,lambada,avail,0 -greeting,hey bs,lambada,greet,4 -yes,positive,parrot,book,1 -no,no,lambada,cancel,3 -greeting,salutation,parrot,greet,4 -reminder_update,what about a reminder,parrot,resched,5 -yes,perfect,parrot,book,1 -goodbye,adios,original,bye,2 -date,show me a calendar,original,avail,0 -greeting,salutation,parrot,greet,4 -yes,certainly,parrot,book,1 -no,that's not right it's false,original,cancel,3 -yes,i want that,parrot,book,1 -calendar,please check my calendar for tuesday?,parrot,avail,0 -greeting,what's happening,original,greet,4 -no,FALSE,lambada,cancel,3 -reminder_update,remind me later,original,resched,5 -schedule_meeting,can you book a meeting room for 5pm on friday?,parrot,book,1 -no,no,lambada,cancel,3 -greeting,hey,original,greet,4 -goodbye,my friend,parrot,bye,2 -schedule_meeting,please set a meeting with john at 10am,parrot,book,1 -goodbye,i’m leaving-goodbye!,original,bye,2 -no,naw,original,cancel,3 -yes,sure,original,book,1 -yes,great,original,book,1 -goodbye,good talk,parrot,bye,2 -goodbye,peace out,original,bye,2 -greeting,hola,original,greet,4 -date,today?,parrot,avail,0 -date,what year?,parrot,avail,0 -date,what's the present day?,parrot,avail,0 -schedule_meeting,what meeting rooms are available for meeting at 5pm friday?,parrot,book,1 -date,wednesday friday or saturday?,parrot,avail,0 -date,current date,original,avail,0 -calendar_update,delete joe's wedding from my calendar,parrot,resched,5 -greeting,what's new here?,parrot,greet,4 -reminder_update,remind me,original,resched,5 -yes,sure,original,book,1 -date,what is today?,original,avail,0 -goodbye,good speaking to you,original,bye,2 -date,when will it be?,parrot,avail,0 -thank_you,your assistance is appreciated,parrot,bye,2 -no,not good idea,parrot,cancel,3 -greeting,hola!,original,greet,4 -yes,TRUE,lambada,book,1 -greeting,how is everything going,original,greet,4 -no,FALSE,lambada,cancel,3 -thank_you,awesome thank you,parrot,bye,2 -yes,indeed,original,book,1 -no,nay,original,cancel,3 -how_busy,i want to know how long i have to wait at olive garden,parrot,avail,0 -meeting_schedule,what is my meeting schedule for today?,lambada,avail,0 -yes,so it's true,parrot,book,1 -calendar,what's my schedule for thursday 14th?,parrot,avail,0 -no,invalid,original,cancel,3 -yes,okay,original,book,1 -yes,that is right,original,book,1 -greeting,whats up?,parrot,greet,4 -goodbye,adios!,original,bye,2 -cancel_reservation,cancel my reservation at morton's,lambada,cancel,3 -calendar,what's my schedule for thursday?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -reminder_update,remind me,original,resched,5 -no,no?,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -greeting,what's new,lambada,greet,4 -thank_you,you gave me this,parrot,bye,2 -cancel_reservation,i want to cancel the reservation for mercury at ritz,parrot,cancel,3 -greeting,hi ai,original,greet,4 -no,that would be incorrect,lambada,cancel,3 -greeting,how you're treated,parrot,greet,4 -greeting,tell me how it's doing?,parrot,greet,4 -schedule_meeting,can you create a meeting for 3:00 on wednesday?,original,book,1 -greeting,"hi, ai",original,greet,4 -goodbye,farewell,original,bye,2 -meeting_schedule,a meeting with ruth is on my schedule today?,parrot,avail,0 -how_busy,is there a lot of wait time at the cheese cake factory at 5:30?,lambada,avail,0 -no,not right,parrot,cancel,3 -yes,huh huh,parrot,book,1 -yes,yeah yeah,lambada,book,1 -schedule_meeting,how do you create a meeting?,parrot,book,1 -how_busy,how busy will oompa be at lunch,parrot,avail,0 -goodbye,peace,original,bye,2 -thank_you,you've been great,parrot,bye,2 -calendar,what's on the next day of march?,parrot,avail,0 -greeting,what's happening?,parrot,greet,4 -yes,"yes, that is factual",original,book,1 -goodbye,buhbye,original,bye,2 -goodbye,farewell!,original,bye,2 -yes,not a falsehood,parrot,book,1 -greeting,hello,original,greet,4 -goodbye,later then,lambada,bye,2 -greeting,wassup,original,greet,4 -yes,positive,original,book,1 -how_busy,can i expect the macaroni grill to be busy at 6?,parrot,avail,0 -reminder_update,please remind me to take out the garbage in an hour,parrot,resched,5 -date,what will it be in 9 days?,parrot,avail,0 -thank_you,i'm glad you answered,parrot,bye,2 -greeting,hello bs,parrot,greet,4 -goodbye,later,original,bye,2 -thank_you,thanks!,original,bye,2 -reminder_update,i'd like a reminder to pay my bcd,parrot,resched,5 -goodbye,fairwell?,parrot,bye,2 -yes,good,parrot,book,1 -greeting,what do you feel today?,parrot,greet,4 -greeting,hiya,original,greet,4 -date,where's the date tomorrow?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -no,negating,parrot,cancel,3 -calendar,i have something to do march 2nd?,parrot,avail,0 -goodbye,adios!,original,bye,2 -how_busy,how busy is arizona's red robin at 5 pm,lambada,avail,0 -greeting,welcome,parrot,greet,4 -goodbye,bye-bye,original,bye,2 -date,do you have a date for today?,parrot,avail,0 -yes,"that's right, it's true",lambada,book,1 -meeting_schedule,is there a meeting scheduled today?,parrot,avail,0 -cancel_reservation,cancel my dinner reservation,lambada,cancel,3 -how_busy,do you know the busy hours at olive garden?,parrot,avail,0 -date,what year?,parrot,avail,0 -calendar_update,please remove the doctor appointment from my calendar,parrot,resched,5 -greeting,how's the ai?,parrot,greet,4 -no,naw,original,cancel,3 -reminder_update,add an reminder to my check,parrot,resched,5 -goodbye,adios ai,original,bye,2 -yes,absolutely,original,book,1 -yes,i'll say yes,parrot,book,1 -date,i need a date,parrot,avail,0 -greeting,hi there,original,greet,4 -reminder_update,can you remind me to apply for a credit card?,parrot,resched,5 -goodbye,good talk,parrot,bye,2 -thank_you,you've helped,parrot,bye,2 -schedule_meeting,set a meeting for noon on wednesday,lambada,book,1 -thank_you,okay thanks,original,bye,2 -greeting,wassup,original,greet,4 -yes,yes,original,book,1 -yes,definitely,original,book,1 -greeting,whats new,lambada,greet,4 -goodbye,"nice talk, goodbye",lambada,bye,2 -yes,absolutely!,original,book,1 -yes,10-Apr,original,book,1 -greeting,why hello?,original,greet,4 -no,it is false,original,cancel,3 -greeting,heller,original,greet,4 -no,nay,original,cancel,3 -no,not that,original,cancel,3 -yes,yes,original,book,1 -thank_you,you gave me this,parrot,bye,2 -yes,ya,original,book,1 -calendar_update,i need to remove an event from my calendar,original,resched,5 -no,that is not acceptable,lambada,cancel,3 -greeting,hi how's it going,lambada,greet,4 -cancel_reservation,can you cancel the reservation at black cherry?,lambada,cancel,3 -goodbye,i'll go,parrot,bye,2 -date,please tell me the date for today,parrot,avail,0 -greeting,hello ai,parrot,greet,4 -how_busy,would i be forced to wait long if i want to eat at chili's,parrot,avail,0 -greeting,show me what's new,parrot,greet,4 -no,FALSE,original,cancel,3 -yes,TRUE,original,book,1 -yes,do that?,original,book,1 -schedule_meeting,can you schedule a meeting with tom?,lambada,book,1 -greeting,wassup,original,greet,4 -date,can you tell me the next day?,parrot,avail,0 -yes,it's positive,parrot,book,1 -greeting,how's my doing?,parrot,greet,4 -greeting,hiya,original,greet,4 -yes,indeed,original,book,1 -goodbye,goodbye goodbye,parrot,bye,2 -greeting,are you good?,original,greet,4 -goodbye,great conversation thanks for coming,parrot,bye,2 -how_busy,do you know how busy it is at chili's at 730?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -goodbye,adios ai,original,bye,2 -schedule_meeting,can you hook up a meeting for 3:00 on wednesday?,original,book,1 -yes,definitely yes,parrot,book,1 -yes,"correct, that's true",original,book,1 -reminder_update,set a reminder to come home at 10 tomorrow,lambada,resched,5 -no,nada,original,cancel,3 -thank_you,your answer impressed me,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -meeting_schedule,do i have any meetings between 1 and 8 pm?,original,avail,0 -no,but it's wrong,parrot,cancel,3 -reminder_update,a new reminder,parrot,resched,5 -yes,you got it,original,book,1 -meeting_schedule,when is my meeting scheduled?,parrot,avail,0 -no,i think it's false,parrot,cancel,3 -yes,confirm,original,book,1 -goodbye,good bye,original,bye,2 -goodbye,good see you,lambada,bye,2 -meeting_schedule,what's my schedule today?,parrot,avail,0 -thank_you,you've helped,parrot,bye,2 -yes,indeed,original,book,1 -no,"please, no",original,cancel,3 -how_busy,is ihop usually busy between 5 and 6?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -date,what's the current day?,parrot,avail,0 -greeting,good morning,parrot,greet,4 -greeting,how it goes?,parrot,greet,4 -no,say negative,parrot,cancel,3 -greeting,whats new?,parrot,greet,4 -no,that's not correct,original,cancel,3 -goodbye,goodbyes,parrot,bye,2 -no,is a false statement?,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -how_busy,is the dinner time usually longer at the pizza place?,lambada,avail,0 -no,it's negative,parrot,cancel,3 -yes,certainly,parrot,book,1 -calendar,tell me what's happening on march 2?,parrot,avail,0 -greeting,yo,original,greet,4 -goodbye,bye bye,lambada,bye,2 -schedule_meeting,can you meet kate at 8 am,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -goodbye,ai goodbye,original,bye,2 -no,i'm afraid not,parrot,cancel,3 -greeting,hey,original,greet,4 -no,nothing,parrot,cancel,3 -no,that's erroneous,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -greeting,how's everything?,parrot,greet,4 -reminder_update,remember to remember later,parrot,resched,5 -goodbye,adios!,original,bye,2 -yes,"yeah, that's true",lambada,book,1 -yes,indeed,original,book,1 -no,it's negative,parrot,cancel,3 -yes,i agree,original,book,1 -goodbye,greetings,parrot,bye,2 -yes,approved,original,book,1 -goodbye,we can talk later,parrot,bye,2 -yes,it'll be yes,parrot,book,1 -greeting,hiya,original,greet,4 -greeting,what do i feel?,parrot,greet,4 -goodbye,fairwell?,parrot,bye,2 -date,in 100 days?,parrot,avail,0 -greeting,hey,original,greet,4 -no,certainly false,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -yes,yes,original,book,1 -how_busy,how busy is this restaurant around dinner time?,parrot,avail,0 -yes,exactly right,original,book,1 -greeting,hello bs,parrot,greet,4 -calendar_update,remove dinner at tiffany's from my calendar on 6 march,parrot,resched,5 -no,no?,parrot,cancel,3 -thank_you,i'm really thankful,parrot,bye,2 -no,that's not correct,original,cancel,3 -no,absolutely not,original,cancel,3 -greeting,hiya,original,greet,4 -goodbye,see you soon,original,bye,2 -greeting,salutation,parrot,greet,4 -yes,that is affirmative,original,book,1 -thank_you,thank you kindly,original,bye,2 -schedule_meeting,plan a meeting room for friday at 3pm,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -reminder_update,i need to remember,parrot,resched,5 -yes,that's right,original,book,1 -yes,"yes, that's what i want",original,book,1 -how_busy,how much time will it take to get a table in olive garden?,parrot,avail,0 -date,tell me what the date is today?,original,avail,0 -yes,obviously,parrot,book,1 -no,that's totally false,parrot,cancel,3 -thank_you,i appreciate that,original,bye,2 -yes,TRUE,original,book,1 -greeting,heyo,original,greet,4 -yes,accepted,original,book,1 -goodbye,adios!,original,bye,2 -cancel_reservation,delete my dinner reservation,parrot,cancel,3 -calendar_update,please remove the fishing from my calendar for soccer,parrot,resched,5 -goodbye,thank you goodbye,original,bye,2 -how_busy,red lobster at 8 pm?,parrot,avail,0 -no,negatory?,parrot,cancel,3 -yes,not false,parrot,book,1 -yes,accepted,original,book,1 -yes,TRUE,original,book,1 -goodbye,sayonara ,parrot,bye,2 -greeting,whats up,original,greet,4 -date,today?,parrot,avail,0 -goodbye,good luck,lambada,bye,2 -goodbye,goodbyes,parrot,bye,2 -greeting,hello ai,parrot,greet,4 -greeting,how you're treated?,parrot,greet,4 -yes,absolutely!,original,book,1 -goodbye,goodbyes soon,parrot,bye,2 -goodbye,see you later,original,bye,2 -how_busy,what is the busyness at red robin around 9 pm?,lambada,avail,0 -cancel_reservation,just get rid of the reservation,parrot,cancel,3 -goodbye,please talk to me later,lambada,bye,2 -how_busy,how long will the wait be at the cheese cake factory?,parrot,avail,0 -thank_you,you helped me,parrot,bye,2 -yes,absolutely,original,book,1 -greeting,hi,original,greet,4 -reminder_update,please remember me,parrot,resched,5 -goodbye,later gater,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -greeting,hey how's my day?,parrot,greet,4 -goodbye,later!,original,bye,2 -greeting,what's new,lambada,greet,4 -how_busy,how long will i have to wait in the cheesecake factory? '',parrot,avail,0 -reminder_update,can you make a reminder to pay the taxes?,lambada,resched,5 -thank_you,nice,parrot,bye,2 -date,are you giving me the date?,parrot,avail,0 -goodbye,it was a good conversation,parrot,bye,2 -reminder_update,remind me,original,resched,5 -reminder_update,remind me to change oil,parrot,resched,5 -greeting,hi how's everything?,parrot,greet,4 -greeting,hi,original,greet,4 -thank_you,thankyou,parrot,bye,2 -yes,TRUE,lambada,book,1 -yes,oh-huh,parrot,book,1 -yes,of course,original,book,1 -thank_you,thanks for the help!,original,bye,2 -thank_you,for that thank you,parrot,bye,2 -thank_you,good job,lambada,bye,2 -yes,yes,original,book,1 -greeting,whats up,original,greet,4 -thank_you,thanks for helping me,original,bye,2 -how_busy,if i want a table in this restaurant how long will it take,parrot,avail,0 -goodbye,bye bye now,lambada,bye,2 -goodbye,", goodbye",lambada,bye,2 -how_busy,how long will it be on the macaroni grill,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -yes,that would be yes,original,book,1 -goodbye,good see you,lambada,bye,2 -no,that is not factual,original,cancel,3 -yes,absolutely!,original,book,1 -date,what's the date of tomorrow?,parrot,avail,0 -yes,do that?,original,book,1 -no,that's absolutely false,parrot,cancel,3 -goodbye,i enjoyed our goodbye,parrot,bye,2 -no,naw,parrot,cancel,3 -yes,absolutely!,original,book,1 -how_busy,will i get a table at red lobster around 9pm,lambada,avail,0 -reminder_update,keep an eye on cat litter,parrot,resched,5 -goodbye,goodbye to yours,parrot,bye,2 -yes,huh,parrot,book,1 -goodbye,greetings,parrot,bye,2 -cancel_reservation,scrap the dinner reservation,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -thank_you,okay thanks,original,bye,2 -no,i don't want that,parrot,cancel,3 -yes,definitely,original,book,1 -greeting,hey there!,original,greet,4 -cancel_reservation,get the salad canceled,parrot,cancel,3 -no,nothing,parrot,cancel,3 -yes,that would be awesome,original,book,1 -calendar,what's on my calendar for the 18th of march,original,avail,0 -goodbye,bye!,original,bye,2 -schedule_meeting,i need to know how can i make a meeting,lambada,book,1 -meeting_schedule,do you have any meetings with jason today?,parrot,avail,0 -yes,i can confirm it is affirmative,original,book,1 -yes,yup,original,book,1 -yes,positive,original,book,1 -thank_you,the best,parrot,bye,2 -goodbye,goodbye my friend,parrot,bye,2 -how_busy,does applebee have a lot of wait time around 5 am?,parrot,avail,0 -schedule_meeting,plan a meeting with carrie and lisa,parrot,book,1 -reminder_update,set a reminder to buy the bread,lambada,resched,5 -no,nay,original,cancel,3 -goodbye,nice talk,lambada,bye,2 -schedule_meeting,how do you book a meeting?,parrot,book,1 -yes,"affirmative, go ahead",original,book,1 -reminder_update,remind me to write that letter,original,resched,5 -yes,TRUE,lambada,book,1 -yes,that's true,original,book,1 -greeting,whats new?,parrot,greet,4 -goodbye,very nice conversation,parrot,bye,2 -greeting,how're you?,parrot,greet,4 -yes,say positive,parrot,book,1 -yes,yeap,original,book,1 -goodbye,greetings,parrot,bye,2 -yes,TRUE,original,book,1 -no,it's certainly a false claim,parrot,cancel,3 -thank_you,thank you for making me laugh,lambada,bye,2 -meeting_schedule,#NAME?,parrot,avail,0 -no,that’s incorrect,original,cancel,3 -greeting,hey there!,original,greet,4 -meeting_schedule,what time does steve meet me?,parrot,avail,0 -greeting,hey,original,greet,4 -meeting_schedule,check my schedule for today,parrot,avail,0 -calendar,check my calendar,parrot,avail,0 -how_busy,how long should i wait before i can eat macaroni grill,parrot,avail,0 -no,nope that's not it,original,cancel,3 -yes,yep,original,book,1 -meeting_schedule,what is my schedule?,parrot,avail,0 -meeting_schedule,meetings today,original,avail,0 -goodbye,buhbye,original,bye,2 -greeting,are you feeling okay?,original,greet,4 -yes,indeed,original,book,1 -greeting,hiya,original,greet,4 -goodbye,bye bye,lambada,bye,2 -thank_you,you've been great,parrot,bye,2 -no,is my false claim?,parrot,cancel,3 -goodbye,say goodbye,parrot,bye,2 -goodbye,enjoy my day goodbye,parrot,bye,2 -thank_you,"great, thanks!",original,bye,2 -greeting,yo,original,greet,4 -greeting,hiya!,original,greet,4 -yes,we would say yes,lambada,book,1 -yes,that appears true,original,book,1 -goodbye,thanks for a good call,lambada,bye,2 -goodbye,fairwell?,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -no,that's inaccurate,original,cancel,3 -how_busy,does olive garden have a busy schedule?,parrot,avail,0 -how_busy,tell me how busy i'll have to be at cheese cake factory around 10:30?,lambada,avail,0 -thank_you,oh sweet thanks,original,bye,2 -yes,facts,original,book,1 -how_busy,how long do i have to wait for the table in the olive garden?,parrot,avail,0 -calendar,do i have an event called annual physical on my calendar?,lambada,avail,0 -yes,"yeah, that is true",lambada,book,1 -goodbye,wonderful conversation,lambada,bye,2 -no,that's wrong,original,cancel,3 -calendar_update,remove this anniversary from my calendar,lambada,resched,5 -date,where's the date tomorrow?,parrot,avail,0 -yes,good yes,lambada,book,1 -no,hell nah,original,cancel,3 -meeting_schedule,when's my meeting with bob?,parrot,avail,0 -greeting,what's up?,parrot,greet,4 -greeting,how's ai doing today?,parrot,greet,4 -yes,oh-huh,parrot,book,1 -no,negatory?,parrot,cancel,3 -greeting,hi how are you,original,greet,4 -greeting,how's this going?,parrot,greet,4 -thank_you,you've helped,parrot,bye,2 -goodbye,have fun?,lambada,bye,2 -no,"no, definitely not",original,cancel,3 -schedule_meeting,need to know how to book a meeting,parrot,book,1 -goodbye,i’m leaving-goodbye!,original,bye,2 -greeting,hey,original,greet,4 -no,negation,parrot,cancel,3 -yes,true is my response,original,book,1 -thank_you,i appreciate that,original,bye,2 -cancel_reservation,cancellation of dinner reservations,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -meeting_schedule,give me a run down of my meeting schedules for the day,original,avail,0 -greeting,hey fellows,parrot,greet,4 -goodbye,fairwell?,parrot,bye,2 -yes,yeap,original,book,1 -thank_you,thanks for the help,original,bye,2 -no,that's incorrect!,original,cancel,3 -yes,accept,parrot,book,1 -no,i'd rather not,parrot,cancel,3 -yes,yup,original,book,1 -no,negative,original,cancel,3 -greeting,how you're doing?,parrot,greet,4 -goodbye,thanks for the good talk,parrot,bye,2 -goodbye,good luck,lambada,bye,2 -yes,let's do that,parrot,book,1 -goodbye,i'm going,parrot,bye,2 -greeting,hi what's up?,parrot,greet,4 -greeting,what's up?,parrot,greet,4 -no,certainly false,parrot,cancel,3 -goodbye,thanks goodbye,parrot,bye,2 -yes,approved,original,book,1 -schedule_meeting,is it possible to schedule a meeting with bob for 10am?,parrot,book,1 -date,tell me what day it's,parrot,avail,0 -greeting,hey yai,lambada,greet,4 -no,it's completely false,parrot,cancel,3 -yes,ya,original,book,1 -yes,yeap,original,book,1 -how_busy,in a chinese house how long does it take?,parrot,avail,0 -no,i'd say no,original,cancel,3 -how_busy,usually how many people go to chili's around 12pm,parrot,avail,0 -meeting_schedule,does travis have any meetings?,parrot,avail,0 -reminder_update,set an alarm for the meeting at noon,parrot,resched,5 -greeting,"hello, what's up",original,greet,4 -yes,great,original,book,1 -goodbye,buhbye now,lambada,bye,2 -goodbye,goodbye ai,parrot,bye,2 -no,no way!,original,cancel,3 -yes,oh yes,original,book,1 -goodbye,good luck,lambada,bye,2 -no,negating,parrot,cancel,3 -cancel_reservation,can you cancel the reservation?,lambada,cancel,3 -thank_you,thanks for my cooperation,original,bye,2 -goodbye,nice talk,lambada,bye,2 -how_busy,why is the chili's busy around noon?,lambada,avail,0 -yes,that's a sure yes,parrot,book,1 -how_busy,tell me the time to wait for macaroni grill?,parrot,avail,0 -date,tell me the day of the week,parrot,avail,0 -calendar_update,add a vet appointment for 5 pm on saturday,original,resched,5 -greeting,salutations!,original,greet,4 -how_busy,why is the restaurant so busy at 5pm?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -date,date tomorrow,parrot,avail,0 -meeting_schedule,do i have to have a meeting with david?,parrot,avail,0 -thank_you,you helped me,parrot,bye,2 -yes,definitely,original,book,1 -greeting,salutations!,original,greet,4 -yes,perfect,parrot,book,1 -no,that’s incorrect,original,cancel,3 -date,current date,original,avail,0 -cancel_reservation,i need to cancel my reservation for sam in umami,parrot,cancel,3 -no,nope,original,cancel,3 -yes,all right,parrot,book,1 -how_busy,how long will it take for ihop to be open at 5:00,lambada,avail,0 -reminder_update,i need to remember,parrot,resched,5 -thank_you,you helped,parrot,bye,2 -cancel_reservation,i need you to cancel my reservation for smith at the williams diner,original,cancel,3 -yes,so it works,parrot,book,1 -how_busy,does the wait at olive garden need to be long?,parrot,avail,0 -calendar,is there any event on my calendar for march 8th?,parrot,avail,0 -no,"please, no",original,cancel,3 -yes,definitely yes,parrot,book,1 -meeting_schedule,is there a meeting between 5 and 6?,parrot,avail,0 -how_busy,is there a long wait at italian farm?,lambada,avail,0 -yes,oh-huh,parrot,book,1 -greeting,aho,parrot,greet,4 -how_busy,how long will the wait be?,parrot,avail,0 -calendar,my calendar is free next sunday?,parrot,avail,0 -yes,agreed,original,book,1 -cancel_reservation,there's no need to confirm my reservation,parrot,cancel,3 -goodbye,good bye,original,bye,2 -schedule_meeting,make a meeting for me,parrot,book,1 -greeting,how's my life today?,parrot,greet,4 -yes,yeah,original,book,1 -how_busy,is a canadian restaurant usually busy at 5pm?,parrot,avail,0 -no,i mean no,parrot,cancel,3 -how_busy,tell me the time to wait at red lobster?,parrot,avail,0 -no,negative,original,cancel,3 -calendar,let me know if there are any scheduled events for march 15th,parrot,avail,0 -greeting,hey there fellow,original,greet,4 -thank_you,i'm grateful,original,bye,2 -meeting_schedule,do i meet joan today?,parrot,avail,0 -yes,ok,original,book,1 -greeting,heyo,original,greet,4 -greeting,hello,original,greet,4 -no,certainly false,parrot,cancel,3 -yes,yep,original,book,1 -yes,absolutely,original,book,1 -how_busy,how long will the wait at the restaurant be?,parrot,avail,0 -greeting,"hello, hello, hello",lambada,greet,4 -greeting,hey,original,greet,4 -goodbye,"syonara, ai device!",original,bye,2 -greeting,hiya!,original,greet,4 -yes,accept,parrot,book,1 -yes,i want that,parrot,book,1 -meeting_schedule,do i have to meet david?,parrot,avail,0 -thank_you,the best,parrot,bye,2 -goodbye,maybe i'll see you,parrot,bye,2 -yes,this is true,lambada,book,1 -greeting,how are things,original,greet,4 -greeting,yo,original,greet,4 -greeting,hey there!,original,greet,4 -greeting,what's up,original,greet,4 -reminder_update,remind me later,original,resched,5 -greeting,"hey, ai",original,greet,4 -yes,"yeah, that's right",original,book,1 -greeting,whats new,lambada,greet,4 -thank_you,thanks please,original,bye,2 -meeting_schedule,can you tell me what kind of meetings i'm going to attend between noon and 3pm?,parrot,avail,0 -no,please no,parrot,cancel,3 -greeting,how's it going,lambada,greet,4 -no,negative sure,parrot,cancel,3 -calendar,display my calendar,lambada,avail,0 -goodbye,wonderful conversation,lambada,bye,2 -how_busy,tell me the time it takes to get into the pizzerias?,parrot,avail,0 -goodbye,bye!,original,bye,2 -greeting,is everything going okay?,original,greet,4 -yes,yes you are correct,original,book,1 -cancel_reservation,get the salad cancelled,lambada,cancel,3 -calendar,is anything on my calendar for june 22?,parrot,avail,0 -yes,yes you are,original,book,1 -thank_you,thanks for helping,original,bye,2 -thank_you,i'm thankful,original,bye,2 -goodbye,and tell me bye?,parrot,bye,2 -how_busy,how long will it take me to get a seat at the steakhouse in the outback?,parrot,avail,0 -date,what day?,parrot,avail,0 -no,it's so bad,parrot,cancel,3 -yes,a fact,parrot,book,1 -goodbye,tootles,original,bye,2 -calendar,show me what's on my calendar for march 17th?,parrot,avail,0 -no,nope,original,cancel,3 -greeting,how's life?,parrot,greet,4 -yes,uh-huh,original,book,1 -thank_you,my thanks,parrot,bye,2 -no,FALSE,original,cancel,3 -goodbye,thanks for chatting,lambada,bye,2 -no,that's inaccurate,original,cancel,3 -greeting,heller,original,greet,4 -meeting_schedule,please tell me about my meeting with mary?,parrot,avail,0 -how_busy,does the cheesecake factory have a lot of people around?,lambada,avail,0 -greeting,what's happening to you?,parrot,greet,4 -reminder_update,make a reminder to give the cat flea medication,parrot,resched,5 -thank_you,thanks again,original,bye,2 -calendar_update,"can you remove an event from my calendar, please?",lambada,resched,5 -meeting_schedule,what meetings do i have?,parrot,avail,0 -goodbye,nice to see you,original,bye,2 -thank_you,i thank you,original,bye,2 -yes,TRUE,original,book,1 -thank_you,your answer was a pleasure,parrot,bye,2 -date,what's today,original,avail,0 -goodbye,tootles?,parrot,bye,2 -reminder_update,set a reminder to remind the cat to come home at 9 am,lambada,resched,5 -greeting,hola,original,greet,4 -greeting,hi,original,greet,4 -no,negating,parrot,cancel,3 -date,is it monday?,parrot,avail,0 -greeting,hey what's going on?,parrot,greet,4 -date,can i know the date of my account?,parrot,avail,0 -no,that isn't true,lambada,cancel,3 -no,naw,parrot,cancel,3 -greeting,hey,original,greet,4 -thank_you,much obliged,original,bye,2 -date,where's the date tomorrow?,parrot,avail,0 -greeting,hello what's happening,parrot,greet,4 -thank_you,nice,parrot,bye,2 -thank_you,"oh, thanks",original,bye,2 -reminder_update,let me be reminded,parrot,resched,5 -goodbye,"bye-bye, my friend",lambada,bye,2 -no,nothing,parrot,cancel,3 -yes,absolutely!,original,book,1 -thank_you,thank you for the assistance,lambada,bye,2 -calendar,how do i schedule my next dentist appointment?,parrot,avail,0 -thank_you,i'm thankful,original,bye,2 -no,it's not true,parrot,cancel,3 -greeting,how you are?,parrot,greet,4 -meeting_schedule,what's my meeting plan?,parrot,avail,0 -goodbye,great talk,lambada,bye,2 -thank_you,I owe you one,parrot,bye,2 -greeting,bonjour,original,greet,4 -how_busy,how much time does the restaurant sit?,parrot,avail,0 -reminder_update,please add a reminder,lambada,resched,5 -goodbye,i’m leaving-goodbye!,original,bye,2 -reminder_update,make a reminder i have to ask about my work,parrot,resched,5 -goodbye,great conversation,parrot,bye,2 -how_busy,how busy will macaroni be at 6pm?,parrot,avail,0 -schedule_meeting,need a meeting room,parrot,book,1 -yes,so it works,parrot,book,1 -yes,affirmative,original,book,1 -meeting_schedule,are there meetings in my calendar?,parrot,avail,0 -goodbye,glad we talked,parrot,bye,2 -yes,great,original,book,1 -goodbye,great talk,lambada,bye,2 -yes,10-Apr,original,book,1 -thank_you,the best,parrot,bye,2 -greeting,yo how yo feelin,lambada,greet,4 -how_busy,wait for us at the out of town pizza factory?,parrot,avail,0 -how_busy,does this restaurant have high attendance at dinner?,parrot,avail,0 -date,today?,parrot,avail,0 -calendar,can you tell me what my appointment is for march 25?,parrot,avail,0 -goodbye,goodbye thank you,parrot,bye,2 -how_busy,how busy will the chipotle steakhouse be at 6 pm,lambada,avail,0 -no,nothing,parrot,cancel,3 -no,not that one,original,cancel,3 -goodbye,later,original,bye,2 -goodbye,good night,original,bye,2 -greeting,how's idy?,parrot,greet,4 -greeting,hiya,original,greet,4 -cancel_reservation,get rid of my reservation for a friday night at robins,lambada,cancel,3 -reminder_update,remind me to do it in a while,parrot,resched,5 -yes,great,original,book,1 -goodbye,farewell!,original,bye,2 -yes,right,parrot,book,1 -no,that is no,lambada,cancel,3 -greeting,how's my life going?,parrot,greet,4 -goodbye,goodbye ai,parrot,bye,2 -date,today's date is what,original,avail,0 -date,do you know the date today? '',parrot,avail,0 -yes,i want that,parrot,book,1 -no,not happening,original,cancel,3 -how_busy,how busy will the restaurant be at 5pm,lambada,avail,0 -no,no!,original,cancel,3 -yes,yep,original,book,1 -no,that isn't correct,original,cancel,3 -calendar,do you have anything on my calendar for march 2?,parrot,avail,0 -goodbye,bye!,original,bye,2 -no,no is the answer,original,cancel,3 -goodbye,bye now,original,bye,2 -calendar,did you put an event on the calendar to get an annual physical?,parrot,avail,0 -date,tell me the date now?,lambada,avail,0 -no,not good,parrot,cancel,3 -date,what date?,parrot,avail,0 -how_busy,how long do i have to wait if i want to eat at the cheesecake factory?,parrot,avail,0 -yes,that makes sense,lambada,book,1 -yes,"yes, that's affirmative",original,book,1 -goodbye,goodbyes,parrot,bye,2 -no,no?,parrot,cancel,3 -date,what's the month and day in 4 days,lambada,avail,0 -goodbye,until next time!,original,bye,2 -goodbye,greetings,parrot,bye,2 -no,certainly not,original,cancel,3 -greeting,"hi, ai",original,greet,4 -how_busy,the average crowd at chili is around 5 people,parrot,avail,0 -greeting,can you tell me how you're doing today?,original,greet,4 -goodbye,farewell!,original,bye,2 -greeting,heyo,original,greet,4 -goodbye,see ya,lambada,bye,2 -greeting,how is everything?,parrot,greet,4 -goodbye,thanks bye bye!,original,bye,2 -goodbye,later,original,bye,2 -yes,that checks out,original,book,1 -no,thanks no,parrot,cancel,3 -yes,accept,parrot,book,1 -no,nay,original,cancel,3 -no,nope,original,cancel,3 -thank_you,my sincere gratitude,parrot,bye,2 -reminder_update,can you set up a reminder for me?,lambada,resched,5 -yes,a fact,parrot,book,1 -calendar,check my calendar for saturday,original,avail,0 -no,not true,original,cancel,3 -calendar,do i have anything scheduled for march 1st?,parrot,avail,0 -thank_you,appreciate the help,original,bye,2 -goodbye,good night,original,bye,2 -no,naw,original,cancel,3 -meeting_schedule,meet all of my meetings today,parrot,avail,0 -no,i must say no,original,cancel,3 -reminder_update,set a reminder for the book,lambada,resched,5 -yes,positive,original,book,1 -no,it's no,parrot,cancel,3 -reminder_update,remind me to write later,lambada,resched,5 -greeting,how's life,original,greet,4 -calendar_update,i need buy a birthday gift for sue taken off my calendar it is on monday or tuesday last week,original,resched,5 -no,no,lambada,cancel,3 -goodbye,it's time for goodbye,parrot,bye,2 -goodbye,i'll leave now,parrot,bye,2 -thank_you,i'm really thankful,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -no,negatory?,parrot,cancel,3 -yes,so it's real,parrot,book,1 -no,no that's not it,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -greeting,"hello, what's up",original,greet,4 -yes,is true,parrot,book,1 -goodbye,later!,original,bye,2 -no,please do not agree,parrot,cancel,3 -no,it's a lie,parrot,cancel,3 -thank_you,special thanks to you,original,bye,2 -no,that's a huge mistake,parrot,cancel,3 -how_busy,say how busy it is at the cheesecake factory?,parrot,avail,0 -greeting,what's new here?,parrot,greet,4 -how_busy,what's the wait time for a table at the restaurant?,parrot,avail,0 -greeting,hola,original,greet,4 -thank_you,okay thank you,parrot,bye,2 -greeting,how's idy doing,lambada,greet,4 -how_busy,how long does the wait at chili's be at 5 pm,lambada,avail,0 -yes,definitely yes,parrot,book,1 -greeting,what's happened?,parrot,greet,4 -thank_you,i am grateful,lambada,bye,2 -goodbye,great conversation,parrot,bye,2 -how_busy,how busy will red robin be?,parrot,avail,0 -yes,it is true,original,book,1 -yes,positive,parrot,book,1 -how_busy,how long would the wait in pizza sauce be?,parrot,avail,0 -date,i need to know the date in 256 days,original,avail,0 -cancel_reservation,cancel my reservation at 730 at morton's,parrot,cancel,3 -goodbye,i'm out,parrot,bye,2 -how_busy,how long before dinner,parrot,avail,0 -greeting,ahoy there,lambada,greet,4 -goodbye,peace out!,original,bye,2 -thank_you,"oh, thanks",original,bye,2 -no,no is the answer,original,cancel,3 -meeting_schedule,what is my schedule?,parrot,avail,0 -goodbye,see you later,original,bye,2 -how_busy,will the pizza place be busy around seven,lambada,avail,0 -greeting,how's life for you?,parrot,greet,4 -yes,yes i know it's true,lambada,book,1 -thank_you,thank you for the information you provided,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -greeting,yo,original,greet,4 -greeting,hi,original,greet,4 -goodbye,"thanks for chatting, bye",lambada,bye,2 -reminder_update,come on please,parrot,resched,5 -no,so that's no,parrot,cancel,3 -no,no,lambada,cancel,3 -goodbye,goodbye!,original,bye,2 -yes,absolutely!,original,book,1 -greeting,good morning ai,parrot,greet,4 -yes,confirmed,original,book,1 -goodbye,good-bye,parrot,bye,2 -yes,approved,original,book,1 -how_busy,list the wait times at chipotle grill?,parrot,avail,0 -reminder_update,please remember me again,parrot,resched,5 -thank_you,you're doing a good job,lambada,bye,2 -yes,oh-huh,parrot,book,1 -goodbye,adios!,original,bye,2 -greeting,ahoy,lambada,greet,4 -greeting,"hi, ai",original,greet,4 -no,the answer isn't correct,parrot,cancel,3 -greeting,what's new?,parrot,greet,4 -thank_you,did you do well?,parrot,bye,2 -reminder_update,please set a reminder?,parrot,resched,5 -no,but it's not true,parrot,cancel,3 -yes,that's all right,parrot,book,1 -thank_you,thanks!,original,bye,2 -goodbye,it's time to run,parrot,bye,2 -greeting,aho,parrot,greet,4 -greeting,hola,original,greet,4 -goodbye,"goodbye, helpful ai device!",original,bye,2 -thank_you,thank you so much for the response,parrot,bye,2 -no,nay,original,cancel,3 -date,what date tomorrow?,parrot,avail,0 -reminder_update,create a reminder,original,resched,5 -yes,huh,parrot,book,1 -cancel_reservation,proceed and close the reservation,parrot,cancel,3 -no,that's wrong,original,cancel,3 -no,negative,original,cancel,3 -greeting,"why, hello bandit",original,greet,4 -how_busy,is tiaras usually packed around 7pm?,parrot,avail,0 -goodbye,tootles,original,bye,2 -how_busy,how busy will the chilis be at 7 pm,parrot,avail,0 -no,it's a negative,parrot,cancel,3 -greeting,how's idy?,parrot,greet,4 -greeting,hi,original,greet,4 -date,date tomorrow?,parrot,avail,0 -no,invalid,original,cancel,3 -greeting,welcome,parrot,greet,4 -thank_you,thanks!,original,bye,2 -thank_you,your answer was enjoyable,original,bye,2 -greeting,welcome,parrot,greet,4 -yes,i guess,parrot,book,1 -yes,yay,lambada,book,1 -calendar,check my calendar,parrot,avail,0 -yes,confirm,original,book,1 -yes,great,original,book,1 -yes,a true statement,parrot,book,1 -greeting,how it goes?,parrot,greet,4 -yes,of course,original,book,1 -greeting,how are you doing,original,greet,4 -yes,confirm,original,book,1 -schedule_meeting,i need you to set up a meeting with jason,parrot,book,1 -no,nope,original,cancel,3 -how_busy,in china how long does it take to sit down?,parrot,avail,0 -calendar,please find my march schedule,parrot,avail,0 -date,current date,original,avail,0 -goodbye,until next time,original,bye,2 -no,is not true?,parrot,cancel,3 -no,nothing,parrot,cancel,3 -date,what date is that in two weeks?,parrot,avail,0 -date,today?,parrot,avail,0 -greeting,good evening,original,greet,4 -how_busy,how long is the wait at the orange door,lambada,avail,0 -no,that's inaccurate,original,cancel,3 -greeting,what's going on,original,greet,4 -goodbye,bye!,original,bye,2 -goodbye,i enjoy our conversation,parrot,bye,2 -no,"please, no",original,cancel,3 -no,it's overwhelmingly wrong,parrot,cancel,3 -calendar_update,remove the meeting with carla from the calendar,parrot,resched,5 -date,what's the day now?,parrot,avail,0 -yes,i vote yes,original,book,1 -yes,is a real statement,parrot,book,1 -cancel_reservation,i need to cancel my reservation at the hawaiian for next week,lambada,cancel,3 -yes,i'd say yes,parrot,book,1 -yes,it's indeed true,original,book,1 -goodbye,"enjoy my day, bye",lambada,bye,2 -yes,yes,original,book,1 -goodbye,later,original,bye,2 -no,negating,parrot,cancel,3 -no,but it's wrong,parrot,cancel,3 -thank_you,appreciate it,original,bye,2 -yes,correct,original,book,1 -date,is the date?,parrot,avail,0 -yes,uh huh,original,book,1 -greeting,wassup,original,greet,4 -reminder_update,what's a reminder,parrot,resched,5 -no,not really,original,cancel,3 -greeting,how're you?,parrot,greet,4 -calendar,is bowling on my calendar now?,parrot,avail,0 -no,that's not factual,parrot,cancel,3 -yes,huh,parrot,book,1 -no,that's not correct,original,cancel,3 -goodbye,for now,parrot,bye,2 -meeting_schedule,tell me when the meeting is supposed to be?,parrot,avail,0 -yes,definitely,original,book,1 -goodbye,peace out!,original,bye,2 -greeting,hola!,original,greet,4 -yes,definitely,original,book,1 -meeting_schedule,when's the meeting?,parrot,avail,0 -goodbye,later!,original,bye,2 -how_busy,is chili's busy around 7:30?,lambada,avail,0 -goodbye,have a nice day?,lambada,bye,2 -cancel_reservation,abrogate the dinner reservation,parrot,cancel,3 -how_busy,can you tell me how long the wait will be at the italian place at midnight?,lambada,avail,0 -calendar_update,i want to take the 8am meeting with sam on monday 5th off my calendar,parrot,resched,5 -no,please no,parrot,cancel,3 -yes,positive,original,book,1 -no,i meant nothing,parrot,cancel,3 -no,no longer valid,parrot,cancel,3 -yes,great,original,book,1 -greeting,"hey, ai",original,greet,4 -goodbye,im leaving goodbye,parrot,bye,2 -greeting,good evening,original,greet,4 -reminder_update,let me know,parrot,resched,5 -goodbye,buhbye now,lambada,bye,2 -how_busy,how busy it that place for dinner,original,avail,0 -no,ill pass,original,cancel,3 -no,i don't agree,parrot,cancel,3 -no,say negative,parrot,cancel,3 -greeting,hiya,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,absolutely!,original,book,1 -date,in three days,parrot,avail,0 -greeting,how's the world?,parrot,greet,4 -greeting,how are you?,parrot,greet,4 -meeting_schedule,are there any meetings between 2 and 5 pm?,original,avail,0 -goodbye,adios,original,bye,2 -goodbye,i'm outta here!,original,bye,2 -greeting,"yo, hows it going",original,greet,4 -no,no that's wrong,original,cancel,3 -goodbye,wonderful conversation,lambada,bye,2 -no,but certainly not,parrot,cancel,3 -goodbye,goodbye to you,original,bye,2 -goodbye,it's over,parrot,bye,2 -calendar,tell me what's on my calendar for march 18?,parrot,avail,0 -date,what will be the date in 100 days?,lambada,avail,0 -goodbye,adios ai,original,bye,2 -yes,uh huh,original,book,1 -how_busy,oklahoma county farmer's market has a long wait?,parrot,avail,0 -yes,correct,original,book,1 -thank_you,thank you again,parrot,bye,2 -goodbye,farewell!,original,bye,2 -goodbye,farewell,original,bye,2 -date,please share today's date,original,avail,0 -calendar,what is on my calendar for march 7th?,parrot,avail,0 -yes,accept,parrot,book,1 -how_busy,how long has the wait been at italian restaurant,lambada,avail,0 -no,hell nah,original,cancel,3 -thank_you,okay thanks,original,bye,2 -yes,yeap,original,book,1 -yes,i guess,parrot,book,1 -calendar_update,delete all events on my calendar on friday,parrot,resched,5 -no,negating,parrot,cancel,3 -calendar_update,erase this event from my calendar,lambada,resched,5 -date,what is the date in 256 days?,lambada,avail,0 -no,i don't think so,original,cancel,3 -goodbye,tootles?,parrot,bye,2 -no,you got that wrong,original,cancel,3 -goodbye,great chat goodbye,lambada,bye,2 -greeting,how're you doing,original,greet,4 -greeting,hello good day,parrot,greet,4 -no,that's so wrong,parrot,cancel,3 -greeting,"good morning, ai",original,greet,4 -greeting,what's my feeling?,parrot,greet,4 -no,no,lambada,cancel,3 -yes,agreed,original,book,1 -greeting,what's up?,parrot,greet,4 -yes,yay,lambada,book,1 -greeting,i need to know how things are going,parrot,greet,4 -how_busy,can you tell me what the wait is at cracker barrel right now,parrot,avail,0 -goodbye,later!,original,bye,2 -yes,yes,original,book,1 -thank_you,my gratitude,parrot,bye,2 -yes,yep,original,book,1 -how_busy,what's the wait time?,parrot,avail,0 -thank_you,thank you for this information,parrot,bye,2 -cancel_reservation,the reservation for my friends in red robin is no longer needed,parrot,cancel,3 -greeting,"hi, ai",original,greet,4 -greeting,hi ai,original,greet,4 -date,tell me the date please,parrot,avail,0 -no,thanks no,parrot,cancel,3 -yes,absolutely,original,book,1 -no,i am saying no,original,cancel,3 -thank_you,your assistance is appreciated,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -reminder_update,let me be reminded?,parrot,resched,5 -no,it's false,parrot,cancel,3 -greeting,hola,original,greet,4 -calendar,tell me what's going on on march 22,parrot,avail,0 -goodbye,goodbye goodbye,parrot,bye,2 -how_busy,how busy is the chili's breakfast at 10am,lambada,avail,0 -goodbye,goodbye!,original,bye,2 -greeting,"hey, ai",original,greet,4 -goodbye,goodbye ai,parrot,bye,2 -how_busy,what is the average wait time at outback steakhouse?,lambada,avail,0 -goodbye,farewell!,original,bye,2 -yes,yeap,original,book,1 -goodbye,greetings,parrot,bye,2 -yes,sure,original,book,1 -goodbye,have fun?,lambada,bye,2 -calendar,are there any events in my calendar for january 1st?,parrot,avail,0 -goodbye,but it was a good chat with the other people,parrot,bye,2 -goodbye,sayonara,original,bye,2 -no,definitely not,original,cancel,3 -no,it's indeed false,parrot,cancel,3 -thank_you,you've helped,parrot,bye,2 -yes,definitely,original,book,1 -yes,it appears true,parrot,book,1 -greeting,how's my family going?,parrot,greet,4 -goodbye,goodbyes,parrot,bye,2 -yes,uh-huh,original,book,1 -yes,agreed,original,book,1 -greeting,hi ai,original,greet,4 -how_busy,is immaculate around 6 dinner?,lambada,avail,0 -yes,TRUE,original,book,1 -yes,yeah yeah,lambada,book,1 -thank_you,thanks!,original,bye,2 -how_busy,at 5 pm how busy is chili?,parrot,avail,0 -how_busy,how long will i have to wait to go to red lobster?,parrot,avail,0 -yes,okay,original,book,1 -schedule_meeting,how does a meeting schedule work?,parrot,book,1 -yes,TRUE,original,book,1 -schedule_meeting,is my availability between 1 and 2 today?,parrot,book,1 -no,nada,original,cancel,3 -reminder_update,i need a reminder,original,resched,5 -thank_you,i'm so grateful,parrot,bye,2 -yes,absolutely,original,book,1 -goodbye,greetings,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -greeting,hi how's everything going?,parrot,greet,4 -how_busy,how long will it be before i go to a restaurant?,parrot,avail,0 -greeting,ahoy there,lambada,greet,4 -thank_you,well done,parrot,bye,2 -calendar,what's tuesday's calendar?,parrot,avail,0 -calendar,i am looking for any information on whats happening with my calendar,lambada,avail,0 -greeting,are you doing well?,original,greet,4 -goodbye,later gater,original,bye,2 -yes,accepted,original,book,1 -no,naw,parrot,cancel,3 -greeting,hey,original,greet,4 -yes,let's do it,parrot,book,1 -goodbye,bye!,original,bye,2 -thank_you,thankyou,parrot,bye,2 -yes,TRUE,lambada,book,1 -yes,10-Apr,original,book,1 -greeting,how's life in my city?,parrot,greet,4 -yes,approved,original,book,1 -greeting,are you well?,original,greet,4 -no,negatory,original,cancel,3 -greeting,how's everything,original,greet,4 -thank_you,"awesome, thanks",original,bye,2 -meeting_schedule,is there a meeting between 10 and 11?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -goodbye,goodnight,original,bye,2 -yes,indeed,original,book,1 -schedule_meeting,are there meeting rooms available between 10-12?,lambada,book,1 -thank_you,thank ya!,original,bye,2 -greeting,whats new,lambada,greet,4 -greeting,how's the world?,parrot,greet,4 -thank_you,good job,lambada,bye,2 -meeting_schedule,is my schedule clear with no meetings with dan?,parrot,avail,0 -how_busy,tell me the time it takes to get into chili's?,parrot,avail,0 -schedule_meeting,what is the meeting room between noon and 2?,lambada,book,1 -greeting,what do you feel like?,parrot,greet,4 -goodbye,as regards,parrot,bye,2 -goodbye,later,original,bye,2 -greeting,welcome,parrot,greet,4 -meeting_schedule,when's the meeting?,parrot,avail,0 -yes,is true,parrot,book,1 -greeting,hiya!,original,greet,4 -goodbye,goodnight,original,bye,2 -calendar,what's the tuesday calendar?,parrot,avail,0 -no,no?,parrot,cancel,3 -yes,yes sir,original,book,1 -goodbye,adios,original,bye,2 -yes,indeed,original,book,1 -yes,absolutely!,original,book,1 -no,no that isn't true,lambada,cancel,3 -thank_you,many thank,original,bye,2 -greeting,aloha,original,greet,4 -greeting,hola,original,greet,4 -no,erroneous,parrot,cancel,3 -schedule_meeting,arrange a meeting for me,parrot,book,1 -how_busy,check to see if red lobster is crowded around 5pm,lambada,avail,0 -date,is it a monday wednesday wednesday wednesday wednesday?,parrot,avail,0 -thank_you,you've given me that,parrot,bye,2 -calendar,can you check my calendar for march 2?,parrot,avail,0 -goodbye,we'll talk later ai,original,bye,2 -schedule_meeting,how can i setup a meeting,lambada,book,1 -yes,confirmed,original,book,1 -how_busy,is the restaurant usually busy at noon?,parrot,avail,0 -no,nothing good,parrot,cancel,3 -greeting,nice day,lambada,greet,4 -thank_you,"that's all i need, thanks!",original,bye,2 -calendar_update,please delete an event from this calendar,parrot,resched,5 -greeting,"hey, what's up",original,greet,4 -thank_you,your answer pleased me,original,bye,2 -greeting,how are things going?,parrot,greet,4 -greeting,how's my family?,parrot,greet,4 -no,that's wrong,original,cancel,3 -goodbye,i'll leave now,parrot,bye,2 -greeting,"hey, what's up with you",lambada,greet,4 -goodbye,cya later,original,bye,2 -no,erroneous,parrot,cancel,3 -goodbye,bye!,original,bye,2 -date,please explain today,parrot,avail,0 -thank_you,you've been great,parrot,bye,2 -thank_you,i'm glad you answered,parrot,bye,2 -date,please date,parrot,avail,0 -how_busy,how busy is ihop now?,parrot,avail,0 -no,is my false assertion?,parrot,cancel,3 -yes,definitely,original,book,1 -goodbye,bye!,original,bye,2 -yes,"yup, that's correct",lambada,book,1 -no,"please, no",original,cancel,3 -greeting,hiya!,original,greet,4 -greeting,hello what's happening,parrot,greet,4 -no,invalid,original,cancel,3 -calendar_update,i need to add my grocery list to my calendar for next day,parrot,resched,5 -date,tell me what the day is today?,parrot,avail,0 -meeting_schedule,are there meetings between 5 and 6 pm today?,parrot,avail,0 -date,in five days?,parrot,avail,0 -yes,absolutely,original,book,1 -date,what day are we?,parrot,avail,0 -goodbye,regards,original,bye,2 -goodbye,i'll go,parrot,bye,2 -goodbye,bye,original,bye,2 -how_busy,i want to know how long i'll wait to sit at x factor,parrot,avail,0 -yes,definitely,original,book,1 -yes,right,parrot,book,1 -goodbye,goodbye!,original,bye,2 -no,nope,original,cancel,3 -greeting,"hello, ai",original,greet,4 -greeting,how's idy doing?,parrot,greet,4 -no,"please, no",original,cancel,3 -greeting,how are you treated?,parrot,greet,4 -yes,correct,original,book,1 -greeting,how's everything?,parrot,greet,4 -greeting,hey there,original,greet,4 -yes,that's true,original,book,1 -greeting,ahoy hoy,original,greet,4 -yes,certainly,parrot,book,1 -how_busy,how long will it be at this restaurant?,parrot,avail,0 -how_busy,tell me what's the average wait time for pizza?,parrot,avail,0 -goodbye,great talk,lambada,bye,2 -greeting,good day,original,greet,4 -greeting,how's it hanging?,parrot,greet,4 -greeting,what's happening?,parrot,greet,4 -yes,accept,parrot,book,1 -goodbye,great conversation,parrot,bye,2 -yes,accept,parrot,book,1 -yes,definitely,original,book,1 -how_busy,is ihop busy?,parrot,avail,0 -reminder_update,i want to remember to eat at work,parrot,resched,5 -yes,affirmative,original,book,1 -greeting,aho,parrot,greet,4 -goodbye,im leaving goodbye,parrot,bye,2 -how_busy,can you tell me how long it will take to get a table in the egg salad factory?,parrot,avail,0 -yes,you are yes,lambada,book,1 -how_busy,ihop around 10 pm,parrot,avail,0 -yes,sure thing,original,book,1 -no,i mean no,parrot,cancel,3 -thank_you,why thank you?,original,bye,2 -yes,"yes, please",original,book,1 -goodbye,", goodbye",lambada,bye,2 -yes,okay,original,book,1 -greeting,heyo,original,greet,4 -yes,accept,parrot,book,1 -yes,positive,original,book,1 -no,certainly false,parrot,cancel,3 -reminder_update,let me know,parrot,resched,5 -date,what is it today?,lambada,avail,0 -greeting,aho,parrot,greet,4 -thank_you,thanks for the information,parrot,bye,2 -yes,i'll check that out,parrot,book,1 -how_busy,can i expect tgi to be busy around 7?,lambada,avail,0 -yes,right,parrot,book,1 -thank_you,well done,parrot,bye,2 -thank_you,thanks for coming,parrot,bye,2 -no,FALSE,original,cancel,3 -no,"no, that's a lie",lambada,cancel,3 -greeting,how it goes?,parrot,greet,4 -how_busy,how busy will chili be around 7 am?,parrot,avail,0 -thank_you,i'm grateful to you,original,bye,2 -thank_you,thanks for helping,original,bye,2 -goodbye,bye bye,lambada,bye,2 -reminder_update,remind me to do something?,parrot,resched,5 -yes,definitely,original,book,1 -thank_you,appreciate the assistance,parrot,bye,2 -goodbye,see ya,original,bye,2 -how_busy,will there be a lot of people at olive garden right now,lambada,avail,0 -no,ill pass,original,cancel,3 -goodbye,good bye,original,bye,2 -greeting,hola,original,greet,4 -no,is not true?,parrot,cancel,3 -cancel_reservation,the reservation i created is no longer necessary,parrot,cancel,3 -no,no please,parrot,cancel,3 -yes,accept,parrot,book,1 -how_busy,say how busy the olive garden is at 6am?,parrot,avail,0 -greeting,aho,parrot,greet,4 -goodbye,later,original,bye,2 -cancel_reservation,can you cancel the reservation i made?,parrot,cancel,3 -reminder_update,please make a reminder,original,resched,5 -greeting,aho,parrot,greet,4 -thank_you,thanks for my time,parrot,bye,2 -greeting,are you feeling okay?,original,greet,4 -thank_you,and i'm grateful for the answer,parrot,bye,2 -no,definitely not,original,cancel,3 -greeting,hi,original,greet,4 -meeting_schedule,what is on my schedule?,parrot,avail,0 -yes,"yes, that's confirmed",original,book,1 -date,in 100 days?,parrot,avail,0 -thank_you,many thanks,original,bye,2 -date,i need information about today's date,lambada,avail,0 -schedule_meeting,is it possible to book a meeting room for 5pm on monday?,parrot,book,1 -thank_you,did you do well?,parrot,bye,2 -goodbye,very nice conversation,parrot,bye,2 -goodbye,i'm going,parrot,bye,2 -greeting,hola!,original,greet,4 -reminder_update,can you set a reminder to put the clothes into the dryer?,parrot,resched,5 -goodbye,greetings,parrot,bye,2 -goodbye,goodnight,original,bye,2 -date,what is the month and day in 54 days?,lambada,avail,0 -goodbye,bye bye!,original,bye,2 -goodbye,the talk was nice,lambada,bye,2 -yes,agreed,original,book,1 -goodbye,farewell,original,bye,2 -reminder_update,remind me to check the meat,parrot,resched,5 -greeting,salutations!,original,greet,4 -goodbye,"thanks, bye",original,bye,2 -thank_you,thank you?,parrot,bye,2 -greeting,salutation,parrot,greet,4 -how_busy,what's the wait time?,parrot,avail,0 -calendar,read my calendar events,original,avail,0 -no,but certainly not,parrot,cancel,3 -greeting,hello there!,original,greet,4 -yes,it's true,original,book,1 -date,today?,parrot,avail,0 -goodbye,"later, good luck",lambada,bye,2 -yes,definitely yes,parrot,book,1 -yes,ya,original,book,1 -no,it's very wrong,parrot,cancel,3 -meeting_schedule,how many meetings i have today?,parrot,avail,0 -no,nope that's not true,parrot,cancel,3 -goodbye,until next time!,original,bye,2 -goodbye,adios,original,bye,2 -no,nay,original,cancel,3 -no,this isn't true,parrot,cancel,3 -goodbye,peace,original,bye,2 -how_busy,will there be a lot of waits at chili's dinner time?,parrot,avail,0 -greeting,whats new,lambada,greet,4 -greeting,how're you?,parrot,greet,4 -greeting,good day,original,greet,4 -date,what's the date,original,avail,0 -goodbye,have fun?,lambada,bye,2 -yes,good,parrot,book,1 -calendar_update,cancel the event on february 23rd,parrot,resched,5 -goodbye,on the highway,parrot,bye,2 -no,it'd be awful,parrot,cancel,3 -yes,that's absolutely true,parrot,book,1 -schedule_meeting,get me a meeting room at noon?,parrot,book,1 -yes,just right,parrot,book,1 -cancel_reservation,i need to cancel my reservation for nuvia to xavier,lambada,cancel,3 -no,negation,parrot,cancel,3 -yes,yup,original,book,1 -yes,perfect,parrot,book,1 -greeting,hiya!,original,greet,4 -no,not really,original,cancel,3 -greeting,salutation,parrot,greet,4 -goodbye,signing off,original,bye,2 -date,what's my day?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -no,that's very wrong,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -yes,ok,original,book,1 -yes,indeed,original,book,1 -no,certainly false,parrot,cancel,3 -yes,positive,parrot,book,1 -goodbye,i'm going,parrot,bye,2 -greeting,hey there,original,greet,4 -greeting,hey fellows,parrot,greet,4 -yes,agreed,original,book,1 -goodbye,sign off,parrot,bye,2 -goodbye,nice chat today,lambada,bye,2 -yes,is true,parrot,book,1 -thank_you,thanks for answering,parrot,bye,2 -no,i disagree with that,lambada,cancel,3 -goodbye,catch you later,original,bye,2 -schedule_meeting,a meeting with tom at 6pm,parrot,book,1 -goodbye,goodbye to your,lambada,bye,2 -goodbye,farewell!,original,bye,2 -goodbye,see ya!,original,bye,2 -no,"no, that is my response",original,cancel,3 -goodbye,nice talk,lambada,bye,2 -no,negatory?,parrot,cancel,3 -yes,ok,original,book,1 -greeting,hola!,original,greet,4 -how_busy,the crowd at the red lobster around 8?,parrot,avail,0 -no,naw,original,cancel,3 -greeting,wassup,original,greet,4 -yes,sure,original,book,1 -goodbye,fairwell?,parrot,bye,2 -no,no good,original,cancel,3 -meeting_schedule,what time do we meet john?,parrot,avail,0 -yes,affirmative,original,book,1 -thank_you,thanks!,original,bye,2 -thank_you,i'm happy you've helped me,parrot,bye,2 -goodbye,peace,original,bye,2 -greeting,hello good morning,parrot,greet,4 -goodbye,thank you for talking to me,lambada,bye,2 -no,nay,original,cancel,3 -goodbye,bye-bye,original,bye,2 -greeting,"hello, good morning",lambada,greet,4 -goodbye,ill be leaving now,parrot,bye,2 -no,that's so wrong,parrot,cancel,3 -yes,confirm,original,book,1 -date,date tomorrow?,parrot,avail,0 -thank_you,i appreciate the help,original,bye,2 -yes,certainly,parrot,book,1 -goodbye,see ya,lambada,bye,2 -yes,that's right,original,book,1 -thank_you,nice,parrot,bye,2 -how_busy,what's the wait at the jalapenos ranch?,parrot,avail,0 -yes,certainly,parrot,book,1 -goodbye,as regards,parrot,bye,2 -greeting,heyo,original,greet,4 -date,what will be tomorrow on the calendar?,parrot,avail,0 -meeting_schedule,when's the meeting today?,parrot,avail,0 -thank_you,thanks please,original,bye,2 -goodbye,goodbye,original,bye,2 -goodbye,bye,original,bye,2 -yes,positive,parrot,book,1 -no,that is untrue,original,cancel,3 -greeting,yo,original,greet,4 -thank_you,merci beaucoup,original,bye,2 -no,that's negative,parrot,cancel,3 -how_busy,how busy is the restaurant right now?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -how_busy,how long can i expect to wait for a table at macaroni grill,lambada,avail,0 -reminder_update,can you set me a reminder to put the clothes in the dryer?,parrot,resched,5 -greeting,salutations,parrot,greet,4 -greeting,aloha,original,greet,4 -thank_you,i'm really grateful,parrot,bye,2 -greeting,how is ai feeling?,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -no,i'll say no,parrot,cancel,3 -thank_you,that's all i need,parrot,bye,2 -goodbye,bye,original,bye,2 -goodbye,goodbye for now,parrot,bye,2 -no,no?,parrot,cancel,3 -greeting,tell me the situation in irvine?,parrot,greet,4 -meeting_schedule,when are my meetings scheduled for today between noon and 1?,parrot,avail,0 -date,today?,parrot,avail,0 -how_busy,around nine ambrosio is busy,parrot,avail,0 -meeting_schedule,do i need to schedule a meeting with kim?,parrot,avail,0 -no,that's not acceptable,parrot,cancel,3 -yes,perfect,parrot,book,1 -how_busy,how long is the wait in the cheesecake factory?,parrot,avail,0 -yes,affirmative,original,book,1 -no,that's not right?,parrot,cancel,3 -cancel_reservation,i made a reservation for chris at tony's please cancel,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -yes,that's true,original,book,1 -yes,yay,lambada,book,1 -thank_you,thanks for my support,parrot,bye,2 -thank_you,thanks very much for your answer,parrot,bye,2 -no,nothing,parrot,cancel,3 -thank_you,the best,parrot,bye,2 -greeting,hola!,original,greet,4 -yes,say yes,lambada,book,1 -cancel_reservation,cancel my reservation for 6 pm at the sidetrack,parrot,cancel,3 -greeting,how're you?,parrot,greet,4 -yes,certainly,parrot,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -no,not really,original,cancel,3 -no,that's incorrect,original,cancel,3 -how_busy,what will the restaurant be like between 5 and 7pm,parrot,avail,0 -yes,very true,original,book,1 -greeting,how's everything,original,greet,4 -no,no,lambada,cancel,3 -no,not correct,parrot,cancel,3 -goodbye,have a good one?,original,bye,2 -yes,ok,original,book,1 -yes,that's absolutely true,parrot,book,1 -goodbye,later gator!,original,bye,2 -yes,i know,parrot,book,1 -yes,TRUE,original,book,1 -goodbye,see ya,lambada,bye,2 -no,sure it's wrong,parrot,cancel,3 -yes,positive,parrot,book,1 -schedule_meeting,can you schedule a meeting for 6 pm today?,parrot,book,1 -goodbye,greetings,parrot,bye,2 -thank_you,nice,parrot,bye,2 -thank_you,very grateful,parrot,bye,2 -greeting,"good morning, ai",original,greet,4 -goodbye,"later, goodbye",lambada,bye,2 -greeting,hola!,original,greet,4 -calendar,please find my march schedule,parrot,avail,0 -greeting,how're you doing,original,greet,4 -greeting,how's life going?,parrot,greet,4 -no,FALSE,lambada,cancel,3 -thank_you,i appreciate that answer!,original,bye,2 -schedule_meeting,how do i schedule a meeting,lambada,book,1 -reminder_update,create a reminder,original,resched,5 -calendar,please tell me what's on the calendar for march 31?,parrot,avail,0 -yes,positive,original,book,1 -yes,affirmative,original,book,1 -how_busy,how long will i have to wait for a table at chili's?,parrot,avail,0 -no,negative certainly,parrot,cancel,3 -yes,good,parrot,book,1 -calendar,i need my calendar,parrot,avail,0 -goodbye,say goodbye,parrot,bye,2 -date,what's today,original,avail,0 -date,what's the day now??,parrot,avail,0 -yes,my answer is yes,parrot,book,1 -greeting,hey,original,greet,4 -goodbye,it's over,parrot,bye,2 -goodbye,have to run,parrot,bye,2 -yes,say positive,parrot,book,1 -yes,that would be right,parrot,book,1 -how_busy,is it too long to wait for dinner?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -yes,confirmed,original,book,1 -goodbye,i'm leaving,parrot,bye,2 -how_busy,is the restaurant crowded?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,certainly,parrot,book,1 -greeting,heyo,original,greet,4 -greeting,are you doing ok?,original,greet,4 -yes,yes sir,original,book,1 -greeting,hola!,original,greet,4 -yes,affirmitive,original,book,1 -yes,i think you succeeded,parrot,book,1 -date,a year?,parrot,avail,0 -yes,sure,original,book,1 -date,in eight days?,parrot,avail,0 -goodbye,thanks for the talk,lambada,bye,2 -no,erroneous,parrot,cancel,3 -no,not happening,original,cancel,3 -goodbye,later goodbye,parrot,bye,2 -meeting_schedule,when's the meeting today?,parrot,avail,0 -goodbye,later!,original,bye,2 -no,negating,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -date,date tomorrow?,parrot,avail,0 -greeting,do you feel?,parrot,greet,4 -goodbye,go easy,parrot,bye,2 -yes,"yes, please",parrot,book,1 -no,i think it's false,parrot,cancel,3 -no,that's no,parrot,cancel,3 -no,no,lambada,cancel,3 -goodbye,later thanks for talking,parrot,bye,2 -thank_you,thanks for cooperating,parrot,bye,2 -yes,thats right,original,book,1 -yes,yes sir,original,book,1 -no,negatory,original,cancel,3 -yes,facts,original,book,1 -thank_you,my thanks,parrot,bye,2 -yes,affirmitive,original,book,1 -thank_you,i really want to thank you,parrot,bye,2 -greeting,how's my day?,parrot,greet,4 -thank_you,awesome thank you,parrot,bye,2 -no,is my falsehood?,parrot,cancel,3 -how_busy,how busy is the cheesecake factory at five?,parrot,avail,0 -yes,10-Apr,original,book,1 -greeting,ahoy there,lambada,greet,4 -thank_you,thank ya!,original,bye,2 -yes,sure,original,book,1 -reminder_update,remind me to clean up today,parrot,resched,5 -greeting,are you all right now?,parrot,greet,4 -no,negative definitely,parrot,cancel,3 -reminder_update,create a reminder please,parrot,resched,5 -goodbye,nice conversation today,parrot,bye,2 -no,negatory,original,cancel,3 -yes,i guess,parrot,book,1 -thank_you,thank a bunch,original,bye,2 -yes,affirmitive,original,book,1 -goodbye,see you soon,original,bye,2 -goodbye,tootles?,parrot,bye,2 -calendar,show me what's on my calendar for may 1st?,parrot,avail,0 -reminder_update,i need a reminder to call bill,parrot,resched,5 -yes,approved,original,book,1 -goodbye,peace out!,original,bye,2 -greeting,heller,original,greet,4 -greeting,heller,original,greet,4 -goodbye,buhbye,original,bye,2 -yes,uh-huh,original,book,1 -yes,correct,original,book,1 -goodbye,fairwell,original,bye,2 -how_busy,how long is the wait at the restaurant right now,lambada,avail,0 -yes,yes please,original,book,1 -yes,"yup, that's correct",lambada,book,1 -greeting,"hello, what's up",original,greet,4 -yes,ya,original,book,1 -greeting,how's life?,parrot,greet,4 -thank_you,many thank,original,bye,2 -calendar_update,delete all calendar entries on march 3rd,lambada,resched,5 -no,the information is wrong,original,cancel,3 -greeting,bonjour,original,greet,4 -date,what day?,parrot,avail,0 -calendar,can i put an item on my calendar for the dog's vaccinations?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -no,i do not think that is true,lambada,cancel,3 -greeting,hey it's up,lambada,greet,4 -greeting,welcome,parrot,greet,4 -schedule_meeting,check meeting room availability between one and three pm,original,book,1 -yes,i'm going to tell you tes,parrot,book,1 -greeting,tell me how you feel?,lambada,greet,4 -no,erroneous,parrot,cancel,3 -yes,positive,parrot,book,1 -goodbye,later,original,bye,2 -how_busy,how busy is texas heat at 8 pm,lambada,avail,0 -goodbye,see ya!,original,bye,2 -yes,it makes sense,parrot,book,1 -goodbye,goodbye now,parrot,bye,2 -yes,perfect,parrot,book,1 -cancel_reservation,the reservation for my friends at red robin is no longer necessary,parrot,cancel,3 -greeting,hey,original,greet,4 -goodbye,i'm out,parrot,bye,2 -thank_you,nice,parrot,bye,2 -no,no that is not correct,lambada,cancel,3 -goodbye,goodbye now,parrot,bye,2 -greeting,good morning,parrot,greet,4 -reminder_update,remind me to do laundry,parrot,resched,5 -yes,accepted,original,book,1 -yes,my answer is yes,parrot,book,1 -no,no that's not it?,parrot,cancel,3 -goodbye,i'm out,parrot,bye,2 -goodbye,a good conversation,parrot,bye,2 -calendar,let me know what's on my calendar for the 17th of march,parrot,avail,0 -goodbye,glad to talk,parrot,bye,2 -date,today is what date?,parrot,avail,0 -yes,i agree,original,book,1 -greeting,whats new,lambada,greet,4 -no,no way!,original,cancel,3 -no,negatory,original,cancel,3 -greeting,how's everything,original,greet,4 -greeting,hello bs,parrot,greet,4 -greeting,so how's everything?,parrot,greet,4 -yes,do that?,original,book,1 -cancel_reservation,please cancel my reservation,original,cancel,3 -greeting,salutations!,original,greet,4 -yes,yes,original,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,welcome,parrot,greet,4 -yes,the answer to that is a resounding yes,original,book,1 -yes,facts,original,book,1 -greeting,hola!,original,greet,4 -no,i'd rather not,parrot,cancel,3 -greeting,how are you doing,original,greet,4 -goodbye,say goodbye for now,parrot,bye,2 -no,it's negative,parrot,cancel,3 -goodbye,peace out,original,bye,2 -thank_you,and you're doing well,parrot,bye,2 -greeting,all right with you?,parrot,greet,4 -goodbye,adios!,original,bye,2 -yes,ya,original,book,1 -yes,that is affirmative,original,book,1 -no,no,lambada,cancel,3 -yes,right,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -goodbye,farewell,original,bye,2 -goodbye,for now,parrot,bye,2 -cancel_reservation,cancel my reservation for dinner at red robin's,parrot,cancel,3 -calendar_update,add my event on thursday to my calendar,lambada,resched,5 -goodbye,until next time,original,bye,2 -no,invalid,original,cancel,3 -reminder_update,make a reminder,parrot,resched,5 -yes,facts,original,book,1 -yes,ok,original,book,1 -goodbye,"syonara, ai device!",original,bye,2 -greeting,ahoy,lambada,greet,4 -yes,confirmed,original,book,1 -greeting,hi what's up,original,greet,4 -calendar,do you have any scheduled events on the calendar for the afternoon of september 7?,parrot,avail,0 -reminder_update,remember to write a letter,parrot,resched,5 -greeting,why hello?,original,greet,4 -goodbye,on the road,parrot,bye,2 -date,please explain today,parrot,avail,0 -thank_you,my gratitude,parrot,bye,2 -goodbye,i was on a good run,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -date,what's it today?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,how're you?,parrot,greet,4 -greeting,hey,original,greet,4 -no,that's a wrong answer,parrot,cancel,3 -greeting,hiya!,original,greet,4 -greeting,hiya,original,greet,4 -no,nada,original,cancel,3 -cancel_reservation,call my reservation cancelled,parrot,cancel,3 -calendar,if there is an annual physical in my calendar?,parrot,avail,0 -date,what's the current day?,parrot,avail,0 -greeting,hola!,original,greet,4 -greeting,bonjour,original,greet,4 -goodbye,greetings,parrot,bye,2 -greeting,hey yai,lambada,greet,4 -yes,affirmative,original,book,1 -greeting,hi,original,greet,4 -yes,right,parrot,book,1 -greeting,so how's everything?,parrot,greet,4 -no,i think my claim is wrong,parrot,cancel,3 -how_busy,does the michigan steakhouse have a lot of people at dinner times?,parrot,avail,0 -no,negatory,original,cancel,3 -no,that's actually a lie,parrot,cancel,3 -no,that is not correct,original,cancel,3 -no,invalid,original,cancel,3 -yes,certainly,parrot,book,1 -no,erroneous,parrot,cancel,3 -calendar,let me know if there's a march schedule for me,parrot,avail,0 -thank_you,thank you?,parrot,bye,2 -thank_you,appreciated,original,bye,2 -goodbye,sayonara ,parrot,bye,2 -meeting_schedule,when's my meeting?,parrot,avail,0 -yes,10-Apr,original,book,1 -greeting,hola,original,greet,4 -no,that's not true,original,cancel,3 -greeting,how's my day?,parrot,greet,4 -goodbye,i'm leaving,parrot,bye,2 -meeting_schedule,when's my meeting?,parrot,avail,0 -thank_you,that's all i need,parrot,bye,2 -greeting,so what's up?,parrot,greet,4 -calendar,does the calendar have easter?,parrot,avail,0 -yes,yay,lambada,book,1 -no,negatory,original,cancel,3 -calendar_update,erase jeff from my calendar,parrot,resched,5 -thank_you,nice,parrot,bye,2 -cancel_reservation,the reservation i made at the red robin is no longer valid,lambada,cancel,3 -how_busy,how long will it take to sit at the macaroni grill?,parrot,avail,0 -goodbye,great talk,lambada,bye,2 -greeting,how're you?,parrot,greet,4 -yes,all right,parrot,book,1 -thank_you,thanks,original,bye,2 -greeting,how's life?,parrot,greet,4 -meeting_schedule,tell me if i meet liz today?,parrot,avail,0 -schedule_meeting,do you have a meeting room available at 8?,parrot,book,1 -goodbye,great chat goodbye,lambada,bye,2 -goodbye,later!,original,bye,2 -no,i'd say the answer is no,parrot,cancel,3 -greeting,"hey, how is my day going",lambada,greet,4 -goodbye,bye!,original,bye,2 -greeting,aho,parrot,greet,4 -how_busy,i want to know how busy this chili's is at 6:30,lambada,avail,0 -yes,"yes, that's confirmed",original,book,1 -date,what year?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -thank_you,"great, thanks!",original,bye,2 -goodbye,i enjoy our conversation,parrot,bye,2 -no,nada,original,cancel,3 -date,what day?,parrot,avail,0 -goodbye,i'll leave,parrot,bye,2 -goodbye,goodbye,original,bye,2 -no,definitely not,original,cancel,3 -date,in 7 days?,parrot,avail,0 -thank_you,so grateful,parrot,bye,2 -calendar,check calendar for events,lambada,avail,0 -yes,yes,original,book,1 -no,nothing,parrot,cancel,3 -yes,i'm going to tell you tes,parrot,book,1 -no,no!,original,cancel,3 -thank_you,so grateful for my pay check,parrot,bye,2 -thank_you,thanks for coming by,lambada,bye,2 -no,not really,original,cancel,3 -goodbye,i need to catch up,lambada,bye,2 -yes,yeah,original,book,1 -thank_you,many thanks,original,bye,2 -greeting,what i feel?,parrot,greet,4 -thank_you,nice,parrot,bye,2 -cancel_reservation,get the salad cancelled,lambada,cancel,3 -goodbye,goodbyes,parrot,bye,2 -goodbye,i'll leave,parrot,bye,2 -yes,yes that's it,original,book,1 -yes,"yes, that's accurate",original,book,1 -greeting,how's life in my town,lambada,greet,4 -goodbye,adios,original,bye,2 -cancel_reservation,i'm going to have to cancel my reservation tonight,parrot,cancel,3 -greeting,how's ai feeling?,parrot,greet,4 -thank_you,really great!,original,bye,2 -yes,oh-huh,parrot,book,1 -thank_you,thank you!,original,bye,2 -how_busy,how long should i wait for a restaurant table?,parrot,avail,0 -yes,positive,parrot,book,1 -no,negatory?,parrot,cancel,3 -yes,great,original,book,1 -reminder_update,make me remember,parrot,resched,5 -yes,definitely,original,book,1 -yes,truthful is my answer,lambada,book,1 -greeting,how you are?,parrot,greet,4 -no,negatory?,parrot,cancel,3 -goodbye,farewell!,original,bye,2 -cancel_reservation,cancellation of dinner reservations,parrot,cancel,3 -thank_you,i'm thankful,original,bye,2 -yes,oh-huh,parrot,book,1 -goodbye,good night,original,bye,2 -goodbye,fairwell,original,bye,2 -yes,uh-huh,original,book,1 -greeting,how's everything going?,parrot,greet,4 -no,that's false,original,cancel,3 -goodbye,catch you later,original,bye,2 -no,negative definitely,parrot,cancel,3 -reminder_update,remember to remember later,parrot,resched,5 -greeting,yo,original,greet,4 -greeting,how's everything?,parrot,greet,4 -goodbye,peace,original,bye,2 -thank_you,"awesome, thanks",original,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -no,not really,original,cancel,3 -goodbye,great talk,lambada,bye,2 -date,current date,original,avail,0 -reminder_update,keep the movie in mind,parrot,resched,5 -yes,ya,original,book,1 -no,"please, no",original,cancel,3 -thank_you,thankyou,parrot,bye,2 -goodbye,see ya,original,bye,2 -how_busy,will the wait time for food in chinese restaurants be long?,parrot,avail,0 -date,would you tell me what date it'll be in eight days,parrot,avail,0 -goodbye,goodnight,original,bye,2 -greeting,aloha,original,greet,4 -yes,okay,original,book,1 -how_busy,how busy is mcdonald's right now?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -yes,confirmed,original,book,1 -reminder_update,please remind me later,original,resched,5 -goodbye,"great talk, thanks",original,bye,2 -goodbye,sign off,parrot,bye,2 -greeting,aho,parrot,greet,4 -reminder_update,create a reminder for me to get the cat food,lambada,resched,5 -date,what's the date tomorrow?,parrot,avail,0 -greeting,how's everything,original,greet,4 -yes,yup,original,book,1 -goodbye,and then goodbye,parrot,bye,2 -reminder_update,set reminder for me to call my mom at 6:30 pm,lambada,resched,5 -yes,accept,parrot,book,1 -reminder_update,please remind me,parrot,resched,5 -thank_you,good job thanks,parrot,bye,2 -no,absolutely false,parrot,cancel,3 -thank_you,thanks for coming,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -yes,you are definitely correct,lambada,book,1 -greeting,hola,original,greet,4 -greeting,how are things,original,greet,4 -goodbye,it was a pleasure talking with you,lambada,bye,2 -greeting,how ife treated you?,parrot,greet,4 -date,what will tomorrow be on my calendar?,parrot,avail,0 -no,that's totally wrong!,original,cancel,3 -greeting,hola!,original,greet,4 -greeting,greetings to you,original,greet,4 -greeting,what's up?,parrot,greet,4 -greeting,how's life,original,greet,4 -yes,it'll be yes,parrot,book,1 -goodbye,bye for now,original,bye,2 -schedule_meeting,is it possible to meet cole at 4pm?,parrot,book,1 -date,is it a monday wednesday wednesday?,parrot,avail,0 -date,in 8 days?,parrot,avail,0 -meeting_schedule,what meetings are today?,lambada,avail,0 -no,that's not right,original,cancel,3 -thank_you,well done,parrot,bye,2 -goodbye,as regards,parrot,bye,2 -greeting,salutations,parrot,greet,4 -thank_you,i'm glad you responded,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -goodbye,goodbye soon,lambada,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -how_busy,is the restaurant crowded at dinner time?,lambada,avail,0 -goodbye,take a rest,parrot,bye,2 -thank_you,you did it,parrot,bye,2 -no,i think not,original,cancel,3 -no,not true,original,cancel,3 -meeting_schedule,show me the schedule of my meeting today?,parrot,avail,0 -goodbye,see ya!,original,bye,2 -goodbye,sayonara ,parrot,bye,2 -greeting,hello hello good morning,parrot,greet,4 -thank_you,you've been amazing,lambada,bye,2 -how_busy,tell me the time to wait at macy's?,parrot,avail,0 -how_busy,how busy is iman at 11?,parrot,avail,0 -no,nada,original,cancel,3 -yes,approved,original,book,1 -yes,obviously,parrot,book,1 -calendar_update,stop this thing today,parrot,resched,5 -meeting_schedule,what time do i meet with john,parrot,avail,0 -thank_you,nice,parrot,bye,2 -how_busy,can you tell me how busy chipotle will be tonight?,parrot,avail,0 -no,thanks no,parrot,cancel,3 -no,no?,parrot,cancel,3 -goodbye,later!,original,bye,2 -calendar,what appointments do i have on thursday the 14th?,original,avail,0 -yes,"yes, please",original,book,1 -yes,okay,original,book,1 -no,no?,parrot,cancel,3 -how_busy,is the restaurant always packed?,parrot,avail,0 -greeting,how's idy doing?,parrot,greet,4 -yes,"yep, that's right",original,book,1 -no,that's erroneous,parrot,cancel,3 -yes,certainly true,parrot,book,1 -calendar,does my calendar include shana's baby shower?,parrot,avail,0 -greeting,hello there,original,greet,4 -how_busy,is mr joes pizza crowded?,parrot,avail,0 -no,not that,original,cancel,3 -greeting,how's my current situation?,parrot,greet,4 -greeting,"hello, how are you doing today",lambada,greet,4 -calendar,what's on my calendar for february 8?,parrot,avail,0 -no,but certainly not,parrot,cancel,3 -no,that's very false,parrot,cancel,3 -calendar,does the calendar have an easter?,parrot,avail,0 -no,that's untrue,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -yes,you're right,original,book,1 -goodbye,sayonara,original,bye,2 -no,"no, that's incorrect",original,cancel,3 -goodbye,i'll be gone,parrot,bye,2 -no,it's negative,parrot,cancel,3 -yes,all right,parrot,book,1 -no,no?,parrot,cancel,3 -no,it's a negation,parrot,cancel,3 -greeting,hello,original,greet,4 -greeting,hola,original,greet,4 -yes,"yeah that's right, so true",original,book,1 -thank_you,okay thank you,parrot,bye,2 -no,that's bad,parrot,cancel,3 -greeting,hola,original,greet,4 -reminder_update,how about a reminder?,parrot,resched,5 -goodbye,goodbye soon,lambada,bye,2 -greeting,yo,original,greet,4 -goodbye,farewell!,original,bye,2 -greeting,hello,original,greet,4 -goodbye,you're done,parrot,bye,2 -greeting,wassup,original,greet,4 -thank_you,awesome thank you,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -no,naw,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -yes,oh yes,original,book,1 -no,is it a lie,parrot,cancel,3 -yes,it makes sense,parrot,book,1 -yes,i'm going to tell you tes,parrot,book,1 -calendar_update,remove the bachelorette party from my calendar for may 3 2018,parrot,resched,5 -goodbye,later,original,bye,2 -yes,i believe that you are correct,lambada,book,1 -yes,yay,lambada,book,1 -yes,absolutely,original,book,1 -thank_you,thank you,original,bye,2 -yes,ya,original,book,1 -calendar,tell me what's on my calendar for march 1st?,parrot,avail,0 -no,the negator,parrot,cancel,3 -goodbye,see ya,lambada,bye,2 -thank_you,your assistance is appreciated,parrot,bye,2 -calendar,can you check my calendar to see if an event called final exam is set to occur?,lambada,avail,0 -reminder_update,don't forget to tell me to call my mother?,original,resched,5 -schedule_meeting,is there a room free from 12 to 1?,parrot,book,1 -date,let me know the date,parrot,avail,0 -how_busy,how long will i have to wait to get a table in olive garden,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -yes,thats right,original,book,1 -thank_you,my thanks,parrot,bye,2 -yes,positive,parrot,book,1 -yes,yup,original,book,1 -goodbye,i have to run,parrot,bye,2 -greeting,"hello, ai",original,greet,4 -yes,yup,original,book,1 -yes,absolutely correct,original,book,1 -no,no way,original,cancel,3 -cancel_reservation,i must cancel my reservation please,parrot,cancel,3 -greeting,how do you feel?,parrot,greet,4 -greeting,whats new,lambada,greet,4 -no,it'd be awful,parrot,cancel,3 -no,not right,parrot,cancel,3 -date,what month and day?,parrot,avail,0 -goodbye,i'll have to go,parrot,bye,2 -no,is very false,parrot,cancel,3 -no,i mean no,parrot,cancel,3 -reminder_update,maybe a reminder?,parrot,resched,5 -yes,absolutely!,original,book,1 -goodbye,as regards,parrot,bye,2 -goodbye,you're done,parrot,bye,2 -no,i say negative,original,cancel,3 -meeting_schedule,can you tell me what kinds of meetings i'm going to attend between noon and 3pm?,parrot,avail,0 -greeting,heller,original,greet,4 -how_busy,will chili be busy around 8?,parrot,avail,0 -calendar,#NAME?,parrot,avail,0 -how_busy,how busy is chapsticks around 5 pm,lambada,avail,0 -date,what day?,parrot,avail,0 -greeting,what is new?,parrot,greet,4 -thank_you,"oh, thanks",original,bye,2 -yes,thats right,original,book,1 -no,that isn't true,lambada,cancel,3 -yes,affirmitive,original,book,1 -no,nope,original,cancel,3 -yes,oh-huh,parrot,book,1 -greeting,hey it's up,lambada,greet,4 -goodbye,you're done,parrot,bye,2 -no,that's so false,parrot,cancel,3 -goodbye,really great to talk with you,parrot,bye,2 -yes,it also makes sense,parrot,book,1 -goodbye,i'd like to see you,parrot,bye,2 -calendar,please help me find my march calendar,parrot,avail,0 -reminder_update,please give me a reminder,original,resched,5 -goodbye,i leave now,parrot,bye,2 -yes,agreed,original,book,1 -yes,good,parrot,book,1 -greeting,how are things?,parrot,greet,4 -yes,you are correct,original,book,1 -no,that's certainly false,parrot,cancel,3 -meeting_schedule,please tell me what you plan for today?,parrot,avail,0 -goodbye,get there soon,lambada,bye,2 -how_busy,tell me how busy the restaurant is at 5 pm?,lambada,avail,0 -reminder_update,remind me of exercise,parrot,resched,5 -goodbye,chat to me later,parrot,bye,2 -date,show me what's the date?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -calendar,check my calendar please,parrot,avail,0 -greeting,salutation,parrot,greet,4 -no,no that's not right at all,parrot,cancel,3 -no,naw,original,cancel,3 -reminder_update,set a reminder to buy bread,original,resched,5 -goodbye,the discussion was nice,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -no,"no, that is wrong",original,cancel,3 -thank_you,"great, thanks!",original,bye,2 -no,negation,parrot,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -goodbye,adios,original,bye,2 -yes,"yes, please",parrot,book,1 -yes,correct,original,book,1 -goodbye,buhbye,original,bye,2 -date,is tomorrow's date?,parrot,avail,0 -yes,huh,parrot,book,1 -no,nope,original,cancel,3 -reminder_update,let me be reminded,parrot,resched,5 -yes,that's the truth,original,book,1 -no,nothing,parrot,cancel,3 -how_busy,how long will the wait be in an italian restaurant?,parrot,avail,0 -yes,good,parrot,book,1 -yes,that is accurate,original,book,1 -date,date please,original,avail,0 -yes,definitely,original,book,1 -how_busy,is ihop currently busy?,parrot,avail,0 -calendar,what's on january 1st?,parrot,avail,0 -no,that is not right,original,cancel,3 -goodbye,i'll leave now,parrot,bye,2 -no,so that's no,parrot,cancel,3 -greeting,yo,original,greet,4 -thank_you,your answer is appreciated,original,bye,2 -yes,accepted,original,book,1 -no,erroneous,parrot,cancel,3 -how_busy,how long will i have to wait for a table in the olive garden,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -thank_you,"nice, excellent!",original,bye,2 -thank_you,thanks again,original,bye,2 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -thank_you,many thank,original,bye,2 -greeting,what's happening,original,greet,4 -how_busy,is iman busy around five hours?,parrot,avail,0 -meeting_schedule,tell me if i have meetings with dan today?,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -goodbye,i'm going,parrot,bye,2 -yes,yup,original,book,1 -meeting_schedule,are there meetings between 2 and 4 today?,parrot,avail,0 -no,that is erroneous,original,cancel,3 -no,nada,original,cancel,3 -greeting,hello there,original,greet,4 -no,naw,parrot,cancel,3 -no,negating,parrot,cancel,3 -schedule_meeting,how can you schedule a meeting for me?,parrot,book,1 -yes,positive,parrot,book,1 -goodbye,bye-bye,original,bye,2 -thank_you,much obliged,original,bye,2 -goodbye,goodnight,original,bye,2 -yes,affirmative,original,book,1 -no,no good,original,cancel,3 -date,what is my date tomorrow?,parrot,avail,0 -reminder_update,please remember me again,parrot,resched,5 -greeting,and what's up?,parrot,greet,4 -cancel_reservation,cancellation of red robin reservation for 5 days,parrot,cancel,3 -no,negatory,original,cancel,3 -calendar,tell me my calendar?,parrot,avail,0 -thank_you,did you do well?,parrot,bye,2 -thank_you,and i'm so thankful for my help,parrot,bye,2 -reminder_update,remember to write later,parrot,resched,5 -goodbye,bye-bye,original,bye,2 -yes,my answer to you is yes,parrot,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -goodbye,"goodbye, ai assistant",original,bye,2 -greeting,how's idy doing,lambada,greet,4 -reminder_update,please remember me later,parrot,resched,5 -thank_you,thanks again!,original,bye,2 -thank_you,"awesome, thanks",original,bye,2 -goodbye,i'm leaving,parrot,bye,2 -greeting,"hello, what's up",original,greet,4 -yes,yes sir,original,book,1 -thank_you,good job,lambada,bye,2 -thank_you,thank you for letting me know,parrot,bye,2 -yes,that is affirmative,original,book,1 -no,no that's not correct,parrot,cancel,3 -goodbye,the chat was good,parrot,bye,2 -no,negating,parrot,cancel,3 -yes,roger that,original,book,1 -calendar,tell me everything on my calendar for may 1?,original,avail,0 -goodbye,goodbye!,original,bye,2 -yes,my answer is yes,parrot,book,1 -no,"no, that's a lie",lambada,cancel,3 -goodbye,i've enjoyed talking to you later on,parrot,bye,2 -goodbye,no problem just relax,parrot,bye,2 -no,that's not the way,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,not good idea,parrot,cancel,3 -yes,definitely,original,book,1 -calendar_update,can you add an event in my calendar?,parrot,resched,5 -greeting,whats new?,parrot,greet,4 -goodbye,wait for me later,parrot,bye,2 -goodbye,good bye,original,bye,2 -goodbye,but now i'm leaving,parrot,bye,2 -goodbye,nice conversation today,parrot,bye,2 -how_busy,how many people are expected at an immaculate steakhouse,parrot,avail,0 -thank_you,you've been great,parrot,bye,2 -goodbye,tootles,original,bye,2 -no,that's overwhelmingly negative,parrot,cancel,3 -goodbye,peace out!,original,bye,2 -goodbye,"great chat, take it easy",lambada,bye,2 -thank_you,thanks,original,bye,2 -no,negative certainly,parrot,cancel,3 -no,no!,original,cancel,3 -no,"please, no",original,cancel,3 -yes,"yes, that's accurate",original,book,1 -goodbye,adios,original,bye,2 -greeting,heyo,original,greet,4 -no,that's incorrect,original,cancel,3 -greeting,hola,original,greet,4 -goodbye,good-bye,parrot,bye,2 -greeting,aloha,original,greet,4 -how_busy,how long will the wait time be at chili's at 6 o'clock?,parrot,avail,0 -yes,it'd be great,parrot,book,1 -thank_you,gracias,original,bye,2 -no,i prefer not,parrot,cancel,3 -yes,roger that,original,book,1 -thank_you,you answered,parrot,bye,2 -greeting,hola,original,greet,4 -greeting,hey hey!,original,greet,4 -reminder_update,i have to get rid of the trash please remind me,parrot,resched,5 -thank_you,i am grateful,lambada,bye,2 -how_busy,how busy is the cheesecake factory at 12?,parrot,avail,0 -how_busy,how long does the restaurant wait before you get seated?,parrot,avail,0 -yes,is true,parrot,book,1 -yes,positive,parrot,book,1 -no,FALSE,lambada,cancel,3 -thank_you,thank you for everything you've done,lambada,bye,2 -yes,great,original,book,1 -greeting,yo,original,greet,4 -thank_you,again thank you,parrot,bye,2 -yes,accept,parrot,book,1 -no,negating,parrot,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -thank_you,my thanks,parrot,bye,2 -yes,indeed,original,book,1 -goodbye,fairwell,original,bye,2 -goodbye,see ya,lambada,bye,2 -how_busy,does this restaurant have a high attendance at dinner?,lambada,avail,0 -no,erroneous,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -yes,definitely,original,book,1 -yes,huh,parrot,book,1 -yes,definitely yes,parrot,book,1 -yes,obviously,parrot,book,1 -thank_you,thank you!,original,bye,2 -reminder_update,please remind me to clean the garage this week,parrot,resched,5 -yes,"true, most definitely",original,book,1 -greeting,aho,parrot,greet,4 -greeting,hi ai,original,greet,4 -meeting_schedule,show me the time of my meetings?,parrot,avail,0 -how_busy,how busy will steakhouse be at 6:00 pm,lambada,avail,0 -yes,it's positive,parrot,book,1 -greeting,ahoy,lambada,greet,4 -goodbye,good bye,original,bye,2 -yes,certainly,parrot,book,1 -thank_you,you're the best!,original,bye,2 -thank_you,you're a good help,parrot,bye,2 -greeting,hi ai,original,greet,4 -meeting_schedule,what's the time for the meeting?,parrot,avail,0 -no,negation,parrot,cancel,3 -greeting,hi ai,original,greet,4 -greeting,how's idy?,parrot,greet,4 -greeting,hey there!,original,greet,4 -how_busy,does mr joe's pizza have a long waiting time?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -yes,just right,parrot,book,1 -goodbye,you're done,parrot,bye,2 -goodbye,good call,parrot,bye,2 -goodbye,cya later,original,bye,2 -no,that's inaccurate,original,cancel,3 -how_busy,how long would it take to wait in the restaurant?,parrot,avail,0 -reminder_update,may i be reminded?,parrot,resched,5 -greeting,how are things in the city,lambada,greet,4 -greeting,salutations!,original,greet,4 -no,it would be false,parrot,cancel,3 -goodbye,later!,original,bye,2 -goodbye,thanks goodbye,parrot,bye,2 -no,negatory,original,cancel,3 -yes,"yes, please",parrot,book,1 -greeting,"good morning, ai",original,greet,4 -thank_you,really great!,original,bye,2 -date,a year?,parrot,avail,0 -how_busy,is macy's busy?,parrot,avail,0 -greeting,hello,original,greet,4 -greeting,hey hey!,original,greet,4 -yes,huh,parrot,book,1 -calendar_update,add my appointment to my calendar for the 5th,lambada,resched,5 -thank_you,awesome thanks,parrot,bye,2 -yes,yes sir,original,book,1 -greeting,how are you doing?,parrot,greet,4 -yes,positive,original,book,1 -greeting,hey fellow,parrot,greet,4 -goodbye,fairwell,original,bye,2 -yes,that would be true,original,book,1 -how_busy,if i go to olive garden at 4 pm how busy it will be,parrot,avail,0 -goodbye,farewell,original,bye,2 -meeting_schedule,are there any meetings today?,lambada,avail,0 -goodbye,wonderful conversation,lambada,bye,2 -meeting_schedule,when am i gonna be meeting roger?,original,avail,0 -yes,approved,original,book,1 -greeting,how's it going?,parrot,greet,4 -greeting,aloha,original,greet,4 -thank_you,i'm so grateful,parrot,bye,2 -yes,yes,original,book,1 -greeting,you're all right?,parrot,greet,4 -meeting_schedule,tell me how many meetings i have with pete?,parrot,avail,0 -how_busy,is red lobster very busy around noon?,lambada,avail,0 -greeting,hola,original,greet,4 -reminder_update,please remind me later,original,resched,5 -how_busy,how busy is the olive garden restaurant at 730?,parrot,avail,0 -goodbye,it's over,parrot,bye,2 -how_busy,will the restaurant have a busy wait at 10am,lambada,avail,0 -no,no?,parrot,cancel,3 -schedule_meeting,reserve a place for a meeting at 11 am on wednesday,parrot,book,1 -goodbye,be careful then,lambada,bye,2 -reminder_update,remember to call me tomorrow,parrot,resched,5 -how_busy,how long do i need to wait for a table at the pizza bakery,lambada,avail,0 -how_busy,how long will it take to wait for the release?,parrot,avail,0 -reminder_update,set up a reminder for me,lambada,resched,5 -yes,yup,original,book,1 -date,please date,parrot,avail,0 -greeting,what's up,original,greet,4 -greeting,aho,parrot,greet,4 -yes,truthful is my answer,lambada,book,1 -goodbye,adios!,original,bye,2 -no,not so i think,parrot,cancel,3 -how_busy,will cracker barrel be crowded around five this evening,original,avail,0 -date,today?,parrot,avail,0 -yes,"yes, please",original,book,1 -reminder_update,add a reminder for me?,parrot,resched,5 -no,that's certainly not the case here,parrot,cancel,3 -no,but no way?,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -calendar,did i set a repair date on my calendar?,parrot,avail,0 -meeting_schedule,please tell me my meeting schedule,original,avail,0 -yes,yep,original,book,1 -yes,agreed,original,book,1 -thank_you,and i appreciate the gesture,parrot,bye,2 -how_busy,how long will it take to sit down at applebees?,parrot,avail,0 -greeting,good evening,original,greet,4 -goodbye,get there soon,lambada,bye,2 -greeting,hello,original,greet,4 -goodbye,farewell,original,bye,2 -calendar_update,delete the appointment that i scheduled,parrot,resched,5 -goodbye,"great talk, thanks",original,bye,2 -no,so that's no,parrot,cancel,3 -no,not true i don't think,parrot,cancel,3 -schedule_meeting,how do i submit a new request?,parrot,book,1 -goodbye,adios ai,original,bye,2 -greeting,hi there,original,greet,4 -thank_you,okay thanks,original,bye,2 -thank_you,good job,lambada,bye,2 -goodbye,bye,original,bye,2 -yes,yes that's right,lambada,book,1 -goodbye,take it easy,lambada,bye,2 -greeting,wake up ai,parrot,greet,4 -yes,sure thing,original,book,1 -yes,facts,original,book,1 -date,what is the date for tomorrow?,original,avail,0 -meeting_schedule,check my schedule today,parrot,avail,0 -greeting,how is idy?,parrot,greet,4 -no,no,lambada,cancel,3 -greeting,why hello?,original,greet,4 -goodbye,nice chat today,lambada,bye,2 -greeting,heller,original,greet,4 -greeting,what's up?,parrot,greet,4 -greeting,how's otc?,parrot,greet,4 -yes,TRUE,lambada,book,1 -yes,great,original,book,1 -no,negation,parrot,cancel,3 -greeting,how's life,original,greet,4 -yes,10-Apr,original,book,1 -goodbye,until next time,original,bye,2 -thank_you,thanks a million,original,bye,2 -greeting,have you felt?,parrot,greet,4 -how_busy,is macy's busy?,parrot,avail,0 -how_busy,there's a cheesecake factory,parrot,avail,0 -no,nothing,parrot,cancel,3 -date,please tell me the date for tomorrow?,parrot,avail,0 -yes,perfect,parrot,book,1 -no,negation,parrot,cancel,3 -yes,facts,original,book,1 -greeting,hello,original,greet,4 -cancel_reservation,cancel my reservation for chris,parrot,cancel,3 -no,it's negative,parrot,cancel,3 -goodbye,farewell,original,bye,2 -no,it's overwhelmingly wrong,parrot,cancel,3 -no,no!,original,cancel,3 -yes,uh-huh,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,im leaving goodbye,parrot,bye,2 -thank_you,thanks for that!,original,bye,2 -yes,indeed,parrot,book,1 -thank_you,your response was good,parrot,bye,2 -greeting,hey yai,lambada,greet,4 -goodbye,good conversation,parrot,bye,2 -goodbye,buhbye,original,bye,2 -calendar,display my calendar,lambada,avail,0 -how_busy,can i expect a long wait at the chocolate fountains?,parrot,avail,0 -greeting,how're you?,parrot,greet,4 -yes,"affirmative, go ahead",original,book,1 -date,is today monday?,original,avail,0 -yes,indeed,original,book,1 -yes,yes,original,book,1 -how_busy,how busy will the chipotle garden be around 9 o'clock?,parrot,avail,0 -thank_you,thank you please,parrot,bye,2 -how_busy,how busy is georgio at 6?,parrot,avail,0 -date,which date is it,lambada,avail,0 -yes,that's definitely true,original,book,1 -date,what's the date,original,avail,0 -greeting,and how's it going,parrot,greet,4 -how_busy,find out how busy olive garden will be at 7:30 pm,lambada,avail,0 -no,that's a negatory,original,cancel,3 -yes,not false,parrot,book,1 -greeting,how you're treated,parrot,greet,4 -no,negative definitely,parrot,cancel,3 -no,naw,original,cancel,3 -yes,confirm,original,book,1 -yes,all right,parrot,book,1 -goodbye,nice to see you bye,parrot,bye,2 -no,not good idea,parrot,cancel,3 -how_busy,is olive garden busy with lunch?,parrot,avail,0 -thank_you,awesome thanks,parrot,bye,2 -goodbye,regards,original,bye,2 -greeting,hiya,original,greet,4 -greeting,hey hey!,original,greet,4 -yes,"yes, please",parrot,book,1 -yes,accept,parrot,book,1 -goodbye,goodbye goodbye,parrot,bye,2 -greeting,aho,parrot,greet,4 -goodbye,i need to go,lambada,bye,2 -no,i prefer not,parrot,cancel,3 -goodbye,goodbye to you,original,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -greeting,bonjour,original,greet,4 -goodbye,bye bye!,original,bye,2 -no,it's no,parrot,cancel,3 -no,nothing,parrot,cancel,3 -no,that's no,parrot,cancel,3 -no,no,lambada,cancel,3 -thank_you,thank you?,parrot,bye,2 -date,can you give me the date today?,lambada,avail,0 -no,no,lambada,cancel,3 -no,FALSE,lambada,cancel,3 -no,i'd say no,original,cancel,3 -yes,huh,parrot,book,1 -greeting,and how are you treated?,parrot,greet,4 -yes,affirmative,original,book,1 -how_busy,i want to know how busy the cheesecake factory is at 830,parrot,avail,0 -cancel_reservation,cancel the reservation for 4 at the brookhouse,lambada,cancel,3 -how_busy,tell me how busy red robin is at 5pm?,parrot,avail,0 -goodbye,peace,original,bye,2 -yes,im sure you're true,parrot,book,1 -yes,facts,original,book,1 -yes,yep,original,book,1 -how_busy,is the pizza place crowded?,parrot,avail,0 -no,no?,parrot,cancel,3 -no,i would like to say that this is false,lambada,cancel,3 -greeting,how is ai feeling?,parrot,greet,4 -greeting,aho,parrot,greet,4 -reminder_update,add a reminder,lambada,resched,5 -no,negatory?,parrot,cancel,3 -no,invalid,original,cancel,3 -thank_you,i'm glad you met,parrot,bye,2 -goodbye,good night,original,bye,2 -greeting,hey,original,greet,4 -yes,and you're correct,parrot,book,1 -date,which date will be my wedding in three days,parrot,avail,0 -goodbye,and then goodbye,parrot,bye,2 -cancel_reservation,please cancel my reservation for the restaurant,parrot,cancel,3 -yes,absolutely correct,original,book,1 -thank_you,very grateful,parrot,bye,2 -goodbye,sayonara,original,bye,2 -greeting,hey how are you,lambada,greet,4 -greeting,hola,original,greet,4 -meeting_schedule,have meetings scheduled between 4 and 5 today?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,ok good chatting goodbye,original,bye,2 -calendar,do you have any scheduled events on my calendar for january 15th?,parrot,avail,0 -no,invalid,original,cancel,3 -yes,affirmative,original,book,1 -goodbye,say goodbye now,parrot,bye,2 -how_busy,is friday full after 4?,parrot,avail,0 -goodbye,later,original,bye,2 -thank_you,good job,lambada,bye,2 -goodbye,good conversation,parrot,bye,2 -yes,okay,original,book,1 -yes,certainly true,parrot,book,1 -greeting,whats up?,parrot,greet,4 -goodbye,goodbyes soon,parrot,bye,2 -goodbye,bye now,original,bye,2 -greeting,how are you,original,greet,4 -no,that's incorrect,original,cancel,3 -how_busy,can you tell me the wait time?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -no,no?,parrot,cancel,3 -greeting,heller,original,greet,4 -thank_you,"great, thanks!",original,bye,2 -greeting,salutations,parrot,greet,4 -how_busy,there's a cheesecake factory,parrot,avail,0 -goodbye,lovely conversation,parrot,bye,2 -no,and i say negative,parrot,cancel,3 -no,yes that's false,lambada,cancel,3 -yes,accepted,original,book,1 -no,invalid,original,cancel,3 -yes,right,parrot,book,1 -yes,TRUE,original,book,1 -goodbye,"thanks, bye",original,bye,2 -greeting,hola!,original,greet,4 -thank_you,i'm thankful,original,bye,2 -date,which day is next?,parrot,avail,0 -goodbye,take care then,parrot,bye,2 -no,invalid,original,cancel,3 -schedule_meeting,help me get a meeting set up?,parrot,book,1 -cancel_reservation,cancel my reservation at the burger joint,lambada,cancel,3 -reminder_update,remind me,original,resched,5 -thank_you,okay thanks,original,bye,2 -yes,certainly true,parrot,book,1 -no,no please,parrot,cancel,3 -no,please disagree,lambada,cancel,3 -yes,yup,original,book,1 -no,it's a wrong answer,parrot,cancel,3 -no,that's bad,parrot,cancel,3 -goodbye,i'm out,parrot,bye,2 -no,so that's no,parrot,cancel,3 -how_busy,is ihop busy around 815?,parrot,avail,0 -yes,agreed,original,book,1 -how_busy,how busy is the steak house around midnight,parrot,avail,0 -no,negatory?,parrot,cancel,3 -greeting,tell me how you were?,parrot,greet,4 -no,erroneous,parrot,cancel,3 -greeting,bonjour,original,greet,4 -yes,thats right,original,book,1 -no,so that's no,parrot,cancel,3 -no,nope,original,cancel,3 -how_busy,when will i wait at chipotle?,parrot,avail,0 -yes,that checks out,original,book,1 -goodbye,the conversation was good,parrot,bye,2 -cancel_reservation,discard my reservation for dinner,parrot,cancel,3 -yes,obviously,parrot,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -yes,it is true,original,book,1 -greeting,hola,original,greet,4 -greeting,what's new here?,parrot,greet,4 -goodbye,later gator!,original,bye,2 -goodbye,tootles,original,bye,2 -yes,yup,original,book,1 -how_busy,what time should i wait to be seated at phoenix steakhouse?,parrot,avail,0 -date,what day?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -greeting,"hey, ai",original,greet,4 -date,what date will it be in next week?,parrot,avail,0 -meeting_schedule,are there meetings from 1 to 4 today?,parrot,avail,0 -yes,agreed,original,book,1 -thank_you,i'm really thankful,parrot,bye,2 -greeting,hello,original,greet,4 -goodbye,later,original,bye,2 -greeting,what's new,lambada,greet,4 -yes,facts,original,book,1 -goodbye,see ya!,original,bye,2 -how_busy,what's the typical wait time at red lobster,original,avail,0 -no,no?,parrot,cancel,3 -no,you are wrong,original,cancel,3 -goodbye,good-bye,parrot,bye,2 -goodbye,i'm gone,parrot,bye,2 -date,current date,original,avail,0 -yes,affirmative,original,book,1 -thank_you,thank you!,original,bye,2 -thank_you,appreciate the assistance,parrot,bye,2 -date,where is tomorrow's date,lambada,avail,0 -no,that is not right,original,cancel,3 -yes,"yup, that's true",original,book,1 -meeting_schedule,how long is the meeting with diane?,parrot,avail,0 -greeting,hello what's up?,parrot,greet,4 -date,what day?,parrot,avail,0 -calendar,check my calendar for saturday,original,avail,0 -goodbye,thank you for talking to me,lambada,bye,2 -meeting_schedule,can you give me the schedule for today?,parrot,avail,0 -date,what's today,original,avail,0 -no,naw,parrot,cancel,3 -yes,positive,original,book,1 -goodbye,bye bye,lambada,bye,2 -yes,i say yes,lambada,book,1 -thank_you,i'm glad you laughed,parrot,bye,2 -yes,not a falsehood,parrot,book,1 -goodbye,i'm out,parrot,bye,2 -greeting,what's up?,parrot,greet,4 -no,nothing,parrot,cancel,3 -goodbye,great talking to you,parrot,bye,2 -how_busy,how long will it be at olive garden around 7:30,lambada,avail,0 -yes,certainly,parrot,book,1 -date,today?,parrot,avail,0 -goodbye,next time we'll talk,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -yes,huh,parrot,book,1 -yes,it makes sense,parrot,book,1 -yes,let's do that,parrot,book,1 -no,certainly false,parrot,cancel,3 -goodbye,i’m leaving-goodbye!,original,bye,2 -thank_you,"thanks, that's helpful",original,bye,2 -no,i must say no,original,cancel,3 -thank_you,thank you for my donation,parrot,bye,2 -date,i need to know what date it's tomorrow,parrot,avail,0 -yes,i know,parrot,book,1 -goodbye,bye,original,bye,2 -date,do you know what's the date?,parrot,avail,0 -no,that's erroneous,parrot,cancel,3 -no,indeed it's false,parrot,cancel,3 -greeting,hola,original,greet,4 -greeting,good evening,original,greet,4 -yes,oh-huh,parrot,book,1 -yes,ok,original,book,1 -meeting_schedule,how did you meet mary?,parrot,avail,0 -yes,that's absolutely true,parrot,book,1 -greeting,yo,original,greet,4 -no,negating,parrot,cancel,3 -no,that would be no,lambada,cancel,3 -no,that’s actually wrong,original,cancel,3 -yes,is true,parrot,book,1 -yes,obviously,parrot,book,1 -no,but it's false,parrot,cancel,3 -no,naw,original,cancel,3 -meeting_schedule,what's on my schedule today?,parrot,avail,0 -goodbye,i'll be gone,parrot,bye,2 -meeting_schedule,time of meeting?,parrot,avail,0 -reminder_update,i'd like a reminder,parrot,resched,5 -goodbye,i've enjoyed talking to you,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,goodnight,original,bye,2 -goodbye,next time we'll talk,parrot,bye,2 -no,but that's totally wrong,parrot,cancel,3 -goodbye,goodbye soon,lambada,bye,2 -yes,obviously,parrot,book,1 -thank_you,good job thanks,parrot,bye,2 -greeting,hey,original,greet,4 -yes,that's a yes,original,book,1 -no,nay,original,cancel,3 -no,no don't do that!,original,cancel,3 -goodbye,see ya,original,bye,2 -greeting,how's the life in my neighborhood,parrot,greet,4 -date,a year?,parrot,avail,0 -yes,i agree,original,book,1 -yes,absolutely!,original,book,1 -how_busy,can you tell me how busy the chili's will be at 5?,parrot,avail,0 -yes,i want that,parrot,book,1 -goodbye,bye!,original,bye,2 -yes,"yep, that's right",original,book,1 -yes,definitely yes,parrot,book,1 -no,nothing,parrot,cancel,3 -thank_you,my gratitude,parrot,bye,2 -greeting,how did you feel?,parrot,greet,4 -goodbye,afterward,parrot,bye,2 -greeting,hey fellows,parrot,greet,4 -thank_you,you've tried,parrot,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -how_busy,how busy will the macaroni grill be at 5pm,parrot,avail,0 -no,not right now,original,cancel,3 -goodbye,peace out,original,bye,2 -yes,thats right,original,book,1 -goodbye,i have to run,parrot,bye,2 -how_busy,how long do i have to wait to be seated at this restaurant?,parrot,avail,0 -greeting,how's that hanging?,parrot,greet,4 -date,today?,parrot,avail,0 -date,current day,parrot,avail,0 -how_busy,is the wait time at the restaurant high?,lambada,avail,0 -yes,exactly right,original,book,1 -meeting_schedule,when will i meet with ann?,parrot,avail,0 -yes,you're right,original,book,1 -goodbye,good-bye,parrot,bye,2 -meeting_schedule,what time do i meet jane?,parrot,avail,0 -yes,affirmative,original,book,1 -goodbye,goodnight,original,bye,2 -how_busy,can you tell me how long it will take to get a table at egg salad factory?,parrot,avail,0 -no,that would be wrong,lambada,cancel,3 -meeting_schedule,do you know if i have a meeting with travis?,parrot,avail,0 -yes,confirmed,original,book,1 -goodbye,greetings,parrot,bye,2 -calendar,what am i supposed to be doing today?,original,avail,0 -no,erroneous,parrot,cancel,3 -thank_you,you've been amazing,lambada,bye,2 -greeting,hey,original,greet,4 -no,that's not necessarily true,lambada,cancel,3 -meeting_schedule,when's my meeting with frank scheduled?,parrot,avail,0 -goodbye,adios,original,bye,2 -thank_you,"thanks, you've helped me",original,bye,2 -yes,confirm,original,book,1 -goodbye,goodbye then,parrot,bye,2 -no,negating,parrot,cancel,3 -no,it's negative,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -yes,sure,original,book,1 -greeting,well hello,original,greet,4 -how_busy,how long is the wait at igor's?,parrot,avail,0 -thank_you,i'm really thankful,parrot,bye,2 -goodbye,great talking to you,parrot,bye,2 -goodbye,bye bye then,original,bye,2 -goodbye,adios,original,bye,2 -no,certainly not,original,cancel,3 -no,that would be incorrect,lambada,cancel,3 -yes,right,parrot,book,1 -goodbye,thank you for talking,parrot,bye,2 -greeting,hello there!,original,greet,4 -yes,absolutely!,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,naw,original,cancel,3 -reminder_update,please remember me later,parrot,resched,5 -calendar_update,cancel a dinner i've planned for my calendar,lambada,resched,5 -yes,exactly right,original,book,1 -no,please no,parrot,cancel,3 -thank_you,good job,lambada,bye,2 -yes,it's positive,parrot,book,1 -yes,affirmitive,original,book,1 -greeting,good evening,original,greet,4 -yes,indeed,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -yes,it'll be yes,parrot,book,1 -yes,ya,original,book,1 -greeting,wassup,original,greet,4 -greeting,salutations,parrot,greet,4 -goodbye,goodbye later,parrot,bye,2 -greeting,hi what's going on?,parrot,greet,4 -no,negatory,original,cancel,3 -greeting,ahoy,lambada,greet,4 -goodbye,nice to see you,original,bye,2 -calendar_update,add a doctor appointment to friday's calendar,parrot,resched,5 -thank_you,thanks,original,bye,2 -goodbye,farewell!,original,bye,2 -yes,sure thing,original,book,1 -yes,yes please,original,book,1 -cancel_reservation,can i cancel my reservation for dinner tonight please,parrot,cancel,3 -yes,that would be great,original,book,1 -goodbye,sayonara,original,bye,2 -meeting_schedule,can you tell me about my meeting with mary?,lambada,avail,0 -yes,it's true,original,book,1 -thank_you,thanks for coming,parrot,bye,2 -goodbye,i leave now,parrot,bye,2 -yes,"yes, that is what i want",lambada,book,1 -goodbye,adios ai,original,bye,2 -thank_you,thank you,original,bye,2 -yes,i guess,parrot,book,1 -thank_you,gracias,original,bye,2 -greeting,how ife treated you?,parrot,greet,4 -yes,uh-huh,original,book,1 -no,negatory,original,cancel,3 -greeting,how you are,original,greet,4 -greeting,how's that hanging?,parrot,greet,4 -date,tell me the date i have to go next?,parrot,avail,0 -goodbye,thanks for talking,original,bye,2 -schedule_meeting,can you schedule a meeting with scott at 9 am,parrot,book,1 -yes,right,parrot,book,1 -goodbye,bye,original,bye,2 -yes,yay,lambada,book,1 -yes,TRUE,original,book,1 -yes,just right,parrot,book,1 -greeting,good day,original,greet,4 -goodbye,later gater,original,bye,2 -how_busy,can i expect the wait to be long at the cheesecake factory?,lambada,avail,0 -thank_you,i owe you one,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -greeting,what am i feeling now?,parrot,greet,4 -greeting,"hi, ai",original,greet,4 -date,current date,original,avail,0 -goodbye,i'm leaving,parrot,bye,2 -no,that's actually false,parrot,cancel,3 -how_busy,why is this place so busy at lunchtimes?,parrot,avail,0 -how_busy,how busy will the olive garden be at 6 pm,parrot,avail,0 -no,it's no,parrot,cancel,3 -yes,i can tell you,parrot,book,1 -thank_you,i appeciate it,parrot,bye,2 -how_busy,how busy is ruby roo at 5 pm,lambada,avail,0 -goodbye,cya later,original,bye,2 -yes,it's true,original,book,1 -greeting,"hello, friend",original,greet,4 -how_busy,tell me the typical wait time at ihuachina?,parrot,avail,0 -date,please date,parrot,avail,0 -meeting_schedule,when is homer's meeting?,parrot,avail,0 -greeting,what's up,original,greet,4 -date,date tomorrow,parrot,avail,0 -goodbye,adios!,original,bye,2 -thank_you,okay thank you,parrot,bye,2 -no,it's a no,original,cancel,3 -goodbye,adios,original,bye,2 -no,negatory?,parrot,cancel,3 -goodbye,bye,original,bye,2 -date,which date is it?,parrot,avail,0 -calendar,is an event in my calendar?,parrot,avail,0 -meeting_schedule,when is my meeting scheduled?,parrot,avail,0 -how_busy,is the cheesecake factory open at 7 o'clock?,parrot,avail,0 -yes,perfect,parrot,book,1 -greeting,heller,original,greet,4 -no,say negative,parrot,cancel,3 -calendar_update,please take care of my doctor appointment on march 30th,parrot,resched,5 -goodbye,later gater,original,bye,2 -reminder_update,remember to remember later,parrot,resched,5 -goodbye,bye bye,lambada,bye,2 -yes,definitely,original,book,1 -no,FALSE,original,cancel,3 -thank_you,awesome thanks,parrot,bye,2 -greeting,hey how's life,original,greet,4 -no,certainly false,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -thank_you,okay thank you,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -greeting,heller,original,greet,4 -yes,yes that's correct,original,book,1 -how_busy,which place in town is the most active right now?,parrot,avail,0 -how_busy,tell me how busy denny's at 6 o'clock in the morning?,parrot,avail,0 -goodbye,later goodbye,parrot,bye,2 -no,"yea, that is wrong",lambada,cancel,3 -yes,positive,parrot,book,1 -yes,good,parrot,book,1 -no,i would have to say the answer is no,parrot,cancel,3 -no,"no, that is false",lambada,cancel,3 -meeting_schedule,do i have to meet david or not?,parrot,avail,0 -thank_you,appreciate it,original,bye,2 -greeting,hiya,original,greet,4 -yes,i'd say yes,parrot,book,1 -goodbye,goodbye now,parrot,bye,2 -greeting,hello there,original,greet,4 -yes,i'll say yes,parrot,book,1 -cancel_reservation,i won't need the reservation,parrot,cancel,3 -thank_you,"nice, excellent!",original,bye,2 -goodbye,good to see you again,parrot,bye,2 -thank_you,thank you for that,lambada,bye,2 -meeting_schedule,wanna meet with roger,parrot,avail,0 -yes,uh huh,original,book,1 -yes,that's a fact,lambada,book,1 -meeting_schedule,have any meetings planned with ashley?,parrot,avail,0 -yes,sure,original,book,1 -no,not right so,parrot,cancel,3 -no,negative definitely,parrot,cancel,3 -reminder_update,remind me to exercise,original,resched,5 -how_busy,how long will the wait be in an italian restaurant,parrot,avail,0 -no,it's a lie,parrot,cancel,3 -calendar_update,delete all calendar entries on march 4th,lambada,resched,5 -yes,certainly,parrot,book,1 -thank_you,appreciate the help,original,bye,2 -no,it's so negative,parrot,cancel,3 -greeting,greetings to you,original,greet,4 -calendar,did i have an anniversary for my wife and me?,parrot,avail,0 -no,this is my reply,parrot,cancel,3 -goodbye,and tell me bye?,parrot,bye,2 -yes,not false,parrot,book,1 -goodbye,was a pleasure talking with you,parrot,bye,2 -no,i disagree,parrot,cancel,3 -yes,so it's true,parrot,book,1 -yes,you are yes,lambada,book,1 -greeting,whats new?,parrot,greet,4 -yes,all right,parrot,book,1 -yes,good yes,lambada,book,1 -thank_you,thanks!,original,bye,2 -reminder_update,remind me to clean up the living room,parrot,resched,5 -date,is the date?,parrot,avail,0 -greeting,how are things?,parrot,greet,4 -no,ill pass,original,cancel,3 -goodbye,a good talk,parrot,bye,2 -goodbye,tootles,original,bye,2 -date,what day it today?,original,avail,0 -no,naw,original,cancel,3 -no,it's negative,parrot,cancel,3 -yes,so it's true,parrot,book,1 -thank_you,your answer was fun,parrot,bye,2 -no,it seems wrong,parrot,cancel,3 -greeting,how are you,original,greet,4 -yes,all right,original,book,1 -goodbye,peace,original,bye,2 -meeting_schedule,what kind of meetings do i have today?,original,avail,0 -yes,yes it's true,lambada,book,1 -no,negative,original,cancel,3 -reminder_update,what about a reminder?,parrot,resched,5 -no,no,lambada,cancel,3 -goodbye,as regards,parrot,bye,2 -goodbye,fairwell,original,bye,2 -date,what's today?,parrot,avail,0 -yes,positive,parrot,book,1 -greeting,salutation,parrot,greet,4 -reminder_update,can you remind me?,parrot,resched,5 -goodbye,the talk was nice,lambada,bye,2 -no,no?,parrot,cancel,3 -yes,sure thing,original,book,1 -yes,accepted,original,book,1 -no,that would be a false entry,lambada,cancel,3 -date,what year is it?,original,avail,0 -goodbye,adios!,original,bye,2 -yes,yeap,original,book,1 -how_busy,please let me know if there's a wait in the restaurant right now,parrot,avail,0 -greeting,hey,original,greet,4 -no,this is my reply,parrot,cancel,3 -greeting,hiya,original,greet,4 -date,current date,original,avail,0 -thank_you,good job,lambada,bye,2 -calendar,do you have appointments on my calendar for march 22?,parrot,avail,0 -yes,absolutely,original,book,1 -greeting,hey there,original,greet,4 -thank_you,"thanks, that's helpful",original,bye,2 -thank_you,appreciated,original,bye,2 -thank_you,i'm thankful for you,parrot,bye,2 -yes,it makes sense,parrot,book,1 -schedule_meeting,are meeting rooms free between 8-3?,original,book,1 -reminder_update,remind me to put away clothes,parrot,resched,5 -reminder_update,come on please,parrot,resched,5 -calendar,read my calendar for march 7th,original,avail,0 -meeting_schedule,when is homer's meeting?,parrot,avail,0 -yes,great,original,book,1 -yes,oh-huh,parrot,book,1 -yes,ya,original,book,1 -meeting_schedule,meetings today,original,avail,0 -how_busy,how busy is the olive garden around 7pm,parrot,avail,0 -date,what's the date today?,parrot,avail,0 -no,no!,original,cancel,3 -greeting,how's life,original,greet,4 -greeting,yo,original,greet,4 -goodbye,later good luck,parrot,bye,2 -greeting,what is new?,parrot,greet,4 -thank_you,nice,parrot,bye,2 -no,definitely not,original,cancel,3 -goodbye,bye-bye,original,bye,2 -yes,oh-huh,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -date,i need information on today's date,original,avail,0 -goodbye,"great chat, talk later",lambada,bye,2 -yes,very true,original,book,1 -goodbye,farewell!,original,bye,2 -yes,it is a yes from me,parrot,book,1 -date,today?,parrot,avail,0 -yes,is true,parrot,book,1 -yes,correct,original,book,1 -no,negatory?,parrot,cancel,3 -how_busy,how busy will the delicious browns be at 4pm?,parrot,avail,0 -calendar_update,remove that event from my calendar,lambada,resched,5 -no,no?,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -thank_you,you're welcome,parrot,bye,2 -meeting_schedule,when is my meeting with jim planned?,parrot,avail,0 -thank_you,youre a doll,original,bye,2 -yes,is true,parrot,book,1 -goodbye,bye!,original,bye,2 -no,no,lambada,cancel,3 -goodbye,good-bye,parrot,bye,2 -meeting_schedule,meetings today,original,avail,0 -meeting_schedule,what's my schedule today?,parrot,avail,0 -yes,positive,parrot,book,1 -yes,agreed,original,book,1 -goodbye,later then,lambada,bye,2 -goodbye,i enjoyed speaking with you,original,bye,2 -thank_you,my gratitude,parrot,bye,2 -cancel_reservation,can i cancel my dinner reservation please?,parrot,cancel,3 -goodbye,see you in a while,original,bye,2 -goodbye,buhbye,original,bye,2 -goodbye,see ya,original,bye,2 -greeting,hey there,original,greet,4 -reminder_update,please remember me again,parrot,resched,5 -yes,ya,original,book,1 -meeting_schedule,let me know how many meetings i'm scheduled for today?,parrot,avail,0 -goodbye,chat with me later,lambada,bye,2 -yes,"true, most definitely",original,book,1 -goodbye,you're done,parrot,bye,2 -yes,"yes, please",original,book,1 -greeting,tell me how are you today?,parrot,greet,4 -no,nay,original,cancel,3 -yes,that checks out,original,book,1 -greeting,good day,original,greet,4 -yes,TRUE,original,book,1 -goodbye,later gater,original,bye,2 -no,naw,parrot,cancel,3 -no,FALSE,original,cancel,3 -goodbye,afterward,parrot,bye,2 -greeting,heyo,original,greet,4 -no,no?,parrot,cancel,3 -no,FALSE,original,cancel,3 -thank_you,thanks so much ai,original,bye,2 -goodbye,bye-bye,original,bye,2 -date,would you let me know what date it will be in 3 days?,parrot,avail,0 -calendar,bowling on my calendar?,parrot,avail,0 -goodbye,adios,original,bye,2 -greeting,hey,original,greet,4 -no,what isn't true?,parrot,cancel,3 -goodbye,until next time!,original,bye,2 -yes,positive,parrot,book,1 -reminder_update,i need a reminder to remember to do something,parrot,resched,5 -thank_you,you did it,parrot,bye,2 -reminder_update,give me a reminder for 5pm to clean up,parrot,resched,5 -greeting,nice day,lambada,greet,4 -greeting,well hello,original,greet,4 -thank_you,i appreciate it,original,bye,2 -yes,10-Apr,original,book,1 -greeting,salutations!,original,greet,4 -yes,all right,original,book,1 -yes,exactly right,original,book,1 -goodbye,great conversation,parrot,bye,2 -greeting,heller,original,greet,4 -date,what year?,parrot,avail,0 -how_busy,when will i have to wait until i make a reservation at the olive garden?,parrot,avail,0 -no,not that,original,cancel,3 -yes,the statement is true,original,book,1 -yes,that appears true,original,book,1 -goodbye,bye,original,bye,2 -goodbye,good luck,lambada,bye,2 -greeting,what's happened?,parrot,greet,4 -how_busy,how long is the wait at the cheesecake factory?,parrot,avail,0 -date,tell me what date it's going to be?,parrot,avail,0 -yes,ya,original,book,1 -schedule_meeting,i need a meeting,parrot,book,1 -yes,that's correct,original,book,1 -greeting,hola!,original,greet,4 -reminder_update,please remember me,parrot,resched,5 -thank_you,thanks!,original,bye,2 -thank_you,"thanks, that's helpful",original,bye,2 -no,nothing,parrot,cancel,3 -greeting,whats new?,parrot,greet,4 -no,that's false,original,cancel,3 -schedule_meeting,can see you see if there are meeting rooms available between 9:00 am and 11:00 am?,original,book,1 -greeting,whats new,lambada,greet,4 -no,negative certainly,parrot,cancel,3 -yes,accepted,original,book,1 -yes,i guess,parrot,book,1 -yes,uh huh,original,book,1 -no,please disagree,lambada,cancel,3 -thank_you,you were a big help,parrot,bye,2 -goodbye,fairwell,original,bye,2 -thank_you,appreciated,original,bye,2 -yes,it's true yes,parrot,book,1 -no,no good,original,cancel,3 -goodbye,good night,original,bye,2 -cancel_reservation,i need to cancel my reservation for dinner tonight,parrot,cancel,3 -yes,sure,original,book,1 -how_busy,tell me how busy red robin is at 5 pm,parrot,avail,0 -no,not a good sign,parrot,cancel,3 -goodbye,"enjoy my day, goodbye",original,bye,2 -how_busy,how busy is that restaurant right now,lambada,avail,0 -goodbye,ai goodbye,original,bye,2 -no,not correct,parrot,cancel,3 -yes,that's correct,original,book,1 -thank_you,gracias,original,bye,2 -cancel_reservation,i'll have to cancel my reservation for tonight,original,cancel,3 -how_busy,how long will it take to get a table at chili's,lambada,avail,0 -yes,yes,original,book,1 -yes,confirmed,original,book,1 -goodbye,tootles?,parrot,bye,2 -how_busy,is the place busy around dinner time?,parrot,avail,0 -yes,that appears true,original,book,1 -date,what's the day now,parrot,avail,0 -yes,i'll say yes,parrot,book,1 -no,indeed it's false,parrot,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -greeting,hello there,original,greet,4 -meeting_schedule,when are my meetings?,parrot,avail,0 -goodbye,i'll go,parrot,bye,2 -thank_you,good job,lambada,bye,2 -goodbye,i need to catch up,lambada,bye,2 -date,what date?,parrot,avail,0 -no,you are wrong,original,cancel,3 -schedule_meeting,check meeting room availability between 1 and 3 pm,parrot,book,1 -greeting,how's that hanging?,parrot,greet,4 -goodbye,adios,original,bye,2 -greeting,hi how's everything going?,parrot,greet,4 -thank_you,awesome thanks,parrot,bye,2 -date,today?,parrot,avail,0 -how_busy,how busy will the restaurant be in advance?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how long do i have to wait to be seated at the restaurant,lambada,avail,0 -no,negatory,original,cancel,3 -no,this is my reply,parrot,cancel,3 -greeting,hiya!,original,greet,4 -goodbye,goodbye!,original,bye,2 -yes,my answer is yes,parrot,book,1 -greeting,how's otc?,parrot,greet,4 -thank_you,thanks for the assist,original,bye,2 -no,thanks no,parrot,cancel,3 -reminder_update,set a reminder,original,resched,5 -greeting,hey what's up?,parrot,greet,4 -date,what is it today?,lambada,avail,0 -yes,TRUE,original,book,1 -how_busy,can you list the seats available in this restaurant?,parrot,avail,0 -no,not true,original,cancel,3 -reminder_update,please make a reminder,original,resched,5 -greeting,hey,original,greet,4 -goodbye,bye bye,lambada,bye,2 -no,no it's not right,parrot,cancel,3 -goodbye,"thanks, bye",original,bye,2 -no,ill pass,original,cancel,3 -no,but it's wrong,parrot,cancel,3 -no,no please,parrot,cancel,3 -goodbye,goodbye no problem,parrot,bye,2 -yes,yeap,original,book,1 -goodbye,see ya,lambada,bye,2 -greeting,how's the situation?,parrot,greet,4 -thank_you,much obliged,original,bye,2 -goodbye,peace out,original,bye,2 -goodbye,talk later,original,bye,2 -yes,yeah yeah,lambada,book,1 -how_busy,how long is the wait at cheese cake factory right now,lambada,avail,0 -goodbye,good bye,original,bye,2 -date,what's going on today?,parrot,avail,0 -no,it's no,parrot,cancel,3 -how_busy,how long is the wait time at olive garden,lambada,avail,0 -yes,accepted,original,book,1 -no,not really,original,cancel,3 -yes,TRUE,original,book,1 -reminder_update,i need to be notified to clean the room,original,resched,5 -meeting_schedule,the meetings today,parrot,avail,0 -no,nope,original,cancel,3 -thank_you,and i thank you,parrot,bye,2 -cancel_reservation,i won't need the reservation,parrot,cancel,3 -thank_you,awesome thank you,parrot,bye,2 -greeting,well hello,original,greet,4 -thank_you,i sincerely thank you,parrot,bye,2 -yes,oh-huh,parrot,book,1 -goodbye,nice chat today,lambada,bye,2 -how_busy,wait how long for a table in the olive garden,parrot,avail,0 -goodbye,goodbye my friend,parrot,bye,2 -yes,i agree,original,book,1 -goodbye,good bye,original,bye,2 -reminder_update,need to remind myself to do it,parrot,resched,5 -calendar_update,remove the last event on my calendar,parrot,resched,5 -yes,that's correct,original,book,1 -no,negating,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,im leaving,parrot,bye,2 -yes,that seems true,original,book,1 -no,not right,parrot,cancel,3 -no,not true,original,cancel,3 -no,it's so negative,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -calendar,display my calendar,lambada,avail,0 -no,no way,original,cancel,3 -how_busy,if you want a table at chili's how long will it take?,parrot,avail,0 -cancel_reservation,if you can cancel my reservation for 5 at red robin please,parrot,cancel,3 -no,certainly not,original,cancel,3 -calendar_update,please clean my calendar,parrot,resched,5 -no,"please, no",original,cancel,3 -goodbye,i enjoyed our goodbye,parrot,bye,2 -yes,yeah,original,book,1 -yes,yeah,original,book,1 -how_busy,does coffee work at 7?,parrot,avail,0 -date,today?,parrot,avail,0 -greeting,how's everything?,parrot,greet,4 -greeting,ahoy,lambada,greet,4 -thank_you,thanks!,original,bye,2 -date,let me know what's the date of tomorrow,parrot,avail,0 -goodbye,take it easy!,original,bye,2 -yes,yep,original,book,1 -yes,good,parrot,book,1 -yes,it'll be yes,parrot,book,1 -thank_you,you helped,parrot,bye,2 -date,i would like to know what the date is,parrot,avail,0 -no,nada,original,cancel,3 -how_busy,what's the wait for olive garden at 7 tonight,lambada,avail,0 -goodbye,will leave now,parrot,bye,2 -greeting,yo,original,greet,4 -calendar_update,erase all events on my calendar on friday,lambada,resched,5 -date,give me a date tomorrow please?,parrot,avail,0 -how_busy,would you say imo's busy at 5pm,parrot,avail,0 -no,FALSE,lambada,cancel,3 -goodbye,farewell,original,bye,2 -yes,is true,parrot,book,1 -greeting,welcome,parrot,greet,4 -goodbye,"later, good luck",lambada,bye,2 -yes,"yes, that's true",lambada,book,1 -no,no,lambada,cancel,3 -how_busy,can you tell me how busy the cheesecake factory is at 6pm?,lambada,avail,0 -no,that's absolutely false,parrot,cancel,3 -yes,you're right,original,book,1 -no,nope,original,cancel,3 -calendar,can you tell me if i have appointments on my calendar for march 20th?,parrot,avail,0 -greeting,"hello, ai",original,greet,4 -yes,a true statement,parrot,book,1 -how_busy,how long is the sitting time at olive garden?,parrot,avail,0 -no,negatory,original,cancel,3 -how_busy,how busy is the red lobster at 5?,parrot,avail,0 -calendar_update,so take off my dinner plans for tomorrow from my calendar,parrot,resched,5 -greeting,you good?,parrot,greet,4 -thank_you,thank you for everything,parrot,bye,2 -how_busy,how long will i have to wait to be seated at ookla pizza,lambada,avail,0 -meeting_schedule,what is my meeting today?,lambada,avail,0 -reminder_update,set a reminder for 2 pm to clean the kitchen,parrot,resched,5 -calendar,did you add an item to my calendar today?,parrot,avail,0 -no,it's completely false,parrot,cancel,3 -date,what is a month and a day?,parrot,avail,0 -goodbye,the talk was nice,lambada,bye,2 -goodbye,good-bye,parrot,bye,2 -thank_you,thank you?,parrot,bye,2 -date,please date,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -greeting,ahoy,lambada,greet,4 -how_busy,what's the wait?,parrot,avail,0 -schedule_meeting,are there meeting rooms available between 10 and 12?,parrot,book,1 -thank_you,gracias,original,bye,2 -how_busy,how long will i be waiting if i go to outback steakhouse,lambada,avail,0 -yes,facts,original,book,1 -schedule_meeting,i need to have a meeting to start today,lambada,book,1 -no,it's a no,original,cancel,3 -thank_you,thanks so much!,original,bye,2 -goodbye,farewell!,original,bye,2 -schedule_meeting,can you help me plan a meeting,parrot,book,1 -greeting,yo how yo feelin,lambada,greet,4 -greeting,"hello, ai",original,greet,4 -no,negative,original,cancel,3 -greeting,aho,parrot,greet,4 -goodbye,goodbye!,original,bye,2 -no,certainly not true,parrot,cancel,3 -greeting,hey yai,lambada,greet,4 -greeting,is everything going okay?,original,greet,4 -goodbye,my friend,parrot,bye,2 -goodbye,adios!,original,bye,2 -thank_you,"great, thanks!",original,bye,2 -thank_you,awesome thank you,parrot,bye,2 -yes,you're right,original,book,1 -yes,"yes, that's confirmed",original,book,1 -yes,im sure you're true,parrot,book,1 -how_busy,how crowded is this restaurant?,parrot,avail,0 -no,not right,parrot,cancel,3 -how_busy,is mr joes pizza a regular dinner time?,lambada,avail,0 -no,absolutely not,original,cancel,3 -greeting,ahoy,lambada,greet,4 -date,today?,parrot,avail,0 -how_busy,how busy is ihop at 5,lambada,avail,0 -thank_you,appreciated,original,bye,2 -goodbye,goodbye ai,parrot,bye,2 -no,erroneous,parrot,cancel,3 -yes,accepted,original,book,1 -yes,yay,lambada,book,1 -calendar_update,go ahead and remove the scheduled event from the calendar,parrot,resched,5 -meeting_schedule,check the calendar for today's meetings,parrot,avail,0 -calendar,what's on the march 2 calendar?,parrot,avail,0 -goodbye,ai goodbye,original,bye,2 -how_busy,which place in town is the most busy right now,parrot,avail,0 -cancel_reservation,please unreserve that table,original,cancel,3 -greeting,whats new,lambada,greet,4 -calendar,is anything scheduled for january 1st?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -calendar_update,can you add this event to my calendar for friday?,parrot,resched,5 -greeting,salutation,parrot,greet,4 -thank_you,your assistance is appreciated,parrot,bye,2 -yes,confirmed,original,book,1 -no,"please, no",original,cancel,3 -date,what is the date?,original,avail,0 -goodbye,good bye then,original,bye,2 -yes,yup,original,book,1 -how_busy,is there a long wait at the cheese cake factory?,parrot,avail,0 -goodbye,good night,original,bye,2 -no,nope,original,cancel,3 -schedule_meeting,can you set up a meeting with tom at 3 o'clock?,parrot,book,1 -how_busy,how long is the wait at olive garden today?,parrot,avail,0 -calendar,tell me what's on my calendar for april 1,parrot,avail,0 -meeting_schedule,wanna meet with roger,parrot,avail,0 -meeting_schedule,how many meetings will i have between noon and one?,parrot,avail,0 -greeting,how is ayi doing?,parrot,greet,4 -greeting,hey yai,lambada,greet,4 -greeting,how's everything,original,greet,4 -meeting_schedule,is it possible i have a meeting with kim today?,original,avail,0 -greeting,how's life going?,parrot,greet,4 -yes,yup,original,book,1 -goodbye,talk to me soon,parrot,bye,2 -goodbye,say goodbye,parrot,bye,2 -yes,i agree,original,book,1 -yes,yeah yeah,lambada,book,1 -yes,affirmative,original,book,1 -yes,affirmitive,original,book,1 -yes,facts,original,book,1 -thank_you,your answer impressed me,parrot,bye,2 -reminder_update,maybe a reminder?,parrot,resched,5 -no,"no, that is not right at all",original,cancel,3 -thank_you,"great, thanks!",original,bye,2 -how_busy,is the wait at this restaurant long?,lambada,avail,0 -cancel_reservation,tell the restaurant i can't do this?,parrot,cancel,3 -goodbye,great talk,lambada,bye,2 -thank_you,you're welcome,parrot,bye,2 -date,what date?,parrot,avail,0 -greeting,hola,original,greet,4 -yes,my response is correct,parrot,book,1 -goodbye,goodbyes soon,parrot,bye,2 -goodbye,very nice conversation,parrot,bye,2 -no,that's very negative,parrot,cancel,3 -how_busy,list the most popular time at the cheesecake factory?,parrot,avail,0 -yes,"yes, i want to know this",lambada,book,1 -calendar,did i set an appointment for the doctor on the calendar?,parrot,avail,0 -greeting,wake up ai,parrot,greet,4 -goodbye,i'm leaving,parrot,bye,2 -reminder_update,new reminder please,lambada,resched,5 -yes,so it's true,parrot,book,1 -reminder_update,remind me,original,resched,5 -yes,facts,original,book,1 -greeting,what's new?,parrot,greet,4 -goodbye,goodbye now,parrot,bye,2 -thank_you,appreciate it,original,bye,2 -yes,that seems true,original,book,1 -goodbye,fairwell,original,bye,2 -how_busy,how long will i wait for the table at the red lobster,parrot,avail,0 -no,that is overwhelmingly wrong,lambada,cancel,3 -meeting_schedule,list meetings on the calendar for today,parrot,avail,0 -greeting,welcome,parrot,greet,4 -goodbye,the talk was nice,lambada,bye,2 -calendar,have i added an item to my calendar for my next appointment?,lambada,avail,0 -greeting,wassup,original,greet,4 -schedule_meeting,or register for the meeting on wednesday,parrot,book,1 -date,the date is tomorrow,parrot,avail,0 -thank_you,so i appreciate it,parrot,bye,2 -goodbye,tootles,original,bye,2 -yes,ya,original,book,1 -goodbye,goodbye soon,lambada,bye,2 -greeting,hello bs,parrot,greet,4 -no,but it's wrong,parrot,cancel,3 -calendar_update,can you get rid of my trip to the zoo from my calendar on march 1st?,original,resched,5 -greeting,hey fellow,parrot,greet,4 -how_busy,are red lobsters really busy around 11pm?,parrot,avail,0 -yes,yes,original,book,1 -greeting,hello there,original,greet,4 -goodbye,take it easy,lambada,bye,2 -schedule_meeting,is there a meeting room available at 8 am?,parrot,book,1 -yes,okay,original,book,1 -thank_you,appreciated,original,bye,2 -date,what will be the date in 12 days?,parrot,avail,0 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -thank_you,you've been great,parrot,bye,2 -greeting,how you're treated?,parrot,greet,4 -yes,"yes, that is true",original,book,1 -greeting,how're you today?,parrot,greet,4 -no,is my false assertion?,parrot,cancel,3 -date,is it six days?,parrot,avail,0 -schedule_meeting,can you have a meeting for the blue room on friday?,parrot,book,1 -yes,agreed,original,book,1 -goodbye,the talk was nice,lambada,bye,2 -no,that's a false,lambada,cancel,3 -how_busy,is the restaurant crowded between 7 and 8?,parrot,avail,0 -greeting,how's the ai?,parrot,greet,4 -calendar,let me know what's on my calendar for march 26th,parrot,avail,0 -goodbye,later!,original,bye,2 -no,"please, no",original,cancel,3 -no,i'm sorry it isn't,lambada,cancel,3 -thank_you,you answered,parrot,bye,2 -yes,good,parrot,book,1 -how_busy,how busy is the cheesecake factory around 4:30,lambada,avail,0 -no,certainly false,parrot,cancel,3 -no,not happening,original,cancel,3 -goodbye,for now,parrot,bye,2 -thank_you,you're welcome,parrot,bye,2 -goodbye,bye!,original,bye,2 -greeting,what is new?,parrot,greet,4 -greeting,well hello,original,greet,4 -yes,approved,original,book,1 -goodbye,"great chat, talk later",lambada,bye,2 -goodbye,later!,original,bye,2 -yes,oh-huh,parrot,book,1 -how_busy,i want to know how busy the teacher is at 11,parrot,avail,0 -goodbye,thanks for chatting,lambada,bye,2 -yes,"yes, please",original,book,1 -greeting,yo,original,greet,4 -thank_you,thanks for coming by,lambada,bye,2 -yes,"correct, that's true",original,book,1 -no,that's false,original,cancel,3 -thank_you,okay thank you,parrot,bye,2 -no,no!,original,cancel,3 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -yes,agreed,original,book,1 -greeting,you good?,parrot,greet,4 -greeting,how's this going?,parrot,greet,4 -yes,it is true yes,parrot,book,1 -goodbye,my way,parrot,bye,2 -greeting,hi,original,greet,4 -greeting,how's everything?,parrot,greet,4 -greeting,aloha,original,greet,4 -greeting,hi what's going on,parrot,greet,4 -greeting,how goes it,original,greet,4 -thank_you,i'm excited for my help,parrot,bye,2 -no,that's untrue,parrot,cancel,3 -yes,a fact,parrot,book,1 -greeting,hows life for you,lambada,greet,4 -no,would be no?,parrot,cancel,3 -no,the negator,parrot,cancel,3 -yes,ok,original,book,1 -goodbye,see ya,lambada,bye,2 -calendar,what's on january 1st?,parrot,avail,0 -goodbye,thank you for talking,parrot,bye,2 -thank_you,really great!,original,bye,2 -yes,perfect,parrot,book,1 -calendar_update,can i make an appointment for my anniversary on may 4?,parrot,resched,5 -goodbye,tootles,original,bye,2 -yes,i think you're right,parrot,book,1 -yes,let's do it,parrot,book,1 -yes,that will be true,original,book,1 -thank_you,thanks,original,bye,2 -greeting,what's up,original,greet,4 -no,"please, no",original,cancel,3 -no,i'd say no,original,cancel,3 -yes,oh yes,original,book,1 -no,nay,original,cancel,3 -yes,i'll say yes,parrot,book,1 -yes,"yes, that's confirmed",original,book,1 -greeting,hello ai,parrot,greet,4 -greeting,how's my life?,parrot,greet,4 -date,what day is today?,lambada,avail,0 -reminder_update,save it for later,parrot,resched,5 -thank_you,okay thanks,original,bye,2 -yes,yep,original,book,1 -yes,absolutely,original,book,1 -goodbye,peace out,original,bye,2 -meeting_schedule,give me the date and time of my meeting with dr jack,lambada,avail,0 -no,nothing,parrot,cancel,3 -calendar_update,erase jeff from my calendar,parrot,resched,5 -thank_you,i owe you,parrot,bye,2 -thank_you,thanks!,original,bye,2 -no,i do not agree,lambada,cancel,3 -greeting,whats new,lambada,greet,4 -yes,i'd say yes,parrot,book,1 -reminder_update,set a reminder,original,resched,5 -no,that seems wrong,lambada,cancel,3 -thank_you,appreciate it,original,bye,2 -no,the answer isn't correct,parrot,cancel,3 -goodbye,good bye my friend,original,bye,2 -no,FALSE,lambada,cancel,3 -yes,approved,original,book,1 -greeting,welcome,parrot,greet,4 -yes,i agree,original,book,1 -schedule_meeting,schedule a meeting for me,original,book,1 -yes,certainly,parrot,book,1 -no,negating,parrot,cancel,3 -no,no it's not true,parrot,cancel,3 -yes,indeed,original,book,1 -date,date tomorrow,parrot,avail,0 -goodbye,later gater,original,bye,2 -no,i meant no,original,cancel,3 -meeting_schedule,what meetings are on my schedule?,lambada,avail,0 -calendar,is anything on my calendar for june 22nd?,original,avail,0 -yes,yeap,original,book,1 -goodbye,"syonara, ai device!",original,bye,2 -no,negating,parrot,cancel,3 -reminder_update,keep an eye out for cat litter,parrot,resched,5 -yes,correct,original,book,1 -reminder_update,remind me something,parrot,resched,5 -how_busy,is the olive garden busy during lunch?,parrot,avail,0 -date,what's today,original,avail,0 -thank_you,appreciate it,original,bye,2 -thank_you,glad you helped me,parrot,bye,2 -greeting,how's my life?,parrot,greet,4 -thank_you,gracias,original,bye,2 -calendar_update,eliminate all calendar entries on march 3,parrot,resched,5 -thank_you,i appreciate that answer,original,bye,2 -yes,that would be great,original,book,1 -schedule_meeting,if you want to attend the meeting on wednesday,parrot,book,1 -goodbye,i really enjoyed talking to you,lambada,bye,2 -greeting,hello and how are things?,parrot,greet,4 -date,which date is it,lambada,avail,0 -date,what is the date today?,original,avail,0 -yes,sure,original,book,1 -thank_you,good job with good effort,parrot,bye,2 -how_busy,how long will it take to get seated in the macaroni grill?,parrot,avail,0 -yes,correct,original,book,1 -greeting,hey hey!,original,greet,4 -greeting,hiya!,original,greet,4 -goodbye,goodbyes,parrot,bye,2 -no,negation,parrot,cancel,3 -how_busy,how long will i have to wait for ihop?,parrot,avail,0 -greeting,bonjour,original,greet,4 -greeting,hey yai,lambada,greet,4 -greeting,i want to know how things have been going,parrot,greet,4 -how_busy,list the minimum wait times at the outback steakhouse?,parrot,avail,0 -schedule_meeting,the meeting should be arranged,parrot,book,1 -schedule_meeting,can you tell me the best way to make a meeting?,parrot,book,1 -thank_you,nice,parrot,bye,2 -no,no,lambada,cancel,3 -thank_you,thanks very much,parrot,bye,2 -yes,confirmed,original,book,1 -thank_you,so grateful,parrot,bye,2 -goodbye,it was really nice to talk to you,parrot,bye,2 -greeting,"hey, what's new",original,greet,4 -reminder_update,make a reminder,parrot,resched,5 -yes,i guess,parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -thank_you,merci beaucoup,original,bye,2 -greeting,hola,original,greet,4 -goodbye,later,original,bye,2 -thank_you,gracias,original,bye,2 -yes,that's a yes,original,book,1 -calendar,can you check my calendar for an item titled checkbook,parrot,avail,0 -date,current date,original,avail,0 -no,no it's not,parrot,cancel,3 -no,that is false,original,cancel,3 -greeting,good morning,parrot,greet,4 -thank_you,awesome thanks,parrot,bye,2 -greeting,how's my family going?,parrot,greet,4 -thank_you,nice,parrot,bye,2 -thank_you,you've answered my questions well,lambada,bye,2 -how_busy,how long will i have to wait before being seated at this restaurant,lambada,avail,0 -goodbye,this conversation was nice,parrot,bye,2 -no,invalid,original,cancel,3 -goodbye,greetings,parrot,bye,2 -date,a year?,parrot,avail,0 -no,that's a no,lambada,cancel,3 -no,"no, that is false",lambada,cancel,3 -calendar,i need my calendar,parrot,avail,0 -yes,accept,parrot,book,1 -calendar_update,please cancel the party on 13 may,parrot,resched,5 -thank_you,i'm very grateful,parrot,bye,2 -yes,absolutely correct,original,book,1 -greeting,"hello, ai",original,greet,4 -no,"no, that is invalid",original,cancel,3 -no,certainly not true,parrot,cancel,3 -no,nothing good,parrot,cancel,3 -no,invalid,original,cancel,3 -goodbye,"i enjoyed talking with you, goodbye",lambada,bye,2 -reminder_update,remind me later,original,resched,5 -goodbye,for now,parrot,bye,2 -no,negative sure,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -meeting_schedule,do we meet today?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,peace,original,bye,2 -no,so that's no,parrot,cancel,3 -no,yes the answer is false,parrot,cancel,3 -no,no no no,parrot,cancel,3 -greeting,bonjour,original,greet,4 -thank_you,you helped,parrot,bye,2 -thank_you,i'm thankful,original,bye,2 -no,false sure,parrot,cancel,3 -thank_you,"great, thanks!",original,bye,2 -goodbye,buhbye,original,bye,2 -yes,i'm voting for you,parrot,book,1 -schedule_meeting,can you schedule the meeting?,parrot,book,1 -yes,ok,original,book,1 -thank_you,thank you!,original,bye,2 -date,let me know the date for tomorrow,parrot,avail,0 -no,hell nah,original,cancel,3 -yes,perfect,parrot,book,1 -date,what's the day today,original,avail,0 -yes,yay,lambada,book,1 -no,no?,parrot,cancel,3 -date,where is tomorrow's date?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -calendar,pull up my calendar and tell me what i have scheduled for march 30,original,avail,0 -no,FALSE,original,cancel,3 -greeting,aloha,original,greet,4 -yes,just right,parrot,book,1 -no,nothing,parrot,cancel,3 -date,current day,parrot,avail,0 -greeting,hey,original,greet,4 -no,naw,original,cancel,3 -goodbye,say goodbye,parrot,bye,2 -yes,indeed,original,book,1 -greeting,bonjour,original,greet,4 -greeting,hi what's up,original,greet,4 -thank_you,thanks i appreciate it,parrot,bye,2 -yes,TRUE,original,book,1 -goodbye,adios,original,bye,2 -yes,certainly true,parrot,book,1 -goodbye,fairwell,original,bye,2 -thank_you,i'm excited about my help,parrot,bye,2 -date,in seven days?,parrot,avail,0 -thank_you,appreciate it,original,bye,2 -goodbye,this conversation was wonderful,parrot,bye,2 -thank_you,that's what you did,parrot,bye,2 -goodbye,just relax,parrot,bye,2 -how_busy,how long is the wait at the imanas?,parrot,avail,0 -greeting,bonjour,original,greet,4 -schedule_meeting,please schedule a meeting?,parrot,book,1 -no,thanks no,parrot,cancel,3 -thank_you,i'm thankful,original,bye,2 -thank_you,my thanks,parrot,bye,2 -no,but no way?,parrot,cancel,3 -thank_you,you've been great,parrot,bye,2 -yes,ya,original,book,1 -goodbye,it's over,parrot,bye,2 -greeting,how's ayi doing?,parrot,greet,4 -no,it is not that,lambada,cancel,3 -no,negating,parrot,cancel,3 -thank_you,gracias,original,bye,2 -how_busy,how long will i have to wait at cheese cake factory before dinner,lambada,avail,0 -yes,absolutely correct,original,book,1 -no,the negator,parrot,cancel,3 -thank_you,"awesome, thanks",original,bye,2 -no,would be no?,parrot,cancel,3 -date,what year is tomorrow?,parrot,avail,0 -goodbye,on the highway,parrot,bye,2 -yes,confirmed,original,book,1 -no,certainly not,original,cancel,3 -yes,all right,parrot,book,1 -thank_you,appreciated,original,bye,2 -schedule_meeting,show me the availability of meeting rooms between two and three?,parrot,book,1 -goodbye,afterward,parrot,bye,2 -goodbye,go easy,parrot,bye,2 -thank_you,you answered,parrot,bye,2 -no,not happening,original,cancel,3 -goodbye,fairwell?,parrot,bye,2 -goodbye,my friend,parrot,bye,2 -goodbye,talk later,original,bye,2 -reminder_update,add a reminder to have my paycheck deposited,lambada,resched,5 -calendar_update,remove the may 11 event called the baby shower from my calendar,parrot,resched,5 -meeting_schedule,what's my schedule today?,parrot,avail,0 -how_busy,what's going on in cheesecake factory now?,parrot,avail,0 -greeting,good evening,original,greet,4 -goodbye,", goodbye",lambada,bye,2 -no,nay,original,cancel,3 -meeting_schedule,when is my meeting?,parrot,avail,0 -no,nay,original,cancel,3 -goodbye,peace,original,bye,2 -calendar_update,please add a dentist appointment to my calendar for march 1,parrot,resched,5 -thank_you,nice,parrot,bye,2 -goodbye,goodbye bye,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -goodbye,goodbye to you,original,bye,2 -goodbye,goodbye bye,parrot,bye,2 -goodbye,fairwell,original,bye,2 -greeting,aloha,original,greet,4 -how_busy,how much time will it take to get a table at chili's?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -yes,certainly,parrot,book,1 -greeting,good morning,parrot,greet,4 -date,tell me today's date?,original,avail,0 -yes,confirm,original,book,1 -yes,i'd say it's true,parrot,book,1 -greeting,hola!,original,greet,4 -how_busy,wait for a table at red lobster?,parrot,avail,0 -yes,great,original,book,1 -calendar,is there an annual physical?,parrot,avail,0 -greeting,how's the ayi doing?,parrot,greet,4 -schedule_meeting,can you schedule a meeting with james?,parrot,book,1 -goodbye,adios,original,bye,2 -calendar,do i have an event called annual physical listed in my calendar?,lambada,avail,0 -yes,TRUE,original,book,1 -yes,positive,parrot,book,1 -goodbye,goodbye later,parrot,bye,2 -goodbye,peace out!,original,bye,2 -meeting_schedule,see what meetings i have planned,parrot,avail,0 -goodbye,"nice talk, goodbye",lambada,bye,2 -no,please no,parrot,cancel,3 -yes,and you're right,parrot,book,1 -yes,TRUE,lambada,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -reminder_update,please remember me again,parrot,resched,5 -schedule_meeting,how are meetings scheduled?,parrot,book,1 -thank_you,thanks!,original,bye,2 -reminder_update,just a reminder,parrot,resched,5 -goodbye,goodbye,original,bye,2 -schedule_meeting,can you schedule a time?,parrot,book,1 -yes,is a real statement,parrot,book,1 -reminder_update,i'd like a reminder,parrot,resched,5 -goodbye,later goodbye,parrot,bye,2 -reminder_update,please remind me,parrot,resched,5 -greeting,good evening,original,greet,4 -yes,approved,original,book,1 -cancel_reservation,repeal the dinner reservation,original,cancel,3 -date,do you have a monday wednesday friday or a saturday?,parrot,avail,0 -yes,it's positive,parrot,book,1 -goodbye,peace,original,bye,2 -goodbye,ensure you get some rest,parrot,bye,2 -schedule_meeting,please set a meeting with nancy at 4 pm,original,book,1 -yes,yes that's it,original,book,1 -goodbye,goodbyes,parrot,bye,2 -thank_you,thanks!,original,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -reminder_update,what's a reminder,parrot,resched,5 -meeting_schedule,how many meetings are on my schedule,lambada,avail,0 -yes,absolutely,original,book,1 -greeting,hey how are you,lambada,greet,4 -goodbye,tootles?,parrot,bye,2 -yes,perfect,parrot,book,1 -greeting,how's my day been?,parrot,greet,4 -thank_you,"good job, thanks",lambada,bye,2 -yes,yeap,original,book,1 -goodbye,fairwell?,parrot,bye,2 -greeting,"hello, anyone there",original,greet,4 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -goodbye,goodbye to your,lambada,bye,2 -no,negatory?,parrot,cancel,3 -yes,is true,parrot,book,1 -goodbye,lovely conversation,parrot,bye,2 -greeting,how's the ayi doing?,parrot,greet,4 -meeting_schedule,how many meetings are scheduled for today between one and five,parrot,avail,0 -greeting,hey bs,lambada,greet,4 -goodbye,i'm gone,parrot,bye,2 -greeting,what's happening,original,greet,4 -greeting,hola!,original,greet,4 -reminder_update,please remind me to pay the cable bill today,parrot,resched,5 -no,false sure,parrot,cancel,3 -thank_you,why thank you?,original,bye,2 -yes,yay,lambada,book,1 -no,please no,parrot,cancel,3 -date,what day?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -no,negatory?,parrot,cancel,3 -yes,TRUE,original,book,1 -yes,not false,parrot,book,1 -reminder_update,set a reminder to go check the mail,original,resched,5 -yes,yes please,original,book,1 -greeting,hola,original,greet,4 -goodbye,tootles,original,bye,2 -no,that's not true,original,cancel,3 -yes,perfect,parrot,book,1 -goodbye,i'll see you around,lambada,bye,2 -yes,yes please,original,book,1 -goodbye,goodbye later,parrot,bye,2 -yes,facts,original,book,1 -no,nope,original,cancel,3 -no,no,lambada,cancel,3 -yes,approved,original,book,1 -goodbye,my way,parrot,bye,2 -yes,you are definitely correct,lambada,book,1 -no,that's incorrect!,original,cancel,3 -yes,yeap,original,book,1 -greeting,wassup,original,greet,4 -greeting,hey yai,lambada,greet,4 -yes,confirmed,original,book,1 -goodbye,tootles?,parrot,bye,2 -thank_you,thanks for that answer,original,bye,2 -yes,yeah,original,book,1 -goodbye,tootles,original,bye,2 -yes,that is right,original,book,1 -no,not right,parrot,cancel,3 -greeting,how's the situation?,parrot,greet,4 -date,list some words for tomorrow?,parrot,avail,0 -greeting,ahoy hoy,original,greet,4 -date,what's today's date,original,avail,0 -thank_you,thankyou,parrot,bye,2 -date,today?,parrot,avail,0 -date,can you give me the date in four days?,parrot,avail,0 -goodbye,farewell,original,bye,2 -goodbye,buhbye,original,bye,2 -no,that is the wrong answer,original,cancel,3 -yes,is true,parrot,book,1 -yes,certainly,parrot,book,1 -yes,yeah yeah,lambada,book,1 -schedule_meeting,is there a room available between 11 and 5?,parrot,book,1 -goodbye,peace out,original,bye,2 -how_busy,is the restaurant crowded during dinner?,parrot,avail,0 -thank_you,appreciate it,original,bye,2 -how_busy,how long will i wait to get a table in olive garden?,parrot,avail,0 -yes,huh,parrot,book,1 -greeting,aloha,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,hey how's ot,lambada,greet,4 -yes,a true statement,parrot,book,1 -no,negatory?,parrot,cancel,3 -yes,uh-huh,original,book,1 -no,ill pass,original,cancel,3 -meeting_schedule,when do i meet jane?,parrot,avail,0 -date,what will it be in 14 days?,parrot,avail,0 -goodbye,tootles,original,bye,2 -goodbye,goodbye,original,bye,2 -date,what day is it today?,original,avail,0 -how_busy,how long is the wait at mr joes steak house?,parrot,avail,0 -goodbye,until next time,original,bye,2 -thank_you,you're welcome,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,not that one,original,cancel,3 -no,is my falsehood?,parrot,cancel,3 -greeting,ahoy hoy,original,greet,4 -thank_you,thank you!,original,bye,2 -yes,i vote yes,original,book,1 -yes,ya,original,book,1 -greeting,salutations!,original,greet,4 -thank_you,your assistance is appreciated,parrot,bye,2 -goodbye,tootles,original,bye,2 -thank_you,appreciated,original,bye,2 -yes,perfect,parrot,book,1 -no,it is false,original,cancel,3 -no,naw,original,cancel,3 -greeting,bonjour,original,greet,4 -meeting_schedule,meeting today,parrot,avail,0 -goodbye,lovely conversation,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -no,invalid,original,cancel,3 -goodbye,see ya,original,bye,2 -thank_you,good to look at,parrot,bye,2 -calendar,what's on my calendar for march 20?,parrot,avail,0 -no,"no, that's wrong",original,cancel,3 -yes,all right,original,book,1 -no,the negator,parrot,cancel,3 -thank_you,i'm grateful for my answer,parrot,bye,2 -goodbye,i had a nice goodbye,parrot,bye,2 -how_busy,how long are the wait times at cheesecake factory,lambada,avail,0 -goodbye,i loved talking to you goodbye,parrot,bye,2 -yes,is true,parrot,book,1 -no,certainly not,original,cancel,3 -greeting,yo,original,greet,4 -no,absolutely not,original,cancel,3 -greeting,i'd like to know how things are going,parrot,greet,4 -greeting,hola!,original,greet,4 -no,i would say no,lambada,cancel,3 -reminder_update,keep me in mind,parrot,resched,5 -goodbye,goodbye!,original,bye,2 -goodbye,good night,original,bye,2 -cancel_reservation,cancel tonight's dinner reservation,original,cancel,3 -yes,definitely,original,book,1 -goodbye,goodbyes soon,parrot,bye,2 -yes,ya,original,book,1 -greeting,hi there,original,greet,4 -goodbye,as regards,parrot,bye,2 -date,what date is tomorrow?,original,avail,0 -goodbye,goodnight,original,bye,2 -yes,you're right,original,book,1 -greeting,yo,original,greet,4 -greeting,how are you?,parrot,greet,4 -no,don't agree,parrot,cancel,3 -yes,it's true,original,book,1 -date,where's tomorrow's date,parrot,avail,0 -thank_you,you answered,parrot,bye,2 -thank_you,thanks for answering my question,original,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -yes,definitely,original,book,1 -goodbye,goodbye later,parrot,bye,2 -goodbye,tata for now,original,bye,2 -goodbye,no problem goodbye,parrot,bye,2 -no,that's actually false,parrot,cancel,3 -greeting,ahoy there,lambada,greet,4 -thank_you,thank you for taking the time to help,lambada,bye,2 -date,what is tomorrow's date?,original,avail,0 -no,erroneous,parrot,cancel,3 -how_busy,how busy is macaroni and cheese?,parrot,avail,0 -greeting,how's my feeling?,parrot,greet,4 -yes,facts,original,book,1 -greeting,hello there,original,greet,4 -greeting,whats up?,parrot,greet,4 -greeting,ahoy,lambada,greet,4 -yes,that is affirmative,original,book,1 -greeting,whats new?,parrot,greet,4 -date,in three days,parrot,avail,0 -no,nothing good,parrot,cancel,3 -greeting,salutations!,original,greet,4 -goodbye,later,original,bye,2 -no,it's negative,parrot,cancel,3 -no,that's erroneous,parrot,cancel,3 -greeting,aho,parrot,greet,4 -no,negating,parrot,cancel,3 -yes,yep,original,book,1 -meeting_schedule,please list my meetings for today,original,avail,0 -greeting,aho,parrot,greet,4 -goodbye,i enjoy our chat,lambada,bye,2 -goodbye,peace,original,bye,2 -no,no good,original,cancel,3 -greeting,"hey, how's it going",original,greet,4 -greeting,what's up,original,greet,4 -greeting,what's happening,original,greet,4 -goodbye,i like our conversation,parrot,bye,2 -date,what will it be tomorrow?,lambada,avail,0 -no,that can't be true,original,cancel,3 -thank_you,gracias,original,bye,2 -date,what date?,parrot,avail,0 -goodbye,great conversation,parrot,bye,2 -no,not right?,parrot,cancel,3 -greeting,wassup,original,greet,4 -goodbye,buhbye,original,bye,2 -greeting,how's that hanging?,parrot,greet,4 -thank_you,nice,parrot,bye,2 -goodbye,later!,original,bye,2 -date,when will it be in 7 days?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -thank_you,i appeciate it,original,bye,2 -thank_you,the best,parrot,bye,2 -yes,good,parrot,book,1 -goodbye,i'm out,parrot,bye,2 -no,no!,original,cancel,3 -yes,indeed,parrot,book,1 -goodbye,farewell!,original,bye,2 -yes,it's true,original,book,1 -goodbye,regards,original,bye,2 -date,what year?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -date,what's the month and day tomorrow?,parrot,avail,0 -yes,facts,original,book,1 -thank_you,thanks for answering,parrot,bye,2 -no,nay,original,cancel,3 -greeting,what's new?,parrot,greet,4 -schedule_meeting,reserve my meeting room for 5pm on friday,parrot,book,1 -goodbye,on the highway,parrot,bye,2 -yes,i agree,original,book,1 -yes,"yes, please",parrot,book,1 -greeting,hey bs,lambada,greet,4 -yes,yes you are,original,book,1 -calendar_update,schedule family dinner on my calendar on march 8th,parrot,resched,5 -how_busy,how long will the wait be for a table at the restaurant,lambada,avail,0 -goodbye,please talk soon,parrot,bye,2 -reminder_update,please do not forget,parrot,resched,5 -no,no?,parrot,cancel,3 -thank_you,that's what you did,parrot,bye,2 -how_busy,wait how long?,parrot,avail,0 -yes,TRUE,original,book,1 -no,nada,original,cancel,3 -yes,it's true yes,parrot,book,1 -greeting,"yo, hows it going",original,greet,4 -how_busy,how busy is chicken soup at 3pm?,parrot,avail,0 -how_busy,can you tell me how long the wait times are at the cheesecake factory?,parrot,avail,0 -no,definitely not,original,cancel,3 -no,nada,original,cancel,3 -yes,yes,original,book,1 -no,we don't want that,parrot,cancel,3 -yes,absolutely correct,original,book,1 -greeting,hello there,original,greet,4 -how_busy,what's the wait time?,parrot,avail,0 -thank_you,thank you!,original,bye,2 -goodbye,see you later!,original,bye,2 -thank_you,many thank,original,bye,2 -reminder_update,please create a reminder,parrot,resched,5 -goodbye,tootles?,parrot,bye,2 -date,what year is tomorrow?,parrot,avail,0 -no,FALSE,original,cancel,3 -yes,"yes, please",parrot,book,1 -greeting,how's it going,lambada,greet,4 -no,this isn't true,parrot,cancel,3 -yes,absolutely correct,original,book,1 -no,FALSE,original,cancel,3 -yes,it's logical,parrot,book,1 -goodbye,farewell!,original,bye,2 -no,negative sure,parrot,cancel,3 -no,negative,original,cancel,3 -how_busy,waiting at cheeseburgers?,parrot,avail,0 -greeting,what's happening,original,greet,4 -no,invalid,original,cancel,3 -yes,positive,original,book,1 -yes,absolutely!,original,book,1 -no,that's not correct,original,cancel,3 -greeting,hey how are you feeling?,parrot,greet,4 -yes,perfect,parrot,book,1 -thank_you,okay thank you,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -yes,oh-huh,parrot,book,1 -date,is today monday?,original,avail,0 -goodbye,sign off,parrot,bye,2 -cancel_reservation,press cancel reservation on phr. 4 at robinson,lambada,cancel,3 -thank_you,very grateful,parrot,bye,2 -no,nope,original,cancel,3 -yes,ok,original,book,1 -yes,ya,original,book,1 -greeting,hey what's up?,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -how_busy,is the wait at iberia nyc long?,lambada,avail,0 -schedule_meeting,is it possible to book a meeting room for interviews on thursday?,parrot,book,1 -schedule_meeting,please schedule a meeting with deb,parrot,book,1 -no,nope,original,cancel,3 -date,current date,original,avail,0 -how_busy,should the cheesecake factory be busy at 11,lambada,avail,0 -goodbye,goodbye later,parrot,bye,2 -yes,obviously,parrot,book,1 -calendar_update,i need to add my grocery list to the calendar for the next day,parrot,resched,5 -yes,and you're correct,parrot,book,1 -no,no!,original,cancel,3 -greeting,hi ai,original,greet,4 -greeting,hi ai,original,greet,4 -no,thanks no,parrot,cancel,3 -how_busy,when is rancho crowded?,parrot,avail,0 -no,it's false,parrot,cancel,3 -greeting,whats up,original,greet,4 -thank_you,appreciated,original,bye,2 -yes,uh-huh,original,book,1 -greeting,yo how is it going,lambada,greet,4 -yes,positive,original,book,1 -greeting,how is my ai doing?,parrot,greet,4 -greeting,hiya!,original,greet,4 -how_busy,how long will it take to be seated in this place?,parrot,avail,0 -cancel_reservation,i don't need a reservation,parrot,cancel,3 -yes,confirm,original,book,1 -how_busy,please tell me what it is like in olive garden now?,parrot,avail,0 -schedule_meeting,the meeting should be scheduled,lambada,book,1 -thank_you,i am thankful,lambada,bye,2 -yes,that's a fact,lambada,book,1 -no,false sure,parrot,cancel,3 -greeting,hey how's my day going?,parrot,greet,4 -thank_you,again thanks,parrot,bye,2 -yes,yay,lambada,book,1 -no,hell nah,original,cancel,3 -greeting,hi,original,greet,4 -goodbye,fairwell,original,bye,2 -thank_you,i'm grateful for my support,parrot,bye,2 -yes,accepted,original,book,1 -thank_you,thank you!,original,bye,2 -no,FALSE,lambada,cancel,3 -goodbye,later,original,bye,2 -no,no,lambada,cancel,3 -yes,oh-huh,parrot,book,1 -how_busy,i need to know about how much time i'd have to wait to get a table at dibruno's,original,avail,0 -calendar_update,clear my calendar for march 22,parrot,resched,5 -no,no way!,original,cancel,3 -calendar,check my calendar,parrot,avail,0 -how_busy,can you tell me how long the wait is at the pizza factory?,lambada,avail,0 -reminder_update,remind me to put the onion in the grill,parrot,resched,5 -yes,that's true,original,book,1 -no,no that's not correct,parrot,cancel,3 -reminder_update,a new reminder,parrot,resched,5 -date,what's my date tomorrow?,parrot,avail,0 -how_busy,is the restaurant crowded at 7?,lambada,avail,0 -how_busy,show me how busy can you expect red lobsters at 10pm?,parrot,avail,0 -no,is my falsehood?,parrot,cancel,3 -greeting,hola,original,greet,4 -greeting,salutations,parrot,greet,4 -greeting,hi,original,greet,4 -no,that is very false,lambada,cancel,3 -goodbye,goodbye,original,bye,2 -thank_you,thanks,original,bye,2 -goodbye,peace,original,bye,2 -date,is tomorrow's date?,parrot,avail,0 -greeting,hey hey!,original,greet,4 -yes,okay,original,book,1 -date,date please,original,avail,0 -thank_you,thanks for the answer,original,bye,2 -yes,is true,parrot,book,1 -cancel_reservation,can i cancel my steakhouse reservation?,parrot,cancel,3 -yes,huh,parrot,book,1 -goodbye,adios!,original,bye,2 -how_busy,please tell me how busy it is in olive garden,parrot,avail,0 -greeting,hello ai,parrot,greet,4 -how_busy,tell me the time to wait for imagus?,parrot,avail,0 -greeting,hello,original,greet,4 -goodbye,bye!,original,bye,2 -meeting_schedule,what time is today's meeting?,original,avail,0 -how_busy,will red robin be busy at 6 pm,lambada,avail,0 -goodbye,later,original,bye,2 -greeting,hello,original,greet,4 -no,false sure,parrot,cancel,3 -cancel_reservation,please cancel the reservation at red robin for 4,lambada,cancel,3 -no,no thank you,original,cancel,3 -calendar,do you have any events on my calendar for thursday?,parrot,avail,0 -greeting,what's happening,original,greet,4 -thank_you,you've been great,parrot,bye,2 -yes,obviously,parrot,book,1 -how_busy,is ihop busy around 7 o'clock?,parrot,avail,0 -greeting,aloha,original,greet,4 -thank_you,i have to thank you for your time,parrot,bye,2 -no,it's false,parrot,cancel,3 -goodbye,i'll leave,parrot,bye,2 -cancel_reservation,am i supposed to cancel my reservations at my table,lambada,cancel,3 -goodbye,later gater,original,bye,2 -yes,that's true,original,book,1 -calendar_update,go ahead and cancel the last event on my calendar,lambada,resched,5 -yes,oh-huh,parrot,book,1 -how_busy,if i'm sitting at the departmental office how long will i have to wait?,parrot,avail,0 -thank_you,i owe you,parrot,bye,2 -thank_you,i appreciate your time,lambada,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,this is my false statement,lambada,cancel,3 -cancel_reservation,i need you to cancel my reservation for robin at red robin,lambada,cancel,3 -goodbye,take care then,parrot,bye,2 -calendar,tell me what's on the calendar for saturday?,original,avail,0 -calendar,read my calendar events,original,avail,0 -yes,absolutely,original,book,1 -goodbye,come on soon,parrot,bye,2 -how_busy,how long will i wait to be seated in the cheese cake factory,parrot,avail,0 -yes,agreed,original,book,1 -greeting,i'd like to know how you are doing,original,greet,4 -yes,positive,parrot,book,1 -goodbye,sayonara,original,bye,2 -yes,thats right,original,book,1 -meeting_schedule,wanna meet roger?,parrot,avail,0 -greeting,how's life in my town?,parrot,greet,4 -no,it's false,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -goodbye,catch you later,original,bye,2 -date,give me a date today,parrot,avail,0 -greeting,"hello, good day",lambada,greet,4 -how_busy,how busy is the coffee shop at 8am?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -goodbye,just relax,parrot,bye,2 -yes,good,parrot,book,1 -reminder_update,remind me to bring a raincoat tomorrow,parrot,resched,5 -greeting,hiya!,original,greet,4 -calendar_update,delete the event on friday on my calendar,parrot,resched,5 -greeting,hows it going,lambada,greet,4 -thank_you,thanks,original,bye,2 -goodbye,say goodbye,parrot,bye,2 -thank_you,thanks!,original,bye,2 -greeting,ahoy hoy,original,greet,4 -goodbye,goodbye bye,parrot,bye,2 -goodbye,good speaking to you,original,bye,2 -no,negatory,original,cancel,3 -goodbye,later goodbye,parrot,bye,2 -thank_you,appreciate it,original,bye,2 -thank_you,i'm grateful,original,bye,2 -greeting,hey fellows,parrot,greet,4 -no,say negative,parrot,cancel,3 -calendar_update,set an appointment for tomorrow,parrot,resched,5 -yes,yay,lambada,book,1 -goodbye,regards,original,bye,2 -yes,approved,original,book,1 -no,say negative,parrot,cancel,3 -no,negatory,original,cancel,3 -thank_you,i appeciate it,original,bye,2 -calendar_update,remove moms birthday from calendar,original,resched,5 -date,what year is tomorrow?,parrot,avail,0 -calendar,tell me what's in my calendar for may 3?,parrot,avail,0 -greeting,nice day,lambada,greet,4 -meeting_schedule,meeting today,parrot,avail,0 -no,that's a negatory,original,cancel,3 -calendar,what's on my calendar for march 11,parrot,avail,0 -yes,agreed,original,book,1 -yes,positive,parrot,book,1 -how_busy,list the wait times at macy's?,parrot,avail,0 -no,thanks no,parrot,cancel,3 -yes,absolutely!,original,book,1 -yes,certainly,parrot,book,1 -greeting,hey,original,greet,4 -yes,"yep, let's do that",lambada,book,1 -calendar_update,remove my calendar from this friday,parrot,resched,5 -greeting,hey how's life,original,greet,4 -yes,uh huh,original,book,1 -greeting,hello,original,greet,4 -no,but that's not factual,parrot,cancel,3 -goodbye,the conversation was nice,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -goodbye,fairwell,original,bye,2 -yes,indeed,original,book,1 -how_busy,how long will it take to get a table in the cheese cake factory?,parrot,avail,0 -calendar_update,delete june 14th's dinner with brittany,lambada,resched,5 -yes,and you're correct,parrot,book,1 -yes,it seems true,parrot,book,1 -no,it's overwhelmingly wrong,parrot,cancel,3 -goodbye,farewell,original,bye,2 -goodbye,bye bye!,original,bye,2 -reminder_update,let me know,parrot,resched,5 -yes,that's right,original,book,1 -goodbye,thanks for the conversation,parrot,bye,2 -yes,ya,original,book,1 -thank_you,for my help i'm grateful,parrot,bye,2 -goodbye,"thanks, bye",original,bye,2 -yes,it makes sense,parrot,book,1 -greeting,how's my life going?,parrot,greet,4 -date,tell me the date tomorrow please,parrot,avail,0 -thank_you,i would like to thank you ai,original,bye,2 -calendar,check the calendar for events,parrot,avail,0 -how_busy,how long does it take to get chili's at 9?,parrot,avail,0 -schedule_meeting,set up a meeting,parrot,book,1 -no,"please, no",original,cancel,3 -goodbye,i have to go to sleep,parrot,bye,2 -thank_you,thanks again,original,bye,2 -greeting,how's everything?,parrot,greet,4 -greeting,good morning,parrot,greet,4 -meeting_schedule,meetings today,original,avail,0 -thank_you,"awesome, thanks",original,bye,2 -cancel_reservation,cancellation of dinner reservation please,parrot,cancel,3 -goodbye,adios,original,bye,2 -yes,that's the truth,original,book,1 -date,today what date?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -yes,ok,original,book,1 -no,it's false,parrot,cancel,3 -yes,uh-huh,original,book,1 -goodbye,goodbye!,original,bye,2 -thank_you,good looking out,original,bye,2 -yes,confirmed,original,book,1 -greeting,what's new here?,parrot,greet,4 -how_busy,how long is the wait at outback steakhouse,lambada,avail,0 -goodbye,good-bye,parrot,bye,2 -how_busy,how busy is imanas?,parrot,avail,0 -goodbye,i'm out,parrot,bye,2 -reminder_update,can you set a reminder to pay the bill?,parrot,resched,5 -goodbye,good luck,lambada,bye,2 -meeting_schedule,please tell me my schedule for my meeting?,parrot,avail,0 -how_busy,is the wait long in this italian place?,parrot,avail,0 -greeting,wassup,original,greet,4 -cancel_reservation,please cancel my reservation for 5 at the loft,parrot,cancel,3 -greeting,hello what's happening,parrot,greet,4 -goodbye,i'm gone,parrot,bye,2 -greeting,"hey, what's new",original,greet,4 -how_busy,how busy will black bean be around 11 am,lambada,avail,0 -meeting_schedule,when is my next meeting with kevin scheduled?,parrot,avail,0 -how_busy,how long do i have to wait at noon?,parrot,avail,0 -calendar_update,clear my calendar for february 6th,parrot,resched,5 -yes,"yup, that's correct",lambada,book,1 -greeting,why hello?,original,greet,4 -how_busy,how long will i have to wait before i go to the cheesecake factory,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -thank_you,nice,parrot,bye,2 -greeting,what's new?,parrot,greet,4 -yes,uh-huh,original,book,1 -no,that's a lie,parrot,cancel,3 -yes,positive,original,book,1 -goodbye,tootles?,parrot,bye,2 -greeting,how's my feeling?,parrot,greet,4 -greeting,"hello, hello, hello",lambada,greet,4 -meeting_schedule,tell me if i have meetings from 3 to 6pm i need to know,parrot,avail,0 -goodbye,see you later alligator,original,bye,2 -no,that's totally wrong!,original,cancel,3 -no,that's no way,parrot,cancel,3 -thank_you,i'm so grateful for you,parrot,bye,2 -goodbye,farewell,original,bye,2 -meeting_schedule,are there meetings between 8 and 9 today?,parrot,avail,0 -greeting,hey there,original,greet,4 -goodbye,sayonara,original,bye,2 -no,nothing,parrot,cancel,3 -greeting,hiya,original,greet,4 -yes,approved,original,book,1 -goodbye,goodbye to your,lambada,bye,2 -greeting,hi what's up,original,greet,4 -no,no please,parrot,cancel,3 -greeting,hiya!,original,greet,4 -meeting_schedule,do you have any meetings today with roger?,parrot,avail,0 -yes,and you're right,parrot,book,1 -date,list the name of the month in 8 days?,parrot,avail,0 -greeting,how is it going,original,greet,4 -greeting,whats up?,parrot,greet,4 -yes,good,parrot,book,1 -reminder_update,just a reminder,parrot,resched,5 -no,please no,parrot,cancel,3 -date,what year?,parrot,avail,0 -greeting,"hello, ai",original,greet,4 -goodbye,bye!,original,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -no,FALSE,lambada,cancel,3 -yes,i vote yes,original,book,1 -reminder_update,my cat needs neutered,parrot,resched,5 -yes,TRUE,lambada,book,1 -date,give me the date of the moment,parrot,avail,0 -goodbye,i'll leave,parrot,bye,2 -schedule_meeting,please schedule a meeting with marnie for 9am,parrot,book,1 -goodbye,greetings,parrot,bye,2 -greeting,what's happened?,parrot,greet,4 -no,no that isn't true,lambada,cancel,3 -goodbye,good bye,original,bye,2 -reminder_update,give me a reminder to set the alarm at 8pm,parrot,resched,5 -greeting,how's that hanging?,parrot,greet,4 -thank_you,"great, thanks!",original,bye,2 -no,that would be terrible,lambada,cancel,3 -yes,it's positive,parrot,book,1 -yes,positive,parrot,book,1 -yes,say yes,lambada,book,1 -greeting,all right now?,parrot,greet,4 -no,that's totally wrong,parrot,cancel,3 -yes,affirmative,original,book,1 -thank_you,very grateful,parrot,bye,2 -meeting_schedule,when is my meeting with kara scheduled?,parrot,avail,0 -no,that's false,original,cancel,3 -goodbye,goodbye!,original,bye,2 -reminder_update,a new reminder please,parrot,resched,5 -no,naw,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -goodbye,goodbye soon,lambada,bye,2 -calendar,display my calendar,lambada,avail,0 -how_busy,what's the crowd like at 5 pm?,parrot,avail,0 -goodbye,a good conversation,parrot,bye,2 -yes,it'd be great,parrot,book,1 -calendar,tell me what's on my calendar for november 6th,parrot,avail,0 -yes,that makes sense as well,original,book,1 -no,"no, it is not true",lambada,cancel,3 -date,can you give me a date in 24 hours?,parrot,avail,0 -goodbye,goodbye then,parrot,bye,2 -goodbye,go easy,parrot,bye,2 -yes,good yes,lambada,book,1 -how_busy,how busy will the olive garden be at 6?,parrot,avail,0 -greeting,whats up,original,greet,4 -calendar_update,remove dinner with suzie from my calendar on 1 march,parrot,resched,5 -yes,oh-huh,parrot,book,1 -meeting_schedule,when's my meeting?,parrot,avail,0 -greeting,hey it's up,lambada,greet,4 -thank_you,you're a great help,parrot,bye,2 -no,but that's not true?,parrot,cancel,3 -yes,obviously,parrot,book,1 -yes,huh,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -yes,"yes, that's true",lambada,book,1 -calendar_update,take care of my doctor appointment for march 30,parrot,resched,5 -thank_you,i'm happy with my response,parrot,bye,2 -goodbye,good conversation,parrot,bye,2 -no,negative,original,cancel,3 -goodbye,i'm gone,parrot,bye,2 -no,nothing,parrot,cancel,3 -yes,we would say yes,lambada,book,1 -goodbye,sign off,parrot,bye,2 -no,absolutely false,parrot,cancel,3 -calendar,please tell me what may 1 will be like according to my calendar,parrot,avail,0 -thank_you,thanks for the response,lambada,bye,2 -greeting,and how's it going?,parrot,greet,4 -greeting,wassup,original,greet,4 -greeting,hey fellow,parrot,greet,4 -thank_you,I owe you one,parrot,bye,2 -yes,but i think you're right,parrot,book,1 -greeting,ahoy hoy,original,greet,4 -greeting,how are things?,parrot,greet,4 -goodbye,buhbye,original,bye,2 -greeting,what's my feeling?,parrot,greet,4 -no,nothing,parrot,cancel,3 -greeting,how's life,original,greet,4 -thank_you,gracias,original,bye,2 -greeting,hi,original,greet,4 -yes,that's a clear yes,parrot,book,1 -yes,yeah,original,book,1 -thank_you,thanks,original,bye,2 -greeting,heyo,original,greet,4 -reminder_update,i need a reminder to sign up for the conference,parrot,resched,5 -goodbye,the talk was nice,lambada,bye,2 -goodbye,goodbye!,original,bye,2 -no,nope,original,cancel,3 -no,negation,parrot,cancel,3 -yes,TRUE,lambada,book,1 -goodbye,"thanks for chatting, later",original,bye,2 -greeting,hi how is everything,original,greet,4 -no,that's absolutely false,parrot,cancel,3 -greeting,hey what's up?,parrot,greet,4 -thank_you,okay thank you,parrot,bye,2 -how_busy,how long do i have to wait for shokudo?,parrot,avail,0 -goodbye,ai goodbye,original,bye,2 -greeting,how ya doing,lambada,greet,4 -how_busy,how many people get a table at mr barto?,parrot,avail,0 -yes,affirmative,original,book,1 -goodbye,talk later,original,bye,2 -yes,TRUE,original,book,1 -yes,accepted,original,book,1 -goodbye,my way,parrot,bye,2 -greeting,aloha,original,greet,4 -yes,"yes, please",original,book,1 -greeting,"hey, ai",original,greet,4 -how_busy,i want to know how busy red robin is at 5:30,lambada,avail,0 -greeting,hello there ai,original,greet,4 -yes,obviously,parrot,book,1 -calendar_update,remove the date of dinner from my calendar,parrot,resched,5 -no,"no, that's wrong",original,cancel,3 -reminder_update,please remember me,parrot,resched,5 -no,nada,original,cancel,3 -how_busy,how long will the wait for a table at one of the best pizza joints be?,parrot,avail,0 -how_busy,what's the wait time for a table in the restaurant?,parrot,avail,0 -greeting,hey hey!,original,greet,4 -reminder_update,please remind me to get rid of the garbage,parrot,resched,5 -yes,of course,original,book,1 -yes,okay,original,book,1 -greeting,"hello, what's up",original,greet,4 -yes,yes please,original,book,1 -reminder_update,remind me,original,resched,5 -thank_you,nice,parrot,bye,2 -greeting,how's the world?,parrot,greet,4 -no,that isn't the right answer,original,cancel,3 -greeting,what's new?,parrot,greet,4 -yes,"yes, that's correct",original,book,1 -greeting,hiya,original,greet,4 -goodbye,fairwell,original,bye,2 -yes,yup,original,book,1 -date,what are the words for tomorrow?,lambada,avail,0 -goodbye,fairwell?,parrot,bye,2 -no,this is a hard no,parrot,cancel,3 -yes,of course,original,book,1 -reminder_update,remind me something,parrot,resched,5 -yes,okay,original,book,1 -no,that's inaccurate,original,cancel,3 -no,it's a no,original,cancel,3 -greeting,salutations,parrot,greet,4 -goodbye,tootles?,parrot,bye,2 -how_busy,is it busy at the cheesecake factory at 6 pm?,parrot,avail,0 -date,what's the day today,original,avail,0 -goodbye,wonderful conversation,lambada,bye,2 -date,what's the day now?,parrot,avail,0 -calendar,do i have anything on my calendar for march 2nd?,original,avail,0 -goodbye,bye,original,bye,2 -how_busy,how busy is the olive garden for dinner?,parrot,avail,0 -goodbye,goodbye goodbye,parrot,bye,2 -reminder_update,please check the steak,parrot,resched,5 -no,is my falsehood?,parrot,cancel,3 -reminder_update,remind me to call bob,original,resched,5 -how_busy,tell me the number of people in the restaurant at 8pm,parrot,avail,0 -yes,approved,original,book,1 -no,please disagree,lambada,cancel,3 -yes,facts,original,book,1 -thank_you,thank you for my time and trying to help,original,bye,2 -no,that's incorrect!,original,cancel,3 -yes,positive,parrot,book,1 -yes,certainly,parrot,book,1 -no,negatory,original,cancel,3 -thank_you,thank you!,original,bye,2 -date,what's the day of the month?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -yes,okay,original,book,1 -greeting,how are you doing today?,parrot,greet,4 -no,naw,parrot,cancel,3 -reminder_update,set a reminder to clean my room,lambada,resched,5 -how_busy,how busy will ian's be at 6 pm,lambada,avail,0 -greeting,how's idy?,parrot,greet,4 -yes,indeed,original,book,1 -yes,confirm,original,book,1 -yes,i'm going to tell you tes,parrot,book,1 -how_busy,is macy's busy?,parrot,avail,0 -goodbye,bye!,original,bye,2 -yes,TRUE,lambada,book,1 -yes,it's positive,parrot,book,1 -yes,certainly,parrot,book,1 -yes,right,parrot,book,1 -goodbye,take it easy!,original,bye,2 -greeting,hiya!,original,greet,4 -calendar,can you tell me what's on my calendar for march 1st?,lambada,avail,0 -yes,yup,original,book,1 -thank_you,you've helped,parrot,bye,2 -goodbye,regards,original,bye,2 -greeting,hello,original,greet,4 -no,no!,original,cancel,3 -date,today?,parrot,avail,0 -greeting,heller,original,greet,4 -yes,TRUE,original,book,1 -yes,yes that's right,lambada,book,1 -how_busy,how long will i have to wait before i go to red lobster,lambada,avail,0 -no,erroneous,parrot,cancel,3 -yes,let's do it,parrot,book,1 -how_busy,tell me how busy red robin is?,parrot,avail,0 -reminder_update,make a reminder to take vitamins,parrot,resched,5 -goodbye,talk to you soon,parrot,bye,2 -date,please explain today,parrot,avail,0 -greeting,aho,parrot,greet,4 -thank_you,many thank,original,bye,2 -reminder_update,please remember me later,parrot,resched,5 -goodbye,i will be on my way,lambada,bye,2 -thank_you,gracias,original,bye,2 -date,can you show me the calendar,parrot,avail,0 -no,negatory?,parrot,cancel,3 -goodbye,great conversation,parrot,bye,2 -goodbye,goodnight,original,bye,2 -calendar_update,make sure that i put down that i have an appointment for tomorrow on my calendar,lambada,resched,5 -yes,correct,original,book,1 -no,that's absolutely wrong,parrot,cancel,3 -greeting,what's happened?,parrot,greet,4 -greeting,please tell me how you're doing,parrot,greet,4 -greeting,"hello, friend",original,greet,4 -yes,accepted,original,book,1 -yes,10-Apr,original,book,1 -no,i believe it's wrong,parrot,cancel,3 -yes,affirmitive,original,book,1 -greeting,hello bs,parrot,greet,4 -no,not happening,original,cancel,3 -calendar,can you update me on what's on my calendar for march 26?,parrot,avail,0 -yes,confirm,original,book,1 -cancel_reservation,how can i cancel my reservation,lambada,cancel,3 -no,negating,parrot,cancel,3 -how_busy,list the typical wait times at ihuachin?,parrot,avail,0 -yes,certainly,parrot,book,1 -goodbye,good bye,original,bye,2 -greeting,hello ai,parrot,greet,4 -yes,my answer to my question is yes,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,"no, that is inaccurate",original,cancel,3 -goodbye,goodbye now,parrot,bye,2 -cancel_reservation,can you cancel my dinner reservation?,original,cancel,3 -no,nada,original,cancel,3 -no,not right,parrot,cancel,3 -no,that's bad,parrot,cancel,3 -yes,absolutely,original,book,1 -thank_you,"oh, thanks",original,bye,2 -goodbye,catch you later,original,bye,2 -yes,indeed,parrot,book,1 -yes,absolutely!,original,book,1 -cancel_reservation,i won't need the reservation anymore,parrot,cancel,3 -greeting,hey bs,lambada,greet,4 -greeting,hello there,original,greet,4 -goodbye,good-bye,parrot,bye,2 -goodbye,later!,original,bye,2 -goodbye,tootles,original,bye,2 -goodbye,great talking with you,parrot,bye,2 -yes,TRUE,lambada,book,1 -yes,approved,original,book,1 -goodbye,tootles?,parrot,bye,2 -goodbye,i will see you later,lambada,bye,2 -reminder_update,you need to remind me to give the cat flea medicine,parrot,resched,5 -no,that's incorrect,original,cancel,3 -goodbye,glad we could talk,parrot,bye,2 -greeting,hello how is it going?,parrot,greet,4 -yes,huh,parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,please disagree,lambada,cancel,3 -yes,indeed,original,book,1 -calendar_update,delete my golf tournament event from tomorrow,parrot,resched,5 -no,naw,original,cancel,3 -no,hell nah,original,cancel,3 -goodbye,good-bye,parrot,bye,2 -goodbye,i'm gone,parrot,bye,2 -yes,TRUE,lambada,book,1 -no,that's not the right answer,parrot,cancel,3 -goodbye,see ya,original,bye,2 -date,what date will it be 9 days from now?,original,avail,0 -goodbye,tootles,original,bye,2 -cancel_reservation,can you cancel the scallop bar reservation?,parrot,cancel,3 -yes,yeah,original,book,1 -greeting,welcome,parrot,greet,4 -yes,"yup, that's correct",lambada,book,1 -greeting,how's my family?,parrot,greet,4 -thank_you,thanks for trying,original,bye,2 -no,i don't want that,parrot,cancel,3 -goodbye,goodbye ai,parrot,bye,2 -goodbye,thanks for talking to me later,parrot,bye,2 -date,today?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -greeting,how are you feeling today?,parrot,greet,4 -reminder_update,the cat needs neutering,parrot,resched,5 -how_busy,how long should i wait before eating in a restaurant beta,parrot,avail,0 -greeting,salutations!,original,greet,4 -no,it is not that,lambada,cancel,3 -goodbye,talk to me later,parrot,bye,2 -no,no longer valid,parrot,cancel,3 -greeting,hola,original,greet,4 -goodbye,i’m leaving-goodbye!,original,bye,2 -thank_you,you've helped,parrot,bye,2 -reminder_update,"new reminder, please",original,resched,5 -goodbye,i liked our conversation,parrot,bye,2 -yes,all right,parrot,book,1 -goodbye,sign off,parrot,bye,2 -goodbye,goodbye bye,parrot,bye,2 -goodbye,goodnight,original,bye,2 -thank_you,i appreciate what you've done,parrot,bye,2 -yes,indeed,parrot,book,1 -no,nothing,parrot,cancel,3 -how_busy,i would like to know how busy olive garden will be at 5 pm,lambada,avail,0 -greeting,ahoy,lambada,greet,4 -yes,"yes, please",original,book,1 -date,what date is that?,parrot,avail,0 -no,nothing,parrot,cancel,3 -greeting,hey how's ot,lambada,greet,4 -greeting,how is idy?,parrot,greet,4 -goodbye,sayonara,original,bye,2 -how_busy,how long will the wait be at the red lobster restaurant?,parrot,avail,0 -greeting,"wake up, ai",original,greet,4 -goodbye,fairwell?,parrot,bye,2 -no,negative,original,cancel,3 -thank_you,i'm very grateful,parrot,bye,2 -no,the negator,parrot,cancel,3 -no,not so i think,parrot,cancel,3 -goodbye,see ya,original,bye,2 -yes,yeah,original,book,1 -how_busy,how long does the wait time at this place be,lambada,avail,0 -yes,obviously,parrot,book,1 -goodbye,have to go,parrot,bye,2 -yes,oh yes,original,book,1 -greeting,whats up,original,greet,4 -goodbye,"syonara, ai device!",original,bye,2 -reminder_update,remind me,original,resched,5 -yes,certainly,parrot,book,1 -greeting,hey bs,lambada,greet,4 -thank_you,i'm grateful,original,bye,2 -how_busy,is there a waiting period on chips?,parrot,avail,0 -no,negative,original,cancel,3 -how_busy,i want to know how busy olive garden is at 6 pm,lambada,avail,0 -no,that's erroneous,parrot,cancel,3 -no,false sure,parrot,cancel,3 -greeting,what's up,original,greet,4 -date,please share the date today,parrot,avail,0 -yes,yes that's it,original,book,1 -date,what's today?,parrot,avail,0 -calendar_update,write my doctor appointment on my calendar,parrot,resched,5 -thank_you,thank ya!,original,bye,2 -thank_you,you helped,parrot,bye,2 -no,negatory?,parrot,cancel,3 -greeting,how's my treatment?,parrot,greet,4 -yes,it'd be great,parrot,book,1 -greeting,how did you feel?,parrot,greet,4 -no,invalid,original,cancel,3 -thank_you,thanks please,original,bye,2 -thank_you,i appreciate that,original,bye,2 -how_busy,can you tell me how long the wait is in this place?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -greeting,"hey, ai",original,greet,4 -goodbye,bye bye!,original,bye,2 -yes,that seems true,original,book,1 -calendar_update,can you delete an event from my calendar please?,parrot,resched,5 -no,invalid,original,cancel,3 -greeting,hey hey!,original,greet,4 -goodbye,goodbye to your,lambada,bye,2 -thank_you,much obliged,original,bye,2 -calendar,please read my calendar for march 2nd,parrot,avail,0 -no,no good,original,cancel,3 -no,that's bad,parrot,cancel,3 -goodbye,see ya,original,bye,2 -no,that's untrue,parrot,cancel,3 -no,no thanks,original,cancel,3 -goodbye,bye,original,bye,2 -no,that's false,original,cancel,3 -calendar_update,remove all my events for march 1 from my calendar,parrot,resched,5 -date,what is the month and year?,lambada,avail,0 -no,not happening,original,cancel,3 -thank_you,thank you please,parrot,bye,2 -yes,i'd say yes,parrot,book,1 -goodbye,later gator!,original,bye,2 -thank_you,thank you!,original,bye,2 -no,invalid,original,cancel,3 -meeting_schedule,please show me the next meeting,lambada,avail,0 -greeting,what's up with you,original,greet,4 -yes,yay,lambada,book,1 -calendar_update,annull the event on 23 february,parrot,resched,5 -yes,indeed,original,book,1 -greeting,yo,original,greet,4 -meeting_schedule,when is my meeting with sam scheduled for?,lambada,avail,0 -goodbye,good talk,parrot,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -greeting,aloha,original,greet,4 -how_busy,can you tell me how long the wait at the red lobster?,parrot,avail,0 -date,please date,parrot,avail,0 -goodbye,farewell,original,bye,2 -goodbye,buhbye,original,bye,2 -goodbye,glad we can talk,parrot,bye,2 -thank_you,my thanks,parrot,bye,2 -thank_you,thanks for trying,original,bye,2 -no,but no way?,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -greeting,hi,original,greet,4 -goodbye,goodnight,original,bye,2 -yes,a fact,parrot,book,1 -no,it's a wrong answer,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -date,what date?,parrot,avail,0 -yes,not a falsehood,parrot,book,1 -thank_you,thanks for my time,parrot,bye,2 -how_busy,how busy is macaroni grill around 6,lambada,avail,0 -calendar_update,clear my calendar for march 1,parrot,resched,5 -goodbye,farewell!,original,bye,2 -greeting,hello,original,greet,4 -cancel_reservation,go ahead and cancel my reservation for 5 at red robin,original,cancel,3 -yes,my answer is yes,parrot,book,1 -no,no!,original,cancel,3 -goodbye,fairwell?,parrot,bye,2 -goodbye,goodbye ai,parrot,bye,2 -goodbye,"that's all, bye",original,bye,2 -yes,yeah,original,book,1 -goodbye,glad to talk,parrot,bye,2 -goodbye,adios ai,original,bye,2 -greeting,hello ai,parrot,greet,4 -thank_you,gracias,original,bye,2 -thank_you,thankyou,parrot,bye,2 -goodbye,sayonara ,parrot,bye,2 -greeting,how's idy?,parrot,greet,4 -schedule_meeting,would you please reserve a meeting room for 2:00 on wednesday,lambada,book,1 -calendar,please see my calendar,parrot,avail,0 -how_busy,how busy is red robin at 5,lambada,avail,0 -thank_you,you've tried,parrot,bye,2 -goodbye,good luck,lambada,bye,2 -how_busy,how long will it take me to sit at the ihop?,parrot,avail,0 -goodbye,peace out,original,bye,2 -reminder_update,give me a reminder to sing in the morning,parrot,resched,5 -goodbye,adios ai,original,bye,2 -yes,it is a positive answer,parrot,book,1 -greeting,hiya,original,greet,4 -greeting,how're you doing,original,greet,4 -goodbye,farewell,original,bye,2 -how_busy,how long will i have to wait before i go to the cheese cake factory,parrot,avail,0 -yes,accepted,original,book,1 -no,hell nah,original,cancel,3 -reminder_update,set a reminder alarm for the meeting at noon,parrot,resched,5 -greeting,how's idy?,parrot,greet,4 -no,i'd say the answer is no,parrot,cancel,3 -yes,absolutely!,original,book,1 -greeting,hi what's up,original,greet,4 -greeting,hows are ya,original,greet,4 -goodbye,adios ai,original,bye,2 -how_busy,is there a long wait at applebee?,parrot,avail,0 -goodbye,"goodbye, ai assistant",original,bye,2 -how_busy,is it busy in the pizzeria around 6pm,parrot,avail,0 -greeting,welcome,parrot,greet,4 -greeting,what's up?,parrot,greet,4 -goodbye,just relax,parrot,bye,2 -date,what day?,parrot,avail,0 -how_busy,can you describe what it's like to wait in chili's at 6pm?,parrot,avail,0 -thank_you,thanks for helping me!,original,bye,2 -no,is that a lie?,parrot,cancel,3 -date,in 2 days what date it will be?,parrot,avail,0 -yes,uh huh,original,book,1 -yes,a fact,parrot,book,1 -date,what year is tomorrow,parrot,avail,0 -no,that's negative,parrot,cancel,3 -calendar_update,please take my final exams off my calendar for may 3,parrot,resched,5 -yes,of course,original,book,1 -yes,"agreed, that's valid",original,book,1 -date,i can't remember the date,parrot,avail,0 -yes,i know,parrot,book,1 -goodbye,see ya,lambada,bye,2 -yes,you're right,original,book,1 -thank_you,let me thank you,original,bye,2 -goodbye,tootles,original,bye,2 -no,FALSE,original,cancel,3 -goodbye,you're done,parrot,bye,2 -date,what year is tomorrow?,parrot,avail,0 -date,what's the day now?,parrot,avail,0 -goodbye,bye,original,bye,2 -greeting,how's this going?,parrot,greet,4 -yes,it's positive,parrot,book,1 -schedule_meeting,reserving a meeting room for thursday at 3pm,parrot,book,1 -yes,it's positive,parrot,book,1 -goodbye,later,original,bye,2 -no,that is erroneous,original,cancel,3 -thank_you,you've been great,parrot,bye,2 -thank_you,i'm happy you've helped me,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -no,negation,parrot,cancel,3 -yes,that will be true,original,book,1 -goodbye,fairwell,original,bye,2 -yes,oh-huh,parrot,book,1 -greeting,bonjour,original,greet,4 -greeting,i want to know how my day goes,parrot,greet,4 -goodbye,later then,lambada,bye,2 -yes,TRUE,original,book,1 -yes,accepted,original,book,1 -goodbye,farewell,original,bye,2 -goodbye,adios!,original,bye,2 -schedule_meeting,i need a meeting room for 930am on sunday,parrot,book,1 -goodbye,thank you goodbye,original,bye,2 -yes,"correct, that's true",original,book,1 -yes,correct,original,book,1 -goodbye,good call,parrot,bye,2 -goodbye,farewell!,original,bye,2 -thank_you,a million thanks,parrot,bye,2 -goodbye,i liked our conversation,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -yes,definitely,original,book,1 -no,erroneous,parrot,cancel,3 -yes,yes,original,book,1 -goodbye,i'll leave now,parrot,bye,2 -yes,that's a yes,original,book,1 -greeting,how's that hanging?,parrot,greet,4 -thank_you,okay thank you,parrot,bye,2 -reminder_update,make a reminder to take care of the cat,parrot,resched,5 -goodbye,", goodbye",lambada,bye,2 -no,not right,parrot,cancel,3 -goodbye,bye-bye,original,bye,2 -no,no?,parrot,cancel,3 -greeting,wassup,original,greet,4 -greeting,aho,parrot,greet,4 -greeting,bonjour,original,greet,4 -reminder_update,create a reminder to get my bbq to sloan today,lambada,resched,5 -goodbye,bye bye,lambada,bye,2 -how_busy,how long will it take to be seated at cheese steak house?,parrot,avail,0 -thank_you,you've tried,parrot,bye,2 -greeting,"hello, good day",lambada,greet,4 -goodbye,regards,original,bye,2 -thank_you,my gratitude,parrot,bye,2 -goodbye,fairwell,original,bye,2 -no,that's not right?,parrot,cancel,3 -how_busy,how long would the wait time be at golden gate steakhouse,lambada,avail,0 -goodbye,for now,parrot,bye,2 -yes,"affirmative, go ahead",original,book,1 -goodbye,talk to you later!,original,bye,2 -yes,is a real statement,parrot,book,1 -thank_you,my thanks,parrot,bye,2 -yes,thats right,original,book,1 -how_busy,how long will it take me to get seated in the cheese cake factory?,parrot,avail,0 -greeting,how does ai do?,parrot,greet,4 -no,no?,parrot,cancel,3 -calendar,do you have anything on my calendar next sunday?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,salutations,parrot,greet,4 -yes,correct,original,book,1 -goodbye,see ya later,original,bye,2 -greeting,ahoy hoy,original,greet,4 -how_busy,how long will it take to wait in an italian restaurant?,parrot,avail,0 -greeting,how's idy doing?,parrot,greet,4 -yes,so it's checked,parrot,book,1 -how_busy,has the cheesecake factory been busy lately?,lambada,avail,0 -yes,please let's do it,original,book,1 -goodbye,i'm leaving,parrot,bye,2 -how_busy,do you know how busy cheesecake factory is right now?,lambada,avail,0 -meeting_schedule,what's on my agenda today,parrot,avail,0 -date,what is a date in 256 days?,parrot,avail,0 -goodbye,regards,original,bye,2 -greeting,how's ai doing today?,parrot,greet,4 -yes,right,parrot,book,1 -thank_you,you answered,parrot,bye,2 -goodbye,ai goodbye,original,bye,2 -how_busy,how long will i have to wait before being seated in this restaurant,parrot,avail,0 -reminder_update,remind me of exercise,parrot,resched,5 -how_busy,how long is the restaurant before we leave?,parrot,avail,0 -no,but it's wrong,parrot,cancel,3 -calendar_update,delete any event on my calendar that's set for wednesday next week,parrot,resched,5 -thank_you,thank you,original,bye,2 -thank_you,"nice, excellent!",original,bye,2 -greeting,hello,original,greet,4 -goodbye,you can talk later,parrot,bye,2 -reminder_update,save it for later,parrot,resched,5 -no,it's a wrong answer,parrot,cancel,3 -yes,"yup, that's correct",lambada,book,1 -reminder_update,create a reminder to pay groceries this week,parrot,resched,5 -goodbye,", goodbye",lambada,bye,2 -how_busy,how long will it take for me to get a table at the buffalo wings,lambada,avail,0 -no,negative,original,cancel,3 -no,the answer is definitely no,original,cancel,3 -how_busy,how long does it take to get a table at chipotle,parrot,avail,0 -date,how many days from now will it be,parrot,avail,0 -yes,that also makes sense,parrot,book,1 -no,nada,original,cancel,3 -greeting,how you're doing?,parrot,greet,4 -greeting,aho,parrot,greet,4 -how_busy,i want to know how busy canadian sun are at 6 pm,lambada,avail,0 -yes,obviously,parrot,book,1 -greeting,hello ai,parrot,greet,4 -goodbye,tootles,original,bye,2 -yes,seems true,parrot,book,1 -meeting_schedule,are there meetings between 1 and 3 o'clock in the evening?,parrot,avail,0 -no,nope,original,cancel,3 -thank_you,okay thanks,original,bye,2 -meeting_schedule,show me my meeting schedule,lambada,avail,0 -yes,can we please?,original,book,1 -no,no,lambada,cancel,3 -no,no it's not true,parrot,cancel,3 -how_busy,if i want a table at the hotel how long will it take,parrot,avail,0 -greeting,how's the situation?,parrot,greet,4 -no,"no, that's wrong",original,cancel,3 -goodbye,sayonara,original,bye,2 -no,no?,parrot,cancel,3 -thank_you,glad that you did it,parrot,bye,2 -greeting,wassup,original,greet,4 -how_busy,how long is the wait at olive garden at 6pm,lambada,avail,0 -calendar_update,take off my dinner plans for tomorrow,parrot,resched,5 -how_busy,is there a wait time at the olive garden currently?,lambada,avail,0 -date,please give me the date today,lambada,avail,0 -greeting,ahoy hoy,original,greet,4 -goodbye,bye!,original,bye,2 -calendar,please read my schedule for april 30th,parrot,avail,0 -cancel_reservation,cancel my reservation for 8pm at red robin,parrot,cancel,3 -greeting,hola,original,greet,4 -date,current day,parrot,avail,0 -how_busy,how much time does it take to get a table in olive garden?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -greeting,hey bs,lambada,greet,4 -greeting,hello how's my life?,parrot,greet,4 -greeting,how things go for you?,parrot,greet,4 -yes,"yes, please",original,book,1 -greeting,salutations!,original,greet,4 -calendar,can you check my march 31 calendar for me?,lambada,avail,0 -no,not right?,parrot,cancel,3 -thank_you,very grateful,parrot,bye,2 -goodbye,goodbye,original,bye,2 -greeting,hello how's it going,original,greet,4 -yes,yay,lambada,book,1 -goodbye,good bye,original,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -greeting,hi ai,original,greet,4 -schedule_meeting,i want to have a meeting with john at 6pm,parrot,book,1 -greeting,hi there,original,greet,4 -no,not that,original,cancel,3 -yes,i want to know what the truth is about,parrot,book,1 -yes,that checks out,original,book,1 -how_busy,how busy will dr joe be at 5 o'clock?,parrot,avail,0 -greeting,how does ai feel?,parrot,greet,4 -calendar,check my calendar,parrot,avail,0 -yes,confirm,original,book,1 -greeting,hey fellows,parrot,greet,4 -yes,huh,parrot,book,1 -no,the negator,parrot,cancel,3 -greeting,how's my life today?,parrot,greet,4 -no,that's inaccurate,original,cancel,3 -greeting,hello,original,greet,4 -yes,yes please,original,book,1 -goodbye,buhbye,original,bye,2 -date,today?,parrot,avail,0 -greeting,good day,original,greet,4 -calendar_update,remove concerts from my calendar on march 19 2019 ,parrot,resched,5 -yes,i believe it is true,parrot,book,1 -no,negatory,original,cancel,3 -yes,huh,parrot,book,1 -goodbye,goodbye ai,parrot,bye,2 -goodbye,take it easy,lambada,bye,2 -how_busy,can you tell me how busy the olive garden will be at 6pm?,parrot,avail,0 -greeting,salutations!,original,greet,4 -greeting,all right now?,parrot,greet,4 -goodbye,i'm going to the highway,parrot,bye,2 -no,invalid,original,cancel,3 -cancel_reservation,the reservation for my friends at red robin is no longer needed,parrot,cancel,3 -yes,accepted,original,book,1 -yes,yep,original,book,1 -thank_you,thank ya!,original,bye,2 -no,FALSE,original,cancel,3 -goodbye,i'm leaving now,lambada,bye,2 -greeting,how's ayi doing?,parrot,greet,4 -yes,yup,original,book,1 -reminder_update,please remind me of this,parrot,resched,5 -no,no!,original,cancel,3 -goodbye,tootles,original,bye,2 -goodbye,peace out,original,bye,2 -yes,TRUE,original,book,1 -how_busy,is mcdonalds busy?,parrot,avail,0 -cancel_reservation,can you cancel my dinner reservations?,parrot,cancel,3 -goodbye,bye now,original,bye,2 -goodbye,regards,original,bye,2 -yes,great,original,book,1 -meeting_schedule,when will i meet bob?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -greeting,hola!,original,greet,4 -greeting,"hello, anyone there",original,greet,4 -goodbye,goodbye!,original,bye,2 -reminder_update,remember the meeting of tomorrow,parrot,resched,5 -goodbye,bye my friend,parrot,bye,2 -greeting,how you're doing?,parrot,greet,4 -greeting,salutations,parrot,greet,4 -thank_you,thankyou,parrot,bye,2 -goodbye,adios,original,bye,2 -how_busy,how long is the wait in imanas?,parrot,avail,0 -greeting,whats new?,parrot,greet,4 -yes,so it's real,parrot,book,1 -goodbye,ai goodbye,original,bye,2 -goodbye,bye now,original,bye,2 -date,where's tomorrow's date,parrot,avail,0 -cancel_reservation,i have to cancel my reservation now,parrot,cancel,3 -date,please date,parrot,avail,0 -greeting,hello how's the situation?,parrot,greet,4 -greeting,how's it going with you,original,greet,4 -goodbye,my friend,parrot,bye,2 -goodbye,bye!,original,bye,2 -reminder_update,can you remind me to pay my bill?,parrot,resched,5 -greeting,salutation,parrot,greet,4 -date,now what's it like now?,parrot,avail,0 -reminder_update,remind me later,original,resched,5 -thank_you,thanks for cooperating,parrot,bye,2 -greeting,and what's up?,parrot,greet,4 -date,please let me know what the date will be,parrot,avail,0 -no,"no, that would be wrong",lambada,cancel,3 -no,absolutely not,original,cancel,3 -calendar,i need my calendar,parrot,avail,0 -yes,okay,original,book,1 -yes,positive,original,book,1 -no,negative,original,cancel,3 -calendar_update,make sure my calendar for march 13 is active,parrot,resched,5 -yes,positive,original,book,1 -greeting,how is life treating you,original,greet,4 -how_busy,can you tell me how busy olive garden will be at 10 am?,lambada,avail,0 -yes,yup,original,book,1 -greeting,are you doing ok?,original,greet,4 -greeting,"hi, ai",original,greet,4 -reminder_update,please remind me to use the bathroom,parrot,resched,5 -yes,absolutely!,original,book,1 -no,it seems wrong,parrot,cancel,3 -no,but certainly not,parrot,cancel,3 -date,what will be the day?,parrot,avail,0 -greeting,bonjour,original,greet,4 -schedule_meeting,help me figure out how to schedule a meeting,lambada,book,1 -calendar_update,delete an event scheduled for april 14th,parrot,resched,5 -greeting,heyo,original,greet,4 -yes,it's logical,parrot,book,1 -goodbye,for now,parrot,bye,2 -no,that's a negatory,original,cancel,3 -no,not so i think,parrot,cancel,3 -goodbye,see ya!,original,bye,2 -thank_you,you answered,parrot,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -yes,TRUE,original,book,1 -greeting,hi,original,greet,4 -yes,a fact,parrot,book,1 -goodbye,wonderful conversation,lambada,bye,2 -thank_you,well done,parrot,bye,2 -calendar_update,removing the event scheduled for april 14,parrot,resched,5 -yes,definitely,original,book,1 -no,naw,parrot,cancel,3 -yes,roger that,original,book,1 -greeting,hi ai,original,greet,4 -goodbye,goodbye soon,lambada,bye,2 -thank_you,thank you kindly,original,bye,2 -date,do you have my date?,parrot,avail,0 -goodbye,talk to you later!,original,bye,2 -yes,"yes, that's correct",original,book,1 -no,that is so false,original,cancel,3 -no,don't agree,parrot,cancel,3 -thank_you,you're welcome,parrot,bye,2 -greeting,hi ai,original,greet,4 -goodbye,bye bye,lambada,bye,2 -reminder_update,keep me in mind,parrot,resched,5 -greeting,how you are?,parrot,greet,4 -no,no!,original,cancel,3 -how_busy,how busy is mishawaka,lambada,avail,0 -schedule_meeting,make an appointment for friday at 3pm,parrot,book,1 -greeting,heyo,original,greet,4 -no,that's not true,original,cancel,3 -date,date tomorrow,parrot,avail,0 -calendar,give me my schedule for march 3,parrot,avail,0 -date,what day?,parrot,avail,0 -calendar_update,can you change the date of the doctor's appointment event in my calendar from april 1st to april 3rd?,parrot,resched,5 -no,nay,original,cancel,3 -greeting,tell me how's my life?,parrot,greet,4 -reminder_update,have i forgotten?,parrot,resched,5 -goodbye,glad we can talk,parrot,bye,2 -no,nada,original,cancel,3 -calendar,you can read my calendar for march 7,parrot,avail,0 -yes,"yes, that's true",lambada,book,1 -no,that's not true,original,cancel,3 -no,that's untrue,parrot,cancel,3 -yes,affirmative,original,book,1 -greeting,salutations!,original,greet,4 -schedule_meeting,how are meetings scheduled?,parrot,book,1 -no,i would rather not,lambada,cancel,3 -no,but certainly not,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -yes,correct,original,book,1 -thank_you,i'm glad you responded,parrot,bye,2 -goodbye,later!,original,bye,2 -no,definitely not,original,cancel,3 -thank_you,thank you for the information you gave me,parrot,bye,2 -calendar_update,delete all calendar entries on 3rd march,parrot,resched,5 -thank_you,you helped,parrot,bye,2 -date,current day,parrot,avail,0 -goodbye,goodbye,original,bye,2 -no,nay,original,cancel,3 -yes,"yes, that's affirmative",original,book,1 -no,ill pass,original,cancel,3 -cancel_reservation,remove my dinner reservation,original,cancel,3 -greeting,hola!,original,greet,4 -no,invalid,original,cancel,3 -yes,ya,original,book,1 -greeting,wassup,original,greet,4 -no,you are wrong,original,cancel,3 -meeting_schedule,what's on my schedule?,parrot,avail,0 -yes,yeap,original,book,1 -yes,absolutely,original,book,1 -goodbye,goodbye,original,bye,2 -greeting,hi,original,greet,4 -how_busy,will beefy be busy at 9 am?,parrot,avail,0 -date,tell me the date that will be in 2 days?,lambada,avail,0 -thank_you,thankyou,parrot,bye,2 -calendar_update,remove dinner with suzie from my calendar on march 1,parrot,resched,5 -greeting,hey how have you been?,parrot,greet,4 -goodbye,nice chat today,lambada,bye,2 -how_busy,how long will be the wait at this restaurant,lambada,avail,0 -how_busy,can you tell me how busy outback steakhouse will be at 7:30 pm?,original,avail,0 -greeting,ahoy hoy,original,greet,4 -goodbye,goodbye soon,lambada,bye,2 -meeting_schedule,when is my schedule for today?,parrot,avail,0 -meeting_schedule,what's the meeting schedule,lambada,avail,0 -greeting,how are things?,parrot,greet,4 -thank_you,appreciate the help,original,bye,2 -greeting,how're you?,parrot,greet,4 -meeting_schedule,tell me if i have a meeting with dan?,parrot,avail,0 -thank_you,thanks again,original,bye,2 -greeting,welcome,parrot,greet,4 -yes,obviously,parrot,book,1 -greeting,are you good?,original,greet,4 -meeting_schedule,can you tell me the schedule of the meetings?,parrot,avail,0 -no,naw,parrot,cancel,3 -yes,positive,parrot,book,1 -date,can you give me a date in 4 days?,parrot,avail,0 -goodbye,you can talk later,parrot,bye,2 -thank_you,your answer was pleasant,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -greeting,hello how you doing,lambada,greet,4 -date,in seven days?,parrot,avail,0 -calendar_update,i need a trip to the zoo on the calendar for june 4,parrot,resched,5 -no,negation,parrot,cancel,3 -thank_you,thank you for that!,lambada,bye,2 -greeting,aloha,original,greet,4 -thank_you,thank you kindly,original,bye,2 -cancel_reservation,cancellation of dinner reservation,parrot,cancel,3 -thank_you,you've given me that,parrot,bye,2 -yes,positive,original,book,1 -no,negative certainly,parrot,cancel,3 -how_busy,how long to wait before dining in restaurant beta,original,avail,0 -no,i'll say no,parrot,cancel,3 -no,no?,parrot,cancel,3 -date,today?,parrot,avail,0 -no,FALSE,original,cancel,3 -cancel_reservation,please cancel the table at red robin at 5,lambada,cancel,3 -greeting,how are you treated,lambada,greet,4 -greeting,how's everything,original,greet,4 -greeting,why hello?,original,greet,4 -thank_you,glad you helped me,parrot,bye,2 -goodbye,farewell!,original,bye,2 -no,that's not right,original,cancel,3 -calendar,do i have calendar events on march 19th?,original,avail,0 -no,it's negative,parrot,cancel,3 -calendar_update,i want to clear my calendar for march,parrot,resched,5 -date,date tomorrow,parrot,avail,0 -reminder_update,give the cat flea medicine,parrot,resched,5 -yes,correct,original,book,1 -greeting,"why, hello bandit",original,greet,4 -yes,TRUE,lambada,book,1 -thank_you,i'm so very grateful,parrot,bye,2 -cancel_reservation,call off the dinner reservation,original,cancel,3 -greeting,how's it hanging,original,greet,4 -yes,all right,original,book,1 -yes,absolutely correct,original,book,1 -date,let me know what's the date tomorrow?,parrot,avail,0 -goodbye,"great talk, thanks",original,bye,2 -greeting,how is idy?,parrot,greet,4 -thank_you,well done,parrot,bye,2 -date,what year?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -yes,yes please,original,book,1 -no,no good,original,cancel,3 -yes,sure thing,original,book,1 -goodbye,wonderful conversation,lambada,bye,2 -how_busy,you know how many seats are available in this restaurant?,parrot,avail,0 -greeting,nice day,lambada,greet,4 -thank_you,"awesome, thanks",original,bye,2 -reminder_update,you know something?,parrot,resched,5 -reminder_update,the cat needs neutering,parrot,resched,5 -no,not at all,original,cancel,3 -goodbye,fairwell,original,bye,2 -thank_you,i appreciate my help!,original,bye,2 -thank_you,thanks,original,bye,2 -greeting,heller,original,greet,4 -greeting,how's life?,parrot,greet,4 -goodbye,good-bye,parrot,bye,2 -yes,of course,original,book,1 -yes,oh-huh,parrot,book,1 -thank_you,gracias,original,bye,2 -yes,sure,original,book,1 -no,so that's no,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -no,that's bad,parrot,cancel,3 -greeting,so what's up?,parrot,greet,4 -meeting_schedule,do i have to go to a meeting?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -thank_you,i'm grateful for your help,lambada,bye,2 -date,what's the current day?,parrot,avail,0 -goodbye,goodbye to your,lambada,bye,2 -no,that's negative,parrot,cancel,3 -yes,yes it's true,lambada,book,1 -yes,uh-huh,original,book,1 -goodbye,wonderful conversation,lambada,bye,2 -greeting,heller,original,greet,4 -date,what is the date today?,original,avail,0 -thank_you,many thanks,original,bye,2 -goodbye,"goodbye, ai assistant",original,bye,2 -yes,right,parrot,book,1 -goodbye,goodbye helpful ai devices,parrot,bye,2 -no,it's false,parrot,cancel,3 -calendar,what's tuesday's calendar?,parrot,avail,0 -greeting,well hello,original,greet,4 -how_busy,how long will it take for a table at buffalo wild wings,parrot,avail,0 -thank_you,i appreciate your consideration,lambada,bye,2 -how_busy,how busy is that olive garden right now?,parrot,avail,0 -thank_you,really great!,original,bye,2 -thank_you,merci beaucoup,original,bye,2 -goodbye,it was really nice talking to you,lambada,bye,2 -meeting_schedule,do i have many meetings today between 2 and 4?,original,avail,0 -date,what's my date today?,parrot,avail,0 -how_busy,how busy is chili around 7 pm,parrot,avail,0 -thank_you,i appeciate it,parrot,bye,2 -greeting,yo,original,greet,4 -greeting,and what's up?,parrot,greet,4 -yes,certainly,parrot,book,1 -meeting_schedule,is a meeting with ruth in my schedule today?,parrot,avail,0 -thank_you,"nice, excellent!",original,bye,2 -greeting,hey there fellow,original,greet,4 -yes,good,parrot,book,1 -greeting,yo,original,greet,4 -yes,yay,lambada,book,1 -yes,yeap,original,book,1 -goodbye,peace,original,bye,2 -yes,it's true yes,parrot,book,1 -yes,uh-huh,original,book,1 -greeting,how's it going now?,parrot,greet,4 -yes,obviously,parrot,book,1 -calendar,check my calendar,parrot,avail,0 -schedule_meeting,i'm going to need to meet with scott at 1pm,original,book,1 -thank_you,thank you very much for the answer,original,bye,2 -yes,my answer is yes,parrot,book,1 -greeting,how's life,original,greet,4 -yes,obviously,parrot,book,1 -thank_you,i appreciate that answer,original,bye,2 -no,not that,original,cancel,3 -greeting,wassup,original,greet,4 -yes,positive,parrot,book,1 -greeting,salutation,parrot,greet,4 -calendar,are there any events planned for tuesday?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -thank_you,very grateful,parrot,bye,2 -goodbye,farewell!,original,bye,2 -cancel_reservation,call my reservation canceled,lambada,cancel,3 -no,invalid,original,cancel,3 -thank_you,"thanks, that's helpful",original,bye,2 -goodbye,my friend,parrot,bye,2 -yes,confirmed,original,book,1 -yes,huh,parrot,book,1 -greeting,how are you?,parrot,greet,4 -yes,good,parrot,book,1 -yes,that's absolutely true,parrot,book,1 -yes,"yes, please",parrot,book,1 -greeting,hows life for you,lambada,greet,4 -date,i want to know what the next day will be,parrot,avail,0 -yes,ya,original,book,1 -yes,huh,parrot,book,1 -no,i'd rather not,parrot,cancel,3 -yes,agreed,original,book,1 -yes,yup,original,book,1 -no,that is not factual,original,cancel,3 -yes,positive,parrot,book,1 -yes,absolutely,original,book,1 -yes,i'm going to tell you tes,parrot,book,1 -yes,confirm,original,book,1 -thank_you,okay thanks,original,bye,2 -yes,that checks out,original,book,1 -yes,the answer is yes,original,book,1 -date,what's the date?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -reminder_update,remind me,original,resched,5 -yes,indeed,original,book,1 -meeting_schedule,meetings today,original,avail,0 -goodbye,sign off,parrot,bye,2 -yes,yes sir,original,book,1 -no,certainly false,parrot,cancel,3 -how_busy,tell me how busy the olive garden is at 6am?,parrot,avail,0 -yes,it seems true,parrot,book,1 -yes,"yes, that's affirmative",original,book,1 -goodbye,sayonara,original,bye,2 -thank_you,nice,parrot,bye,2 -no,no no it's not,parrot,cancel,3 -cancel_reservation,tell me if i have to cancel my reservation for porterhouse?,parrot,cancel,3 -goodbye,we chatted well,parrot,bye,2 -yes,indeed,original,book,1 -date,what month today?,parrot,avail,0 -goodbye,farewell,original,bye,2 -yes,huh,parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -cancel_reservation,delete my dinner reservation,parrot,cancel,3 -meeting_schedule,what time is my schedule for today?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -yes,let's do it,parrot,book,1 -yes,huh,parrot,book,1 -thank_you,you made me aware of this,parrot,bye,2 -thank_you,I owe you one,parrot,bye,2 -goodbye,i'm leaving,parrot,bye,2 -yes,TRUE,original,book,1 -meeting_schedule,are any meetings scheduled for today?,original,avail,0 -date,you know the date?,parrot,avail,0 -calendar_update,delete all calendar entries on 7 march,parrot,resched,5 -thank_you,appreciate the assistance,parrot,bye,2 -calendar,what's going on in my calendar for the month of march 2?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -how_busy,how long will it take for a table at the restaurant,lambada,avail,0 -yes,correct,original,book,1 -yes,i guess yes,parrot,book,1 -no,naw,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -greeting,hiya,original,greet,4 -greeting,hi there,original,greet,4 -goodbye,see you around,original,bye,2 -greeting,good day,original,greet,4 -schedule_meeting,please get together with matthew,parrot,book,1 -greeting,salutation,parrot,greet,4 -no,negating,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -greeting,how's everything,original,greet,4 -goodbye,"i enjoyed our talk, bye",original,bye,2 -greeting,salutations!,original,greet,4 -calendar,can you check my calendar to see if i have scheduled any events to be on my calendar?,lambada,avail,0 -goodbye,"nice talk, goodbye",lambada,bye,2 -no,it's indeed false,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -goodbye,later gator!,original,bye,2 -cancel_reservation,i have to cancel my reservation for dinner at outback steakhouse,parrot,cancel,3 -how_busy,how long is the restaurant at noon,lambada,avail,0 -yes,facts,original,book,1 -goodbye,goodnight,original,bye,2 -no,i'd rather not answer,parrot,cancel,3 -date,what date?,parrot,avail,0 -yes,absolutely!,original,book,1 -goodbye,my way,parrot,bye,2 -goodbye,goodnight,original,bye,2 -yes,it appears true,parrot,book,1 -thank_you,i appreciate your answer,parrot,bye,2 -yes,confirm,original,book,1 -how_busy,what's the busyness like at 5 pm,lambada,avail,0 -schedule_meeting,i need an agenda,parrot,book,1 -greeting,hows are ya,original,greet,4 -how_busy,how long will i have to wait for a table in ihop,parrot,avail,0 -greeting,what's up?,parrot,greet,4 -no,erroneous,parrot,cancel,3 -greeting,why hello?,original,greet,4 -reminder_update,please remember something,parrot,resched,5 -thank_you,thank you?,parrot,bye,2 -yes,that checks out,original,book,1 -yes,okay,original,book,1 -calendar_update,stop this event today,parrot,resched,5 -no,naw,original,cancel,3 -yes,accepted,original,book,1 -goodbye,bye-bye,original,bye,2 -goodbye,bye,original,bye,2 -goodbye,i'm leaving,parrot,bye,2 -thank_you,thanks for the response,lambada,bye,2 -thank_you,"good job, thanks",lambada,bye,2 -no,nada,original,cancel,3 -goodbye,i'm going,parrot,bye,2 -date,give me the date,original,avail,0 -no,it's a negative,parrot,cancel,3 -thank_you,my thanks,parrot,bye,2 -how_busy,how busy is the cheesecake factory around 7?,parrot,avail,0 -no,negation,parrot,cancel,3 -yes,yes,original,book,1 -yes,okay,original,book,1 -no,erroneous,parrot,cancel,3 -date,date please,original,avail,0 -yes,yup,original,book,1 -yes,that's right,original,book,1 -greeting,yo,original,greet,4 -no,FALSE,original,cancel,3 -meeting_schedule,are there meetings between 1 and 5?,parrot,avail,0 -cancel_reservation,i won't need the reservation,parrot,cancel,3 -yes,absolutely,original,book,1 -no,negatory,original,cancel,3 -schedule_meeting,can you please schedule a meeting with steven?,lambada,book,1 -no,definitely not,original,cancel,3 -no,that's completely false,original,cancel,3 -greeting,wassup,original,greet,4 -yes,certainly,parrot,book,1 -no,don't you change it to false?,parrot,cancel,3 -greeting,hello,original,greet,4 -how_busy,outback steakhouse at 7 pm,parrot,avail,0 -calendar,what events do i have for march 1st?,parrot,avail,0 -cancel_reservation,i gotta cancel my reservation for barry at red robin,original,cancel,3 -goodbye,goodbye thank you,parrot,bye,2 -greeting,heyo,original,greet,4 -thank_you,"awesome, thanks",original,bye,2 -no,it's false,parrot,cancel,3 -greeting,how are you doing?,parrot,greet,4 -yes,certainly true,parrot,book,1 -how_busy,how much time do i have to wait in the restaurant?,parrot,avail,0 -goodbye,bye!,original,bye,2 -greeting,let me know how my day goes,parrot,greet,4 -greeting,whats up,original,greet,4 -no,it is false,original,cancel,3 -thank_you,"great, thanks!",original,bye,2 -greeting,"why, hello bandit",original,greet,4 -no,it's a mistake,parrot,cancel,3 -yes,certainly,parrot,book,1 -no,the information is inaccurate,parrot,cancel,3 -goodbye,bye,original,bye,2 -goodbye,goodbye no problem,parrot,bye,2 -goodbye,on the highway,parrot,bye,2 -no,so that's no,parrot,cancel,3 -how_busy,show me the average wait times at olive garden?,parrot,avail,0 -greeting,wassup,original,greet,4 -greeting,hi what's up?,parrot,greet,4 -no,that's inaccurate,original,cancel,3 -yes,is true,parrot,book,1 -meeting_schedule,how many meetings do i have between noon and one,lambada,avail,0 -goodbye,bye bye,lambada,bye,2 -yes,accepted,original,book,1 -yes,that's correct,original,book,1 -goodbye,sayonara,original,bye,2 -date,please explain today,parrot,avail,0 -how_busy,does ipl have a good wait time for dinner?,lambada,avail,0 -yes,10-Apr,original,book,1 -schedule_meeting,open meeting rooms from 1 to 3 pm,parrot,book,1 -greeting,and how're you doing,parrot,greet,4 -goodbye,goodbye!,original,bye,2 -calendar_update,make sure summit trip is clear on my calendar,lambada,resched,5 -goodbye,until next time,original,bye,2 -how_busy,how long will it be before ios serves dinner?,parrot,avail,0 -how_busy,how long will it take to wait?,parrot,avail,0 -thank_you,thanks for that answer,original,bye,2 -no,i think that's false,original,cancel,3 -yes,indeed,original,book,1 -greeting,how are you this fine day,original,greet,4 -how_busy,how busy is the cheesecake factory,lambada,avail,0 -date,in 8 days?,parrot,avail,0 -how_busy,is mr joes pizza crowded?,parrot,avail,0 -date,what's the date for tomorrow?,parrot,avail,0 -no,it's absolutely false,parrot,cancel,3 -goodbye,regards,original,bye,2 -reminder_update,give me a reminder to pick up my groceries?,parrot,resched,5 -no,that is not true,original,cancel,3 -greeting,aloha,original,greet,4 -yes,agreed,original,book,1 -greeting,hiya!,original,greet,4 -schedule_meeting,i want to schedule a meeting with steve at the office,lambada,book,1 -goodbye,adios!,original,bye,2 -greeting,hi what's up?,parrot,greet,4 -goodbye,sayonara ,parrot,bye,2 -yes,that is true,original,book,1 -date,i need to know the date,lambada,avail,0 -goodbye,nice talk,lambada,bye,2 -yes,"yes, that's accurate",original,book,1 -date,is it monday?,parrot,avail,0 -yes,it's logical,parrot,book,1 -goodbye,goodnight,original,bye,2 -date,in seven days?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -reminder_update,make me a reminder,lambada,resched,5 -greeting,how's otc?,parrot,greet,4 -goodbye,regards,original,bye,2 -goodbye,i want it now,parrot,bye,2 -thank_you,thank you very much,original,bye,2 -greeting,"hey, ai",original,greet,4 -greeting,how's my day going?,parrot,greet,4 -goodbye,lovely conversation,parrot,bye,2 -calendar,what's on my calendar for march 28,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -goodbye,signing off,original,bye,2 -greeting,wassup,original,greet,4 -goodbye,later!,original,bye,2 -thank_you,good job helping me,parrot,bye,2 -no,you are wrong,original,cancel,3 -no,nope,original,cancel,3 -greeting,what's up?,parrot,greet,4 -yes,confirm,original,book,1 -how_busy,would tio's be crowded at 7,original,avail,0 -greeting,good evening,original,greet,4 -goodbye,bye bye,lambada,bye,2 -no,that's wrong,original,cancel,3 -no,nope,original,cancel,3 -reminder_update,just a reminder,parrot,resched,5 -no,no way!,original,cancel,3 -goodbye,"goodbye, ai assistant",original,bye,2 -greeting,tell me what you're doing today,parrot,greet,4 -greeting,wassup,original,greet,4 -date,today?,parrot,avail,0 -how_busy,how busy is the olive garden at 5?,parrot,avail,0 -reminder_update,tomorrow at 4 pm remind me to start the oven,parrot,resched,5 -no,that's erroneous,parrot,cancel,3 -greeting,ahoy,lambada,greet,4 -no,that's a wrong answer,parrot,cancel,3 -no,this is so negative,parrot,cancel,3 -yes,positive,original,book,1 -no,no this is false,parrot,cancel,3 -no,but that's not factual,parrot,cancel,3 -greeting,hey there!,original,greet,4 -greeting,hey it's up,lambada,greet,4 -yes,yes please,original,book,1 -no,erroneous,parrot,cancel,3 -greeting,"hello, hello, hello",lambada,greet,4 -reminder_update,i need to be notified of the maintenance reminder,parrot,resched,5 -no,absolutely not,original,cancel,3 -greeting,are you good?,original,greet,4 -meeting_schedule,what time do i meet john?,parrot,avail,0 -greeting,how's everything?,parrot,greet,4 -no,thats a negative,original,cancel,3 -greeting,whats up?,parrot,greet,4 -goodbye,the time to say goodbye?,parrot,bye,2 -yes,yes,original,book,1 -greeting,how's this going?,parrot,greet,4 -yes,facts,original,book,1 -greeting,welcome,parrot,greet,4 -no,"no, that is fake",original,cancel,3 -goodbye,cya later,original,bye,2 -greeting,heyo,original,greet,4 -greeting,what do you feel?,parrot,greet,4 -how_busy,what's the wait at chili's tonight?,parrot,avail,0 -greeting,how is ai doing?,parrot,greet,4 -goodbye,the chat was good,parrot,bye,2 -yes,confirmed,original,book,1 -greeting,salutation,parrot,greet,4 -yes,yep,original,book,1 -meeting_schedule,do you have any meetings with nora today?,parrot,avail,0 -yes,confirm that i'm on the correct list,parrot,book,1 -calendar_update,i want to delete fishing from my calendar for soccer,parrot,resched,5 -greeting,yo,original,greet,4 -no,is my false claim?,parrot,cancel,3 -no,it is false,original,cancel,3 -no,it's negative,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -yes,indeed,parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,it's so negative,parrot,cancel,3 -no,"no, don't do that",original,cancel,3 -date,today?,parrot,avail,0 -yes,good yes,lambada,book,1 -calendar,check my calendar for 30th birthday party,original,avail,0 -yes,TRUE,lambada,book,1 -no,that's completely false,original,cancel,3 -schedule_meeting,can you schedule a meeting with katie at 11 am?,parrot,book,1 -how_busy,how long is the wait to eat red lobster?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -goodbye,peace out,original,bye,2 -yes,agreed,original,book,1 -yes,approved,original,book,1 -no,that's totally false,parrot,cancel,3 -yes,that's absolutely true,parrot,book,1 -yes,huh,parrot,book,1 -reminder_update,set a reminder to pick up the newspaper,lambada,resched,5 -yes,certainly true,parrot,book,1 -no,no that's a lie,parrot,cancel,3 -thank_you,i appreciate the answer,parrot,bye,2 -thank_you,thanks again!,original,bye,2 -no,nope,original,cancel,3 -goodbye,"nice talk, goodbye",lambada,bye,2 -greeting,ahoy hoy,original,greet,4 -how_busy,can you tell me the wait time for the restaurant?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -calendar,check my calendar please,parrot,avail,0 -goodbye,good bye,original,bye,2 -no,not true,original,cancel,3 -calendar,can you list my calendar?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -yes,you're right,original,book,1 -no,negating,parrot,cancel,3 -greeting,aloha,original,greet,4 -no,not correct,parrot,cancel,3 -goodbye,im leaving goodbye,parrot,bye,2 -yes,ya,original,book,1 -yes,definitely,original,book,1 -how_busy,are chicken dinners busy?,lambada,avail,0 -thank_you,thanks,original,bye,2 -greeting,hey bs,lambada,greet,4 -how_busy,is mr joe's pizza usually occupied or not?,parrot,avail,0 -yes,it's positive,parrot,book,1 -yes,confirm,original,book,1 -greeting,how's life,original,greet,4 -date,please tell me the date of today,parrot,avail,0 -greeting,hey,original,greet,4 -meeting_schedule,show me the times of my meetings,parrot,avail,0 -how_busy,how long can i wait to eat at the restaurant,lambada,avail,0 -no,that's no,parrot,cancel,3 -no,i think that's false,original,cancel,3 -greeting,whats up?,parrot,greet,4 -goodbye,goodbye,original,bye,2 -no,FALSE,lambada,cancel,3 -yes,ok,original,book,1 -greeting,greetings to you,original,greet,4 -how_busy,how busy is the restaurant before dinner?,parrot,avail,0 -goodbye,later good luck,parrot,bye,2 -how_busy,ihop around 10 pm,parrot,avail,0 -no,no thanks,original,cancel,3 -goodbye,tootles?,parrot,bye,2 -greeting,how's everything with you?,parrot,greet,4 -cancel_reservation,cancel dinner reservation tonight,parrot,cancel,3 -meeting_schedule,do you have any meetings between 5 and 6 today?,parrot,avail,0 -yes,approved,original,book,1 -greeting,hello siri,original,greet,4 -thank_you,"great, thanks!",original,bye,2 -no,FALSE,original,cancel,3 -yes,affirmitive,original,book,1 -thank_you,thank you for making my life easier,parrot,bye,2 -yes,affirmitive,original,book,1 -yes,it's a fact,parrot,book,1 -goodbye,good to talk to you,lambada,bye,2 -thank_you,my thanks,parrot,bye,2 -yes,confirmed,original,book,1 -no,negative definitely,parrot,cancel,3 -no,not good,parrot,cancel,3 -reminder_update,remind me something,parrot,resched,5 -no,negative,original,cancel,3 -date,what is that day?,parrot,avail,0 -how_busy,how long is the wait at red lobster,lambada,avail,0 -thank_you,much obliged,original,bye,2 -yes,it's indeed true,original,book,1 -yes,yeah,original,book,1 -greeting,whats up?,parrot,greet,4 -yes,"yes, please",parrot,book,1 -date,is it a day of the month today?,parrot,avail,0 -date,what year?,parrot,avail,0 -yes,perfect,parrot,book,1 -reminder_update,will you add a reminder for me?,parrot,resched,5 -date,what's the date in four days,lambada,avail,0 -no,is my false claim?,parrot,cancel,3 -how_busy,what is the average wait time for a tiburon beer at 5 pm?,lambada,avail,0 -greeting,hey yai,lambada,greet,4 -goodbye,catch you later,original,bye,2 -goodbye,buhbye,original,bye,2 -greeting,how you're doing?,parrot,greet,4 -thank_you,thanks for the assist,original,bye,2 -goodbye,i'm going,parrot,bye,2 -calendar,tell me what is currently scheduled on my calendar for march 18th?,lambada,avail,0 -date,what day are we?,parrot,avail,0 -thank_you,i'm very grateful,parrot,bye,2 -no,so that's no,parrot,cancel,3 -greeting,hi,original,greet,4 -reminder_update,set up a new reminder to alert me when it's time to put out the trash,parrot,resched,5 -yes,facts,original,book,1 -thank_you,thanks again,original,bye,2 -greeting,salutations!,original,greet,4 -goodbye,signing off,original,bye,2 -goodbye,goodnight,original,bye,2 -cancel_reservation,i don't need dinner reservation,parrot,cancel,3 -greeting,what's new?,parrot,greet,4 -thank_you,okay thank you,parrot,bye,2 -greeting,how are things going,original,greet,4 -yes,absolutely,original,book,1 -goodbye,please talk to me,parrot,bye,2 -how_busy,wait how long?,parrot,avail,0 -how_busy,how busy is red lobster?,parrot,avail,0 -yes,yes,original,book,1 -date,let me know what's the date?,parrot,avail,0 -thank_you,i'm really grateful,parrot,bye,2 -yes,i want that,parrot,book,1 -yes,TRUE,original,book,1 -goodbye,goodbye!,original,bye,2 -date,what's the year?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -no,no!,original,cancel,3 -how_busy,if i had to wait in the restaurant how long would it take,parrot,avail,0 -goodbye,you're done,parrot,bye,2 -yes,it's true,original,book,1 -greeting,hey there!,original,greet,4 -goodbye,goodbye later,parrot,bye,2 -yes,yay,lambada,book,1 -date,is tomorrow's date?,parrot,avail,0 -no,that's actually false,parrot,cancel,3 -yes,that's right,original,book,1 -yes,not false,parrot,book,1 -date,what day is it?,original,avail,0 -thank_you,i am thankful,lambada,bye,2 -goodbye,will leave now,parrot,bye,2 -greeting,hello ai,parrot,greet,4 -how_busy,is the wait busy at olive garden right now?,lambada,avail,0 -yes,just right,parrot,book,1 -yes,perfect,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -yes,indeed,original,book,1 -greeting,what's up,original,greet,4 -meeting_schedule,show me the schedule of my meeting?,parrot,avail,0 -calendar,can you tell me what is currently on my calendar for march 25th?,lambada,avail,0 -yes,uh huh,original,book,1 -no,negative for sure,original,cancel,3 -greeting,what's up?,parrot,greet,4 -yes,great,original,book,1 -goodbye,i'm leaving,parrot,bye,2 -greeting,hello siri,original,greet,4 -no,would be no?,parrot,cancel,3 -how_busy,waiting at cheeseburgers?,parrot,avail,0 -yes,that is accurate,original,book,1 -goodbye,farewell,original,bye,2 -greeting,hello there,original,greet,4 -yes,approved,original,book,1 -no,negative,original,cancel,3 -thank_you,again thanks,parrot,bye,2 -greeting,how're you?,parrot,greet,4 -no,naw,original,cancel,3 -greeting,how's it hanging?,parrot,greet,4 -thank_you,thanks!,original,bye,2 -no,naw,parrot,cancel,3 -thank_you,thanks for my help!,original,bye,2 -greeting,"hello, how is it going",original,greet,4 -no,it's overwhelmingly wrong,parrot,cancel,3 -goodbye,adios ai,original,bye,2 -no,no please,parrot,cancel,3 -thank_you,the best,parrot,bye,2 -schedule_meeting,can you help me find a meeting please?,lambada,book,1 -goodbye,i'm leaving,parrot,bye,2 -date,what is tomorrow?,parrot,avail,0 -goodbye,good bye,original,bye,2 -date,what's the date after today?,parrot,avail,0 -greeting,good morning,parrot,greet,4 -yes,i believe you're right,parrot,book,1 -no,nope,original,cancel,3 -greeting,hey,original,greet,4 -thank_you,you helped,parrot,bye,2 -thank_you,appreciated,original,bye,2 -no,no thanks,original,cancel,3 -yes,"yeah, that is true",lambada,book,1 -goodbye,farewell!,original,bye,2 -calendar_update,can you add exercise to my calendar for today?,parrot,resched,5 -yes,"yes, that's correct",original,book,1 -no,i'd prefer not to,parrot,cancel,3 -no,please no,parrot,cancel,3 -goodbye,i'm going,parrot,bye,2 -goodbye,say goodbye,parrot,bye,2 -yes,yes,original,book,1 -thank_you,nice,parrot,bye,2 -goodbye,i'm leaving,parrot,bye,2 -yes,all right,original,book,1 -no,that's incorrect!,original,cancel,3 -yes,confirmed,original,book,1 -yes,that's all right,parrot,book,1 -greeting,wassup,original,greet,4 -thank_you,thanks very much for your answer,parrot,bye,2 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -no,no,lambada,cancel,3 -greeting,how is the i a good student,lambada,greet,4 -yes,i guess,parrot,book,1 -no,it's not always true,parrot,cancel,3 -goodbye,farewell,original,bye,2 -thank_you,thankyou,parrot,bye,2 -date,date please,original,avail,0 -greeting,hello there!,original,greet,4 -greeting,how've you been,original,greet,4 -greeting,how are you today,original,greet,4 -how_busy,how long would it take to wait in chili's restaurant?,parrot,avail,0 -calendar,is there anything on my calendar for february 14th?,parrot,avail,0 -yes,obviously,parrot,book,1 -how_busy,how busy is chili's at 730?,parrot,avail,0 -schedule_meeting,i'll need a meeting room on thursday at noon,parrot,book,1 -calendar_update,can you remove the date of the school play on my calendar?,lambada,resched,5 -goodbye,ai goodbye,original,bye,2 -yes,good,parrot,book,1 -goodbye,i'm going,parrot,bye,2 -yes,agreed,original,book,1 -calendar,what's my schedule for tomorrow?,parrot,avail,0 -reminder_update,remind me,original,resched,5 -reminder_update,i need a reminder for myself,parrot,resched,5 -no,that's very wrong,parrot,cancel,3 -schedule_meeting,is there a meeting room available on wednesday at 10pm?,parrot,book,1 -no,nothing,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -yes,good yes,lambada,book,1 -goodbye,buhbye,original,bye,2 -goodbye,"later, good luck",lambada,bye,2 -no,no that isn't true,lambada,cancel,3 -goodbye,lovely conversation,parrot,bye,2 -reminder_update,set a reminder,original,resched,5 -greeting,"hello, friend",original,greet,4 -greeting,aloha,original,greet,4 -meeting_schedule,are there any scheduled meetings today?,parrot,avail,0 -no,no,lambada,cancel,3 -goodbye,just relax,parrot,bye,2 -no,the answer is no,original,cancel,3 -goodbye,i'm gone,parrot,bye,2 -greeting,hey how's ot,lambada,greet,4 -calendar,i've got a calendar for today,parrot,avail,0 -greeting,aho,parrot,greet,4 -no,FALSE,lambada,cancel,3 -no,most definitely false,parrot,cancel,3 -yes,TRUE,original,book,1 -schedule_meeting,can you put in a meeting for the blue room on friday?,original,book,1 -no,that's not right?,parrot,cancel,3 -thank_you,thank you,original,bye,2 -calendar_update,let the date of june 4 open on my calendar,parrot,resched,5 -calendar_update,clear my calendar for this friday,original,resched,5 -yes,approved,original,book,1 -greeting,what's happening?,parrot,greet,4 -no,definitely not,original,cancel,3 -no,that's not the case,parrot,cancel,3 -thank_you,thank you?,parrot,bye,2 -thank_you,you're welcome,parrot,bye,2 -yes,absolutely,original,book,1 -calendar_update,remove this event from this afternoon,parrot,resched,5 -no,there's no way it's true,parrot,cancel,3 -yes,certainly,parrot,book,1 -no,negative,original,cancel,3 -goodbye,i'm going,parrot,bye,2 -yes,yeah you got it,lambada,book,1 -yes,that would be yes,original,book,1 -no,naw,parrot,cancel,3 -greeting,how is idy doing?,parrot,greet,4 -how_busy,show me the wait times at applebee's?,parrot,avail,0 -date,in 8 days?,parrot,avail,0 -thank_you,your answer was enjoyable,original,bye,2 -how_busy,how many people do you think are at chili's around 11pm,lambada,avail,0 -calendar_update,stop this thing today,parrot,resched,5 -thank_you,okay thanks,original,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -goodbye,i'm gone,parrot,bye,2 -yes,so it works,parrot,book,1 -no,hell nah,original,cancel,3 -greeting,all right now?,parrot,greet,4 -how_busy,how long will it take you to get a table at the hotel?,parrot,avail,0 -date,what's my date for tomorrow?,parrot,avail,0 -greeting,hey,original,greet,4 -yes,yay,lambada,book,1 -no,FALSE,lambada,cancel,3 -thank_you,"good job, thanks",lambada,bye,2 -no,it's absolutely false,parrot,cancel,3 -meeting_schedule,can i meet kim today?,parrot,avail,0 -greeting,"hey, what's new",original,greet,4 -date,which date today?,parrot,avail,0 -yes,TRUE,lambada,book,1 -no,nay,original,cancel,3 -calendar_update,what cancels the event on may 17?,parrot,resched,5 -calendar,tell me where my calendar looks like for march 28?,lambada,avail,0 -greeting,ahoy there,lambada,greet,4 -cancel_reservation,cancel my dinner reservation,lambada,cancel,3 -no,not correct,parrot,cancel,3 -calendar,tell me what is in my calendar for march 23rd?,lambada,avail,0 -date,what's today,original,avail,0 -greeting,welcome,parrot,greet,4 -thank_you,you did it,parrot,bye,2 -yes,that's right,original,book,1 -schedule_meeting,can you schedule a meeting with damon?,parrot,book,1 -goodbye,peace,original,bye,2 -how_busy,would i get a busy atmosphere at chili's around 7pm,lambada,avail,0 -no,i think not,original,cancel,3 -greeting,what's new?,parrot,greet,4 -how_busy,how long do i have to wait for a table in olive garden?,parrot,avail,0 -reminder_update,i need to remind myself,parrot,resched,5 -reminder_update,"create a reminder, please",lambada,resched,5 -goodbye,i enjoy our chat,lambada,bye,2 -greeting,hey fellow,parrot,greet,4 -no,"no, it's not",lambada,cancel,3 -greeting,how's life?,parrot,greet,4 -greeting,"hello, what's up",original,greet,4 -greeting,good day,original,greet,4 -greeting,bonjour,original,greet,4 -greeting,have you felt?,parrot,greet,4 -greeting,hello how are you,lambada,greet,4 -yes,huh,parrot,book,1 -greeting,what's happening?,parrot,greet,4 -goodbye,buhbye,original,bye,2 -date,date tomorrow,parrot,avail,0 -calendar,did you put an event on my calendar to get an annual physical?,parrot,avail,0 -calendar,do you have anything on my calendar for march 7th?,parrot,avail,0 -greeting,so what's up?,parrot,greet,4 -yes,right,parrot,book,1 -no,it's very false,parrot,cancel,3 -goodbye,i need to go,lambada,bye,2 -no,FALSE,original,cancel,3 -yes,accepted,original,book,1 -how_busy,is macy's busy?,parrot,avail,0 -goodbye,no problem just take it easy,parrot,bye,2 -greeting,welcome,parrot,greet,4 -no,that is very false,lambada,cancel,3 -yes,good yes,lambada,book,1 -yes,indeed,original,book,1 -how_busy,can you tell me how busy the olive garden is at noon?,parrot,avail,0 -date,what's today?,parrot,avail,0 -how_busy,will the steak house be busy at 730?,parrot,avail,0 -how_busy,how busy is the cheesecake factory at 5 pm,lambada,avail,0 -reminder_update,let me be reminded?,parrot,resched,5 -reminder_update,a new reminder,parrot,resched,5 -thank_you,thank you for answering,parrot,bye,2 -how_busy,can you tell me how busy the olive garden is around 5?,lambada,avail,0 -greeting,what's happened?,parrot,greet,4 -greeting,"hi, ai",original,greet,4 -thank_you,gracias,original,bye,2 -greeting,how's ayi doing?,parrot,greet,4 -date,today is what date,original,avail,0 -yes,yeah yeah,lambada,book,1 -thank_you,thanks again!,original,bye,2 -greeting,salutations,parrot,greet,4 -yes,"yeah, that's true",lambada,book,1 -how_busy,how busy will it be at 6pm?,parrot,avail,0 -no,that seems wrong,lambada,cancel,3 -yes,confirm,original,book,1 -greeting,heyo,original,greet,4 -date,today?,parrot,avail,0 -no,that's inaccurate,original,cancel,3 -goodbye,later!,original,bye,2 -thank_you,and i appreciate the gesture you made,parrot,bye,2 -reminder_update,"new reminder, please",original,resched,5 -goodbye,the talk was nice,lambada,bye,2 -greeting,ahoy there,lambada,greet,4 -no,no!,original,cancel,3 -greeting,hello what's happening,parrot,greet,4 -reminder_update,set a reminder for me to do this in a bit,original,resched,5 -greeting,hola,original,greet,4 -yes,please confirm this is true,parrot,book,1 -thank_you,you're welcome,parrot,bye,2 -thank_you,thanks,original,bye,2 -date,what year?,parrot,avail,0 -goodbye,glad we can talk,parrot,bye,2 -thank_you,thanks a lot,original,bye,2 -date,what's going to happen next?,parrot,avail,0 -greeting,well hi there,original,greet,4 -no,nada,original,cancel,3 -thank_you,thank you for making my life easier,parrot,bye,2 -cancel_reservation,you can cancel my reservation at the red robin,parrot,cancel,3 -greeting,heller,original,greet,4 -thank_you,well done,parrot,bye,2 -greeting,how's this going?,parrot,greet,4 -meeting_schedule,meeting today,parrot,avail,0 -no,negatory,original,cancel,3 -no,no,lambada,cancel,3 -how_busy,mcdonald's busy around 9?,parrot,avail,0 -greeting,"hello, friend",original,greet,4 -how_busy,what is the wait time at this pizza factory?,lambada,avail,0 -goodbye,bye!,original,bye,2 -greeting,how's this going?,parrot,greet,4 -no,that is wrong,original,cancel,3 -goodbye,sayonara,original,bye,2 -no,is not true?,parrot,cancel,3 -how_busy,can you tell me how long the wait will be in olive garden?,parrot,avail,0 -no,invalid,original,cancel,3 -date,is monday wednesday thursday friday saturday?,parrot,avail,0 -cancel_reservation,my reservation for dinner tonight has to be cancelled,parrot,cancel,3 -greeting,what is new?,parrot,greet,4 -no,nay,original,cancel,3 -goodbye,wonderful conversation,lambada,bye,2 -yes,huh,parrot,book,1 -yes,a fact,parrot,book,1 -thank_you,your answer pleased me,original,bye,2 -yes,sure,original,book,1 -yes,can we please?,original,book,1 -greeting,hello how are things?,parrot,greet,4 -yes,indeed,original,book,1 -goodbye,regards,original,bye,2 -no,naw,original,cancel,3 -yes,i'm going to tell you tes,parrot,book,1 -thank_you,so grateful,parrot,bye,2 -no,that's so wrong,parrot,cancel,3 -yes,roger that,original,book,1 -meeting_schedule,meeting today,parrot,avail,0 -yes,yep,original,book,1 -greeting,salutations!,original,greet,4 -thank_you,"great, thanks!",original,bye,2 -no,so that's no,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -date,what's the day like?,parrot,avail,0 -greeting,yo,original,greet,4 -thank_you,good job with good effort,parrot,bye,2 -reminder_update,make a reminder to pick up the cat?,parrot,resched,5 -goodbye,have a good one?,original,bye,2 -goodbye,i must catch up,parrot,bye,2 -yes,accept,parrot,book,1 -meeting_schedule,let me know of every meeting i have scheduled today,parrot,avail,0 -how_busy,does mr joe's pizza have a long waiting list?,parrot,avail,0 -greeting,good evening,original,greet,4 -no,that is overwhelmingly wrong,lambada,cancel,3 -yes,accept,parrot,book,1 -yes,TRUE,lambada,book,1 -yes,a fact,parrot,book,1 -how_busy,is the restaurant usually crowded around 8 pm?,parrot,avail,0 -meeting_schedule,when does richard meet me,parrot,avail,0 -how_busy,how long will the wait at chili's be around 6pm,parrot,avail,0 -cancel_reservation,cancel my reservation for me?,parrot,cancel,3 -thank_you,i'm thankful,original,bye,2 -yes,it also makes sense,parrot,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -greeting,hey what's going on?,parrot,greet,4 -meeting_schedule,what are my scheduled meetings for today?,parrot,avail,0 -yes,indeed,original,book,1 -yes,certainly true,parrot,book,1 -no,no no thanks,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -no,no?,parrot,cancel,3 -calendar,are there any active events for march 4th?,lambada,avail,0 -how_busy,can you tell me how long will there be wait in order to get a table at red lobster?,lambada,avail,0 -greeting,"ai, how is my life",lambada,greet,4 -yes,definitely,original,book,1 -yes,confirmed,original,book,1 -thank_you,and i thank you,parrot,bye,2 -how_busy,wait in the restaurant?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -date,in 10 days?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,thanks for answering that,lambada,bye,2 -yes,very true,original,book,1 -goodbye,bye bye!,original,bye,2 -no,nope,original,cancel,3 -goodbye,buhbye,original,bye,2 -greeting,how's this going?,parrot,greet,4 -no,naw,parrot,cancel,3 -greeting,heller,original,greet,4 -greeting,is everything okay today?,parrot,greet,4 -how_busy,how busy will i have to be at pizzeria around 8 pm,lambada,avail,0 -yes,"yes, that's correct",original,book,1 -thank_you,thank you for coming,parrot,bye,2 -yes,yeah that's right,lambada,book,1 -how_busy,can i expect a long wait at chocolate fountains?,parrot,avail,0 -goodbye,bye now,original,bye,2 -calendar_update,tell me the best way to remove an appointment?,parrot,resched,5 -cancel_reservation,fill in my reservation at white cliffs,parrot,cancel,3 -no,false sure,parrot,cancel,3 -greeting,what's new?,parrot,greet,4 -greeting,how you feel?,parrot,greet,4 -no,it's false,parrot,cancel,3 -no,"no, don't do that",original,cancel,3 -meeting_schedule,what's on my schedule today?,parrot,avail,0 -thank_you,merci beaucoup,original,bye,2 -how_busy,how long will it take to sit at the flying wand?,parrot,avail,0 -schedule_meeting,a meeting with steve at 3pm,parrot,book,1 -yes,uh huh,original,book,1 -meeting_schedule,does today's schedule include meetings?,parrot,avail,0 -thank_you,thank ya!,original,bye,2 -goodbye,adios,original,bye,2 -yes,so it's true,parrot,book,1 -goodbye,farewell,original,bye,2 -greeting,bonjour,original,greet,4 -thank_you,you've been great,parrot,bye,2 -greeting,"hello, anyone there",original,greet,4 -goodbye,adios ai,original,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -how_busy,waiting for chocolate chip cookies?,parrot,avail,0 -yes,okay,original,book,1 -yes,absolutely!,original,book,1 -greeting,hi,original,greet,4 -calendar,what's on my calendar for march 3rd,parrot,avail,0 -yes,agreed,original,book,1 -goodbye,goodbye!,original,bye,2 -goodbye,"thanks, bye",original,bye,2 -how_busy,how long will i have to wait for the tequila bar,parrot,avail,0 -goodbye,"that's all, bye",original,bye,2 -yes,oh-huh,parrot,book,1 -calendar,what's on my calendar for march 01?,parrot,avail,0 -goodbye,im leaving,parrot,bye,2 -cancel_reservation,cancel my reservation for me?,parrot,cancel,3 -how_busy,how many people will wait for orange sauce at 7 pm,parrot,avail,0 -greeting,hello there ai,original,greet,4 -yes,very true,original,book,1 -no,so that's no,parrot,cancel,3 -yes,"yes, please",original,book,1 -how_busy,want to know how busy red robin is at 7 o'clock,parrot,avail,0 -no,it's not true,parrot,cancel,3 -how_busy,is the mall open until noon?,parrot,avail,0 -no,i meant nothing,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -reminder_update,how do you remind me to put the clothes in the dryer?,parrot,resched,5 -date,today?,parrot,avail,0 -thank_you,you've been great,parrot,bye,2 -goodbye,see you later alligator,original,bye,2 -greeting,"hello, hello, hello",lambada,greet,4 -yes,yay,lambada,book,1 -goodbye,peace out!,original,bye,2 -meeting_schedule,what time and date did you meet stacy?,parrot,avail,0 -yes,absolutely,original,book,1 -yes,oh-huh,parrot,book,1 -no,erroneous,parrot,cancel,3 -yes,all right,parrot,book,1 -reminder_update,i need to be reminded to be a professional photographer,lambada,resched,5 -calendar,what's going on may 4?,parrot,avail,0 -calendar,what do i have going on on my calendar for march 18th?,original,avail,0 -no,invalid,original,cancel,3 -goodbye,adios!,original,bye,2 -no,negatory?,parrot,cancel,3 -goodbye,see ya,lambada,bye,2 -thank_you,you helped,parrot,bye,2 -yes,positive,original,book,1 -no,thanks no,parrot,cancel,3 -no,negation,parrot,cancel,3 -goodbye,see ya later,original,bye,2 -how_busy,how busy is jenny's fried chicken at 6 pm,lambada,avail,0 -goodbye,tootles,original,bye,2 -yes,yeah yeah,lambada,book,1 -goodbye,i like our chat,parrot,bye,2 -thank_you,you've tried,parrot,bye,2 -how_busy,can you tell me how busy orange blossoms is at 3pm?,parrot,avail,0 -no,not good,parrot,cancel,3 -yes,"yes, that's correct",original,book,1 -goodbye,goodbyes,parrot,bye,2 -yes,yay,lambada,book,1 -goodbye,see ya,original,bye,2 -date,which day will be my wedding in three days?,parrot,avail,0 -greeting,yo,original,greet,4 -no,that's incorrect,original,cancel,3 -goodbye,good-bye,parrot,bye,2 -goodbye,i leave now,parrot,bye,2 -no,no?,parrot,cancel,3 -goodbye,this conversation was good,parrot,bye,2 -goodbye,buhbye,original,bye,2 -greeting,aloha,original,greet,4 -yes,you are correct,original,book,1 -yes,yes you have been successful,lambada,book,1 -goodbye,good-bye,parrot,bye,2 -no,i don't think so,original,cancel,3 -reminder_update,give the cat flea medicine,parrot,resched,5 -no,negatory,original,cancel,3 -calendar,what's my schedule for thursday 14?,parrot,avail,0 -how_busy,how busy is the coffee shop at 8 am,lambada,avail,0 -greeting,hey,original,greet,4 -greeting,how you are,original,greet,4 -thank_you,awesome thanks,parrot,bye,2 -cancel_reservation,please cancel my pmc reservation at the parc,parrot,cancel,3 -goodbye,peace,original,bye,2 -calendar,what do i have next friday?,parrot,avail,0 -no,i believe that to be false,original,cancel,3 -no,nada,original,cancel,3 -yes,a fact,parrot,book,1 -yes,TRUE,lambada,book,1 -greeting,how've you been,original,greet,4 -date,today?,parrot,avail,0 -greeting,wassup,original,greet,4 -thank_you,you have made my life so much easier,lambada,bye,2 -goodbye,sayonara,original,bye,2 -no,erroneous,parrot,cancel,3 -yes,you got it,parrot,book,1 -yes,my response is yes,parrot,book,1 -goodbye,goodbye soon,lambada,bye,2 -how_busy,do you know how long the wait will be at chris' place?,lambada,avail,0 -no,naw,parrot,cancel,3 -how_busy,is macy's busy?,parrot,avail,0 -reminder_update,what about a reminder,parrot,resched,5 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -yes,ya,original,book,1 -goodbye,"nice talk, goodbye",lambada,bye,2 -goodbye,have fun?,lambada,bye,2 -thank_you,it pleased me,parrot,bye,2 -yes,sure,original,book,1 -thank_you,i'm happy you've helped me,parrot,bye,2 -goodbye,talk later,original,bye,2 -no,no thanks,original,cancel,3 -greeting,heyo,original,greet,4 -yes,that's right,original,book,1 -calendar,list the dates on my calendar?,parrot,avail,0 -cancel_reservation,my reservation for dinner must be cancelled,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -how_busy,how busy are applebees at noon?,parrot,avail,0 -greeting,hello siri,original,greet,4 -goodbye,farewell!,original,bye,2 -no,nothing good,parrot,cancel,3 -no,no?,parrot,cancel,3 -thank_you,please thank me for my time,lambada,bye,2 -greeting,heyo,original,greet,4 -thank_you,"oh, thanks",original,bye,2 -calendar,what's the calendar for march 1?,parrot,avail,0 -yes,uh-huh,original,book,1 -meeting_schedule,what time do i have to meet mr accountant?,parrot,avail,0 -yes,i agree,original,book,1 -yes,10-Apr,original,book,1 -thank_you,appreciated,original,bye,2 -thank_you,thanks for helping out,original,bye,2 -greeting,salutations!,original,greet,4 -goodbye,regards,original,bye,2 -yes,positive,parrot,book,1 -no,no it's not,parrot,cancel,3 -calendar,are there any events on my calendar for march 2nd?,original,avail,0 -greeting,heller,original,greet,4 -no,no,lambada,cancel,3 -thank_you,thanks very much,parrot,bye,2 -goodbye,adios,original,bye,2 -goodbye,see you soon,original,bye,2 -calendar_update,put an appointment for my doctor for the 2nd of march,lambada,resched,5 -thank_you,thank you,original,bye,2 -calendar_update,can you add to my calendar on june 7th the date of feb 5th?,lambada,resched,5 -goodbye,regards,original,bye,2 -greeting,hey there fellow,original,greet,4 -no,that’s incorrect,original,cancel,3 -greeting,hola,original,greet,4 -no,not good,parrot,cancel,3 -greeting,how is life?,parrot,greet,4 -goodbye,bye bye now,lambada,bye,2 -greeting,well hello,original,greet,4 -cancel_reservation,can you cancel my reservation for dinner tonight?,parrot,cancel,3 -yes,so it's true,parrot,book,1 -reminder_update,remember to call my mom,parrot,resched,5 -thank_you,i appreciate your answer,parrot,bye,2 -no,erroneous,parrot,cancel,3 -no,that's so false,parrot,cancel,3 -yes,right,parrot,book,1 -yes,that's right,original,book,1 -yes,agreed,original,book,1 -reminder_update,please remember me,parrot,resched,5 -greeting,good evening,original,greet,4 -greeting,bonjour,original,greet,4 -goodbye,"thanks, bye",original,bye,2 -how_busy,how busy will the restaurant be?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -cancel_reservation,i won't use my reservation,parrot,cancel,3 -yes,i think you're right,parrot,book,1 -thank_you,thank you kindly,original,bye,2 -yes,good,parrot,book,1 -how_busy,tell me the average wait time in a chinese restaurant?,parrot,avail,0 -yes,great,original,book,1 -no,it's so bad,parrot,cancel,3 -how_busy,how busy is mcdonald's at 5pm?,parrot,avail,0 -goodbye,"i have been chatting with you lately, bye",lambada,bye,2 -yes,yay,lambada,book,1 -no,that's negative,parrot,cancel,3 -cancel_reservation,is it possible to cancel my reservation in the restaurant?,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -yes,affirmitive,original,book,1 -yes,right,parrot,book,1 -greeting,how's that hanging?,parrot,greet,4 -greeting,how's everything,original,greet,4 -meeting_schedule,do i have any meetings today?,lambada,avail,0 -thank_you,thank you please,parrot,bye,2 -calendar_update,can you add this on the calendar for tomorrow?,lambada,resched,5 -thank_you,i'm really grateful,parrot,bye,2 -yes,uh-huh,original,book,1 -greeting,hello how're you doing?,parrot,greet,4 -cancel_reservation,cancel my reservation for jimmy at the outback,parrot,cancel,3 -how_busy,what's the current wait time at the peppermill?,parrot,avail,0 -thank_you,much obliged,original,bye,2 -thank_you,your answer was good,original,bye,2 -no,not true,original,cancel,3 -how_busy,is chili busy at 5 pm?,parrot,avail,0 -date,in 10 days what will be the date of the day,parrot,avail,0 -thank_you,appreciated,original,bye,2 -reminder_update,let me remember,parrot,resched,5 -yes,that checks out,original,book,1 -how_busy,what time is it to get a table in this restaurant?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -yes,right,parrot,book,1 -goodbye,i'm out of this,parrot,bye,2 -how_busy,how long will i be waiting at the rancho rancho,lambada,avail,0 -no,naw,original,cancel,3 -yes,facts,original,book,1 -reminder_update,i'd like a reminder,parrot,resched,5 -thank_you,thanks,original,bye,2 -thank_you,thanks!,original,bye,2 -cancel_reservation,will my reservation at restaurant be cancelled,lambada,cancel,3 -greeting,nice day,lambada,greet,4 -thank_you,gracias,original,bye,2 -how_busy,how long should i wait to be seated at red rooster,lambada,avail,0 -greeting,hi how's the situation?,parrot,greet,4 -date,what will be the day tomorrow?,parrot,avail,0 -no,that's untrue,parrot,cancel,3 -schedule_meeting,friday 5pm schedule a room for meeting,original,book,1 -no,so that's no,parrot,cancel,3 -greeting,you're all right?,parrot,greet,4 -cancel_reservation,cancel my dinner reservation,lambada,cancel,3 -thank_you,"awesome, thanks",original,bye,2 -no,that's very negative,parrot,cancel,3 -thank_you,and i'm grateful,parrot,bye,2 -thank_you,nice,parrot,bye,2 -schedule_meeting,how does scheduling a meeting work,original,book,1 -thank_you,appreciated,original,bye,2 -no,that's bad,parrot,cancel,3 -calendar_update,i need to make changes to my calendar for may 29th,lambada,resched,5 -goodbye,peace out!,original,bye,2 -yes,confirm,original,book,1 -how_busy,does the olive garden have a long wait before dinner?,parrot,avail,0 -no,it's so bad,parrot,cancel,3 -yes,approved,original,book,1 -yes,yay,lambada,book,1 -greeting,how you're doing?,parrot,greet,4 -how_busy,how long will it take me to sit in ihop?,parrot,avail,0 -goodbye,say goodbye now,parrot,bye,2 -goodbye,sayonara ,parrot,bye,2 -date,what is a month of the year?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -date,today?,parrot,avail,0 -yes,"yes, that's accurate",original,book,1 -no,"please, no",original,cancel,3 -date,what date is today?,original,avail,0 -yes,obviously,parrot,book,1 -how_busy,is the olive garden busy around 6 o'clock?,parrot,avail,0 -thank_you,thanks again,original,bye,2 -yes,TRUE,original,book,1 -date,what's the current date,original,avail,0 -how_busy,how busy is ihop?,parrot,avail,0 -no,no way,original,cancel,3 -thank_you,really great!,original,bye,2 -yes,i know that is true,original,book,1 -no,nope,original,cancel,3 -thank_you,good job,lambada,bye,2 -greeting,whats new,lambada,greet,4 -meeting_schedule,what meetings are today?,lambada,avail,0 -how_busy,can you tell me the most popular time at the cheesecake shop?,parrot,avail,0 -thank_you,i am thankful,lambada,bye,2 -date,give me a date today?,parrot,avail,0 -thank_you,thank you for making my life easier,parrot,bye,2 -yes,right,parrot,book,1 -goodbye,say goodbye,parrot,bye,2 -goodbye,goodbye bye,parrot,bye,2 -yes,"yes, please",original,book,1 -how_busy,how long will it take for me to be seated at olive garden,lambada,avail,0 -no,negatory?,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -yes,that is accurate,original,book,1 -yes,i know that's true,parrot,book,1 -calendar,check my calendar for march 5?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -date,date please,original,avail,0 -goodbye,good call,parrot,bye,2 -greeting,are you doing anything good?,parrot,greet,4 -greeting,hey yai,lambada,greet,4 -cancel_reservation,get a salad off,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -goodbye,farewell!,original,bye,2 -how_busy,check to see how long i would wait if i went to the outback steakhouse,parrot,avail,0 -goodbye,adios!,original,bye,2 -greeting,aho,parrot,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -greeting,hello how you doing,lambada,greet,4 -goodbye,goodbye ai,parrot,bye,2 -greeting,hello,original,greet,4 -greeting,whats up?,parrot,greet,4 -yes,that would be true,original,book,1 -yes,that's correct,original,book,1 -goodbye,goodbye now,parrot,bye,2 -meeting_schedule,when's my meeting with daddy?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -greeting,how's idy doing?,parrot,greet,4 -date,in 9 days?,parrot,avail,0 -no,no that's wrong,original,cancel,3 -calendar,on the 26th what is on the table for my calendar,original,avail,0 -goodbye,this conversation was wonderful,parrot,bye,2 -no,negative,original,cancel,3 -reminder_update,remind me friday to call my mother,original,resched,5 -how_busy,how long is the wait to get a table at red lobster,lambada,avail,0 -yes,uh-huh,original,book,1 -goodbye,goodbye,original,bye,2 -goodbye,goodbye soon,lambada,bye,2 -no,hell nah,original,cancel,3 -calendar,what's going on on march 15th,parrot,avail,0 -greeting,hello there!,original,greet,4 -thank_you,appreciated,original,bye,2 -goodbye,bye bye,lambada,bye,2 -reminder_update,set a reminder to bring a book to work tomorrow,original,resched,5 -goodbye,signing off,original,bye,2 -yes,confirm,original,book,1 -no,not at all,original,cancel,3 -how_busy,how long until dinner?,parrot,avail,0 -thank_you,"that'll work, good job!",original,bye,2 -yes,yep,original,book,1 -goodbye,adios,original,bye,2 -how_busy,does the restaurant get crowded at lunchtime?,parrot,avail,0 -thank_you,i appreciate your gesture,lambada,bye,2 -thank_you,nice,parrot,bye,2 -no,that's erroneous,parrot,cancel,3 -date,what year?,parrot,avail,0 -greeting,hey yai,lambada,greet,4 -schedule_meeting,if there's a meeting room available at 11am?,parrot,book,1 -yes,certainly,parrot,book,1 -yes,oh-huh,parrot,book,1 -no,that is incorrect,original,cancel,3 -goodbye,i’m leaving-goodbye!,original,bye,2 -goodbye,fairwell,original,bye,2 -calendar,what am i supposed to have for next friday?,parrot,avail,0 -greeting,heller,original,greet,4 -no,that isn't correct,original,cancel,3 -goodbye,good-bye,parrot,bye,2 -reminder_update,set reminder to prepare for my meeting at 10 am,original,resched,5 -yes,good,parrot,book,1 -how_busy,how busy will honey be at the dinner table,parrot,avail,0 -no,hell nah,original,cancel,3 -greeting,heller,original,greet,4 -greeting,heyo,original,greet,4 -how_busy,how long can i wait to be seated at the fountain of pizza,parrot,avail,0 -meeting_schedule,do you think the gang is coming together today?,parrot,avail,0 -yes,all right,original,book,1 -no,nay,original,cancel,3 -greeting,hey hey!,original,greet,4 -no,that's wrong,original,cancel,3 -greeting,bonjour,original,greet,4 -goodbye,later!,original,bye,2 -greeting,what's new?,parrot,greet,4 -cancel_reservation,now i don't want my reservation anymore,parrot,cancel,3 -goodbye,thanks for the talk take care of yourself,parrot,bye,2 -goodbye,i'm going,parrot,bye,2 -greeting,hey,original,greet,4 -greeting,hi,original,greet,4 -greeting,hiya!,original,greet,4 -greeting,salutations,parrot,greet,4 -no,nothing good,parrot,cancel,3 -yes,affirmitive,original,book,1 -greeting,"hey, how's it going",original,greet,4 -goodbye,goodbye later,parrot,bye,2 -yes,say positive,parrot,book,1 -yes,accept,parrot,book,1 -goodbye,goodbye later,parrot,bye,2 -calendar_update,i don't want this event on my calendar,parrot,resched,5 -meeting_schedule,what is the meeting time?,lambada,avail,0 -no,that is untrue,original,cancel,3 -how_busy,what's the busyness at olive garden around 4,lambada,avail,0 -meeting_schedule,when is the meeting with jim?,parrot,avail,0 -goodbye,a good conversation,parrot,bye,2 -thank_you,well done,parrot,bye,2 -no,it is no,original,cancel,3 -yes,it's certainly positive,parrot,book,1 -yes,affirmative,original,book,1 -meeting_schedule,list the meetings today?,parrot,avail,0 -how_busy,is the canadian restaurant usually busy at 5 o'clock?,parrot,avail,0 -goodbye,goodbye soon,lambada,bye,2 -goodbye,i'm out of this,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,you've been great,parrot,bye,2 -how_busy,how long is the wait at chili's right now?,parrot,avail,0 -thank_you,thanks very much for your answer,parrot,bye,2 -yes,10-Apr,original,book,1 -how_busy,is ihop currently busy?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -goodbye,i'll be on the way,parrot,bye,2 -no,that's negative,parrot,cancel,3 -no,that's no,parrot,cancel,3 -yes,can we please?,original,book,1 -thank_you,i'm very grateful,parrot,bye,2 -yes,it's true yes,parrot,book,1 -thank_you,"great, thanks!",original,bye,2 -yes,correct,original,book,1 -reminder_update,what's a reminder,parrot,resched,5 -how_busy,how long will it take to get a burger at 5:30,lambada,avail,0 -yes,that will be true,original,book,1 -goodbye,buhbye,original,bye,2 -reminder_update,please remind me,parrot,resched,5 -greeting,hello,original,greet,4 -goodbye,later,original,bye,2 -greeting,"hi, ai",original,greet,4 -goodbye,will leave now,parrot,bye,2 -thank_you,thank you?,parrot,bye,2 -no,FALSE,original,cancel,3 -yes,yeap,original,book,1 -no,negating,parrot,cancel,3 -schedule_meeting,please reserve a meeting room for thursday at 5pm,lambada,book,1 -greeting,ahoy,lambada,greet,4 -goodbye,maybe next time,parrot,bye,2 -yes,say positive,parrot,book,1 -thank_you,thanks so much!,original,bye,2 -yes,uh-huh,original,book,1 -goodbye,greetings,parrot,bye,2 -no,that's not correct,original,cancel,3 -thank_you,gracias,original,bye,2 -yes,sure thing,original,book,1 -reminder_update,set up a new reminder to alert me when it's time to put the trash out,original,resched,5 -goodbye,bye bye,lambada,bye,2 -no,"no, definitely not",original,cancel,3 -yes,yep,original,book,1 -yes,my answer is yes,parrot,book,1 -no,that's incorrect,original,cancel,3 -calendar,what do you have planned for february 12?,parrot,avail,0 -goodbye,thanks bye bye!,original,bye,2 -schedule_meeting,create a meeting for me,lambada,book,1 -greeting,hey what's up,original,greet,4 -thank_you,you did it,parrot,bye,2 -thank_you,let me thank you,original,bye,2 -greeting,hiya,original,greet,4 -how_busy,wait at olive garden at 4 pm,parrot,avail,0 -no,that’s actually wrong,original,cancel,3 -yes,positive,parrot,book,1 -thank_you,"nice, excellent!",original,bye,2 -greeting,all right now?,parrot,greet,4 -yes,that would be awesome,original,book,1 -greeting,how's my day been?,parrot,greet,4 -yes,yeah,original,book,1 -goodbye,farewell!,original,bye,2 -thank_you,again thanks,parrot,bye,2 -goodbye,peace out!,original,bye,2 -yes,ya,original,book,1 -yes,yeah,original,book,1 -goodbye,adios!,original,bye,2 -no,negation,parrot,cancel,3 -yes,that would be right,parrot,book,1 -thank_you,thanks a lot,original,bye,2 -yes,right,parrot,book,1 -greeting,hiya!,original,greet,4 -goodbye,go easy,parrot,bye,2 -greeting,how it goes?,parrot,greet,4 -goodbye,farewell,original,bye,2 -goodbye,this conversation was great,parrot,bye,2 -greeting,hey hey!,original,greet,4 -no,is not true?,parrot,cancel,3 -goodbye,be careful then,lambada,bye,2 -yes,uh-huh,original,book,1 -reminder_update,remind me,original,resched,5 -goodbye,", goodbye",lambada,bye,2 -reminder_update,remind me to bring a jacket tomorrow,parrot,resched,5 -goodbye,goodbye to you,original,bye,2 -yes,yay,lambada,book,1 -no,negatory,original,cancel,3 -cancel_reservation,you can cancel my reservation at the loft,parrot,cancel,3 -yes,i think that is correct,lambada,book,1 -calendar,is the calendar already marked easter?,parrot,avail,0 -meeting_schedule,does jimmy have meetings between 5 and 10?,parrot,avail,0 -greeting,what's happened?,parrot,greet,4 -thank_you,thank you,original,bye,2 -how_busy,how many people go to chili around 12pm,parrot,avail,0 -thank_you,your response was good,parrot,bye,2 -yes,okay,original,book,1 -no,it's negative,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -calendar,can you tell me what's on my calendar for tuesday?,parrot,avail,0 -goodbye,bye for now,original,bye,2 -schedule_meeting,how is a meeting scheduled,original,book,1 -reminder_update,remind me,original,resched,5 -greeting,how is everything?,parrot,greet,4 -how_busy,how long will i wait if i go to the outback steak house?,parrot,avail,0 -thank_you,i owe you,parrot,bye,2 -no,it's not what i want,parrot,cancel,3 -greeting,hello ai,parrot,greet,4 -yes,that's absolutely true,parrot,book,1 -yes,correct,original,book,1 -greeting,hola,original,greet,4 -yes,yup,original,book,1 -goodbye,"thanks for chatting, bye",lambada,bye,2 -how_busy,chili's busy around 730?,parrot,avail,0 -yes,certainly,parrot,book,1 -goodbye,goodbye now,parrot,bye,2 -yes,that's true,original,book,1 -yes,im sure you're true,parrot,book,1 -date,a year?,parrot,avail,0 -meeting_schedule,what if any meetings do i have today?,original,avail,0 -goodbye,"thanks, bye",original,bye,2 -thank_you,very grateful,parrot,bye,2 -no,negating,parrot,cancel,3 -schedule_meeting,set an appointment for john at 11 am,parrot,book,1 -no,negatory?,parrot,cancel,3 -no,no good,original,cancel,3 -how_busy,chili's busy around 730?,parrot,avail,0 -yes,approved,original,book,1 -goodbye,goodnight,original,bye,2 -greeting,aloha,original,greet,4 -date,what day will it be after eight days?,parrot,avail,0 -greeting,hello good morning,parrot,greet,4 -calendar_update,i need to put my appointment for tomorrow on my calendar,original,resched,5 -yes,ya,original,book,1 -no,no,lambada,cancel,3 -calendar,read my calendar,parrot,avail,0 -yes,certainly,parrot,book,1 -yes,10-Apr,original,book,1 -yes,TRUE,lambada,book,1 -calendar,tell me if there's an annual physical in my calendar,parrot,avail,0 -how_busy,how long will it take for ihop to open at 5?,parrot,avail,0 -yes,i guess,parrot,book,1 -meeting_schedule,do i have to meet the dev team?,parrot,avail,0 -yes,true is my response,original,book,1 -yes,not false,parrot,book,1 -goodbye,", goodbye",lambada,bye,2 -goodbye,goodnight,original,bye,2 -cancel_reservation,i created the reservation but it's not necessary anymore,parrot,cancel,3 -goodbye,peace out!,original,bye,2 -goodbye,goodbye bye,parrot,bye,2 -greeting,hola!,original,greet,4 -how_busy,can i expect red robin to be busy at 5 p?,parrot,avail,0 -no,negating,parrot,cancel,3 -no,that's a no,lambada,cancel,3 -yes,yes that's correct,original,book,1 -thank_you,thanks for giving me assistance,original,bye,2 -greeting,what's my day like?,parrot,greet,4 -yes,agreed,original,book,1 -no,no?,parrot,cancel,3 -greeting,hiya,original,greet,4 -greeting,hello ai,parrot,greet,4 -yes,"yup, that is true",lambada,book,1 -thank_you,you're the best!,original,bye,2 -goodbye,farewell!,original,bye,2 -yes,"agreed, that's valid",original,book,1 -greeting,how were you?,parrot,greet,4 -thank_you,okay thank you,parrot,bye,2 -how_busy,is the restaurant busy between 11 and 5?,lambada,avail,0 -greeting,how's idy doing,lambada,greet,4 -yes,confirm,original,book,1 -goodbye,see ya,lambada,bye,2 -greeting,tell me how ai is doing now?,parrot,greet,4 -greeting,wassup,original,greet,4 -yes,positive,parrot,book,1 -goodbye,you're done,parrot,bye,2 -goodbye,have a good day?,original,bye,2 -reminder_update,please make a reminder,original,resched,5 -thank_you,"thanks, that's helpful",original,bye,2 -thank_you,many thank,original,bye,2 -goodbye,fairwell,original,bye,2 -greeting,how's it going right now?,parrot,greet,4 -meeting_schedule,are there any meetings planned for today?,parrot,avail,0 -goodbye,great talk,lambada,bye,2 -cancel_reservation,the reservation is no longer necessary,parrot,cancel,3 -thank_you,thanks for doing it,parrot,bye,2 -goodbye,thank you for talking to me bye,parrot,bye,2 -yes,agreed,original,book,1 -yes,exactly right,original,book,1 -greeting,how've you been?,parrot,greet,4 -thank_you,thanks,original,bye,2 -greeting,"hey, ai",original,greet,4 -goodbye,afterward,parrot,bye,2 -no,nothing,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -goodbye,goodbye soon,lambada,bye,2 -reminder_update,remember me to call tomorrow,parrot,resched,5 -greeting,how's my day been?,parrot,greet,4 -date,what's the day tomorrow?,parrot,avail,0 -yes,"yes, that's affirmative",original,book,1 -no,negative sure,parrot,cancel,3 -meeting_schedule,what's on my schedule today?,parrot,avail,0 -yes,i guess yes,parrot,book,1 -thank_you,you made me aware,parrot,bye,2 -calendar,check my calendar for october 3rd?,parrot,avail,0 -goodbye,i'm out,parrot,bye,2 -yes,that's a clear yes,parrot,book,1 -thank_you,thank you!,original,bye,2 -thank_you,thank you,original,bye,2 -thank_you,i'm so grateful,parrot,bye,2 -yes,accept,parrot,book,1 -yes,that checks out,original,book,1 -yes,ya,original,book,1 -yes,agreed,original,book,1 -goodbye,sayonara,original,bye,2 -yes,ok,original,book,1 -no,"no, that's not the case",lambada,cancel,3 -goodbye,ill be leaving now,parrot,bye,2 -yes,confirm,original,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -greeting,salutations!,original,greet,4 -goodbye,a good talk,parrot,bye,2 -thank_you,thanks for the cooperation,parrot,bye,2 -greeting,hiya!,original,greet,4 -greeting,you good?,parrot,greet,4 -goodbye,fairwell?,parrot,bye,2 -calendar,do i have a black friday note?,parrot,avail,0 -goodbye,glad we talked,parrot,bye,2 -no,no,lambada,cancel,3 -greeting,bonjour,original,greet,4 -calendar_update,remove all events on friday from my calendar,parrot,resched,5 -thank_you,thanks for my help!,original,bye,2 -cancel_reservation,how do you cancel kyle's party at the red lobster?,parrot,cancel,3 -how_busy,how busy is the cheese cake factory around 6 o'clock,parrot,avail,0 -greeting,how ya doin,original,greet,4 -greeting,how's life?,parrot,greet,4 -how_busy,how busy is tepee at 1am,lambada,avail,0 -date,what year?,parrot,avail,0 -yes,"yes, that's true",lambada,book,1 -goodbye,goodbye ai,parrot,bye,2 -thank_you,appreciate the help,original,bye,2 -no,please no,parrot,cancel,3 -schedule_meeting,i need help with setting a meeting,parrot,book,1 -goodbye,bye,original,bye,2 -no,absolutely false,parrot,cancel,3 -no,ill pass,original,cancel,3 -no,naw,original,cancel,3 -greeting,how's life,original,greet,4 -yes,roger that,original,book,1 -yes,confirm,original,book,1 -reminder_update,can you set a reminder for a meeting?,parrot,resched,5 -goodbye,goodbye goodbye,parrot,bye,2 -yes,absolutely!,original,book,1 -cancel_reservation,repeal the dinner reservation,original,cancel,3 -goodbye,it was nice to chat with you,lambada,bye,2 -yes,a fact,parrot,book,1 -greeting,salutation,parrot,greet,4 -calendar,please tell me what is on my calendar for march 3?,parrot,avail,0 -yes,i'm going to tell you tes,parrot,book,1 -thank_you,nice,parrot,bye,2 -reminder_update,remind me of my chores,parrot,resched,5 -goodbye,have to go,parrot,bye,2 -yes,absolutely correct,original,book,1 -greeting,salutations!,original,greet,4 -no,what is not true?,parrot,cancel,3 -calendar,what do i have on my calendar for march 5?,parrot,avail,0 -no,that's absolutely false,parrot,cancel,3 -greeting,bonjour,original,greet,4 -cancel_reservation,can you cancel my reservation at red robin?,parrot,cancel,3 -date,in 8 days?,parrot,avail,0 -schedule_meeting,can you schedule a meeting with sarah smith?,parrot,book,1 -no,negation,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -goodbye,"great chat, talk later",lambada,bye,2 -yes,that's definitely true,original,book,1 -yes,ok,original,book,1 -yes,that'd be great,parrot,book,1 -thank_you,thank ya!,original,bye,2 -no,negative,original,cancel,3 -meeting_schedule,are there meetings with john?,parrot,avail,0 -yes,you are correct,original,book,1 -greeting,what's happening?,parrot,greet,4 -thank_you,thanks,original,bye,2 -how_busy,is michel busy at three?,parrot,avail,0 -date,date tomorrow?,parrot,avail,0 -yes,okay,original,book,1 -goodbye,a good talk,parrot,bye,2 -no,negatory,original,cancel,3 -no,that's incorrect,original,cancel,3 -greeting,heller,original,greet,4 -no,no no no,parrot,cancel,3 -thank_you,thanks for helping me!,original,bye,2 -no,no?,parrot,cancel,3 -thank_you,i appreciate you doing that,original,bye,2 -no,that's untrue,parrot,cancel,3 -meeting_schedule,when's my meeting?,parrot,avail,0 -greeting,hey bs,lambada,greet,4 -greeting,how ya been,original,greet,4 -thank_you,you helped,parrot,bye,2 -thank_you,gracias,original,bye,2 -yes,agreed,original,book,1 -yes,sure thing,original,book,1 -greeting,hi there,original,greet,4 -reminder_update,i need the reminder to remember something,parrot,resched,5 -yes,i'll say yes,parrot,book,1 -yes,yeah,original,book,1 -greeting,"hey, ai",original,greet,4 -how_busy,how long will it take to get to the red lobster at 730?,parrot,avail,0 -yes,confirmed,original,book,1 -how_busy,can you tell me how busy the olive garden is around five?,parrot,avail,0 -thank_you,merci beaucoup,original,bye,2 -reminder_update,remember to call tomorrow,parrot,resched,5 -greeting,how were you?,parrot,greet,4 -no,that’s not correct,original,cancel,3 -date,what month today?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -date,tell me the name of the date?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -thank_you,you answered,parrot,bye,2 -greeting,"hey, ai",original,greet,4 -yes,i'll say yes,parrot,book,1 -greeting,ahoy,lambada,greet,4 -reminder_update,create a reminder,original,resched,5 -goodbye,sayonara,original,bye,2 -date,in 7 days what will it be?,parrot,avail,0 -yes,ya,original,book,1 -reminder_update,remember to remember later,parrot,resched,5 -date,what day?,parrot,avail,0 -greeting,hola,original,greet,4 -date,say what day it will be?,parrot,avail,0 -cancel_reservation,the reservation i placed is not needed anymore,original,cancel,3 -no,nothing,parrot,cancel,3 -meeting_schedule,list today's meetings on the calendar,parrot,avail,0 -reminder_update,remind me,original,resched,5 -yes,TRUE,original,book,1 -greeting,hey,original,greet,4 -goodbye,goodbye soon,lambada,bye,2 -thank_you,thank you?,parrot,bye,2 -thank_you,thanks for the help!,original,bye,2 -thank_you,thank you,original,bye,2 -goodbye,i have to leave ai,parrot,bye,2 -goodbye,later goodbye,parrot,bye,2 -calendar,please see my calendar,parrot,avail,0 -no,i'd rather not answer,parrot,cancel,3 -yes,certainly,parrot,book,1 -schedule_meeting,what's the best way to schedule my meeting?,parrot,book,1 -no,not happening,original,cancel,3 -yes,definitely,original,book,1 -greeting,hello how's it going,original,greet,4 -thank_you,thanks,original,bye,2 -thank_you,so grateful,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -yes,perfect,parrot,book,1 -no,and i'm sorry,parrot,cancel,3 -greeting,wassup,original,greet,4 -no,not good,parrot,cancel,3 -how_busy,is tio's busy at 8:30?,lambada,avail,0 -greeting,heller,original,greet,4 -goodbye,lovely conversation,parrot,bye,2 -thank_you,i appeciate it,parrot,bye,2 -yes,certainly,parrot,book,1 -meeting_schedule,you know my meeting with lorrie?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -goodbye,good conversation,parrot,bye,2 -goodbye,buhbye,original,bye,2 -thank_you,thankyou,parrot,bye,2 -thank_you,my thanks,parrot,bye,2 -date,give me today's date,original,avail,0 -yes,absolutely,original,book,1 -yes,yes sir,original,book,1 -how_busy,is the imago busy at 4 pm?,parrot,avail,0 -yes,TRUE,lambada,book,1 -goodbye,i want it now,parrot,bye,2 -calendar_update,can you add a doctor's appointment to the friday calendars?,parrot,resched,5 -how_busy,how long will it take to get seated at macaroni grill?,parrot,avail,0 -thank_you,so grateful,parrot,bye,2 -date,where is tomorrow's date?,parrot,avail,0 -greeting,yo,original,greet,4 -no,that's erroneous,parrot,cancel,3 -date,current date,original,avail,0 -yes,of course,original,book,1 -how_busy,how long will i have to wait before i can eat at macaroni grill,lambada,avail,0 -goodbye,the talk was nice,lambada,bye,2 -how_busy,how long will the wait be at rta,lambada,avail,0 -goodbye,i want it now,parrot,bye,2 -thank_you,awesome thank you,parrot,bye,2 -no,it's no,parrot,cancel,3 -thank_you,"that'll work, good job!",original,bye,2 -how_busy,show me the number of people in the restaurant at 5pm,parrot,avail,0 -how_busy,how long is the wait time at black jack,lambada,avail,0 -how_busy,what's going on at cheesecake factory right?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -yes,i want to confirm it,parrot,book,1 -calendar_update,take my lunch plans off the calendar for march 13,parrot,resched,5 -thank_you,gracias,original,bye,2 -how_busy,how long before i can get a burger at olive garden,lambada,avail,0 -no,i'd rather not,parrot,cancel,3 -yes,okay,original,book,1 -thank_you,thank you?,parrot,bye,2 -yes,you're right,original,book,1 -thank_you,thankyou,parrot,bye,2 -how_busy,how many times will i get a table in the restaurant?,parrot,avail,0 -yes,"true, most definitely",original,book,1 -goodbye,later,original,bye,2 -goodbye,sayonara,original,bye,2 -yes,i know,parrot,book,1 -goodbye,see ya later,original,bye,2 -calendar,is there anything scheduled for next week?,parrot,avail,0 -calendar_update,remove my teeth from my schedule,lambada,resched,5 -reminder_update,remind me to change oil,parrot,resched,5 -yes,all right,original,book,1 -no,that's incorrect,original,cancel,3 -goodbye,the talk was nice,lambada,bye,2 -greeting,hey fellow,parrot,greet,4 -greeting,"hi, ai",original,greet,4 -yes,sure thing,original,book,1 -greeting,what is new?,parrot,greet,4 -no,no don't do that!,original,cancel,3 -thank_you,thanks for coming,parrot,bye,2 -date,current day,parrot,avail,0 -yes,oh-huh,parrot,book,1 -no,negative certainly,parrot,cancel,3 -no,not true,original,cancel,3 -goodbye,great conversation,parrot,bye,2 -greeting,bonjour,original,greet,4 -schedule_meeting,i need to hire you for a meeting,lambada,book,1 -greeting,you're all right?,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -goodbye,take it easy!,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,is everything going okay?,original,greet,4 -date,today's date is what,original,avail,0 -no,not correct,parrot,cancel,3 -goodbye,i've got to go,lambada,bye,2 -yes,ok,original,book,1 -greeting,what's new,lambada,greet,4 -schedule_meeting,would you schedule a meeting for me in ossining,lambada,book,1 -yes,of course,original,book,1 -greeting,what's new,lambada,greet,4 -yes,TRUE,original,book,1 -no,it's so negative,parrot,cancel,3 -yes,sure thing,original,book,1 -no,indeed it's false,parrot,cancel,3 -thank_you,your answer was pleasant,parrot,bye,2 -calendar,if i know what is on my calendar for friday 1st i need to know,parrot,avail,0 -no,it's so negative,parrot,cancel,3 -no,nada,original,cancel,3 -thank_you,"oh, thanks",original,bye,2 -goodbye,bye,original,bye,2 -schedule_meeting,check meeting rooms available between 1 and 3 pm,parrot,book,1 -greeting,whats up,original,greet,4 -goodbye,farewell,original,bye,2 -greeting,how's the life?,parrot,greet,4 -date,what is my date today,parrot,avail,0 -goodbye,signing off,original,bye,2 -how_busy,does it get busy around 5?,parrot,avail,0 -goodbye,goodbye soon,lambada,bye,2 -greeting,how's life,original,greet,4 -how_busy,is the wait long?,parrot,avail,0 -thank_you,i'm grateful,original,bye,2 -date,which date today?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -greeting,how's everything?,parrot,greet,4 -greeting,hey bs,lambada,greet,4 -greeting,how is idy?,parrot,greet,4 -reminder_update,remind me something,parrot,resched,5 -yes,right,parrot,book,1 -thank_you,i'm grateful for you,parrot,bye,2 -greeting,hiya!,original,greet,4 -yes,just right,parrot,book,1 -greeting,salutation,parrot,greet,4 -greeting,"hello, are you doing alright",original,greet,4 -no,is that a lie?,parrot,cancel,3 -yes,i know that's true,parrot,book,1 -schedule_meeting,can you arrange a meeting with steve for 5?,parrot,book,1 -no,that's incorrect,original,cancel,3 -yes,sure,original,book,1 -no,thanks no,parrot,cancel,3 -goodbye,the chat was good,parrot,bye,2 -yes,positive,parrot,book,1 -greeting,yo,original,greet,4 -yes,great,original,book,1 -thank_you,good job,lambada,bye,2 -yes,truthful is my answer,lambada,book,1 -no,no,lambada,cancel,3 -reminder_update,need a reminder of the cookie order,parrot,resched,5 -no,nothing,parrot,cancel,3 -greeting,ahoy there,lambada,greet,4 -yes,uh-huh,original,book,1 -greeting,hey fellows,parrot,greet,4 -how_busy,how busy the olive garden is at this point?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,i enjoy our conversation,parrot,bye,2 -yes,i know,parrot,book,1 -schedule_meeting,what is the meeting room availability between two and three?,lambada,book,1 -yes,is true,parrot,book,1 -yes,ok,original,book,1 -greeting,"hello, anyone there",original,greet,4 -no,negatory?,parrot,cancel,3 -no,negative,original,cancel,3 -date,what will it be in 3 days?,parrot,avail,0 -greeting,what's happening,original,greet,4 -no,no?,parrot,cancel,3 -greeting,"hello, hello, hello",lambada,greet,4 -greeting,yo how is it going?,parrot,greet,4 -goodbye,adios,original,bye,2 -goodbye,say goodbye,parrot,bye,2 -greeting,how's the world?,parrot,greet,4 -thank_you,thanks for coming,parrot,bye,2 -how_busy,how much time does it take to sit in this restaurant?,parrot,avail,0 -yes,good,parrot,book,1 -goodbye,goodbye ai,parrot,bye,2 -no,FALSE,original,cancel,3 -no,erroneous,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -reminder_update,please remember me,parrot,resched,5 -thank_you,thanks for my assistance,parrot,bye,2 -greeting,you good?,parrot,greet,4 -greeting,bonjour,original,greet,4 -how_busy,is the restaurant busy at lunch time?,parrot,avail,0 -yes,obviously,parrot,book,1 -goodbye,i'll go,parrot,bye,2 -greeting,how's ai feeling?,parrot,greet,4 -yes,"yes, please",parrot,book,1 -no,nothing,parrot,cancel,3 -how_busy,can you tell me how busy olive garden is at 7pm?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -yes,ok,original,book,1 -thank_you,i appreciate that you helped me,parrot,bye,2 -no,not true,original,cancel,3 -thank_you,much obliged,original,bye,2 -goodbye,tootles?,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -thank_you,i'm so very grateful,parrot,bye,2 -no,no longer valid,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -no,not happening,original,cancel,3 -no,it's not true,parrot,cancel,3 -meeting_schedule,is there anything on my meeting schedule today?,parrot,avail,0 -schedule_meeting,are there any meeting rooms free from 10:00 am until 10:30 am?,original,book,1 -how_busy,how busy will outback steakhouse be at 6pm,lambada,avail,0 -goodbye,goodbye then,parrot,bye,2 -how_busy,i want to know how busy olive garden will be at 6:00,lambada,avail,0 -yes,it's certainly true,parrot,book,1 -yes,roger that,original,book,1 -goodbye,later,original,bye,2 -greeting,wake up ai,parrot,greet,4 -yes,my answer is yes,parrot,book,1 -meeting_schedule,time of meeting?,parrot,avail,0 -yes,sure,original,book,1 -greeting,hi how are you,original,greet,4 -calendar_update,on 22 of this month we need to clear our calendar so we can leave it open for mark to visit,parrot,resched,5 -yes,yes that's it,original,book,1 -yes,10-Apr,original,book,1 -yes,certainly,parrot,book,1 -greeting,how's it going?,parrot,greet,4 -thank_you,thank you for helping,parrot,bye,2 -yes,yeap,original,book,1 -no,hell nah,original,cancel,3 -calendar_update,can you remove the cookout from calendar for june 29?,lambada,resched,5 -how_busy,is the cheesecake factory busy at 5?,lambada,avail,0 -no,that would be no,lambada,cancel,3 -no,no,lambada,cancel,3 -date,what's the date in two months,lambada,avail,0 -no,that's very false,parrot,cancel,3 -schedule_meeting,what is my availability between one and two today?,lambada,book,1 -greeting,good morning ai,parrot,greet,4 -no,i'm saying no,parrot,cancel,3 -greeting,hiya,original,greet,4 -goodbye,goodbye,original,bye,2 -greeting,"why, hello bandit",original,greet,4 -greeting,ahoy,lambada,greet,4 -greeting,salutations,parrot,greet,4 -yes,obviously,parrot,book,1 -no,that would be wrong,lambada,cancel,3 -yes,yeap,original,book,1 -calendar,tell me what's on my calendar for march 23?,parrot,avail,0 -goodbye,bye bye!,original,bye,2 -goodbye,for now,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -how_busy,how long will it take for me to be seated at mw steakhouse,lambada,avail,0 -how_busy,how busy is the restaurant at lunch time,parrot,avail,0 -no,negation,parrot,cancel,3 -how_busy,how busy the restaurant is at the moment?,parrot,avail,0 -how_busy,how long will it take to sit on the flying wand?,parrot,avail,0 -no,it is no,original,cancel,3 -no,certainly false,parrot,cancel,3 -greeting,hello ai,parrot,greet,4 -yes,approved,original,book,1 -no,no good,original,cancel,3 -how_busy,how busy is georgio at 12,lambada,avail,0 -greeting,aloha,original,greet,4 -goodbye,see ya,original,bye,2 -date,what will be the date after i marry?,parrot,avail,0 -how_busy,how long does it take for a table at chipotle?,parrot,avail,0 -calendar,can you tell me what my calendar is for thursday the 14th?,parrot,avail,0 -how_busy,is there a waiting period for chips?,parrot,avail,0 -goodbye,i'm leaving,parrot,bye,2 -yes,yep,original,book,1 -no,naw,parrot,cancel,3 -no,is my falsehood?,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -yes,definitely,original,book,1 -cancel_reservation,just get rid of my reservation,parrot,cancel,3 -goodbye,good talk,parrot,bye,2 -no,negatory,original,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how long will i have to wait for a table at cheese cake factory,lambada,avail,0 -how_busy,how busy is cheesecake factory at 7,lambada,avail,0 -no,that's wrong,original,cancel,3 -yes,yup,original,book,1 -goodbye,good-bye,parrot,bye,2 -yes,absolutely correct,original,book,1 -how_busy,is the restaurant crowded between 7 and 8 o'clock?,parrot,avail,0 -meeting_schedule,bring up any mettings for today,original,avail,0 -schedule_meeting,are there rooms available from 5 to 9?,parrot,book,1 -yes,huh,parrot,book,1 -how_busy,learn about the olive garden at 730,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -how_busy,is dinner time usually longer at the pizza place?,parrot,avail,0 -yes,10-Apr,original,book,1 -date,what's today?,parrot,avail,0 -no,it's not correct,parrot,cancel,3 -greeting,good morning ai,parrot,greet,4 -yes,obviously,parrot,book,1 -meeting_schedule,show me my schedule of meetings,parrot,avail,0 -no,it's no,parrot,cancel,3 -how_busy,could fry be busy around 7pm?,parrot,avail,0 -yes,ok,original,book,1 -yes,affirmitive,original,book,1 -calendar,what's the tuesday calendar?,parrot,avail,0 -yes,that would be true,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,sure,original,book,1 -date,do you know the day?,parrot,avail,0 -date,please date,parrot,avail,0 -how_busy,how long will the wait time be at the cheese cake factory?,parrot,avail,0 -yes,approved,original,book,1 -greeting,welcome,parrot,greet,4 -greeting,aho,parrot,greet,4 -yes,a real statement,parrot,book,1 -thank_you,thankyou,parrot,bye,2 -goodbye,fairwell,original,bye,2 -calendar_update,cancel the event scheduled for friday,lambada,resched,5 -how_busy,how busy is ihop at 9,lambada,avail,0 -no,that’s actually wrong,original,cancel,3 -yes,yup,original,book,1 -how_busy,what time should i expect to be seated in this place?,parrot,avail,0 -yes,all right,original,book,1 -no,naw,parrot,cancel,3 -yes,TRUE,original,book,1 -calendar_update,i need to add to my calendar a date that i need to get dressed,lambada,resched,5 -cancel_reservation,i need to cancel my reservation for nugget tom dallas,lambada,cancel,3 -greeting,bonjour,original,greet,4 -no,the negator,parrot,cancel,3 -yes,indeed,original,book,1 -thank_you,very grateful,parrot,bye,2 -greeting,"hi, ai",original,greet,4 -yes,is true,parrot,book,1 -yes,uh-huh,original,book,1 -cancel_reservation,i don't need my reservation can you cancel it,parrot,cancel,3 -yes,facts,original,book,1 -no,no?,parrot,cancel,3 -no,negatory,original,cancel,3 -no,not that one,original,cancel,3 -how_busy,how long would the wait be at olive garden right now,lambada,avail,0 -no,it's absolutely false,parrot,cancel,3 -yes,so it works,parrot,book,1 -meeting_schedule,have a meeting today?,parrot,avail,0 -how_busy,list the minimum waiting times at the outback steakhouse?,parrot,avail,0 -yes,"yeah, that's it",lambada,book,1 -goodbye,the time to say goodbye?,parrot,bye,2 -thank_you,thanks!,original,bye,2 -no,it's so bad,parrot,cancel,3 -yes,yes sir,original,book,1 -yes,indeed,original,book,1 -no,nothing good,parrot,cancel,3 -yes,okay,original,book,1 -greeting,whats up?,parrot,greet,4 -greeting,"hey, ai",original,greet,4 -no,negatory?,parrot,cancel,3 -yes,okay,original,book,1 -no,is very false,parrot,cancel,3 -no,FALSE,original,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -calendar,did i have an appointment on my calendar for an exam?,parrot,avail,0 -greeting,hola,original,greet,4 -no,FALSE,lambada,cancel,3 -no,negatory,original,cancel,3 -goodbye,buhbye,original,bye,2 -cancel_reservation,i have to cancel my reservation for nueva york,parrot,cancel,3 -no,that's a very bad answer,parrot,cancel,3 -greeting,hello,original,greet,4 -goodbye,goodbye now,parrot,bye,2 -goodbye,"bye-bye, my friend",lambada,bye,2 -date,what date is this month?,parrot,avail,0 -goodbye,until next time!,original,bye,2 -date,what year is tomorrow,parrot,avail,0 -yes,say yes,lambada,book,1 -meeting_schedule,"what is my schedule like today, any meetings with dan?",original,avail,0 -thank_you,"good job, thanks",lambada,bye,2 -thank_you,you've tried,parrot,bye,2 -goodbye,good conversation,parrot,bye,2 -no,nothing,parrot,cancel,3 -yes,confirm,original,book,1 -goodbye,lovely conversation,parrot,bye,2 -goodbye,adios!,original,bye,2 -yes,it is true yes,parrot,book,1 -date,what's my date tomorrow?,parrot,avail,0 -schedule_meeting,show me the process of scheduling a meeting,parrot,book,1 -calendar,what do i have to do on january 1st??,parrot,avail,0 -greeting,heyo,original,greet,4 -no,negative sure,parrot,cancel,3 -date,what's my day today?,parrot,avail,0 -goodbye,i'm going,parrot,bye,2 -greeting,hola!,original,greet,4 -meeting_schedule,make sure you check my time with dr sarah,parrot,avail,0 -greeting,hi,original,greet,4 -yes,TRUE,lambada,book,1 -calendar,what is on march 2 calendar?,original,avail,0 -thank_you,thanks for the reply,original,bye,2 -yes,confirm,original,book,1 -goodbye,see ya,lambada,bye,2 -goodbye,later then,lambada,bye,2 -goodbye,wait for me later,parrot,bye,2 -schedule_meeting,is there a meeting room between one and two people?,parrot,book,1 -yes,accept,parrot,book,1 -goodbye,nice talk,lambada,bye,2 -calendar,what's my schedule for march 2?,parrot,avail,0 -goodbye,on the highway,parrot,bye,2 -how_busy,do you know how busy imoos is right now?,lambada,avail,0 -no,please no,parrot,cancel,3 -no,negative definitely,parrot,cancel,3 -yes,yup,original,book,1 -goodbye,good conversation,parrot,bye,2 -reminder_update,set me a reminder to sing in the morning,parrot,resched,5 -greeting,how it goes?,parrot,greet,4 -greeting,"wake up, ai",original,greet,4 -how_busy,list the typical wait times at red lobster?,parrot,avail,0 -schedule_meeting,i need to book a meeting on friday at 4pm,parrot,book,1 -reminder_update,create reminders to wash dishes,parrot,resched,5 -greeting,give me the information,parrot,greet,4 -yes,positive,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -date,what's the date now,parrot,avail,0 -calendar_update,clear my calendar on february 28,parrot,resched,5 -calendar,can you tell me how many days i have on my calendar for tomorrow?,parrot,avail,0 -no,no,lambada,cancel,3 -goodbye,wonderful conversation,lambada,bye,2 -greeting,hi,original,greet,4 -date,tell me the day of week?,parrot,avail,0 -goodbye,good call,parrot,bye,2 -no,it's not necessarily true,parrot,cancel,3 -yes,so it's real,parrot,book,1 -yes,confirmed,original,book,1 -yes,right,parrot,book,1 -calendar,can you tell me when i added the meeting to my calendar?,lambada,avail,0 -how_busy,how busy will the olive garden be at 7pm?,parrot,avail,0 -yes,affirmative,original,book,1 -yes,oh yes,original,book,1 -yes,ya,original,book,1 -greeting,aloha,original,greet,4 -yes,absolutely!,original,book,1 -goodbye,catch you around,original,bye,2 -greeting,what is new?,parrot,greet,4 -calendar,what's the calendar for march 2?,parrot,avail,0 -date,today?,parrot,avail,0 -goodbye,have a good one?,original,bye,2 -thank_you,thank you again,parrot,bye,2 -yes,okay,original,book,1 -how_busy,how busy will the restaurant be between 6 and 8,lambada,avail,0 -no,that's not it,parrot,cancel,3 -calendar,what do i have scheduled for 4/2?,lambada,avail,0 -yes,yes please,original,book,1 -yes,yeah yeah,lambada,book,1 -greeting,salutations!,original,greet,4 -calendar_update,add meeting with carla to my schedule for july 4,original,resched,5 -no,thanks no,parrot,cancel,3 -no,no thanks,original,cancel,3 -goodbye,goodbye now,parrot,bye,2 -how_busy,can you tell me if there is a wait time at olive garden right now?,lambada,avail,0 -date,in eight days?,parrot,avail,0 -yes,you're right,original,book,1 -date,what today?,parrot,avail,0 -reminder_update,please remind me later,original,resched,5 -greeting,what's up,original,greet,4 -calendar,what's on my calendar for the 14th,lambada,avail,0 -yes,that's correct,original,book,1 -thank_you,thanks for coming,parrot,bye,2 -date,what's my day today?,parrot,avail,0 -how_busy,chili's busy at 7 pm?,parrot,avail,0 -thank_you,you've been great,parrot,bye,2 -thank_you,thank you for doing it for me,parrot,bye,2 -greeting,hello,original,greet,4 -no,"no, definitely not",original,cancel,3 -no,negating,parrot,cancel,3 -calendar,tell me what's on my calendar for tuesday 2nd?,parrot,avail,0 -thank_you,your assistance is appreciated,parrot,bye,2 -meeting_schedule,did i schedule a meeting today?,parrot,avail,0 -thank_you,i appreciate your answer,parrot,bye,2 -schedule_meeting,i need to know how i schedule a meeting,parrot,book,1 -reminder_update,just a reminder,parrot,resched,5 -thank_you,thanks so much,original,bye,2 -no,that can't be true,original,cancel,3 -yes,it's positive,parrot,book,1 -thank_you,nice,parrot,bye,2 -goodbye,adios!,original,bye,2 -thank_you,my gratitude,parrot,bye,2 -yes,yay,lambada,book,1 -no,it's not correct,parrot,cancel,3 -cancel_reservation,please cancel my reservation at the lake at 9pm,lambada,cancel,3 -thank_you,so grateful,parrot,bye,2 -cancel_reservation,i have to cancel my reservation for the dinner at carnelian lake,parrot,cancel,3 -greeting,well hello,original,greet,4 -thank_you,thanks again,original,bye,2 -greeting,greetings to you,original,greet,4 -no,invalid,original,cancel,3 -yes,yay,lambada,book,1 -thank_you,thank you!,original,bye,2 -how_busy,how busy is red robin at 9:00 pm,lambada,avail,0 -greeting,hola!,original,greet,4 -how_busy,is mcdonalds busy?,parrot,avail,0 -yes,definitely,original,book,1 -schedule_meeting,please schedule a meeting,parrot,book,1 -goodbye,good chatting with you,lambada,bye,2 -how_busy,how busy would texas be at 6 o'clock in the morning,parrot,avail,0 -greeting,what's new,lambada,greet,4 -greeting,how're you?,parrot,greet,4 -date,when will it be two months?,parrot,avail,0 -greeting,heyo,original,greet,4 -thank_you,again thank you,parrot,bye,2 -greeting,"hey, how are you",original,greet,4 -goodbye,goodbye!,original,bye,2 -calendar,do i have anything on my calendar for march 7?,parrot,avail,0 -date,in three days,parrot,avail,0 -goodbye,sayonara,original,bye,2 -goodbye,farewell!,original,bye,2 -greeting,hola!,original,greet,4 -yes,great,original,book,1 -goodbye,later,original,bye,2 -greeting,ahoy,lambada,greet,4 -yes,sure,original,book,1 -yes,that's how true my statement is,lambada,book,1 -greeting,hey it's up,lambada,greet,4 -no,negating,parrot,cancel,3 -reminder_update,i need to remind you please,parrot,resched,5 -thank_you,okay thank you,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -no,nothing,parrot,cancel,3 -goodbye,adios!,original,bye,2 -yes,affirmative,original,book,1 -meeting_schedule,do i need to be present for meetings?,parrot,avail,0 -no,certainly not,original,cancel,3 -no,that's negative,parrot,cancel,3 -yes,i guess,parrot,book,1 -yes,so it's true,parrot,book,1 -no,please disagree,lambada,cancel,3 -no,no that's wrong,original,cancel,3 -yes,a true statement,parrot,book,1 -yes,TRUE,lambada,book,1 -no,that's not really the case,parrot,cancel,3 -no,no thanks,original,cancel,3 -yes,perfect,parrot,book,1 -calendar_update,set an appointment for tomorrow,parrot,resched,5 -yes,huh,parrot,book,1 -meeting_schedule,what's on my schedule?,parrot,avail,0 -greeting,yo,original,greet,4 -yes,10-Apr,original,book,1 -how_busy,how long can i wait in the cheese cake factory,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -goodbye,thank you goodbye,original,bye,2 -yes,accept,parrot,book,1 -greeting,hola,original,greet,4 -thank_you,gracias,original,bye,2 -yes,yeah yeah,lambada,book,1 -calendar_update,add swimming to my calendar today,original,resched,5 -yes,i'm sure it's true,parrot,book,1 -how_busy,how long will the wait at the rta be?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -greeting,"hey, ai",original,greet,4 -no,FALSE,lambada,cancel,3 -yes,good,parrot,book,1 -cancel_reservation,my reservation for the nudist in houston needs to be cancelled,parrot,cancel,3 -thank_you,i'm very grateful,parrot,bye,2 -no,not really,original,cancel,3 -greeting,whats up?,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -no,that's a lie,parrot,cancel,3 -greeting,hello there,original,greet,4 -reminder_update,remind me,original,resched,5 -yes,correct,original,book,1 -yes,ya,original,book,1 -schedule_meeting,can you schedule a meeting with steve?,parrot,book,1 -reminder_update,make me a reminder about booking,parrot,resched,5 -goodbye,nice talking to you,parrot,bye,2 -how_busy,what will it be like between 5 and 7pm?,parrot,avail,0 -how_busy,tell me the average wait time at red robin restaurant?,parrot,avail,0 -yes,thats right,original,book,1 -greeting,how're you?,parrot,greet,4 -date,today?,parrot,avail,0 -yes,absolutely,original,book,1 -no,no!,original,cancel,3 -goodbye,bye-bye,original,bye,2 -yes,"yes, please",parrot,book,1 -calendar,show me my calendar?,parrot,avail,0 -thank_you,thanks for making me laugh,parrot,bye,2 -thank_you,thanks,original,bye,2 -meeting_schedule,wanna meet roger?,parrot,avail,0 -how_busy,what is the typical wait at the italian restaurant right now?,lambada,avail,0 -greeting,salutations!,original,greet,4 -goodbye,bye!,original,bye,2 -thank_you,thanks for the help!,original,bye,2 -yes,so it's real,parrot,book,1 -how_busy,how long will it take to be seated at the grocery store?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -yes,just right,parrot,book,1 -reminder_update,please remind me of this,parrot,resched,5 -date,what is the date of tomorrow?,original,avail,0 -no,it's indeed false,parrot,cancel,3 -thank_you,"thanks, i appreciate it",original,bye,2 -goodbye,goodnight,original,bye,2 -yes,it's certainly true,parrot,book,1 -cancel_reservation,my reservation for nudist in houston needs to be cancelled,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -greeting,why hello?,original,greet,4 -yes,that's a true statement,lambada,book,1 -thank_you,"nice, excellent!",original,bye,2 -no,that's wrong,original,cancel,3 -goodbye,bye bye,lambada,bye,2 -goodbye,later,original,bye,2 -date,what date is tomorrow?,original,avail,0 -meeting_schedule,meetings today,original,avail,0 -date,i need to know what day it is now,lambada,avail,0 -no,definitely not,original,cancel,3 -calendar,do you have any points on my calendar for the annual membership dues?,parrot,avail,0 -date,you have a date today?,parrot,avail,0 -no,no that isn't it,original,cancel,3 -no,so that's no,parrot,cancel,3 -date,list the current days?,parrot,avail,0 -no,nothing,parrot,cancel,3 -no,thanks no,parrot,cancel,3 -date,i need to know the date of today please,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -yes,my answer is yes,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -no,no please,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -calendar,please read my calendar for march 21st,parrot,avail,0 -yes,oh-huh,parrot,book,1 -meeting_schedule,what time is my meeting with peter?,lambada,avail,0 -thank_you,thank you for that!,lambada,bye,2 -yes,i guess yes,parrot,book,1 -goodbye,good night,original,bye,2 -no,absolutely not,original,cancel,3 -goodbye,i’m leaving-goodbye!,original,bye,2 -goodbye,goodbye,original,bye,2 -reminder_update,may i be reminded?,parrot,resched,5 -date,today?,parrot,avail,0 -how_busy,list the typical wait times for mr joe's pizza?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -meeting_schedule,are there any meetings with kate today?,parrot,avail,0 -yes,certainly,parrot,book,1 -meeting_schedule,what's my plan today?,parrot,avail,0 -yes,right,parrot,book,1 -goodbye,thanks goodbye,parrot,bye,2 -yes,i'm sure that is a fact,lambada,book,1 -goodbye,as regards,parrot,bye,2 -how_busy,how busy will olive garden be at 7,lambada,avail,0 -date,today is the date?,parrot,avail,0 -yes,affirmative,original,book,1 -greeting,hows it going,lambada,greet,4 -no,it's false,parrot,cancel,3 -yes,"yes, that's accurate",original,book,1 -yes,uh-huh,original,book,1 -no,that’s actually wrong,original,cancel,3 -thank_you,please thank you,lambada,bye,2 -goodbye,sayonara,original,bye,2 -thank_you,well done,parrot,bye,2 -greeting,what's happened?,parrot,greet,4 -calendar_update,i need to add an event in my calendar for the 7th,parrot,resched,5 -goodbye,sayonara,original,bye,2 -yes,yes that's it,original,book,1 -yes,is true,parrot,book,1 -yes,yes,original,book,1 -yes,that's correct,original,book,1 -goodbye,the conversation with you was good,parrot,bye,2 -cancel_reservation,cancel tonight's dinner reservation,original,cancel,3 -greeting,hello good day,parrot,greet,4 -date,when will it be?,parrot,avail,0 -date,what date do i need to go next?,parrot,avail,0 -yes,definitely yes,parrot,book,1 -date,date please,original,avail,0 -date,tell me the date and time?,parrot,avail,0 -greeting,hello bs,parrot,greet,4 -cancel_reservation,could you cancel my reservation for winters at the palace tonight,original,cancel,3 -yes,it makes sense,parrot,book,1 -thank_you,thank you,original,bye,2 -yes,oh yes,original,book,1 -date,what's the next month?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -how_busy,are the ihops really packed around 9 o'clock?,parrot,avail,0 -calendar_update,delete all calendar entries on march 7,parrot,resched,5 -no,this information is false,parrot,cancel,3 -yes,good,parrot,book,1 -date,which date is it,lambada,avail,0 -how_busy,can you tell me how long the wait is for the red lobster?,parrot,avail,0 -goodbye,and then goodbye,parrot,bye,2 -no,it's absolutely false,parrot,cancel,3 -thank_you,thanks for responding,parrot,bye,2 -goodbye,later!,original,bye,2 -greeting,wassup,original,greet,4 -thank_you,nice,parrot,bye,2 -date,date tomorrow,parrot,avail,0 -how_busy,is iman busy around 5?,parrot,avail,0 -calendar,is my daughter's birthday on my calendar?,original,avail,0 -goodbye,later!,original,bye,2 -no,no thanks,original,cancel,3 -yes,right,parrot,book,1 -yes,yup,original,book,1 -yes,confirmed,original,book,1 -date,what will be the date in eight days?,parrot,avail,0 -greeting,hey how ya been,lambada,greet,4 -no,no?,parrot,cancel,3 -yes,great,original,book,1 -greeting,heller,original,greet,4 -yes,confirm,original,book,1 -goodbye,nice talk,lambada,bye,2 -thank_you,thanks again!,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -thank_you,thanks again!,original,bye,2 -schedule_meeting,book my meeting room for 12pm on february 28th,parrot,book,1 -how_busy,is there a long wait at the pizza box?,parrot,avail,0 -goodbye,ai goodbye,original,bye,2 -greeting,let me know how you are doing today,parrot,greet,4 -goodbye,i'll go,parrot,bye,2 -how_busy,can i expect red robin to be busy at 5 pm?,lambada,avail,0 -goodbye,i'm saying goodbye now,original,bye,2 -goodbye,later gator!,original,bye,2 -how_busy,how long will it take to be seated at the flying w,original,avail,0 -no,that's totally false,parrot,cancel,3 -no,no please,parrot,cancel,3 -greeting,how are things in the city?,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -yes,"yes, please",parrot,book,1 -yes,ok,original,book,1 -yes,ya,original,book,1 -greeting,heyo,original,greet,4 -no,nothing,parrot,cancel,3 -how_busy,how long will the wait be at mcdonald's after 7,lambada,avail,0 -goodbye,bye now,original,bye,2 -goodbye,", goodbye",lambada,bye,2 -date,what date will be 840 days?,parrot,avail,0 -schedule_meeting,can you schedule a meeting with jessica in the office please? -,parrot,book,1 -yes,so it's real,parrot,book,1 -reminder_update,i need you to remind me to buy clothes,parrot,resched,5 -how_busy,how long can i wait to go to the chocolate fountain?,parrot,avail,0 -goodbye,nice talk,lambada,bye,2 -greeting,welcome,parrot,greet,4 -yes,you're right,original,book,1 -yes,indeed,parrot,book,1 -goodbye,buhbye,original,bye,2 -yes,uh-huh,original,book,1 -greeting,how's it going,lambada,greet,4 -greeting,hiya,original,greet,4 -yes,affirmative,original,book,1 -schedule_meeting,schedule a meeting with me,parrot,book,1 -yes,that's true,original,book,1 -schedule_meeting,are there any meeting rooms available between 10 and 12?,parrot,book,1 -no,"no, that isn't right",lambada,cancel,3 -calendar_update,remove birthday dinners from my schedule,parrot,resched,5 -date,current date,original,avail,0 -yes,all right,parrot,book,1 -greeting,do you feel?,parrot,greet,4 -how_busy,is jacks steakhouse usually packed?,parrot,avail,0 -no,nay,original,cancel,3 -greeting,how's my doing?,parrot,greet,4 -goodbye,good call,parrot,bye,2 -no,FALSE,lambada,cancel,3 -greeting,how's idy doing?,parrot,greet,4 -yes,say yes,lambada,book,1 -yes,10-Apr,original,book,1 -greeting,"hello, hello, hello",lambada,greet,4 -thank_you,thanks!,original,bye,2 -yes,"yup, that is true",lambada,book,1 -no,that's false,original,cancel,3 -thank_you,thank you?,parrot,bye,2 -no,absolutely false,parrot,cancel,3 -no,hell nah,original,cancel,3 -greeting,hey there,original,greet,4 -goodbye,bye,original,bye,2 -no,negating,parrot,cancel,3 -thank_you,thanks!,original,bye,2 -calendar,tell me what's on my agenda?,parrot,avail,0 -meeting_schedule,the meetings today,parrot,avail,0 -calendar,do you know what my calendar looks like on march 1?,parrot,avail,0 -yes,ya,original,book,1 -yes,yes please,original,book,1 -thank_you,thank you,original,bye,2 -goodbye,later gater,original,bye,2 -no,negative certainly,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -yes,uh-huh,original,book,1 -goodbye,send a goodbye,lambada,bye,2 -yes,very true,original,book,1 -goodbye,buhbye,original,bye,2 -date,what the day?,parrot,avail,0 -yes,i have to say affirmative on that one,original,book,1 -no,it's false,parrot,cancel,3 -calendar,what's the schedule for tomorrow?,parrot,avail,0 -no,i prefer not,parrot,cancel,3 -yes,accepted,original,book,1 -no,it's negative,parrot,cancel,3 -greeting,how are things in the city,lambada,greet,4 -date,current day,parrot,avail,0 -yes,facts,original,book,1 -yes,"yes, please",parrot,book,1 -yes,what's the truth of that,lambada,book,1 -yes,affirmitive,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -schedule_meeting,set up a meeting,parrot,book,1 -goodbye,it's over,parrot,bye,2 -no,i think it's wrong,parrot,cancel,3 -yes,approved,original,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -schedule_meeting,can you schedule a meeting with james in the office?,parrot,book,1 -greeting,wassup,original,greet,4 -how_busy,can i wait at red lobster at 7 pm,parrot,avail,0 -greeting,so how is everything,original,greet,4 -goodbye,adios!,original,bye,2 -greeting,whats up?,parrot,greet,4 -goodbye,great conversation,parrot,bye,2 -greeting,good evening,original,greet,4 -yes,"yes, please",parrot,book,1 -goodbye,glad i can talk to you,parrot,bye,2 -yes,agreed,original,book,1 -yes,affirmitive,original,book,1 -goodbye,it was nice to chat,original,bye,2 -no,that seems wrong,lambada,cancel,3 -thank_you,i appreciate you answering my question,parrot,bye,2 -no,false sure,parrot,cancel,3 -thank_you,and i appreciate my time,parrot,bye,2 -greeting,hey yai,lambada,greet,4 -thank_you,again thanks,parrot,bye,2 -goodbye,later then,lambada,bye,2 -date,today?,parrot,avail,0 -thank_you,appreciate it,original,bye,2 -no,nope,original,cancel,3 -no,it's actually false,parrot,cancel,3 -how_busy,how long will it be at this restaurant,lambada,avail,0 -meeting_schedule,tell me if i have a meeting with liz today,parrot,avail,0 -yes,that is correct,original,book,1 -how_busy,what's the best time to get a burger without a line?,parrot,avail,0 -greeting,how's ayi doing?,parrot,greet,4 -no,no way,original,cancel,3 -yes,TRUE,original,book,1 -yes,indeed,original,book,1 -yes,"yes, please",parrot,book,1 -goodbye,tootles,original,bye,2 -thank_you,"oh, thanks",original,bye,2 -goodbye,"syonara, ai device!",original,bye,2 -date,what today?,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -goodbye,it's time to run,parrot,bye,2 -meeting_schedule,wanna meet roger?,parrot,avail,0 -yes,perfect,parrot,book,1 -yes,so it's true,parrot,book,1 -thank_you,you know i'm grateful,parrot,bye,2 -thank_you,appreciated,original,bye,2 -how_busy,how long will it take to be seated at cheese cake factory,lambada,avail,0 -yes,yep,original,book,1 -greeting,aho,parrot,greet,4 -no,"please, no",original,cancel,3 -goodbye,"that's all, bye",original,bye,2 -yes,all right,original,book,1 -meeting_schedule,when's my meeting?,parrot,avail,0 -thank_you,why thank you?,original,bye,2 -greeting,how's it going my friend?,parrot,greet,4 -date,what is tomorrow?,parrot,avail,0 -no,no,lambada,cancel,3 -thank_you,awesome thanks,parrot,bye,2 -goodbye,great talk,lambada,bye,2 -thank_you,i appreciate your assistance,parrot,bye,2 -meeting_schedule,time of meeting?,parrot,avail,0 -goodbye,the conversation was good,parrot,bye,2 -no,but it's not true,parrot,cancel,3 -no,it's negative,parrot,cancel,3 -greeting,how you're doing?,parrot,greet,4 -greeting,hey what's up,original,greet,4 -thank_you,so glad you did it,parrot,bye,2 -no,negatory,original,cancel,3 -reminder_update,please remind me to clean up my house,parrot,resched,5 -yes,confirmed,original,book,1 -thank_you,thankyou,parrot,bye,2 -greeting,hola!,original,greet,4 -no,naw,original,cancel,3 -goodbye,good conversation,parrot,bye,2 -yes,all right,original,book,1 -no,this information is false,parrot,cancel,3 -greeting,aho,parrot,greet,4 -schedule_meeting,would you please schedule a meeting room for 4:00 on thursday,original,book,1 -yes,i'd like to have it done,parrot,book,1 -goodbye,farewell!,original,bye,2 -how_busy,will i find a wait at the chili cookout at 10 pm,lambada,avail,0 -yes,great,original,book,1 -goodbye,bye!,original,bye,2 -cancel_reservation,would you please cancel the reservations for dinner,original,cancel,3 -greeting,how's ai doing?,parrot,greet,4 -thank_you,thanks!,original,bye,2 -no,naw,original,cancel,3 -thank_you,many thank,original,bye,2 -thank_you,thank you?,parrot,bye,2 -calendar,are there calendar events for march 19?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -thank_you,i'm thankful,original,bye,2 -how_busy,does the italian restaurant usually have long lines of people?,parrot,avail,0 -date,what is the first day of the month in 5 days?,lambada,avail,0 -greeting,hiya!,original,greet,4 -greeting,good morning,parrot,greet,4 -goodbye,bye!,original,bye,2 -yes,it's true yes,parrot,book,1 -yes,it's certainly positive,parrot,book,1 -yes,affirmative,original,book,1 -how_busy,how long is the wait at the restaurant?,parrot,avail,0 -schedule_meeting,you can book a meeting room for thursday at 1pm,parrot,book,1 -greeting,greetings to you,original,greet,4 -thank_you,thank you please,parrot,bye,2 -yes,that'd be great,parrot,book,1 -schedule_meeting,i have to meet scott at 1pm,parrot,book,1 -goodbye,good night,original,bye,2 -no,not really,original,cancel,3 -calendar_update,eliminate the date in my calendar for next friday,parrot,resched,5 -goodbye,goodbye thank you,parrot,bye,2 -date,what today?,parrot,avail,0 -greeting,ai how you're doing,lambada,greet,4 -cancel_reservation,can i cancel my dinner reservation please,parrot,cancel,3 -date,tell me what the date will be in 256 days?,lambada,avail,0 -greeting,well hello,original,greet,4 -no,that's not correct,original,cancel,3 -no,no good,original,cancel,3 -reminder_update,please remind me of this,parrot,resched,5 -thank_you,the best,parrot,bye,2 -greeting,bonjour,original,greet,4 -no,it's not a fact,parrot,cancel,3 -how_busy,how long do i have to wait before i can eat macaroni grill?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -how_busy,how busy will the grill be at 7 pm,parrot,avail,0 -thank_you,i'm really thankful,parrot,bye,2 -yes,okay,original,book,1 -thank_you,appreciated,original,bye,2 -yes,i guess,parrot,book,1 -greeting,are you okay?,original,greet,4 -goodbye,thanks goodbye,parrot,bye,2 -no,please no,parrot,cancel,3 -meeting_schedule,what is on my schedule?,parrot,avail,0 -goodbye,bye!,original,bye,2 -yes,positive,parrot,book,1 -greeting,how you feel?,parrot,greet,4 -thank_you,gracias,original,bye,2 -yes,yes you are,original,book,1 -yes,you're right,original,book,1 -goodbye,i'm outta here!,original,bye,2 -yes,that's a yes,original,book,1 -yes,affirmitive,original,book,1 -no,negative sure,parrot,cancel,3 -yes,is true,parrot,book,1 -no,nope,original,cancel,3 -yes,that's true,original,book,1 -goodbye,goodbyes,parrot,bye,2 -yes,approved,original,book,1 -greeting,yo how is it going,lambada,greet,4 -how_busy,how long is the restaurant usually busy,lambada,avail,0 -goodbye,wonderful conversation,lambada,bye,2 -no,but that's not factual,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -thank_you,i'm glad you responded,parrot,bye,2 -thank_you,you've helped,parrot,bye,2 -no,no thanks,original,cancel,3 -date,in seven days?,parrot,avail,0 -yes,TRUE,original,book,1 -greeting,hiya,original,greet,4 -meeting_schedule,talk to me about my meeting schedule please,parrot,avail,0 -goodbye,cya later,original,bye,2 -yes,ok,original,book,1 -no,nada,original,cancel,3 -no,no that's wrong,original,cancel,3 -yes,correct,original,book,1 -yes,"correct, it is affirmative",original,book,1 -greeting,how've you been?,parrot,greet,4 -greeting,hi ai,original,greet,4 -cancel_reservation,can i cancel my reservations?,original,cancel,3 -no,i'd rather not answer it,parrot,cancel,3 -goodbye,i'm gone,parrot,bye,2 -thank_you,thanks very much for your answer,parrot,bye,2 -greeting,aho,parrot,greet,4 -goodbye,buhbye,original,bye,2 -greeting,i need to know how you feel,parrot,greet,4 -yes,sure,original,book,1 -yes,okay,original,book,1 -meeting_schedule,is there a meeting between 2 pm and 3pm?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -thank_you,thanks,original,bye,2 -yes,you got it,original,book,1 -no,nada,original,cancel,3 -greeting,hello there ai,original,greet,4 -yes,definitely,original,book,1 -date,please explain today,parrot,avail,0 -schedule_meeting,can you schedule a meeting with me?,parrot,book,1 -goodbye,thank you goodbye,original,bye,2 -goodbye,bye-bye,original,bye,2 -how_busy,is there sitting time in this restaurant?,parrot,avail,0 -date,what's the day today,original,avail,0 -yes,my answer is yes,parrot,book,1 -goodbye,", goodbye",lambada,bye,2 -no,negative certainly,parrot,cancel,3 -goodbye,"later, goodbye",lambada,bye,2 -greeting,hey,original,greet,4 -thank_you,really great!,original,bye,2 -thank_you,nice,parrot,bye,2 -no,"no, that is not what is true",lambada,cancel,3 -no,nope,original,cancel,3 -yes,that's right,original,book,1 -goodbye,see ya,lambada,bye,2 -goodbye,im leaving,parrot,bye,2 -yes,absolutely!,original,book,1 -date,today?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -yes,i want that,parrot,book,1 -no,no?,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -how_busy,what time would i have to wait for a table at dibruno?,parrot,avail,0 -greeting,how's my family?,parrot,greet,4 -goodbye,catch you later,original,bye,2 -yes,facts,original,book,1 -no,that's incorrect,original,cancel,3 -thank_you,okay thank you,parrot,bye,2 -greeting,hey fellow,parrot,greet,4 -date,what would be tomorrow's date?,parrot,avail,0 -yes,that also makes sense,parrot,book,1 -thank_you,thanks so much!,original,bye,2 -how_busy,what time is reserved for me in this restaurant?,parrot,avail,0 -yes,uh huh,original,book,1 -calendar,what do i have on my calendar for march 11?,original,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -reminder_update,remind me of something,parrot,resched,5 -yes,affirmitive,original,book,1 -how_busy,how busy is impala at around 9,lambada,avail,0 -yes,not a falsehood,parrot,book,1 -thank_you,thank you please,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -no,negatory?,parrot,cancel,3 -how_busy,will i need to wait long at red robin at 6 pm,lambada,avail,0 -goodbye,as regards,parrot,bye,2 -greeting,how's it going,lambada,greet,4 -date,current day,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,sayonara,original,bye,2 -no,it's not correct,parrot,cancel,3 -yes,we would say yes,lambada,book,1 -goodbye,"later, goodbye",lambada,bye,2 -yes,that's true,original,book,1 -meeting_schedule,what meetings do you have scheduled?,parrot,avail,0 -yes,"yeah, that's right",original,book,1 -reminder_update,add a reminder to me?,parrot,resched,5 -how_busy,list the wait times for the red robin?,parrot,avail,0 -thank_you,gracias,original,bye,2 -no,"no, that's wrong",original,cancel,3 -goodbye,later gator!,original,bye,2 -schedule_meeting,i want you to schedule a meeting with steve,lambada,book,1 -thank_you,my thanks,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -goodbye,bye!,original,bye,2 -yes,yup,original,book,1 -greeting,"hello, anyone there",original,greet,4 -how_busy,how long will i have to wait at the cheesecake factory before dinner?,parrot,avail,0 -how_busy,what happens when i go to olive gardens?,parrot,avail,0 -how_busy,"around nine, is ambrosio busy",original,avail,0 -calendar_update,remove the scott birthday party from my calendar,parrot,resched,5 -yes,huh huh,parrot,book,1 -how_busy,how long will i need to wait if i want a table at chili's,lambada,avail,0 -thank_you,your answer was fun,parrot,bye,2 -yes,confirmed,original,book,1 -goodbye,say goodbye,parrot,bye,2 -schedule_meeting,set up a meeting,parrot,book,1 -yes,agreed,original,book,1 -greeting,salutations,parrot,greet,4 -yes,i guess,parrot,book,1 -thank_you,you have made my life so much easier,lambada,bye,2 -greeting,heyo,original,greet,4 -cancel_reservation,my reservation for dinner has to be cancelled,parrot,cancel,3 -how_busy,how long will i have to wait if i want to eat at red lobster,lambada,avail,0 -greeting,yo,original,greet,4 -how_busy,how long is the wait in the restaurant right now?,parrot,avail,0 -calendar,what do i have going on for 12032019?,parrot,avail,0 -no,that's bad,parrot,cancel,3 -greeting,hi how're things going,lambada,greet,4 -how_busy,how much traffic do they get around dinner time,original,avail,0 -goodbye,just relax,parrot,bye,2 -yes,all right,parrot,book,1 -no,no thanks,original,cancel,3 -goodbye,regards,original,bye,2 -no,that's a no,lambada,cancel,3 -yes,great,original,book,1 -yes,affirmitive,original,book,1 -goodbye,for now,parrot,bye,2 -greeting,yo,original,greet,4 -yes,i say yes,lambada,book,1 -goodbye,this conversation was wonderful,parrot,bye,2 -how_busy,wait for red lobster?,parrot,avail,0 -yes,positive,parrot,book,1 -thank_you,thanks for the information,parrot,bye,2 -yes,huh,parrot,book,1 -goodbye,glad we talked,parrot,bye,2 -date,tell me the next month?,parrot,avail,0 -greeting,what's up?,parrot,greet,4 -goodbye,buhbye,original,bye,2 -reminder_update,new reminder please,lambada,resched,5 -yes,that's correct,original,book,1 -yes,uh-huh,original,book,1 -no,nothing,parrot,cancel,3 -goodbye,later gator!,original,bye,2 -how_busy,how busy is olive garden at 10,lambada,avail,0 -no,that’s incorrect,original,cancel,3 -no,negatory,original,cancel,3 -how_busy,how long would it take to wait in chili's?,parrot,avail,0 -how_busy,ihop around 10 pm,parrot,avail,0 -reminder_update,remind me to check the oven,parrot,resched,5 -how_busy,i have to wait how long to be in this restaurant?,parrot,avail,0 -greeting,good morning,parrot,greet,4 -greeting,salutation,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -yes,huh,parrot,book,1 -greeting,how you are,original,greet,4 -yes,so it's true,parrot,book,1 -thank_you,"thanks, you've helped me",original,bye,2 -thank_you,thanks so much ai,original,bye,2 -greeting,hola,original,greet,4 -greeting,why hello?,original,greet,4 -greeting,what's up,original,greet,4 -goodbye,see you again soon,original,bye,2 -yes,accept,parrot,book,1 -thank_you,you've been amazing,lambada,bye,2 -yes,"yup, that is true",lambada,book,1 -no,not that,original,cancel,3 -no,i'm sorry about the false statement,parrot,cancel,3 -how_busy,can you tell me the wait times at red robin?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -calendar_update,"remove concerts from my calendar on march 19, 2019",lambada,resched,5 -greeting,what i feel?,parrot,greet,4 -no,so that's no,parrot,cancel,3 -no,nay,original,cancel,3 -yes,oh yes,original,book,1 -no,FALSE,original,cancel,3 -thank_you,appreciated,original,bye,2 -calendar,"check my calendar for me, please",original,avail,0 -yes,that's correct,original,book,1 -goodbye,i'll leave,parrot,bye,2 -greeting,hiya!,original,greet,4 -calendar,my calendar has something for january 1st?,parrot,avail,0 -greeting,what's happening,original,greet,4 -yes,please let's do that,parrot,book,1 -greeting,hey fellow,parrot,greet,4 -yes,yeap,original,book,1 -how_busy,tell me how busy the chili's will be between 11 and 2?,lambada,avail,0 -goodbye,adios,original,bye,2 -greeting,salutations!,original,greet,4 -no,so that's no,parrot,cancel,3 -thank_you,thank you for my reply,parrot,bye,2 -no,that's so false,parrot,cancel,3 -yes,yes sir,original,book,1 -how_busy,how long is the olive garden usually busy around noon,parrot,avail,0 -no,i'll pass,original,cancel,3 -yes,certainly,parrot,book,1 -goodbye,my way,parrot,bye,2 -how_busy,"at 5 pm, how busy is chili's",lambada,avail,0 -greeting,hello there!,original,greet,4 -goodbye,goodbye,original,bye,2 -greeting,are you well?,original,greet,4 -yes,confirm,original,book,1 -goodbye,farewell,original,bye,2 -date,date tomorrow?,parrot,avail,0 -greeting,hey there!,original,greet,4 -greeting,how's life,original,greet,4 -how_busy,what's chili's like at 7?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -greeting,hiya!,original,greet,4 -greeting,how're you?,parrot,greet,4 -yes,indeed,parrot,book,1 -yes,uh-huh,original,book,1 -goodbye,good speaking to you,original,bye,2 -yes,absolutely!,original,book,1 -thank_you,good job helping me,parrot,bye,2 -greeting,you're all right?,parrot,greet,4 -calendar_update,clear my calendar for thursday,parrot,resched,5 -goodbye,bye bye!,original,bye,2 -yes,i believe that's true,original,book,1 -goodbye,you're done,parrot,bye,2 -thank_you,it pleased me,parrot,bye,2 -yes,uh huh,original,book,1 -thank_you,many thanks,original,bye,2 -yes,correct,original,book,1 -no,not good,parrot,cancel,3 -cancel_reservation,my reservation for dinner at outback steakhouse needs to be cancelled,parrot,cancel,3 -yes,yep,original,book,1 -greeting,what's up,original,greet,4 -no,that’s actually wrong,original,cancel,3 -thank_you,awesome thanks,parrot,bye,2 -goodbye,i'm out,parrot,bye,2 -goodbye,say goodbye,parrot,bye,2 -thank_you,i sincerely thanks you for that,lambada,bye,2 -thank_you,very grateful,parrot,bye,2 -goodbye,later,original,bye,2 -greeting,hey what's up?,parrot,greet,4 -reminder_update,i want a reminder,lambada,resched,5 -thank_you,gracias,original,bye,2 -yes,huh huh,parrot,book,1 -how_busy,when is the best time to get a table at this restaurant?,lambada,avail,0 -reminder_update,make a reminder,parrot,resched,5 -no,no!,original,cancel,3 -thank_you,thank you!,original,bye,2 -no,naw,original,cancel,3 -no,i'll pass,original,cancel,3 -calendar,bowling on my calendar?,parrot,avail,0 -goodbye,make sure to talk to me soon,parrot,bye,2 -greeting,what's up?,parrot,greet,4 -greeting,how ya doing,lambada,greet,4 -greeting,hiya!,original,greet,4 -how_busy,how long would it take to get pizza sauce?,parrot,avail,0 -no,yes that's false,lambada,cancel,3 -thank_you,thanks,original,bye,2 -yes,correct,original,book,1 -no,no that's not true,parrot,cancel,3 -goodbye,"thanks for the chat, goodbye",lambada,bye,2 -yes,yep,original,book,1 -thank_you,"great, thanks!",original,bye,2 -no,i'd prefer not to,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -thank_you,i appreciate my help,original,bye,2 -no,that's completely false,original,cancel,3 -greeting,ahoy there,lambada,greet,4 -no,negating,parrot,cancel,3 -calendar,do i have calendar events on march 19?,parrot,avail,0 -greeting,hello siri,original,greet,4 -goodbye,nice drive by,lambada,bye,2 -goodbye,bye bye,lambada,bye,2 -yes,confirmed,original,book,1 -greeting,hey there!,original,greet,4 -greeting,hello ai,parrot,greet,4 -goodbye,be careful then,lambada,bye,2 -thank_you,my gratitude,parrot,bye,2 -thank_you,thanks a million,original,bye,2 -greeting,how are you?,parrot,greet,4 -goodbye,peace out!,original,bye,2 -how_busy,how busy oompa looma will be at lunch?,parrot,avail,0 -greeting,what's up,original,greet,4 -no,i'll pass,original,cancel,3 -thank_you,thank you!,original,bye,2 -goodbye,goodbye!,original,bye,2 -goodbye,talk later,original,bye,2 -reminder_update,remember the meeting tomorrow,parrot,resched,5 -date,what's today,original,avail,0 -goodbye,say goodbye,parrot,bye,2 -date,what's the current day?,parrot,avail,0 -how_busy,tell me the time i'll have to wait in phoenix,parrot,avail,0 -yes,10-Apr,original,book,1 -no,no!,original,cancel,3 -thank_you,many thanks,original,bye,2 -yes,10-Apr,original,book,1 -calendar_update,delete events on june 1,lambada,resched,5 -yes,it'll be yes,parrot,book,1 -greeting,what's up,original,greet,4 -date,list the next month?,parrot,avail,0 -how_busy,how long is the wait in mcdonald's today?,parrot,avail,0 -greeting,what's up?,parrot,greet,4 -how_busy,how long is the wait before i go to imovis?,parrot,avail,0 -thank_you,thank you!,original,bye,2 -yes,certainly true,parrot,book,1 -thank_you,much obliged,original,bye,2 -no,no thanks,original,cancel,3 -yes,confirm,original,book,1 -yes,great,original,book,1 -how_busy,how busy is ihop?,parrot,avail,0 -yes,accepted,original,book,1 -no,i'd say that the statement is definitely false,parrot,cancel,3 -greeting,"hello, what's up",original,greet,4 -thank_you,gracias,original,bye,2 -date,now what's the day?,parrot,avail,0 -no,no,lambada,cancel,3 -greeting,hello there,original,greet,4 -meeting_schedule,please tell me when i'll meet ole,parrot,avail,0 -thank_you,you're special thanks,parrot,bye,2 -greeting,how's life?,parrot,greet,4 -greeting,heller,original,greet,4 -how_busy,what's going on in cheesecake factory right now?,parrot,avail,0 -thank_you,"awesome, thanks",original,bye,2 -how_busy,how long is the wait for mr joes pizza?,parrot,avail,0 -yes,definitely,original,book,1 -greeting,hello what is happening,lambada,greet,4 -yes,certainly,parrot,book,1 -schedule_meeting,i need to arrange a meeting,parrot,book,1 -goodbye,good see you,lambada,bye,2 -yes,that'd be great,parrot,book,1 -date,where's tomorrow's date,parrot,avail,0 -no,FALSE,original,cancel,3 -how_busy,will i have a good time at red robin for lunch?,parrot,avail,0 -yes,it's positive,parrot,book,1 -yes,10-Apr,original,book,1 -goodbye,good conversation,parrot,bye,2 -greeting,i would like to know how everything is going for you in irvine,lambada,greet,4 -no,nope not it,original,cancel,3 -thank_you,thanks,original,bye,2 -no,that's incorrect,original,cancel,3 -goodbye,peace,original,bye,2 -greeting,hey yai,lambada,greet,4 -goodbye,tootles,original,bye,2 -greeting,hiya,original,greet,4 -goodbye,i must run now,parrot,bye,2 -how_busy,tell me the time it takes to get seated at the red lobster,parrot,avail,0 -no,no no no,parrot,cancel,3 -yes,that is a true statement,lambada,book,1 -yes,not a false statement,parrot,book,1 -yes,yeah that's right,lambada,book,1 -goodbye,goodbye then,parrot,bye,2 -yes,that's correct,original,book,1 -greeting,ahoy,lambada,greet,4 -meeting_schedule,how many meetings do i have today between noon and one,original,avail,0 -goodbye,i 'll have to talk to you later,parrot,bye,2 -yes,sure,original,book,1 -greeting,"hello, ai",original,greet,4 -no,nada,original,cancel,3 -greeting,hey,original,greet,4 -yes,ya,original,book,1 -no,"please, no",original,cancel,3 -no,not true,original,cancel,3 -goodbye,cya later,original,bye,2 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -reminder_update,create a reminder to pay for groceries this week,lambada,resched,5 -how_busy,how busy is the restaurant at 8:00 pm,lambada,avail,0 -greeting,how's otc?,parrot,greet,4 -calendar,what events do i have set for march 1?,lambada,avail,0 -no,what isn't true?,parrot,cancel,3 -goodbye,i really enjoyed speaking with you,parrot,bye,2 -goodbye,adios,original,bye,2 -goodbye,nice talk,lambada,bye,2 -goodbye,on the road,parrot,bye,2 -how_busy,how long will it take before the restaurant is booked?,parrot,avail,0 -no,nada,original,cancel,3 -no,this isn't true,parrot,cancel,3 -goodbye,peace out!,original,bye,2 -goodbye,afterward,parrot,bye,2 -no,nope,original,cancel,3 -greeting,what's new,lambada,greet,4 -thank_you,thanks for all my help,original,bye,2 -no,it's not true,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -no,nada,original,cancel,3 -date,what's today,original,avail,0 -thank_you,you made me aware,parrot,bye,2 -how_busy,when will the restaurant be busiest?,original,avail,0 -greeting,salutations!,original,greet,4 -greeting,yo,original,greet,4 -goodbye,afterward,parrot,bye,2 -date,date please,original,avail,0 -greeting,whats up,original,greet,4 -goodbye,bye!,original,bye,2 -greeting,is everything okay today?,parrot,greet,4 -greeting,how are things treating you,original,greet,4 -date,today?,parrot,avail,0 -schedule_meeting,can you arrange a meeting with james at the office?,parrot,book,1 -thank_you,"awesome, thanks",original,bye,2 -greeting,heller,original,greet,4 -greeting,bonjour,original,greet,4 -greeting,salutation,parrot,greet,4 -no,negative,original,cancel,3 -yes,accepted,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,so that's no,parrot,cancel,3 -thank_you,your answer pleased me,original,bye,2 -greeting,you good?,parrot,greet,4 -yes,accept,parrot,book,1 -yes,i know,parrot,book,1 -greeting,"hey, ai",original,greet,4 -goodbye,later!,original,bye,2 -greeting,whats new?,parrot,greet,4 -yes,it's true,original,book,1 -greeting,how've you been,original,greet,4 -yes,great,original,book,1 -no,no good,original,cancel,3 -no,i disagree with that,lambada,cancel,3 -goodbye,good bye my friend,original,bye,2 -no,not correct,parrot,cancel,3 -greeting,hey,original,greet,4 -date,what the day is?,parrot,avail,0 -no,no!,original,cancel,3 -goodbye,bye now,original,bye,2 -yes,"that is true, yes",original,book,1 -thank_you,your efforts won't be ignored,parrot,bye,2 -no,so that's no,parrot,cancel,3 -yes,correct,original,book,1 -meeting_schedule,is lisa meeting you today?,parrot,avail,0 -greeting,how's my doing?,parrot,greet,4 -schedule_meeting,is there a meeting room between 9 and 10?,parrot,book,1 -meeting_schedule,meetings today,original,avail,0 -date,in seven days?,parrot,avail,0 -date,today?,parrot,avail,0 -greeting,hi what's up,original,greet,4 -how_busy,is mr joes pizza usually occupied?,lambada,avail,0 -goodbye,buhbye,original,bye,2 -meeting_schedule,list the meetings today?,parrot,avail,0 -how_busy,do italian restaurants have long lines?,parrot,avail,0 -how_busy,is ihop busy around 8:15am?,lambada,avail,0 -greeting,what am i feeling?,lambada,greet,4 -schedule_meeting,can i schedule a meeting for 5pm on friday?,lambada,book,1 -how_busy,how long will it take to get a table at olive garden,lambada,avail,0 -thank_you,i am grateful,lambada,bye,2 -no,"that's not right, so no",original,cancel,3 -schedule_meeting,can you schedule a meeting today?,parrot,book,1 -no,the answer is no,original,cancel,3 -greeting,wassup,original,greet,4 -yes,you got it,original,book,1 -no,it's a negation,parrot,cancel,3 -how_busy,how long does it take to get seated at chinese house,lambada,avail,0 -yes,yes that is true,lambada,book,1 -calendar_update,disable an event from my calendar for march 4,parrot,resched,5 -how_busy,if i want to sit at the tamara steakhouse how long does it take to wait?,parrot,avail,0 -how_busy,how many hours is the restaurant usually busy,parrot,avail,0 -yes,uh-huh,original,book,1 -greeting,hiya!,original,greet,4 -yes,yay,lambada,book,1 -no,so that's no,parrot,cancel,3 -reminder_update,remind me to take my medicine?,parrot,resched,5 -meeting_schedule,when is today's meeting with john?,original,avail,0 -goodbye,fairwell,original,bye,2 -goodbye,i enjoyed our conversation,parrot,bye,2 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -no,no thanks,original,cancel,3 -goodbye,i'm gone,parrot,bye,2 -yes,it appears true,parrot,book,1 -greeting,welcome,parrot,greet,4 -no,negatory,original,cancel,3 -goodbye,goodbye ai,parrot,bye,2 -greeting,how you're doing?,parrot,greet,4 -date,what is it today?,lambada,avail,0 -how_busy,wait how long?,parrot,avail,0 -greeting,yo,original,greet,4 -yes,oh-huh,parrot,book,1 -greeting,and how's it going?,parrot,greet,4 -how_busy,how busy is georgio at 6,lambada,avail,0 -yes,affirmative,original,book,1 -date,please tell me what's the date for tomorrow,parrot,avail,0 -greeting,wassup,original,greet,4 -date,current day,parrot,avail,0 -greeting,good evening,original,greet,4 -goodbye,i'll leave,parrot,bye,2 -goodbye,goodbye,original,bye,2 -yes,good,parrot,book,1 -greeting,what's new,lambada,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,yo,original,greet,4 -goodbye,bye-bye,original,bye,2 -goodbye,cya later,original,bye,2 -thank_you,okay thank you,parrot,bye,2 -no,but it's not factual,parrot,cancel,3 -greeting,how is my day?,parrot,greet,4 -goodbye,thank you for the chat goodbye,parrot,bye,2 -calendar,is there anything on my calendar for june 22?,parrot,avail,0 -no,it's false,parrot,cancel,3 -how_busy,ihop around 10 pm,parrot,avail,0 -thank_you,and i thank you,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,aloha,original,greet,4 -goodbye,", goodbye",lambada,bye,2 -thank_you,"awesome, thanks",original,bye,2 -no,it's no,parrot,cancel,3 -no,that's no,parrot,cancel,3 -date,what is that day?,parrot,avail,0 -calendar_update,schedule family dinner on my calendar on march 8,original,resched,5 -thank_you,"awesome, thanks",original,bye,2 -yes,yeah yeah,lambada,book,1 -no,not happening,original,cancel,3 -how_busy,how busy will it be if i go to chili's around 6 o'clock,parrot,avail,0 -yes,agreed,original,book,1 -yes,not false,parrot,book,1 -yes,absolutely!,original,book,1 -yes,yup,original,book,1 -greeting,aho,parrot,greet,4 -no,that would be wrong,lambada,cancel,3 -goodbye,see ya,lambada,bye,2 -no,no!,original,cancel,3 -greeting,"hello, good day",lambada,greet,4 -how_busy,how long will the wait be at outback steakhouse,lambada,avail,0 -greeting,ahoy,lambada,greet,4 -goodbye,bye now,original,bye,2 -goodbye,later gater,original,bye,2 -yes,i think that's correct,parrot,book,1 -how_busy,what is the typical wait time at this restaurant?,lambada,avail,0 -no,FALSE,lambada,cancel,3 -goodbye,good-bye,parrot,bye,2 -yes,huh,parrot,book,1 -yes,yep,original,book,1 -yes,yay,lambada,book,1 -thank_you,"oh, thanks",original,bye,2 -yes,confirmed,original,book,1 -greeting,hey hey!,original,greet,4 -reminder_update,make a reminder,parrot,resched,5 -yes,facts,original,book,1 -greeting,hello bs,parrot,greet,4 -calendar,is there anything scheduled for march 7?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -no,nay,original,cancel,3 -goodbye,good talk,parrot,bye,2 -yes,sure,original,book,1 -date,what month of year is that?,parrot,avail,0 -no,nothing good,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -calendar_update,clear my calendar for november 11th,original,resched,5 -goodbye,good see you,lambada,bye,2 -no,negative definitely,parrot,cancel,3 -no,certainly not,original,cancel,3 -greeting,"hey there, how have you been",lambada,greet,4 -thank_you,gracias,original,bye,2 -greeting,ahoy there,lambada,greet,4 -how_busy,how long will the wait be at chipmons,lambada,avail,0 -calendar_update,add my next doctor appointment to my calendar,parrot,resched,5 -date,is it monday?,parrot,avail,0 -how_busy,wait time at macaroni grill?,parrot,avail,0 -reminder_update,have i forgotten?,parrot,resched,5 -no,it's a lie,parrot,cancel,3 -calendar_update,i need to add an event to my calendar for the 7th,parrot,resched,5 -thank_you,thanks again,original,bye,2 -date,what is the current day?,original,avail,0 -no,not that,original,cancel,3 -yes,TRUE,lambada,book,1 -greeting,welcome,parrot,greet,4 -yes,accepted,original,book,1 -yes,all right,parrot,book,1 -goodbye,we chatted well,parrot,bye,2 -no,FALSE,original,cancel,3 -no,that is erroneous,original,cancel,3 -goodbye,sayonara,original,bye,2 -yes,affirmative,original,book,1 -how_busy,how long should i wait before eating in the beta restaurant?,parrot,avail,0 -greeting,aloha,original,greet,4 -greeting,hola!,original,greet,4 -no,that is no,lambada,cancel,3 -calendar,what's the tuesday calendar like?,parrot,avail,0 -reminder_update,remind me to call bob,original,resched,5 -no,that's negative,parrot,cancel,3 -reminder_update,can you set a reminder for the current time tomorrow?,parrot,resched,5 -yes,yes please,original,book,1 -date,what's the date of that?,parrot,avail,0 -thank_you,thanks for the help!,original,bye,2 -how_busy,i want to know if there's a long wait to get into the restaurant at 7pm,parrot,avail,0 -greeting,how's my family going?,parrot,greet,4 -greeting,good morning what are you doing,parrot,greet,4 -thank_you,thankyou,parrot,bye,2 -thank_you,i have to thank you for your time,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -goodbye,tootles,original,bye,2 -goodbye,take care then,parrot,bye,2 -goodbye,ai goodbye,original,bye,2 -yes,uh huh,original,book,1 -greeting,hola,original,greet,4 -yes,okay,original,book,1 -thank_you,my sincere thanks,parrot,bye,2 -greeting,how things go?,parrot,greet,4 -greeting,salutation,parrot,greet,4 -date,in 9 days?,parrot,avail,0 -thank_you,a million thanks,parrot,bye,2 -yes,"yeah that's right, so true",original,book,1 -no,no way!,original,cancel,3 -thank_you,thanks for trying,original,bye,2 -yes,yeah,original,book,1 -no,naw,parrot,cancel,3 -greeting,hey yai,lambada,greet,4 -thank_you,gracias,original,bye,2 -goodbye,afterward,parrot,bye,2 -no,say negative,parrot,cancel,3 -meeting_schedule,is my schedule clear with no meeting with dan today?,parrot,avail,0 -no,no!,original,cancel,3 -no,that's untrue,parrot,cancel,3 -no,it's overwhelmingly wrong,parrot,cancel,3 -yes,that's correct,original,book,1 -greeting,aloha,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -reminder_update,reminder to pay taxes on saturday,parrot,resched,5 -calendar_update,what can i do to get rid of this event?,original,resched,5 -yes,roger that,original,book,1 -how_busy,how long will i have to wait before going to the restaurant?,parrot,avail,0 -no,i'd say it's a lie,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -yes,absolutely!,original,book,1 -goodbye,bye!,original,bye,2 -how_busy,is tio busy at 830?,parrot,avail,0 -meeting_schedule,time of meeting?,parrot,avail,0 -yes,"yes, please",original,book,1 -goodbye,"thanks, bye",original,bye,2 -no,negation,parrot,cancel,3 -no,nay,original,cancel,3 -goodbye,signing off,original,bye,2 -thank_you,"great, thanks!",original,bye,2 -yes,okay,original,book,1 -how_busy,tell me the average wait time at the cheesecake factory?,parrot,avail,0 -meeting_schedule,do you know if i have a meeting with dave today?,parrot,avail,0 -thank_you,"great, thanks!",original,bye,2 -goodbye,adios,original,bye,2 -goodbye,great talk,lambada,bye,2 -yes,that is accurate,original,book,1 -no,i'm going to say no,lambada,cancel,3 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -yes,ya,original,book,1 -yes,yeah,original,book,1 -yes,accept,parrot,book,1 -no,and i say negative,parrot,cancel,3 -calendar,what do i have scheduled on 3/15?,original,avail,0 -date,what today?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -cancel_reservation,is there a way to cancel my reservation for 6pm?,parrot,cancel,3 -thank_you,you made my life easier,parrot,bye,2 -no,it's a no,original,cancel,3 -how_busy,how busy will the chili grill be at 7pm?,parrot,avail,0 -no,nope,original,cancel,3 -yes,absolutely!,original,book,1 -goodbye,my friend,parrot,bye,2 -yes,positive,parrot,book,1 -no,it's no,parrot,cancel,3 -no,that is untrue,original,cancel,3 -how_busy,when can i wait to go to the chocolate fountain?,parrot,avail,0 -reminder_update,i need to remind the cat to be neutered,parrot,resched,5 -no,no,lambada,cancel,3 -yes,good,parrot,book,1 -greeting,ahoy there,lambada,greet,4 -greeting,welcome,parrot,greet,4 -calendar,did you mark the mechanic appointment on my calendar?,parrot,avail,0 -date,current day,parrot,avail,0 -goodbye,later!,original,bye,2 -greeting,bonjour,original,greet,4 -goodbye,have to run,parrot,bye,2 -no,not correct,parrot,cancel,3 -greeting,do you feel?,parrot,greet,4 -yes,yes,original,book,1 -goodbye,ai goodbye,original,bye,2 -greeting,hi how's everything?,parrot,greet,4 -yes,positive,original,book,1 -how_busy,the crowd at red lobster?,parrot,avail,0 -meeting_schedule,when is my meeting with leroy scheduled?,lambada,avail,0 -goodbye,bye my friend,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -calendar,check my calendar for march 5th,lambada,avail,0 -schedule_meeting,please reserve me a meeting room on thursday at 12 o'clock,parrot,book,1 -calendar,show me the calendar?,parrot,avail,0 -goodbye,ai goodbye,original,bye,2 -no,that's false,original,cancel,3 -calendar,do you have anything scheduled for next week?,parrot,avail,0 -calendar_update,stop this thing today,parrot,resched,5 -reminder_update,set a reminder for me,original,resched,5 -goodbye,goodbye!,original,bye,2 -how_busy,how long can i expect to wait at red lobster,lambada,avail,0 -meeting_schedule,when do you meet roger?,parrot,avail,0 -yes,obviously,parrot,book,1 -greeting,how has my day been,lambada,greet,4 -how_busy,what is the seating time in the restaurant?,parrot,avail,0 -reminder_update,i need to pay my car on the 23rd,parrot,resched,5 -yes,yep,original,book,1 -thank_you,i'm grateful for the support,parrot,bye,2 -goodbye,goodbye then,parrot,bye,2 -thank_you,nice,parrot,bye,2 -meeting_schedule,are there any meetings between 5 and 6 pm today?,lambada,avail,0 -greeting,tell me the way my day goes,parrot,greet,4 -no,certainly not,original,cancel,3 -no,that's actually a lie,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -date,what day of the month are we on?,parrot,avail,0 -thank_you,thanks please,original,bye,2 -goodbye,bye,original,bye,2 -yes,sure,original,book,1 -thank_you,thanks so much for my answer,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -thank_you,i appreciate your assistance,parrot,bye,2 -yes,i'm ready to say yes,parrot,book,1 -greeting,hey bs,lambada,greet,4 -cancel_reservation,please cancel my reservation,original,cancel,3 -calendar,what's happening on march 15,parrot,avail,0 -thank_you,i'm so very grateful,parrot,bye,2 -yes,affirmative,original,book,1 -thank_you,appreciated,original,bye,2 -goodbye,adios ai,original,bye,2 -yes,approved,original,book,1 -goodbye,good talk,parrot,bye,2 -no,FALSE,original,cancel,3 -date,what today?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -date,what is today?,original,avail,0 -yes,ya,original,book,1 -no,negative,original,cancel,3 -yes,yep,original,book,1 -thank_you,thanks!,original,bye,2 -greeting,welcome,parrot,greet,4 -no,nope not it,original,cancel,3 -goodbye,peace,original,bye,2 -calendar_update,please clear my calendar,original,resched,5 -greeting,wassup,original,greet,4 -goodbye,adios,original,bye,2 -yes,confirm,original,book,1 -meeting_schedule,when's the meeting?,parrot,avail,0 -how_busy,how long will i wait for a table at the red lobster?,parrot,avail,0 -yes,perfect,parrot,book,1 -no,but it's wrong,parrot,cancel,3 -how_busy,what is the typical time to get a table at this restaurant?,lambada,avail,0 -thank_you,my gratitude,parrot,bye,2 -greeting,hi ai,original,greet,4 -yes,accepted,original,book,1 -goodbye,this conversation was good,parrot,bye,2 -yes,yay,lambada,book,1 -no,negatory,original,cancel,3 -goodbye,take a break,parrot,bye,2 -no,no this is false,parrot,cancel,3 -no,that's inaccurate,original,cancel,3 -goodbye,i'll leave,parrot,bye,2 -no,and i'm sorry,parrot,cancel,3 -goodbye,see you later,original,bye,2 -yes,yep,original,book,1 -yes,all right,parrot,book,1 -thank_you,you've given me it,parrot,bye,2 -thank_you,your answer is appreciated,original,bye,2 -greeting,wassup,original,greet,4 -goodbye,peace,original,bye,2 -reminder_update,please make a reminder,original,resched,5 -greeting,whats up?,parrot,greet,4 -date,what's the date tomorrow,original,avail,0 -yes,not false,parrot,book,1 -yes,yeap,original,book,1 -greeting,wassup,original,greet,4 -yes,yeah yeah,lambada,book,1 -date,current date,original,avail,0 -no,negative,original,cancel,3 -no,i'll pass,original,cancel,3 -no,negative for sure,original,cancel,3 -no,it's a lie,parrot,cancel,3 -no,no?,parrot,cancel,3 -reminder_update,make me a reminder to pay my taxes,lambada,resched,5 -no,nope,original,cancel,3 -yes,is true,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -calendar_update,check my calendar for june 5th,parrot,resched,5 -yes,and you're right,parrot,book,1 -goodbye,i must catch up,parrot,bye,2 -greeting,how's idy?,parrot,greet,4 -greeting,how is life?,parrot,greet,4 -greeting,how's idy?,parrot,greet,4 -no,naw,original,cancel,3 -how_busy,how long will it take to get a table at one of the best pizza joints?,parrot,avail,0 -cancel_reservation,make a cancellation of my reservation for 8pm at red robin,parrot,cancel,3 -no,no please,parrot,cancel,3 -no,no!,original,cancel,3 -no,no,lambada,cancel,3 -how_busy,i want to know how long it takes to wait in a pizza shop,parrot,avail,0 -no,don't like that no,parrot,cancel,3 -greeting,wassup,original,greet,4 -no,"no, that would be a no",lambada,cancel,3 -goodbye,get there soon,lambada,bye,2 -goodbye,farewell,original,bye,2 -greeting,hi there,original,greet,4 -greeting,you're all right?,parrot,greet,4 -goodbye,goodbye ai,parrot,bye,2 -yes,ya,original,book,1 -calendar,are there any events between may 5 and 6?,parrot,avail,0 -yes,not a lie,parrot,book,1 -reminder_update,please remind me to take out the trash in an hour,lambada,resched,5 -yes,definitely yes,parrot,book,1 -yes,i know,parrot,book,1 -no,FALSE,original,cancel,3 -no,naw,original,cancel,3 -thank_you,merci beaucoup,original,bye,2 -greeting,"hello, what's up with you",lambada,greet,4 -yes,absolutely!,original,book,1 -yes,oh-huh,parrot,book,1 -greeting,heyo,original,greet,4 -greeting,what's happening?,parrot,greet,4 -how_busy,how long will i have to wait to be seated at chili's,parrot,avail,0 -yes,yay,lambada,book,1 -yes,yes please,original,book,1 -no,please do not agree,parrot,cancel,3 -goodbye,peace,original,bye,2 -no,indeed it's false,parrot,cancel,3 -yes,very true,original,book,1 -greeting,how you are?,parrot,greet,4 -greeting,how's idy doing?,parrot,greet,4 -greeting,how's it with you?,parrot,greet,4 -no,that's incorrect!,original,cancel,3 -how_busy,four how much business does georgio have?,parrot,avail,0 -no,not that,original,cancel,3 -greeting,whats up?,parrot,greet,4 -meeting_schedule,when do i get to meet roger?,parrot,avail,0 -yes,that's definitely true,original,book,1 -calendar,tell me what's showing on my calendar for friday the 1st?,lambada,avail,0 -reminder_update,please remind me something,parrot,resched,5 -calendar,please see my calendar,parrot,avail,0 -no,no?,parrot,cancel,3 -yes,affirmitive,original,book,1 -calendar_update,clear my calendar for march 7,lambada,resched,5 -goodbye,tootles?,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -goodbye,sayonara ,parrot,bye,2 -calendar,what do i have going on for the 12th?,parrot,avail,0 -no,most definitely false,parrot,cancel,3 -reminder_update,add a note,parrot,resched,5 -yes,confirmed,original,book,1 -goodbye,glad to talk again,parrot,bye,2 -greeting,hey bs,lambada,greet,4 -cancel_reservation,i need you to cancel my reservation for 5 at red robin,original,cancel,3 -yes,and you're correct,parrot,book,1 -no,nothing,parrot,cancel,3 -yes,confirmed,original,book,1 -greeting,get up ai,parrot,greet,4 -how_busy,how busy the cheesecake factory is at 6 o'clock in the afternoon?,parrot,avail,0 -thank_you,thank ya!,original,bye,2 -no,erroneous,parrot,cancel,3 -calendar_update,stop this thing today,parrot,resched,5 -date,what's today's date,original,avail,0 -greeting,"hello, good morning",lambada,greet,4 -no,i don't want that,parrot,cancel,3 -date,let me know the date today,parrot,avail,0 -thank_you,i owe you one,original,bye,2 -reminder_update,let me know,parrot,resched,5 -meeting_schedule,is my meeting with jim planned?,parrot,avail,0 -thank_you,thank ya!,original,bye,2 -yes,absolutely correct,original,book,1 -yes,TRUE,original,book,1 -calendar,what do i have scheduled on my calendar for march 14th?,lambada,avail,0 -goodbye,see ya!,original,bye,2 -yes,sure,original,book,1 -how_busy,how long will the wait in olive garden be?,parrot,avail,0 -no,no way!,original,cancel,3 -yes,yes,original,book,1 -thank_you,thank you kindly,original,bye,2 -date,tell me the date in four days,parrot,avail,0 -goodbye,later goodbye,parrot,bye,2 -how_busy,how long will it take to be seated at the grocers,parrot,avail,0 -goodbye,peace,original,bye,2 -yes,it's certainly positive,parrot,book,1 -goodbye,later thanks for the conversation,parrot,bye,2 -meeting_schedule,are there meetings between 1-5?,parrot,avail,0 -yes,the truth is true,lambada,book,1 -reminder_update,let me know,parrot,resched,5 -calendar_update,stop this thing today,parrot,resched,5 -date,what's today,original,avail,0 -yes,just right,parrot,book,1 -no,FALSE,original,cancel,3 -reminder_update,set up a new reminder to pay my monthly check,lambada,resched,5 -goodbye,fairwell?,parrot,bye,2 -date,let me know the date today,parrot,avail,0 -greeting,well hello,original,greet,4 -thank_you,i'm really grateful,parrot,bye,2 -yes,positive,original,book,1 -greeting,salutation,parrot,greet,4 -thank_you,your response was good,parrot,bye,2 -greeting,how is idy?,parrot,greet,4 -yes,it is true,original,book,1 -yes,i guess yes,parrot,book,1 -yes,sure,original,book,1 -cancel_reservation,how can i cancel my reservation at the outback?,parrot,cancel,3 -goodbye,bye for now,original,bye,2 -how_busy,list the average wait times in a chinese restaurant?,parrot,avail,0 -reminder_update,set a reminder for me to listen to music tomorrow,lambada,resched,5 -reminder_update,i need to remind you,parrot,resched,5 -yes,definitely,original,book,1 -no,not right,parrot,cancel,3 -thank_you,you helped,parrot,bye,2 -no,no it's not right,parrot,cancel,3 -how_busy,is mcdonalds busy?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -yes,ya,original,book,1 -yes,confirm,original,book,1 -how_busy,what's the average wait time in this restaurant?,parrot,avail,0 -reminder_update,remind me,original,resched,5 -yes,ya,original,book,1 -calendar,does my calendar include an event called shana's baby shower?,original,avail,0 -calendar_update,i have to add a date to my calendar to get dressed,parrot,resched,5 -goodbye,adios,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how long will it take to eat at cheese cake factory?,parrot,avail,0 -date,today?,parrot,avail,0 -yes,certainly,parrot,book,1 -meeting_schedule,what's my meeting today?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -no,that's a no,lambada,cancel,3 -yes,confirmed,original,book,1 -thank_you,i'm grateful,original,bye,2 -goodbye,goodbye soon,lambada,bye,2 -thank_you,much obliged,original,bye,2 -goodbye,goodbye ai,parrot,bye,2 -calendar_update,stop this thing today,parrot,resched,5 -yes,facts,original,book,1 -greeting,hola!,original,greet,4 -schedule_meeting,i need help with setting a meeting,parrot,book,1 -date,please show the date,parrot,avail,0 -yes,yes,original,book,1 -no,no thanks,original,cancel,3 -yes,approved,original,book,1 -yes,of course,original,book,1 -how_busy,how long will i have to wait before i can go to the restaurant,parrot,avail,0 -goodbye,see ya!,original,bye,2 -greeting,how's my life going?,parrot,greet,4 -greeting,hi there,original,greet,4 -greeting,salutations,parrot,greet,4 -thank_you,oh sweet thanks,original,bye,2 -no,i'm sorry it's not,parrot,cancel,3 -yes,yay,lambada,book,1 -yes,thats right,original,book,1 -goodbye,farewell,original,bye,2 -greeting,is everything ok today?,original,greet,4 -no,invalid,original,cancel,3 -yes,TRUE,lambada,book,1 -goodbye,good call,parrot,bye,2 -yes,confirmed,original,book,1 -greeting,how were you?,parrot,greet,4 -thank_you,you've made my life much easier,parrot,bye,2 -goodbye,i must say goodbye,original,bye,2 -yes,absolutely!,original,book,1 -no,negation,parrot,cancel,3 -no,yes the answer is false,parrot,cancel,3 -yes,absolutely,original,book,1 -yes,yeap,original,book,1 -no,but it's wrong,parrot,cancel,3 -date,tell me tomorrow's date?,original,avail,0 -greeting,how does ife treat you?,parrot,greet,4 -thank_you,i'm grateful,original,bye,2 -goodbye,thanks bye bye!,original,bye,2 -no,nope,original,cancel,3 -greeting,salutations,parrot,greet,4 -calendar_update,can i delete my golf tournament from tomorrow,parrot,resched,5 -yes,positive,original,book,1 -yes,uh-huh,original,book,1 -no,negative,original,cancel,3 -thank_you,thanks for that information,lambada,bye,2 -yes,yeap,original,book,1 -goodbye,the chat was good,parrot,bye,2 -no,negative,original,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,my way,parrot,bye,2 -how_busy,how busy is that macaroni grill?,parrot,avail,0 -greeting,are you doing good?,lambada,greet,4 -goodbye,thank you for the conversation later,parrot,bye,2 -yes,i want that,parrot,book,1 -yes,great,original,book,1 -thank_you,thank you again,parrot,bye,2 -no,naw,original,cancel,3 -no,it's negative,parrot,cancel,3 -greeting,how's everything?,parrot,greet,4 -date,what year?,parrot,avail,0 -calendar,what's going on on may 3rd,parrot,avail,0 -yes,"affirmative, go ahead",original,book,1 -date,please date,parrot,avail,0 -thank_you,your answer was enjoyable,original,bye,2 -thank_you,really great!,original,bye,2 -yes,certainly,parrot,book,1 -thank_you,the best,parrot,bye,2 -goodbye,bye,original,bye,2 -yes,that's a fact,parrot,book,1 -goodbye,see ya,original,bye,2 -yes,i think that's correct,parrot,book,1 -goodbye,tootles,original,bye,2 -thank_you,so grateful,parrot,bye,2 -reminder_update,"the next time it rains, remind me to close the windows",original,resched,5 -yes,definitely,original,book,1 -calendar,what is on my calendar for march 14?,parrot,avail,0 -calendar_update,"remove my prom from my calendar for march 15, 2019",lambada,resched,5 -thank_you,i'm grateful for the answer,parrot,bye,2 -greeting,"hi, how are you",original,greet,4 -no,negation,parrot,cancel,3 -yes,positive,parrot,book,1 -goodbye,thank you for talking to me,lambada,bye,2 -goodbye,good-bye,parrot,bye,2 -yes,yeah,original,book,1 -yes,thats right,original,book,1 -goodbye,peace,original,bye,2 -meeting_schedule,how many meetings i have today,lambada,avail,0 -how_busy,can i wait for red lobster at 7 pm?,parrot,avail,0 -goodbye,goodbye for now,parrot,bye,2 -yes,exactly right,original,book,1 -how_busy,how long will it be before the restaurant will be booked,lambada,avail,0 -calendar,is there an event called amy's surprise party on my calendar?,parrot,avail,0 -yes,facts,original,book,1 -how_busy,what time would i have to wait for a table at dibruno's?,parrot,avail,0 -meeting_schedule,when is this meeting?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -greeting,"hi, how are you doing",lambada,greet,4 -yes,please let's do that,parrot,book,1 -no,that's incorrect!,original,cancel,3 -thank_you,okay thank you,parrot,bye,2 -greeting,hello how are you doing,lambada,greet,4 -goodbye,farewell!,original,bye,2 -yes,ya,original,book,1 -no,negative definitely,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -goodbye,later gator!,original,bye,2 -greeting,hola!,original,greet,4 -reminder_update,please do not forget,parrot,resched,5 -thank_you,thank you for answering,parrot,bye,2 -no,you can't make it true,parrot,cancel,3 -how_busy,does the olive garden get crowded at 5?,parrot,avail,0 -no,nay,original,cancel,3 -greeting,nice day,lambada,greet,4 -no,that is untrue,original,cancel,3 -no,i'm saying no,parrot,cancel,3 -yes,right,parrot,book,1 -how_busy,what's the wait time at olive gardens?,parrot,avail,0 -yes,facts,original,book,1 -goodbye,i'm done chatting with you,lambada,bye,2 -yes,TRUE,lambada,book,1 -yes,TRUE,original,book,1 -greeting,hello there,original,greet,4 -goodbye,goodbye!,original,bye,2 -thank_you,thanks very much for your answer,parrot,bye,2 -yes,let's do it,parrot,book,1 -yes,yup,original,book,1 -greeting,ai how you're doing,lambada,greet,4 -no,the information is false,parrot,cancel,3 -goodbye,glad to talk again,parrot,bye,2 -date,is it monday wednesday wednesday or saturday?,parrot,avail,0 -greeting,wassup,original,greet,4 -yes,yeah yeah,lambada,book,1 -greeting,"how are you doing today, ai",original,greet,4 -date,list the next week?,parrot,avail,0 -thank_you,you're special thanks,parrot,bye,2 -calendar_update,please cancel my planned meal for the calendar,parrot,resched,5 -greeting,you good?,parrot,greet,4 -yes,absolutely!,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,hello good day,parrot,greet,4 -how_busy,does michelin steakhouse have a lot of people on their server?,parrot,avail,0 -no,"no, that's wrong",original,cancel,3 -date,what date?,parrot,avail,0 -no,please no,parrot,cancel,3 -how_busy,how busy will avocado steakhouse be at 730?,parrot,avail,0 -cancel_reservation,can i cancel my reservation for dinner on saturday,parrot,cancel,3 -goodbye,have fun?,lambada,bye,2 -yes,let's do that,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -thank_you,thanks again!,original,bye,2 -yes,"yes, please",parrot,book,1 -date,give me what the date is for tomorrow,parrot,avail,0 -date,say what day it will be?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -yes,i want you to be true,parrot,book,1 -no,not correct,parrot,cancel,3 -goodbye,good luck,lambada,bye,2 -cancel_reservation,annull the reservation i made,parrot,cancel,3 -thank_you,i'd like to thank you,parrot,bye,2 -greeting,aho,parrot,greet,4 -goodbye,have a good day?,original,bye,2 -date,you know the date?,parrot,avail,0 -no,nada,original,cancel,3 -calendar_update,i have to put my grocery store calendar on the calendar for tomorrow,parrot,resched,5 -yes,it'll be yes,parrot,book,1 -how_busy,is ihop busy at 6?,parrot,avail,0 -no,that's erroneous,parrot,cancel,3 -thank_you,my sincere gratitude,parrot,bye,2 -thank_you,merci beaucoup,original,bye,2 -thank_you,thanks again!,original,bye,2 -goodbye,come on soon,parrot,bye,2 -goodbye,bye,original,bye,2 -thank_you,you helped,parrot,bye,2 -how_busy,if i want to eat at panera how long will i have to wait?,parrot,avail,0 -thank_you,the best,parrot,bye,2 -yes,okay,original,book,1 -greeting,"hi there, how are you doing",original,greet,4 -thank_you,you answered,parrot,bye,2 -no,don't agree,parrot,cancel,3 -greeting,heyo,original,greet,4 -schedule_meeting,i have to schedule a meeting with mae at 5pm,parrot,book,1 -yes,absolutely,original,book,1 -yes,TRUE,original,book,1 -greeting,hows it going,lambada,greet,4 -how_busy,how often do people go to chili around 9pm?,parrot,avail,0 -goodbye,take it easy,lambada,bye,2 -greeting,bonjour,original,greet,4 -goodbye,goodbyes,parrot,bye,2 -no,it's a false,lambada,cancel,3 -goodbye,great conversation,parrot,bye,2 -greeting,whats new,lambada,greet,4 -greeting,yo,original,greet,4 -goodbye,bye!,original,bye,2 -no,it's very wrong,parrot,cancel,3 -how_busy,what's the wait time at the chippewa center?,parrot,avail,0 -yes,correct,original,book,1 -greeting,nice day,lambada,greet,4 -goodbye,goodbyes,parrot,bye,2 -no,no,lambada,cancel,3 -meeting_schedule,what time is it to meet fred?,parrot,avail,0 -how_busy,can you tell me how busy iroquois is at 5pm?,parrot,avail,0 -how_busy,how busy is georgio at 6,lambada,avail,0 -greeting,well how's the situation?,parrot,greet,4 -greeting,hiya,original,greet,4 -no,nay,original,cancel,3 -calendar,please tell me what may 1 will be like according to my schedule?,parrot,avail,0 -yes,affirmative,original,book,1 -how_busy,how long should i wait at the cheesecake factory before i get seated?,parrot,avail,0 -how_busy,tell me how busy the outback steakhouse will be at 7pm?,parrot,avail,0 -yes,10-Apr,original,book,1 -no,that is not true,original,cancel,3 -calendar_update,how do i get rid of this event?,parrot,resched,5 -goodbye,regards,original,bye,2 -goodbye,afterward,parrot,bye,2 -no,certainly false,parrot,cancel,3 -no,no,lambada,cancel,3 -thank_you,thanks,original,bye,2 -no,no thank you,original,cancel,3 -greeting,you good?,parrot,greet,4 -no,not right?,parrot,cancel,3 -greeting,"hello there, good morning",original,greet,4 -yes,accepted,original,book,1 -no,"no, definitely not",original,cancel,3 -yes,yay,lambada,book,1 -calendar_update,i need to add a date to my calendar to get dressed,parrot,resched,5 -yes,that would be true,original,book,1 -yes,sure,original,book,1 -how_busy,how busy is the place around 6,lambada,avail,0 -how_busy,how long has the wait been in an italian restaurant?,parrot,avail,0 -yes,yes i can say yes,lambada,book,1 -how_busy,how busy will it be at 9pm?,parrot,avail,0 -greeting,heller,original,greet,4 -greeting,how's the life?,parrot,greet,4 -cancel_reservation,how can i cancel a reservation?,parrot,cancel,3 -yes,that is true,original,book,1 -greeting,how's my treatment?,parrot,greet,4 -yes,yeah that's right,lambada,book,1 -yes,let's do it,parrot,book,1 -how_busy,wait at jalapeno ranch?,parrot,avail,0 -date,wednesday friday or saturday?,parrot,avail,0 -no,not correct,parrot,cancel,3 -no,nada,original,cancel,3 -reminder_update,keep checking the steak?,parrot,resched,5 -goodbye,fairwell,original,bye,2 -yes,of course,original,book,1 -goodbye,bye bye,lambada,bye,2 -thank_you,for that thank you,parrot,bye,2 -thank_you,my sincere thanks,parrot,bye,2 -reminder_update,create a reminder,original,resched,5 -yes,accepted,original,book,1 -greeting,hola!,original,greet,4 -thank_you,thanks so much for what you said,parrot,bye,2 -how_busy,i want to know how busy that restaurant is at 6:30,lambada,avail,0 -cancel_reservation,there is no need to confirm my reservation,original,cancel,3 -goodbye,bye!,original,bye,2 -date,what's the day tomorrow?,parrot,avail,0 -thank_you,thanks please,original,bye,2 -calendar,did i have my wife's anniversary on my calendar too?,parrot,avail,0 -greeting,hiya!,original,greet,4 -greeting,how is idy?,parrot,greet,4 -how_busy,tell me how long i have to wait for arizona steakhouse?,parrot,avail,0 -goodbye,peace,original,bye,2 -reminder_update,please remind me to write later,parrot,resched,5 -thank_you,a million thanks,parrot,bye,2 -no,that would be false,original,cancel,3 -no,what isn't true?,parrot,cancel,3 -meeting_schedule,how many meetings do you have between noon and 5pm?,parrot,avail,0 -greeting,ahoy hoy,original,greet,4 -goodbye,tootles?,parrot,bye,2 -how_busy,tell me how busy it is at noon?,parrot,avail,0 -meeting_schedule,i have a meeting with alice,parrot,avail,0 -goodbye,"great talk, thanks",original,bye,2 -date,tell me what day it will be in 24 hours?,lambada,avail,0 -goodbye,good night,original,bye,2 -date,current date,original,avail,0 -yes,obviously,parrot,book,1 -yes,good yes,lambada,book,1 -goodbye,goodbye ai,parrot,bye,2 -no,i'd say no,original,cancel,3 -no,and i'm sorry,parrot,cancel,3 -goodbye,"nice talk, goodbye",lambada,bye,2 -no,erroneous,parrot,cancel,3 -calendar_update,remove my birthday dinners from my calendar,parrot,resched,5 -no,no?,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -goodbye,goodbye soon,lambada,bye,2 -meeting_schedule,what meetings are on my schedule?,lambada,avail,0 -reminder_update,create a reminder to change clothes,parrot,resched,5 -yes,positive,parrot,book,1 -no,no that's wrong,original,cancel,3 -goodbye,catch you later,original,bye,2 -calendar_update,take work off of my calendar for may 7,parrot,resched,5 -date,what date is that?,parrot,avail,0 -meeting_schedule,do you have a meeting today?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -greeting,hi,original,greet,4 -no,not right?,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -no,naw,parrot,cancel,3 -goodbye,have fun?,lambada,bye,2 -date,what is today?,original,avail,0 -yes,"correct, that's true",original,book,1 -date,what date this month?,parrot,avail,0 -goodbye,farewell,original,bye,2 -thank_you,awesome thank you,parrot,bye,2 -how_busy,how busy is orchids at 7,original,avail,0 -goodbye,goodbye helpful ai device,parrot,bye,2 -goodbye,farewell,original,bye,2 -calendar_update,please remove pat's appointment from my calendar,parrot,resched,5 -reminder_update,add a reminder to check how the body decomposes,parrot,resched,5 -no,negating,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -yes,"yes, that's it",original,book,1 -thank_you,so grateful,parrot,bye,2 -yes,accept,parrot,book,1 -goodbye,goodnight,original,bye,2 -meeting_schedule,when is my meeting with mike scheduled?,parrot,avail,0 -greeting,hola,original,greet,4 -thank_you,thank you so much for my answer,parrot,bye,2 -goodbye,say goodbye,parrot,bye,2 -date,current date,original,avail,0 -how_busy,how busy will chili's be at 7:30,lambada,avail,0 -date,let me know the day of tomorrow,parrot,avail,0 -how_busy,what's the wait time for red lobster right now?,parrot,avail,0 -goodbye,goodbye no problem,parrot,bye,2 -greeting,aho,parrot,greet,4 -how_busy,is there a wait time at tsunami grill?,lambada,avail,0 -greeting,welcome,parrot,greet,4 -no,that's false,original,cancel,3 -yes,oh-huh,parrot,book,1 -goodbye,later goodbye,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -goodbye,i'm out,parrot,bye,2 -yes,agreed,original,book,1 -date,today is what date,original,avail,0 -reminder_update,make a reminder to sing in my next meeting,parrot,resched,5 -thank_you,thank you ai,parrot,bye,2 -no,i think it's not right,parrot,cancel,3 -goodbye,i'm out,parrot,bye,2 -goodbye,goodbye helpful ai device,parrot,bye,2 -yes,huh,parrot,book,1 -goodbye,goodbye for now,parrot,bye,2 -goodbye,bye my friend,parrot,bye,2 -thank_you,thanks for the response,lambada,bye,2 -yes,agreed,original,book,1 -yes,indeed,original,book,1 -goodbye,i've been talking with you recently,parrot,bye,2 -yes,all right,original,book,1 -greeting,whats up?,parrot,greet,4 -yes,definitely,original,book,1 -thank_you,thank you kindly,original,bye,2 -how_busy,does the michigan steakhouse have a lot of people at dinner?,parrot,avail,0 -no,that's negative,parrot,cancel,3 -reminder_update,i don't want to forget my mom,parrot,resched,5 -date,today?,parrot,avail,0 -no,negative,original,cancel,3 -no,no way,original,cancel,3 -goodbye,sayonara,original,bye,2 -goodbye,goodbye soon,lambada,bye,2 -goodbye,good bye,original,bye,2 -schedule_meeting,i have to meet with john at 11am,parrot,book,1 -no,so that's no,parrot,cancel,3 -no,certainly not true,parrot,cancel,3 -goodbye,later,original,bye,2 -goodbye,i'm leaving,parrot,bye,2 -greeting,"hello, how's my day",original,greet,4 -goodbye,regards,original,bye,2 -date,today is what date,original,avail,0 -no,would be no?,parrot,cancel,3 -greeting,how's the life?,parrot,greet,4 -meeting_schedule,i need to find a time to do all the meetings on my calendar,parrot,avail,0 -greeting,how are you today?,parrot,greet,4 -yes,okay,original,book,1 -yes,ya,original,book,1 -thank_you,thanks!,original,bye,2 -greeting,hiya!,original,greet,4 -yes,certainly,parrot,book,1 -thank_you,thanks for responding,parrot,bye,2 -no,don't agree,parrot,cancel,3 -no,nope,original,cancel,3 -date,what date?,parrot,avail,0 -greeting,"why, hello bandit",original,greet,4 -goodbye,bye!,original,bye,2 -calendar,display my calendar,lambada,avail,0 -how_busy,how long does it take to wait for me in the restaurant,parrot,avail,0 -date,date tomorrow?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -cancel_reservation,cancel my reservation for steakhouse,lambada,cancel,3 -thank_you,i thank you very much,parrot,bye,2 -no,that is wrong,original,cancel,3 -no,that's totally wrong!,original,cancel,3 -yes,TRUE,lambada,book,1 -schedule_meeting,please reserve a meeting room for 5:00 pm on friday,lambada,book,1 -yes,okay,original,book,1 -thank_you,i'm thankful,original,bye,2 -goodbye,adios!,original,bye,2 -goodbye,adios,original,bye,2 -yes,great,original,book,1 -goodbye,goodbyes soon,parrot,bye,2 -no,no please,parrot,cancel,3 -yes,ok,original,book,1 -yes,good,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -how_busy,how long will it take to wait at 6 pm,parrot,avail,0 -how_busy,is there a lot of waiting at the cheese shop around 3 pm?,lambada,avail,0 -greeting,hey hey!,original,greet,4 -yes,say positive,parrot,book,1 -meeting_schedule,do you have any meetings with ashley today?,parrot,avail,0 -how_busy,is the cheesecake factory busy?,parrot,avail,0 -greeting,how is my situation?,parrot,greet,4 -yes,it is true that this information is true,parrot,book,1 -how_busy,wait for the chocolate fountain at 11 am?,parrot,avail,0 -no,nay,original,cancel,3 -yes,accepted,original,book,1 -greeting,how's ai feeling?,parrot,greet,4 -goodbye,", goodbye",lambada,bye,2 -thank_you,you've been amazing,lambada,bye,2 -no,not that,original,cancel,3 -yes,yeah,original,book,1 -greeting,hows it going,lambada,greet,4 -yes,right,parrot,book,1 -date,what date tomorrow?,parrot,avail,0 -thank_you,you've tried,parrot,bye,2 -how_busy,how busy is imanas at 6,original,avail,0 -how_busy,how long will i wait for a table in olive garden?,parrot,avail,0 -greeting,how's that hanging?,parrot,greet,4 -thank_you,thanks so much,original,bye,2 -thank_you,i appreciate your assistance,parrot,bye,2 -goodbye,we chatted well,parrot,bye,2 -calendar,tell me what my appointment is for march 25th,parrot,avail,0 -yes,yes that's it,original,book,1 -goodbye,goodbye!,original,bye,2 -yes,yes,original,book,1 -goodbye,good call,parrot,bye,2 -yes,uh huh,original,book,1 -thank_you,i appreciate that,original,bye,2 -goodbye,catch you later,original,bye,2 -yes,yes,original,book,1 -yes,accepted,original,book,1 -goodbye,adios!,original,bye,2 -yes,definitely yes,parrot,book,1 -goodbye,goodbye,original,bye,2 -goodbye,for now,parrot,bye,2 -date,what's my day?,parrot,avail,0 -yes,TRUE,original,book,1 -how_busy,tell me how busy the red robin is at 730,parrot,avail,0 -greeting,whats up,original,greet,4 -how_busy,how long can i wait to eat in a restaurant,parrot,avail,0 -yes,it'd be great,parrot,book,1 -yes,please let's do this,parrot,book,1 -no,not that,original,cancel,3 -date,what date will it be in two days?,lambada,avail,0 -thank_you,"oh, thanks",original,bye,2 -no,that’s incorrect,original,cancel,3 -goodbye,bye-bye,original,bye,2 -no,nay,original,cancel,3 -yes,oh yes,original,book,1 -goodbye,have to go,parrot,bye,2 -thank_you,your help was huge thank you so much,parrot,bye,2 -yes,great,original,book,1 -yes,confirmed,original,book,1 -greeting,how are things going,original,greet,4 -yes,agreed,original,book,1 -greeting,how you're treated,parrot,greet,4 -yes,say positive,parrot,book,1 -yes,it's logical,parrot,book,1 -yes,it's true,original,book,1 -greeting,hola,original,greet,4 -greeting,wassup,original,greet,4 -yes,uh-huh,original,book,1 -greeting,welcome,parrot,greet,4 -how_busy,how busy the cheesecake factory is around 11?,parrot,avail,0 -goodbye,later,original,bye,2 -greeting,how ife treats you?,parrot,greet,4 -greeting,what is going on?,parrot,greet,4 -yes,it's true,original,book,1 -no,so that's no,parrot,cancel,3 -how_busy,how busy is the restaurant at 6pm?,parrot,avail,0 -goodbye,regards,original,bye,2 -no,no!,original,cancel,3 -greeting,how's life in my city?,parrot,greet,4 -calendar,please check my calendar,parrot,avail,0 -greeting,hi,original,greet,4 -greeting,are you doing good?,lambada,greet,4 -thank_you,you've tried,parrot,bye,2 -goodbye,my way,parrot,bye,2 -yes,right,parrot,book,1 -yes,is true,parrot,book,1 -no,negatory?,parrot,cancel,3 -date,is today monday?,original,avail,0 -yes,absolutely!,original,book,1 -greeting,welcome,parrot,greet,4 -no,that's bad,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -date,i have to know what day is next,parrot,avail,0 -thank_you,nice,parrot,bye,2 -thank_you,you've helped,parrot,bye,2 -goodbye,adios,original,bye,2 -calendar_update,clear my calendar for may 9,parrot,resched,5 -no,erroneous,parrot,cancel,3 -date,what is today?,original,avail,0 -yes,definitely,original,book,1 -reminder_update,remember me to call my mother tomorrow,parrot,resched,5 -goodbye,goodbye ai,parrot,bye,2 -goodbye,later goodbye,parrot,bye,2 -greeting,how's life,original,greet,4 -goodbye,thanks goodbye,parrot,bye,2 -yes,that's true,original,book,1 -greeting,hola!,original,greet,4 -how_busy,is iman busy around 5?,parrot,avail,0 -no,no no no,parrot,cancel,3 -no,naw,parrot,cancel,3 -thank_you,thank you for making my life better,parrot,bye,2 -goodbye,later,original,bye,2 -yes,10-Apr,original,book,1 -greeting,why hello?,original,greet,4 -greeting,"hi, ai",original,greet,4 -date,what's tomorrow's date,original,avail,0 -no,that's untrue,parrot,cancel,3 -no,that's not the way,parrot,cancel,3 -how_busy,how busy would texas hold its doors at 6 am,lambada,avail,0 -goodbye,say goodbye now,parrot,bye,2 -calendar_update,please remember to register for the race on my calendar for march 15th?,parrot,resched,5 -date,please explain today,parrot,avail,0 -reminder_update,add a reminder of cleaning the fridge,parrot,resched,5 -thank_you,thank you very much for doing the work,lambada,bye,2 -how_busy,tell me how busy the restaurant is?,parrot,avail,0 -greeting,"hello, hello, hello",lambada,greet,4 -goodbye,regards,original,bye,2 -goodbye,goodnight,original,bye,2 -goodbye,fairwell,original,bye,2 -yes,"yes, that's right",original,book,1 -thank_you,gracias,original,bye,2 -goodbye,as regards,parrot,bye,2 -greeting,salutation,parrot,greet,4 -thank_you,thankyou,parrot,bye,2 -no,naw,original,cancel,3 -greeting,how's my life going?,parrot,greet,4 -thank_you,you're the best!,original,bye,2 -no,negatory?,parrot,cancel,3 -yes,accepted,original,book,1 -goodbye,fairwell,original,bye,2 -schedule_meeting,i need a meeting with john at 8pm,parrot,book,1 -calendar,what do you have planned for january?,parrot,avail,0 -date,and what's the day?,parrot,avail,0 -goodbye,later gator!,original,bye,2 -yes,indeed,original,book,1 -yes,approved,original,book,1 -goodbye,goodnight,original,bye,2 -date,a year?,parrot,avail,0 -meeting_schedule,when's the meeting?,parrot,avail,0 -no,that's no,parrot,cancel,3 -how_busy,how busy is this restaurant?,parrot,avail,0 -yes,affirmitive,original,book,1 -greeting,how's it hanging,original,greet,4 -greeting,hey yai,lambada,greet,4 -goodbye,goodbyes,parrot,bye,2 -yes,yay,lambada,book,1 -date,today?,parrot,avail,0 -yes,it is a yes from me,parrot,book,1 -goodbye,goodnight,original,bye,2 -yes,TRUE,lambada,book,1 -goodbye,see ya,lambada,bye,2 -greeting,"hello, how are you",original,greet,4 -greeting,hiya!,original,greet,4 -no,don't agree,parrot,cancel,3 -calendar_update,delete my calendar from this friday,parrot,resched,5 -date,what day of the month are we?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -calendar_update,remove from calendar jesse's bbq on june 9th,original,resched,5 -thank_you,thank you i appreciate my help,parrot,bye,2 -greeting,what's up,original,greet,4 -no,negatory?,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -yes,all right,original,book,1 -yes,just right,parrot,book,1 -goodbye,nice talk,lambada,bye,2 -greeting,hi what's up?,parrot,greet,4 -no,absolutely false,parrot,cancel,3 -no,negative,original,cancel,3 -thank_you,really great!,original,bye,2 -goodbye,buhbye now,lambada,bye,2 -date,date tomorrow?,parrot,avail,0 -greeting,what's my feeling?,parrot,greet,4 -calendar_update,add a new event on my calendar,lambada,resched,5 -no,that's false,original,cancel,3 -greeting,what's up?,parrot,greet,4 -no,that's bad,parrot,cancel,3 -how_busy,is the wait long?,parrot,avail,0 -greeting,heyo,original,greet,4 -thank_you,nice,parrot,bye,2 -thank_you,merci beaucoup,original,bye,2 -meeting_schedule,what is my schedule today?,parrot,avail,0 -no,not good,parrot,cancel,3 -goodbye,bye,original,bye,2 -how_busy,get to know how busy it is at chili's at 5pm,parrot,avail,0 -yes,huh,parrot,book,1 -no,"no, that's wrong",original,cancel,3 -no,that isn't true,lambada,cancel,3 -no,invalid,original,cancel,3 -thank_you,i appreciate your time,lambada,bye,2 -yes,so it's true,parrot,book,1 -thank_you,you're special thanks,parrot,bye,2 -reminder_update,add me a reminder?,parrot,resched,5 -no,"no, definitely not",original,cancel,3 -thank_you,good to look at,parrot,bye,2 -calendar_update,i need to edit this event from my calendar,parrot,resched,5 -calendar,tell me what my calendar looks like for march 14th,parrot,avail,0 -thank_you,appreciate it,original,bye,2 -how_busy,will the wait be long at chili's right now,lambada,avail,0 -thank_you,thanks!,original,bye,2 -yes,good yes,lambada,book,1 -reminder_update,pay taxes on monday,parrot,resched,5 -date,today?,parrot,avail,0 -greeting,how's life,original,greet,4 -yes,"yup, that is true",lambada,book,1 -how_busy,what is the average wait time at red lobster?,lambada,avail,0 -greeting,do you feel?,parrot,greet,4 -thank_you,thanks for giving me assistance,original,bye,2 -no,nope,original,cancel,3 -yes,definitely,original,book,1 -no,no good,original,cancel,3 -goodbye,adios ai,original,bye,2 -goodbye,sign off,parrot,bye,2 -yes,oh-huh,parrot,book,1 -goodbye,goodbye soon,lambada,bye,2 -yes,i guess you're right,parrot,book,1 -greeting,"hello, good morning",lambada,greet,4 -goodbye,glad we've got to talk again,parrot,bye,2 -yes,my answer is yes,parrot,book,1 -yes,facts,original,book,1 -goodbye,see ya,lambada,bye,2 -goodbye,farewell,original,bye,2 -yes,that's correct,original,book,1 -date,tell me the date,parrot,avail,0 -greeting,hi,original,greet,4 -calendar,did i set a day on my calendar for voting in the next election?,original,avail,0 -goodbye,fairwell?,parrot,bye,2 -yes,huh,parrot,book,1 -no,erroneous,parrot,cancel,3 -thank_you,and i'm grateful,parrot,bye,2 -yes,yes,original,book,1 -calendar,tell me what's on my calendar for march 2nd?,parrot,avail,0 -reminder_update,can you make a reminder for me to bathe?,lambada,resched,5 -goodbye,regards,original,bye,2 -goodbye,the conversation with you was very pleasant,parrot,bye,2 -no,that's no,parrot,cancel,3 -yes,yeap,original,book,1 -thank_you,thanks for that,original,bye,2 -date,could you tell me the date tomorrow,lambada,avail,0 -greeting,good evening,original,greet,4 -thank_you,thank you,original,bye,2 -date,what date will tomorrow be?,lambada,avail,0 -date,tell me the day?,parrot,avail,0 -greeting,hola,original,greet,4 -goodbye,nice conversation today,parrot,bye,2 -greeting,how's everything,original,greet,4 -yes,it's positive,parrot,book,1 -greeting,how've you been?,parrot,greet,4 -thank_you,thanks!,original,bye,2 -thank_you,i'm so grateful,parrot,bye,2 -yes,yep,original,book,1 -greeting,yo,original,greet,4 -greeting,hello siri,original,greet,4 -greeting,hello what's up?,parrot,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,approved,original,book,1 -cancel_reservation,call my reservation cancelled,parrot,cancel,3 -goodbye,ill be leaving now,parrot,bye,2 -greeting,what's up,original,greet,4 -greeting,hey how's ot,lambada,greet,4 -no,negative for sure,original,cancel,3 -thank_you,a million thanks,parrot,bye,2 -yes,confirm,original,book,1 -thank_you,i appeciate it,parrot,bye,2 -no,it's not correct,parrot,cancel,3 -no,"no, that's incorrect",original,cancel,3 -no,not good idea,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -thank_you,thank you,original,bye,2 -yes,TRUE,lambada,book,1 -calendar_update,can you delete this event from my calendar please? '',parrot,resched,5 -yes,can we please?,original,book,1 -yes,sure,original,book,1 -no,"please, no",original,cancel,3 -yes,TRUE,lambada,book,1 -goodbye,goodbye for now ai,original,bye,2 -thank_you,thanks for trying,original,bye,2 -no,it's overwhelmingly wrong,parrot,cancel,3 -greeting,hey,original,greet,4 -no,hell nah,original,cancel,3 -yes,of course,original,book,1 -no,naw,parrot,cancel,3 -how_busy,is friday full after 4?,parrot,avail,0 -greeting,hola!,original,greet,4 -reminder_update,remind me,original,resched,5 -goodbye,have fun?,lambada,bye,2 -yes,obviously,parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,nope,original,cancel,3 -thank_you,thankyou,parrot,bye,2 -greeting,hi what's up,original,greet,4 -no,that's untrue,parrot,cancel,3 -greeting,how are you treated,lambada,greet,4 -calendar,know what's showing up on my calendar for march 2,lambada,avail,0 -thank_you,the best,parrot,bye,2 -goodbye,bye,original,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -greeting,how've you been?,parrot,greet,4 -no,nope,original,cancel,3 -yes,certainly true,parrot,book,1 -schedule_meeting,check meeting room availability between one and three o'clock,parrot,book,1 -greeting,how is life?,parrot,greet,4 -reminder_update,let me know,parrot,resched,5 -greeting,hiya,original,greet,4 -no,i'd like to say it's a lie,parrot,cancel,3 -how_busy,how long will it be before the restaurant is booked?,parrot,avail,0 -no,i'm sorry it's not happening,parrot,cancel,3 -yes,sure,original,book,1 -goodbye,bye!,original,bye,2 -no,negatory?,parrot,cancel,3 -goodbye,take a rest,parrot,bye,2 -greeting,hola,original,greet,4 -thank_you,okay thank you,parrot,bye,2 -how_busy,how long will i have to wait if i'm sitting in the departmental office?,parrot,avail,0 -yes,confirm,original,book,1 -goodbye,goodbye to you,original,bye,2 -reminder_update,add a note,parrot,resched,5 -date,what's the word for tomorrow?,parrot,avail,0 -yes,sure,original,book,1 -greeting,how're you?,parrot,greet,4 -goodbye,my friend,parrot,bye,2 -greeting,salutation,parrot,greet,4 -goodbye,afterward,parrot,bye,2 -greeting,how's the ayi?,parrot,greet,4 -yes,huh,parrot,book,1 -yes,"yes, please",original,book,1 -meeting_schedule,wanna meet with roger?,parrot,avail,0 -yes,all right,original,book,1 -goodbye,thanks for the chat,parrot,bye,2 -calendar,if there's an annual physical in my calendar?,parrot,avail,0 -no,not right so,parrot,cancel,3 -date,a year?,parrot,avail,0 -no,that's negative,parrot,cancel,3 -calendar,tell me what's on my calendar for march 6th?,parrot,avail,0 -greeting,heller,original,greet,4 -yes,"yup, that's correct",lambada,book,1 -date,now what's the day?,parrot,avail,0 -yes,absolutely!,original,book,1 -schedule_meeting,can you reserve a room for a meeting for 2:30 on wednesday?,lambada,book,1 -greeting,how's my current situation?,parrot,greet,4 -meeting_schedule,does travis have any meetings?,parrot,avail,0 -calendar,please see my calendar,parrot,avail,0 -greeting,how's the ayi?,parrot,greet,4 -no,negation,parrot,cancel,3 -no,no good,original,cancel,3 -greeting,ahoy hoy,original,greet,4 -yes,it's true,original,book,1 -thank_you,thanks for answering that,lambada,bye,2 -thank_you,thank you,original,bye,2 -thank_you,i appreciate your assistance,parrot,bye,2 -no,nada,original,cancel,3 -yes,that is true,original,book,1 -calendar_update,add the farm trip to my calendar for friday,parrot,resched,5 -greeting,how's ife treating you,original,greet,4 -thank_you,thanks for responding,parrot,bye,2 -no,no thank you,original,cancel,3 -yes,yeah yeah,lambada,book,1 -greeting,what's happening,original,greet,4 -yes,uh-huh,original,book,1 -no,nada,original,cancel,3 -greeting,hiya!,original,greet,4 -calendar_update,delete all calendar entries on march 3,original,resched,5 -goodbye,"thanks for chatting, later",original,bye,2 -greeting,ahoy,lambada,greet,4 -no,not good idea,parrot,cancel,3 -goodbye,"nice talk, goodbye",lambada,bye,2 -no,negative definitely,parrot,cancel,3 -greeting,how's my life?,parrot,greet,4 -yes,accepted,original,book,1 -goodbye,farewell,original,bye,2 -goodbye,goodbye to your,lambada,bye,2 -yes,yep,original,book,1 -greeting,hey there fellow,original,greet,4 -no,i'll pass,original,cancel,3 -no,certainly not,original,cancel,3 -date,today's date is what,original,avail,0 -greeting,hi ai,original,greet,4 -no,i'd rather not,parrot,cancel,3 -no,say negative,parrot,cancel,3 -yes,correct,original,book,1 -calendar_update,i need to remove this event from my calendar,parrot,resched,5 -date,current day,parrot,avail,0 -yes,is true,parrot,book,1 -date,what's my day?,parrot,avail,0 -yes,positive,original,book,1 -goodbye,for now,parrot,bye,2 -greeting,how's the life?,parrot,greet,4 -greeting,how's the ayi?,parrot,greet,4 -yes,i know it's true,parrot,book,1 -greeting,are you all right?,parrot,greet,4 -yes,sure,original,book,1 -yes,"yes, please",parrot,book,1 -yes,agreed,original,book,1 -thank_you,and i thank you,parrot,bye,2 -goodbye,i'm saying goodbye now,original,bye,2 -no,false sure,parrot,cancel,3 -greeting,hi what's up?,parrot,greet,4 -greeting,how is everything?,parrot,greet,4 -schedule_meeting,guide me through the process of scheduling a meeting,parrot,book,1 -goodbye,great chat goodbye,lambada,bye,2 -yes,ok,original,book,1 -greeting,hey there fellow,original,greet,4 -yes,positive,original,book,1 -yes,uh-huh,original,book,1 -thank_you,thanks for answering,parrot,bye,2 -goodbye,go easy,parrot,bye,2 -greeting,"hey, how's my day going",lambada,greet,4 -goodbye,good-bye,parrot,bye,2 -yes,of course,original,book,1 -no,not really,original,cancel,3 -date,today?,parrot,avail,0 -no,invalid,original,cancel,3 -greeting,how's ayi doing?,parrot,greet,4 -goodbye,", goodbye",lambada,bye,2 -no,erroneous,parrot,cancel,3 -thank_you,thank you,original,bye,2 -how_busy,tell me how busy the restaurant is at noon?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -how_busy,how long is the wait at applebees right now,lambada,avail,0 -yes,accept,parrot,book,1 -no,this is not right it's false,parrot,cancel,3 -greeting,bonjour,original,greet,4 -thank_you,thanks please,original,bye,2 -goodbye,i'll be gone,parrot,bye,2 -yes,so it works,parrot,book,1 -greeting,aloha,original,greet,4 -reminder_update,help me remember to pick stan up later,parrot,resched,5 -goodbye,"nice talk, next time",lambada,bye,2 -greeting,what's new?,parrot,greet,4 -greeting,what's up with you?,parrot,greet,4 -yes,yeah,original,book,1 -no,negating,parrot,cancel,3 -date,in three days,parrot,avail,0 -cancel_reservation,please cancel my reservation at the lobster claws,lambada,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -yes,yay,lambada,book,1 -how_busy,is ihop usually busy between 5 and 6 o'clock?,parrot,avail,0 -meeting_schedule,what meetings do i have today?,original,avail,0 -calendar_update,remove the next event from my calendar,parrot,resched,5 -yes,right,parrot,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -how_busy,will the wait be long at chili right now?,parrot,avail,0 -yes,sure,original,book,1 -thank_you,gracias,original,bye,2 -thank_you,you're a good help,parrot,bye,2 -no,the negator,parrot,cancel,3 -reminder_update,don't let me forget later,parrot,resched,5 -no,i don't think it's possible,parrot,cancel,3 -greeting,how do you feel?,parrot,greet,4 -greeting,aloha,original,greet,4 -thank_you,well done,parrot,bye,2 -yes,it's positive,parrot,book,1 -yes,right,parrot,book,1 -no,negative definitely,parrot,cancel,3 -date,please show the date,parrot,avail,0 -reminder_update,may i be reminded?,parrot,resched,5 -yes,yup,original,book,1 -date,what's my day today?,parrot,avail,0 -yes,is true,parrot,book,1 -date,list the current date?,parrot,avail,0 -goodbye,i'll leave,parrot,bye,2 -thank_you,well done,parrot,bye,2 -no,that is very false,lambada,cancel,3 -yes,affirmitive,original,book,1 -goodbye,good-bye,parrot,bye,2 -thank_you,my thanks,parrot,bye,2 -yes,okay,original,book,1 -goodbye,bye bye,lambada,bye,2 -date,give me a date,parrot,avail,0 -yes,"yes, that's affirmative",original,book,1 -how_busy,how busy will ian be at 6pm?,parrot,avail,0 -no,it's completely false,parrot,cancel,3 -goodbye,on the road,parrot,bye,2 -date,today?,parrot,avail,0 -goodbye,tootles,original,bye,2 -thank_you,so grateful,parrot,bye,2 -no,FALSE,original,cancel,3 -reminder_update,i need to be reminded,original,resched,5 -yes,oh-huh,parrot,book,1 -calendar,retrieve events in my calendar,parrot,avail,0 -yes,yes that is true,lambada,book,1 -greeting,aloha,original,greet,4 -no,naw,original,cancel,3 -goodbye,thanks goodbye,parrot,bye,2 -how_busy,please tell me how long it takes to wait for cheesecake?,parrot,avail,0 -no,no thank you,original,cancel,3 -greeting,salutation,parrot,greet,4 -greeting,aloha,original,greet,4 -reminder_update,please remember something,parrot,resched,5 -yes,yep,original,book,1 -how_busy,what is the wait time at san teodoros?,lambada,avail,0 -greeting,how's it hanging?,parrot,greet,4 -date,today?,parrot,avail,0 -goodbye,goodbye now,parrot,bye,2 -yes,certainly true,parrot,book,1 -yes,affirmitive,original,book,1 -no,i'm going to say no,lambada,cancel,3 -cancel_reservation,can you cancel black cherry reservation?,parrot,cancel,3 -no,that's bad,parrot,cancel,3 -how_busy,is there a long wait for a table at 8 o'clock?,parrot,avail,0 -yes,"yes, that's right",original,book,1 -greeting,hiya,original,greet,4 -no,would be no?,parrot,cancel,3 -yes,i'd have to say yes,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -no,nothing,parrot,cancel,3 -calendar_update,delete dentist from my calendar,original,resched,5 -how_busy,can you tell me how busy the robinson grill is?,parrot,avail,0 -no,that's bad,parrot,cancel,3 -no,that’s actually wrong,original,cancel,3 -greeting,yo,original,greet,4 -goodbye,i'm out,parrot,bye,2 -no,i think it's wrong,parrot,cancel,3 -goodbye,ai goodbye,original,bye,2 -how_busy,if i want to eat panera how long will i have to wait?,parrot,avail,0 -no,not right so,parrot,cancel,3 -yes,affirmative,original,book,1 -goodbye,bye!,original,bye,2 -reminder_update,please remind me of my mother's birthday,parrot,resched,5 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,would you like to know if the wait at the pizza factory is very long,lambada,avail,0 -greeting,"hello, friend",original,greet,4 -yes,a real statement,parrot,book,1 -no,so that's no,parrot,cancel,3 -greeting,are you doing good?,lambada,greet,4 -goodbye,cya later,original,bye,2 -schedule_meeting,am i able to book a meeting room between 8 and 9,lambada,book,1 -how_busy,can you tell me how long it takes to get to the red lobster?,parrot,avail,0 -no,that's wrong,original,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -greeting,hola!,original,greet,4 -no,the answer is false,original,cancel,3 -yes,positive,parrot,book,1 -greeting,heyo,original,greet,4 -thank_you,you helped me,parrot,bye,2 -how_busy,outback steakhouse at 7 pm,parrot,avail,0 -date,i need to know what's the date tomorrow,parrot,avail,0 -greeting,"hi, ai",original,greet,4 -cancel_reservation,can i cancel my reservation for tomorrow at the steakhouse?,parrot,cancel,3 -greeting,hi what's going on?,parrot,greet,4 -goodbye,bye,original,bye,2 -no,yes that's false,lambada,cancel,3 -yes,TRUE,original,book,1 -cancel_reservation,the dinner reservation is not required,parrot,cancel,3 -goodbye,peace,original,bye,2 -reminder_update,let me remember,parrot,resched,5 -no,that's very false,parrot,cancel,3 -yes,positive,original,book,1 -greeting,salutations,parrot,greet,4 -no,but it's wrong,parrot,cancel,3 -goodbye,bye,original,bye,2 -greeting,salutation,parrot,greet,4 -goodbye,regards,original,bye,2 -reminder_update,"new reminder, please",original,resched,5 -goodbye,ill be leaving now,parrot,bye,2 -how_busy,how long will i have to wait for chili at 7pm,parrot,avail,0 -how_busy,is mr teddy's busy around 12?,lambada,avail,0 -goodbye,bye!,original,bye,2 -no,definitely not,original,cancel,3 -goodbye,say goodbye,parrot,bye,2 -how_busy,how long will i have to wait for shokudo?,parrot,avail,0 -date,what date is tomorrow,parrot,avail,0 -greeting,hey,original,greet,4 -no,negation,parrot,cancel,3 -thank_you,oh sweet thanks,original,bye,2 -greeting,you're all right?,parrot,greet,4 -yes,thats right,original,book,1 -meeting_schedule,let me know how many meetings i'm scheduled for today,parrot,avail,0 -no,that's bad,parrot,cancel,3 -goodbye,later,original,bye,2 -schedule_meeting,do you have a meeting room open wednesday 10pm?,parrot,book,1 -reminder_update,come on please,parrot,resched,5 -thank_you,your assistance is appreciated,parrot,bye,2 -yes,correct,original,book,1 -greeting,how's life?,parrot,greet,4 -greeting,have you had a good day?,lambada,greet,4 -no,negation,parrot,cancel,3 -no,i prefer not,parrot,cancel,3 -thank_you,okay thank you,parrot,bye,2 -goodbye,farewell,original,bye,2 -yes,confirm,original,book,1 -no,nope,original,cancel,3 -yes,roger that,original,book,1 -schedule_meeting,is it possible to have a meeting with mark at noon?,parrot,book,1 -no,definitely not,original,cancel,3 -greeting,what's new,lambada,greet,4 -goodbye,good call,parrot,bye,2 -no,the wrong answer,parrot,cancel,3 -thank_you,you've been great,parrot,bye,2 -no,"no, that is not right",original,cancel,3 -reminder_update,remember for tomorrow's meeting,parrot,resched,5 -yes,indeed,original,book,1 -goodbye,im leaving,parrot,bye,2 -greeting,"hey, ai",original,greet,4 -cancel_reservation,my reservation was for dinner,parrot,cancel,3 -yes,"yeah, that's true",lambada,book,1 -goodbye,wonderful conversation,lambada,bye,2 -yes,absolutely,original,book,1 -greeting,hello,original,greet,4 -yes,i guess you're right,parrot,book,1 -greeting,hello siri,original,greet,4 -goodbye,glad to talk,parrot,bye,2 -yes,yay,lambada,book,1 -no,not that,original,cancel,3 -goodbye,it's over,parrot,bye,2 -greeting,nice day,lambada,greet,4 -goodbye,farewell,original,bye,2 -greeting,aho,parrot,greet,4 -goodbye,goodbye!,original,bye,2 -thank_you,thank you for what you did,parrot,bye,2 -greeting,how you are?,parrot,greet,4 -date,today?,parrot,avail,0 -yes,huh,parrot,book,1 -thank_you,thank you,original,bye,2 -goodbye,good bye then,original,bye,2 -thank_you,well done,parrot,bye,2 -no,is my falsehood?,parrot,cancel,3 -schedule_meeting,is it possible to meet james in the office?,parrot,book,1 -goodbye,good seeing you,original,bye,2 -goodbye,good talk,parrot,bye,2 -yes,yes,original,book,1 -how_busy,wait how long before we get seated in this restaurant?,parrot,avail,0 -goodbye,cya later,original,bye,2 -how_busy,is the restaurant always packed between breakfast and dinner?,parrot,avail,0 -yes,confirmed,original,book,1 -calendar_update,remove fencing from my calendar for may 7th,original,resched,5 -meeting_schedule,what is my schedule?,parrot,avail,0 -goodbye,peace,original,bye,2 -no,no thanks,original,cancel,3 -greeting,well hello,original,greet,4 -thank_you,appreciate it,original,bye,2 -greeting,salutations!,original,greet,4 -yes,affirmative,original,book,1 -reminder_update,i must remind myself to go get another credit card,parrot,resched,5 -no,no,lambada,cancel,3 -no,nothing good,parrot,cancel,3 -goodbye,goodbye for now,parrot,bye,2 -greeting,good evening,original,greet,4 -goodbye,talk later,original,bye,2 -how_busy,what's the expected wait time for a table at olive garden at 6pm?,parrot,avail,0 -meeting_schedule,time of meeting?,parrot,avail,0 -calendar_update,please delete a certain meeting,parrot,resched,5 -yes,right,parrot,book,1 -goodbye,see ya,original,bye,2 -yes,okay,original,book,1 -yes,great,original,book,1 -goodbye,good-bye,parrot,bye,2 -thank_you,gracias,original,bye,2 -goodbye,goodbye ai,parrot,bye,2 -no,negation,parrot,cancel,3 -goodbye,lovely conversation,parrot,bye,2 -yes,yay,lambada,book,1 -date,what day is it?,original,avail,0 -schedule_meeting,how do i create a meeting,original,book,1 -how_busy,if the wait at the pizza factory is long would you like to know,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -goodbye,great talk,lambada,bye,2 -greeting,hi,original,greet,4 -calendar_update,delete the birthday party date on my calendar,parrot,resched,5 -thank_you,appreciated,original,bye,2 -how_busy,what's the wait for a table at the red lobster restaurant?,parrot,avail,0 -how_busy,how many requests do i have at pjs to 9,lambada,avail,0 -how_busy,how long would it take to sit at applebees,parrot,avail,0 -goodbye,bye,original,bye,2 -thank_you,really great!,original,bye,2 -date,the date is today,parrot,avail,0 -thank_you,i'm grateful,original,bye,2 -cancel_reservation,i need to cancel my reservation for nudist to houston,lambada,cancel,3 -greeting,how's idy doing,lambada,greet,4 -goodbye,sayonara ,parrot,bye,2 -no,it's no,parrot,cancel,3 -goodbye,farewell!,original,bye,2 -no,erroneous,parrot,cancel,3 -meeting_schedule,check out what meetings i have planned,lambada,avail,0 -greeting,have you felt?,parrot,greet,4 -calendar_update,clear my calendar for march 15th,parrot,resched,5 -goodbye,goodbye to you,original,bye,2 -no,erroneous,parrot,cancel,3 -yes,indeed,parrot,book,1 -no,but it turns out to be false,parrot,cancel,3 -greeting,bonjour,original,greet,4 -greeting,hola!,original,greet,4 -yes,it also makes sense,parrot,book,1 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -no,i meant nothing,parrot,cancel,3 -date,what date is today?,original,avail,0 -no,that's completely wrong,parrot,cancel,3 -reminder_update,don't forget to remember to pay the bills,parrot,resched,5 -thank_you,thank you,original,bye,2 -yes,obviously,parrot,book,1 -date,what's my tomorrow date?,parrot,avail,0 -how_busy,how long will i have to wait at macaroni grill,lambada,avail,0 -date,what's the day now??,parrot,avail,0 -goodbye,sayonara,original,bye,2 -yes,i agree with what you've said,parrot,book,1 -greeting,hey yai,lambada,greet,4 -schedule_meeting,book a meeting room on thursday at 11am,parrot,book,1 -no,it's overwhelmingly wrong,parrot,cancel,3 -how_busy,how busy will beefy's be at 9 am,lambada,avail,0 -greeting,how's life?,parrot,greet,4 -yes,10-Apr,original,book,1 -date,what year?,parrot,avail,0 -greeting,what's up,original,greet,4 -goodbye,bye!,original,bye,2 -no,no,lambada,cancel,3 -greeting,hi,original,greet,4 -greeting,hiya,original,greet,4 -yes,correct,original,book,1 -thank_you,again thanks,parrot,bye,2 -thank_you,well done,parrot,bye,2 -how_busy,is mcdonalds busy?,parrot,avail,0 -greeting,nice day,lambada,greet,4 -schedule_meeting,can you schedule a meeting with sam at 1pm?,lambada,book,1 -calendar_update,remove my date with liz from my calendar on 1 april,parrot,resched,5 -how_busy,how many people are there at mr joes at 8,lambada,avail,0 -no,naw,parrot,cancel,3 -how_busy,how busy is chicory grill before dinner,lambada,avail,0 -goodbye,i'll go,parrot,bye,2 -thank_you,gracias,original,bye,2 -goodbye,bye bye!,original,bye,2 -how_busy,how long will it take to get a table at chipotle,lambada,avail,0 -greeting,"hello, friend",original,greet,4 -thank_you,"nice, excellent!",original,bye,2 -goodbye,goodbye!,original,bye,2 -goodbye,be careful then,lambada,bye,2 -goodbye,bye-bye,original,bye,2 -no,that's a negatory,original,cancel,3 -greeting,salutations!,original,greet,4 -no,"no, that's incorrect",original,cancel,3 -greeting,what's up?,parrot,greet,4 -thank_you,thanks very much,parrot,bye,2 -yes,"yes, please",parrot,book,1 -goodbye,the talk was nice,lambada,bye,2 -goodbye,i'll see you later,lambada,bye,2 -yes,thats right,original,book,1 -goodbye,peace,original,bye,2 -no,negatory,original,cancel,3 -no,it's not right,parrot,cancel,3 -greeting,how's idy doing,lambada,greet,4 -yes,absolutely,original,book,1 -goodbye,good-bye,parrot,bye,2 -calendar_update,clear my calendar for friday,lambada,resched,5 -goodbye,"see you later, alligator",original,bye,2 -greeting,hi there alexa,original,greet,4 -goodbye,greetings,parrot,bye,2 -yes,say yes,lambada,book,1 -yes,ok,original,book,1 -reminder_update,add a reminder,lambada,resched,5 -greeting,hows it going,lambada,greet,4 -greeting,salutations!,original,greet,4 -thank_you,you answered,parrot,bye,2 -calendar,do i have appointments for the 2nd of march?,parrot,avail,0 -no,that's no way,parrot,cancel,3 -yes,yup,original,book,1 -yes,absolutely,original,book,1 -goodbye,peace out,original,bye,2 -date,let me know what's the date of today,parrot,avail,0 -no,but no way?,parrot,cancel,3 -greeting,hey how's it going,original,greet,4 -greeting,how are you,original,greet,4 -yes,positive,parrot,book,1 -calendar,did i set a date on my calendar for a doctor's visit?,parrot,avail,0 -goodbye,"nice talk, next time",lambada,bye,2 -greeting,hey bs,lambada,greet,4 -date,date tomorrow,parrot,avail,0 -no,is my false claim?,parrot,cancel,3 -no,i disagree,parrot,cancel,3 -greeting,how ya doing,lambada,greet,4 -greeting,have to know how it goes,parrot,greet,4 -yes,uh-huh,original,book,1 -cancel_reservation,i want a cancellation of the dinner reservation for phillips at bernardin's,original,cancel,3 -thank_you,thanks!,original,bye,2 -no,please disagree,lambada,cancel,3 -greeting,whats up,original,greet,4 -yes,"yes, please",parrot,book,1 -no,no thanks,original,cancel,3 -greeting,how've you been feeling,original,greet,4 -calendar,what's on my calendar for the 7th of august,lambada,avail,0 -goodbye,bye bye,lambada,bye,2 -no,naw,original,cancel,3 -no,that's absolutely false,parrot,cancel,3 -greeting,how's everything,original,greet,4 -yes,10-Apr,original,book,1 -thank_you,"oh, thanks",original,bye,2 -how_busy,how long will the restaurant be before we leave?,parrot,avail,0 -calendar,check my calendar,parrot,avail,0 -no,please disagree,lambada,cancel,3 -yes,"yes, that's correct",original,book,1 -goodbye,i enjoyed our talk,parrot,bye,2 -greeting,well hi there,original,greet,4 -reminder_update,make a reminder to work out at the gym,original,resched,5 -greeting,heyo,original,greet,4 -goodbye,i must catch up,parrot,bye,2 -how_busy,how busy will tatsurai be at 8pm,parrot,avail,0 -yes,all right,parrot,book,1 -meeting_schedule,when i'll meet roger?,parrot,avail,0 -meeting_schedule,when is this meeting?,parrot,avail,0 -yes,yes,original,book,1 -date,today?,parrot,avail,0 -goodbye,goodbye then,parrot,bye,2 -yes,certainly,parrot,book,1 -no,nope,original,cancel,3 -yes,affirmative,original,book,1 -calendar_update,add a farm trip to my calendar on 1 march,parrot,resched,5 -thank_you,gracias,original,bye,2 -thank_you,i'm really thankful,parrot,bye,2 -goodbye,later then,lambada,bye,2 -how_busy,how long will the wait be at chipper's?,parrot,avail,0 -yes,ok,original,book,1 -reminder_update,is it possible to set a reminder for meetings?,parrot,resched,5 -calendar,what's on the march 2 calendar?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -no,that's incorrect,original,cancel,3 -yes,good,parrot,book,1 -reminder_update,next time it rains remind me to close the windows,parrot,resched,5 -yes,say yes,lambada,book,1 -meeting_schedule,meeting today,parrot,avail,0 -how_busy,will the restaurant fill up,parrot,avail,0 -yes,that's true,original,book,1 -no,it's very wrong,parrot,cancel,3 -yes,it seems true,parrot,book,1 -goodbye,later!,original,bye,2 -yes,agreed,original,book,1 -yes,it is true yes,parrot,book,1 -greeting,hello there!,original,greet,4 -yes,very true,original,book,1 -calendar,please read my calendar for april 30th,parrot,avail,0 -date,what day of the month?,parrot,avail,0 -yes,TRUE,lambada,book,1 -greeting,wassup,original,greet,4 -yes,that's correct,original,book,1 -yes,confirm,original,book,1 -greeting,"hello, anyone there",original,greet,4 -reminder_update,i need to pay my car in the 23rd,parrot,resched,5 -goodbye,tootles,original,bye,2 -goodbye,good night,original,bye,2 -goodbye,bye bye,lambada,bye,2 -greeting,how is this going?,parrot,greet,4 -goodbye,bye now,original,bye,2 -meeting_schedule,when's the meeting with kara?,parrot,avail,0 -thank_you,thanks for my reply,parrot,bye,2 -thank_you,gracias,original,bye,2 -yes,yeah,original,book,1 -greeting,how is it going,original,greet,4 -no,that's a no,lambada,cancel,3 -goodbye,goodbyes soon,parrot,bye,2 -no,so that's no,parrot,cancel,3 -no,it is false,original,cancel,3 -thank_you,i'm so very grateful,parrot,bye,2 -no,is not true?,parrot,cancel,3 -date,what's today?,parrot,avail,0 -no,no that isn't it,original,cancel,3 -no,no thanks,original,cancel,3 -thank_you,thanks for helping me,original,bye,2 -yes,yes,original,book,1 -greeting,wassup,original,greet,4 -thank_you,your assistance is appreciated,parrot,bye,2 -thank_you,thanks!,original,bye,2 -no,it's a no,original,cancel,3 -goodbye,good bye my friend,original,bye,2 -date,would you let me know the date of today,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -no,i must say no,original,cancel,3 -calendar,what's i supposed to do today,parrot,avail,0 -yes,confirm,original,book,1 -no,you are wrong,original,cancel,3 -goodbye,bye-bye,original,bye,2 -greeting,how ya doin,original,greet,4 -goodbye,bye!,original,bye,2 -greeting,how's everything going?,parrot,greet,4 -date,what is the day?,original,avail,0 -yes,good yes,lambada,book,1 -thank_you,thanks!,original,bye,2 -greeting,wassup,original,greet,4 -no,negatory?,parrot,cancel,3 -reminder_update,remind me to do something,original,resched,5 -goodbye,goodbyes,parrot,bye,2 -goodbye,peace out,original,bye,2 -calendar_update,delete the appointment that i have scheduled,lambada,resched,5 -cancel_reservation,cancellation of reservation for dining out,parrot,cancel,3 -greeting,good morning ai,parrot,greet,4 -yes,confirm that i'm on the right list,parrot,book,1 -goodbye,adios,original,bye,2 -how_busy,how busy is an american diner around 9am,lambada,avail,0 -thank_you,"thanks, that's helpful",original,bye,2 -thank_you,you've been great,parrot,bye,2 -yes,oh-huh,parrot,book,1 -thank_you,you're special thanks,parrot,bye,2 -greeting,whats up with you,original,greet,4 -calendar,do i have any calendars set for may 12th?,original,avail,0 -greeting,tell me how things are with my family,parrot,greet,4 -calendar,do you know what's going on between 5 and 8 march?,parrot,avail,0 -greeting,all right now?,parrot,greet,4 -yes,all right,parrot,book,1 -reminder_update,just a reminder,parrot,resched,5 -greeting,hey,original,greet,4 -greeting,what's new,lambada,greet,4 -yes,positive,original,book,1 -no,you got that wrong,original,cancel,3 -thank_you,many thanks,original,bye,2 -how_busy,how long do i have to wait at the chocolate fountain?,parrot,avail,0 -how_busy,how long will i have to wait before i can eat macaroni grill?,parrot,avail,0 -yes,this is true,lambada,book,1 -goodbye,good call,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -date,what are the words for tomorrow?,lambada,avail,0 -date,what the day?,parrot,avail,0 -yes,huh,parrot,book,1 -greeting,hey there!,original,greet,4 -yes,confirmed,original,book,1 -calendar,what's tuesday on my calendar?,parrot,avail,0 -goodbye,lovely conversation,parrot,bye,2 -greeting,hello,original,greet,4 -no,nay,original,cancel,3 -yes,affirmitive,original,book,1 -how_busy,is a canadian restaurant usually busy at 5 pm?,parrot,avail,0 -yes,it's logical,parrot,book,1 -yes,ok,original,book,1 -yes,ok,original,book,1 -meeting_schedule,are any meetings scheduled between 6 and 9 pm?,lambada,avail,0 -calendar_update,write an appointment for next week on my calendar,parrot,resched,5 -how_busy,tell me the time it takes to be in this restaurant?,parrot,avail,0 -greeting,are you all right?,parrot,greet,4 -yes,10-Apr,original,book,1 -no,no way,original,cancel,3 -yes,and you're correct,parrot,book,1 -date,current date,original,avail,0 -greeting,whats up?,parrot,greet,4 -thank_you,you did it,parrot,bye,2 -date,if it's six days,parrot,avail,0 -goodbye,goodbye ai,parrot,bye,2 -reminder_update,set a reminder to check the steak,original,resched,5 -yes,oh-huh,parrot,book,1 -schedule_meeting,how do i schedule meetings?,parrot,book,1 -date,tomorrow is the date,parrot,avail,0 -goodbye,regards,original,bye,2 -no,the statement is not true,parrot,cancel,3 -meeting_schedule,what times are my meetings?,original,avail,0 -date,what date will it be next month?,parrot,avail,0 -cancel_reservation,how can i cancel my reservation,lambada,cancel,3 -no,negatory?,parrot,cancel,3 -no,is a lie?,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -goodbye,goodbye now,parrot,bye,2 -yes,my answer is yes,parrot,book,1 -goodbye,good conversation,parrot,bye,2 -thank_you,appreciate the help,original,bye,2 -no,no,lambada,cancel,3 -thank_you,thankyou,parrot,bye,2 -meeting_schedule,meetings today,original,avail,0 -goodbye,tootles?,parrot,bye,2 -no,that's incorrect,original,cancel,3 -date,current date,original,avail,0 -goodbye,see you around,original,bye,2 -calendar,tell what is showing on my calendar for the 17th of march?,original,avail,0 -greeting,hello,original,greet,4 -date,what year?,parrot,avail,0 -greeting,how things go?,parrot,greet,4 -date,what would tomorrow's date be?,original,avail,0 -goodbye,please talk to me later,lambada,bye,2 -goodbye,good conversation,parrot,bye,2 -how_busy,how busy is red robin?,parrot,avail,0 -no,no way!,original,cancel,3 -goodbye,i'm going,parrot,bye,2 -goodbye,i have to run,parrot,bye,2 -no,"no, that's not it",original,cancel,3 -yes,it's a fact,parrot,book,1 -yes,perfect,parrot,book,1 -schedule_meeting,i have to meet with sam at 9:00am in two days,original,book,1 -goodbye,it's over,parrot,bye,2 -yes,obviously,parrot,book,1 -goodbye,afterward,parrot,bye,2 -yes,yay,lambada,book,1 -greeting,hello,original,greet,4 -thank_you,thanks for the reply,original,bye,2 -how_busy,tell me how busy red robin will be around 3:00?,lambada,avail,0 -yes,certainly,parrot,book,1 -yes,sure,original,book,1 -greeting,hello how's it going,original,greet,4 -greeting,good morning ai,parrot,greet,4 -no,i say negative,original,cancel,3 -date,what date is it?,original,avail,0 -yes,affirmative,original,book,1 -reminder_update,pay taxes on monday,parrot,resched,5 -yes,accept,parrot,book,1 -how_busy,how long will it be before i'm seated in the red lobster,parrot,avail,0 -goodbye,say goodbye,parrot,bye,2 -yes,definitely yes,parrot,book,1 -yes,confirm,original,book,1 -calendar,'read my calendar for march 21',parrot,avail,0 -greeting,"good morning, ai",original,greet,4 -greeting,how's the world?,parrot,greet,4 -yes,affirmitive,original,book,1 -how_busy,how long will the wait be for dinner at tandoor,lambada,avail,0 -how_busy,how many people will be in the restaurant at 7pm,parrot,avail,0 -greeting,how's ife treating you,original,greet,4 -meeting_schedule,do i have to meet the dev squad to day?,original,avail,0 -goodbye,regards,original,bye,2 -date,current day,parrot,avail,0 -yes,"yes, that is right",original,book,1 -how_busy,wait for red lobster?,parrot,avail,0 -no,no?,parrot,cancel,3 -no,naw,parrot,cancel,3 -yes,affirmitive,original,book,1 -thank_you,okay thanks,original,bye,2 -no,that's negative,parrot,cancel,3 -no,not good idea,parrot,cancel,3 -yes,TRUE,lambada,book,1 -date,what today?,parrot,avail,0 -how_busy,how busy is this cheesecake factory?,parrot,avail,0 -how_busy,what time does it take to wait for a meal?,parrot,avail,0 -thank_you,thanks for responding,parrot,bye,2 -yes,my answer is yes,parrot,book,1 -yes,indeed,original,book,1 -greeting,hola,original,greet,4 -calendar,what's my schedule for tomorrow?,parrot,avail,0 -no,is very false,parrot,cancel,3 -thank_you,and i'm grateful,parrot,bye,2 -no,nope that's not it,original,cancel,3 -yes,"yes, please",parrot,book,1 -how_busy,does mr joe's pizza have a long waiting period?,parrot,avail,0 -greeting,yo,original,greet,4 -no,nope,original,cancel,3 -meeting_schedule,meeting today,parrot,avail,0 -goodbye,"that's all, bye",original,bye,2 -goodbye,it was a nice conversation,parrot,bye,2 -how_busy,do you think the restaurant is crowded for dinner?,parrot,avail,0 -thank_you,thanks for the donation,parrot,bye,2 -yes,affirmitive,original,book,1 -reminder_update,i would like to set up a reminder to give my boss the paycheck,lambada,resched,5 -greeting,salutations,parrot,greet,4 -yes,affirmative,original,book,1 -thank_you,well done,parrot,bye,2 -thank_you,you've helped,parrot,bye,2 -yes,yes sir,original,book,1 -greeting,how things go?,parrot,greet,4 -greeting,what's up with you,original,greet,4 -thank_you,thank you for the job,parrot,bye,2 -greeting,how is life?,parrot,greet,4 -yes,sure thing,original,book,1 -no,that’s incorrect,original,cancel,3 -goodbye,see you later,original,bye,2 -goodbye,sayonara ,parrot,bye,2 -thank_you,so grateful,parrot,bye,2 -schedule_meeting,please schedule a meeting room for 9 am,parrot,book,1 -greeting,why hello?,original,greet,4 -goodbye,please talk to me,parrot,bye,2 -thank_you,appreciated,original,bye,2 -goodbye,greetings,parrot,bye,2 -greeting,tell me what you feel?,parrot,greet,4 -thank_you,again thank you,parrot,bye,2 -no,negative,original,cancel,3 -no,no,lambada,cancel,3 -thank_you,gracias,original,bye,2 -meeting_schedule,what are my calendar appointments?,parrot,avail,0 -yes,that's a true statement,lambada,book,1 -yes,uh huh,original,book,1 -no,no way!,original,cancel,3 -no,that's a wrong answer,parrot,cancel,3 -no,definitely not,original,cancel,3 -thank_you,you're welcome,parrot,bye,2 -how_busy,tell me the current wait time at chili's?,parrot,avail,0 -greeting,hey,original,greet,4 -yes,that's correct,original,book,1 -yes,okay,original,book,1 -yes,huh huh,parrot,book,1 -how_busy,how busy is cheesecake factory at 8,lambada,avail,0 -schedule_meeting,can you schedule a meeting with scott at 6 pm?,parrot,book,1 -goodbye,see ya,lambada,bye,2 -date,tell me the month and year?,parrot,avail,0 -how_busy,how long does a macaroni grill have to wait?,parrot,avail,0 -greeting,hi,original,greet,4 -thank_you,"awesome, thanks",original,bye,2 -no,no that isn't it,original,cancel,3 -meeting_schedule,what's on my agenda today,parrot,avail,0 -greeting,hiya,original,greet,4 -greeting,whats up?,parrot,greet,4 -how_busy,can you tell me how busy the restaurant is at 6pm?,lambada,avail,0 -goodbye,later gator!,original,bye,2 -goodbye,tootles,original,bye,2 -no,i mean no,parrot,cancel,3 -thank_you,the best,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -no,that's incorrect,original,cancel,3 -greeting,how is idy?,parrot,greet,4 -how_busy,would you be able to wait a long time at the cheese cake factory,lambada,avail,0 -thank_you,your help is appreciated,original,bye,2 -thank_you,thanks for the answer,original,bye,2 -thank_you,i'm grateful for your help,lambada,bye,2 -thank_you,thanks i appreciate it,parrot,bye,2 -no,no?,parrot,cancel,3 -greeting,hi,original,greet,4 -greeting,good evening,original,greet,4 -greeting,heller,original,greet,4 -no,naw,original,cancel,3 -yes,it'd be great,parrot,book,1 -goodbye,later gater,original,bye,2 -yes,yup,original,book,1 -how_busy,mcdonald's busy around 9?,parrot,avail,0 -greeting,heyo,original,greet,4 -no,nada,original,cancel,3 -greeting,hi,original,greet,4 -greeting,hey there,original,greet,4 -goodbye,see ya,lambada,bye,2 -goodbye,buhbye,original,bye,2 -schedule_meeting,do you need a meeting room for friday at 3 pm?,parrot,book,1 -yes,yeah,original,book,1 -goodbye,next time we'll talk,parrot,bye,2 -schedule_meeting,are there rooms free from 12 to 1?,parrot,book,1 -thank_you,oh sweet thanks,original,bye,2 -date,what today?,parrot,avail,0 -greeting,hi ai,original,greet,4 -yes,affirmitive,original,book,1 -how_busy,how long do i have to wait for a table in louisiana?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,goodbye thank you,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -thank_you,thank you!,original,bye,2 -reminder_update,i need the reminder to remind me of something,parrot,resched,5 -how_busy,is the wait at the chili's long?,lambada,avail,0 -cancel_reservation,i won't need my reservation anymore,parrot,cancel,3 -goodbye,good see you,lambada,bye,2 -greeting,how's life,original,greet,4 -goodbye,peace out!,original,bye,2 -reminder_update,have i forgotten?,parrot,resched,5 -how_busy,how long would it take to wait at chipmunk?,parrot,avail,0 -no,not really,original,cancel,3 -no,that's no,parrot,cancel,3 -no,no?,parrot,cancel,3 -thank_you,thanks for making me laugh,parrot,bye,2 -thank_you,appreciated,original,bye,2 -schedule_meeting,i need an agenda,parrot,book,1 -thank_you,thanks for trying,original,bye,2 -greeting,how's my life going?,parrot,greet,4 -yes,good,parrot,book,1 -goodbye,sign off,parrot,bye,2 -how_busy,how busy is chili at 745 pm?,parrot,avail,0 -greeting,how's my treatment?,parrot,greet,4 -greeting,how have you been,original,greet,4 -meeting_schedule,how many meetings do i have between 9 and 10?,parrot,avail,0 -no,hell nah,original,cancel,3 -goodbye,goodbye helpful ai devices,parrot,bye,2 -greeting,hi there,original,greet,4 -greeting,have you felt?,parrot,greet,4 -no,no,lambada,cancel,3 -greeting,"hey, ai",original,greet,4 -yes,right,parrot,book,1 -no,negative definitely,parrot,cancel,3 -greeting,are you well?,original,greet,4 -goodbye,"thanks for chatting, bye",lambada,bye,2 -goodbye,see you later alligator,original,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -reminder_update,set up a reminder to give my cat a spay/neuter,lambada,resched,5 -no,nay,original,cancel,3 -no,nothing,parrot,cancel,3 -yes,ya,original,book,1 -date,in eight days?,parrot,avail,0 -no,"no, definitely not",original,cancel,3 -no,that's negative,parrot,cancel,3 -calendar_update,please remove jury duty from my calendar for may 7th,parrot,resched,5 -reminder_update,please remind me something,parrot,resched,5 -reminder_update,make me remember to book it,parrot,resched,5 -schedule_meeting,can you give me a meeting room for lunch?,parrot,book,1 -schedule_meeting,can i meet with steve?,parrot,book,1 -how_busy,how busy will the outback steakhouse be at 7pm,parrot,avail,0 -how_busy,so how busy is the outback steakhouse at 5 pm,original,avail,0 -reminder_update,remind me to clean up the garage this week,parrot,resched,5 -greeting,what's been going on with you,lambada,greet,4 -yes,yeah,original,book,1 -yes,"yes, that's right",original,book,1 -greeting,"howdy, what's new",original,greet,4 -yes,TRUE,lambada,book,1 -how_busy,wait in the restaurant?,parrot,avail,0 -no,i'd say no,original,cancel,3 -no,that is no way,lambada,cancel,3 -goodbye,farewell,original,bye,2 -yes,positive,parrot,book,1 -no,it's negative,parrot,cancel,3 -yes,affirmitive,original,book,1 -greeting,let me know how you're going,parrot,greet,4 -yes,great,original,book,1 -yes,affirmitive,original,book,1 -yes,good,parrot,book,1 -greeting,ahoy,lambada,greet,4 -yes,absolutely,original,book,1 -no,that is not the case,original,cancel,3 -no,that isn't true,lambada,cancel,3 -goodbye,goodbye,original,bye,2 -no,don't like that,parrot,cancel,3 -goodbye,glad we talked,parrot,bye,2 -no,no!,original,cancel,3 -no,that's definitely false,original,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -date,date please,original,avail,0 -greeting,hey how ya been,lambada,greet,4 -greeting,bonjour,original,greet,4 -how_busy,show me the current seating time in this restaurant?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -no,FALSE,original,cancel,3 -yes,yeah,original,book,1 -date,date please,original,avail,0 -no,what is not true?,parrot,cancel,3 -how_busy,in the outback steakhouse i'd expect to be busy around 7pm,parrot,avail,0 -yes,say yes,lambada,book,1 -no,no that isn't right,original,cancel,3 -goodbye,sayonara,original,bye,2 -no,no no thanks,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -yes,ya,original,book,1 -yes,it's indeed true,original,book,1 -how_busy,can you tell me how busy the olive garden is at 5?,parrot,avail,0 -date,what day of the month is it?,original,avail,0 -yes,that is a fact,original,book,1 -yes,very true,original,book,1 -goodbye,bye bye,lambada,bye,2 -yes,perfect,parrot,book,1 -greeting,good day,original,greet,4 -thank_you,i appreciate my help!,original,bye,2 -greeting,heller,original,greet,4 -greeting,"hello, ai",original,greet,4 -goodbye,this conversation was nice,parrot,bye,2 -greeting,good morning,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -how_busy,how busy is ihop?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -how_busy,how busy is georgio at 6?,parrot,avail,0 -goodbye,i'm gone,parrot,bye,2 -yes,correct,original,book,1 -goodbye,so glad to talk to you,parrot,bye,2 -yes,yes you are correct,original,book,1 -cancel_reservation,call my reservation cancelled,parrot,cancel,3 -schedule_meeting,can you schedule a meeting with scott at 6pm?,lambada,book,1 -goodbye,i'm glad we got to talk later,lambada,bye,2 -goodbye,thank you for talking to me,lambada,bye,2 -goodbye,you're done,parrot,bye,2 -no,nothing good,parrot,cancel,3 -greeting,what's happening,original,greet,4 -goodbye,buhbye now,lambada,bye,2 -no,but not right now,parrot,cancel,3 -yes,huh,parrot,book,1 -thank_you,thankyou,parrot,bye,2 -no,but it's wrong,parrot,cancel,3 -meeting_schedule,when is my meeting with invoicing scheduled?,original,avail,0 -how_busy,is ihop busy?,parrot,avail,0 -yes,affirmative,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,you good?,parrot,greet,4 -no,but certainly not,parrot,cancel,3 -schedule_meeting,i need to know if there is a meeting room available between 8:00 and 10:00,lambada,book,1 -meeting_schedule,what are my meetings today?,parrot,avail,0 -greeting,how's life in my city?,parrot,greet,4 -goodbye,goodbye then,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -yes,yes,original,book,1 -how_busy,should i expect a busy day at olive garden at five?,parrot,avail,0 -date,in 7 days?,parrot,avail,0 -no,absolutely not,original,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,are you doing alright?,original,greet,4 -goodbye,goodbye,original,bye,2 -date,what today?,parrot,avail,0 -how_busy,i want to know how busy olive garden is at 7 pm,lambada,avail,0 -thank_you,"oh, thanks",original,bye,2 -greeting,how's ayi doing?,parrot,greet,4 -how_busy,can you tell me when the cheesecake factory is busy at 6?,parrot,avail,0 -goodbye,"that's all, bye",original,bye,2 -goodbye,goodbye for now ai,original,bye,2 -yes,so it's checked,parrot,book,1 -yes,absolutely correct,original,book,1 -no,it would be wrong,parrot,cancel,3 -thank_you,"thanks, you've helped me",original,bye,2 -thank_you,"great, thanks!",original,bye,2 -thank_you,okay thanks,original,bye,2 -greeting,hello there!,original,greet,4 -no,certainly not,original,cancel,3 -no,not right so,parrot,cancel,3 -goodbye,it was good chatting,original,bye,2 -yes,my response is yes,parrot,book,1 -reminder_update,remind me something,parrot,resched,5 -no,nay,original,cancel,3 -thank_you,i wanted to thank you,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -no,not at all,original,cancel,3 -date,a year?,parrot,avail,0 -goodbye,goodbye now,parrot,bye,2 -how_busy,how long is the wait at the mr joes steak house,lambada,avail,0 -goodbye,tootles,original,bye,2 -yes,approved,original,book,1 -no,hell nah,original,cancel,3 -yes,affirmative,original,book,1 -greeting,how goes it,original,greet,4 -no,that's very wrong,parrot,cancel,3 -yes,my answer is yes,parrot,book,1 -greeting,hey what's up,original,greet,4 -no,is my false claim?,parrot,cancel,3 -no,"yea, that is wrong",lambada,cancel,3 -greeting,ahoy,lambada,greet,4 -greeting,what's happening,original,greet,4 -greeting,how are you,original,greet,4 -goodbye,regards,original,bye,2 -goodbye,adios!,original,bye,2 -no,it seems wrong,parrot,cancel,3 -thank_you,please thank you,lambada,bye,2 -schedule_meeting,book a meeting room for the meeting at 5pm on tuesday,parrot,book,1 -goodbye,later,original,bye,2 -no,it seems wrong,parrot,cancel,3 -goodbye,tootles,original,bye,2 -no,say negative,parrot,cancel,3 -greeting,hello how's the situation?,parrot,greet,4 -goodbye,peace,original,bye,2 -how_busy,how long do i have to wait for a table in the olive garden?,parrot,avail,0 -yes,uh-huh,original,book,1 -how_busy,the wait at outback steakhouse?,parrot,avail,0 -yes,confirmed,original,book,1 -yes,absolutely,original,book,1 -no,erroneous,parrot,cancel,3 -meeting_schedule,tell me what meetings i have booked for today,parrot,avail,0 -meeting_schedule,are there any meetings with michael today?,parrot,avail,0 -thank_you,my sincere thanks,parrot,bye,2 -yes,TRUE,lambada,book,1 -calendar_update,remove the june 7 event called the symphony from my schedule,parrot,resched,5 -no,FALSE,original,cancel,3 -meeting_schedule,do you have any meetings scheduled for today?,parrot,avail,0 -how_busy,what's the wait?,parrot,avail,0 -no,the answer is no,original,cancel,3 -calendar_update,forget my scheduled appointment for tomorrow,parrot,resched,5 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -calendar_update,please clean my calendar,parrot,resched,5 -how_busy,how long will i wait at the steakhouse in the outback,parrot,avail,0 -date,tell me tomorrow's date?,original,avail,0 -yes,sure thing,original,book,1 -no,it would be awful,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -no,nope,original,cancel,3 -date,date please,original,avail,0 -no,that's negative,parrot,cancel,3 -yes,certainly,parrot,book,1 -no,absolutely not,original,cancel,3 -no,no it's not right,parrot,cancel,3 -goodbye,later!,original,bye,2 -thank_you,i appreciate your consideration,lambada,bye,2 -goodbye,goodbye bye,parrot,bye,2 -no,it's not right,parrot,cancel,3 -goodbye,nice to see you again,original,bye,2 -greeting,whats new,lambada,greet,4 -thank_you,"good job, thanks",lambada,bye,2 -yes,"yup, that is true",lambada,book,1 -no,i have to say it's a lie,parrot,cancel,3 -how_busy,how many people will be seated at the restaurant at 6,lambada,avail,0 -cancel_reservation,please cancel my 7:30 reservation for morton's,original,cancel,3 -goodbye,it's over,parrot,bye,2 -reminder_update,please remind me again,parrot,resched,5 -goodbye,goodbye soon,lambada,bye,2 -yes,sure thing,original,book,1 -goodbye,nice talk,lambada,bye,2 -greeting,good morning ai,parrot,greet,4 -goodbye,goodbye now,parrot,bye,2 -reminder_update,create a reminder to change the oil,parrot,resched,5 -greeting,ahoy hoy,original,greet,4 -yes,yes please,original,book,1 -greeting,well hello,original,greet,4 -cancel_reservation,please cancel my booking,parrot,cancel,3 -goodbye,later gater,original,bye,2 -no,naw,parrot,cancel,3 -how_busy,how many people are expected to be in an immaculate steak house?,parrot,avail,0 -goodbye,goodbye ai,parrot,bye,2 -date,is tomorrow's date?,parrot,avail,0 -greeting,"hello, what's up",original,greet,4 -no,negative certainly,parrot,cancel,3 -thank_you,gracias,original,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -goodbye,i must catch up,parrot,bye,2 -goodbye,tootles,original,bye,2 -no,that's very false,parrot,cancel,3 -goodbye,thanks goodbye,parrot,bye,2 -greeting,aloha,original,greet,4 -no,the statement is false,original,cancel,3 -how_busy,wait for the red lobster?,parrot,avail,0 -thank_you,the help is appreciated,parrot,bye,2 -schedule_meeting,can you schedule a meeting with eve?,lambada,book,1 -how_busy,how long will the wait at mcdonald's be?,parrot,avail,0 -thank_you,thanks so much for the response,parrot,bye,2 -greeting,aho,parrot,greet,4 -yes,huh,parrot,book,1 -how_busy,you know how busy imoos is?,parrot,avail,0 -yes,accepted,original,book,1 -schedule_meeting,i need to know how to get a meeting approved,lambada,book,1 -no,absolutely false,parrot,cancel,3 -greeting,"hello, anyone there",original,greet,4 -thank_you,thankyou,parrot,bye,2 -calendar_update,clear my calendar for tomorrow,original,resched,5 -thank_you,okay thank you,parrot,bye,2 -date,what today?,parrot,avail,0 -goodbye,"thanks, bye",original,bye,2 -goodbye,adios,original,bye,2 -how_busy,i'd like to know how busy the cheesecake factory is at 4pm,parrot,avail,0 -goodbye,glad we talked,parrot,bye,2 -no,no!,original,cancel,3 -yes,TRUE,lambada,book,1 -goodbye,peace,original,bye,2 -greeting,aloha,original,greet,4 -date,what's the date tomorrow? '',parrot,avail,0 -goodbye,fairwell,original,bye,2 -goodbye,adios!,original,bye,2 -greeting,salutation,parrot,greet,4 -goodbye,"later, good luck",lambada,bye,2 -calendar_update,add my friend's baby shower to my calendar,parrot,resched,5 -how_busy,how busy will the steakhouse be at 6pm,parrot,avail,0 -how_busy,how long will the wait be at the outback steak house?,parrot,avail,0 -how_busy,can i know how long it takes to open tequila bars?,parrot,avail,0 -thank_you,you answered,parrot,bye,2 -yes,that is a yes,original,book,1 -no,that's not true,original,cancel,3 -goodbye,fairwell?,parrot,bye,2 -date,what's the current date,original,avail,0 -thank_you,thanks!,original,bye,2 -calendar,tell me the day of the week?,parrot,avail,0 -yes,it's positive,parrot,book,1 -yes,accept,parrot,book,1 -greeting,how're you today?,parrot,greet,4 -no,hell nah,original,cancel,3 -greeting,hi ai,original,greet,4 -calendar,look at my calendar for my birthday,parrot,avail,0 -yes,accepted,original,book,1 -greeting,good day,original,greet,4 -greeting,how's my day going,lambada,greet,4 -meeting_schedule,do i have meetings between 930 and 1030?,parrot,avail,0 -goodbye,good bye,original,bye,2 -no,not happening,original,cancel,3 -yes,affirmitive,original,book,1 -yes,agreed,original,book,1 -date,today?,parrot,avail,0 -greeting,how're you?,parrot,greet,4 -thank_you,thanks again!,original,bye,2 -yes,"yup, that's true",original,book,1 -yes,indeed,parrot,book,1 -how_busy,how long would it take to get a table at the red lobster restaurant,parrot,avail,0 -yes,i'd say yes,parrot,book,1 -yes,all right,parrot,book,1 -greeting,i want to know how things are going,lambada,greet,4 -how_busy,how busy is chili around 11 pm?,parrot,avail,0 -thank_you,thanks for letting me know,original,bye,2 -how_busy,how busy is the restaurant around 7,lambada,avail,0 -yes,affirmative,original,book,1 -how_busy,how busy is the cocoa baker at dinner?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -goodbye,bye my friend,parrot,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -yes,obviously,parrot,book,1 -how_busy,i would expect outback steakhouse to be busy around 7 pm,lambada,avail,0 -thank_you,i'm grateful,original,bye,2 -goodbye,adios,original,bye,2 -goodbye,"nice talk, goodbye",lambada,bye,2 -yes,yay,lambada,book,1 -no,so that's no,parrot,cancel,3 -how_busy,how long will i have to wait at the ranch,lambada,avail,0 -calendar,did i have my wife's anniversary?,parrot,avail,0 -thank_you,again thanks,parrot,bye,2 -goodbye,farewell!,original,bye,2 -yes,affirmative,original,book,1 -yes,TRUE,original,book,1 -thank_you,much obliged,original,bye,2 -goodbye,farewell,original,bye,2 -goodbye,goodnight,original,bye,2 -greeting,wake up ai,parrot,greet,4 -yes,ya,original,book,1 -greeting,wassup,original,greet,4 -yes,affirmitive,original,book,1 -goodbye,i'll go,parrot,bye,2 -goodbye,bye!,original,bye,2 -how_busy,is there a long wait for a table at 830?,parrot,avail,0 -yes,that is really true,lambada,book,1 -thank_you,you made me aware,parrot,bye,2 -schedule_meeting,can you schedule a meeting with george for 4?,original,book,1 -goodbye,"later, good luck",lambada,bye,2 -yes,ya,original,book,1 -date,where's tomorrow's date,parrot,avail,0 -no,not happening,original,cancel,3 -how_busy,is it busy at the cheesecake factory at 8 pm?,parrot,avail,0 -thank_you,thanks again,original,bye,2 -no,nothing,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,aloha,original,greet,4 -date,please explain today,parrot,avail,0 -yes,that's correct,original,book,1 -thank_you,you've tried,parrot,bye,2 -goodbye,was on a good run,parrot,bye,2 -yes,i want to be true,parrot,book,1 -goodbye,tootles,original,bye,2 -date,today?,parrot,avail,0 -yes,positive,original,book,1 -yes,i have to say yes,parrot,book,1 -yes,TRUE,lambada,book,1 -schedule_meeting,can you schedule a meeting tomorrow at 10 am with john smith?,parrot,book,1 -yes,it is true,original,book,1 -date,what's today,original,avail,0 -no,no this is false,parrot,cancel,3 -yes,i think it's correct,parrot,book,1 -reminder_update,let me know,parrot,resched,5 -meeting_schedule,tell me if i have a meeting today,parrot,avail,0 -how_busy,how long will i have to wait if i go to cheese cake factory,lambada,avail,0 -thank_you,my thanks,parrot,bye,2 -yes,i know that's true,parrot,book,1 -date,please explain today,parrot,avail,0 -greeting,"hi, ai",original,greet,4 -goodbye,have fun?,lambada,bye,2 -reminder_update,set up a reminder that i need to pay my car ins the 23rd,original,resched,5 -greeting,hey how ya feeling,lambada,greet,4 -greeting,hey how's my day going,parrot,greet,4 -no,it's negative,parrot,cancel,3 -schedule_meeting,please hold a conference room for friday at 11 am,parrot,book,1 -reminder_update,make a reminder to give the cat her flea medicine,original,resched,5 -calendar_update,remove moms birthday from calendar,original,resched,5 -greeting,well hello,original,greet,4 -greeting,hola!,original,greet,4 -greeting,wassup,original,greet,4 -cancel_reservation,cancel my reservation with brad in umami,parrot,cancel,3 -cancel_reservation,can you cancel my reservation for dinner tomorrow night?,parrot,cancel,3 -how_busy,how busy is jiro at lunchtime?,parrot,avail,0 -goodbye,farewell,original,bye,2 -reminder_update,make me remember to pay my bill,parrot,resched,5 -meeting_schedule,can you tell me what types of meetings i'm going to attend between noon and 3pm?,parrot,avail,0 -yes,accept,parrot,book,1 -goodbye,i'll go,parrot,bye,2 -yes,accept,parrot,book,1 -goodbye,later!,original,bye,2 -greeting,how are things,original,greet,4 -greeting,hello how are you doing?,parrot,greet,4 -goodbye,peace out,original,bye,2 -how_busy,how long the restaurant is usually busy,parrot,avail,0 -thank_you,thanks for trying,original,bye,2 -how_busy,please look into the current wait times at chili's right now,original,avail,0 -no,negative for sure,original,cancel,3 -greeting,how's everything,original,greet,4 -yes,huh huh,parrot,book,1 -no,FALSE,original,cancel,3 -schedule_meeting,is there a room available between 5 and 10?,parrot,book,1 -greeting,what's happening?,parrot,greet,4 -how_busy,does the coffee shop get busy?,parrot,avail,0 -how_busy,how long will the wait at mcdonalds be,lambada,avail,0 -greeting,good evening,original,greet,4 -no,not that,original,cancel,3 -how_busy,wait at jalapeno ranch?,parrot,avail,0 -thank_you,okay thanks,original,bye,2 -greeting,how ife treated you?,parrot,greet,4 -thank_you,thanks again!,original,bye,2 -yes,i vote yes,original,book,1 -date,what's the date tomorrow,original,avail,0 -yes,i'd say yes,parrot,book,1 -no,i prefer not,parrot,cancel,3 -thank_you,again thanks,parrot,bye,2 -yes,right,parrot,book,1 -goodbye,see ya,lambada,bye,2 -greeting,good morning,parrot,greet,4 -goodbye,fairwell,original,bye,2 -greeting,"hello, friend",original,greet,4 -thank_you,thankyou,parrot,bye,2 -yes,yay,lambada,book,1 -yes,obviously,parrot,book,1 -no,negation,parrot,cancel,3 -goodbye,adios ai,original,bye,2 -greeting,hiya!,original,greet,4 -date,please show me the day?,parrot,avail,0 -yes,yes that's right,lambada,book,1 -goodbye,good bye then,original,bye,2 -yes,yeap,original,book,1 -no,it's negative,parrot,cancel,3 -yes,is true,parrot,book,1 -thank_you,you've helped,parrot,bye,2 -thank_you,many thank,original,bye,2 -greeting,how is life?,parrot,greet,4 -goodbye,was nice to speak with you,parrot,bye,2 -reminder_update,remind yourself to wash the dishes,parrot,resched,5 -yes,agreed,original,book,1 -thank_you,please thank you,lambada,bye,2 -yes,certainly,parrot,book,1 -greeting,hello,original,greet,4 -how_busy,how busy is this restaurant right now,lambada,avail,0 -how_busy,please tell me how busy it is at the olive garden,parrot,avail,0 -yes,that is affirmative,original,book,1 -goodbye,lovely conversation,parrot,bye,2 -calendar,what's the calendar for march 1?,parrot,avail,0 -cancel_reservation,please cancel my reservation for franklin at outback,lambada,cancel,3 -calendar_update,cancel my date with james on march 28,lambada,resched,5 -yes,yep,original,book,1 -date,where is tomorrow's date,lambada,avail,0 -goodbye,goodbye then,parrot,bye,2 -yes,perfect,parrot,book,1 -greeting,whats up?,parrot,greet,4 -yes,very true,original,book,1 -yes,agreed,original,book,1 -calendar,what appointments do i have on thursday?,parrot,avail,0 -goodbye,later,original,bye,2 -no,so that's no,parrot,cancel,3 -yes,approved,original,book,1 -no,nothing,parrot,cancel,3 -goodbye,good bye,original,bye,2 -thank_you,i really appreciate you,parrot,bye,2 -meeting_schedule,give a summary of today's meetings?,parrot,avail,0 -reminder_update,keep checking the steak,parrot,resched,5 -greeting,salutation,parrot,greet,4 -yes,right,parrot,book,1 -yes,yes that's it,original,book,1 -greeting,nice day,lambada,greet,4 -no,that's bad,parrot,cancel,3 -goodbye,goodbye my friend,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -greeting,aho,parrot,greet,4 -no,no,lambada,cancel,3 -no,no,lambada,cancel,3 -schedule_meeting,tell me how to schedule a meeting for me?,parrot,book,1 -how_busy,how long will it take to be seated at the flying wand?,parrot,avail,0 -greeting,aho,parrot,greet,4 -thank_you,much obliged,original,bye,2 -greeting,hey fellows,parrot,greet,4 -how_busy,how busy will the potato salad be around 5?,parrot,avail,0 -how_busy,is that place crowded around dinner time?,lambada,avail,0 -calendar,do i have anything planned for march 2nd?,parrot,avail,0 -goodbye,i have to leave ai,parrot,bye,2 -no,i don't agree,parrot,cancel,3 -thank_you,i apprecaite the help from you,original,bye,2 -no,that's not a good sign,parrot,cancel,3 -no,that's erroneous,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -yes,good,parrot,book,1 -no,negatory,original,cancel,3 -cancel_reservation,i want a cancellation of the dinner reservation for phillips at the bernardin,parrot,cancel,3 -how_busy,how busy is the olive garden right now,lambada,avail,0 -no,negatory?,parrot,cancel,3 -goodbye,regards,original,bye,2 -greeting,what's going on,original,greet,4 -goodbye,goodbyes,parrot,bye,2 -no,that’s incorrect,original,cancel,3 -greeting,ahoy,lambada,greet,4 -greeting,salutations!,original,greet,4 -no,negatory,original,cancel,3 -yes,ok,original,book,1 -greeting,how is it going?,parrot,greet,4 -date,date tomorrow,parrot,avail,0 -yes,ok,original,book,1 -greeting,welcome,parrot,greet,4 -date,today?,parrot,avail,0 -greeting,what's new?,parrot,greet,4 -greeting,"hello, what's up",original,greet,4 -greeting,bonjour,original,greet,4 -no,FALSE,lambada,cancel,3 -yes,exactly right,original,book,1 -goodbye,goodbyes,parrot,bye,2 -yes,indeed,original,book,1 -goodbye,"later, goodbye",lambada,bye,2 -date,let me know which day is next?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -no,FALSE,original,cancel,3 -thank_you,again thanks,parrot,bye,2 -thank_you,thanks for cooperating,parrot,bye,2 -greeting,heller,original,greet,4 -greeting,what's up,original,greet,4 -yes,it's logical,parrot,book,1 -goodbye,", goodbye",lambada,bye,2 -reminder_update,are you able to remind me?,parrot,resched,5 -goodbye,just relax,parrot,bye,2 -thank_you,many thank,original,bye,2 -yes,definitely,original,book,1 -goodbye,"thanks for chatting with me, bye",lambada,bye,2 -yes,yep,original,book,1 -calendar,please read my calendar for march 3,parrot,avail,0 -yes,indeed,original,book,1 -goodbye,i'm leaving,parrot,bye,2 -greeting,how's it going?,parrot,greet,4 -reminder_update,i want to be reminded,parrot,resched,5 -yes,i'll say yes,parrot,book,1 -schedule_meeting,is it possible to schedule a meeting for scott at noon?,parrot,book,1 -yes,10-Apr,original,book,1 -greeting,ai how you're doing,lambada,greet,4 -goodbye,thanks goodbye,parrot,bye,2 -no,it's very false,parrot,cancel,3 -yes,just right,parrot,book,1 -thank_you,thanks very much,parrot,bye,2 -no,that's so false,parrot,cancel,3 -thank_you,it's much easier with you,parrot,bye,2 -greeting,"hello, ai",original,greet,4 -yes,it also makes sense,parrot,book,1 -date,today?,parrot,avail,0 -how_busy,do you know how long it will be at chris' house?,parrot,avail,0 -no,no way!,original,cancel,3 -greeting,so what's up?,parrot,greet,4 -yes,confirm,original,book,1 -yes,definitely,original,book,1 -goodbye,cya later,original,bye,2 -no,no?,parrot,cancel,3 -yes,"affirmative, go ahead",original,book,1 -thank_you,many thank,original,bye,2 -greeting,"why, hello bandit",original,greet,4 -greeting,hello there!,original,greet,4 -greeting,"yo, hows it going",original,greet,4 -yes,definitely yes,parrot,book,1 -how_busy,what will it take to sit in the chipotle?,parrot,avail,0 -no,that's so wrong,parrot,cancel,3 -goodbye,catch you around,original,bye,2 -no,not true,original,cancel,3 -no,but that's totally wrong,parrot,cancel,3 -no,no!,original,cancel,3 -thank_you,your answer is good,parrot,bye,2 -no,negatory,original,cancel,3 -goodbye,later,original,bye,2 -no,no no no,parrot,cancel,3 -yes,absolutely correct,original,book,1 -reminder_update,add a reminder to pick milk up at the store,original,resched,5 -thank_you,"awesome, thanks",original,bye,2 -thank_you,good job doing what you do,parrot,bye,2 -date,what day will it be in 2 days?,parrot,avail,0 -no,that's not right?,parrot,cancel,3 -no,i'd prefer not to,parrot,cancel,3 -yes,yes,original,book,1 -thank_you,thank ya!,original,bye,2 -no,negatory,original,cancel,3 -how_busy,is there a long wait at chili's around 5:00?,original,avail,0 -no,it's so bad,parrot,cancel,3 -no,that's incorrect,original,cancel,3 -no,negative certainly,parrot,cancel,3 -calendar,21st what's on my calendar,parrot,avail,0 -thank_you,my gratitude,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -greeting,yo,original,greet,4 -greeting,are you doing okay?,original,greet,4 -yes,exactly right,original,book,1 -goodbye,bye!,original,bye,2 -greeting,"hello, what's up",original,greet,4 -goodbye,goodbye goodbye,parrot,bye,2 -thank_you,thanks,original,bye,2 -no,that's no,parrot,cancel,3 -reminder_update,add a reminder to pick up milk at the shop,parrot,resched,5 -greeting,hi how're things going,lambada,greet,4 -no,invalid,original,cancel,3 -greeting,hi,original,greet,4 -meeting_schedule,when's my meeting today?,parrot,avail,0 -reminder_update,i have a doctor's appointment tomorrow at 3 pm,parrot,resched,5 -no,i didn't mean that,parrot,cancel,3 -thank_you,good job thanks,parrot,bye,2 -no,not true,original,cancel,3 -calendar,what's on my schedule for may 3,original,avail,0 -greeting,bonjour,original,greet,4 -schedule_meeting,would you help me set up a meeting?,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -yes,that appears true,original,book,1 -no,that's definitely false,original,cancel,3 -goodbye,later,original,bye,2 -yes,confirmed,original,book,1 -goodbye,adios,original,bye,2 -greeting,hiya!,original,greet,4 -how_busy,is iman busy at five?,parrot,avail,0 -greeting,hello siri,original,greet,4 -goodbye,until next time!,original,bye,2 -goodbye,afterward,parrot,bye,2 -goodbye,later,original,bye,2 -meeting_schedule,what's the meeting schedule,lambada,avail,0 -no,so that's no,parrot,cancel,3 -goodbye,was nice to be able to talk to you,parrot,bye,2 -date,what's the name of day?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -no,it's no,parrot,cancel,3 -thank_you,your answer is good,parrot,bye,2 -no,negation,parrot,cancel,3 -yes,sure,original,book,1 -date,can you tell me the full date of today,parrot,avail,0 -reminder_update,come on please,parrot,resched,5 -yes,absolutely!,original,book,1 -no,that's so negative,parrot,cancel,3 -yes,positive,original,book,1 -yes,confirmed,original,book,1 -no,no!,original,cancel,3 -thank_you,thank you for my answer,lambada,bye,2 -no,FALSE,lambada,cancel,3 -greeting,salutations!,original,greet,4 -how_busy,can you tell me when the cheesecake factory is busy around 6?,parrot,avail,0 -goodbye,"see you later, alligator",original,bye,2 -yes,oh-huh,parrot,book,1 -goodbye,adios!,original,bye,2 -thank_you,thanks,original,bye,2 -goodbye,farewell,original,bye,2 -goodbye,great talk,lambada,bye,2 -calendar_update,can i remove the event from my calendar?,parrot,resched,5 -yes,oh-huh,parrot,book,1 -yes,do that?,original,book,1 -no,it's so negative,parrot,cancel,3 -yes,accepted,original,book,1 -yes,approved,original,book,1 -goodbye,sign off,parrot,bye,2 -reminder_update,maybe a reminder?,parrot,resched,5 -date,what year?,parrot,avail,0 -calendar_update,can you change the date of the doctor's appointment in my calendar from april 1 to april 3?,parrot,resched,5 -how_busy,how long will the wait time be at the steak house?,parrot,avail,0 -greeting,how's everything?,parrot,greet,4 -thank_you,you're the best!,original,bye,2 -no,naw,parrot,cancel,3 -goodbye,glad to talk,parrot,bye,2 -greeting,how life treats you?,parrot,greet,4 -greeting,how are you today,original,greet,4 -goodbye,"later, good luck",lambada,bye,2 -no,that's a wrong answer?,parrot,cancel,3 -yes,great,original,book,1 -reminder_update,please check the steak,parrot,resched,5 -yes,indeed,parrot,book,1 -thank_you,you helped me out,parrot,bye,2 -goodbye,i was very happy to talk to you,lambada,bye,2 -yes,definitely,original,book,1 -how_busy,is kaya busy at 5pm?,parrot,avail,0 -no,naw,original,cancel,3 -greeting,ahoy,lambada,greet,4 -how_busy,please tell me how busy red lobster is at 6 o'clock?,parrot,avail,0 -thank_you,my thanks,parrot,bye,2 -goodbye,a good conversation,parrot,bye,2 -no,say negative,parrot,cancel,3 -yes,yay,lambada,book,1 -greeting,hiya,original,greet,4 -no,i meant no,original,cancel,3 -goodbye,buhbye,original,bye,2 -reminder_update,remind me to do laundry,parrot,resched,5 -reminder_update,can you remind me something?,parrot,resched,5 -how_busy,how long can i wait at the cheesecake factory?,parrot,avail,0 -calendar,please read my schedule for march 2,parrot,avail,0 -how_busy,is ziggy busy at dinner?,parrot,avail,0 -yes,certainly,parrot,book,1 -yes,huh huh,parrot,book,1 -how_busy,how long will i have to wait to be at the red lobster?,parrot,avail,0 -yes,uh-huh,original,book,1 -greeting,"hello, good day",lambada,greet,4 -no,negation,parrot,cancel,3 -greeting,wassup,original,greet,4 -greeting,hows life for you,lambada,greet,4 -yes,that's definitely true,original,book,1 -yes,approved,original,book,1 -yes,certainly,parrot,book,1 -yes,not a lie,parrot,book,1 -how_busy,how long can i wait for a table at the macaroni grill,parrot,avail,0 -yes,my answer is yes,parrot,book,1 -calendar,can you check my calendar for the 17th?,parrot,avail,0 -greeting,how's everything,original,greet,4 -greeting,hello,original,greet,4 -yes,okay,original,book,1 -how_busy,how busy the robinson's grill is?,parrot,avail,0 -no,"no, that is fake",original,cancel,3 -thank_you,thanks,original,bye,2 -no,i didn't mean that,parrot,cancel,3 -greeting,do you feel?,parrot,greet,4 -how_busy,do you think the pizza is crowded?,parrot,avail,0 -greeting,hello bs,parrot,greet,4 -thank_you,again thanks,parrot,bye,2 -meeting_schedule,are there any meetings for today on my calendar?,original,avail,0 -greeting,hey how's life,original,greet,4 -greeting,hey,original,greet,4 -no,no good,original,cancel,3 -cancel_reservation,so go ahead and cancel the reservation for four at prime rib,parrot,cancel,3 -thank_you,it's my debt,parrot,bye,2 -greeting,salutations,parrot,greet,4 -goodbye,goodbye later,parrot,bye,2 -yes,"yes, please",parrot,book,1 -greeting,what's up,original,greet,4 -calendar,what is on my calendar for august 7th?,parrot,avail,0 -greeting,so how is everything,original,greet,4 -calendar_update,put the tires checked on my calendars,parrot,resched,5 -thank_you,i'm thankful,original,bye,2 -yes,good,parrot,book,1 -cancel_reservation,i don't need to make a reservation,parrot,cancel,3 -cancel_reservation,just cancel my reservation,lambada,cancel,3 -greeting,heyo,original,greet,4 -yes,right,parrot,book,1 -yes,all right,original,book,1 -calendar,have i added the bike ride to my calendar?,parrot,avail,0 -yes,confirmed,original,book,1 -no,not good idea,parrot,cancel,3 -thank_you,awesome thank you,parrot,bye,2 -yes,yup,original,book,1 -goodbye,lovely conversation,parrot,bye,2 -no,i believe it's wrong,parrot,cancel,3 -yes,that will be true,original,book,1 -yes,yup,original,book,1 -how_busy,what's the wait like?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -yes,certainly true,parrot,book,1 -greeting,hello,original,greet,4 -yes,confirm,original,book,1 -greeting,whats up with you,original,greet,4 -date,let me know what's the date?,parrot,avail,0 -thank_you,you've been great,parrot,bye,2 -goodbye,bye bye now,lambada,bye,2 -calendar_update,this month we need to clear our calendar so we can leave it open for mark to visit,parrot,resched,5 -greeting,salutations!,original,greet,4 -thank_you,so grateful,parrot,bye,2 -yes,yup,original,book,1 -date,in 4 days what date will it be,parrot,avail,0 -yes,a fact,parrot,book,1 -goodbye,sayonara,original,bye,2 -yes,positive,original,book,1 -goodbye,peace,original,bye,2 -thank_you,thank you,original,bye,2 -yes,accepted,original,book,1 -greeting,how you're doing?,parrot,greet,4 -yes,that's correct,original,book,1 -goodbye,goodbye later,parrot,bye,2 -goodbye,bye bye now,lambada,bye,2 -thank_you,good answer thanks for the information,parrot,bye,2 -yes,sure,original,book,1 -thank_you,i owe you one!,original,bye,2 -yes,absolutely!,original,book,1 -yes,10-Apr,original,book,1 -yes,huh huh,parrot,book,1 -thank_you,you've helped,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -greeting,how are you,original,greet,4 -thank_you,you helped,parrot,bye,2 -no,that's not acceptable,parrot,cancel,3 -no,FALSE,original,cancel,3 -date,do you know what the day is?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -yes,you are yes,lambada,book,1 -schedule_meeting,i need an agenda,parrot,book,1 -no,"no, definitely not",original,cancel,3 -date,tell me what date it's?,parrot,avail,0 -goodbye,no problem just relax,parrot,bye,2 -thank_you,my sincere gratitude,parrot,bye,2 -calendar,can you tell me what's on my calendar for march 25,parrot,avail,0 -schedule_meeting,tell me the size of the meeting room?,parrot,book,1 -no,i disagree,parrot,cancel,3 -thank_you,gracias,original,bye,2 -goodbye,bye for now,original,bye,2 -thank_you,and i'm grateful,parrot,bye,2 -yes,indeed,original,book,1 -schedule_meeting,what is the availability of conference rooms between 8:00 and 10:00 am?,lambada,book,1 -no,it is false,original,cancel,3 -greeting,yo,original,greet,4 -greeting,how're you today?,parrot,greet,4 -reminder_update,give me a reminder to take my meds,parrot,resched,5 -yes,accept,parrot,book,1 -thank_you,thanks please,original,bye,2 -meeting_schedule,what's the schedule of meetings today?,parrot,avail,0 -meeting_schedule,what are my calendar meetings?,parrot,avail,0 -no,that's not right,original,cancel,3 -how_busy,do you know how busy the outback steakhouse will be at 5 pm?,parrot,avail,0 -yes,okay,original,book,1 -yes,yes you have been successful,lambada,book,1 -calendar_update,erase jeff's meeting from my calendar,parrot,resched,5 -date,what's my date?,parrot,avail,0 -reminder_update,please remind me to exercise,parrot,resched,5 -yes,right,parrot,book,1 -meeting_schedule,show me the time i'm meeting with sarah?,parrot,avail,0 -greeting,hey it's up,lambada,greet,4 -no,erroneous,parrot,cancel,3 -how_busy,how busy will macy's be?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -how_busy,how long will i have to wait for a table in tamales?,parrot,avail,0 -meeting_schedule,time for today's meeting?,parrot,avail,0 -date,what day?,parrot,avail,0 -thank_you,i appreciate your assistance,parrot,bye,2 -how_busy,show me the average sitting time at this restaurant?,parrot,avail,0 -no,negative,original,cancel,3 -no,is not true?,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -no,this isn't true,parrot,cancel,3 -thank_you,"awesome, thanks",original,bye,2 -greeting,how's it going,lambada,greet,4 -no,is my falsehood?,parrot,cancel,3 -yes,absolutely correct,original,book,1 -yes,a real statement,parrot,book,1 -date,today is the date,parrot,avail,0 -yes,TRUE,lambada,book,1 -goodbye,good see you,lambada,bye,2 -goodbye,lovely conversation,parrot,bye,2 -no,negative certainly,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -yes,"yeah, that's true",lambada,book,1 -no,so that's no,parrot,cancel,3 -yes,obviously,parrot,book,1 -greeting,"hello, ai",original,greet,4 -reminder_update,please check the steak,parrot,resched,5 -date,a year?,parrot,avail,0 -goodbye,please thank you for speaking to me,parrot,bye,2 -yes,let's do that,parrot,book,1 -yes,great,original,book,1 -how_busy,how busy is amanda's at 5 pm,lambada,avail,0 -how_busy,how long will it be after 7pm,lambada,avail,0 -yes,all right,parrot,book,1 -no,no it's not,parrot,cancel,3 -goodbye,say goodbye,parrot,bye,2 -greeting,hey,original,greet,4 -greeting,salutation,parrot,greet,4 -goodbye,buhbye,original,bye,2 -goodbye,farewell,original,bye,2 -greeting,aho,parrot,greet,4 -how_busy,what's the wait time at red lobster,lambada,avail,0 -greeting,how does ai do?,parrot,greet,4 -date,which date is it?,parrot,avail,0 -reminder_update,remind me to take the chicken in an hour,parrot,resched,5 -greeting,welcome,parrot,greet,4 -greeting,"hello, anyone there",original,greet,4 -greeting,hello ai,parrot,greet,4 -yes,yeap,original,book,1 -meeting_schedule,when does i meet richard?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -goodbye,farewell!,original,bye,2 -thank_you,many thanks,original,bye,2 -yes,affirmitive,original,book,1 -goodbye,i liked our conversation,parrot,bye,2 -yes,certainly,parrot,book,1 -goodbye,tootles,original,bye,2 -thank_you,i'm so grateful for your help,lambada,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -thank_you,and you're doing well,parrot,bye,2 -yes,10-Apr,original,book,1 -calendar_update,remove all events from my calendar on march 12th,parrot,resched,5 -how_busy,how busy is the restaurant around lunch time,lambada,avail,0 -greeting,heller,original,greet,4 -thank_you,you've been great,parrot,bye,2 -goodbye,this conversation was wonderful,parrot,bye,2 -greeting,"hey, ai",original,greet,4 -how_busy,are french bakers busy around 11 o'clock in the night?,parrot,avail,0 -yes,huh,parrot,book,1 -greeting,hello how are things going?,parrot,greet,4 -calendar,what's going on on march 15?,parrot,avail,0 -greeting,hiya,original,greet,4 -thank_you,nice,parrot,bye,2 -greeting,wassup,original,greet,4 -yes,yup,original,book,1 -date,"what's the date tomorrow, please",original,avail,0 -yes,that's true,original,book,1 -no,that's false,original,cancel,3 -yes,agreed,original,book,1 -thank_you,thanks!,original,bye,2 -greeting,hey hey!,original,greet,4 -no,is very false,parrot,cancel,3 -no,it's certainly a false claim,parrot,cancel,3 -no,that's untrue,parrot,cancel,3 -thank_you,thanks for the response,lambada,bye,2 -yes,positive,parrot,book,1 -date,describe the day?,parrot,avail,0 -greeting,good day,original,greet,4 -date,can you give me a date to expect within 24 hours?,parrot,avail,0 -greeting,heller,original,greet,4 -how_busy,how long is the wait at the chipotle plant?,parrot,avail,0 -greeting,how are you?,parrot,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -date,what is today?,original,avail,0 -no,sure it's wrong,parrot,cancel,3 -greeting,hiya!,original,greet,4 -calendar,what do i have planned for january 19th?,lambada,avail,0 -greeting,well hello,original,greet,4 -no,most definitely false,parrot,cancel,3 -calendar,do i have appointments for 2nd march?,parrot,avail,0 -no,that is untrue,original,cancel,3 -goodbye,goodbye no problem,parrot,bye,2 -thank_you,appreciated,original,bye,2 -yes,ya,original,book,1 -no,i don't like that,parrot,cancel,3 -goodbye,bye,original,bye,2 -no,invalid,original,cancel,3 -greeting,what's new,lambada,greet,4 -calendar_update,take my lunch plans off the calendar for march 13th,original,resched,5 -meeting_schedule,when's my meeting?,parrot,avail,0 -goodbye,please talk soon,parrot,bye,2 -thank_you,really great!,original,bye,2 -yes,certainly true,parrot,book,1 -thank_you,i have much gratitude for my help,original,bye,2 -goodbye,see ya,lambada,bye,2 -reminder_update,remind me to do my laundry,lambada,resched,5 -no,erroneous,parrot,cancel,3 -goodbye,bye my friend,parrot,bye,2 -no,that's bad,parrot,cancel,3 -cancel_reservation,cancel the reservation i made,parrot,cancel,3 -no,that is incorrect,original,cancel,3 -goodbye,but until the next time,parrot,bye,2 -thank_you,thank you!,original,bye,2 -calendar_update,delete the hair appointment i scheduled on 1 may,parrot,resched,5 -greeting,good morning,parrot,greet,4 -thank_you,thanks!,original,bye,2 -greeting,hey,original,greet,4 -meeting_schedule,what's my meeting plan?,parrot,avail,0 -no,it's not true,parrot,cancel,3 -thank_you,again thanks,parrot,bye,2 -greeting,how's the world?,parrot,greet,4 -thank_you,thanks so much,original,bye,2 -meeting_schedule,when do you meet peter?,parrot,avail,0 -schedule_meeting,are there any meeting rooms available between 8 and 10?,parrot,book,1 -yes,yes sir,original,book,1 -how_busy,how long will i have to wait at red lobster,lambada,avail,0 -yes,affirmitive,original,book,1 -no,thanks no,parrot,cancel,3 -greeting,hola,original,greet,4 -yes,accept,parrot,book,1 -thank_you,thanks again!,original,bye,2 -no,negating,parrot,cancel,3 -yes,yep,original,book,1 -goodbye,afterward,parrot,bye,2 -no,it is not that,lambada,cancel,3 -no,is my false assertion?,parrot,cancel,3 -thank_you,"great, thanks!",original,bye,2 -no,that's negative,parrot,cancel,3 -no,nothing,parrot,cancel,3 -yes,so it's true,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -yes,facts,original,book,1 -how_busy,how long is the wait time at this restaurant,lambada,avail,0 -greeting,what's happening?,parrot,greet,4 -yes,i'll check it out,parrot,book,1 -yes,okay,original,book,1 -greeting,"hello, ai",original,greet,4 -meeting_schedule,meeting today,parrot,avail,0 -how_busy,how busy is chili's around dinner,lambada,avail,0 -schedule_meeting,i need to know how i can schedule a meeting,parrot,book,1 -no,no,lambada,cancel,3 -no,don't agree,parrot,cancel,3 -yes,yes sir,original,book,1 -greeting,salutations,parrot,greet,4 -how_busy,can you tell me what it's like in the olive garden?,parrot,avail,0 -thank_you,thank you for all the information you gave,parrot,bye,2 -schedule_meeting,please set up a meeting room for friday at 3pm,lambada,book,1 -thank_you,i'm thankful,original,bye,2 -calendar,what's on my agenda tomorrow?,parrot,avail,0 -thank_you,you did it,parrot,bye,2 -thank_you,thanks a million,original,bye,2 -calendar,let's see what's on my calendar for march 17,parrot,avail,0 -goodbye,"later, goodbye",lambada,bye,2 -cancel_reservation,get a salad off,parrot,cancel,3 -date,please date,parrot,avail,0 -meeting_schedule,is mr ceo waiting for me?,parrot,avail,0 -goodbye,go easy,parrot,bye,2 -no,negatory,original,cancel,3 -no,negative definitely,parrot,cancel,3 -yes,yes,original,book,1 -yes,TRUE,lambada,book,1 -thank_you,thanks!,original,bye,2 -greeting,i have to know how you feel,parrot,greet,4 -goodbye,good bye,original,bye,2 -calendar_update,can you remove dinner with jim from my schedule?,parrot,resched,5 -goodbye,regards,original,bye,2 -yes,please let's do it,original,book,1 -yes,i have to say yes to that one,parrot,book,1 -thank_you,i'm very grateful,parrot,bye,2 -how_busy,how busy will red robin be around noon,lambada,avail,0 -thank_you,i really appreciate you,parrot,bye,2 -calendar,did i set an appointment on my calendar for an exam?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -greeting,how are you today?,parrot,greet,4 -how_busy,how long is the wait time at olive garden currently,original,avail,0 -yes,my answer is yes,parrot,book,1 -date,a year?,parrot,avail,0 -no,certainly false,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -greeting,welcome,parrot,greet,4 -no,that would be terrible,lambada,cancel,3 -greeting,hola!,original,greet,4 -no,naw,parrot,cancel,3 -meeting_schedule,what's my meeting today?,parrot,avail,0 -calendar,can you check if i had an appointment on my calendar for an exam?,parrot,avail,0 -yes,i'll give it a go,parrot,book,1 -greeting,hi,original,greet,4 -no,negative certainly,parrot,cancel,3 -yes,what i see is a yes?,lambada,book,1 -goodbye,thanks for chatting,lambada,bye,2 -yes,yes it's true,lambada,book,1 -yes,great,original,book,1 -goodbye,ai goodbye,original,bye,2 -no,so that's no,parrot,cancel,3 -thank_you,thank a bunch,original,bye,2 -greeting,how was my day?,parrot,greet,4 -yes,great,original,book,1 -how_busy,how long will i wait at the rancho rancho?,parrot,avail,0 -calendar,what i'm going to do on may 4?,parrot,avail,0 -no,negative sure,parrot,cancel,3 -greeting,bonjour,original,greet,4 -how_busy,how long will i have to wait for a table at ehi's,parrot,avail,0 -goodbye,goodbye,original,bye,2 -greeting,hello how are you doing,lambada,greet,4 -goodbye,good bye my friend,original,bye,2 -yes,perfect,parrot,book,1 -greeting,what is new?,parrot,greet,4 -yes,absolutely!,original,book,1 -goodbye,buhbye,original,bye,2 -date,you have the date?,parrot,avail,0 -greeting,heyo,original,greet,4 -no,that's not right,original,cancel,3 -greeting,bonjour,original,greet,4 -how_busy,is a cheesecake factory busy?,parrot,avail,0 -goodbye,great talking with you,parrot,bye,2 -how_busy,does michigan steakhouse have a lot of people at the dinner time?,lambada,avail,0 -cancel_reservation,get the salad canceled,parrot,cancel,3 -greeting,aho,parrot,greet,4 -date,tell me what day?,parrot,avail,0 -reminder_update,make a reminder of my taxes,parrot,resched,5 -yes,oh yes,original,book,1 -goodbye,fairwell?,parrot,bye,2 -yes,"yes, you got it",original,book,1 -no,no?,parrot,cancel,3 -yes,"yes, please",original,book,1 -thank_you,much obliged,original,bye,2 -greeting,hows are ya,original,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -goodbye,good call,parrot,bye,2 -goodbye,thanks for the chat,parrot,bye,2 -yes,all right,original,book,1 -goodbye,i like our chat,parrot,bye,2 -greeting,what's happened?,parrot,greet,4 -no,that's erroneous,parrot,cancel,3 -no,that's erroneous,parrot,cancel,3 -greeting,hello bs,parrot,greet,4 -how_busy,how long does pizza parlor wait to serve dinner,lambada,avail,0 -yes,correct,original,book,1 -reminder_update,remember the meeting of tomorrow,parrot,resched,5 -how_busy,should i expect olive garden to be crowded at 11,lambada,avail,0 -no,and it's very false,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -schedule_meeting,"can you schedule a meeting with steve at the office, please?",original,book,1 -no,nada,original,cancel,3 -greeting,i'd like to know how things are,parrot,greet,4 -calendar,the fun run i can't remember if i added it to my calendar,parrot,avail,0 -yes,i think it's right,parrot,book,1 -yes,perfect,parrot,book,1 -thank_you,much obliged,original,bye,2 -greeting,hola!,original,greet,4 -thank_you,gracias,original,bye,2 -greeting,how's this going?,parrot,greet,4 -thank_you,i appreciate it,original,bye,2 -no,no!,original,cancel,3 -how_busy,how busy is iman at 5,lambada,avail,0 -no,that's not what i want,parrot,cancel,3 -how_busy,is it busy in the coffee shop at 8am?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -date,what is a month and day?,parrot,avail,0 -goodbye,"nice talking again, bye",original,bye,2 -date,current day,parrot,avail,0 -thank_you,good job,lambada,bye,2 -greeting,how you are?,parrot,greet,4 -schedule_meeting,i want a meeting,parrot,book,1 -goodbye,bye bye!,original,bye,2 -no,but that's not the case,parrot,cancel,3 -no,it seems wrong,parrot,cancel,3 -greeting,good to see you,original,greet,4 -no,not that,original,cancel,3 -greeting,hey,original,greet,4 -yes,correct,original,book,1 -greeting,hey fellows,parrot,greet,4 -thank_you,appreciate the assistance,parrot,bye,2 -yes,TRUE,lambada,book,1 -goodbye,bye bye,lambada,bye,2 -thank_you,thank you for making my life easier,parrot,bye,2 -no,it's a negative,parrot,cancel,3 -greeting,how's everything,original,greet,4 -thank_you,"nice, excellent!",original,bye,2 -yes,right,parrot,book,1 -no,invalid,original,cancel,3 -cancel_reservation,my dinner reservation is not needed,parrot,cancel,3 -thank_you,okay thank you,parrot,bye,2 -calendar,read my calendar,parrot,avail,0 -thank_you,glad you helped me,parrot,bye,2 -thank_you,thank you?,parrot,bye,2 -calendar,please read my calendar for april 30,parrot,avail,0 -reminder_update,make a reminder to take my cat to the vet,lambada,resched,5 -yes,right,parrot,book,1 -calendar,read my calendar of events,parrot,avail,0 -greeting,how's life going?,parrot,greet,4 -no,nada,original,cancel,3 -no,no,lambada,cancel,3 -greeting,aloha,original,greet,4 -date,what is the day today?,lambada,avail,0 -no,no it's not,parrot,cancel,3 -goodbye,my friend,parrot,bye,2 -yes,seems true,parrot,book,1 -yes,it's indeed true,original,book,1 -greeting,good day,original,greet,4 -yes,yay,lambada,book,1 -yes,ya,original,book,1 -no,the negator,parrot,cancel,3 -goodbye,go easy,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -goodbye,regards,original,bye,2 -greeting,please tell me what is going on,parrot,greet,4 -yes,TRUE,lambada,book,1 -greeting,salutations!,original,greet,4 -thank_you,so grateful,parrot,bye,2 -goodbye,buhbye,original,bye,2 -calendar_update,friday needs to be clear on my calendar,original,resched,5 -goodbye,goodbyes soon,parrot,bye,2 -no,it's no,parrot,cancel,3 -how_busy,how busy the red robin is at 7pm?,parrot,avail,0 -goodbye,talk later,original,bye,2 -no,that's absolutely wrong,parrot,cancel,3 -thank_you,thanks,original,bye,2 -no,it's not true,parrot,cancel,3 -no,it's no,parrot,cancel,3 -how_busy,will the macy's be busy,parrot,avail,0 -how_busy,what's the wait time for a table at red lobster?,parrot,avail,0 -greeting,"hello, anyone there",original,greet,4 -greeting,wassup,original,greet,4 -cancel_reservation,can i cancel my reservations at my table?,parrot,cancel,3 -no,negating,parrot,cancel,3 -greeting,yo,original,greet,4 -no,it's no,parrot,cancel,3 -yes,do that?,original,book,1 -greeting,ahoy,lambada,greet,4 -calendar_update,please remove june's dinner from my calendar for may 14?,parrot,resched,5 -reminder_update,remind me to check the meat,parrot,resched,5 -goodbye,afterward,parrot,bye,2 -date,what'll it be tomorrow?,parrot,avail,0 -yes,indeed,original,book,1 -how_busy,is the restaurant full at night?,parrot,avail,0 -thank_you,you've tried,parrot,bye,2 -goodbye,have a good one?,original,bye,2 -greeting,heyo,original,greet,4 -greeting,hi how are you,original,greet,4 -no,no!,original,cancel,3 -date,is today monday?,original,avail,0 -how_busy,how long will i have to wait before i go to the restaurant?,parrot,avail,0 -yes,yep,original,book,1 -thank_you,okay thank you,parrot,bye,2 -no,negatory?,parrot,cancel,3 -greeting,wassup,original,greet,4 -greeting,well hello,original,greet,4 -yes,facts,original,book,1 -meeting_schedule,please tell me about my meeting with mary,parrot,avail,0 -goodbye,goodbye bye,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -yes,seems true,parrot,book,1 -yes,yeap,original,book,1 -yes,confirm,original,book,1 -goodbye,adios!,original,bye,2 -reminder_update,let me remember,parrot,resched,5 -thank_you,thanks,original,bye,2 -goodbye,fairwell,original,bye,2 -reminder_update,new reminder please,lambada,resched,5 -how_busy,how long would it take to wait at golden gate steakhouse,parrot,avail,0 -how_busy,how long will it take me to get seated at cheese cake factory,lambada,avail,0 -goodbye,adios,original,bye,2 -goodbye,great conversation,parrot,bye,2 -yes,agreed,original,book,1 -greeting,wake up ai,parrot,greet,4 -date,in eight days?,parrot,avail,0 -goodbye,i need to go now,original,bye,2 -thank_you,"great, thanks!",original,bye,2 -yes,ok,original,book,1 -how_busy,is the breakfast room full in the morning?,parrot,avail,0 -thank_you,i'd like to thank you for making me aware,parrot,bye,2 -yes,affirmative,original,book,1 -no,naw,parrot,cancel,3 -date,tell me today's date?,original,avail,0 -goodbye,buhbye,original,bye,2 -thank_you,i appreciate your assistance,parrot,bye,2 -greeting,and what's up?,parrot,greet,4 -goodbye,you're done,parrot,bye,2 -no,FALSE,lambada,cancel,3 -date,where's tomorrow's date,parrot,avail,0 -greeting,heyo,original,greet,4 -yes,TRUE,lambada,book,1 -goodbye,tootles,original,bye,2 -greeting,you good?,parrot,greet,4 -how_busy,is it possible to eat beef in ohio for three hours?,parrot,avail,0 -goodbye,bye,original,bye,2 -no,not true,original,cancel,3 -yes,positive,parrot,book,1 -goodbye,have to run,parrot,bye,2 -greeting,"hello, i would like to know how you are doing",lambada,greet,4 -how_busy,wait how long for a table in the olive garden?,parrot,avail,0 -greeting,what's happening,original,greet,4 -greeting,hiya!,original,greet,4 -yes,confirm,original,book,1 -greeting,whats up,original,greet,4 -goodbye,see ya!,original,bye,2 -goodbye,i have to go,parrot,bye,2 -goodbye,later!,original,bye,2 -cancel_reservation,if you want to cancel my reservation for tim at jb,parrot,cancel,3 -greeting,hows are ya,original,greet,4 -no,i'll say no,parrot,cancel,3 -meeting_schedule,can you list the meetings scheduled for today?,parrot,avail,0 -yes,TRUE,original,book,1 -goodbye,the chat with you was good,parrot,bye,2 -how_busy,how long will i have to wait for red lobster at 7 pm,parrot,avail,0 -goodbye,buhbye,original,bye,2 -greeting,how's idy doing?,parrot,greet,4 -no,no?,parrot,cancel,3 -date,what's the day now??,parrot,avail,0 -no,that's inaccurate,original,cancel,3 -greeting,hello how are you doing?,parrot,greet,4 -no,it's a mistake,parrot,cancel,3 -date,i need a date,parrot,avail,0 -how_busy,what is the wait like when i go to olive garden?,lambada,avail,0 -no,"no, that is inaccurate",original,cancel,3 -yes,i agree,original,book,1 -greeting,salutations,parrot,greet,4 -yes,of course,original,book,1 -greeting,how ya doing,lambada,greet,4 -no,that's a wrong answer,parrot,cancel,3 -yes,definitely yes,parrot,book,1 -goodbye,say goodbye,parrot,bye,2 -greeting,good morning,parrot,greet,4 -goodbye,bye bye now,lambada,bye,2 -date,date tomorrow?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -meeting_schedule,when do you meet kara?,parrot,avail,0 -thank_you,many thank,original,bye,2 -no,nothing,parrot,cancel,3 -goodbye,a good conversation,parrot,bye,2 -schedule_meeting,if there are meeting rooms available for noon would you know,parrot,book,1 -how_busy,how long will it take me to get a table at the cheese cake factory?,parrot,avail,0 -thank_you,you've helped,parrot,bye,2 -yes,great,original,book,1 -how_busy,how busy do you expect olive garden to be at 6?,parrot,avail,0 -greeting,good morning,parrot,greet,4 -yes,yup,original,book,1 -date,is tomorrow's date?,parrot,avail,0 -no,that's wrong,original,cancel,3 -thank_you,"oh, thanks",original,bye,2 -greeting,hello there,original,greet,4 -goodbye,buhbye,original,bye,2 -no,but not right now,parrot,cancel,3 -meeting_schedule,when are my meetings scheduled today between noon and one?,lambada,avail,0 -thank_you,you have given me so much info thank you,parrot,bye,2 -no,nope not it,original,cancel,3 -goodbye,goodbye,original,bye,2 -thank_you,the best,parrot,bye,2 -greeting,wassup,original,greet,4 -goodbye,adios!,original,bye,2 -thank_you,you helped,parrot,bye,2 -reminder_update,remind me again please,original,resched,5 -thank_you,okay thank you,parrot,bye,2 -goodbye,goodbye later,parrot,bye,2 -reminder_update,the cat needs neutering,parrot,resched,5 -goodbye,goodbye,original,bye,2 -no,but it's wrong,parrot,cancel,3 -yes,yeah,original,book,1 -yes,sure,original,book,1 -no,negation,parrot,cancel,3 -meeting_schedule,are there meetings on my calendar today?,parrot,avail,0 -yes,facts,original,book,1 -goodbye,i like our conversation,parrot,bye,2 -goodbye,good luck,lambada,bye,2 -thank_you,i appreciate my help!,original,bye,2 -meeting_schedule,are there meetings from 1 pm to 5 pm?,parrot,avail,0 -no,that's not correct,original,cancel,3 -date,what year?,parrot,avail,0 -yes,accept,parrot,book,1 -greeting,how's ayi doing?,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -no,not really,original,cancel,3 -no,negative definitely,parrot,cancel,3 -yes,yup,original,book,1 -greeting,how's ai doing today?,parrot,greet,4 -how_busy,how busy is orchids at 7,original,avail,0 -greeting,whats up?,parrot,greet,4 -cancel_reservation,would you like to cancel my reservation,lambada,cancel,3 -thank_you,thanks,original,bye,2 -no,that's very negative,parrot,cancel,3 -greeting,how have you been?,parrot,greet,4 -reminder_update,i would like a reminder,original,resched,5 -goodbye,good-bye,parrot,bye,2 -greeting,nice day,lambada,greet,4 -thank_you,nice,parrot,bye,2 -yes,certainly,parrot,book,1 -no,nothing,parrot,cancel,3 -no,that is overwhelmingly false,original,cancel,3 -how_busy,how busy is olive garden around 9,lambada,avail,0 -yes,that would be correct,original,book,1 -greeting,aho,parrot,greet,4 -date,date tomorrow,parrot,avail,0 -goodbye,i'll be gone,parrot,bye,2 -schedule_meeting,is there a room available between 11 and 5pm?,parrot,book,1 -goodbye,goodbye bye,parrot,bye,2 -greeting,hi how're things going,lambada,greet,4 -how_busy,how long until dinner?,parrot,avail,0 -thank_you,i appreciate your time,lambada,bye,2 -no,no i have to say,parrot,cancel,3 -how_busy,how long is the wait at the italian restaurant,lambada,avail,0 -date,tell me the year?,parrot,avail,0 -yes,i agree,original,book,1 -greeting,how is my day,original,greet,4 -goodbye,i like to talk to you again,parrot,bye,2 -yes,yes,original,book,1 -goodbye,cya later,original,bye,2 -greeting,how it goes?,parrot,greet,4 -no,that's the wrong answer,parrot,cancel,3 -no,nothing good,parrot,cancel,3 -thank_you,gracias,original,bye,2 -date,what's it like now?,parrot,avail,0 -yes,"yep, let's do that",lambada,book,1 -how_busy,how long will it take me to sit down at the red lobster?,parrot,avail,0 -meeting_schedule,do i have meetings between 11 and 4?,parrot,avail,0 -no,it is false,original,cancel,3 -yes,positive,original,book,1 -yes,ya,original,book,1 -thank_you,thanks for that,original,bye,2 -thank_you,okay thank you,parrot,bye,2 -no,i disagree,parrot,cancel,3 -no,it's a wrong answer,parrot,cancel,3 -goodbye,wonderful conversation,lambada,bye,2 -goodbye,and tell me bye?,parrot,bye,2 -goodbye,", goodbye",lambada,bye,2 -thank_you,your efforts won't be forgotten,parrot,bye,2 -how_busy,is ihop busy?,parrot,avail,0 -calendar_update,this month we need to clear our calendar so that we can leave it open for mark to visit,parrot,resched,5 -goodbye,regards,original,bye,2 -how_busy,can you tell me how long the wait time is at the cheesecake factory?,parrot,avail,0 -goodbye,i enjoy our chat,lambada,bye,2 -how_busy,how busy is outback steakhouse at 6,lambada,avail,0 -yes,"agreed, that's valid",original,book,1 -greeting,ahoy,lambada,greet,4 -greeting,hola!,original,greet,4 -cancel_reservation,scrap that dinner reservation,original,cancel,3 -meeting_schedule,do you have meetings between 930 and 1030?,parrot,avail,0 -no,not that,original,cancel,3 -greeting,how it goes my friend?,parrot,greet,4 -goodbye,fairwell?,parrot,bye,2 -no,but that's not true,parrot,cancel,3 -thank_you,i appreciate that,original,bye,2 -greeting,what's going on,original,greet,4 -date,wednesday friday or saturday?,parrot,avail,0 -calendar,what is tuesday in my calendar?,parrot,avail,0 -calendar,what's on my calendar for the 18th march?,parrot,avail,0 -no,"please, no",original,cancel,3 -how_busy,how busy is michel at 9,original,avail,0 -greeting,how's the ayi?,parrot,greet,4 -calendar_update,i need to add an event on my calendar for the 7th,lambada,resched,5 -greeting,how's my feeling?,parrot,greet,4 -greeting,hey there fellow,original,greet,4 -greeting,hey what's up?,parrot,greet,4 -thank_you,gracias,original,bye,2 -greeting,hola,original,greet,4 -yes,"correct, that's true",original,book,1 -yes,agreed,original,book,1 -goodbye,peace,original,bye,2 -goodbye,and then goodbye,parrot,bye,2 -calendar_update,i have to add my wedding to my calendar for march 1,parrot,resched,5 -schedule_meeting,are there meeting rooms open between 10 and 11?,parrot,book,1 -yes,TRUE,original,book,1 -yes,absolutely,original,book,1 -no,nay,original,cancel,3 -schedule_meeting,can you schedule a meeting with steve at the company office?,parrot,book,1 -how_busy,how busy will i get at red robin at 7:30,lambada,avail,0 -goodbye,"thanks for chatting, see you",lambada,bye,2 -no,no longer valid,parrot,cancel,3 -yes,exactly right,original,book,1 -cancel_reservation,how do i cancel my steakhouse reservation?,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -thank_you,my gratitude,parrot,bye,2 -greeting,hiya,original,greet,4 -reminder_update,remind me again please,original,resched,5 -no,certainly false,parrot,cancel,3 -cancel_reservation,cancel my reservation for brad at the longhorn,parrot,cancel,3 -yes,"yes, please",original,book,1 -yes,indeed,original,book,1 -no,certainly not,original,cancel,3 -goodbye,buhbye,original,bye,2 -date,today what date?,parrot,avail,0 -yes,"yes, that is accurate",original,book,1 -calendar_update,take the surprise party off my calendar for june 2,parrot,resched,5 -schedule_meeting,please reserve a meeting room for 9 am,parrot,book,1 -yes,good,parrot,book,1 -no,it seems not,original,cancel,3 -thank_you,you're welcome,parrot,bye,2 -how_busy,are the restaurants full when you eat?,parrot,avail,0 -yes,confirmed,original,book,1 -how_busy,do you know how busy outback steakhouse will be at 5 pm?,lambada,avail,0 -date,in five days?,parrot,avail,0 -no,naw,original,cancel,3 -calendar,please find my march schedule,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -thank_you,i want to thank you for your answer,parrot,bye,2 -greeting,hiya!,original,greet,4 -goodbye,goodbye!,original,bye,2 -no,that's totally wrong,parrot,cancel,3 -greeting,yo,original,greet,4 -no,naw,original,cancel,3 -no,nope,original,cancel,3 -meeting_schedule,meeting today,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -greeting,ahoy,lambada,greet,4 -how_busy,and i know how busy the olive garden is around 7,parrot,avail,0 -goodbye,fairwell,original,bye,2 -greeting,"hi, ai",original,greet,4 -date,date please,original,avail,0 -greeting,hey how's ot,lambada,greet,4 -greeting,how's the situation?,parrot,greet,4 -greeting,"good morning, ai",original,greet,4 -yes,approved,original,book,1 -goodbye,sign off,parrot,bye,2 -no,but that's not factual,parrot,cancel,3 -greeting,how's life?,parrot,greet,4 -how_busy,has the wait been long for the orange blossoms?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -yes,that's definitely true,original,book,1 -no,negative,original,cancel,3 -greeting,salutation,parrot,greet,4 -no,no that is wrong,original,cancel,3 -thank_you,thanks again!,original,bye,2 -yes,you are correct,original,book,1 -meeting_schedule,do i have to meet david again?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -greeting,hello there ai,original,greet,4 -yes,uh-huh,original,book,1 -thank_you,i want to thank you for your reply,parrot,bye,2 -how_busy,list the wait times for this yogurt shop?,parrot,avail,0 -yes,i think you've got it,parrot,book,1 -date,"in 100 days from now, what will be the date",original,avail,0 -no,i do not think that is proper,original,cancel,3 -no,"no, it's not",lambada,cancel,3 -how_busy,how long would the wait be at the pizza place? '',parrot,avail,0 -how_busy,how long will the wait be at koko,lambada,avail,0 -goodbye,buhbye,original,bye,2 -thank_you,thank you kindly,original,bye,2 -no,absolutely not,original,cancel,3 -yes,that is right,original,book,1 -greeting,"hello, friend",original,greet,4 -greeting,what's happening,original,greet,4 -yes,facts,original,book,1 -thank_you,i'm very thankful,parrot,bye,2 -how_busy,is the wait time at maceos regular?,parrot,avail,0 -meeting_schedule,do we meet today?,parrot,avail,0 -goodbye,wonderful conversation,lambada,bye,2 -no,it's false,parrot,cancel,3 -goodbye,i leave now,parrot,bye,2 -no,i would prefer not,original,cancel,3 -goodbye,ai goodbye,original,bye,2 -greeting,"hey, ai",original,greet,4 -no,thanks no,parrot,cancel,3 -reminder_update,remind me to buy cat food,parrot,resched,5 -yes,facts,original,book,1 -goodbye,very nice conversation,parrot,bye,2 -no,i meant nothing,parrot,cancel,3 -yes,is true,parrot,book,1 -no,negation,parrot,cancel,3 -goodbye,i'll leave now,parrot,bye,2 -goodbye,later!,original,bye,2 -greeting,hey what's up?,parrot,greet,4 -date,what's my date tomorrow?,parrot,avail,0 -cancel_reservation,i need to cancel my reservation for 2 at the franklin's grille,parrot,cancel,3 -how_busy,tell me the number of people waiting at chili's 5pm?,parrot,avail,0 -calendar,is there an event called anniversary dinner on my calendar?,parrot,avail,0 -thank_you,i'm glad you answered,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -calendar,check my calendar for march 5,parrot,avail,0 -no,negative sure,parrot,cancel,3 -how_busy,is the chili's busy at 9?,lambada,avail,0 -date,today?,parrot,avail,0 -yes,huh,parrot,book,1 -yes,sure,original,book,1 -greeting,hello there!,original,greet,4 -yes,say yes,lambada,book,1 -greeting,hello what's up?,parrot,greet,4 -greeting,hey hey!,original,greet,4 -how_busy,is kaya busy around 5pm?,parrot,avail,0 -yes,great,original,book,1 -goodbye,bye!,original,bye,2 -greeting,hiya,original,greet,4 -thank_you,thanks so much,original,bye,2 -greeting,you're all right?,parrot,greet,4 -no,that's wrong,original,cancel,3 -greeting,hi there,original,greet,4 -yes,all right,parrot,book,1 -how_busy,how busy is the cheesecake factory right now?,parrot,avail,0 -no,that is not true,original,cancel,3 -cancel_reservation,proceed and close the reservation,parrot,cancel,3 -how_busy,how long will i have to wait to get a table at angel wings?,parrot,avail,0 -calendar_update,delete the event from the calendar,parrot,resched,5 -greeting,hi there,original,greet,4 -date,please date,parrot,avail,0 -yes,yes that's it,original,book,1 -greeting,hi,original,greet,4 -date,what's today,original,avail,0 -date,tell me the name of the day?,parrot,avail,0 -how_busy,how long does it take to be seated in the restaurant?,parrot,avail,0 -yes,you're right,original,book,1 -no,false sure,parrot,cancel,3 -goodbye,later goodbye,parrot,bye,2 -no,that's false,original,cancel,3 -calendar,show some of the events on my calendar for april 1st?,parrot,avail,0 -goodbye,talk to you later,original,bye,2 -date,describe the day?,parrot,avail,0 -yes,right,parrot,book,1 -thank_you,you've been great,parrot,bye,2 -goodbye,the talk was nice,lambada,bye,2 -no,that's not the right answer,parrot,cancel,3 -thank_you,thanks for the reply,original,bye,2 -goodbye,bye bye,lambada,bye,2 -how_busy,tell me the time to wait in the cheese cake factory?,parrot,avail,0 -no,false sure,parrot,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -thank_you,appreciate the assistance,parrot,bye,2 -cancel_reservation,get a salad off,parrot,cancel,3 -goodbye,later good luck,parrot,bye,2 -greeting,salutations,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -how_busy,how long can i wait for chili?,parrot,avail,0 -goodbye,im leaving goodbye,parrot,bye,2 -no,erroneous,parrot,cancel,3 -greeting,hiya!,original,greet,4 -goodbye,nice conversation today,parrot,bye,2 -thank_you,you've tried,parrot,bye,2 -no,that isn't true,lambada,cancel,3 -goodbye,goodbye!,original,bye,2 -date,date tomorrow?,parrot,avail,0 -goodbye,good luck tomorrow,lambada,bye,2 -greeting,what's new,lambada,greet,4 -no,so that's no,parrot,cancel,3 -reminder_update,remember me to call tomorrow,parrot,resched,5 -no,it's not correct,parrot,cancel,3 -thank_you,many thanks,original,bye,2 -goodbye,say goodbye,parrot,bye,2 -goodbye,bye for now,original,bye,2 -how_busy,if it's noon how long will it take,parrot,avail,0 -no,it's false,parrot,cancel,3 -date,tell me what day it is in 24 hours?,parrot,avail,0 -greeting,hey what's up,original,greet,4 -yes,ya,original,book,1 -meeting_schedule,tell me if i have meetings from 3 to 6pm,parrot,avail,0 -greeting,hey yai,lambada,greet,4 -thank_you,i'm grateful,original,bye,2 -thank_you,you've been a great help,original,bye,2 -yes,yup,original,book,1 -calendar,what's my schedule for april 15?,parrot,avail,0 -yes,huh,parrot,book,1 -yes,great,original,book,1 -thank_you,thanks for this information,lambada,bye,2 -goodbye,bye,original,bye,2 -yes,and you have it right,parrot,book,1 -greeting,hiya!,original,greet,4 -reminder_update,remind me,original,resched,5 -yes,definitely,original,book,1 -goodbye,later then,lambada,bye,2 -greeting,wassup,original,greet,4 -yes,obviously,parrot,book,1 -greeting,how's life,original,greet,4 -greeting,heller,original,greet,4 -greeting,yo,original,greet,4 -yes,right,parrot,book,1 -date,what day are we in?,original,avail,0 -yes,it's certainly true,parrot,book,1 -goodbye,buhbye,original,bye,2 -greeting,hey,original,greet,4 -greeting,how you're treated?,parrot,greet,4 -goodbye,great talk,lambada,bye,2 -yes,obviously,parrot,book,1 -meeting_schedule,what time do i meet dan?,parrot,avail,0 -no,nothing,parrot,cancel,3 -yes,positive,parrot,book,1 -no,negation,parrot,cancel,3 -yes,ya,original,book,1 -yes,i know,parrot,book,1 -goodbye,i enjoyed our talk,parrot,bye,2 -goodbye,sayonara ,parrot,bye,2 -goodbye,i must run now,parrot,bye,2 -no,that's bad,parrot,cancel,3 -yes,TRUE,lambada,book,1 -thank_you,you helped,parrot,bye,2 -date,tell me the next month?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -greeting,wassup,original,greet,4 -yes,huh,parrot,book,1 -thank_you,"awesome, thanks",original,bye,2 -greeting,how ya doin,original,greet,4 -calendar,what do i have planned for april 23th?,parrot,avail,0 -schedule_meeting,i want to find out how do i schedule a meeting,original,book,1 -greeting,salutations,parrot,greet,4 -yes,obviously,parrot,book,1 -no,no way,original,cancel,3 -yes,ya,original,book,1 -greeting,yo,original,greet,4 -yes,it's true,original,book,1 -yes,good,parrot,book,1 -greeting,aho,parrot,greet,4 -greeting,hiya,original,greet,4 -greeting,what is going on?,parrot,greet,4 -yes,TRUE,original,book,1 -thank_you,thanks please,original,bye,2 -goodbye,buhbye,original,bye,2 -calendar_update,i have to make an appointment tomorrow for 3,parrot,resched,5 -yes,yes that's correct,original,book,1 -no,that seems wrong,lambada,cancel,3 -goodbye,wonderful conversation,lambada,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,much obliged,original,bye,2 -greeting,heyo,original,greet,4 -yes,it's a fact,parrot,book,1 -meeting_schedule,what's the meeting schedule,lambada,avail,0 -yes,ok,original,book,1 -yes,that seems true,original,book,1 -yes,great,original,book,1 -thank_you,thanks again,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -schedule_meeting,can you schedule a meeting with steve please?,lambada,book,1 -no,no way!,original,cancel,3 -yes,agreed,original,book,1 -date,what's tomorrow's date,original,avail,0 -thank_you,thank ya!,original,bye,2 -date,list the date for tomorrow?,parrot,avail,0 -calendar_update,a date added to my calendar for the week of may 14th,parrot,resched,5 -date,in 373 days what day will it be?,parrot,avail,0 -greeting,hiya!,original,greet,4 -greeting,salutation,parrot,greet,4 -thank_you,thanks please,original,bye,2 -goodbye,time to say goodbye,parrot,bye,2 -thank_you,so grateful,parrot,bye,2 -date,what is tomorrow's date?,original,avail,0 -yes,i think that's correct,parrot,book,1 -goodbye,maybe i'll see you,parrot,bye,2 -yes,ok,original,book,1 -yes,is true,parrot,book,1 -no,this is my reply,parrot,cancel,3 -yes,say yes,lambada,book,1 -greeting,how you're doing?,parrot,greet,4 -thank_you,nice,parrot,bye,2 -greeting,how is idy?,parrot,greet,4 -goodbye,bye now,original,bye,2 -how_busy,can you tell me if there's a lot of waiting time at the cheese cake factory?,parrot,avail,0 -yes,absolutely,original,book,1 -goodbye,good bye,original,bye,2 -goodbye,the pleasure was to talk with you,parrot,bye,2 -calendar,please read my calendar,parrot,avail,0 -goodbye,"this was a nice chat, goodbye",original,bye,2 -yes,is true,parrot,book,1 -no,negatory?,parrot,cancel,3 -goodbye,bye-bye,original,bye,2 -no,thanks no,parrot,cancel,3 -no,i don't like that,parrot,cancel,3 -date,what date will be 100 days from now on?,parrot,avail,0 -yes,obviously,parrot,book,1 -yes,absolutely,original,book,1 -goodbye,good-bye,parrot,bye,2 -yes,yup,original,book,1 -how_busy,how long will i have to wait before i'm seated at the cheesecake factory?,parrot,avail,0 -no,false sure,parrot,cancel,3 -how_busy,how long will i have to wait in a pizza factory for?,parrot,avail,0 -goodbye,im leaving goodbye,parrot,bye,2 -yes,okay,original,book,1 -greeting,yo,original,greet,4 -greeting,what's happened?,parrot,greet,4 -thank_you,really great!,original,bye,2 -goodbye,goodnight,original,bye,2 -how_busy,how busy is the cheesecake factory at 730?,parrot,avail,0 -goodbye,good see you,lambada,bye,2 -how_busy,can i expect to be busy at 6 o'clock?,parrot,avail,0 -goodbye,regards,original,bye,2 -date,what's today's date,original,avail,0 -date,in eight days?,parrot,avail,0 -yes,sure,original,book,1 -how_busy,how long will the wait be at the restaurant,lambada,avail,0 -calendar,what's in my calendar for march 10th?,parrot,avail,0 -how_busy,what's the wait?,parrot,avail,0 -no,i'll say no,parrot,cancel,3 -no,say negative,parrot,cancel,3 -yes,a fact,parrot,book,1 -calendar,see my calendar for events,parrot,avail,0 -yes,so it's true,parrot,book,1 -goodbye,just relax,parrot,bye,2 -no,that is not acceptable,lambada,cancel,3 -schedule_meeting,i must find a meeting room,parrot,book,1 -goodbye,good conversation,parrot,bye,2 -goodbye,later!,original,bye,2 -yes,indeed,parrot,book,1 -meeting_schedule,are there meetings between 6 and 9 o'clock in the night?,parrot,avail,0 -goodbye,"later, good luck",lambada,bye,2 -yes,that's a yes,original,book,1 -greeting,how are things going,original,greet,4 -goodbye,talk later,original,bye,2 -goodbye,glad we can talk,parrot,bye,2 -yes,yep,original,book,1 -goodbye,the conversation was good,parrot,bye,2 -no,nothing good,parrot,cancel,3 -reminder_update,a new reminder,parrot,resched,5 -how_busy,how long will the wait be at iman's?,parrot,avail,0 -goodbye,bye bye!,original,bye,2 -greeting,how are you,original,greet,4 -date,where's the date tomorrow?,parrot,avail,0 -no,don't like that,parrot,cancel,3 -calendar_update,must add my wedding to my calendar for march 5th,parrot,resched,5 -thank_you,okay thanks,original,bye,2 -goodbye,i must run now,parrot,bye,2 -yes,confirm,original,book,1 -yes,"yes, that's confirmed",original,book,1 -goodbye,we chatted well,parrot,bye,2 -no,i would say no,lambada,cancel,3 -goodbye,good bye for now,parrot,bye,2 -yes,10-Apr,original,book,1 -yes,right,parrot,book,1 -greeting,aloha,original,greet,4 -greeting,aloha,original,greet,4 -no,i disagree,parrot,cancel,3 -yes,ya,original,book,1 -how_busy,how busy will chili be at 5?,parrot,avail,0 -reminder_update,set reminder alarm for the meeting at noon,lambada,resched,5 -greeting,hows are ya,original,greet,4 -calendar,can you tell me what's on my calendar for march 3rd?,parrot,avail,0 -no,no!,original,cancel,3 -no,that's a negative,original,cancel,3 -no,it's negative,parrot,cancel,3 -calendar,what's tuesday's calendar?,parrot,avail,0 -meeting_schedule,are there any meetings with jason?,parrot,avail,0 -no,don't agree,parrot,cancel,3 -how_busy,tell me the number of people at chipotle at 6pm,parrot,avail,0 -no,no please,parrot,cancel,3 -reminder_update,add a note,parrot,resched,5 -how_busy,how busy is ihop?,parrot,avail,0 -how_busy,wait how long until we're in the restaurant?,parrot,avail,0 -yes,approved,original,book,1 -thank_you,you've been great,parrot,bye,2 -cancel_reservation,can you cancel my reservation for 5 at red robin?,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -yes,a true statement,parrot,book,1 -thank_you,well done,parrot,bye,2 -thank_you,thanks,original,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -yes,affirmative,original,book,1 -no,invalid,original,cancel,3 -no,negatory,original,cancel,3 -calendar_update,clear my calendar for september 6th,original,resched,5 -yes,"true, most definitely",original,book,1 -yes,yeah,original,book,1 -how_busy,how long do i have to wait to be seated in the restaurant?,parrot,avail,0 -schedule_meeting,book a meeting room for 5pm on friday,parrot,book,1 -greeting,what's new?,parrot,greet,4 -yes,i think it's true,original,book,1 -calendar_update,remove the date from my calendar for next friday,parrot,resched,5 -how_busy,is the restaurant filled at night?,parrot,avail,0 -goodbye,just relax,parrot,bye,2 -how_busy,how busy is this restaurant at 11 pm,lambada,avail,0 -reminder_update,"create a reminder, please",lambada,resched,5 -greeting,get up ai,parrot,greet,4 -thank_you,you've been great,parrot,bye,2 -yes,"yes, please",parrot,book,1 -no,negating,parrot,cancel,3 -greeting,good evening,original,greet,4 -greeting,hello bs,parrot,greet,4 -no,invalid,original,cancel,3 -yes,so it's true,parrot,book,1 -yes,positive,parrot,book,1 -how_busy,how long does it take to make a reservation at a pizza shop?,parrot,avail,0 -no,i think not,original,cancel,3 -thank_you,thanks,original,bye,2 -no,nope not it,original,cancel,3 -how_busy,you know how busy the cheese steak house is at 7?,parrot,avail,0 -greeting,bonjour,original,greet,4 -goodbye,good bye,original,bye,2 -no,negative,original,cancel,3 -goodbye,see ya,original,bye,2 -yes,oh yes,original,book,1 -meeting_schedule,time of meeting?,parrot,avail,0 -meeting_schedule,is there a meeting between 1pm and 3pm?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -yes,TRUE,original,book,1 -goodbye,i'm out,parrot,bye,2 -no,nothing,parrot,cancel,3 -no,not that,original,cancel,3 -no,nay,original,cancel,3 -calendar,tell me what's on my calendar for march 22nd,parrot,avail,0 -date,what's the date today?,parrot,avail,0 -no,the whole thing is wildly wrong,parrot,cancel,3 -yes,great,original,book,1 -goodbye,farewell,original,bye,2 -yes,yeap,original,book,1 -yes,right,parrot,book,1 -calendar,did i put an item on my calendar to get my car repaired?,lambada,avail,0 -goodbye,"it was a good evening, i'm ready to go",lambada,bye,2 -no,no,lambada,cancel,3 -goodbye,goodbye,original,bye,2 -how_busy,waiting at cheeseburgers?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -goodbye,"syonara, ai device!",original,bye,2 -goodbye,good conversation,parrot,bye,2 -yes,seems true,parrot,book,1 -yes,right,parrot,book,1 -yes,affirmitive,original,book,1 -yes,perfect,parrot,book,1 -yes,"correct, that's true",original,book,1 -yes,i'd say yes,parrot,book,1 -greeting,hello bs,parrot,greet,4 -yes,oh-huh,parrot,book,1 -yes,very true,original,book,1 -goodbye,later!,original,bye,2 -how_busy,"if i go to tgifridays at eight, will they be crowded",original,avail,0 -how_busy,say how busy it is right now?,parrot,avail,0 -goodbye,adios!,original,bye,2 -greeting,hey hey!,original,greet,4 -thank_you,you're welcome,parrot,bye,2 -thank_you,you have done well,lambada,bye,2 -goodbye,later,original,bye,2 -greeting,hey fellows,parrot,greet,4 -no,that's not right,original,cancel,3 -yes,good yes,lambada,book,1 -yes,i agree,original,book,1 -reminder_update,add a note,parrot,resched,5 -goodbye,thanks goodbye,parrot,bye,2 -no,"no, that's wrong",original,cancel,3 -how_busy,can i wait at the chocolate fountain?,parrot,avail,0 -yes,great,original,book,1 -greeting,ahoy hoy,original,greet,4 -yes,okay,original,book,1 -greeting,aloha,original,greet,4 -goodbye,tata for now,original,bye,2 -yes,the answer is yes,original,book,1 -goodbye,have to run,parrot,bye,2 -goodbye,buhbye,original,bye,2 -yes,of course,original,book,1 -no,nothing,parrot,cancel,3 -meeting_schedule,can i meet kim today?,parrot,avail,0 -goodbye,later then,lambada,bye,2 -yes,yup,original,book,1 -yes,TRUE,original,book,1 -no,erroneous,parrot,cancel,3 -how_busy,tell me the time to wait if you want to eat red lobster?,parrot,avail,0 -date,in five days?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -yes,it's logical,parrot,book,1 -thank_you,again thanks,parrot,bye,2 -thank_you,you're welcome,parrot,bye,2 -date,which date today?,parrot,avail,0 -calendar_update,please stop the lunch on october 31st,parrot,resched,5 -yes,certainly,parrot,book,1 -goodbye,a good conversation,parrot,bye,2 -greeting,why hello?,original,greet,4 -greeting,how're you?,parrot,greet,4 -greeting,how's the life?,parrot,greet,4 -no,definitely not,original,cancel,3 -thank_you,thanks!,original,bye,2 -goodbye,i liked our conversation,parrot,bye,2 -date,what's it today?,parrot,avail,0 -greeting,what's happened to you?,parrot,greet,4 -greeting,good day,original,greet,4 -meeting_schedule,what's on my calendar?,parrot,avail,0 -goodbye,goodbye ai,parrot,bye,2 -thank_you,please thank you for my actions,parrot,bye,2 -greeting,how's otc?,parrot,greet,4 -cancel_reservation,cancel the dinner reservation i made?,parrot,cancel,3 -greeting,hey,original,greet,4 -thank_you,good job on that,lambada,bye,2 -goodbye,farewell!,original,bye,2 -meeting_schedule,what's on my schedule?,parrot,avail,0 -goodbye,peace,original,bye,2 -greeting,how is life?,parrot,greet,4 -greeting,how is it with you,lambada,greet,4 -goodbye,ai goodbye,original,bye,2 -yes,great,original,book,1 -meeting_schedule,meeting today,parrot,avail,0 -how_busy,is the restaurant crowded around dinner time?,parrot,avail,0 -date,what year?,parrot,avail,0 -goodbye,take a break,parrot,bye,2 -date,what's today,original,avail,0 -no,ill pass,original,cancel,3 -yes,indeed,original,book,1 -greeting,hey,original,greet,4 -goodbye,bye!,original,bye,2 -date,what's the date,original,avail,0 -greeting,hiya!,original,greet,4 -date,what is today?,original,avail,0 -goodbye,farewell,original,bye,2 -how_busy,what time can i expect to be seated in the restaurant?,parrot,avail,0 -how_busy,how long does it take to get a table in this restaurant?,parrot,avail,0 -no,nothing,parrot,cancel,3 -how_busy,tell me the wait at applebee's tonight,parrot,avail,0 -goodbye,later gator!,original,bye,2 -greeting,aloha,original,greet,4 -no,negatory,original,cancel,3 -greeting,whats up,original,greet,4 -no,no way,original,cancel,3 -cancel_reservation,do you want to cancel my reservation?,parrot,cancel,3 -goodbye,peace out!,original,bye,2 -greeting,what's happened?,parrot,greet,4 -greeting,and what's up?,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -no,negation,parrot,cancel,3 -goodbye,good bye,original,bye,2 -yes,"yes, please",original,book,1 -goodbye,good luck tomorrow,lambada,bye,2 -schedule_meeting,how many hours a meeting can take?,parrot,book,1 -date,what is today?,original,avail,0 -goodbye,i'll leave now,parrot,bye,2 -goodbye,good thing to see you,lambada,bye,2 -yes,yay,lambada,book,1 -yes,certainly,parrot,book,1 -greeting,bonjour,original,greet,4 -greeting,hola!,original,greet,4 -no,it's a negation,parrot,cancel,3 -no,no way,original,cancel,3 -how_busy,how busy is the cheesecake factory around 6pm,parrot,avail,0 -cancel_reservation,get the salad canceled,parrot,cancel,3 -greeting,hello what's going on with you,parrot,greet,4 -goodbye,catch you later,original,bye,2 -thank_you,thank you for the job,parrot,bye,2 -yes,the statement is true,original,book,1 -reminder_update,create a reminder to take my dog to the vet,parrot,resched,5 -goodbye,see ya,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -thank_you,good job thanks,parrot,bye,2 -goodbye,"that's all, bye",original,bye,2 -greeting,ahoy,lambada,greet,4 -greeting,nice day,lambada,greet,4 -thank_you,again thank you,parrot,bye,2 -greeting,what's happening,original,greet,4 -calendar,what's on my calendar for july 28?,parrot,avail,0 -goodbye,bye now,original,bye,2 -no,nope,original,cancel,3 -thank_you,thanks,original,bye,2 -goodbye,great talk,lambada,bye,2 -thank_you,thankyou,parrot,bye,2 -reminder_update,make a reminder,parrot,resched,5 -yes,oh-huh,parrot,book,1 -greeting,what's up?,parrot,greet,4 -greeting,hey,original,greet,4 -how_busy,how long will it take to get a table at flannigans,parrot,avail,0 -cancel_reservation,i don't need dinner reservation,parrot,cancel,3 -thank_you,"thanks, that's helpful",original,bye,2 -yes,affirmative,original,book,1 -no,no please,parrot,cancel,3 -no,negation,parrot,cancel,3 -no,negation,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -yes,yeap,original,book,1 -thank_you,i'm thankful,original,bye,2 -yes,yeah,original,book,1 -thank_you,thank you,original,bye,2 -goodbye,bye,original,bye,2 -no,naw,parrot,cancel,3 -reminder_update,make a reminder to buy bread,parrot,resched,5 -greeting,hey there!,original,greet,4 -yes,great,original,book,1 -yes,my answer is yes,parrot,book,1 -calendar,please read my calendar on march 21st,parrot,avail,0 -meeting_schedule,do you have any meetings planned for today?,parrot,avail,0 -thank_you,you've made my life easier,parrot,bye,2 -greeting,how does ai feel?,parrot,greet,4 -goodbye,let me talk with you later,parrot,bye,2 -goodbye,farewell to you,lambada,bye,2 -yes,i agree with the truth of what you just said,original,book,1 -greeting,how's my doing?,parrot,greet,4 -greeting,hi,original,greet,4 -greeting,hola!,original,greet,4 -yes,yes it's true,lambada,book,1 -greeting,ahoy there,lambada,greet,4 -no,it seems wrong,parrot,cancel,3 -goodbye,bye now,original,bye,2 -reminder_update,remind me to pay the rent tomorrow at 6pm,parrot,resched,5 -greeting,need to know what you're doing,parrot,greet,4 -date,tell me the date of the next week?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,that's overwhelmingly negative,parrot,cancel,3 -greeting,how's everything,original,greet,4 -no,nada,original,cancel,3 -no,it's so bad,parrot,cancel,3 -goodbye,see ya,lambada,bye,2 -yes,yes that's right,lambada,book,1 -thank_you,you're welcome,parrot,bye,2 -yes,ya,original,book,1 -thank_you,thanks for the response,lambada,bye,2 -goodbye,adios!,original,bye,2 -yes,i'll check it out -,parrot,book,1 -goodbye,ensure you get some rest now,parrot,bye,2 -calendar_update,please let me get rid of my prom event from 25 march,parrot,resched,5 -yes,agreed,original,book,1 -date,what's today,original,avail,0 -greeting,have you been good?,original,greet,4 -goodbye,"no problem, goodbye",lambada,bye,2 -meeting_schedule,check my schedule for meetings today,original,avail,0 -no,that's negative,parrot,cancel,3 -yes,so it works,parrot,book,1 -no,i'll pass,original,cancel,3 -thank_you,appreciated,original,bye,2 -yes,that's absolutely true,parrot,book,1 -yes,confirm,original,book,1 -greeting,how are things going?,parrot,greet,4 -yes,i believe you're right,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -schedule_meeting,need a meeting room,parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how busy is the outback steakhouse at 7:30,lambada,avail,0 -thank_you,merci beaucoup,original,bye,2 -yes,accept,parrot,book,1 -no,so that's no,parrot,cancel,3 -how_busy,how busy will tomato garden be around 5pm,lambada,avail,0 -goodbye,see ya,lambada,bye,2 -greeting,what's up,original,greet,4 -greeting,hey hey!,original,greet,4 -goodbye,goodbye no problem,parrot,bye,2 -no,that's inaccurate,original,cancel,3 -thank_you,my gratitude,parrot,bye,2 -yes,affirmitive,original,book,1 -greeting,welcome,parrot,greet,4 -greeting,hey,original,greet,4 -greeting,aloha,original,greet,4 -goodbye,tata for now,original,bye,2 -schedule_meeting,how do i schedule a meeting with you?,parrot,book,1 -yes,ya,original,book,1 -goodbye,goodnight,original,bye,2 -reminder_update,let me remember,parrot,resched,5 -reminder_update,the steaks on the grill remind me to check them at the right time,parrot,resched,5 -yes,that makes sense,lambada,book,1 -yes,you got it,parrot,book,1 -thank_you,thanks for helping,original,bye,2 -goodbye,see you later alligator,original,bye,2 -goodbye,adios!,original,bye,2 -meeting_schedule,when is my meeting with mark?,parrot,avail,0 -no,nay,original,cancel,3 -goodbye,goodbyes,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -thank_you,i'm grateful,original,bye,2 -greeting,how's life treating you,parrot,greet,4 -no,it's negative,parrot,cancel,3 -cancel_reservation,get a salad off,parrot,cancel,3 -how_busy,when is rancho crowded?,parrot,avail,0 -goodbye,thank you for talking to me later,parrot,bye,2 -yes,that's right,original,book,1 -how_busy,i want to know how long it will be to be seated at macaroni grill,lambada,avail,0 -thank_you,awesome thanks,parrot,bye,2 -how_busy,how busy the steakhouse will be at 730 pm?,parrot,avail,0 -goodbye,i have to go,parrot,bye,2 -thank_you,thank you for my help,original,bye,2 -how_busy,what's the wait like?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -how_busy,can i get a table for four at 8:00?,original,avail,0 -yes,accepted,original,book,1 -yes,confirmed,original,book,1 -yes,i'm going to tell you tes,parrot,book,1 -no,it's not necessarily true,parrot,cancel,3 -greeting,hello there,original,greet,4 -schedule_meeting,i must schedule a meeting with jane for 3pm,parrot,book,1 -no,nothing good,parrot,cancel,3 -no,it is no,original,cancel,3 -how_busy,how busy is red robin at 7 pm,lambada,avail,0 -calendar_update,let's remove this date from the calendar,parrot,resched,5 -greeting,hello there!,original,greet,4 -yes,positive,parrot,book,1 -no,erroneous,parrot,cancel,3 -how_busy,tell me the number of people waiting in line at chili's 5 pm,parrot,avail,0 -date,what's today,original,avail,0 -thank_you,gracias,original,bye,2 -yes,yeah,original,book,1 -goodbye,it's over,parrot,bye,2 -goodbye,adios,original,bye,2 -calendar,please read my calendar,parrot,avail,0 -thank_you,you've tried,parrot,bye,2 -no,negation,parrot,cancel,3 -greeting,do you feel?,parrot,greet,4 -date,please explain today,parrot,avail,0 -date,please date,parrot,avail,0 -date,current date,original,avail,0 -goodbye,fairwell,original,bye,2 -calendar,can you list the marathon on friday on my calendar?,parrot,avail,0 -yes,agreed,original,book,1 -date,where is tomorrow's date?,parrot,avail,0 -yes,10-Apr,original,book,1 -calendar,do i have anything on my schedule for may 3?,original,avail,0 -greeting,how's idy doing,lambada,greet,4 -yes,sure thing,original,book,1 -thank_you,you have made my life so much easier,lambada,bye,2 -goodbye,tata for now,original,bye,2 -no,that's erroneous,parrot,cancel,3 -thank_you,"nice, excellent!",original,bye,2 -how_busy,how much time is the restaurant sitting,lambada,avail,0 -date,today?,parrot,avail,0 -yes,please let's do this,parrot,book,1 -date,can you give me a date to expect in 24 hours or less?,parrot,avail,0 -no,negating,parrot,cancel,3 -cancel_reservation,i won't need the reservation,parrot,cancel,3 -goodbye,later gator!,original,bye,2 -greeting,how's everything going with you?,parrot,greet,4 -greeting,how is everything?,parrot,greet,4 -yes,positive,original,book,1 -date,what date is that?,parrot,avail,0 -date,in five days?,parrot,avail,0 -yes,that checks out,original,book,1 -yes,ok,original,book,1 -yes,accepted,original,book,1 -greeting,hiya!,original,greet,4 -yes,absolutely,original,book,1 -thank_you,i'm really grateful,parrot,bye,2 -yes,ok,original,book,1 -how_busy,why is this place so busy at lunch?,lambada,avail,0 -yes,yay,lambada,book,1 -how_busy,how long will it take to get a table at chili?,parrot,avail,0 -greeting,hiya,original,greet,4 -thank_you,your assistance is appreciated,parrot,bye,2 -yes,yes that's correct,original,book,1 -how_busy,can you tell me how busy the zilker's is at 7pm?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -how_busy,does this place get a lot of business around 8?,lambada,avail,0 -yes,yes that's right,lambada,book,1 -meeting_schedule,when does richard meet me?,parrot,avail,0 -reminder_update,keep me in the loop,parrot,resched,5 -reminder_update,tell me to call my mom,parrot,resched,5 -goodbye,peace out,original,bye,2 -goodbye,"nice talk, next time",lambada,bye,2 -goodbye,on the road,parrot,bye,2 -yes,a fact,parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -goodbye,just relax,parrot,bye,2 -no,that's actually false,parrot,cancel,3 -meeting_schedule,do i have any meetings with nora today?,lambada,avail,0 -no,certainly false,parrot,cancel,3 -calendar_update,schedule the family dinner on my calendar on march 8,parrot,resched,5 -goodbye,im leaving,parrot,bye,2 -how_busy,can the restaurant be crowded before dinner?,parrot,avail,0 -schedule_meeting,reserve a meeting room for 9am on tuesday,lambada,book,1 -date,tell me the date 650 days from now?,original,avail,0 -yes,ok,original,book,1 -date,what date will it be?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -yes,"yes, please",parrot,book,1 -no,absolutely false,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -how_busy,list the current seating hours in this restaurant?,parrot,avail,0 -yes,that's true,original,book,1 -no,nada,original,cancel,3 -yes,positive,parrot,book,1 -how_busy,does a coffee bean work at 7?,parrot,avail,0 -meeting_schedule,are you meeting lisa today?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -yes,uh-huh,original,book,1 -goodbye,tootles,original,bye,2 -greeting,aho,parrot,greet,4 -how_busy,does this pizza have a long wait?,parrot,avail,0 -yes,"yes, please",original,book,1 -no,you can't make that statement true?,parrot,cancel,3 -goodbye,"thanks for chatting, bye",lambada,bye,2 -greeting,hey yai,lambada,greet,4 -yes,yes that's it,original,book,1 -no,absolutely not,original,cancel,3 -goodbye,good bye,original,bye,2 -yes,all right,parrot,book,1 -cancel_reservation,there's no need to confirm my reservation,parrot,cancel,3 -how_busy,tell me the number of people waiting in lines at chili's 5pm?,parrot,avail,0 -thank_you,your answer is appreciated,original,bye,2 -no,that's negative,parrot,cancel,3 -yes,agreed,original,book,1 -goodbye,catch you later,original,bye,2 -yes,accepted,original,book,1 -goodbye,bye-bye,original,bye,2 -yes,oh yes,original,book,1 -schedule_meeting,book my meeting room for thursday at 3pm,parrot,book,1 -goodbye,see ya later,original,bye,2 -calendar,tuesday on my calendar?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -thank_you,thank you?,parrot,bye,2 -schedule_meeting,can you walk me through the process of scheduling a meeting,parrot,book,1 -how_busy,how many people are expected to be in the immaculate steakhouse,parrot,avail,0 -goodbye,later!,original,bye,2 -thank_you,i'm happy that you did it for me,parrot,bye,2 -meeting_schedule,wanna meet roger?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,heyo,original,greet,4 -date,what's the current date,original,avail,0 -goodbye,later!,original,bye,2 -cancel_reservation,i must cancel my reservation for barry at the red robin,parrot,cancel,3 -yes,definitely confirmed,parrot,book,1 -goodbye,goodbye!,original,bye,2 -no,no!,original,cancel,3 -reminder_update,remember the meeting tomorrow,parrot,resched,5 -no,that's actually a lie,parrot,cancel,3 -no,and i'm sorry,parrot,cancel,3 -schedule_meeting,can you make a meeting room?,parrot,book,1 -reminder_update,add a reminder to pay my bills,lambada,resched,5 -greeting,well hello,original,greet,4 -date,current date,original,avail,0 -how_busy,how busy is that cheesecake factory right now?,parrot,avail,0 -goodbye,signing off,original,bye,2 -no,no,lambada,cancel,3 -cancel_reservation,cancellation of dinner reservation,parrot,cancel,3 -no,negation,parrot,cancel,3 -yes,my answer is yes,parrot,book,1 -thank_you,thanks for trying,original,bye,2 -greeting,ahoy,lambada,greet,4 -how_busy,how busy is red lobster around 6pm,lambada,avail,0 -greeting,how's otc?,parrot,greet,4 -yes,yes sir,original,book,1 -cancel_reservation,then i have to cancel my reservation at umami for tonight,parrot,cancel,3 -yes,is true,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,hola!,original,greet,4 -schedule_meeting,please set a meeting with nancy at 4pm,parrot,book,1 -yes,absolutely,original,book,1 -no,that's absolutely false,parrot,cancel,3 -reminder_update,add me a reminder?,parrot,resched,5 -goodbye,see ya,lambada,bye,2 -no,please disagree,lambada,cancel,3 -yes,great,original,book,1 -yes,it's true,original,book,1 -no,not necessarily true,parrot,cancel,3 -thank_you,i owe you,parrot,bye,2 -goodbye,take it easy,lambada,bye,2 -yes,"correct, that's true",original,book,1 -yes,i know,parrot,book,1 -no,that's incorrect,original,cancel,3 -thank_you,thank you!,original,bye,2 -goodbye,buhbye,original,bye,2 -goodbye,goodbye!,original,bye,2 -yes,yeap,original,book,1 -yes,i vote yes,original,book,1 -thank_you,appreciated,original,bye,2 -calendar,is there a date on my calendar when i have to pay for the surgery?,parrot,avail,0 -meeting_schedule,time of meeting?,parrot,avail,0 -yes,TRUE,lambada,book,1 -reminder_update,i need to send flowers to my mom for mother's day,parrot,resched,5 -greeting,hey there,original,greet,4 -goodbye,bye-bye,original,bye,2 -no,no no thanks,parrot,cancel,3 -goodbye,have a good day?,original,bye,2 -goodbye,good-bye,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,hiya!,original,greet,4 -yes,uh huh,original,book,1 -yes,yes sir,original,book,1 -yes,i agree,original,book,1 -meeting_schedule,please show me my schedule for the day,parrot,avail,0 -how_busy,does red lobster have a lot of people around it?,parrot,avail,0 -no,that's totally wrong,parrot,cancel,3 -no,you are wrong,original,cancel,3 -thank_you,my gratitude,parrot,bye,2 -thank_you,thanks for helping,original,bye,2 -no,invalid,original,cancel,3 -thank_you,i'm really grateful,parrot,bye,2 -no,that's false,original,cancel,3 -yes,ya,original,book,1 -thank_you,you've been great,parrot,bye,2 -greeting,bonjour,original,greet,4 -how_busy,what time is the table reserved for me in the restaurant?,parrot,avail,0 -cancel_reservation,tell the restaurant to cancel my dinner reservation?,lambada,cancel,3 -goodbye,peace out!,original,bye,2 -greeting,aloha,original,greet,4 -cancel_reservation,cancel my reservation for dinner at the red robin,lambada,cancel,3 -goodbye,goodbye,original,bye,2 -thank_you,thanks for my cooperation,original,bye,2 -greeting,salutation,parrot,greet,4 -no,the negator,parrot,cancel,3 -goodbye,see ya,lambada,bye,2 -thank_you,i appreciate the answer,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -schedule_meeting,how do you set up a meeting? '',parrot,book,1 -thank_you,it's my debt,parrot,bye,2 -how_busy,is olive garden busy around 6pm?,parrot,avail,0 -greeting,how're you doing,original,greet,4 -goodbye,i'm glad we talked later,lambada,bye,2 -greeting,yo,original,greet,4 -no,negation,parrot,cancel,3 -greeting,good evening,original,greet,4 -yes,say positive,parrot,book,1 -no,naw,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -thank_you,my sincere thanks,parrot,bye,2 -no,no?,parrot,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -greeting,want to know how you're doing?,parrot,greet,4 -how_busy,can you tell me about the wait in olive garden right now?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -date,is tomorrow's date?,parrot,avail,0 -greeting,hey what's up,original,greet,4 -goodbye,greetings,parrot,bye,2 -thank_you,thanks for helping,original,bye,2 -reminder_update,create a reminder to pay taxes on monday,original,resched,5 -greeting,whats up?,parrot,greet,4 -date,how many days in six days,parrot,avail,0 -schedule_meeting,how do i book meetings?,parrot,book,1 -thank_you,thanks for cooperating,parrot,bye,2 -no,nada,original,cancel,3 -yes,"yup, that's correct",lambada,book,1 -date,what's the date we'll be here?,parrot,avail,0 -goodbye,"later, goodbye",lambada,bye,2 -schedule_meeting,i need a meeting room on friday at 9 am,parrot,book,1 -yes,that is accurate,original,book,1 -thank_you,you've been great,parrot,bye,2 -yes,affirmitive,original,book,1 -goodbye,good talk,parrot,bye,2 -calendar_update,please remove jury duty from my calendar for may 7,parrot,resched,5 -greeting,well hello,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,hi,original,greet,4 -thank_you,your response was good,parrot,bye,2 -meeting_schedule,when is today's meeting?,lambada,avail,0 -yes,you are yes,lambada,book,1 -goodbye,it's over,parrot,bye,2 -yes,please let's do it,original,book,1 -how_busy,how busy will the chili be at 6 pm?,parrot,avail,0 -calendar_update,can you delete this event from my calendar please?,parrot,resched,5 -goodbye,see you later alligator,original,bye,2 -thank_you,okay thanks,original,bye,2 -goodbye,thanks for the chat,parrot,bye,2 -calendar_update,i need to add the iep meeting to my calendar on april 15th,parrot,resched,5 -reminder_update,can you remind me?,parrot,resched,5 -goodbye,i'll go,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -no,it's a false,lambada,cancel,3 -no,not that,original,cancel,3 -meeting_schedule,when is the meeting with kara?,parrot,avail,0 -meeting_schedule,is my meeting scheduled?,parrot,avail,0 -schedule_meeting,set a meeting with tom at 12pm,lambada,book,1 -goodbye,good conversation,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -goodbye,be careful then,lambada,bye,2 -goodbye,will we talk about tomorrow?,parrot,bye,2 -thank_you,thanks for the reply,original,bye,2 -no,no it's not,parrot,cancel,3 -greeting,hiya!,original,greet,4 -schedule_meeting,can i meet with steve?,parrot,book,1 -thank_you,i appreciate your consideration,lambada,bye,2 -thank_you,thanks a million,original,bye,2 -thank_you,thanks for cooperating,parrot,bye,2 -reminder_update,save it for later,parrot,resched,5 -thank_you,thanks again,original,bye,2 -goodbye,goodbye soon,lambada,bye,2 -goodbye,glad we talked,parrot,bye,2 -goodbye,sign off,parrot,bye,2 -no,"please, no",original,cancel,3 -no,definitely not,original,cancel,3 -no,definitely not,original,cancel,3 -date,please tell me what's the date?,parrot,avail,0 -no,no thank you,original,cancel,3 -yes,yeah yeah,lambada,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -no,false sure,parrot,cancel,3 -how_busy,how long will it take to eat black jack,parrot,avail,0 -thank_you,thank you for answering my question,parrot,bye,2 -how_busy,what's iroquois like at 5 pm?,parrot,avail,0 -reminder_update,what's a reminder,parrot,resched,5 -no,ill pass,original,cancel,3 -calendar,can you check my calendar to see if an event called final exam is set to occur?,lambada,avail,0 -greeting,hi what's up?,parrot,greet,4 -thank_you,i want to thank you,lambada,bye,2 -greeting,how're you today?,parrot,greet,4 -greeting,well hello,original,greet,4 -yes,definitely,original,book,1 -greeting,salutation,parrot,greet,4 -no,would be a lie,parrot,cancel,3 -greeting,how ife treats you?,parrot,greet,4 -yes,"agreed, that's valid",original,book,1 -yes,huh,parrot,book,1 -greeting,salutations!,original,greet,4 -no,that's a false statement,lambada,cancel,3 -cancel_reservation,cancell my reservation for dinner please,parrot,cancel,3 -no,it turns out it's not true,parrot,cancel,3 -greeting,what's happening?,parrot,greet,4 -goodbye,goodbye for now,parrot,bye,2 -greeting,"hello, hello, hello",lambada,greet,4 -goodbye,good-bye,parrot,bye,2 -greeting,what's new,lambada,greet,4 -no,nope,original,cancel,3 -thank_you,thankyou,parrot,bye,2 -greeting,hello ai,parrot,greet,4 -goodbye,bye-bye,original,bye,2 -thank_you,thanks a million,original,bye,2 -goodbye,later!,original,bye,2 -greeting,wassup,original,greet,4 -yes,great,original,book,1 -yes,okay,original,book,1 -yes,confirmed,original,book,1 -goodbye,wonderful conversation,lambada,bye,2 -goodbye,ai goodbye,original,bye,2 -no,"please, no",original,cancel,3 -greeting,heyo,original,greet,4 -yes,good,parrot,book,1 -yes,roger that,original,book,1 -yes,correct,original,book,1 -no,that's definitely false,original,cancel,3 -no,not right now,original,cancel,3 -thank_you,i appeciate it,parrot,bye,2 -yes,indeed,parrot,book,1 -yes,accept,parrot,book,1 -goodbye,goodbye ai,parrot,bye,2 -greeting,hi,original,greet,4 -how_busy,is ihop busy around 6pm?,lambada,avail,0 -meeting_schedule,what is on my agenda today?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -goodbye,regards,original,bye,2 -thank_you,many thanks,original,bye,2 -yes,oh-huh,parrot,book,1 -meeting_schedule,do you need to be present for meetings?,parrot,avail,0 -no,that's untrue,parrot,cancel,3 -how_busy,how long will i have to wait for a table at the red lobster,parrot,avail,0 -yes,yeah,original,book,1 -no,nothing good,parrot,cancel,3 -goodbye,i'll take care of it,parrot,bye,2 -greeting,how ife treated you?,parrot,greet,4 -thank_you,okay thanks,original,bye,2 -date,is monday wednesday friday saturday or sunday?,parrot,avail,0 -no,"no, that would be bad",lambada,cancel,3 -calendar,check the calendar for the events,parrot,avail,0 -yes,oh-huh,parrot,book,1 -goodbye,goodbye goodbye,parrot,bye,2 -no,FALSE,lambada,cancel,3 -meeting_schedule,are any meetings booked today?,parrot,avail,0 -date,please give me the date of today,parrot,avail,0 -date,please tell me the date,parrot,avail,0 -yes,accepted,original,book,1 -goodbye,see ya,original,bye,2 -goodbye,goodbye thank you,parrot,bye,2 -no,that’s incorrect,original,cancel,3 -how_busy,does this place have a lot of business around 8?,parrot,avail,0 -reminder_update,remind me to do this once in a while?,parrot,resched,5 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,appreciated,original,bye,2 -thank_you,again thanks,parrot,bye,2 -yes,yep,original,book,1 -yes,thats right,original,book,1 -yes,yup,original,book,1 -no,that's bad,parrot,cancel,3 -goodbye,until next time,original,bye,2 -greeting,aho,parrot,greet,4 -reminder_update,set a reminder for later,original,resched,5 -yes,uh-huh,original,book,1 -greeting,hi,original,greet,4 -goodbye,farewell,original,bye,2 -yes,that's right,original,book,1 -greeting,how's it going?,parrot,greet,4 -calendar,list the events scheduled for april 15?,parrot,avail,0 -calendar_update,please scrape my 1st meeting off my calendar,parrot,resched,5 -yes,that makes sense,lambada,book,1 -no,absolutely not,original,cancel,3 -goodbye,goodbyes,parrot,bye,2 -date,in five days?,parrot,avail,0 -no,that's not right?,parrot,cancel,3 -thank_you,well done,parrot,bye,2 -greeting,hiya,original,greet,4 -goodbye,peace out,original,bye,2 -yes,obviously,parrot,book,1 -meeting_schedule,do i have any meetings today?,lambada,avail,0 -goodbye,catch you later,original,bye,2 -yes,affirmitive,original,book,1 -goodbye,see you soon,original,bye,2 -goodbye,later,original,bye,2 -yes,correct,original,book,1 -how_busy,how long will it take me to sit in olive garden for dinner?,parrot,avail,0 -reminder_update,need a reminder of the cookie order?,parrot,resched,5 -no,negative,original,cancel,3 -yes,i think you got it,parrot,book,1 -calendar_update,keep april 2nd wide open on my calendar please,original,resched,5 -no,it's so bad,parrot,cancel,3 -yes,you are definitely correct,lambada,book,1 -no,is not true?,parrot,cancel,3 -yes,sure thing,original,book,1 -goodbye,adios!,original,bye,2 -thank_you,"good job, thanks",lambada,bye,2 -how_busy,is the restaurant busy at 8pm?,parrot,avail,0 -goodbye,please talk soon,parrot,bye,2 -greeting,ahoy there,lambada,greet,4 -thank_you,you answered,parrot,bye,2 -thank_you,you have made my life so much easier,lambada,bye,2 -reminder_update,add me a reminder?,parrot,resched,5 -yes,i know,parrot,book,1 -goodbye,goodbye goodbye,parrot,bye,2 -greeting,how's the life?,parrot,greet,4 -calendar_update,"you can remove the field trip from my calendar for march 12, 2019",original,resched,5 -how_busy,will that place be busy at 11,lambada,avail,0 -goodbye,bye now,original,bye,2 -date,what's the next date?,parrot,avail,0 -reminder_update,i need a reminder to take dinner out of the oven,original,resched,5 -calendar_update,please take final exams off my calendar for may 3,original,resched,5 -yes,10-Apr,original,book,1 -goodbye,buhbye,original,bye,2 -meeting_schedule,give a summary of the meetings today,parrot,avail,0 -no,negatory,original,cancel,3 -no,don't like that,parrot,cancel,3 -yes,i think you succeeded,parrot,book,1 -goodbye,thanks goodbye,parrot,bye,2 -how_busy,will i get a seat at american roasting house around 10,lambada,avail,0 -goodbye,bye-bye,original,bye,2 -greeting,wassup,original,greet,4 -how_busy,would you say that imo's is busy at 5pm?,parrot,avail,0 -greeting,how are things,original,greet,4 -goodbye,good-bye,parrot,bye,2 -meeting_schedule,how many meetings am i supposed to have for today?,parrot,avail,0 -thank_you,thanks very much for your answer,parrot,bye,2 -greeting,what's up with you,original,greet,4 -goodbye,later!,original,bye,2 -how_busy,what's the average wait time in olive garden right now?,parrot,avail,0 -no,nay,original,cancel,3 -yes,"yes, please",original,book,1 -no,that's no way,parrot,cancel,3 -goodbye,cya later,original,bye,2 -goodbye,bye bye,lambada,bye,2 -thank_you,thanks!,original,bye,2 -reminder_update,remind me,original,resched,5 -greeting,hiya,original,greet,4 -how_busy,what is the expected wait time at blue jay?,lambada,avail,0 -no,negative,original,cancel,3 -how_busy,how busy will red lobster be at 4 pm,lambada,avail,0 -no,that's a no,lambada,cancel,3 -greeting,hey how's it hanging,original,greet,4 -greeting,how's otc?,parrot,greet,4 -no,please do not agree,parrot,cancel,3 -cancel_reservation,at dinner i no longer need a table,parrot,cancel,3 -yes,that's a definite yes,original,book,1 -yes,yeap,original,book,1 -goodbye,i'm leaving now,lambada,bye,2 -no,that would be false,original,cancel,3 -schedule_meeting,i need to schedule a meeting with mae at 5pm,original,book,1 -goodbye,i’m leaving-goodbye!,original,bye,2 -date,in three days,parrot,avail,0 -cancel_reservation,just cancel my reservation,lambada,cancel,3 -thank_you,you've been great,parrot,bye,2 -yes,ok,original,book,1 -meeting_schedule,when do you meet roger?,parrot,avail,0 -date,current date,original,avail,0 -greeting,what's happening?,parrot,greet,4 -goodbye,im leaving,parrot,bye,2 -reminder_update,let me remember,parrot,resched,5 -date,what's the next month?,parrot,avail,0 -goodbye,i'm going,parrot,bye,2 -goodbye,goodbye now,parrot,bye,2 -goodbye,say goodbye,parrot,bye,2 -yes,yup,original,book,1 -yes,indeed,original,book,1 -no,not so i think,parrot,cancel,3 -how_busy,what's the average wait time at the cheese cake factory,lambada,avail,0 -greeting,what's going on,original,greet,4 -no,"oh hell no, that'd be terrible!",original,cancel,3 -thank_you,merci beaucoup,original,bye,2 -yes,okay,original,book,1 -thank_you,thankyou,parrot,bye,2 -yes,im sure you're true,parrot,book,1 -date,what day of the month?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -no,that would be terrible,lambada,cancel,3 -greeting,whats up?,parrot,greet,4 -yes,huh,parrot,book,1 -calendar_update,add events to my calendar,parrot,resched,5 -goodbye,sayonara ,parrot,bye,2 -thank_you,thanks for this information,lambada,bye,2 -thank_you,i'm glad you did it for me,parrot,bye,2 -how_busy,is a restaurant crowded during the night?,parrot,avail,0 -no,nada,original,cancel,3 -goodbye,tootles?,parrot,bye,2 -cancel_reservation,can i cancel my reservations please?,original,cancel,3 -no,i disagree,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -date,today?,parrot,avail,0 -reminder_update,have i forgotten?,parrot,resched,5 -greeting,"hello, ai",original,greet,4 -date,is it monday wednesday thursday friday saturday?,parrot,avail,0 -goodbye,it was good chatting,original,bye,2 -goodbye,im leaving,parrot,bye,2 -yes,say positive,parrot,book,1 -yes,accept,parrot,book,1 -goodbye,peace out!,original,bye,2 -greeting,hello,original,greet,4 -yes,it seems true,parrot,book,1 -no,that is no,lambada,cancel,3 -greeting,yo,original,greet,4 -goodbye,see ya,lambada,bye,2 -date,he's got the date today,parrot,avail,0 -no,negation,parrot,cancel,3 -greeting,how things go?,parrot,greet,4 -date,what's tomorrow's date,original,avail,0 -goodbye,later goodbye,parrot,bye,2 -no,the information is incorrect,parrot,cancel,3 -goodbye,i’m leaving-goodbye!,original,bye,2 -calendar,does my calendar have anything for january 1?,parrot,avail,0 -calendar,are there appointments for april 3rd?,parrot,avail,0 -thank_you,"great, thanks!",original,bye,2 -thank_you,"oh, thanks",original,bye,2 -thank_you,thanks for the reply,original,bye,2 -goodbye,bye now,original,bye,2 -greeting,yo,original,greet,4 -goodbye,adios,original,bye,2 -greeting,how things go?,parrot,greet,4 -thank_you,for that thank you,parrot,bye,2 -reminder_update,remember to use the bathroom,parrot,resched,5 -no,i meant no,original,cancel,3 -greeting,hiya!,original,greet,4 -yes,that is really true,lambada,book,1 -greeting,hey fellow,parrot,greet,4 -meeting_schedule,when is my meeting with invoicing scheduled for?,lambada,avail,0 -no,negative certainly,parrot,cancel,3 -greeting,how you feel?,parrot,greet,4 -schedule_meeting,i want you to set a meeting at noon,lambada,book,1 -goodbye,"thanks, bye",original,bye,2 -calendar_update,i must put my appointment for the dentist on my calendar for tomorrow,parrot,resched,5 -date,what will be the date in two months?,parrot,avail,0 -greeting,hey how ya been,lambada,greet,4 -yes,absolutely!,original,book,1 -thank_you,thankyou,parrot,bye,2 -no,that's actually a lie,parrot,cancel,3 -thank_you,i'm happy you've helped me,parrot,bye,2 -yes,the statement is true,original,book,1 -greeting,hi,original,greet,4 -no,naw,parrot,cancel,3 -calendar_update,i'll remove fishing from my calendar for soccer,parrot,resched,5 -yes,accepted,original,book,1 -calendar_update,add this to the calendar for tomorrow?,parrot,resched,5 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,nothing,parrot,cancel,3 -greeting,hiya,original,greet,4 -no,nothing,parrot,cancel,3 -thank_you,i'm thankful,original,bye,2 -goodbye,later,original,bye,2 -greeting,how's the situation?,parrot,greet,4 -goodbye,nice drive by,lambada,bye,2 -calendar,do you have appointments scheduled for april 19th?,parrot,avail,0 -yes,yeap,original,book,1 -greeting,salutation,parrot,greet,4 -thank_you,okay thanks,original,bye,2 -no,but it's wrong,parrot,cancel,3 -reminder_update,what's a reminder,parrot,resched,5 -thank_you,i appreciate you helping me,original,bye,2 -thank_you,appreciate it,original,bye,2 -yes,"yes, that's right",original,book,1 -cancel_reservation,cancel my reservation for chris,parrot,cancel,3 -greeting,heller,original,greet,4 -goodbye,nice conversation today,parrot,bye,2 -thank_you,much obliged,original,bye,2 -goodbye,"see you later, alligator",original,bye,2 -goodbye,buhbye now,lambada,bye,2 -how_busy,how many hours does the restaurant last at noon,parrot,avail,0 -goodbye,buhbye,original,bye,2 -yes,oh-huh,parrot,book,1 -goodbye,take it easy!,original,bye,2 -goodbye,and tell me bye?,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -no,that's not it,parrot,cancel,3 -yes,good,parrot,book,1 -date,what's the day of the day?,parrot,avail,0 -thank_you,good job,lambada,bye,2 -no,nope,original,cancel,3 -greeting,wassup,original,greet,4 -cancel_reservation,abandon the reservation for dinner,parrot,cancel,3 -yes,confirmed,original,book,1 -thank_you,you helped me,parrot,bye,2 -calendar_update,eliminate all calendar entries on 3 march,parrot,resched,5 -calendar_update,on 22 of this month we need to clear our calendar so we can leave it open for mark to visit,parrot,resched,5 -calendar,do i have appointments for march 10th?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -goodbye,i'll be on my way,parrot,bye,2 -yes,accept,parrot,book,1 -yes,positive,parrot,book,1 -yes,yes that's it,original,book,1 -yes,oh-huh,parrot,book,1 -yes,confirmed,original,book,1 -how_busy,what are the odds that i'll have a good time if i go to applebee's at 5 pm?,lambada,avail,0 -no,yes it's false,parrot,cancel,3 -meeting_schedule,when's the meeting with kara?,parrot,avail,0 -thank_you,thanks again!,original,bye,2 -no,FALSE,original,cancel,3 -goodbye,good-bye,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -greeting,hola!,original,greet,4 -calendar,look at my calendar for any upcoming appointments,parrot,avail,0 -no,it's a false,lambada,cancel,3 -greeting,how you are,original,greet,4 -thank_you,thanks!,original,bye,2 -yes,accepted,original,book,1 -goodbye,for now,parrot,bye,2 -yes,obviously,parrot,book,1 -yes,sure,original,book,1 -thank_you,i'm thankful for my answer,parrot,bye,2 -goodbye,good seeing you,original,bye,2 -goodbye,for now,parrot,bye,2 -yes,yep,original,book,1 -calendar_update,take care of my doctor appointment on march 30th,parrot,resched,5 -goodbye,regards,original,bye,2 -date,which date will be my wedding in three days?,parrot,avail,0 -how_busy,tell me the time to wait for a seat at the factory?,parrot,avail,0 -yes,correct,original,book,1 -date,what's the year?,parrot,avail,0 -goodbye,the talk was nice,lambada,bye,2 -goodbye,goodbye ai,parrot,bye,2 -goodbye,goodnight,original,bye,2 -meeting_schedule,when's my meeting with the infrastructure team?,parrot,avail,0 -goodbye,i'll go,parrot,bye,2 -schedule_meeting,i want to know if there are meeting rooms available between 900 and 1130,parrot,book,1 -no,nothing,parrot,cancel,3 -goodbye,i wanted to talk with you again,parrot,bye,2 -no,negative,original,cancel,3 -goodbye,sayonara,original,bye,2 -how_busy,why is this place busy at lunch?,parrot,avail,0 -greeting,salutations!,original,greet,4 -no,erroneous,parrot,cancel,3 -yes,definitely yes,parrot,book,1 -greeting,wassup,original,greet,4 -goodbye,my friend,parrot,bye,2 -no,erroneous,parrot,cancel,3 -goodbye,adios,original,bye,2 -reminder_update,make me a reminder,lambada,resched,5 -yes,okay,original,book,1 -goodbye,bye!,original,bye,2 -how_busy,list the typical wait times in this restaurant?,parrot,avail,0 -calendar,is there anything on my calendar for january 9?,parrot,avail,0 -no,that's so wrong,parrot,cancel,3 -greeting,"hello, good day",lambada,greet,4 -no,nothing good,parrot,cancel,3 -thank_you,thanks,original,bye,2 -no,that is no,lambada,cancel,3 -no,negative definitely,parrot,cancel,3 -yes,TRUE,original,book,1 -calendar,are there calendar entries for the 8th?,parrot,avail,0 -goodbye,nice seeing you bye,original,bye,2 -how_busy,how long will it be at macaroni grill,lambada,avail,0 -no,but it's false,parrot,cancel,3 -schedule_meeting,please reserve a meeting room for wednesday at noon,lambada,book,1 -no,nope,original,cancel,3 -no,negatory,original,cancel,3 -thank_you,i am thankful,lambada,bye,2 -thank_you,i am grateful,lambada,bye,2 -no,not that,original,cancel,3 -thank_you,thanks so much!,original,bye,2 -goodbye,tootles,original,bye,2 -goodbye,i have to run,parrot,bye,2 -goodbye,great talk,lambada,bye,2 -goodbye,bye bye,lambada,bye,2 -goodbye,goodbye,original,bye,2 -yes,positive,original,book,1 -goodbye,sign off,parrot,bye,2 -goodbye,fairwell,original,bye,2 -goodbye,afterward,parrot,bye,2 -date,tell me the day?,parrot,avail,0 -calendar,can you tell me what's in my calendar for march 31?,parrot,avail,0 -greeting,what's up?,parrot,greet,4 -goodbye,peace out!,original,bye,2 -yes,yup,original,book,1 -goodbye,sayonara,original,bye,2 -goodbye,farewell!,original,bye,2 -thank_you,you've helped,parrot,bye,2 -yes,is a real statement,parrot,book,1 -yes,yay,lambada,book,1 -no,false sure,parrot,cancel,3 -goodbye,bye-bye,original,bye,2 -yes,approved,original,book,1 -goodbye,im leaving,parrot,bye,2 -thank_you,the best,parrot,bye,2 -no,please disagree,lambada,cancel,3 -no,but that's not factual,parrot,cancel,3 -goodbye,have fun?,lambada,bye,2 -no,no!,original,cancel,3 -yes,thats right,original,book,1 -yes,what's the truth of my statement,lambada,book,1 -thank_you,the best,parrot,bye,2 -reminder_update,a new reminder,parrot,resched,5 -calendar,do i have any scheduled events on my calendar?,lambada,avail,0 -greeting,give me the information,parrot,greet,4 -yes,uh-huh,original,book,1 -yes,good,parrot,book,1 -greeting,bonjour,original,greet,4 -yes,accepted,original,book,1 -thank_you,thanks so much ai,original,bye,2 -greeting,how you're doing?,parrot,greet,4 -no,absolutely not,original,cancel,3 -greeting,how goes it,original,greet,4 -thank_you,you did a good job,lambada,bye,2 -no,no that isn't it,original,cancel,3 -calendar,is my meeting with frank on my schedule?,parrot,avail,0 -goodbye,adios,original,bye,2 -goodbye,good-bye,parrot,bye,2 -how_busy,how long will it take to be seated at olive garden,lambada,avail,0 -reminder_update,let me remember,parrot,resched,5 -goodbye,good see you,lambada,bye,2 -meeting_schedule,when is my next meeting with lucas?,parrot,avail,0 -date,where is tomorrow's date?,parrot,avail,0 -yes,i guess,parrot,book,1 -date,tell me what day tomorrow will be?,lambada,avail,0 -yes,indeed,original,book,1 -thank_you,i'm grateful,original,bye,2 -no,negating,parrot,cancel,3 -no,negative,original,cancel,3 -goodbye,i'm outta here!,original,bye,2 -greeting,how's ayi doing?,parrot,greet,4 -yes,right,parrot,book,1 -yes,ya,original,book,1 -no,naw,parrot,cancel,3 -reminder_update,remember to call bob tomorrow,parrot,resched,5 -no,invalid,original,cancel,3 -thank_you,very grateful,parrot,bye,2 -thank_you,"oh, thanks",original,bye,2 -yes,TRUE,lambada,book,1 -goodbye,later,original,bye,2 -goodbye,good talk,parrot,bye,2 -yes,"yes, please",parrot,book,1 -how_busy,will the wait be long at olive garden at 6 pm,lambada,avail,0 -date,what date tomorrow?,parrot,avail,0 -no,no?,parrot,cancel,3 -greeting,are you feeling okay?,original,greet,4 -calendar,tell me what's on my calendar for this week?,parrot,avail,0 -thank_you,good looking out,original,bye,2 -goodbye,signing off,original,bye,2 -yes,yep,original,book,1 -no,absolutely not,original,cancel,3 -goodbye,tootles,original,bye,2 -meeting_schedule,are there meetings between 10 and 4pm today?,parrot,avail,0 -no,certainly false,parrot,cancel,3 -goodbye,regards,original,bye,2 -goodbye,you're done,parrot,bye,2 -goodbye,nice to see you again,original,bye,2 -yes,confirmed,original,book,1 -date,which day is it today,original,avail,0 -thank_you,thank you for my prompt reply,parrot,bye,2 -date,what's the date,original,avail,0 -how_busy,how long will it take to get a table at the moroni's,parrot,avail,0 -how_busy,how busy is that cheesecake factory?,parrot,avail,0 -no,that's erroneous,parrot,cancel,3 -goodbye,will leave now,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -no,it is indeed false,lambada,cancel,3 -calendar,show me the restaurants on my calendar for march 8?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -goodbye,a good conversation,parrot,bye,2 -goodbye,signing off,original,bye,2 -schedule_meeting,how do i set up meetings?,parrot,book,1 -yes,that's right,original,book,1 -greeting,hiya!,original,greet,4 -no,that is overwhelmingly negative,lambada,cancel,3 -thank_you,it pleased me,parrot,bye,2 -meeting_schedule,when do i get to meet roger??,parrot,avail,0 -thank_you,you helped me,parrot,bye,2 -how_busy,how much time will i wait to be seated at italian restaurant,lambada,avail,0 -calendar,tell me if i have any events on my calendar for march 16th?,lambada,avail,0 -calendar,what's the tuesday calendar?,parrot,avail,0 -no,that is untrue,original,cancel,3 -greeting,salutations!,original,greet,4 -thank_you,thanks for the help!,original,bye,2 -greeting,welcome,parrot,greet,4 -no,that's not acceptable,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -yes,a fact,parrot,book,1 -no,it's a mistake,parrot,cancel,3 -no,false sure,parrot,cancel,3 -greeting,are you feeling okay?,original,greet,4 -yes,i know,parrot,book,1 -goodbye,later,original,bye,2 -goodbye,thank you for talking to me,lambada,bye,2 -no,negatory,original,cancel,3 -yes,yep,original,book,1 -no,please disagree,lambada,cancel,3 -calendar_update,create a calendar reminder for march 6th,parrot,resched,5 -greeting,well hello,original,greet,4 -yes,facts,original,book,1 -goodbye,later gator!,original,bye,2 -greeting,"hi, ai",original,greet,4 -no,erroneous,parrot,cancel,3 -no,negative,original,cancel,3 -no,that's not the way,parrot,cancel,3 -greeting,how ya been,original,greet,4 -thank_you,i thank you,original,bye,2 -goodbye,buhbye,original,bye,2 -thank_you,thank you for my answer,lambada,bye,2 -how_busy,"around nine, is ambrosio busy",original,avail,0 -goodbye,bye,original,bye,2 -calendar,what do you plan for tomorrow?,parrot,avail,0 -greeting,yo,original,greet,4 -no,you are wrong,original,cancel,3 -no,negation,parrot,cancel,3 -thank_you,i'm thankful,original,bye,2 -goodbye,"nice talk, goodbye",lambada,bye,2 -goodbye,later goodbye,parrot,bye,2 -no,that's so false,parrot,cancel,3 -goodbye,adios!,original,bye,2 -greeting,tell me what's going on in irvine?,parrot,greet,4 -greeting,hey hey!,original,greet,4 -greeting,what's new,lambada,greet,4 -thank_you,your assistance is appreciated,parrot,bye,2 -how_busy,tell me how long i have to wait at pizza ranch,parrot,avail,0 -yes,indeed,original,book,1 -no,yes the answer is false,parrot,cancel,3 -how_busy,how long will i have to wait in the pizza factory?,parrot,avail,0 -yes,ya,original,book,1 -goodbye,adios ai,original,bye,2 -yes,positive,parrot,book,1 -thank_you,thanks for my reply,parrot,bye,2 -goodbye,good see you,lambada,bye,2 -goodbye,as regards,parrot,bye,2 -yes,roger that,original,book,1 -how_busy,how busy will red robin be?,parrot,avail,0 -meeting_schedule,are there meetings between noon and 1?,parrot,avail,0 -yes,definitely,original,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,hey hey!,original,greet,4 -yes,not false,parrot,book,1 -date,i want to know the date today,parrot,avail,0 -yes,that's correct,original,book,1 -goodbye,bye now,original,bye,2 -goodbye,afterward,parrot,bye,2 -goodbye,ai goodbye,original,bye,2 -goodbye,peace,original,bye,2 -greeting,heyo,original,greet,4 -greeting,how's my life?,parrot,greet,4 -no,negating,parrot,cancel,3 -meeting_schedule,list the meetings today?,parrot,avail,0 -how_busy,is kaya busy around 5 p?,parrot,avail,0 -yes,affirmative,original,book,1 -greeting,what's happening?,parrot,greet,4 -greeting,how ya doing,lambada,greet,4 -schedule_meeting,reserve a place for a meeting at 11am on wednesday,parrot,book,1 -date,what year?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -yes,i'm sure this was done,parrot,book,1 -date,what's the current date of,parrot,avail,0 -thank_you,"thanks, that's helpful",original,bye,2 -yes,great,original,book,1 -no,it's so negative,parrot,cancel,3 -no,not good,parrot,cancel,3 -date,what year is it?,original,avail,0 -yes,absolutely,original,book,1 -yes,yeap,original,book,1 -calendar_update,delete the birthday party date from my calendar,parrot,resched,5 -thank_you,"thanks, that's helpful",original,bye,2 -no,ill pass,original,cancel,3 -meeting_schedule,when is my meeting with infrastructure?,original,avail,0 -greeting,are you okay??,parrot,greet,4 -goodbye,tootles?,parrot,bye,2 -yes,its a for sure true,original,book,1 -greeting,hi there,original,greet,4 -yes,TRUE,original,book,1 -greeting,hola!,original,greet,4 -greeting,well hello,original,greet,4 -goodbye,bye,original,bye,2 -yes,huh,parrot,book,1 -greeting,what is new?,parrot,greet,4 -goodbye,fairwell,original,bye,2 -yes,exactly right,original,book,1 -greeting,hello ai,parrot,greet,4 -yes,that's a yes from me,original,book,1 -no,that's bad,parrot,cancel,3 -yes,yay,lambada,book,1 -cancel_reservation,you can cancel my reservation for five in the loft please,parrot,cancel,3 -greeting,whats new?,parrot,greet,4 -reminder_update,please remember to pay my bills,parrot,resched,5 -yes,certainly,parrot,book,1 -goodbye,fairwell?,parrot,bye,2 -how_busy,canadian grill at 6pm?,parrot,avail,0 -yes,my answer is yes,parrot,book,1 -greeting,salutation,parrot,greet,4 -greeting,aho,parrot,greet,4 -goodbye,take it easy!,original,bye,2 -yes,approved,original,book,1 -no,is it a lie?,parrot,cancel,3 -yes,it's indeed true,original,book,1 -how_busy,does olive garden get crowded at dinner time?,parrot,avail,0 -no,nay,original,cancel,3 -yes,TRUE,lambada,book,1 -goodbye,see ya,original,bye,2 -yes,10-Apr,original,book,1 -yes,all right,parrot,book,1 -reminder_update,set a reminder,original,resched,5 -goodbye,bye bye,lambada,bye,2 -no,naw,original,cancel,3 -goodbye,regards,original,bye,2 -how_busy,how busy is imano at 5 pm?,parrot,avail,0 -no,no,lambada,cancel,3 -yes,very true,original,book,1 -goodbye,peace out,original,bye,2 -greeting,give me the details,parrot,greet,4 -no,no way!,original,cancel,3 -how_busy,is michel busy at three?,parrot,avail,0 -how_busy,how busy is the cheesecake factory at 5,lambada,avail,0 -no,negating,parrot,cancel,3 -yes,agreed,original,book,1 -reminder_update,add a reminder,lambada,resched,5 -no,naw,original,cancel,3 -yes,approved,original,book,1 -thank_you,i appreciate it,original,bye,2 -yes,positive,original,book,1 -goodbye,bye bye,lambada,bye,2 -goodbye,goodbyes,parrot,bye,2 -thank_you,very grateful,parrot,bye,2 -goodbye,im leaving,parrot,bye,2 -date,today?,parrot,avail,0 -greeting,ahoy hoy,original,greet,4 -yes,"yes, please",parrot,book,1 -yes,TRUE,lambada,book,1 -yes,this is true,lambada,book,1 -yes,oh-huh,parrot,book,1 -yes,it seems true,parrot,book,1 -meeting_schedule,what's my meeting today?,parrot,avail,0 -thank_you,thank you for that answer,lambada,bye,2 -no,no please,parrot,cancel,3 -greeting,hey it's up,lambada,greet,4 -greeting,hello hello good morning,parrot,greet,4 -calendar,do i have any appointments scheduled for april 19th?,lambada,avail,0 -greeting,whats up?,parrot,greet,4 -goodbye,bye bye,lambada,bye,2 -goodbye,nice talk,lambada,bye,2 -yes,correct,original,book,1 -no,no,lambada,cancel,3 -thank_you,appreciated,original,bye,2 -goodbye,signing off,original,bye,2 -yes,that is not false,original,book,1 -no,it's not necessarily true,parrot,cancel,3 -yes,uh-huh,original,book,1 -no,no good,original,cancel,3 -yes,please let's do that,parrot,book,1 -schedule_meeting,i need a meeting for john at 9 am,parrot,book,1 -no,no!,original,cancel,3 -yes,obviously,parrot,book,1 -greeting,whats up,original,greet,4 -goodbye,goodbye ai,parrot,bye,2 -no,it's overwhelmingly wrong,parrot,cancel,3 -goodbye,i finished talking with you,parrot,bye,2 -goodbye,adios!,original,bye,2 -how_busy,what's the average wait time for mr joe at 7?,parrot,avail,0 -goodbye,i'll leave,parrot,bye,2 -yes,good yes,lambada,book,1 -no,no way,original,cancel,3 -yes,yep,original,book,1 -yes,that is correct,original,book,1 -reminder_update,set a reminder,original,resched,5 -greeting,how's the ai?,parrot,greet,4 -no,it's very wrong,parrot,cancel,3 -goodbye,peace,original,bye,2 -calendar,do i have any appointments set up on march 10th?,lambada,avail,0 -yes,perfect,parrot,book,1 -cancel_reservation,can i cancel my reservations?,original,cancel,3 -goodbye,later,original,bye,2 -goodbye,peace,original,bye,2 -no,that's not the answer,parrot,cancel,3 -yes,yep,original,book,1 -goodbye,adios!,original,bye,2 -goodbye,greetings,parrot,bye,2 -no,FALSE,lambada,cancel,3 -no,it's not a good sign,parrot,cancel,3 -yes,yep,original,book,1 -thank_you,i'm thankful,original,bye,2 -date,which date today?,parrot,avail,0 -date,what day of the month are we in?,lambada,avail,0 -no,sorry but not true,parrot,cancel,3 -goodbye,good luck,lambada,bye,2 -calendar,check my calendar,parrot,avail,0 -greeting,whats up,original,greet,4 -how_busy,is ihop busy around 6?,lambada,avail,0 -greeting,how're you?,parrot,greet,4 -greeting,so how's it going?,parrot,greet,4 -goodbye,", goodbye",lambada,bye,2 -thank_you,good job thanks,parrot,bye,2 -goodbye,you're done,parrot,bye,2 -goodbye,bye!,original,bye,2 -yes,oh-huh,parrot,book,1 -calendar_update,remove all calendar entries on april 13,parrot,resched,5 -thank_you,you're special thanks,parrot,bye,2 -thank_you,you answered,parrot,bye,2 -no,is very false,parrot,cancel,3 -yes,"yes, that's confirmed",original,book,1 -thank_you,thanks for the response,lambada,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -yes,confirmed,original,book,1 -how_busy,does the restaurant get crowded around 7pm?,lambada,avail,0 -thank_you,you've tried,parrot,bye,2 -thank_you,thanks again,original,bye,2 -yes,sure thing,original,book,1 -greeting,whats up?,parrot,greet,4 -thank_you,you gave me that,parrot,bye,2 -date,today?,parrot,avail,0 -yes,TRUE,lambada,book,1 -goodbye,signing off,original,bye,2 -yes,sure thing,original,book,1 -how_busy,tell me how busy mr joes is at 8pm?,parrot,avail,0 -yes,ya,original,book,1 -how_busy,how long does the restaurant wait for me before i go?,parrot,avail,0 -greeting,hello ai,parrot,greet,4 -no,that's a no,lambada,cancel,3 -calendar,have i put an item on the calendar for the dog's vaccinations?,lambada,avail,0 -yes,i guess yes,parrot,book,1 -goodbye,just relax,parrot,bye,2 -thank_you,i appreciate that,original,bye,2 -how_busy,tell me how busy the macaroni grill will be around 8 p,parrot,avail,0 -thank_you,well done,parrot,bye,2 -no,it's overwhelmingly negative,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -calendar,show me what's going on for march 12th?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -no,that's actually a lie,parrot,cancel,3 -thank_you,thanks for the information,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -yes,"correct, that's true",original,book,1 -yes,certainly,parrot,book,1 -thank_you,thankyou,parrot,bye,2 -yes,yeah,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,yup,original,book,1 -thank_you,"nice, excellent!",original,bye,2 -how_busy,does the restaurant get crowded around 7 o'clock?,parrot,avail,0 -no,that's definitely false,original,cancel,3 -goodbye,good luck later,parrot,bye,2 -goodbye,ai goodbye,original,bye,2 -goodbye,later,original,bye,2 -no,that's incorrect!,original,cancel,3 -greeting,what's happening,original,greet,4 -no,not really,original,cancel,3 -goodbye,bye!,original,bye,2 -calendar_update,eliminate all events on my calendar on friday,parrot,resched,5 -yes,seems true,parrot,book,1 -no,no is the answer,original,cancel,3 -date,today?,parrot,avail,0 -goodbye,bye,original,bye,2 -yes,correct,original,book,1 -yes,you got it,parrot,book,1 -greeting,hey fellow,parrot,greet,4 -yes,affirmative,original,book,1 -how_busy,how long will the wait to be seated at red robin at 5,lambada,avail,0 -greeting,hiya!,original,greet,4 -greeting,how ife treated you?,parrot,greet,4 -greeting,"hello, ai",original,greet,4 -thank_you,thanks for coming,parrot,bye,2 -thank_you,i thank you,original,bye,2 -no,ill pass,original,cancel,3 -no,no that isn't it,original,cancel,3 -goodbye,peace,original,bye,2 -greeting,wassup,original,greet,4 -reminder_update,i need to be notified of maintenance reminders,parrot,resched,5 -greeting,heller,original,greet,4 -date,the date is tomorrow,parrot,avail,0 -schedule_meeting,i want to set up a meeting with john at 6 pm,parrot,book,1 -no,definitely not,original,cancel,3 -greeting,salutations!,original,greet,4 -yes,positive,parrot,book,1 -yes,"yes, please",parrot,book,1 -yes,it's definitely positive,parrot,book,1 -cancel_reservation,cancel my dinner reservation,lambada,cancel,3 -goodbye,buhbye,original,bye,2 -greeting,hola!,original,greet,4 -no,not really,original,cancel,3 -goodbye,please talk to me,parrot,bye,2 -greeting,how goes it,original,greet,4 -how_busy,how long will it take for me to sit at the red lobster,parrot,avail,0 -meeting_schedule,are there meetings from 3 to 5?,parrot,avail,0 -greeting,hey there,original,greet,4 -goodbye,nice talking to you,parrot,bye,2 -goodbye,see you later alligator,original,bye,2 -date,current date,original,avail,0 -how_busy,how long is the wait at chili's,lambada,avail,0 -cancel_reservation,im not gonna need the dinner reservation,original,cancel,3 -yes,i know that's what i'm getting,parrot,book,1 -thank_you,thankyou,parrot,bye,2 -yes,okay,original,book,1 -no,the information is not correct,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -how_busy,does this place have a long wait?,parrot,avail,0 -no,but it's false,parrot,cancel,3 -yes,absolutely!,original,book,1 -no,that's incorrect!,original,cancel,3 -yes,indeed,original,book,1 -goodbye,goodbye no problem,parrot,bye,2 -no,no please,parrot,cancel,3 -reminder_update,remember to check the steak,parrot,resched,5 -goodbye,"thanks, bye",original,bye,2 -greeting,hey there!,original,greet,4 -goodbye,farewell,original,bye,2 -no,hell nah,original,cancel,3 -greeting,well hello,original,greet,4 -no,nothing,parrot,cancel,3 -greeting,hi there,original,greet,4 -how_busy,how long does the pizza shop wait to serve dinner,parrot,avail,0 -how_busy,what's the average wait time for grilled cheese from 6 to 8,parrot,avail,0 -no,no,lambada,cancel,3 -yes,thats right,original,book,1 -reminder_update,please add a reminder,lambada,resched,5 -no,so that's no,parrot,cancel,3 -goodbye,good see you,lambada,bye,2 -no,it turns out to be a lie,parrot,cancel,3 -no,it's false,parrot,cancel,3 -no,thats a negative,original,cancel,3 -greeting,"hello, ai",original,greet,4 -yes,"yes, please",original,book,1 -meeting_schedule,do i have any meetings today between 9:30 and 10:30?,original,avail,0 -yes,positive,original,book,1 -yes,"yes, please",parrot,book,1 -greeting,what's happening,original,greet,4 -date,tell me what the date will be in five days?,parrot,avail,0 -how_busy,how busy is mishawaka,lambada,avail,0 -date,today?,parrot,avail,0 -greeting,"hi, ai",original,greet,4 -goodbye,i enjoyed our goodbye,parrot,bye,2 -greeting,ai how you're doing,lambada,greet,4 -thank_you,i'm really thankful,parrot,bye,2 -yes,that is accurate,original,book,1 -no,that's not factual,parrot,cancel,3 -yes,positive,original,book,1 -no,invalid,original,cancel,3 -no,it's a mistake,parrot,cancel,3 -goodbye,as regards,parrot,bye,2 -meeting_schedule,do you have meetings between 9 and 1030?,parrot,avail,0 -thank_you,thanks again,original,bye,2 -greeting,heyo,original,greet,4 -greeting,what's my day like?,parrot,greet,4 -how_busy,can the restaurant get crowded before dinner?,parrot,avail,0 -no,no please,parrot,cancel,3 -goodbye,catch you around,original,bye,2 -goodbye,"thanks, bye",original,bye,2 -yes,accepted,original,book,1 -greeting,have you felt?,parrot,greet,4 -thank_you,thanks again,original,bye,2 -goodbye,sayonara,original,bye,2 -no,you're not right,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -no,would be no?,parrot,cancel,3 -thank_you,really great!,original,bye,2 -date,where's tomorrow's date,parrot,avail,0 -yes,confirm,original,book,1 -greeting,welcome,parrot,greet,4 -yes,correct,original,book,1 -how_busy,what time should i wait in the restaurant?,parrot,avail,0 -no,it's not correct,parrot,cancel,3 -no,that's incorrect!,original,cancel,3 -how_busy,if i want to sit in applebee's restaurant how long will i have to wait,parrot,avail,0 -yes,okay,original,book,1 -goodbye,just relax,parrot,bye,2 -yes,oh-huh,parrot,book,1 -yes,yep,original,book,1 -meeting_schedule,do you know when nick meets me?,parrot,avail,0 -greeting,how's life?,parrot,greet,4 -thank_you,thanks please,original,bye,2 -calendar_update,can you remove an event from my calendar?,parrot,resched,5 -thank_you,many thank,original,bye,2 -goodbye,see you later!,original,bye,2 -how_busy,what's the wait time at applebee's??,parrot,avail,0 -yes,definitely yes,parrot,book,1 -date,i want to know what the next day is,parrot,avail,0 -how_busy,can i eat ohio beef for three hours?,parrot,avail,0 -meeting_schedule,are there any meetings i have?,parrot,avail,0 -yes,it seems true,parrot,book,1 -calendar,what's on january 1st?,parrot,avail,0 -goodbye,tootles,original,bye,2 -yes,correct,original,book,1 -reminder_update,add a note,parrot,resched,5 -yes,absolutely,original,book,1 -yes,i believe it's true,lambada,book,1 -goodbye,bye bye,lambada,bye,2 -no,there is no,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -reminder_update,is it possible to set a reminder to pay the bill?,parrot,resched,5 -no,no way!,original,cancel,3 -no,invalid,original,cancel,3 -schedule_meeting,how do i setup a meeting?,parrot,book,1 -thank_you,thanks for the reply,original,bye,2 -thank_you,well done,parrot,bye,2 -thank_you,thanks,original,bye,2 -calendar_update,please get rid of my prom event from march 25th?,parrot,resched,5 -greeting,ahoy there,lambada,greet,4 -no,nay,original,cancel,3 -no,not right so,parrot,cancel,3 -yes,say positive,parrot,book,1 -yes,"yes, please",parrot,book,1 -goodbye,time to say goodbye,parrot,bye,2 -no,it's a hard no from me,parrot,cancel,3 -how_busy,what time do you expect to wait for a table at chili's,parrot,avail,0 -thank_you,nice,parrot,bye,2 -greeting,aho,parrot,greet,4 -yes,not a false statement,parrot,book,1 -greeting,whats up,original,greet,4 -goodbye,good bye,original,bye,2 -yes,uh huh,original,book,1 -yes,correct,original,book,1 -how_busy,how busy will chili's be at 5:30,lambada,avail,0 -goodbye,goodbye soon,lambada,bye,2 -goodbye,regards,original,bye,2 -greeting,nice day,lambada,greet,4 -meeting_schedule,when do you have meetings today?,parrot,avail,0 -thank_you,thanks for trying,original,bye,2 -how_busy,how busy will impossibly close be at 7 pm,lambada,avail,0 -greeting,hello good morning,parrot,greet,4 -goodbye,peace,original,bye,2 -no,thats a negative,original,cancel,3 -yes,yep,original,book,1 -meeting_schedule,how many meetings do i have today between noon and 1?,parrot,avail,0 -date,please tell me what the date will be?,parrot,avail,0 -thank_you,you're a good help,parrot,bye,2 -reminder_update,keep checking the steak,parrot,resched,5 -thank_you,"awesome, thanks",original,bye,2 -no,naw,parrot,cancel,3 -thank_you,i appeciate it,parrot,bye,2 -greeting,please tell me how it's going,parrot,greet,4 -how_busy,the typical busy hour for chili is around 5,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -how_busy,has the wait been long?,parrot,avail,0 -greeting,is everything okay today?,parrot,greet,4 -thank_you,you've been great,parrot,bye,2 -goodbye,cya later,original,bye,2 -no,"please, no",original,cancel,3 -goodbye,for now,parrot,bye,2 -greeting,"hey, ai",original,greet,4 -yes,not false,parrot,book,1 -no,no please,parrot,cancel,3 -calendar_update,i don't want this event on my calendar anymore,parrot,resched,5 -how_busy,is it full in the mornings?,parrot,avail,0 -no,but we don't want it,parrot,cancel,3 -no,it seems wrong,parrot,cancel,3 -thank_you,thanks for that,original,bye,2 -greeting,how are you doing?,parrot,greet,4 -goodbye,good night,original,bye,2 -greeting,how is my ai doing,original,greet,4 -date,what's the date of that?,parrot,avail,0 -no,negatory?,parrot,cancel,3 -no,not happening,original,cancel,3 -date,what would the date be 5 days from today?,original,avail,0 -yes,"yeah, that's it",lambada,book,1 -no,negatory?,parrot,cancel,3 -yes,that's a clear yes,parrot,book,1 -yes,i know,parrot,book,1 -no,no way!,original,cancel,3 -thank_you,merci beaucoup,original,bye,2 -schedule_meeting,are there rooms available between 5 and 10 pm?,parrot,book,1 -greeting,hi,original,greet,4 -how_busy,how busy is the cheesecake factory at 6 o'clock,parrot,avail,0 -no,not right,parrot,cancel,3 -greeting,aloha,original,greet,4 -greeting,ahoy there,lambada,greet,4 -greeting,what's up with you,original,greet,4 -greeting,hi there alexa,original,greet,4 -no,it's overwhelmingly negative,parrot,cancel,3 -schedule_meeting,what's the procedure to set up a meeting,lambada,book,1 -thank_you,youre a doll,original,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -date,please tell me what date it is today,original,avail,0 -goodbye,bye bye,lambada,bye,2 -goodbye,this conversation was very pleasant,parrot,bye,2 -yes,ok,original,book,1 -meeting_schedule,what time is it for my meeting with steve?,parrot,avail,0 -thank_you,you helped,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,later then,lambada,bye,2 -how_busy,what's the typical time to be seated at this place?,parrot,avail,0 -calendar,what do i have planned on my calendar for next sunday?,original,avail,0 -greeting,hi what's up,original,greet,4 -yes,that's a clear yes,parrot,book,1 -yes,exactly right,original,book,1 -yes,just right,parrot,book,1 -yes,facts,original,book,1 -goodbye,ai goodbye,original,bye,2 -no,FALSE,original,cancel,3 -yes,accept,parrot,book,1 -goodbye,nice talk,lambada,bye,2 -date,tell me the date?,original,avail,0 -yes,yay,lambada,book,1 -yes,right,parrot,book,1 -yes,certainly true,parrot,book,1 -cancel_reservation,i booked chris at tony's please cancel it,parrot,cancel,3 -date,today what date?,parrot,avail,0 -calendar_update,can you cancel improv class from my calendar for may 7th?,original,resched,5 -no,naw,parrot,cancel,3 -how_busy,how busy is chili's at 9:15pm,lambada,avail,0 -how_busy,how long will it take for this restaurant to be crowded at 5,lambada,avail,0 -greeting,what's up with you,original,greet,4 -no,negation,parrot,cancel,3 -date,what day?,parrot,avail,0 -yes,definitely,original,book,1 -yes,affirmitive,original,book,1 -yes,"yeah, that's right",original,book,1 -date,what day of the week is it?,original,avail,0 -thank_you,i am very grateful,original,bye,2 -greeting,good morning what are you doing,parrot,greet,4 -calendar,what's on my calendar for today,lambada,avail,0 -cancel_reservation,repeal the dinner reservation,original,cancel,3 -goodbye,bye bye,lambada,bye,2 -goodbye,i'm saying goodbye now,original,bye,2 -goodbye,goodbye,original,bye,2 -greeting,good day,original,greet,4 -cancel_reservation,cancel the table i reserved for tonight,lambada,cancel,3 -no,nope not it,original,cancel,3 -goodbye,adios!,original,bye,2 -no,that is false,original,cancel,3 -yes,that's correct,original,book,1 -date,which date today?,parrot,avail,0 -calendar,what's happening on march 15th,lambada,avail,0 -goodbye,fairwell?,parrot,bye,2 -thank_you,"nice, excellent!",original,bye,2 -yes,right,parrot,book,1 -greeting,how's the ayi?,parrot,greet,4 -yes,very true,original,book,1 -no,no?,parrot,cancel,3 -no,nay,original,cancel,3 -goodbye,and tell me bye?,parrot,bye,2 -no,FALSE,original,cancel,3 -no,that's so negative,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -cancel_reservation,please cancel the red robin reservation for 4,parrot,cancel,3 -cancel_reservation,cancell my reservation for tomorrow at the steakhouse,parrot,cancel,3 -greeting,hello ai,parrot,greet,4 -no,nay,original,cancel,3 -no,not really,original,cancel,3 -goodbye,goodbye then,parrot,bye,2 -greeting,what's up?,parrot,greet,4 -how_busy,what happens when i get to work at 5 o'clock?,lambada,avail,0 -goodbye,buhbye,original,bye,2 -meeting_schedule,is my meeting scheduled?,parrot,avail,0 -date,what's it like now?,parrot,avail,0 -yes,"yep, that's right",original,book,1 -no,no no thanks,parrot,cancel,3 -thank_you,really great!,original,bye,2 -greeting,are you okay??,parrot,greet,4 -calendar_update,remove my lunch with jeff from my calendar for may 3,parrot,resched,5 -yes,affirmitive,original,book,1 -thank_you,thanks for the payment,parrot,bye,2 -yes,that's correct,original,book,1 -greeting,aloha,original,greet,4 -no,not correct,parrot,cancel,3 -calendar,do you have any appointments on my calendar for the 29th?,parrot,avail,0 -no,not right now,original,cancel,3 -greeting,"wake up, ai",original,greet,4 -yes,i guess,parrot,book,1 -thank_you,thanks for helping,original,bye,2 -calendar,'check my calendar for saturday,parrot,avail,0 -yes,"yes, you got it",original,book,1 -calendar_update,add a wedding to my calendar on 1 march,parrot,resched,5 -how_busy,how busy is the place at five,lambada,avail,0 -goodbye,wonderful conversation,lambada,bye,2 -thank_you,okay thanks,original,bye,2 -thank_you,my sincere thanks,parrot,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -no,"please, no",original,cancel,3 -goodbye,adios,original,bye,2 -how_busy,how long will the wait be for dinner at olive garden,lambada,avail,0 -yes,yep,original,book,1 -no,that's erroneous,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -goodbye,sayonara,original,bye,2 -reminder_update,you know something?,parrot,resched,5 -reminder_update,set a reminder to pay my rent tomorrow at 6pm,parrot,resched,5 -no,negatory,original,cancel,3 -greeting,aloha,original,greet,4 -greeting,hi what's going on,parrot,greet,4 -yes,uh huh,original,book,1 -yes,i'm going to tell you tes,parrot,book,1 -greeting,whats up?,parrot,greet,4 -reminder_update,remind me of something,parrot,resched,5 -greeting,ahoy hoy,original,greet,4 -goodbye,goodbye!,original,bye,2 -thank_you,"oh, thanks",original,bye,2 -how_busy,how busy is the pto is at 5:00,lambada,avail,0 -yes,you are correct,original,book,1 -goodbye,good-bye,parrot,bye,2 -date,a year?,parrot,avail,0 -no,that is false,original,cancel,3 -greeting,how you are?,parrot,greet,4 -goodbye,goodnight,original,bye,2 -thank_you,and i thank you,parrot,bye,2 -greeting,what's my current situation like?,parrot,greet,4 -yes,say positive,parrot,book,1 -thank_you,many thank,original,bye,2 -thank_you,thankyou,parrot,bye,2 -goodbye,was nice to talk to you,parrot,bye,2 -goodbye,goodbye,original,bye,2 -date,what month today?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -no,i'm afraid that's not the case,parrot,cancel,3 -thank_you,okay thank you,parrot,bye,2 -goodbye,my way,parrot,bye,2 -yes,you got it,parrot,book,1 -meeting_schedule,i need to know if i have meetings with mark today,parrot,avail,0 -no,nope that's not it,original,cancel,3 -no,that's wrong,original,cancel,3 -no,so that's no,parrot,cancel,3 -greeting,how was my day?,parrot,greet,4 -greeting,salutations!,original,greet,4 -yes,definitely,original,book,1 -greeting,"hello, ai",original,greet,4 -yes,my answer is yes,parrot,book,1 -calendar,what's the schedule of events for march 4 2019?,parrot,avail,0 -greeting,yo,original,greet,4 -goodbye,i'm leaving,parrot,bye,2 -yes,correct,original,book,1 -goodbye,good luck,lambada,bye,2 -no,this isn't true,parrot,cancel,3 -greeting,how is everything going?,parrot,greet,4 -cancel_reservation,can you cancel the reservation at the scallops bar?,parrot,cancel,3 -reminder_update,add a reminder to get me to grocery shopping,parrot,resched,5 -greeting,hey what's up?,parrot,greet,4 -goodbye,adios,original,bye,2 -no,naw,parrot,cancel,3 -date,what date tomorrow?,parrot,avail,0 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -yes,positive,parrot,book,1 -date,tell me the date?,original,avail,0 -goodbye,thanks goodbye,parrot,bye,2 -no,that's untrue,parrot,cancel,3 -goodbye,great talk,lambada,bye,2 -thank_you,"awesome, thanks",original,bye,2 -greeting,hi how are you,original,greet,4 -how_busy,how busy this restaurant is?,parrot,avail,0 -goodbye,"nice talk, goodbye",lambada,bye,2 -goodbye,i'm leaving,parrot,bye,2 -greeting,hey hey!,original,greet,4 -goodbye,adios!,original,bye,2 -date,what is today?,original,avail,0 -no,negating,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -thank_you,i appreciate that answer!,original,bye,2 -goodbye,afterward,parrot,bye,2 -date,give me the date,original,avail,0 -how_busy,can you tell me how busy olive garden will be at 6 pm?,lambada,avail,0 -greeting,bonjour,original,greet,4 -yes,it's positive,parrot,book,1 -goodbye,thanks goodbye,parrot,bye,2 -no,that's negative,parrot,cancel,3 -thank_you,you're the best!,original,bye,2 -yes,approved,original,book,1 -no,sure it's wrong,parrot,cancel,3 -no,nothing good,parrot,cancel,3 -no,negative definitely,parrot,cancel,3 -thank_you,i appeciate it,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -yes,"yes, that's true",lambada,book,1 -goodbye,great talk,lambada,bye,2 -how_busy,what is the wait time for a texas restaurant today?,lambada,avail,0 -no,not good,parrot,cancel,3 -meeting_schedule,is my meeting scheduled?,parrot,avail,0 -yes,it makes sense,parrot,book,1 -no,FALSE,lambada,cancel,3 -calendar,can you let me know if i have events on my calendar for saturday?,parrot,avail,0 -yes,uh-huh,original,book,1 -meeting_schedule,are there meetings between 6 and 9 o'clock?,parrot,avail,0 -yes,positive,original,book,1 -yes,that's right,original,book,1 -greeting,how's it hanging?,parrot,greet,4 -how_busy,how long will the wait be when i go to the olive garden,parrot,avail,0 -reminder_update,make a reminder to give me a pet food deposit,lambada,resched,5 -greeting,salutations,parrot,greet,4 -goodbye,buhbye,original,bye,2 -yes,confirmed,original,book,1 -goodbye,im leaving,parrot,bye,2 -no,it's not true,parrot,cancel,3 -no,naw,original,cancel,3 -no,it's negative,parrot,cancel,3 -no,naw,original,cancel,3 -goodbye,peace out!,original,bye,2 -no,that's inaccurate,original,cancel,3 -thank_you,appreciate it,original,bye,2 -meeting_schedule,can you give me the schedule of my meetings today?,lambada,avail,0 -reminder_update,please remember something,parrot,resched,5 -goodbye,tootles?,parrot,bye,2 -meeting_schedule,let me know how many meeting i am scheduled for today,lambada,avail,0 -no,negative sure,parrot,cancel,3 -yes,definitely,original,book,1 -cancel_reservation,i no longer need the table at dinner,lambada,cancel,3 -how_busy,please check the wait time at chili's for a meal,parrot,avail,0 -yes,perfect,parrot,book,1 -cancel_reservation,delete my dinner reservation,parrot,cancel,3 -yes,"yes, that's it",original,book,1 -no,nope,original,cancel,3 -thank_you,youre a doll,original,bye,2 -yes,huh huh,parrot,book,1 -goodbye,peace out!,original,bye,2 -thank_you,you did it,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -yes,that's a fact,parrot,book,1 -greeting,hey yai,lambada,greet,4 -greeting,yo,original,greet,4 -thank_you,you've tried,parrot,bye,2 -thank_you,nice,parrot,bye,2 -goodbye,adios!,original,bye,2 -date,now what's it like now?,parrot,avail,0 -greeting,hello siri,original,greet,4 -how_busy,how busy is the pizza place at 7?,parrot,avail,0 -greeting,hey hey!,original,greet,4 -yes,indeed,original,book,1 -greeting,"hi, ai",original,greet,4 -calendar_update,please add my calendar for the staff meeting scheduled for march 1 2019 at 10 am please,parrot,resched,5 -goodbye,tootles,original,bye,2 -no,ill pass,original,cancel,3 -thank_you,gracias,original,bye,2 -goodbye,sayonara,original,bye,2 -goodbye,see ya,lambada,bye,2 -goodbye,regards,original,bye,2 -goodbye,bye-bye,original,bye,2 -thank_you,okay thank you,parrot,bye,2 -yes,agreed,original,book,1 -no,the information is not correct,parrot,cancel,3 -goodbye,good talking to you,lambada,bye,2 -yes,"yep, that's right",original,book,1 -meeting_schedule,when should i meet jane?,parrot,avail,0 -how_busy,how long do i have to wait at red lobster,lambada,avail,0 -how_busy,is mr joe's steakhouse crowded?,parrot,avail,0 -date,current day,parrot,avail,0 -goodbye,goodbye,original,bye,2 -how_busy,how long will it take to be seated at the restaurant,lambada,avail,0 -reminder_update,please create a reminder,parrot,resched,5 -greeting,"how are you doing, ai",original,greet,4 -no,negatory,original,cancel,3 -thank_you,i'm happy you've helped me,parrot,bye,2 -greeting,you're all right?,parrot,greet,4 -goodbye,farewell!,original,bye,2 -yes,i guess yes,parrot,book,1 -thank_you,i appreciate the help,original,bye,2 -no,nope,original,cancel,3 -calendar_update,make sure my events are set for march 20th,lambada,resched,5 -yes,that statement is really correct,lambada,book,1 -greeting,how's everything?,parrot,greet,4 -thank_you,you've been great,parrot,bye,2 -how_busy,how long will it take to have a burger in this restaurant?,parrot,avail,0 -no,negatory?,parrot,cancel,3 -yes,certainly,parrot,book,1 -thank_you,my gratitude,parrot,bye,2 -how_busy,how busy will the olive garden be at 5pm?,parrot,avail,0 -meeting_schedule,list meetings on calendar for today,original,avail,0 -yes,that's true,original,book,1 -yes,certainly true,parrot,book,1 -yes,"yes, that's confirmed",original,book,1 -no,"no, it's not",lambada,cancel,3 -yes,ya,original,book,1 -greeting,salutations!,original,greet,4 -no,negatory?,parrot,cancel,3 -goodbye,come on soon,parrot,bye,2 -date,is tomorrow's date?,parrot,avail,0 -goodbye,goodbye goodbye,parrot,bye,2 -no,i think that's false,original,cancel,3 -how_busy,how long will i have to wait before i go to olive garden?,parrot,avail,0 -yes,positive,original,book,1 -thank_you,i appreciate the assistance,original,bye,2 -yes,that statement was correct,original,book,1 -greeting,hey bs,lambada,greet,4 -yes,that is right,original,book,1 -yes,say yes,lambada,book,1 -thank_you,i'm very grateful,parrot,bye,2 -yes,accepted,original,book,1 -greeting,whats up,original,greet,4 -no,that's incorrect!,original,cancel,3 -how_busy,why is the olive garden so busy at five?,parrot,avail,0 -meeting_schedule,when's my meeting today?,parrot,avail,0 -calendar,can you check my calendar for march 8?,parrot,avail,0 -yes,positive,original,book,1 -how_busy,tell me how busy mr joe is at 9?,parrot,avail,0 -how_busy,how long will the wait at this pizza shop be,lambada,avail,0 -goodbye,it's over,parrot,bye,2 -yes,all right,parrot,book,1 -yes,yup,original,book,1 -no,naw,parrot,cancel,3 -yes,i'll vote for you,parrot,book,1 -yes,sure,original,book,1 -goodbye,see ya,lambada,bye,2 -thank_you,again thanks,parrot,bye,2 -date,tell me the date of the day?,parrot,avail,0 -yes,seems true,parrot,book,1 -calendar_update,please delete a certain meeting,parrot,resched,5 -yes,it's true for sure,parrot,book,1 -yes,i agree,original,book,1 -yes,i'm going to tell you tes,parrot,book,1 -goodbye,tootles,original,bye,2 -goodbye,goodbye!,original,bye,2 -goodbye,take care then,parrot,bye,2 -thank_you,thanks for the assist,original,bye,2 -goodbye,tootles?,parrot,bye,2 -greeting,how're you?,parrot,greet,4 -no,nope,original,cancel,3 -yes,sure,original,book,1 -greeting,wake up ai,parrot,greet,4 -yes,huh,parrot,book,1 -goodbye,the talk was nice,lambada,bye,2 -yes,just right,parrot,book,1 -no,no no thanks,parrot,cancel,3 -meeting_schedule,do i have any meetings with kelly?,lambada,avail,0 -greeting,hey bs,lambada,greet,4 -yes,definitely,original,book,1 -date,what's today,original,avail,0 -how_busy,what's the current wait time at cheerios?,parrot,avail,0 -goodbye,im leaving,parrot,bye,2 -greeting,hello,original,greet,4 -goodbye,"nice talk, goodbye",lambada,bye,2 -no,the information is not true,parrot,cancel,3 -calendar,you have to go to school on a calendar,parrot,avail,0 -thank_you,that's all i need,parrot,bye,2 -thank_you,merci beaucoup,original,bye,2 -goodbye,farewell!,original,bye,2 -greeting,what's happening,original,greet,4 -goodbye,later!,original,bye,2 -yes,positive,original,book,1 -date,today?,parrot,avail,0 -date,a year?,parrot,avail,0 -greeting,heyo,original,greet,4 -no,no no thanks,parrot,cancel,3 -goodbye,adios!,original,bye,2 -goodbye,see ya,original,bye,2 -no,certainly not true,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -yes,affirmative,original,book,1 -reminder_update,i want to remind you to be considerate of my plants,lambada,resched,5 -how_busy,what are waiting times at olive garden,parrot,avail,0 -no,naw,original,cancel,3 -yes,10-Apr,original,book,1 -thank_you,i'm grateful to you,original,bye,2 -yes,facts,original,book,1 -how_busy,how busy is jimmy at 5 pm?,parrot,avail,0 -date,tell me what the date is in 9 days,parrot,avail,0 -yes,yup,original,book,1 -date,in seven days?,parrot,avail,0 -date,current date,original,avail,0 -no,no,lambada,cancel,3 -date,is tomorrow's date?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -calendar_update,please stop lunch with steve on friday,parrot,resched,5 -goodbye,afterward,parrot,bye,2 -date,can you tell me the date tomorrow?,lambada,avail,0 -date,what are the words for tomorrow?,lambada,avail,0 -schedule_meeting,schedule a meeting with saul at noon,parrot,book,1 -calendar,what's tuesday's calendar?,parrot,avail,0 -goodbye,later!,original,bye,2 -no,no thanks,original,cancel,3 -yes,definitely,original,book,1 -yes,all right,parrot,book,1 -no,no?,parrot,cancel,3 -yes,i say yes,lambada,book,1 -goodbye,go easy,parrot,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -goodbye,see ya,original,bye,2 -calendar,is there anything planned for march 2?,parrot,avail,0 -thank_you,thank you for my vacation,lambada,bye,2 -goodbye,thanks goodbye,parrot,bye,2 -yes,agreed,original,book,1 -thank_you,thanks so much for doing it,parrot,bye,2 -yes,"yeah, that's right",original,book,1 -thank_you,thanks again!,original,bye,2 -no,is it a lie,parrot,cancel,3 -how_busy,how long will it take to be seated at the grocery?,parrot,avail,0 -yes,"yes, please",original,book,1 -yes,"yes, please",parrot,book,1 -yes,"yep, that's right",original,book,1 -thank_you,much obliged,original,bye,2 -date,and what's my day today?,parrot,avail,0 -no,i am saying no,original,cancel,3 -yes,yay,lambada,book,1 -greeting,hey there,original,greet,4 -yes,certainly true,parrot,book,1 -thank_you,you've helped,parrot,bye,2 -no,that's so false,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -no,no it's not right,parrot,cancel,3 -greeting,how is life?,parrot,greet,4 -goodbye,tootles,original,bye,2 -how_busy,show me how busy the restaurant is at dinner?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -schedule_meeting,set up a meeting,parrot,book,1 -goodbye,goodnight,original,bye,2 -yes,certainly,parrot,book,1 -yes,affirmitive,original,book,1 -no,no good,original,cancel,3 -meeting_schedule,when's the meeting?,parrot,avail,0 -how_busy,how long will the wait be at the cheese cake factory,lambada,avail,0 -how_busy,wait how long in rancho alamo,parrot,avail,0 -yes,good,parrot,book,1 -goodbye,see ya,lambada,bye,2 -how_busy,how busy is mishawaka?,parrot,avail,0 -goodbye,goodbye for now,parrot,bye,2 -yes,it is true,original,book,1 -yes,perfect,parrot,book,1 -greeting,"hello, hello, hello",lambada,greet,4 -thank_you,youre a doll,original,bye,2 -reminder_update,please remind me,parrot,resched,5 -greeting,how's the ayi?,parrot,greet,4 -yes,correct,original,book,1 -greeting,hello there ai,original,greet,4 -no,naw,parrot,cancel,3 -yes,huh huh,parrot,book,1 -yes,confirm,original,book,1 -no,that isn't true,lambada,cancel,3 -how_busy,please tell me how long the wait at the cheesecake factory?,parrot,avail,0 -reminder_update,remind me to write a letter,lambada,resched,5 -greeting,welcome,parrot,greet,4 -schedule_meeting,is there a room available between 5 and 9?,parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,what's happening,original,greet,4 -goodbye,greetings,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -goodbye,have fun?,lambada,bye,2 -goodbye,i really enjoyed our goodbye,parrot,bye,2 -goodbye,good conversation,parrot,bye,2 -date,current day,parrot,avail,0 -yes,"yeah, that is true",lambada,book,1 -goodbye,i liked talking to you,parrot,bye,2 -goodbye,farewell!,original,bye,2 -how_busy,what time will i be allowed to sit in a restaurant at?,parrot,avail,0 -calendar_update,you can remove the dinner party from my calendar for jan 21 2019,parrot,resched,5 -no,i don't agree,parrot,cancel,3 -reminder_update,can you remind me to do something nice in new york?,parrot,resched,5 -yes,yeah yeah,lambada,book,1 -goodbye,goodbye,original,bye,2 -calendar,please read my calendar for march 2,parrot,avail,0 -yes,10-Apr,original,book,1 -goodbye,regards,original,bye,2 -no,negation,parrot,cancel,3 -goodbye,ai goodbye,original,bye,2 -greeting,what's happening?,parrot,greet,4 -greeting,hiya,original,greet,4 -thank_you,"thank you for that, i appreciate it",lambada,bye,2 -how_busy,i would like to know how busy cheesecake factory is at 4 pm,lambada,avail,0 -calendar_update,the day i'm supposed to be in hospital is changed,parrot,resched,5 -greeting,is everything okay today?,parrot,greet,4 -yes,definitely,original,book,1 -how_busy,what is the wait like at apple bees?,original,avail,0 -greeting,how's my doing?,parrot,greet,4 -yes,confirm,original,book,1 -goodbye,buhbye now,lambada,bye,2 -reminder_update,dont let me forget to do that thing later,original,resched,5 -no,"no, definitely not",original,cancel,3 -yes,accepted,original,book,1 -date,what date?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -yes,affirmative,original,book,1 -goodbye,goodbye!,original,bye,2 -thank_you,the best,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,i guess,parrot,book,1 -greeting,ahoy,lambada,greet,4 -yes,you got it,parrot,book,1 -greeting,ahoy,lambada,greet,4 -how_busy,can you tell me how busy chili is at 7?,parrot,avail,0 -how_busy,how busy is the restaurant at dinner time?,parrot,avail,0 -greeting,hiya!,original,greet,4 -greeting,how is my day going,lambada,greet,4 -yes,affirmative,original,book,1 -reminder_update,"new reminder, please",original,resched,5 -goodbye,i'm gone,parrot,bye,2 -greeting,how's my day been?,parrot,greet,4 -greeting,whats up with you,original,greet,4 -yes,say yes,lambada,book,1 -no,i'd rather not answer,parrot,cancel,3 -reminder_update,please remind me,parrot,resched,5 -thank_you,thank you for taking the time,parrot,bye,2 -thank_you,appreciated,original,bye,2 -meeting_schedule,what time i have to meet mr accountant?,original,avail,0 -yes,confirm,original,book,1 -no,nada,original,cancel,3 -goodbye,peace,original,bye,2 -schedule_meeting,is there any way to schedule a meeting with tom at 3pm?,parrot,book,1 -yes,exactly right,original,book,1 -greeting,ahoy,lambada,greet,4 -no,it is no,original,cancel,3 -no,not correct,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,naw,original,cancel,3 -thank_you,thanks,original,bye,2 -yes,yeap,original,book,1 -yes,perfect,parrot,book,1 -date,is it monday?,parrot,avail,0 -no,no,lambada,cancel,3 -goodbye,later goodbye,parrot,bye,2 -no,is my false statement?,parrot,cancel,3 -yes,ya,original,book,1 -greeting,hiya,original,greet,4 -goodbye,come on soon,parrot,bye,2 -greeting,how're you today?,parrot,greet,4 -no,it is false,original,cancel,3 -greeting,"hello, anyone there",original,greet,4 -how_busy,how long would it take to sit at applebees?,parrot,avail,0 -how_busy,how busy will the olive garden be around 8 pm,parrot,avail,0 -reminder_update,please remember to pay taxes,parrot,resched,5 -no,that's bad,parrot,cancel,3 -greeting,what's happening?,parrot,greet,4 -yes,right,parrot,book,1 -how_busy,how long does the wait at olive garden normally be at 6,lambada,avail,0 -greeting,heller,original,greet,4 -how_busy,is this restaurant crowded during dinner?,lambada,avail,0 -yes,i guess,parrot,book,1 -cancel_reservation,annull the reservation i made,parrot,cancel,3 -yes,definitely yes,parrot,book,1 -greeting,so how's everything going?,parrot,greet,4 -goodbye,talk later,original,bye,2 -no,definitely not,original,cancel,3 -goodbye,"great chat, take it easy",lambada,bye,2 -greeting,heller,original,greet,4 -greeting,what's new?,parrot,greet,4 -goodbye,regards,original,bye,2 -thank_you,thank you,original,bye,2 -no,but that's totally wrong,parrot,cancel,3 -greeting,hola,original,greet,4 -yes,let's do that,parrot,book,1 -yes,positive,original,book,1 -greeting,"hello, friend",original,greet,4 -cancel_reservation,carla doesn't want her olive garden reservation anymore,original,cancel,3 -no,negative,original,cancel,3 -goodbye,good luck,lambada,bye,2 -greeting,whats up?,parrot,greet,4 -goodbye,have a good day?,original,bye,2 -yes,agreed,original,book,1 -greeting,hey hey!,original,greet,4 -how_busy,what are the odds that i'll have a good time if i go to applebee's at 5pm?,parrot,avail,0 -no,not really,original,cancel,3 -greeting,how's everything?,parrot,greet,4 -no,FALSE,lambada,cancel,3 -calendar_update,how can i book a veterinarian appointment on march 1?,parrot,resched,5 -goodbye,peace,original,bye,2 -no,FALSE,lambada,cancel,3 -calendar,what events do i have going on on march 11th?,original,avail,0 -goodbye,on the road,parrot,bye,2 -no,negating,parrot,cancel,3 -yes,absolutely!,original,book,1 -goodbye,bye-bye,original,bye,2 -date,date tomorrow,parrot,avail,0 -date,what's the date for the next four days?,parrot,avail,0 -goodbye,later,original,bye,2 -how_busy,how long will it take to be seated at chili's,lambada,avail,0 -thank_you,nice,parrot,bye,2 -goodbye,bye!,original,bye,2 -how_busy,how long will it be before i'm seated at the lobster table?,parrot,avail,0 -how_busy,has the cheesecake factory been busy recently?,parrot,avail,0 -yes,all right,parrot,book,1 -thank_you,thankyou,parrot,bye,2 -how_busy,how long do i have to wait for imagus,parrot,avail,0 -calendar,can you list the events on my calendar for march 16?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -date,in 100 days?,parrot,avail,0 -yes,"yes, that's confirmed",original,book,1 -no,that is not true,original,cancel,3 -yes,you're right,original,book,1 -greeting,how is ai feeling?,parrot,greet,4 -yes,ya,original,book,1 -calendar_update,please remove my birthday party from my calendar,parrot,resched,5 -how_busy,how busy will honey be at the dinner table?,parrot,avail,0 -schedule_meeting,can i schedule a meeting?,parrot,book,1 -how_busy,how long will the wait be at the cheesecake factory,lambada,avail,0 -greeting,heller,original,greet,4 -how_busy,is the wait busy at cheesecake factory around 11?,lambada,avail,0 -thank_you,thanks again,original,bye,2 -yes,accept,parrot,book,1 -thank_you,you helped,parrot,bye,2 -yes,uh-huh,original,book,1 -how_busy,how busy is olive garden at 5:30,lambada,avail,0 -greeting,do you feel?,parrot,greet,4 -no,that's not right,original,cancel,3 -greeting,"hello, ai",original,greet,4 -how_busy,how long does the wait take at the ranchero,lambada,avail,0 -no,erroneous,parrot,cancel,3 -no,that can't be true,original,cancel,3 -calendar_update,remove all the events from my calendar on march 12th,parrot,resched,5 -date,in 7 days?,parrot,avail,0 -goodbye,very happy to talk to you,parrot,bye,2 -no,negative sure,parrot,cancel,3 -yes,yep,original,book,1 -calendar_update,"please remove dinner with sally from my calendar for march 18, 2019",lambada,resched,5 -yes,right,parrot,book,1 -calendar_update,remove the event from my calendar,lambada,resched,5 -thank_you,it's my debt,parrot,bye,2 -yes,affirmitive,original,book,1 -no,that's not it,parrot,cancel,3 -yes,uh-huh,original,book,1 -thank_you,"oh, thanks",original,bye,2 -thank_you,thank you,original,bye,2 -goodbye,peace,original,bye,2 -how_busy,what is that cheesecake factory like right now?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -meeting_schedule,are there meetings between 1-5?,parrot,avail,0 -no,is very false,parrot,cancel,3 -yes,confirm,original,book,1 -goodbye,fairwell?,parrot,bye,2 -thank_you,really great!,original,bye,2 -yes,yay,lambada,book,1 -yes,yay,lambada,book,1 -goodbye,see ya,lambada,bye,2 -no,and i say negative,parrot,cancel,3 -yes,great,original,book,1 -yes,definitely,original,book,1 -no,no!,original,cancel,3 -goodbye,chat to me later,parrot,bye,2 -schedule_meeting,a meeting with steve is needed at 3pm,parrot,book,1 -yes,that seems true,original,book,1 -no,negatory?,parrot,cancel,3 -no,that's not factual,parrot,cancel,3 -greeting,have you felt?,parrot,greet,4 -date,"in 4 days, what date will it be",original,avail,0 -yes,that's a fact,parrot,book,1 -yes,is true,parrot,book,1 -calendar_update,please take care of my doctor appointment for march 30th,parrot,resched,5 -goodbye,bye-bye,original,bye,2 -goodbye,"nice talk, goodbye",lambada,bye,2 -greeting,hey fellows,parrot,greet,4 -no,nada,original,cancel,3 -thank_you,gracias,original,bye,2 -schedule_meeting,how do i set up a meeting with you?,parrot,book,1 -no,nada,original,cancel,3 -date,tell me the year?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -yes,so it's checked,parrot,book,1 -no,that is false,original,cancel,3 -yes,okay,original,book,1 -no,invalid,original,cancel,3 -yes,yep,original,book,1 -calendar,is easter already on the calendar?,parrot,avail,0 -thank_you,thanks again,original,bye,2 -thank_you,you've tried,parrot,bye,2 -thank_you,thanks a million,original,bye,2 -yes,confirmed,original,book,1 -greeting,hi there,original,greet,4 -goodbye,fairwell,original,bye,2 -thank_you,thanks very much for your answer,parrot,bye,2 -no,but no it's not true,parrot,cancel,3 -schedule_meeting,are there meeting rooms available between 10-11?,original,book,1 -thank_you,i'm glad you helped,parrot,bye,2 -thank_you,thanks!,original,bye,2 -no,so that's no,parrot,cancel,3 -thank_you,i appeciate it,parrot,bye,2 -goodbye,im leaving goodbye,parrot,bye,2 -greeting,how's my feeling?,parrot,greet,4 -thank_you,nice,parrot,bye,2 -no,certainly not,original,cancel,3 -greeting,hello,original,greet,4 -no,it's a negative,parrot,cancel,3 -yes,obviously,parrot,book,1 -schedule_meeting,i must arrange a meeting with jane for 3pm,parrot,book,1 -how_busy,is the restaurant open between 11 and 5?,parrot,avail,0 -yes,sure thing,original,book,1 -goodbye,on the road,parrot,bye,2 -no,naw,original,cancel,3 -no,that's a lie,parrot,cancel,3 -thank_you,my gratitude,parrot,bye,2 -no,that is wrong,original,cancel,3 -yes,absolutely,original,book,1 -thank_you,i appreciate my help!,original,bye,2 -goodbye,good-bye,parrot,bye,2 -no,"no, that is inaccurate",original,cancel,3 -greeting,good evening,original,greet,4 -calendar,what day did i set on my calendar for the first day of school?,original,avail,0 -thank_you,thanks for all the help,parrot,bye,2 -goodbye,i'm out,parrot,bye,2 -no,"no, that can't be right",original,cancel,3 -goodbye,good-bye,parrot,bye,2 -yes,yup,original,book,1 -thank_you,i appreciate that answer!,original,bye,2 -thank_you,you answered,parrot,bye,2 -no,that is not true,original,cancel,3 -yes,do that?,original,book,1 -cancel_reservation,tonight i won't be at dinner,parrot,cancel,3 -how_busy,does the wait at igor's be long?,parrot,avail,0 -thank_you,thanks please,original,bye,2 -reminder_update,make a reminder to check my mail,parrot,resched,5 -no,that is not right,original,cancel,3 -no,erroneous,parrot,cancel,3 -yes,TRUE,original,book,1 -yes,agreed,original,book,1 -how_busy,how long will it take to get a table at the american steak house?,parrot,avail,0 -reminder_update,i want to set a reminder to look at this,lambada,resched,5 -goodbye,bye-bye,original,bye,2 -thank_you,my gratitude,parrot,bye,2 -yes,affirmative,original,book,1 -calendar,please update my schedule for march 1st?,parrot,avail,0 -greeting,hiya,original,greet,4 -goodbye,bye!,original,bye,2 -goodbye,sayonara,original,bye,2 -meeting_schedule,what's on my calendar?,parrot,avail,0 -yes,"yup, that's correct",lambada,book,1 -no,negative,original,cancel,3 -cancel_reservation,can you cancel the black cherry reservation?,parrot,cancel,3 -greeting,yo,original,greet,4 -greeting,bonjour,original,greet,4 -no,no longer valid,parrot,cancel,3 -goodbye,"i enjoyed our talk, goodbye",original,bye,2 -reminder_update,remind me to call tomorrow,lambada,resched,5 -meeting_schedule,wanna meet roger?,parrot,avail,0 -calendar_update,i'll meet steven on march 5,parrot,resched,5 -thank_you,very grateful,parrot,bye,2 -how_busy,is iman busy at 6pm?,parrot,avail,0 -goodbye,the conversation with you was very enjoyable,parrot,bye,2 -goodbye,take a break,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,ill pass,original,cancel,3 -goodbye,bye!,original,bye,2 -reminder_update,remind me,original,resched,5 -no,nothing good,parrot,cancel,3 -yes,i guess,parrot,book,1 -calendar_update,make sure the trip to the zoo is clear on my calendar,parrot,resched,5 -yes,it'd be great,parrot,book,1 -yes,"yup, that is true",lambada,book,1 -yes,"yes, this is true",original,book,1 -goodbye,we chatted well,parrot,bye,2 -date,i need to know tomorrow's date,original,avail,0 -date,give me today's date,original,avail,0 -thank_you,okay thanks,original,bye,2 -calendar_update,clear my calendar for march 15,parrot,resched,5 -goodbye,bye!,original,bye,2 -yes,of course,original,book,1 -greeting,what's happening?,parrot,greet,4 -reminder_update,make me a reminder to go see ryan,parrot,resched,5 -goodbye,fairwell,original,bye,2 -how_busy,how long is the wait time for a table at olive garden,lambada,avail,0 -yes,i'll say yes,parrot,book,1 -yes,correct,original,book,1 -no,it's false,parrot,cancel,3 -goodbye,peace out,original,bye,2 -no,naw,parrot,cancel,3 -no,not right,parrot,cancel,3 -greeting,yo,original,greet,4 -how_busy,what's the usual time to eat red lobster,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -no,no,lambada,cancel,3 -no,naw,original,cancel,3 -reminder_update,set a reminder for me,original,resched,5 -greeting,how's the ai?,parrot,greet,4 -greeting,how you are,original,greet,4 -goodbye,goodbye soon,lambada,bye,2 -schedule_meeting,how does scheduling work?,parrot,book,1 -no,i think that's not the answer,parrot,cancel,3 -goodbye,peace out,original,bye,2 -yes,i'm pretty sure it's true,parrot,book,1 -thank_you,it's my debt,parrot,bye,2 -yes,uh-huh,original,book,1 -yes,that is true,lambada,book,1 -yes,oh-huh,parrot,book,1 -goodbye,adios,original,bye,2 -goodbye,bye,original,bye,2 -how_busy,how long can i wait in the cheese cake factory?,parrot,avail,0 -thank_you,i really appreciate you,parrot,bye,2 -date,what date this month?,parrot,avail,0 -yes,"yup, that's true",original,book,1 -goodbye,bye bye,lambada,bye,2 -goodbye,goodnight,original,bye,2 -yes,it's indeed true,original,book,1 -goodbye,buhbye,original,bye,2 -calendar,what's the tuesday calendar like?,parrot,avail,0 -goodbye,maybe next time,parrot,bye,2 -goodbye,go easy,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -calendar,what's on january 1st?,parrot,avail,0 -date,can you tell me the day of the month or year?,parrot,avail,0 -yes,this is true,lambada,book,1 -no,so that's no,parrot,cancel,3 -how_busy,tell me how busy olive garden is at 8 pm?,lambada,avail,0 -greeting,"hello, friend",original,greet,4 -goodbye,fairwell,original,bye,2 -greeting,salutations!,original,greet,4 -yes,affirmitive,original,book,1 -date,what day?,parrot,avail,0 -yes,that appears true,original,book,1 -no,negatory?,parrot,cancel,3 -goodbye,i leave now,parrot,bye,2 -yes,yeah,original,book,1 -thank_you,"nice, excellent!",original,bye,2 -no,FALSE,lambada,cancel,3 -goodbye,as regards,parrot,bye,2 -goodbye,good call,parrot,bye,2 -goodbye,cya later,original,bye,2 -greeting,wassup,original,greet,4 -yes,it's positive,parrot,book,1 -yes,huh huh,parrot,book,1 -how_busy,how long will it be in the olive garden?,parrot,avail,0 -greeting,how's my feeling?,parrot,greet,4 -calendar_update,a doctor appointment on friday,parrot,resched,5 -reminder_update,remember to bring checkbook,parrot,resched,5 -meeting_schedule,show me the schedule of meetings?,parrot,avail,0 -goodbye,bye!,original,bye,2 -reminder_update,the cat needs neutering,parrot,resched,5 -goodbye,the talk was nice,lambada,bye,2 -how_busy,how busy is this place?,parrot,avail,0 -goodbye,good luck,lambada,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -yes,perfect,parrot,book,1 -thank_you,gracias,original,bye,2 -no,that's incorrect!,original,cancel,3 -cancel_reservation,cancell my reservation at red robin for joe,parrot,cancel,3 -how_busy,how long will i have to wait at noon?,parrot,avail,0 -greeting,yo how's it going,parrot,greet,4 -yes,yeah,original,book,1 -goodbye,regards,original,bye,2 -no,that is not right,original,cancel,3 -cancel_reservation,joe's reservation at zepher cancels,parrot,cancel,3 -no,don't like that no,parrot,cancel,3 -yes,10-Apr,original,book,1 -goodbye,good night,original,bye,2 -no,nada,original,cancel,3 -no,naw,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -date,what day?,parrot,avail,0 -date,what month today?,parrot,avail,0 -greeting,hello there,original,greet,4 -thank_you,many thanks,original,bye,2 -no,no!,original,cancel,3 -yes,certainly,parrot,book,1 -how_busy,can you tell me how long will it take to get a table at egg salad factory?,lambada,avail,0 -yes,perfect,parrot,book,1 -yes,exactly right,original,book,1 -goodbye,tootles?,parrot,bye,2 -how_busy,how busy will mac and cheese be at 5pm?,parrot,avail,0 -thank_you,thanks for the response,lambada,bye,2 -no,that's very wrong,parrot,cancel,3 -no,invalid,original,cancel,3 -calendar_update,i want to delete this date from my calendar,lambada,resched,5 -date,today is the date,parrot,avail,0 -how_busy,can i expect a long wait at the outback steak house?,parrot,avail,0 -how_busy,what is the table time at this restaurant?,lambada,avail,0 -yes,positive,parrot,book,1 -thank_you,i am grateful,lambada,bye,2 -no,the statement is not true,parrot,cancel,3 -greeting,what's my feeling?,parrot,greet,4 -thank_you,you answered my question,parrot,bye,2 -goodbye,later good luck,parrot,bye,2 -meeting_schedule,are there meetings between 2 and 5pm?,parrot,avail,0 -yes,it'd be great,parrot,book,1 -greeting,whats new,lambada,greet,4 -goodbye,later!,original,bye,2 -greeting,hiya,original,greet,4 -yes,yes that's correct,original,book,1 -no,not good idea,parrot,cancel,3 -thank_you,you're welcome,parrot,bye,2 -calendar,do i have appointments for april 1st?,parrot,avail,0 -no,not right,parrot,cancel,3 -thank_you,really great!,original,bye,2 -no,false for sure,original,cancel,3 -thank_you,i owe you,parrot,bye,2 -no,that's inaccurate,original,cancel,3 -greeting,salutations!,original,greet,4 -thank_you,that's a very helpful answer,parrot,bye,2 -date,a year?,parrot,avail,0 -thank_you,good job,lambada,bye,2 -greeting,hola,original,greet,4 -yes,ok,original,book,1 -schedule_meeting,reserve a meeting room for 5pm friday,parrot,book,1 -how_busy,how busy is the place at five?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -goodbye,adios!,original,bye,2 -calendar,can you tell me what the date on my calendar looks like?,parrot,avail,0 -yes,accept,parrot,book,1 -thank_you,you're a great help,parrot,bye,2 -goodbye,peace,original,bye,2 -date,what's today,original,avail,0 -no,that’s incorrect,original,cancel,3 -cancel_reservation,is it possible to cancel my reservation?,parrot,cancel,3 -schedule_meeting,i need to go through a process to set up a meeting,parrot,book,1 -goodbye,"thanks, bye",original,bye,2 -reminder_update,can we set a reminder?,parrot,resched,5 -goodbye,peace,original,bye,2 -yes,yeah,original,book,1 -date,what's the full date after today?,parrot,avail,0 -how_busy,chili's busy at 7 pm?,parrot,avail,0 -thank_you,"thanks, that's helpful",original,bye,2 -no,that's a no,lambada,cancel,3 -schedule_meeting,i'd like to have a meeting with john smith tomorrow at 1 pm,parrot,book,1 -goodbye,a good talk,parrot,bye,2 -yes,confirm,original,book,1 -no,this is false,parrot,cancel,3 -calendar,tell me what's in my calendar for tomorrow?,parrot,avail,0 -yes,TRUE,original,book,1 -meeting_schedule,can i meet with kim today?,parrot,avail,0 -yes,"yes, that is it",original,book,1 -no,that is sooo bad,lambada,cancel,3 -thank_you,i'm pleased with my answer,parrot,bye,2 -goodbye,goodbye ai,parrot,bye,2 -calendar_update,i must add my wedding to my calendar for march 5,parrot,resched,5 -no,FALSE,original,cancel,3 -how_busy,tell me the time it will take to get a table at texas roadhouse,parrot,avail,0 -thank_you,"awesome, thanks",original,bye,2 -thank_you,"awesome, thanks",original,bye,2 -thank_you,okay thank you,parrot,bye,2 -date,what date?,parrot,avail,0 -greeting,what's up with you?,parrot,greet,4 -goodbye,adios!,original,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -calendar,what's on my calendar for april 15th?,parrot,avail,0 -how_busy,how long will i wait for the red lobster,parrot,avail,0 -yes,thats right,original,book,1 -yes,certainly true,parrot,book,1 -greeting,salutations,parrot,greet,4 -goodbye,bye now,original,bye,2 -goodbye,talk later,original,bye,2 -calendar,what's happening on may 3rd?,parrot,avail,0 -greeting,what's going on,original,greet,4 -greeting,hey there fellow,original,greet,4 -greeting,how's it going for you?,parrot,greet,4 -thank_you,appreciated,original,bye,2 -yes,right,parrot,book,1 -thank_you,"good job, thanks",lambada,bye,2 -goodbye,later!,original,bye,2 -how_busy,at 5pm is there a lot of activity in jax?,parrot,avail,0 -date,i need a date,parrot,avail,0 -yes,TRUE,lambada,book,1 -no,that's so negative,parrot,cancel,3 -yes,it's true,original,book,1 -how_busy,how busy is chinese restaurant at 3 pm,lambada,avail,0 -no,no!,original,cancel,3 -no,no thank you,original,cancel,3 -how_busy,how busy is cheesy's at 5:30,lambada,avail,0 -goodbye,peace out!,original,bye,2 -goodbye,adios,original,bye,2 -how_busy,would you say that red lobster is pretty good at noon,parrot,avail,0 -cancel_reservation,cancel my reservation at red robin for joe?,parrot,cancel,3 -goodbye,ai goodbye,original,bye,2 -no,FALSE,lambada,cancel,3 -goodbye,farewell!,original,bye,2 -goodbye,just relax,parrot,bye,2 -thank_you,thank you kindly,original,bye,2 -greeting,how's life,original,greet,4 -goodbye,bye bye,lambada,bye,2 -greeting,why hello?,original,greet,4 -no,that would be incorrect,lambada,cancel,3 -greeting,how's life?,parrot,greet,4 -no,negative,original,cancel,3 -calendar,tell me my calendar events?,lambada,avail,0 -meeting_schedule,what's my meeting today?,parrot,avail,0 -goodbye,bye for now,original,bye,2 -yes,"yes, please",parrot,book,1 -date,what is month of the year?,parrot,avail,0 -yes,huh,parrot,book,1 -yes,that also makes sense,parrot,book,1 -date,current date,original,avail,0 -thank_you,you answered,parrot,bye,2 -goodbye,bye,original,bye,2 -reminder_update,create reminders to wash dishes,parrot,resched,5 -goodbye,"later, goodbye",lambada,bye,2 -no,that's a lie,parrot,cancel,3 -yes,yay,lambada,book,1 -greeting,aloha,original,greet,4 -how_busy,how long will it take to get seated in olive gardens?,parrot,avail,0 -no,the information is false,parrot,cancel,3 -meeting_schedule,which meetings do i have today?,parrot,avail,0 -yes,accept,parrot,book,1 -how_busy,how long will it take to wait at noon,parrot,avail,0 -cancel_reservation,i want to cancel a reservation at pizza hut under the name of leia roberts,parrot,cancel,3 -yes,affirmative,original,book,1 -goodbye,see ya,lambada,bye,2 -no,that's not factual,parrot,cancel,3 -greeting,how do you feel,original,greet,4 -goodbye,tootles,original,bye,2 -thank_you,thanks a lot,original,bye,2 -goodbye,peace,original,bye,2 -no,FALSE,original,cancel,3 -no,negatory,original,cancel,3 -goodbye,bye,original,bye,2 -yes,definitely yes,parrot,book,1 -greeting,hello,original,greet,4 -goodbye,it's over,parrot,bye,2 -greeting,hey hey!,original,greet,4 -cancel_reservation,call my reservation canceled,lambada,cancel,3 -reminder_update,can you remind me?,parrot,resched,5 -date,date please,original,avail,0 -no,that's a wrong answer?,parrot,cancel,3 -how_busy,i want to know how busy ihop is at 8pm,parrot,avail,0 -greeting,good evening,original,greet,4 -no,it's a no,original,cancel,3 -greeting,hey fellows,parrot,greet,4 -thank_you,thanks!,original,bye,2 -yes,is true,parrot,book,1 -date,do you have a date?,parrot,avail,0 -meeting_schedule,is the gang coming together today?,parrot,avail,0 -yes,you are yes,lambada,book,1 -no,no,lambada,cancel,3 -goodbye,bye now,original,bye,2 -schedule_meeting,is it possible to schedule a meeting with cole for 4pm?,parrot,book,1 -greeting,hey there,original,greet,4 -greeting,hi what's up?,parrot,greet,4 -no,not necessarily true,parrot,cancel,3 -goodbye,lovely conversation,parrot,bye,2 -thank_you,again thanks,parrot,bye,2 -no,nope,original,cancel,3 -goodbye,"bye-bye, my friend",lambada,bye,2 -no,so that's no,parrot,cancel,3 -no,that's incorrect!,original,cancel,3 -no,i'll pass,original,cancel,3 -goodbye,farewell,original,bye,2 -goodbye,bye bye now,lambada,bye,2 -goodbye,good luck later,parrot,bye,2 -yes,facts,original,book,1 -no,that's incorrect!,original,cancel,3 -how_busy,when is the foodie place crowded in the morning?,lambada,avail,0 -cancel_reservation,just cancel my reservation,lambada,cancel,3 -goodbye,nice chat today,lambada,bye,2 -greeting,how's life?,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -goodbye,the pleasure to talk to you,parrot,bye,2 -goodbye,nice to see you,original,bye,2 -greeting,what's new,lambada,greet,4 -meeting_schedule,when is my meeting with mark?,parrot,avail,0 -how_busy,how busy are applebees around lunch?,parrot,avail,0 -goodbye,maybe i'll see you,parrot,bye,2 -no,naw,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -date,what's the date,original,avail,0 -no,"no, that's not correct",lambada,cancel,3 -reminder_update,set a reminder to clean out the basement,lambada,resched,5 -greeting,hola!,original,greet,4 -date,in five days?,parrot,avail,0 -reminder_update,please remind me again,parrot,resched,5 -how_busy,how long will it take for me to sit in the red lobster restaurant?,parrot,avail,0 -yes,ya,original,book,1 -date,please date,parrot,avail,0 -greeting,how's idy?,parrot,greet,4 -how_busy,does coffee work at 7?,parrot,avail,0 -greeting,whats new,lambada,greet,4 -yes,confirm,original,book,1 -yes,indeed,original,book,1 -greeting,hey yai,lambada,greet,4 -date,in seven days?,parrot,avail,0 -no,naw,original,cancel,3 -goodbye,"great talk, take it easy",original,bye,2 -goodbye,bye,original,bye,2 -greeting,how're you?,parrot,greet,4 -yes,correct,original,book,1 -goodbye,bye now,original,bye,2 -how_busy,how busy is pittsburgh cheesecake at 8?,parrot,avail,0 -no,thanks no,parrot,cancel,3 -meeting_schedule,"tell me my scheduled meetings for today only, please?",original,avail,0 -no,that's erroneous,parrot,cancel,3 -greeting,how you feel?,parrot,greet,4 -yes,10-Apr,original,book,1 -schedule_meeting,i'm trying to find a new meeting,parrot,book,1 -greeting,ahoy,lambada,greet,4 -goodbye,good conversation,parrot,bye,2 -greeting,wassup,original,greet,4 -no,negative,original,cancel,3 -date,what month is it today??,parrot,avail,0 -goodbye,fairwell,original,bye,2 -yes,yay,lambada,book,1 -calendar,i've got to know what's on my calendar for friday,parrot,avail,0 -no,we don't want that,parrot,cancel,3 -how_busy,does the wait at the olive garden have to be long?,parrot,avail,0 -yes,great,original,book,1 -no,invalid,original,cancel,3 -yes,oh-huh,parrot,book,1 -goodbye,go easy,parrot,bye,2 -no,FALSE,original,cancel,3 -yes,it's a fact,parrot,book,1 -how_busy,can you tell me how busy zilker's is at 7pm?,lambada,avail,0 -no,that's completely false,original,cancel,3 -yes,ok,original,book,1 -greeting,how is idy?,parrot,greet,4 -thank_you,thanks!,original,bye,2 -calendar,how many events are scheduled for march 15th,lambada,avail,0 -yes,obviously,parrot,book,1 -goodbye,this conversation was pleasant,parrot,bye,2 -no,no thanks,original,cancel,3 -date,date please,original,avail,0 -goodbye,good chatting with you,lambada,bye,2 -greeting,hola!,original,greet,4 -greeting,have you felt?,parrot,greet,4 -reminder_update,please add a reminder,lambada,resched,5 -yes,yeah yeah,lambada,book,1 -goodbye,"bye-bye, my friend",lambada,bye,2 -date,what will be the date in 500 days?,parrot,avail,0 -goodbye,goodbye no problem,parrot,bye,2 -greeting,ahoy there,lambada,greet,4 -goodbye,send a goodbye,lambada,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -date,what will be tomorrow?,parrot,avail,0 -schedule_meeting,do you have a meeting room between 6 and 7?,parrot,book,1 -goodbye,i'll leave,parrot,bye,2 -no,invalid,original,cancel,3 -yes,great,original,book,1 -how_busy,is mcdonalds busy?,parrot,avail,0 -how_busy,how long after 7pm,parrot,avail,0 -greeting,hi what's up,original,greet,4 -goodbye,bye bye,lambada,bye,2 -thank_you,okay thank you,parrot,bye,2 -greeting,hi what's up,original,greet,4 -yes,perfect,parrot,book,1 -no,i disagree with that,lambada,cancel,3 -no,that's wrong,original,cancel,3 -no,invalid,original,cancel,3 -no,erroneous,parrot,cancel,3 -thank_you,i thank you,original,bye,2 -greeting,welcome,parrot,greet,4 -yes,uh-huh,original,book,1 -how_busy,how busy is macaroni and cheese right now?,parrot,avail,0 -goodbye,tootles,original,bye,2 -no,FALSE,lambada,cancel,3 -goodbye,sayonara,original,bye,2 -how_busy,can you tell me when the cheesecake factory is busy?,parrot,avail,0 -yes,correct,original,book,1 -yes,yeap,original,book,1 -yes,sure,original,book,1 -no,it's completely false,parrot,cancel,3 -yes,definitely yes,parrot,book,1 -calendar_update,i need buy a birthday gift for sue taken off my calendar it is on monday or tuesday last week,original,resched,5 -greeting,hello,original,greet,4 -goodbye,i'll go,parrot,bye,2 -yes,great,original,book,1 -date,what date is tomorrow?,original,avail,0 -yes,indeed,original,book,1 -date,what year?,parrot,avail,0 -date,today?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -meeting_schedule,is mr ceo waiting me now?,original,avail,0 -no,please disagree,lambada,cancel,3 -thank_you,really great!,original,bye,2 -greeting,bonjour,original,greet,4 -greeting,heller,original,greet,4 -thank_you,thank you,original,bye,2 -how_busy,how busy outback steakhouse will be at 7pm?,parrot,avail,0 -reminder_update,make me remember,parrot,resched,5 -yes,agreed,original,book,1 -greeting,good morning,parrot,greet,4 -how_busy,how busy will chili be at 11 pm?,parrot,avail,0 -yes,certainly,parrot,book,1 -goodbye,bye-bye,original,bye,2 -cancel_reservation,i booked chris at tony's please cancel it,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -greeting,how're you today?,parrot,greet,4 -date,what date is that?,parrot,avail,0 -greeting,hey there!,original,greet,4 -thank_you,again thanks,parrot,bye,2 -schedule_meeting,the meeting must be scheduled,parrot,book,1 -goodbye,good luck,lambada,bye,2 -no,i think that's false,original,cancel,3 -how_busy,is macy's busy around 7?,parrot,avail,0 -cancel_reservation,can you cancel the reservation i made for dinner?,lambada,cancel,3 -date,let me know what day is next,parrot,avail,0 -greeting,hey,original,greet,4 -greeting,how you're doing?,parrot,greet,4 -reminder_update,remind me to do laundry,parrot,resched,5 -thank_you,thank you for helping,parrot,bye,2 -goodbye,adios!,original,bye,2 -calendar_update,i want to add the farm trip to my calendar for friday,parrot,resched,5 -goodbye,great chat goodbye,lambada,bye,2 -goodbye,you're done,parrot,bye,2 -no,negatory?,parrot,cancel,3 -date,which date is it,lambada,avail,0 -goodbye,goodbye!,original,bye,2 -greeting,how's life?,parrot,greet,4 -date,tell me what day it's?,parrot,avail,0 -goodbye,say goodbye,parrot,bye,2 -yes,approved,original,book,1 -how_busy,what is the average wait time for a meal at gustos?,lambada,avail,0 -no,nope,original,cancel,3 -calendar,check my calendar,parrot,avail,0 -goodbye,see you later,original,bye,2 -thank_you,thanks for everything you said,lambada,bye,2 -no,nada,original,cancel,3 -thank_you,nice,parrot,bye,2 -no,naw,original,cancel,3 -greeting,hola!,original,greet,4 -no,negative sure,parrot,cancel,3 -yes,it's definitely positive,parrot,book,1 -no,negation,parrot,cancel,3 -reminder_update,remind me to write down the meal,parrot,resched,5 -yes,it's a fact,parrot,book,1 -goodbye,"nice talk, goodbye",lambada,bye,2 -no,thanks no,parrot,cancel,3 -no,negative,original,cancel,3 -goodbye,farewell!,original,bye,2 -goodbye,adios,original,bye,2 -cancel_reservation,the reservation i created,parrot,cancel,3 -yes,that's right,original,book,1 -schedule_meeting,i need to schedule a meeting with ken for 9am,lambada,book,1 -greeting,hola!,original,greet,4 -greeting,hey yai,lambada,greet,4 -cancel_reservation,i want to cancel my reservation for dinner,parrot,cancel,3 -goodbye,my pleasure to talk to you,parrot,bye,2 -date,what year is tomorrow,parrot,avail,0 -thank_you,thanks for that information,lambada,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -calendar_update,delete the appointment i've scheduled,parrot,resched,5 -how_busy,can you tell me how busy the restaurant will be in advance?,lambada,avail,0 -no,no don't do that,parrot,cancel,3 -yes,very true,original,book,1 -greeting,bonjour,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -yes,yes you are,original,book,1 -reminder_update,the cat needs neutering,parrot,resched,5 -greeting,what i feel?,parrot,greet,4 -greeting,hey there,original,greet,4 -greeting,how's everything going?,parrot,greet,4 -greeting,salutations!,original,greet,4 -goodbye,"later, goodbye",lambada,bye,2 -greeting,hi there,original,greet,4 -greeting,hey how's ot,lambada,greet,4 -greeting,hello,original,greet,4 -yes,approved,original,book,1 -yes,confirmed,original,book,1 -how_busy,how long the restaurant will be before noon?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -yes,great,original,book,1 -greeting,how's otc?,parrot,greet,4 -goodbye,nice chat today,lambada,bye,2 -thank_you,thanks for responding,parrot,bye,2 -greeting,hey,original,greet,4 -how_busy,when is chili busy?,parrot,avail,0 -how_busy,how long does it take to get a seat in the restaurant?,parrot,avail,0 -how_busy,how long will i have to wait for a table in olive garden,parrot,avail,0 -yes,that's correct,original,book,1 -greeting,get up ai,parrot,greet,4 -calendar,did i put something on my calendar to get my car fixed?,parrot,avail,0 -yes,huh,parrot,book,1 -reminder_update,maybe a reminder?,parrot,resched,5 -goodbye,see ya!,original,bye,2 -yes,confirmed,original,book,1 -how_busy,what's the wait time at macy's?,parrot,avail,0 -no,not right?,parrot,cancel,3 -greeting,"hello, what's up",original,greet,4 -greeting,hiya,original,greet,4 -thank_you,so grateful,parrot,bye,2 -thank_you,again thanks,parrot,bye,2 -goodbye,goodbyes soon,parrot,bye,2 -yes,oh-huh,parrot,book,1 -thank_you,youre a doll,original,bye,2 -no,not a good idea,parrot,cancel,3 -yes,ya,original,book,1 -greeting,bonjour,original,greet,4 -no,nope,original,cancel,3 -yes,say positive,parrot,book,1 -greeting,hiya!,original,greet,4 -yes,TRUE,original,book,1 -no,naw,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -schedule_meeting,please schedule a meeting with tom,parrot,book,1 -greeting,how does ayi get on?,parrot,greet,4 -yes,"yes, please",parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,merci beaucoup,original,bye,2 -greeting,i am going to tell you how it's going,lambada,greet,4 -date,what's today?,parrot,avail,0 -no,nope,original,cancel,3 -thank_you,good job with making a good effort,lambada,bye,2 -greeting,salutations,parrot,greet,4 -no,that’s actually wrong,original,cancel,3 -schedule_meeting,are there meeting rooms between 9 and 10?,parrot,book,1 -date,in 14 days?,parrot,avail,0 -goodbye,adios,original,bye,2 -goodbye,afterward,parrot,bye,2 -yes,TRUE,lambada,book,1 -yes,approved,original,book,1 -yes,absolutely,original,book,1 -goodbye,have fun?,lambada,bye,2 -goodbye,goodbye bye,parrot,bye,2 -how_busy,can you tell me how busy olive garden is around noon?,lambada,avail,0 -yes,yeah yeah,lambada,book,1 -no,hell nah,original,cancel,3 -no,no,lambada,cancel,3 -goodbye,thanks bye bye!,original,bye,2 -yes,it's true,original,book,1 -calendar,check my calendar for tuesday's appointment,parrot,avail,0 -greeting,"hello, how are you doing",original,greet,4 -greeting,get up ai,parrot,greet,4 -yes,my answer is yes,parrot,book,1 -greeting,aloha,original,greet,4 -meeting_schedule,have any meetings between 10 and 4?,parrot,avail,0 -no,negation,parrot,cancel,3 -goodbye,farewell!,original,bye,2 -thank_you,you're welcome,parrot,bye,2 -greeting,hola,original,greet,4 -greeting,hiya!,original,greet,4 -reminder_update,add a reminder to clean the fridge,lambada,resched,5 -no,that's not it,parrot,cancel,3 -goodbye,bye!,original,bye,2 -how_busy,how busy is imanas?,parrot,avail,0 -no,thats a negative,original,cancel,3 -greeting,hello there!,original,greet,4 -yes,approved,original,book,1 -no,that's false,original,cancel,3 -yes,uh huh,original,book,1 -no,say negative,parrot,cancel,3 -how_busy,is there a long wait at pizza fountain?,lambada,avail,0 -greeting,hi,original,greet,4 -goodbye,peace,original,bye,2 -cancel_reservation,i don't need my reservation for 5 at the loft please cancel it,original,cancel,3 -calendar,what's on my calendar for march 11?,parrot,avail,0 -goodbye,nice to talk with you,parrot,bye,2 -yes,10-Apr,original,book,1 -greeting,how're you?,parrot,greet,4 -greeting,"hi, ai",original,greet,4 -yes,right,parrot,book,1 -no,what isn't true?,parrot,cancel,3 -greeting,why hello?,original,greet,4 -yes,"correct, that's true",original,book,1 -yes,accepted,original,book,1 -calendar_update,can you remove my trip to the zoo from my calendar on march 1?,parrot,resched,5 -no,that's very wrong,parrot,cancel,3 -how_busy,how long before dinner,parrot,avail,0 -greeting,how's life for you today?,parrot,greet,4 -yes,certainly true,parrot,book,1 -yes,"yes, please",parrot,book,1 -goodbye,i'm going,parrot,bye,2 -no,not right,parrot,cancel,3 -goodbye,glad to talk again,parrot,bye,2 -meeting_schedule,are there meetings on the calendar for today?,parrot,avail,0 -how_busy,how long would it take to wait for chili?,parrot,avail,0 -greeting,hey fellow,parrot,greet,4 -no,no,lambada,cancel,3 -thank_you,thanks again!,original,bye,2 -yes,affirmitive,original,book,1 -thank_you,i appreciate my help!,original,bye,2 -how_busy,how long is the wait before i can go to naso food joint,lambada,avail,0 -greeting,welcome,parrot,greet,4 -goodbye,thanks for the talk,lambada,bye,2 -greeting,why hello?,original,greet,4 -goodbye,enjoy my day goodbye,parrot,bye,2 -greeting,good evening,original,greet,4 -reminder_update,make me a reminder,lambada,resched,5 -goodbye,fairwell,original,bye,2 -yes,great,original,book,1 -date,date tomorrow?,parrot,avail,0 -yes,so it's true,parrot,book,1 -no,that's erroneous,parrot,cancel,3 -no,nada,original,cancel,3 -goodbye,bye now,original,bye,2 -thank_you,i am thankful for the answer,original,bye,2 -no,certainly not,original,cancel,3 -no,i prefer not,parrot,cancel,3 -no,not true,original,cancel,3 -yes,indeed,original,book,1 -no,it's a negation,parrot,cancel,3 -how_busy,will there be a wait time at this restaurant,original,avail,0 -goodbye,i'll leave,parrot,bye,2 -no,thanks no,parrot,cancel,3 -goodbye,i leave now,parrot,bye,2 -no,nothing,parrot,cancel,3 -no,it would be wrong,parrot,cancel,3 -no,that's overwhelmingly negative,parrot,cancel,3 -schedule_meeting,please set up a meeting room for 9am on friday,parrot,book,1 -no,not good,parrot,cancel,3 -meeting_schedule,when is my meeting with dan?,parrot,avail,0 -goodbye,peace,original,bye,2 -greeting,hola,original,greet,4 -goodbye,"later, goodbye",lambada,bye,2 -reminder_update,please remind me at a later date,parrot,resched,5 -no,FALSE,original,cancel,3 -how_busy,tell me the time to wait at noon?,parrot,avail,0 -no,no?,parrot,cancel,3 -date,what date is tomorrow?,original,avail,0 -no,no,lambada,cancel,3 -goodbye,goodnight,original,bye,2 -no,absolutely false,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -calendar,check my calendar to see if an event called final exams exists,original,avail,0 -thank_you,my thanks,parrot,bye,2 -no,nothing good,parrot,cancel,3 -no,nothing,parrot,cancel,3 -greeting,hola,original,greet,4 -no,ill pass,original,cancel,3 -yes,that is a fact,original,book,1 -yes,all right,original,book,1 -no,that’s incorrect,original,cancel,3 -how_busy,can you tell me the current wait times at the italian restaurant?,lambada,avail,0 -yes,"yes, that's correct",original,book,1 -how_busy,is mr joes pizza available for a seat?,parrot,avail,0 -yes,yep,original,book,1 -yes,yup,original,book,1 -yes,good,parrot,book,1 -no,erroneous,parrot,cancel,3 -greeting,"hello, friend",original,greet,4 -goodbye,good night,original,bye,2 -no,negative,original,cancel,3 -reminder_update,remind me what i need to do?,parrot,resched,5 -no,negation,parrot,cancel,3 -greeting,what's up,original,greet,4 -goodbye,see ya!,original,bye,2 -yes,right,parrot,book,1 -no,no!,original,cancel,3 -yes,TRUE,lambada,book,1 -date,let me know the date,parrot,avail,0 -date,what date?,parrot,avail,0 -yes,ya,original,book,1 -reminder_update,set up a reminder to pay my taxes,lambada,resched,5 -how_busy,how busy is imo at 11?,parrot,avail,0 -no,not true,original,cancel,3 -goodbye,adios!,original,bye,2 -goodbye,goodbye!,original,bye,2 -yes,yup,original,book,1 -greeting,hello,original,greet,4 -goodbye,afterward,parrot,bye,2 -how_busy,how busy is red robin?,parrot,avail,0 -no,but no it's not true,parrot,cancel,3 -yes,yay,lambada,book,1 -goodbye,farewell to you,lambada,bye,2 -calendar,how much do i have scheduled for march 2nd?,parrot,avail,0 -greeting,hey how have you been,parrot,greet,4 -how_busy,what's the typical wait time for mr joes pizza,original,avail,0 -greeting,hello,original,greet,4 -thank_you,i'm really grateful,parrot,bye,2 -goodbye,adios,original,bye,2 -yes,okay,original,book,1 -how_busy,how long will it take to get seated at red lobster,lambada,avail,0 -greeting,what's new here?,parrot,greet,4 -greeting,hey hey!,original,greet,4 -how_busy,is the restaurant crowded at night? why?,parrot,avail,0 -no,negation,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -goodbye,tootles?,parrot,bye,2 -yes,agreed,original,book,1 -yes,very true,original,book,1 -no,no?,parrot,cancel,3 -date,can you tell me the details of my date?,parrot,avail,0 -no,FALSE,original,cancel,3 -schedule_meeting,a meeting should be scheduled,parrot,book,1 -yes,accept,parrot,book,1 -no,nay,original,cancel,3 -reminder_update,remember to call tomorrow,parrot,resched,5 -goodbye,good luck,lambada,bye,2 -no,not correct,parrot,cancel,3 -goodbye,take a break,parrot,bye,2 -no,no!,original,cancel,3 -reminder_update,please create a reminder,parrot,resched,5 -date,what's the day tomorrow?,parrot,avail,0 -thank_you,thank you again,parrot,bye,2 -how_busy,how long will it take to sit at ihop,parrot,avail,0 -no,not right,parrot,cancel,3 -thank_you,"oh, thanks",original,bye,2 -calendar_update,i'm going to remove fishing from my calendar for soccer,parrot,resched,5 -yes,that is affirmative,original,book,1 -yes,"yes, that's affirmative",original,book,1 -goodbye,buhbye now,lambada,bye,2 -thank_you,i'm happy with my response,parrot,bye,2 -yes,approved,original,book,1 -greeting,how you are?,parrot,greet,4 -calendar,tell me what is on my calendar for april 1?,original,avail,0 -reminder_update,remind me to clean the living room,lambada,resched,5 -yes,agreed,original,book,1 -thank_you,many thank,original,bye,2 -no,erroneous,parrot,cancel,3 -no,that's a negative,original,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,i don't think it's accurate,parrot,cancel,3 -yes,affirmative,original,book,1 -goodbye,greetings,parrot,bye,2 -greeting,yo,original,greet,4 -greeting,nice day,lambada,greet,4 -goodbye,i'm going,parrot,bye,2 -no,nay,original,cancel,3 -no,negation,parrot,cancel,3 -no,that's not right?,parrot,cancel,3 -calendar,what's happening on march 15th,lambada,avail,0 -greeting,heller,original,greet,4 -calendar,check out my calendar,parrot,avail,0 -greeting,how's my doing?,parrot,greet,4 -greeting,heller,original,greet,4 -how_busy,how long before dinner?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -how_busy,is michel busy at 9?,parrot,avail,0 -goodbye,bye!,original,bye,2 -greeting,how are you treated?,parrot,greet,4 -no,that's wrong,original,cancel,3 -thank_you,the best,parrot,bye,2 -yes,"yes, that's a fact",lambada,book,1 -goodbye,lovely to see you again,lambada,bye,2 -yes,indeed,original,book,1 -yes,uh-huh,original,book,1 -thank_you,you made me aware,parrot,bye,2 -greeting,how've you been?,parrot,greet,4 -schedule_meeting,make a meeting with john at 5pm,parrot,book,1 -greeting,what is going on?,parrot,greet,4 -no,that's untrue,parrot,cancel,3 -how_busy,can i expect to see a lot of people at olive garden at six?,parrot,avail,0 -goodbye,bye bye then,original,bye,2 -no,nothing,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -yes,that is really true,lambada,book,1 -greeting,what's happening to you?,parrot,greet,4 -how_busy,how busy is imanas around 5,lambada,avail,0 -no,nope,original,cancel,3 -greeting,aloha,original,greet,4 -no,negatory?,parrot,cancel,3 -no,no way!,original,cancel,3 -no,"please, no",original,cancel,3 -no,naw,original,cancel,3 -thank_you,awesome thank you,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -reminder_update,keep checking the steak,parrot,resched,5 -goodbye,the talk was nice,lambada,bye,2 -yes,it's logical,parrot,book,1 -no,no it's not correct,parrot,cancel,3 -no,naw,original,cancel,3 -yes,affirmitive,original,book,1 -goodbye,regards,original,bye,2 -thank_you,thanks for trying,original,bye,2 -no,negatory?,parrot,cancel,3 -yes,i'm voting for you,parrot,book,1 -yes,i know this is true,lambada,book,1 -no,negative,original,cancel,3 -calendar_update,add brunch to my calendar for friday,lambada,resched,5 -thank_you,thanks for the donation,parrot,bye,2 -goodbye,just relax,parrot,bye,2 -greeting,how you feel?,parrot,greet,4 -date,what month today?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -greeting,yo,original,greet,4 -goodbye,afterward,parrot,bye,2 -greeting,what's my feeling?,parrot,greet,4 -greeting,are you doing ok?,original,greet,4 -yes,that makes sense,lambada,book,1 -date,what day are we?,parrot,avail,0 -no,negative certainly,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -thank_you,thank ya!,original,bye,2 -goodbye,i'll leave,parrot,bye,2 -no,that is no,lambada,cancel,3 -schedule_meeting,please fill out a meeting room for 7:30,lambada,book,1 -greeting,hello good day,parrot,greet,4 -yes,let's do that,parrot,book,1 -no,i gotta say no,original,cancel,3 -no,no?,parrot,cancel,3 -no,that's incorrect!,original,cancel,3 -how_busy,how busy is the pizzeria around 6pm?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -greeting,aho,parrot,greet,4 -goodbye,bye-bye,original,bye,2 -thank_you,the best,parrot,bye,2 -date,i'd like to know what the date is?,parrot,avail,0 -yes,perfect,parrot,book,1 -greeting,aho,parrot,greet,4 -no,what isn't true?,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -no,that's a no,lambada,cancel,3 -goodbye,adios ai,original,bye,2 -yes,definitely,original,book,1 -goodbye,i'll leave,parrot,bye,2 -date,tell me the date,parrot,avail,0 -greeting,you good?,parrot,greet,4 -yes,that appears true,original,book,1 -yes,good,parrot,book,1 -reminder_update,can you remind me?,parrot,resched,5 -no,this is false,parrot,cancel,3 -date,tomorrow is the date,parrot,avail,0 -how_busy,if you want a table at olive garden how long will it take,parrot,avail,0 -greeting,welcome,parrot,greet,4 -meeting_schedule,do i have any meetings today between 2 and 3?,original,avail,0 -greeting,how were you?,parrot,greet,4 -yes,great,original,book,1 -no,hell nah,original,cancel,3 -yes,it's gonna be a yes,lambada,book,1 -schedule_meeting,how many people can go to a meeting,lambada,book,1 -goodbye,farewell!,original,bye,2 -yes,facts,original,book,1 -yes,yes,original,book,1 -yes,TRUE,original,book,1 -cancel_reservation,i have to cancel my table at margaritas for friday,parrot,cancel,3 -goodbye,i'm leaving,parrot,bye,2 -how_busy,tell me the usual number of diners at wine and cheese around noon,parrot,avail,0 -greeting,heyo,original,greet,4 -yes,10-Apr,original,book,1 -thank_you,thanks for responding,parrot,bye,2 -goodbye,adios,original,bye,2 -greeting,are you well?,original,greet,4 -yes,certainly true,parrot,book,1 -date,what is tomorrow?,parrot,avail,0 -greeting,wassup,original,greet,4 -goodbye,bye bye,lambada,bye,2 -goodbye,bye!,original,bye,2 -yes,approved,original,book,1 -yes,it's logical,parrot,book,1 -thank_you,again thank you,parrot,bye,2 -no,not right?,parrot,cancel,3 -reminder_update,how about a reminder?,parrot,resched,5 -reminder_update,maybe a reminder?,parrot,resched,5 -schedule_meeting,how do you arrange a meeting?,parrot,book,1 -goodbye,farewell,original,bye,2 -cancel_reservation,i need to cancel my dinner reservation at the steak house,parrot,cancel,3 -date,list the current date?,parrot,avail,0 -yes,indeed,parrot,book,1 -no,FALSE,original,cancel,3 -greeting,hey there!,original,greet,4 -yes,it's true,original,book,1 -date,date tomorrow?,parrot,avail,0 -yes,yes sir,original,book,1 -greeting,how is the ai going?,parrot,greet,4 -yes,you're right,original,book,1 -yes,obviously,parrot,book,1 -greeting,do you feel?,parrot,greet,4 -yes,a real statement,parrot,book,1 -no,no it's not,parrot,cancel,3 -thank_you,i'm excited for my help,parrot,bye,2 -greeting,salutation,parrot,greet,4 -date,list the next week's dates?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -reminder_update,and i'd like a reminder,parrot,resched,5 -no,negation,parrot,cancel,3 -calendar,show me my calendar for next sunday,original,avail,0 -reminder_update,just a reminder,parrot,resched,5 -greeting,hey what's up,original,greet,4 -goodbye,buhbye,original,bye,2 -yes,perfect,parrot,book,1 -yes,okay,original,book,1 -thank_you,appreciate it,original,bye,2 -greeting,how you are,original,greet,4 -no,"nope, that's false",original,cancel,3 -schedule_meeting,i'm interested in meeting in the blue room on friday,parrot,book,1 -goodbye,adios,original,bye,2 -greeting,hello what is happening,lambada,greet,4 -goodbye,see ya,lambada,bye,2 -greeting,aloha,original,greet,4 -yes,10-Apr,original,book,1 -thank_you,so i appreciate it,parrot,bye,2 -yes,obviously,parrot,book,1 -greeting,how have you been?,parrot,greet,4 -goodbye,you're done,parrot,bye,2 -thank_you,thank you?,parrot,bye,2 -thank_you,thanks please,original,bye,2 -goodbye,the talk was nice,lambada,bye,2 -no,no,lambada,cancel,3 -meeting_schedule,do i meet joan today?,parrot,avail,0 -yes,"correct, it is affirmative",original,book,1 -thank_you,my gratitude,parrot,bye,2 -schedule_meeting,help me set up a meeting,lambada,book,1 -greeting,how is my situation?,parrot,greet,4 -yes,yes,original,book,1 -date,a year?,parrot,avail,0 -yes,it's true,original,book,1 -yes,absolutely!,original,book,1 -yes,TRUE,lambada,book,1 -no,i think it's incorrect,parrot,cancel,3 -thank_you,"oh, thanks",original,bye,2 -yes,that's correct,original,book,1 -no,nothing good,parrot,cancel,3 -goodbye,have a good day?,original,bye,2 -how_busy,when can i wait in the restaurant?,parrot,avail,0 -no,nothing,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -yes,i guess,parrot,book,1 -reminder_update,please remind me to do something,parrot,resched,5 -no,no?,parrot,cancel,3 -goodbye,bye!,original,bye,2 -cancel_reservation,call my reservation canceled,lambada,cancel,3 -goodbye,the hell i'm out,parrot,bye,2 -yes,yes,original,book,1 -goodbye,the talk was nice,lambada,bye,2 -greeting,hello how you doing,lambada,greet,4 -no,not correct,parrot,cancel,3 -how_busy,do you know how busy it is at chili's at 5 pm?,parrot,avail,0 -thank_you,you have done well,lambada,bye,2 -no,naw,parrot,cancel,3 -goodbye,bye bye!,original,bye,2 -greeting,salutations!,original,greet,4 -goodbye,later goodbye,parrot,bye,2 -yes,approved,original,book,1 -calendar,what i'm going to do on march 3?,parrot,avail,0 -no,no?,parrot,cancel,3 -greeting,aho,parrot,greet,4 -yes,TRUE,original,book,1 -no,invalid,original,cancel,3 -date,tell me the date for tomorrow?,parrot,avail,0 -goodbye,good call,parrot,bye,2 -greeting,what's new?,parrot,greet,4 -no,is my false claim?,parrot,cancel,3 -goodbye,see ya!,original,bye,2 -no,i would say no,lambada,cancel,3 -date,is today the date?,lambada,avail,0 -no,negative for sure,original,cancel,3 -greeting,how's everything?,parrot,greet,4 -no,no?,parrot,cancel,3 -thank_you,really great!,original,bye,2 -goodbye,i leave now,parrot,bye,2 -greeting,good morning ai,parrot,greet,4 -greeting,"hi, how's it going",lambada,greet,4 -yes,confirmed,original,book,1 -meeting_schedule,how many meetings am i scheduled for today between 1 and 5?,parrot,avail,0 -calendar_update,i got to remove fishing from my calendar for soccer,original,resched,5 -date,in two days what will it be?,parrot,avail,0 -meeting_schedule,when is my meeting with robin planned?,parrot,avail,0 -goodbye,regards,original,bye,2 -meeting_schedule,what's my meeting schedule for today?,parrot,avail,0 -greeting,how is everything going?,parrot,greet,4 -reminder_update,remember when the turkey is cooked,parrot,resched,5 -greeting,how's everything?,parrot,greet,4 -reminder_update,remind me to go to the bathroom,parrot,resched,5 -yes,confirmed,original,book,1 -greeting,give me the information,parrot,greet,4 -no,erroneous,parrot,cancel,3 -goodbye,come on soon,parrot,bye,2 -no,"nope, that's false",original,cancel,3 -goodbye,for now,parrot,bye,2 -reminder_update,"new reminder, please",original,resched,5 -no,invalid,original,cancel,3 -yes,approved,original,book,1 -how_busy,is mcdonalds busy?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -calendar,search my calendar for birthday,original,avail,0 -yes,that's true,original,book,1 -thank_you,gracias,original,bye,2 -yes,accepted,original,book,1 -no,not happening,original,cancel,3 -no,that’s actually wrong,original,cancel,3 -thank_you,my sincere thanks,parrot,bye,2 -no,nay,original,cancel,3 -goodbye,buhbye,original,bye,2 -greeting,hiya!,original,greet,4 -no,please disagree,lambada,cancel,3 -thank_you,thank you so much for helping me,parrot,bye,2 -no,i meant no,original,cancel,3 -goodbye,be careful then,lambada,bye,2 -greeting,heyo,original,greet,4 -no,no!,original,cancel,3 -no,negatory?,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -no,no way!,original,cancel,3 -greeting,ahoy,lambada,greet,4 -yes,absolutely!,original,book,1 -no,most definitely false,parrot,cancel,3 -no,that's negative,parrot,cancel,3 -yes,it is true,original,book,1 -how_busy,what's the wait time?,parrot,avail,0 -yes,definitely confirmed,parrot,book,1 -thank_you,thanks so much,original,bye,2 -goodbye,i will take care of you,lambada,bye,2 -thank_you,so grateful,parrot,bye,2 -calendar,do i have appointments for april?,parrot,avail,0 -no,thanks no,parrot,cancel,3 -calendar,do you have anything on my calendar for june 22nd?,parrot,avail,0 -greeting,hi,original,greet,4 -greeting,aloha,original,greet,4 -how_busy,is there a long wait at pizza box?,lambada,avail,0 -yes,"yep, that's right",original,book,1 -thank_you,your answer pleased me,original,bye,2 -goodbye,goodbyes soon,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -how_busy,how busy is michel at 9?,parrot,avail,0 -goodbye,goodbye bye,parrot,bye,2 -reminder_update,let me be reminded?,parrot,resched,5 -yes,definitely yes,parrot,book,1 -how_busy,how busy will the olive garden be at 6 o'clock,parrot,avail,0 -no,erroneous,parrot,cancel,3 -yes,"correct, that's true",original,book,1 -how_busy,how busy is the cheesecake factory at lunch time?,parrot,avail,0 -yes,yes sir,original,book,1 -goodbye,good talk,parrot,bye,2 -no,thats a negative,original,cancel,3 -meeting_schedule,list some of the meetings on my calendar today?,parrot,avail,0 -yes,all right,original,book,1 -reminder_update,add a reminder for me?,parrot,resched,5 -greeting,heyo,original,greet,4 -yes,it'll be yes,parrot,book,1 -yes,yay,lambada,book,1 -thank_you,nice,parrot,bye,2 -thank_you,you answered,parrot,bye,2 -how_busy,i want to know how busy ruby tuesday will be around 845 pm,parrot,avail,0 -date,which date is it,lambada,avail,0 -no,so that's no,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -yes,huh,parrot,book,1 -greeting,wassup,original,greet,4 -no,that's totally wrong!,original,cancel,3 -yes,right,parrot,book,1 -how_busy,how long is the wait at chipotle at 5,lambada,avail,0 -calendar,what days do you have on my calendar for tomorrow?,parrot,avail,0 -yes,"yeah, that's right",original,book,1 -thank_you,merci beaucoup,original,bye,2 -greeting,hi how are you doing?,parrot,greet,4 -how_busy,what's the average wait time for mr joe's at 7,lambada,avail,0 -no,that's very false,parrot,cancel,3 -yes,yes,original,book,1 -yes,perfect,parrot,book,1 -date,what is my tomorrow's date?,lambada,avail,0 -how_busy,tell me how busy i have to be at the cheese cake factory around 1030?,parrot,avail,0 -thank_you,awesome thank you,parrot,bye,2 -reminder_update,i need a reminder,original,resched,5 -no,indeed it's false,parrot,cancel,3 -greeting,hey fellows,parrot,greet,4 -yes,TRUE,lambada,book,1 -greeting,ahoy,lambada,greet,4 -no,definitely not,original,cancel,3 -yes,absolutely,original,book,1 -goodbye,bye,original,bye,2 -yes,accepted,original,book,1 -thank_you,thanks for my time,parrot,bye,2 -no,it doesn't seem so,parrot,cancel,3 -no,that’s incorrect,original,cancel,3 -goodbye,tootles?,parrot,bye,2 -yes,i just said it,parrot,book,1 -thank_you,appreciated,original,bye,2 -greeting,how are you treated?,parrot,greet,4 -no,so that's no,parrot,cancel,3 -no,that's a negatory,original,cancel,3 -no,negatory?,parrot,cancel,3 -no,i'm sorry it isn't,lambada,cancel,3 -date,what day are we on?,lambada,avail,0 -meeting_schedule,are there meetings between 10 am and 4 pm?,parrot,avail,0 -goodbye,go easy,parrot,bye,2 -no,that's a huge mistake,parrot,cancel,3 -cancel_reservation,can you cancel my 5:30 pm table reservation at parc?,original,cancel,3 -calendar,tell me my march 30 calendar?,parrot,avail,0 -how_busy,can you tell me what the wait is at cracker barrel right now?,parrot,avail,0 -no,nada,original,cancel,3 -yes,great,original,book,1 -thank_you,i'm glad you helped,parrot,bye,2 -goodbye,goodnight,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,great,original,book,1 -goodbye,nice to see you bye,parrot,bye,2 -greeting,hey fellow,parrot,greet,4 -yes,obviously,parrot,book,1 -no,i disagree,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -yes,perfect,parrot,book,1 -how_busy,is the wait time at olive garden very long?,lambada,avail,0 -goodbye,im leaving goodbye,parrot,bye,2 -date,please share today's date,original,avail,0 -meeting_schedule,i have no meetings today,parrot,avail,0 -date,what date is tomorrow?,original,avail,0 -date,current date,original,avail,0 -greeting,aloha,original,greet,4 -reminder_update,help me remember to pick up stan later on,parrot,resched,5 -calendar_update,please clean my calendar,parrot,resched,5 -goodbye,goodbye to yours,parrot,bye,2 -goodbye,later gator!,original,bye,2 -goodbye,but now i'm leaving,parrot,bye,2 -yes,i know what i get,parrot,book,1 -goodbye,bye-bye,original,bye,2 -yes,"yes, that's true",lambada,book,1 -no,please make sure my statement is not valid,lambada,cancel,3 -goodbye,good-bye,parrot,bye,2 -yes,exactly right,original,book,1 -yes,facts,original,book,1 -meeting_schedule,what is today's meeting time?,parrot,avail,0 -how_busy,is this chili going to be packed at 6pm?,parrot,avail,0 -goodbye,goodbye now,parrot,bye,2 -greeting,good day,original,greet,4 -goodbye,good-bye,parrot,bye,2 -thank_you,thank you,original,bye,2 -no,not that,original,cancel,3 -no,not good,parrot,cancel,3 -yes,TRUE,lambada,book,1 -schedule_meeting,can you schedule a meeting with emma?,lambada,book,1 -yes,"yes, that is factual",original,book,1 -thank_you,thanks for that,original,bye,2 -greeting,hiya!,original,greet,4 -how_busy,how busy will chili's be if i go at 6 pm,original,avail,0 -no,erroneous,parrot,cancel,3 -thank_you,appreciate it,original,bye,2 -greeting,hey,original,greet,4 -goodbye,good-bye,parrot,bye,2 -goodbye,sayonara,original,bye,2 -how_busy,you know how busy imoos is?,parrot,avail,0 -cancel_reservation,can you cancel my reservation for winters at the palace tonight,parrot,cancel,3 -meeting_schedule,when's my meeting?,parrot,avail,0 -goodbye,this was a nice conversation,original,bye,2 -goodbye,goodbye!,original,bye,2 -yes,affirmitive,original,book,1 -reminder_update,you remind me to put away the clothes,parrot,resched,5 -goodbye,you're done,parrot,bye,2 -reminder_update,please remember me,parrot,resched,5 -greeting,hey,original,greet,4 -yes,obviously,parrot,book,1 -greeting,hey fellows,parrot,greet,4 -how_busy,how long would the wait at the pizza place be?,parrot,avail,0 -no,but no it's not true,parrot,cancel,3 -yes,"yeah, that's true",lambada,book,1 -calendar,do i have my nephew's birthday on november 10th??,parrot,avail,0 -yes,great,original,book,1 -goodbye,goodbye!,original,bye,2 -no,this information is not true,parrot,cancel,3 -no,that's a negative,original,cancel,3 -no,i meant nothing,parrot,cancel,3 -thank_you,again thanks,parrot,bye,2 -how_busy,tell me the wait for a table at red lobster,parrot,avail,0 -no,definitely not,original,cancel,3 -goodbye,afterward,parrot,bye,2 -date,what's my date tomorrow?,parrot,avail,0 -thank_you,i'm very thankful,parrot,bye,2 -greeting,bonjour,original,greet,4 -yes,that's right,original,book,1 -yes,confirmed,original,book,1 -goodbye,goodbye soon,lambada,bye,2 -yes,yay,lambada,book,1 -how_busy,what's the wait time for a reservation at iloveys?,parrot,avail,0 -no,no!,original,cancel,3 -schedule_meeting,show me how i can schedule a meeting,parrot,book,1 -yes,it's certainly true,parrot,book,1 -goodbye,ai goodbye,original,bye,2 -goodbye,farewell!,original,bye,2 -no,naw,parrot,cancel,3 -goodbye,peace out,original,bye,2 -greeting,how's everything?,parrot,greet,4 -no,that's completely false,original,cancel,3 -yes,TRUE,original,book,1 -no,negative,original,cancel,3 -how_busy,how long is the wait at olive garden at 8am,lambada,avail,0 -calendar_update,add this to my calendar for tomorrow?,parrot,resched,5 -goodbye,farewell!,original,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -yes,i would say yes,lambada,book,1 -date,what date will be in 100 days?,parrot,avail,0 -thank_you,i'm happy you've helped me,parrot,bye,2 -yes,positive,parrot,book,1 -cancel_reservation,i have to cancel my reservation at umami for tonight,lambada,cancel,3 -greeting,aho,parrot,greet,4 -meeting_schedule,do i have any meetings today between 4 and 7 pm?,lambada,avail,0 -thank_you,thanks for my reply,parrot,bye,2 -greeting,what's happened?,parrot,greet,4 -yes,that checks out,original,book,1 -yes,huh,parrot,book,1 -goodbye,this conversation was wonderful,parrot,bye,2 -how_busy,how long will it take to get seated in the cheese cake shop?,parrot,avail,0 -greeting,ahoy hoy,original,greet,4 -how_busy,is the restaurant crowded with people for dinner?,parrot,avail,0 -yes,definitely,original,book,1 -how_busy,how long do i have to wait for a table at ihop,parrot,avail,0 -yes,oh-huh,parrot,book,1 -reminder_update,add a reminder for me?,parrot,resched,5 -calendar,what's my schedule for march 3rd,lambada,avail,0 -goodbye,greetings,parrot,bye,2 -greeting,how's life?,parrot,greet,4 -goodbye,no problem goodbye,parrot,bye,2 -yes,confirm,original,book,1 -greeting,how's it going?,parrot,greet,4 -greeting,wassup,original,greet,4 -yes,that's true,original,book,1 -no,but certainly not,parrot,cancel,3 -yes,ok,original,book,1 -goodbye,goodbye for now,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -no,that’s actually wrong,original,cancel,3 -thank_you,thanks for the info,original,bye,2 -date,is tomorrow's date?,parrot,avail,0 -how_busy,how long does it take for a table at garlic bread pizza,parrot,avail,0 -no,the negator,parrot,cancel,3 -no,certainly not,original,cancel,3 -greeting,is everything ok today?,original,greet,4 -goodbye,sayonara,original,bye,2 -calendar,what's tuesday's calendar?,parrot,avail,0 -how_busy,does chili have a lot of people sitting around between 5 and 7?,lambada,avail,0 -no,what you said was wrong?,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -schedule_meeting,please get together with matthew and write it,parrot,book,1 -greeting,hello how're you doing?,parrot,greet,4 -goodbye,good call,parrot,bye,2 -greeting,how's life?,parrot,greet,4 -yes,that's absolutely true,parrot,book,1 -greeting,how are things going?,parrot,greet,4 -how_busy,how long can i wait before i go to the chocolate fountain,parrot,avail,0 -no,that’s actually wrong,original,cancel,3 -how_busy,what if there's a long wait at the cheesecake factory?,parrot,avail,0 -thank_you,thanks for letting me know,original,bye,2 -goodbye,you can talk to me later,parrot,bye,2 -goodbye,goodbye,original,bye,2 -greeting,hola!,original,greet,4 -schedule_meeting,is it possible for you to schedule a meeting for 3:00 on wednesday?,original,book,1 -greeting,and how's it going?,parrot,greet,4 -meeting_schedule,are there any meetings today with jason?,parrot,avail,0 -yes,okay,original,book,1 -calendar_update,remove my dentist appointment from my calendar,parrot,resched,5 -calendar_update,remove wrestlemania from my calendar for may 7th,original,resched,5 -greeting,hey,original,greet,4 -yes,yep,original,book,1 -calendar,tell me my calendar for the 14th?,parrot,avail,0 -thank_you,again thank you,parrot,bye,2 -yes,absolutely!,original,book,1 -how_busy,outback steakhouse at 6 pm,parrot,avail,0 -yes,confirm,original,book,1 -yes,huh,parrot,book,1 -no,that's not correct,original,cancel,3 -greeting,how you are,original,greet,4 -goodbye,"that's all, bye",original,bye,2 -goodbye,buhbye,original,bye,2 -how_busy,how busy will chili be if i go at 6 pm,parrot,avail,0 -calendar,bowling on my calendar?,parrot,avail,0 -no,not true,original,cancel,3 -how_busy,tell me the time to wait for a table in the avocado cafe?,parrot,avail,0 -thank_you,thanks for helping,original,bye,2 -no,say negative,parrot,cancel,3 -goodbye,thank you for the conversation take care,parrot,bye,2 -thank_you,thank you please,parrot,bye,2 -no,i would say that the statement is definitely false,original,cancel,3 -goodbye,bye!,original,bye,2 -meeting_schedule,tell me when my meeting with john is?,parrot,avail,0 -goodbye,goodbye soon,lambada,bye,2 -goodbye,my friend,parrot,bye,2 -date,what's the day now,parrot,avail,0 -yes,yep,original,book,1 -thank_you,"great, thanks!",original,bye,2 -no,nope,original,cancel,3 -thank_you,thanks!,original,bye,2 -thank_you,gracias,original,bye,2 -calendar,can you tell me what is on my calendar for march 19th?,parrot,avail,0 -meeting_schedule,is there any meetings between 2 and 5?,parrot,avail,0 -no,nothing good,parrot,cancel,3 -greeting,heller,original,greet,4 -thank_you,i appreciate your time,lambada,bye,2 -reminder_update,don't let me forget later,parrot,resched,5 -goodbye,goodbye then,parrot,bye,2 -thank_you,your help is appreciated,original,bye,2 -greeting,what's happening,original,greet,4 -thank_you,thanks very much for your answer,parrot,bye,2 -goodbye,was nice to see you,parrot,bye,2 -thank_you,i'm grateful for the assistance,original,bye,2 -greeting,aloha,original,greet,4 -greeting,how are you feeling today?,parrot,greet,4 -yes,"yes, please",parrot,book,1 -goodbye,"enjoy my day, bye",lambada,bye,2 -goodbye,sayonara,original,bye,2 -goodbye,bye,original,bye,2 -no,it's no,parrot,cancel,3 -greeting,let me know how things are going on,parrot,greet,4 -how_busy,how busy is this restaurant right now?,parrot,avail,0 -yes,all right,original,book,1 -goodbye,goodbye later,parrot,bye,2 -no,it's very false,parrot,cancel,3 -cancel_reservation,can you cancel my reservation?,lambada,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,tell me how it goes?,parrot,greet,4 -no,definitely not,original,cancel,3 -greeting,hey yai,lambada,greet,4 -meeting_schedule,do i have any meetings with john?,lambada,avail,0 -no,no,lambada,cancel,3 -schedule_meeting,i need to know how to arrange a meeting,parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,uh-huh,original,book,1 -goodbye,i'm going to the highway,parrot,bye,2 -yes,ya,original,book,1 -meeting_schedule,do you have any meetings on my calendar today?,parrot,avail,0 -goodbye,tootles,original,bye,2 -thank_you,"great, thanks!",original,bye,2 -goodbye,i'll go,parrot,bye,2 -no,that’s not correct,original,cancel,3 -yes,yay,lambada,book,1 -calendar_update,i've got to add an event to my calendar for the 7th,parrot,resched,5 -goodbye,im leaving goodbye,parrot,bye,2 -date,please date,parrot,avail,0 -yes,positive,parrot,book,1 -greeting,how're you doing,original,greet,4 -goodbye,goodbye,original,bye,2 -yes,that's true,original,book,1 -yes,correct,original,book,1 -no,i'd rather not,parrot,cancel,3 -schedule_meeting,you can set up a meeting room for thursday at 5pm,parrot,book,1 -no,i would say no,lambada,cancel,3 -greeting,yo,original,greet,4 -yes,agreed,original,book,1 -goodbye,lovely conversation,parrot,bye,2 -reminder_update,i have to take out the trash in an hour,parrot,resched,5 -schedule_meeting,please help me schedule a meeting with john love at 9 am tomorrow?,parrot,book,1 -no,i don't agree,parrot,cancel,3 -yes,yes it's true,lambada,book,1 -greeting,what's up,original,greet,4 -date,in 9 days?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -yes,right,parrot,book,1 -how_busy,how long does it take to wait for a table in the gobi steakhouse?,parrot,avail,0 -no,negatory,original,cancel,3 -how_busy,is macy's busy?,parrot,avail,0 -cancel_reservation,please cancel the table i had reserved for tonight,original,cancel,3 -no,i disagree,parrot,cancel,3 -cancel_reservation,cancel my reservation for tomorrow at the steak house,parrot,cancel,3 -calendar_update,is there any way to cancel the event on may 17?,parrot,resched,5 -yes,positive,original,book,1 -date,today what date?,parrot,avail,0 -greeting,hola,original,greet,4 -yes,i'm sure it's true,parrot,book,1 -yes,10-Apr,original,book,1 -date,what's the current date?,parrot,avail,0 -goodbye,nice talk,lambada,bye,2 -yes,absolutely!,original,book,1 -yes,ya,original,book,1 -meeting_schedule,are there meetings from noon to 3 o'clock?,parrot,avail,0 -thank_you,i want to thank you for your time,parrot,bye,2 -date,what today?,parrot,avail,0 -yes,it is definitely affirmative,original,book,1 -goodbye,goodbye,original,bye,2 -yes,affirmative,original,book,1 -no,so that's no,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -yes,it's logical,parrot,book,1 -greeting,salutations!,original,greet,4 -no,negative definitely,parrot,cancel,3 -yes,i know that's true,parrot,book,1 -goodbye,later gater,original,bye,2 -yes,correct,original,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -greeting,hey how ya feeling,lambada,greet,4 -greeting,how's everything,original,greet,4 -no,i'll say no,parrot,cancel,3 -yes,definitely,original,book,1 -thank_you,thank you for coming,parrot,bye,2 -yes,yep,original,book,1 -thank_you,you've helped,parrot,bye,2 -thank_you,thanks so much,original,bye,2 -how_busy,sage's busy at noon?,parrot,avail,0 -meeting_schedule,give me a list of meetings in my calendar today,parrot,avail,0 -schedule_meeting,can you schedule a meeting for 6pm on monday?,lambada,book,1 -yes,yeap,original,book,1 -goodbye,good bye,original,bye,2 -yes,10-Apr,original,book,1 -yes,exactly right,original,book,1 -how_busy,at 9 o'clock is chili busy?,parrot,avail,0 -yes,i'll say yes,parrot,book,1 -cancel_reservation,cancel my reservation at the ranch for alcott,lambada,cancel,3 -yes,positive,parrot,book,1 -no,i mean no,parrot,cancel,3 -goodbye,sign off,parrot,bye,2 -goodbye,next time we'll talk,parrot,bye,2 -yes,just right,parrot,book,1 -date,which date will it be tomorrow,lambada,avail,0 -yes,perfect,parrot,book,1 -goodbye,adios,original,bye,2 -thank_you,gracias,original,bye,2 -greeting,hola,original,greet,4 -goodbye,on the highway,parrot,bye,2 -no,it's false,parrot,cancel,3 -goodbye,goodbye later,parrot,bye,2 -how_busy,is ihop busy around 6pm?,lambada,avail,0 -meeting_schedule,meeting today,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -greeting,aho,parrot,greet,4 -calendar,do i have appointments on march 10th?,parrot,avail,0 -no,negation,parrot,cancel,3 -yes,yup,original,book,1 -yes,TRUE,lambada,book,1 -calendar,please see my calendar,parrot,avail,0 -calendar,what do i have going on for the 1212?,parrot,avail,0 -goodbye,adios,original,bye,2 -greeting,hello,original,greet,4 -greeting,what's my feeling?,parrot,greet,4 -no,negation,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -goodbye,good bye,original,bye,2 -meeting_schedule,what time is my meeting scheduled?,parrot,avail,0 -how_busy,how long can i wait for a table at nasi lagu,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -goodbye,for now,parrot,bye,2 -cancel_reservation,you have not to confirm my reservation,parrot,cancel,3 -yes,ya,original,book,1 -greeting,whats up?,parrot,greet,4 -greeting,hola!,original,greet,4 -goodbye,good-bye,parrot,bye,2 -yes,that is affirmative,original,book,1 -date,now what day is it,parrot,avail,0 -meeting_schedule,when is today's meeting?,lambada,avail,0 -thank_you,thankyou,parrot,bye,2 -goodbye,buhbye,original,bye,2 -no,it's negative,parrot,cancel,3 -how_busy,what is the current wait time at cheerios?,parrot,avail,0 -greeting,how's life treating you,parrot,greet,4 -calendar,tell me what's on my calendar for march 6th,parrot,avail,0 -thank_you,thanks for that response,original,bye,2 -goodbye,come on soon,parrot,bye,2 -yes,obviously,parrot,book,1 -thank_you,my gratitude,parrot,bye,2 -goodbye,i'm going,parrot,bye,2 -goodbye,farewell!,original,bye,2 -goodbye,the conversation was great,parrot,bye,2 -thank_you,thank you,original,bye,2 -greeting,bonjour,original,greet,4 -no,FALSE,original,cancel,3 -yes,great,original,book,1 -greeting,whats up?,parrot,greet,4 -thank_you,you've helped,parrot,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -yes,yes that's right,lambada,book,1 -no,naw,parrot,cancel,3 -goodbye,bye,original,bye,2 -no,not right?,parrot,cancel,3 -yes,definitely yes,parrot,book,1 -date,what's the date?,parrot,avail,0 -greeting,what's up,original,greet,4 -goodbye,goodbye!,original,bye,2 -goodbye,good-bye,parrot,bye,2 -date,what will be tomorrow?,parrot,avail,0 -schedule_meeting,could you schedule a meeting with carrie and lisa?,parrot,book,1 -yes,just right,parrot,book,1 -yes,accept,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -thank_you,you've tried,parrot,bye,2 -how_busy,how long will it take to get a table in olive garden?,parrot,avail,0 -no,not correct,parrot,cancel,3 -goodbye,get there soon,lambada,bye,2 -date,what date is tomorrow,parrot,avail,0 -goodbye,regards,original,bye,2 -calendar_update,clear my calendar on march 22nd,parrot,resched,5 -no,that's a false,lambada,cancel,3 -no,invalid,original,cancel,3 -thank_you,i love my pay check,parrot,bye,2 -yes,TRUE,lambada,book,1 -yes,good yes,lambada,book,1 -greeting,yo,original,greet,4 -thank_you,thanks,original,bye,2 -no,please no,parrot,cancel,3 -no,certainly false,parrot,cancel,3 -date,current date,original,avail,0 -goodbye,see you around,original,bye,2 -greeting,well hello,original,greet,4 -how_busy,how long is the wait time at chili's,lambada,avail,0 -thank_you,i appreciate the answer,parrot,bye,2 -thank_you,i am thankful,lambada,bye,2 -no,naw,original,cancel,3 -goodbye,bye-bye,original,bye,2 -schedule_meeting,i'd like to have a meeting with john at 6pm,parrot,book,1 -yes,yes you are,original,book,1 -thank_you,good job,lambada,bye,2 -yes,right,parrot,book,1 -goodbye,later goodbye,parrot,bye,2 -calendar,do i have any appointments on tuesday?,original,avail,0 -yes,agreed,original,book,1 -goodbye,buhbye now,lambada,bye,2 -greeting,hows are ya,original,greet,4 -greeting,ahoy there,lambada,greet,4 -no,but it's wrong,parrot,cancel,3 -yes,huh,parrot,book,1 -no,nope,original,cancel,3 -no,that's the wrong answer,parrot,cancel,3 -how_busy,what time is the restaurant opened?,parrot,avail,0 -goodbye,i'll leave,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -no,that isn't the right answer,original,cancel,3 -how_busy,how long does it take to get a table at red lobster?,parrot,avail,0 -reminder_update,remind me later,original,resched,5 -no,that's false,original,cancel,3 -meeting_schedule,when is my meeting with kara scheduled for?,lambada,avail,0 -how_busy,how busy will red robin be at 5pm?,parrot,avail,0 -goodbye,nice talk,lambada,bye,2 -yes,agreed,original,book,1 -goodbye,good luck tomorrow,lambada,bye,2 -greeting,welcome,parrot,greet,4 -goodbye,sign off,parrot,bye,2 -goodbye,take care then,parrot,bye,2 -no,erroneous,parrot,cancel,3 -no,no way,original,cancel,3 -thank_you,it's my debt,parrot,bye,2 -greeting,heller,original,greet,4 -yes,that would be correct,original,book,1 -greeting,so how's everything?,parrot,greet,4 -goodbye,bye bye,lambada,bye,2 -no,that's not it,parrot,cancel,3 -how_busy,how busy is the red robin around 5,lambada,avail,0 -cancel_reservation,i have to cancel my reservation for 5 at olive garden,parrot,cancel,3 -goodbye,"thanks for chatting, bye",lambada,bye,2 -yes,accept,parrot,book,1 -greeting,how you feel?,parrot,greet,4 -no,FALSE,lambada,cancel,3 -goodbye,bye bye!,original,bye,2 -goodbye,adios!,original,bye,2 -yes,yup,original,book,1 -greeting,whats up?,parrot,greet,4 -goodbye,good talk,parrot,bye,2 -how_busy,is the restaurant full at 7?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -goodbye,bye,original,bye,2 -goodbye,later,original,bye,2 -yes,yay,lambada,book,1 -thank_you,gracias,original,bye,2 -no,that is incorrect,original,cancel,3 -how_busy,tell me the time to wait for a seat at the bakery?,parrot,avail,0 -thank_you,thanks,original,bye,2 -calendar_update,this month we need to clear our calendar so that we can leave it open for mark to visit,parrot,resched,5 -goodbye,see you again soon,original,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -greeting,"hey, how's my day going",lambada,greet,4 -yes,it's definitely positive,parrot,book,1 -no,so that's no,parrot,cancel,3 -date,what day of the week?,parrot,avail,0 -reminder_update,set a reminder,original,resched,5 -thank_you,many thank,original,bye,2 -yes,good,parrot,book,1 -goodbye,sayonara,original,bye,2 -goodbye,bye now,original,bye,2 -greeting,salutations!,original,greet,4 -greeting,hello,original,greet,4 -no,that's so false,parrot,cancel,3 -greeting,whats new,lambada,greet,4 -goodbye,go easy,parrot,bye,2 -greeting,how's my day going,lambada,greet,4 -thank_you,why thank you?,original,bye,2 -greeting,"howdy, what's new",original,greet,4 -greeting,wassup,original,greet,4 -no,i think not,original,cancel,3 -reminder_update,set a new reminder for tomorrow at 4am,original,resched,5 -date,"15 days from today, what will the date be",original,avail,0 -no,FALSE,lambada,cancel,3 -how_busy,can you tell me how long the wait would be in olive garden?,parrot,avail,0 -date,what is the date of tomorrow?,original,avail,0 -greeting,hola!,original,greet,4 -greeting,how've you been?,parrot,greet,4 -yes,it's certainly positive,parrot,book,1 -greeting,what's new?,parrot,greet,4 -reminder_update,i need to remember,parrot,resched,5 -yes,oh-huh,parrot,book,1 -reminder_update,create a reminder to change my clothes,lambada,resched,5 -no,negating,parrot,cancel,3 -goodbye,i'll be talking to you later,lambada,bye,2 -greeting,hello are you doing okay?,parrot,greet,4 -no,that's false,original,cancel,3 -greeting,hello there!,original,greet,4 -greeting,hola!,original,greet,4 -greeting,how are you,original,greet,4 -thank_you,appreciated,original,bye,2 -greeting,hey there!,original,greet,4 -greeting,salutations!,original,greet,4 -how_busy,how long is the wait time for a tuscany ios roaster from noon to 5:00,lambada,avail,0 -goodbye,no problem goodbye,parrot,bye,2 -greeting,how's it hanging?,parrot,greet,4 -thank_you,thanks again,original,bye,2 -goodbye,peace out,original,bye,2 -meeting_schedule,do i have a meeting with paul today?,original,avail,0 -no,negatory?,parrot,cancel,3 -greeting,hey fellows,parrot,greet,4 -thank_you,thanks for my help!,original,bye,2 -yes,yay,lambada,book,1 -date,you have the date?,parrot,avail,0 -yes,yup,original,book,1 -thank_you,nice,parrot,bye,2 -date,what date is that?,parrot,avail,0 -thank_you,well done,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -greeting,heyo,original,greet,4 -date,tell me what day?,parrot,avail,0 -reminder_update,make me a reminder about booking,parrot,resched,5 -yes,sure,original,book,1 -goodbye,goodnight,original,bye,2 -goodbye,good conversation,parrot,bye,2 -greeting,how's that hanging?,parrot,greet,4 -goodbye,sayonara ,parrot,bye,2 -goodbye,bye bye!,original,bye,2 -how_busy,how long should i sit at carrabas?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -yes,sure,original,book,1 -how_busy,how long will i have to wait to go to the cheesecake factory?,parrot,avail,0 -calendar,do i have any scheduled events on my calendar for january 15th?,lambada,avail,0 -yes,"yup, that's correct",lambada,book,1 -thank_you,thanks!,original,bye,2 -yes,obviously,parrot,book,1 -no,erroneous,parrot,cancel,3 -goodbye,adios,original,bye,2 -goodbye,sayonara ,parrot,bye,2 -greeting,heller,original,greet,4 -how_busy,how busy will red robin be at noon,parrot,avail,0 -how_busy,how busy will the olive garden be around 7pm,parrot,avail,0 -yes,approved,original,book,1 -yes,just right,parrot,book,1 -thank_you,thanks again!,original,bye,2 -yes,of course,original,book,1 -yes,yeah,original,book,1 -how_busy,how long will i have to wait if i go to chili?,parrot,avail,0 -yes,approved,original,book,1 -thank_you,thanks!,original,bye,2 -yes,correct,original,book,1 -greeting,ahoy,lambada,greet,4 -thank_you,thanks for doing it,parrot,bye,2 -goodbye,will leave now,parrot,bye,2 -how_busy,how many people will be seated in the restaurant at 7pm?,parrot,avail,0 -yes,yes that's it,original,book,1 -yes,positive,parrot,book,1 -greeting,hi what's going on?,parrot,greet,4 -how_busy,how long will the wait be at the cheese cake factory right now?,parrot,avail,0 -no,that is overwhelmingly negative,lambada,cancel,3 -goodbye,good night,original,bye,2 -greeting,good to see you,original,greet,4 -how_busy,how long is the wait for a reservation at the pizza parlor,lambada,avail,0 -thank_you,thanks so much!,original,bye,2 -no,i'm saying no,parrot,cancel,3 -yes,i say yes,lambada,book,1 -goodbye,fairwell?,parrot,bye,2 -yes,agreed,original,book,1 -no,that's absolutely false,parrot,cancel,3 -how_busy,when is rancho crowded?,parrot,avail,0 -no,nope,original,cancel,3 -greeting,how've you been,original,greet,4 -calendar_update,to my calendar i have to add a date to get dressed,parrot,resched,5 -yes,oh-huh,parrot,book,1 -goodbye,nice talk,lambada,bye,2 -yes,that's correct,original,book,1 -how_busy,what is the waiting time at chippewa center?,lambada,avail,0 -greeting,aloha,original,greet,4 -greeting,ahoy there,lambada,greet,4 -yes,yeah yeah,lambada,book,1 -yes,i think it's right,parrot,book,1 -yes,positive,parrot,book,1 -no,i have to say no to that,parrot,cancel,3 -goodbye,goodbye now,parrot,bye,2 -yes,perfect,parrot,book,1 -yes,it is true,original,book,1 -schedule_meeting,help me arrange a meeting,parrot,book,1 -yes,correct,original,book,1 -goodbye,have fun?,lambada,bye,2 -how_busy,how long will i have to wait if i want to eat at panera,original,avail,0 -yes,oh-huh,parrot,book,1 -no,certainly not,original,cancel,3 -calendar,display my calendar,lambada,avail,0 -greeting,aloha,original,greet,4 -date,date tomorrow?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -how_busy,if you want a table at the american steak house how long will it take,parrot,avail,0 -schedule_meeting,a meeting room between one and two?,parrot,book,1 -thank_you,thanks for responding,parrot,bye,2 -goodbye,good bye,original,bye,2 -no,negative,original,cancel,3 -goodbye,later gator!,original,bye,2 -date,today?,parrot,avail,0 -goodbye,goodbye to yours,parrot,bye,2 -thank_you,you helped,parrot,bye,2 -yes,all right,original,book,1 -greeting,how've you been,original,greet,4 -how_busy,how long do you expect to wait at the cheese cake factory,lambada,avail,0 -yes,yep,original,book,1 -no,nothing,parrot,cancel,3 -goodbye,i'm out,parrot,bye,2 -date,what's the day tomorrow?,parrot,avail,0 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -greeting,whats new,lambada,greet,4 -schedule_meeting,please make a meeting room,lambada,book,1 -yes,that would be right,parrot,book,1 -greeting,how is life?,parrot,greet,4 -schedule_meeting,"between 9:00 am and 11:00 am, are there meeting rooms available",original,book,1 -yes,accepted,original,book,1 -greeting,whats up,original,greet,4 -goodbye,farewell,original,bye,2 -calendar_update,put cancel abc on my calendar for next thursday,original,resched,5 -no,no thanks,original,cancel,3 -yes,huh,parrot,book,1 -yes,uh-huh,original,book,1 -calendar_update,i have to add a doctor appointment to my calendar for the first time,parrot,resched,5 -yes,a real statement,parrot,book,1 -no,it's a negation,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -yes,all right,parrot,book,1 -no,no it's a no,parrot,cancel,3 -how_busy,what number of people are waiting in chili's around 9pm?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -thank_you,thanks so much,original,bye,2 -no,that's incorrect!,original,cancel,3 -yes,yes,original,book,1 -date,what's the date,original,avail,0 -thank_you,good looking out,original,bye,2 -goodbye,see ya!,original,bye,2 -goodbye,cya later,original,bye,2 -goodbye,bye,original,bye,2 -no,i wouldn't like that,parrot,cancel,3 -goodbye,see ya,lambada,bye,2 -cancel_reservation,i need to cancel my reservation after all,original,cancel,3 -calendar_update,i have to clear a date on my calendar for next friday,parrot,resched,5 -yes,yeah yeah,lambada,book,1 -how_busy,how long will the wait at olive garden be,lambada,avail,0 -goodbye,see ya,lambada,bye,2 -greeting,whats up?,parrot,greet,4 -how_busy,list the seating hours at the restaurant?,parrot,avail,0 -greeting,how's everything,original,greet,4 -greeting,how are you this day,original,greet,4 -no,that information is false,lambada,cancel,3 -greeting,hola,original,greet,4 -reminder_update,remember the meeting of tomorrow,parrot,resched,5 -no,certainly not,original,cancel,3 -date,i'd like to know what the day is today,parrot,avail,0 -goodbye,goodbye to you,original,bye,2 -greeting,hey hey!,original,greet,4 -yes,right,parrot,book,1 -no,i meant nothing,parrot,cancel,3 -greeting,hey how's my day?,parrot,greet,4 -no,it seems wrong,parrot,cancel,3 -date,today?,parrot,avail,0 -yes,sure,original,book,1 -how_busy,how long will the wait be at the restaurant?,parrot,avail,0 -thank_you,very grateful,parrot,bye,2 -greeting,wassup,original,greet,4 -yes,okay,original,book,1 -cancel_reservation,discard my dinner reservation,parrot,cancel,3 -yes,i'm going to tell you tes,parrot,book,1 -yes,yes that's it,original,book,1 -yes,definitely yes,parrot,book,1 -yes,sure,original,book,1 -no,negatory,original,cancel,3 -date,in five days?,parrot,avail,0 -yes,positive,parrot,book,1 -greeting,"hi, ai",original,greet,4 -date,today?,parrot,avail,0 -yes,"yeah, that's it",lambada,book,1 -greeting,how's my feeling?,parrot,greet,4 -greeting,aloha,original,greet,4 -thank_you,"oh, thanks",original,bye,2 -goodbye,bye!,original,bye,2 -goodbye,was fun seeing you,parrot,bye,2 -thank_you,i'm very thankful,parrot,bye,2 -greeting,hello there!,original,greet,4 -schedule_meeting,is it possible to schedule a meeting with matt for three?,parrot,book,1 -yes,indeed,parrot,book,1 -greeting,aho,parrot,greet,4 -goodbye,take it easy!,original,bye,2 -greeting,hello siri,original,greet,4 -yes,definitely,original,book,1 -greeting,salutations,parrot,greet,4 -greeting,how's it going,lambada,greet,4 -how_busy,tell me the time it takes to eat at olive garden,parrot,avail,0 -goodbye,see ya later,original,bye,2 -meeting_schedule,have any meetings scheduled today?,parrot,avail,0 -greeting,hello there,original,greet,4 -yes,uh-huh,original,book,1 -greeting,"ai, how are you doing",original,greet,4 -meeting_schedule,do i have meetings with anyone today?,original,avail,0 -goodbye,see ya,original,bye,2 -thank_you,i wanted to thank you,parrot,bye,2 -no,nope,original,cancel,3 -goodbye,bye-bye,original,bye,2 -greeting,how you are?,parrot,greet,4 -no,negative,original,cancel,3 -greeting,"hello, anyone there",original,greet,4 -greeting,aho,parrot,greet,4 -yes,confirm,original,book,1 -thank_you,good job thanks,parrot,bye,2 -how_busy,how long is the wait time at pizza oven,lambada,avail,0 -yes,that makes sense,lambada,book,1 -no,negative sure,parrot,cancel,3 -how_busy,what's the crowd like at red lobster around 830?,parrot,avail,0 -goodbye,i had a good run,parrot,bye,2 -thank_you,i'm very thankful,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -date,what is the day today?,lambada,avail,0 -thank_you,you helped,parrot,bye,2 -yes,huh,parrot,book,1 -goodbye,later!,original,bye,2 -goodbye,bye now,original,bye,2 -how_busy,is there a long wait at olive garden right now?,lambada,avail,0 -yes,ok,original,book,1 -yes,sure thing,original,book,1 -no,it seems like a no,lambada,cancel,3 -yes,affirmitive,original,book,1 -reminder_update,remember to make my cat a scratch,parrot,resched,5 -cancel_reservation,cancel my reservation at red robin,lambada,cancel,3 -greeting,whats up,original,greet,4 -reminder_update,remind me to clean my house today,parrot,resched,5 -goodbye,talk later,original,bye,2 -goodbye,later,original,bye,2 -no,i'd prefer not to answer,parrot,cancel,3 -goodbye,buhbye now,lambada,bye,2 -date,give me the date for tomorrow,parrot,avail,0 -greeting,hello how are things?,parrot,greet,4 -yes,is true,parrot,book,1 -no,i'll pass,original,cancel,3 -greeting,hiya,original,greet,4 -goodbye,peace out,original,bye,2 -thank_you,you helped me,parrot,bye,2 -no,false for sure,original,cancel,3 -cancel_reservation,can you tell the restaurant to cancel my dinner reservation?,parrot,cancel,3 -how_busy,how long will i have to wait at red lobster if i want to dine at 4:30,lambada,avail,0 -greeting,how is the car doing,lambada,greet,4 -thank_you,you gave me this,parrot,bye,2 -calendar_update,it's going to be changed for the dpo to have dinner with the victorian on 1 may,parrot,resched,5 -greeting,aho,parrot,greet,4 -how_busy,is it always crowded?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -goodbye,sayonara,original,bye,2 -goodbye,adios,original,bye,2 -reminder_update,please remind me,parrot,resched,5 -yes,confirm,original,book,1 -greeting,how's idy?,parrot,greet,4 -meeting_schedule,check the calendar today for meetings,parrot,avail,0 -thank_you,you have done well,lambada,bye,2 -yes,roger that,original,book,1 -date,what month and day?,parrot,avail,0 -thank_you,i want to thank you for the response,parrot,bye,2 -how_busy,how long will it take me to get a table at chili's?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -meeting_schedule,are there any meetings on my calendar for today?,parrot,avail,0 -date,what day?,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -greeting,salutation,parrot,greet,4 -schedule_meeting,is it possible to book a meeting?,parrot,book,1 -yes,yep,original,book,1 -no,it'd be awful,parrot,cancel,3 -how_busy,is ziggy busy at dinner?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -greeting,how are you today?,parrot,greet,4 -yes,TRUE,lambada,book,1 -thank_you,thanks for the information,parrot,bye,2 -thank_you,many thank,original,bye,2 -yes,ok,original,book,1 -greeting,hi how's everything?,parrot,greet,4 -thank_you,thanks!,original,bye,2 -thank_you,thanks!,original,bye,2 -no,"no, that's incorrect",original,cancel,3 -schedule_meeting,i want you to schedule a meeting with carrie and lisa,original,book,1 -no,it's actually false,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -meeting_schedule,what is my schedule for today?,parrot,avail,0 -how_busy,can you tell me if there's a lot of wait time at the cheesecake factory?,parrot,avail,0 -yes,i guess you're right,parrot,book,1 -thank_you,thanks!,original,bye,2 -goodbye,goodbye now,parrot,bye,2 -thank_you,thanks!,original,bye,2 -no,that's incorrect!,original,cancel,3 -thank_you,thanks for this information,lambada,bye,2 -yes,yeah,original,book,1 -no,that is so false,original,cancel,3 -goodbye,"no problem, goodbye",lambada,bye,2 -thank_you,the best,parrot,bye,2 -yes,yeap,original,book,1 -goodbye,fairwell?,parrot,bye,2 -greeting,hey how's life,original,greet,4 -date,today?,parrot,avail,0 -no,but it's false,parrot,cancel,3 -date,in eight days?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -no,erroneous,parrot,cancel,3 -no,sure it's wrong,parrot,cancel,3 -goodbye,bye for now,original,bye,2 -no,that's negative,parrot,cancel,3 -thank_you,"awesome, thanks",original,bye,2 -cancel_reservation,cancel my reservation for five at the red robin,lambada,cancel,3 -yes,i know,parrot,book,1 -yes,good yes,lambada,book,1 -no,negative,original,cancel,3 -reminder_update,come on please,parrot,resched,5 -how_busy,what's the average wait time at chris brown's?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -thank_you,you've tried,parrot,bye,2 -greeting,hola!,original,greet,4 -greeting,whats up?,parrot,greet,4 -no,negative,original,cancel,3 -thank_you,awesome thanks,parrot,bye,2 -yes,confirmed,original,book,1 -yes,that will be true,original,book,1 -calendar,i need to see calendar for february 24th,lambada,avail,0 -yes,TRUE,lambada,book,1 -goodbye,bye bye,lambada,bye,2 -yes,positive,original,book,1 -no,don't agree,parrot,cancel,3 -goodbye,great talk,lambada,bye,2 -no,nada,original,cancel,3 -yes,huh,parrot,book,1 -how_busy,what will the olive garden be like at 10 o'clock in the morning?,parrot,avail,0 -goodbye,as regards,parrot,bye,2 -greeting,hiya,original,greet,4 -greeting,hey fellow,parrot,greet,4 -yes,say positive,parrot,book,1 -calendar,is bowling in my calendar?,parrot,avail,0 -how_busy,what is the crowd at the red lobster?,parrot,avail,0 -goodbye,adios!,original,bye,2 -date,date tomorrow,parrot,avail,0 -no,it is false,original,cancel,3 -greeting,whats up?,parrot,greet,4 -thank_you,"awesome, thanks",original,bye,2 -yes,right,parrot,book,1 -goodbye,wonderful conversation,lambada,bye,2 -how_busy,how long after 7pm,parrot,avail,0 -yes,okay,original,book,1 -greeting,"hello, friend",original,greet,4 -greeting,wassup,original,greet,4 -how_busy,is imbrosio busy around 6?,lambada,avail,0 -yes,yeah,original,book,1 -no,say negative,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -goodbye,good conversation,parrot,bye,2 -calendar,does my calendar have anything for january 1st?,original,avail,0 -goodbye,goodbye then,parrot,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -yes,positive,original,book,1 -goodbye,the conversation was good,parrot,bye,2 -greeting,and how's it going,parrot,greet,4 -goodbye,i've got to go,lambada,bye,2 -how_busy,how busy will garlic bread be at 5,lambada,avail,0 -goodbye,bye!,original,bye,2 -greeting,you're all right?,parrot,greet,4 -yes,agreed,original,book,1 -no,naw,original,cancel,3 -greeting,hiya!,original,greet,4 -no,that's wrong,original,cancel,3 -greeting,what's up,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,later goodbye,parrot,bye,2 -yes,"yes, please",parrot,book,1 -how_busy,how long will the wait time be at the burger joint,lambada,avail,0 -meeting_schedule,do meetings with jimmy go on between 5 and 10?,parrot,avail,0 -calendar,do i have any events on the calendar for tuesday?,lambada,avail,0 -date,what year is this?,parrot,avail,0 -yes,TRUE,original,book,1 -how_busy,what's the wait at the red lobster restaurant?,parrot,avail,0 -greeting,good day,original,greet,4 -yes,approved,original,book,1 -greeting,how's it going now?,parrot,greet,4 -cancel_reservation,i need to cancel my reservation for 5 at olive garden,lambada,cancel,3 -goodbye,i'm outta here!,original,bye,2 -how_busy,how long will it take for me to sit at ihop,parrot,avail,0 -how_busy,is ihop busy?,parrot,avail,0 -how_busy,is there alot of people at st robert's right now?,lambada,avail,0 -goodbye,afterward,parrot,bye,2 -yes,yep,original,book,1 -schedule_meeting,can you help me with my meeting?,parrot,book,1 -goodbye,later goodbye,parrot,bye,2 -greeting,heyo,original,greet,4 -thank_you,i appreciate the help,original,bye,2 -goodbye,as regards,parrot,bye,2 -meeting_schedule,please read my schedule,parrot,avail,0 -goodbye,farewell,original,bye,2 -no,please no,parrot,cancel,3 -how_busy,why's the chili busy at noon?,parrot,avail,0 -goodbye,say goodbye now,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -reminder_update,you have to remind me,parrot,resched,5 -goodbye,lovely conversation,parrot,bye,2 -greeting,hey yai,lambada,greet,4 -greeting,tell me about my neighborhood,parrot,greet,4 -how_busy,can you tell me what the wait is like right now at olive garden?,lambada,avail,0 -no,absolutely false,parrot,cancel,3 -no,not correct,parrot,cancel,3 -thank_you,i really thank you,original,bye,2 -greeting,welcome,parrot,greet,4 -yes,positive,original,book,1 -greeting,how's everything?,parrot,greet,4 -greeting,hiya!,original,greet,4 -reminder_update,i need a reminder to give the dog his medicine at ten tonight,original,resched,5 -yes,"yes, please",parrot,book,1 -yes,indeed,original,book,1 -no,negation,parrot,cancel,3 -no,nope,original,cancel,3 -greeting,how is my situation?,parrot,greet,4 -no,certainly false,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -how_busy,is michel busy at 9?,parrot,avail,0 -cancel_reservation,cancel my reservation with carl in umami?,parrot,cancel,3 -yes,a fact,parrot,book,1 -goodbye,i'm leaving,parrot,bye,2 -no,that's so false,parrot,cancel,3 -date,date tomorrow?,parrot,avail,0 -how_busy,i want to know how many people frequent tacoma swans,parrot,avail,0 -goodbye,sign off,parrot,bye,2 -reminder_update,give me a reminder to do something nice in new york?,parrot,resched,5 -goodbye,maybe i'll see you,parrot,bye,2 -goodbye,i'd like to talk to you,parrot,bye,2 -goodbye,fairwell,original,bye,2 -thank_you,thank a bunch,original,bye,2 -goodbye,bye!,original,bye,2 -greeting,salutations,parrot,greet,4 -no,not right,parrot,cancel,3 -no,no good,original,cancel,3 -date,tell me what the day will be?,parrot,avail,0 -yes,yes,original,book,1 -how_busy,does the pizza factory have a long wait for us?,parrot,avail,0 -yes,TRUE,original,book,1 -calendar_update,remove moms birthday from calendar,original,resched,5 -yes,indeed,original,book,1 -goodbye,goodnight,original,bye,2 -yes,confirm i'm on the correct list,parrot,book,1 -how_busy,how long will it be to get seated at macaroni grill,lambada,avail,0 -yes,agreed,original,book,1 -greeting,how is it going?,parrot,greet,4 -yes,obviously,parrot,book,1 -cancel_reservation,please cancel my reservation for phillips at the bernardin's,parrot,cancel,3 -thank_you,you helped,parrot,bye,2 -yes,"yeah, that's right",original,book,1 -meeting_schedule,when is the meeting today?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -greeting,hi,original,greet,4 -how_busy,can i expect a long wait at the chocolate fountain?,parrot,avail,0 -yes,TRUE,lambada,book,1 -greeting,hello how are things?,parrot,greet,4 -no,naw,original,cancel,3 -yes,that'd be great,parrot,book,1 -greeting,hola,original,greet,4 -calendar_update,this month we need to clear our calendar so that we can leave it open for mark to visit,parrot,resched,5 -how_busy,how long will it take to eat at cheese cake factory,lambada,avail,0 -greeting,so what's up?,parrot,greet,4 -greeting,hiya,original,greet,4 -thank_you,thanks!,original,bye,2 -goodbye,it's over,parrot,bye,2 -yes,huh huh,parrot,book,1 -greeting,whats up?,parrot,greet,4 -yes,"yes, that is accurate",original,book,1 -thank_you,"great, thanks!",original,bye,2 -yes,TRUE,original,book,1 -goodbye,goodbye!,original,bye,2 -no,invalid,original,cancel,3 -yes,definitely yes,parrot,book,1 -goodbye,see ya,lambada,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -goodbye,goodbye helpful ai devices,parrot,bye,2 -meeting_schedule,the meetings today,parrot,avail,0 -no,no it's not,parrot,cancel,3 -greeting,how's ayi doing?,parrot,greet,4 -how_busy,how long can i expect to wait in this restaurant?,parrot,avail,0 -calendar,do you have any events planned for tuesday?,parrot,avail,0 -yes,positive,parrot,book,1 -no,not so i think,parrot,cancel,3 -how_busy,the restaurant is busy at night?,parrot,avail,0 -no,yes that's false,lambada,cancel,3 -thank_you,that's what you did,parrot,bye,2 -no,that’s actually wrong,original,cancel,3 -goodbye,thanks for the chat,parrot,bye,2 -no,that's inaccurate,original,cancel,3 -yes,positive,parrot,book,1 -schedule_meeting,mae and i need to schedule a meeting,parrot,book,1 -greeting,wassup,original,greet,4 -yes,i believe it is true,parrot,book,1 -yes,ok,original,book,1 -no,that's very false,parrot,cancel,3 -date,calender says tomorrow is,original,avail,0 -calendar_update,i must add my grocery list to my calendar for the day,parrot,resched,5 -greeting,salutations,parrot,greet,4 -no,naw,parrot,cancel,3 -calendar,do i have something on my calendar for next sunday?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -how_busy,what is the wait time at chinese restaurant?,lambada,avail,0 -how_busy,tell me how busy the restaurant is at 5 pm,parrot,avail,0 -goodbye,see ya!,original,bye,2 -greeting,salutation,parrot,greet,4 -yes,approved,original,book,1 -cancel_reservation,cancel the reservation for dinner,lambada,cancel,3 -how_busy,is an american restaurant busy at 900 am?,parrot,avail,0 -greeting,how's everything,original,greet,4 -yes,yes,original,book,1 -yes,ok,original,book,1 -greeting,salutation,parrot,greet,4 -date,current date,original,avail,0 -no,nada,original,cancel,3 -calendar_update,clear my calendar for november 11,parrot,resched,5 -no,"no, definitely not",original,cancel,3 -no,it's false,parrot,cancel,3 -how_busy,is the restaurant going to have a busy wait at 10am?,parrot,avail,0 -no,that's inaccurate,original,cancel,3 -meeting_schedule,are there meetings from 10 to 4?,parrot,avail,0 -thank_you,thanks for answering,parrot,bye,2 -greeting,what's new,lambada,greet,4 -date,please let me know what the date is tomorrow,parrot,avail,0 -no,no thanks,original,cancel,3 -greeting,hola,original,greet,4 -goodbye,bye,original,bye,2 -greeting,what's happening?,parrot,greet,4 -yes,"correct, that's true",original,book,1 -no,what you've said is false?,parrot,cancel,3 -yes,uh huh,original,book,1 -goodbye,"thanks, bye",original,bye,2 -thank_you,appreciate it,original,bye,2 -goodbye,fairwell,original,bye,2 -schedule_meeting,how do i schedule meetings?,parrot,book,1 -reminder_update,would you like a reminder?,parrot,resched,5 -goodbye,"i enjoyed our talk, bye",original,bye,2 -date,what is tomorrow's date?,original,avail,0 -date,today?,parrot,avail,0 -no,nothing,parrot,cancel,3 -date,when will it be?,parrot,avail,0 -greeting,well hello,original,greet,4 -how_busy,i want to know how busy red robin is at 6pm,parrot,avail,0 -greeting,hola,original,greet,4 -calendar_update,i need to delete an event from my calendar,original,resched,5 -no,FALSE,lambada,cancel,3 -no,nope,original,cancel,3 -yes,indeed,original,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,hi there,original,greet,4 -goodbye,good bye,original,bye,2 -no,negatory?,parrot,cancel,3 -thank_you,i thank you,original,bye,2 -no,i mean no,parrot,cancel,3 -how_busy,there's a cheesecake factory,parrot,avail,0 -goodbye,adios!,original,bye,2 -yes,accepted,original,book,1 -how_busy,how busy is jiro at 12,lambada,avail,0 -date,describe the day?,parrot,avail,0 -date,what's the date of day?,parrot,avail,0 -yes,TRUE,lambada,book,1 -yes,certainly,parrot,book,1 -yes,accepted,original,book,1 -thank_you,my gratitude,parrot,bye,2 -calendar_update,remove the date from my calendar,parrot,resched,5 -greeting,how's ai feeling?,parrot,greet,4 -goodbye,have to go now,parrot,bye,2 -yes,is true,parrot,book,1 -no,negating,parrot,cancel,3 -greeting,hiya!,original,greet,4 -yes,huh,parrot,book,1 -yes,right,parrot,book,1 -yes,certainly true,parrot,book,1 -calendar,tell me the date on my calendar for my birthday?,parrot,avail,0 -calendar,tell me what we're doing on friday,parrot,avail,0 -thank_you,you've tried,parrot,bye,2 -how_busy,waiting at cheeseburgers?,parrot,avail,0 -cancel_reservation,the reservation i have is no longer needed,parrot,cancel,3 -greeting,hello there!,original,greet,4 -meeting_schedule,tell me when my meeting with roger is?,parrot,avail,0 -no,naw,parrot,cancel,3 -cancel_reservation,can you cancel my reservation for 6 at red lobster?,parrot,cancel,3 -greeting,"hello, friend",original,greet,4 -date,is it monday wednesday friday or saturday?,parrot,avail,0 -date,today?,parrot,avail,0 -thank_you,i'm excited for my help,parrot,bye,2 -how_busy,is the friday full after four?,parrot,avail,0 -thank_you,thanks for helping,original,bye,2 -no,negative,original,cancel,3 -greeting,hola!,original,greet,4 -goodbye,goodbye then,parrot,bye,2 -goodbye,ai goodbye,original,bye,2 -no,most definitely false,parrot,cancel,3 -calendar_update,i need to add my doctor's appointment to my calendar for the first time,parrot,resched,5 -schedule_meeting,is there a meeting room available between 10 and 11 hours?,parrot,book,1 -goodbye,goodbye,original,bye,2 -greeting,how is idy doing?,parrot,greet,4 -greeting,salutation,parrot,greet,4 -how_busy,does the restaurant get crowded at night?,parrot,avail,0 -yes,ok,original,book,1 -yes,definitely,original,book,1 -no,that's totally wrong!,original,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,the negator,parrot,cancel,3 -goodbye,for now,parrot,bye,2 -no,i am saying no,original,cancel,3 -greeting,it's good to see you,original,greet,4 -no,no that's not accurate,parrot,cancel,3 -reminder_update,keep an eye on me,parrot,resched,5 -greeting,hiya,original,greet,4 -reminder_update,i'd like to set up a reminder to give my boss the paycheck,parrot,resched,5 -yes,yeah,original,book,1 -how_busy,how busy do you have to be to get a table in this restaurant?,parrot,avail,0 -greeting,what's happening to you?,parrot,greet,4 -date,please explain today,parrot,avail,0 -no,not good,parrot,cancel,3 -no,no please,parrot,cancel,3 -calendar,please tell me what's on my calendar for march 30th,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -no,no!,original,cancel,3 -greeting,heller,original,greet,4 -how_busy,how busy is the olive garden now?,parrot,avail,0 -reminder_update,please remember me,parrot,resched,5 -schedule_meeting,can you sign me up for an meeting in the blue room at 8 am?,lambada,book,1 -greeting,"hello, friend",original,greet,4 -greeting,"hi, ai",original,greet,4 -no,i would rather not,lambada,cancel,3 -yes,uh-huh,original,book,1 -thank_you,appreciated,original,bye,2 -calendar,tell me what i have scheduled for march 19?,lambada,avail,0 -goodbye,sayonara ,parrot,bye,2 -greeting,hello hello good morning,parrot,greet,4 -thank_you,thankyou,parrot,bye,2 -date,what date is tomorrow?,original,avail,0 -thank_you,you answered,parrot,bye,2 -thank_you,thanks please,original,bye,2 -goodbye,see ya,lambada,bye,2 -date,what month is today?,parrot,avail,0 -thank_you,you know i'm grateful,parrot,bye,2 -cancel_reservation,please unreserve that table,original,cancel,3 -greeting,what's happened?,parrot,greet,4 -date,what's my tomorrow date?,parrot,avail,0 -goodbye,i have to get going,original,bye,2 -goodbye,tootles,original,bye,2 -yes,yes you are correct,original,book,1 -yes,accepted,original,book,1 -yes,agreed,original,book,1 -goodbye,will leave now,parrot,bye,2 -how_busy,how busy is mcdonalds?,parrot,avail,0 -no,nothing,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -date,date tomorrow,parrot,avail,0 -goodbye,have fun?,lambada,bye,2 -thank_you,the best,parrot,bye,2 -yes,okay,original,book,1 -yes,"yes, that's right",original,book,1 -yes,uh-huh,original,book,1 -yes,certainly,parrot,book,1 -no,that's so wrong,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -schedule_meeting,i would like to know if there are meeting rooms available between 930 and 1130,parrot,book,1 -goodbye,afterward,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -yes,okay,original,book,1 -yes,"yep, let's do that",lambada,book,1 -greeting,hello hello good morning,parrot,greet,4 -thank_you,thanks again!,original,bye,2 -thank_you,nice,parrot,bye,2 -yes,accepted,original,book,1 -reminder_update,is it possible to set a reminder to pay the bills?,parrot,resched,5 -date,what will be the date in 64 days?,parrot,avail,0 -calendar,show me the things i have going on for 1212?,parrot,avail,0 -yes,great,original,book,1 -thank_you,thanks again!,original,bye,2 -thank_you,special thanks to you ,parrot,bye,2 -yes,absolutely!,original,book,1 -yes,ok,original,book,1 -yes,accepted,original,book,1 -goodbye,bye-bye,original,bye,2 -goodbye,fairwell,original,bye,2 -greeting,aho,parrot,greet,4 -goodbye,sayonara ,parrot,bye,2 -cancel_reservation,i have to cancel my reservation after that,parrot,cancel,3 -no,no?,parrot,cancel,3 -no,nay,original,cancel,3 -yes,yup,original,book,1 -yes,good,parrot,book,1 -goodbye,afterward,parrot,bye,2 -greeting,how's everything,original,greet,4 -greeting,bonjour,original,greet,4 -greeting,whats new,lambada,greet,4 -calendar,tell me what's on my calendar for march 20th,parrot,avail,0 -reminder_update,make me a reminder to pay my rent,lambada,resched,5 -calendar,tell me what my calendar looks like for march 28th?,parrot,avail,0 -yes,10-Apr,original,book,1 -yes,it's true,original,book,1 -goodbye,goodbyes,parrot,bye,2 -thank_you,you're special thanks,parrot,bye,2 -no,negation,parrot,cancel,3 -schedule_meeting,help me set up a meeting,lambada,book,1 -goodbye,you've been talking to me,parrot,bye,2 -yes,so it works,parrot,book,1 -yes,indeed,original,book,1 -yes,10-Apr,original,book,1 -greeting,hi,original,greet,4 -no,is not true?,parrot,cancel,3 -yes,it seems true,parrot,book,1 -no,negative,original,cancel,3 -how_busy,how long will the restaurant be after noon?,parrot,avail,0 -date,date tomorrow,parrot,avail,0 -no,negative,original,cancel,3 -no,nay,original,cancel,3 -goodbye,good night,original,bye,2 -greeting,aloha,original,greet,4 -thank_you,thankyou,parrot,bye,2 -goodbye,adios ai,original,bye,2 -how_busy,is it always crowded?,parrot,avail,0 -reminder_update,remind me to put gas in my car,original,resched,5 -how_busy,how long will it take to get to the red lobster,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -yes,absolutely,original,book,1 -greeting,hola,original,greet,4 -no,not that,original,cancel,3 -yes,that's true,original,book,1 -greeting,hey how's it hanging,original,greet,4 -thank_you,did you do well?,parrot,bye,2 -yes,confirmed,original,book,1 -goodbye,good-bye,parrot,bye,2 -greeting,welcome,parrot,greet,4 -yes,accepted,original,book,1 -no,so that's no,parrot,cancel,3 -thank_you,i appeciate it,original,bye,2 -meeting_schedule,what's my meeting calendar?,parrot,avail,0 -no,invalid,original,cancel,3 -no,"no, that would be a no",lambada,cancel,3 -greeting,hello,original,greet,4 -goodbye,i enjoyed our goodbye,parrot,bye,2 -yes,affirmative,original,book,1 -thank_you,thanks a lot,original,bye,2 -yes,i agree,original,book,1 -date,today?,parrot,avail,0 -yes,ya,original,book,1 -goodbye,bye now,original,bye,2 -goodbye,please talk soon,parrot,bye,2 -greeting,"hello, how are you",original,greet,4 -yes,yup,original,book,1 -yes,perfect,parrot,book,1 -date,what's the date it'll be?,parrot,avail,0 -greeting,how is idy?,parrot,greet,4 -how_busy,how long will the wait be at the red lobster,parrot,avail,0 -goodbye,peace out,original,bye,2 -no,it's actually false,parrot,cancel,3 -yes,TRUE,lambada,book,1 -date,and what's the day?,parrot,avail,0 -thank_you,you were a big help,parrot,bye,2 -no,FALSE,lambada,cancel,3 -calendar_update,make sure the trip to the summit is clear on my calendar,parrot,resched,5 -yes,it's certainly true,parrot,book,1 -no,false sure,parrot,cancel,3 -yes,TRUE,original,book,1 -thank_you,my sincere thanks,parrot,bye,2 -greeting,how's everything?,parrot,greet,4 -goodbye,buhbye,original,bye,2 -thank_you,much obliged,original,bye,2 -yes,oh-huh,parrot,book,1 -yes,i want to confirm it,parrot,book,1 -yes,i believe it's true,lambada,book,1 -how_busy,how busy is chili's at 7pm,lambada,avail,0 -yes,that's true,original,book,1 -thank_you,thank you!,original,bye,2 -how_busy,how long will it take to eat a red lobster? ,parrot,avail,0 -thank_you,thanks,original,bye,2 -thank_you,you're welcome,parrot,bye,2 -yes,TRUE,lambada,book,1 -thank_you,"oh, thanks",original,bye,2 -yes,that is true,original,book,1 -yes,definitely yes,parrot,book,1 -yes,exactly right,original,book,1 -cancel_reservation,get rid of my reservation at the steakhouse,lambada,cancel,3 -no,no?,parrot,cancel,3 -reminder_update,remember to check the steak,parrot,resched,5 -greeting,how's it with you?,parrot,greet,4 -yes,i want that,parrot,book,1 -yes,right,parrot,book,1 -yes,definitely,original,book,1 -yes,definitely,original,book,1 -no,that's untrue,parrot,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -greeting,hey,original,greet,4 -no,negative,original,cancel,3 -date,please share the date today,parrot,avail,0 -greeting,how's ai doing?,parrot,greet,4 -no,it's not true it's not true,parrot,cancel,3 -thank_you,"oh, thanks",original,bye,2 -no,that's false,original,cancel,3 -yes,absolutely,original,book,1 -meeting_schedule,what are my calendar appointments?,parrot,avail,0 -greeting,wake up ai,parrot,greet,4 -how_busy,how busy is mishawaka?,parrot,avail,0 -date,let me know what date,parrot,avail,0 -yes,good yes,lambada,book,1 -thank_you,thanks again,original,bye,2 -yes,good yes,lambada,book,1 -greeting,wassup,original,greet,4 -how_busy,how long will the wait at the cheesecake factory be?,parrot,avail,0 -greeting,hey,original,greet,4 -goodbye,greetings,parrot,bye,2 -goodbye,i'm going,parrot,bye,2 -yes,indeed,original,book,1 -greeting,and how's it going,parrot,greet,4 -thank_you,thank you,original,bye,2 -goodbye,i'm outta here!,original,bye,2 -yes,it's positive,parrot,book,1 -goodbye,later goodbye,parrot,bye,2 -yes,uh-huh,original,book,1 -yes,sure thing,original,book,1 -yes,yes that's it,original,book,1 -no,negatory?,parrot,cancel,3 -greeting,ahoy,lambada,greet,4 -yes,indeed,original,book,1 -reminder_update,i must be notified of maintenance reminders,parrot,resched,5 -reminder_update,remind me to clean the room,parrot,resched,5 -no,false sure,parrot,cancel,3 -goodbye,fairwell,original,bye,2 -yes,yes please,original,book,1 -yes,of course,original,book,1 -goodbye,bye-bye,original,bye,2 -no,certainly not,original,cancel,3 -no,so that's no,parrot,cancel,3 -yes,i agree,original,book,1 -thank_you,it's my debt,parrot,bye,2 -date,please tell me what the day is today,parrot,avail,0 -calendar,tell me what's on my calendar for april 15,parrot,avail,0 -yes,say yes,lambada,book,1 -date,when will it be eight days?,parrot,avail,0 -yes,that will be true,original,book,1 -yes,uh huh,original,book,1 -yes,i think you're right,parrot,book,1 -no,no it's not true,parrot,cancel,3 -yes,obviously,parrot,book,1 -schedule_meeting,are any rooms available from 5 to 9?,lambada,book,1 -yes,a fact,parrot,book,1 -yes,yup,original,book,1 -thank_you,your response is appreciated,parrot,bye,2 -reminder_update,a new reminder,parrot,resched,5 -meeting_schedule,what meetings are on my agenda today?,lambada,avail,0 -thank_you,okay thanks,original,bye,2 -how_busy,wait how long on fridays,parrot,avail,0 -yes,positive,parrot,book,1 -greeting,hiya,original,greet,4 -goodbye,afterward,parrot,bye,2 -goodbye,i'll leave,parrot,bye,2 -greeting,how's life?,parrot,greet,4 -no,that is false,original,cancel,3 -goodbye,see ya,lambada,bye,2 -cancel_reservation,let you know i have to cancel my reservation for dinner,parrot,cancel,3 -yes,all right,original,book,1 -schedule_meeting,help me schedule a meeting,original,book,1 -greeting,good evening,original,greet,4 -yes,facts,original,book,1 -yes,that's correct,original,book,1 -calendar,please tell me what is on my calendar for march 25?,parrot,avail,0 -yes,do that?,original,book,1 -no,naw,parrot,cancel,3 -goodbye,later!,original,bye,2 -no,negatory,original,cancel,3 -no,no that isn't the case,original,cancel,3 -how_busy,how busy will olive garden be at 3:30 pm,lambada,avail,0 -yes,absolutely,original,book,1 -yes,ok,original,book,1 -goodbye,wonderful conversation,lambada,bye,2 -goodbye,fairwell,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -yes,uh huh,original,book,1 -goodbye,buhbye,original,bye,2 -goodbye,adios!,original,bye,2 -goodbye,goodbye!,original,bye,2 -greeting,"howdy, what's new",original,greet,4 -yes,huh huh,parrot,book,1 -goodbye,adios ai,original,bye,2 -no,not correct,parrot,cancel,3 -how_busy,can you tell me how long the wait is at olive garden currently?,lambada,avail,0 -how_busy,waiting at cheeseburgers?,parrot,avail,0 -calendar,what's tuesday's calendar?,parrot,avail,0 -date,'what's the date today?',parrot,avail,0 -goodbye,later gater,original,bye,2 -thank_you,i'm glad that you helped me,parrot,bye,2 -greeting,how was my day?,parrot,greet,4 -how_busy,tell me how busy red robin is at 7pm?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -date,list the current date?,parrot,avail,0 -yes,sure thing,original,book,1 -greeting,how are things?,parrot,greet,4 -thank_you,appreciate the support,parrot,bye,2 -yes,okay,original,book,1 -thank_you,nice,parrot,bye,2 -greeting,how goes it,original,greet,4 -goodbye,goodbye goodbye,parrot,bye,2 -no,no no thanks,parrot,cancel,3 -no,that’s incorrect,original,cancel,3 -no,negating,parrot,cancel,3 -greeting,heyo,original,greet,4 -yes,facts,original,book,1 -goodbye,the conversation was good,parrot,bye,2 -yes,"yes, please",parrot,book,1 -yes,right,parrot,book,1 -greeting,how's everything,original,greet,4 -how_busy,can you tell me how busy chili's will be at 6:30?,lambada,avail,0 -yes,is true,parrot,book,1 -no,i'm going to say no,lambada,cancel,3 -greeting,what's happened?,parrot,greet,4 -how_busy,can you tell me how long will there be wait in order to get a table at red lobster?,lambada,avail,0 -goodbye,nice to see you,original,bye,2 -goodbye,maybe next time,parrot,bye,2 -goodbye,tata for now,original,bye,2 -no,FALSE,original,cancel,3 -greeting,how's it going?,parrot,greet,4 -cancel_reservation,can i cancel the reservation?,lambada,cancel,3 -no,so that's no,parrot,cancel,3 -calendar,pull up my calendar and tell me what i have planned for march 30th '',parrot,avail,0 -greeting,heyo,original,greet,4 -goodbye,take care then,parrot,bye,2 -goodbye,come on soon,parrot,bye,2 -date,today?,parrot,avail,0 -no,that is wrong,original,cancel,3 -yes,but i think you're right,parrot,book,1 -goodbye,"thanks for my chat, goodbye",lambada,bye,2 -thank_you,i thank you,original,bye,2 -goodbye,later gator!,original,bye,2 -no,that's bad,parrot,cancel,3 -how_busy,how long will it take for ios to serve dinner?,parrot,avail,0 -calendar_update,can you change the date of the doctor's appointment in my calendar from april 1 to april 3rd?,parrot,resched,5 -how_busy,wait for red lobster?,parrot,avail,0 -no,no,lambada,cancel,3 -goodbye,later i'll talk to you,parrot,bye,2 -thank_you,gracias,original,bye,2 -goodbye,sayonara,original,bye,2 -goodbye,cya later,original,bye,2 -no,nothing,parrot,cancel,3 -yes,great,original,book,1 -cancel_reservation,cancellation of the dinner reservation,parrot,cancel,3 -greeting,hiya,original,greet,4 -yes,accept,parrot,book,1 -goodbye,im leaving,parrot,bye,2 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -no,no,lambada,cancel,3 -goodbye,bye,original,bye,2 -goodbye,i'll leave,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -greeting,what's up,original,greet,4 -date,current date,original,avail,0 -calendar_update,cancel a doctor appointment from my calendar,parrot,resched,5 -goodbye,i was talking to you,parrot,bye,2 -meeting_schedule,do you have a meeting today?,parrot,avail,0 -no,that's not what i want!,original,cancel,3 -no,nothing good,parrot,cancel,3 -reminder_update,make me remember to pay my taxes,parrot,resched,5 -greeting,yo,original,greet,4 -goodbye,was on a great run?,parrot,bye,2 -no,"no, don't do that",original,cancel,3 -yes,confirmed,original,book,1 -calendar_update,remove the anniversary from my calendar,parrot,resched,5 -no,no,lambada,cancel,3 -how_busy,the mcdonald's at 9 o'clock?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -greeting,hello,original,greet,4 -greeting,hola!,original,greet,4 -greeting,salutations,parrot,greet,4 -greeting,"hi, ai",original,greet,4 -yes,"yes, that is right",original,book,1 -yes,"yeah, that's right",original,book,1 -greeting,hey fellows,parrot,greet,4 -goodbye,goodnight,original,bye,2 -no,this is false,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -no,say negative,parrot,cancel,3 -greeting,how's life,original,greet,4 -goodbye,i’m leaving-goodbye!,original,bye,2 -yes,perfect,parrot,book,1 -no,negating,parrot,cancel,3 -thank_you,very grateful,parrot,bye,2 -yes,indeed,original,book,1 -no,no good,original,cancel,3 -greeting,wassup,original,greet,4 -yes,good,parrot,book,1 -no,invalid,original,cancel,3 -calendar,what's tuesday's calendar?,parrot,avail,0 -goodbye,bye!,original,bye,2 -yes,exactly right,original,book,1 -how_busy,how busy is the yugioh lunch center around noon?,parrot,avail,0 -greeting,how things go?,parrot,greet,4 -goodbye,"later, goodbye",lambada,bye,2 -how_busy,is chili busy around dinner?,parrot,avail,0 -thank_you,so grateful,parrot,bye,2 -yes,i believe you're right,parrot,book,1 -reminder_update,please remind me,parrot,resched,5 -thank_you,it's much easier with you,parrot,bye,2 -yes,absolutely correct,original,book,1 -yes,obviously,parrot,book,1 -thank_you,thanks for that!,original,bye,2 -yes,say yes,lambada,book,1 -no,it's completely false,parrot,cancel,3 -calendar_update,remove wrestlemania from my calendar for 7 may,parrot,resched,5 -schedule_meeting,"reserve a meeting room for friday, 5pm",original,book,1 -no,no!,original,cancel,3 -greeting,how're you?,parrot,greet,4 -no,that's so false,parrot,cancel,3 -how_busy,wait in the restaurant?,parrot,avail,0 -no,"please, no",original,cancel,3 -how_busy,the wait at the pizza factory?,parrot,avail,0 -how_busy,is it always crowded?,parrot,avail,0 -goodbye,peace out,original,bye,2 -meeting_schedule,when is my meeting with the infrastructure?,parrot,avail,0 -greeting,hey there,original,greet,4 -no,negation,parrot,cancel,3 -calendar,what i have planned for tomorrow?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -thank_you,you answered,parrot,bye,2 -meeting_schedule,what time do you have to meet the accountant?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -greeting,yo,original,greet,4 -greeting,hello there,original,greet,4 -greeting,how you are,original,greet,4 -no,negatory?,parrot,cancel,3 -yes,obviously,parrot,book,1 -date,what's it like now?,parrot,avail,0 -greeting,how are you today,original,greet,4 -greeting,hiya,original,greet,4 -cancel_reservation,get a salad off,parrot,cancel,3 -no,that's totally wrong,parrot,cancel,3 -greeting,how's idy?,parrot,greet,4 -greeting,bonjour,original,greet,4 -thank_you,you've tried,parrot,bye,2 -how_busy,how busy is mcdonald's at 6:00,lambada,avail,0 -no,FALSE,lambada,cancel,3 -goodbye,later then,lambada,bye,2 -thank_you,many thank,original,bye,2 -thank_you,you've been great,parrot,bye,2 -schedule_meeting,please help me to set up a meeting,parrot,book,1 -date,what will be 9 months from now?,parrot,avail,0 -no,certainly not true,parrot,cancel,3 -yes,accepted,original,book,1 -no,i prefer not to,parrot,cancel,3 -how_busy,how long would it take to get a table at the red lobster restaurant?,parrot,avail,0 -yes,i think it's correct,parrot,book,1 -greeting,hola,original,greet,4 -no,naw,parrot,cancel,3 -greeting,what's up,original,greet,4 -no,that is so very negative,lambada,cancel,3 -no,there is no,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -schedule_meeting,list the availability of meeting rooms between 2 and 3?,parrot,book,1 -yes,it's true for sure,parrot,book,1 -schedule_meeting,set an appointment for john at 11 o'clock,parrot,book,1 -thank_you,i appreciate this answer,parrot,bye,2 -cancel_reservation,can you cancel my reservation for michael in the pub?,parrot,cancel,3 -greeting,how's life?,parrot,greet,4 -yes,not false,parrot,book,1 -no,FALSE,lambada,cancel,3 -reminder_update,set a reminder for tomorrow meeting,parrot,resched,5 -greeting,how's my day?,parrot,greet,4 -cancel_reservation,please cancel my reservation for 5 at the red robin,parrot,cancel,3 -calendar,check my calendar,parrot,avail,0 -greeting,hiya,original,greet,4 -greeting,hows it going,lambada,greet,4 -yes,yes,original,book,1 -thank_you,many thank,original,bye,2 -goodbye,adios,original,bye,2 -goodbye,goodnight,original,bye,2 -date,today?,parrot,avail,0 -greeting,how's the situation?,parrot,greet,4 -greeting,how's life,original,greet,4 -yes,good,parrot,book,1 -how_busy,how busy is toby at 11?,parrot,avail,0 -reminder_update,save it for later,parrot,resched,5 -goodbye,i have to get out there,parrot,bye,2 -yes,yay,lambada,book,1 -greeting,hi how's it going?,parrot,greet,4 -how_busy,how long will it take me to get seated at ihop?,parrot,avail,0 -greeting,well hello,original,greet,4 -no,that's incorrect,original,cancel,3 -yes,that's absolutely true,parrot,book,1 -no,that would be terrible,lambada,cancel,3 -greeting,hola!,original,greet,4 -yes,affirmative,original,book,1 -goodbye,tootles?,parrot,bye,2 -greeting,whats new,lambada,greet,4 -cancel_reservation,the reservation i made is no longer necessary,parrot,cancel,3 -greeting,so how's it going?,parrot,greet,4 -date,tell me the date tomorrow?,lambada,avail,0 -thank_you,thanks a million,original,bye,2 -goodbye,later,original,bye,2 -greeting,how's otc?,parrot,greet,4 -reminder_update,remember to write later,parrot,resched,5 -greeting,how are things,original,greet,4 -goodbye,regards,original,bye,2 -thank_you,you have my sincere thanks,parrot,bye,2 -greeting,hiya!,original,greet,4 -calendar,tell me what my calendar looks like for march 28?,parrot,avail,0 -goodbye,im leaving,parrot,bye,2 -reminder_update,add me a reminder?,parrot,resched,5 -calendar,have i had any event added to my calendar april 1?,lambada,avail,0 -goodbye,bye!,original,bye,2 -thank_you,appreciated,original,bye,2 -calendar,tell me what's on my calendar for march 12th,parrot,avail,0 -yes,uh-huh,original,book,1 -greeting,how's it with you?,parrot,greet,4 -schedule_meeting,what rooms are available for a meeting at 5pm friday?,parrot,book,1 -yes,yeah yeah,lambada,book,1 -how_busy,how busy is the restaurant between 5 and 10,lambada,avail,0 -how_busy,what's the current wait time for this yogurt?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -greeting,what's happening,original,greet,4 -thank_you,gracias,original,bye,2 -goodbye,tootles,original,bye,2 -no,that's false,original,cancel,3 -goodbye,good call,parrot,bye,2 -goodbye,peace,original,bye,2 -yes,absolutely,original,book,1 -greeting,how's otc?,parrot,greet,4 -no,that's erroneous,parrot,cancel,3 -yes,i vote yes,original,book,1 -yes,absolutely correct,original,book,1 -yes,right,parrot,book,1 -no,FALSE,lambada,cancel,3 -thank_you,my gratitude,parrot,bye,2 -greeting,hey,original,greet,4 -yes,it is a true,original,book,1 -date,tell me what day?,parrot,avail,0 -goodbye,later then,lambada,bye,2 -how_busy,what time is the table reserved for me at this place?,parrot,avail,0 -calendar,did i put an item on the calendar to neuter the dog?,parrot,avail,0 -goodbye,regards,original,bye,2 -greeting,ahoy,lambada,greet,4 -no,negative,original,cancel,3 -yes,i want it,parrot,book,1 -no,yes that's false,lambada,cancel,3 -yes,yes that's it,original,book,1 -cancel_reservation,please cancel my reservation at lobster claws,parrot,cancel,3 -meeting_schedule,is dan aware of any meetings today?,parrot,avail,0 -no,nope,original,cancel,3 -meeting_schedule,list some of the meetings on my calendar today?,parrot,avail,0 -yes,absolutely correct,original,book,1 -yes,this is true,lambada,book,1 -no,it's absolutely false,parrot,cancel,3 -cancel_reservation,i don't need the reservation,parrot,cancel,3 -date,what day?,parrot,avail,0 -goodbye,i have to go,parrot,bye,2 -goodbye,good luck,lambada,bye,2 -goodbye,farewell!,original,bye,2 -no,negative,original,cancel,3 -greeting,what's up,original,greet,4 -greeting,whats up?,parrot,greet,4 -meeting_schedule,when will i meet richard?,parrot,avail,0 -thank_you,thanks again,original,bye,2 -thank_you,thanks,original,bye,2 -date,what is the name of the day?,lambada,avail,0 -yes,accepted,original,book,1 -yes,obviously,parrot,book,1 -thank_you,i'm so grateful for you,parrot,bye,2 -how_busy,how long until dinner?,parrot,avail,0 -date,what year is tomorrow?,parrot,avail,0 -how_busy,how long will it be at the olive garden,parrot,avail,0 -how_busy,how busy is the olive garden around dinner?,parrot,avail,0 -no,please no,parrot,cancel,3 -thank_you,gracias,original,bye,2 -yes,"yep, that's correct",lambada,book,1 -no,"no, that's not it",original,cancel,3 -how_busy,is there an increase in the number of people expected to visit the restaurant when i go?,lambada,avail,0 -how_busy,i want to know how busy is the teacher at 11,parrot,avail,0 -greeting,how are things,original,greet,4 -thank_you,i'm really thankful,parrot,bye,2 -thank_you,well done,parrot,bye,2 -goodbye,goodbye,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,perfect,parrot,book,1 -goodbye,was fun seeing you,parrot,bye,2 -yes,that makes sense,lambada,book,1 -greeting,hiya!,original,greet,4 -reminder_update,when it rains remember to close the windows,parrot,resched,5 -date,what's it like now?,parrot,avail,0 -date,what is the date of today?,original,avail,0 -thank_you,thanks very much,parrot,bye,2 -thank_you,your assistance is appreciated,parrot,bye,2 -no,say negative,parrot,cancel,3 -yes,10-Apr,original,book,1 -reminder_update,create reminders to wash dishes,parrot,resched,5 -calendar_update,the day i'm supposed to be in the hospital is changed,parrot,resched,5 -yes,it is true,original,book,1 -greeting,aho,parrot,greet,4 -date,what is today?,original,avail,0 -no,nay,original,cancel,3 -how_busy,how long to be seated at carrabas,original,avail,0 -goodbye,we chatted well,parrot,bye,2 -how_busy,how busy is chili's at 8am,lambada,avail,0 -date,what date is today?,original,avail,0 -goodbye,good bye,original,bye,2 -thank_you,your assistance is appreciated,parrot,bye,2 -yes,a real statement,parrot,book,1 -greeting,hey bs,lambada,greet,4 -how_busy,is there a long wait at red lobster?,parrot,avail,0 -yes,perfect,parrot,book,1 -greeting,hi,original,greet,4 -yes,truthful is my answer,lambada,book,1 -greeting,heyo,original,greet,4 -no,negatory,original,cancel,3 -greeting,how you're treated,parrot,greet,4 -how_busy,how busy the olive grove is at this time?,parrot,avail,0 -how_busy,tell me the busyness of the hour?,parrot,avail,0 -yes,confirmed,original,book,1 -calendar,are there calendar events on march 19?,parrot,avail,0 -reminder_update,you know something?,parrot,resched,5 -goodbye,regards,original,bye,2 -greeting,please tell me how you feel?,parrot,greet,4 -calendar,let me know if i have an appointment on march 17th,lambada,avail,0 -yes,yeah yeah,lambada,book,1 -yes,that's a fact,parrot,book,1 -goodbye,buhbye now,lambada,bye,2 -yes,right,parrot,book,1 -thank_you,thank you very much,original,bye,2 -greeting,why hello?,original,greet,4 -yes,facts,original,book,1 -how_busy,how long is the wait for a table at olive garden at 8,lambada,avail,0 -no,nope,original,cancel,3 -no,negative,original,cancel,3 -yes,uh-huh,original,book,1 -thank_you,nice,parrot,bye,2 -yes,huh,parrot,book,1 -no,negative definitely,parrot,cancel,3 -thank_you,you made me aware,parrot,bye,2 -thank_you,merci beaucoup,original,bye,2 -yes,perfect,parrot,book,1 -no,that's not a good sign,parrot,cancel,3 -yes,that's a fact,parrot,book,1 -greeting,how's this going?,parrot,greet,4 -cancel_reservation,cancel my reservation with robert at red robin,lambada,cancel,3 -date,do you have a current date?,parrot,avail,0 -how_busy,how busy is the place at 7 am?,parrot,avail,0 -greeting,how are things treating you,original,greet,4 -thank_you,thanks very much for your answer,parrot,bye,2 -thank_you,thanks please,original,bye,2 -greeting,heyo,original,greet,4 -schedule_meeting,please provide us with a meeting room for 9am on friday,parrot,book,1 -yes,correct,original,book,1 -meeting_schedule,do you see any meetings with john on my calendar today?,parrot,avail,0 -yes,indeed,original,book,1 -yes,approved,original,book,1 -yes,positive,original,book,1 -goodbye,regards,original,bye,2 -no,it's so negative,parrot,cancel,3 -no,it's false,parrot,cancel,3 -calendar,keep an eye on my calendar for tuesday,parrot,avail,0 -calendar,are there appointments for april 3?,parrot,avail,0 -goodbye,goodbye then,parrot,bye,2 -reminder_update,need to remind myself to pray,parrot,resched,5 -no,that's a lie,parrot,cancel,3 -greeting,nice day,lambada,greet,4 -reminder_update,i need to be reminded of something,parrot,resched,5 -yes,yeah yeah,lambada,book,1 -thank_you,good job,lambada,bye,2 -greeting,are you okay?,original,greet,4 -no,please no,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -yes,agreed,original,book,1 -no,that's a negation,parrot,cancel,3 -greeting,"hello, ai",original,greet,4 -yes,definitely yes,parrot,book,1 -yes,oh-huh,parrot,book,1 -calendar_update,i want to remove fishing from my calendar for soccer,parrot,resched,5 -yes,that's correct,original,book,1 -goodbye,nice drive by,lambada,bye,2 -greeting,aho,parrot,greet,4 -cancel_reservation,i want to cancel my reservation for 5 at red robins,parrot,cancel,3 -greeting,ahoy hoy,original,greet,4 -goodbye,peace,original,bye,2 -no,no way,original,cancel,3 -yes,okay,original,book,1 -no,that's a negation,parrot,cancel,3 -date,would you mind knowing the date for tomorrow?,parrot,avail,0 -calendar,can you tell me what's on my calendar for march 17?,parrot,avail,0 -meeting_schedule,do i have any meetings scheduled with ashley today?,lambada,avail,0 -schedule_meeting,please schedule a meeting at 10am tomorrow with john smith?,parrot,book,1 -no,say negative,parrot,cancel,3 -yes,indeed,original,book,1 -no,that's a wrong answer?,parrot,cancel,3 -meeting_schedule,have a meeting today?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -no,negation,parrot,cancel,3 -greeting,well hi there,original,greet,4 -thank_you,thankyou,parrot,bye,2 -greeting,"good morning, ai",original,greet,4 -goodbye,glad to talk,parrot,bye,2 -goodbye,peace,original,bye,2 -yes,positive,original,book,1 -date,what's the date now?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -goodbye,i enjoyed talking to you,original,bye,2 -no,"nope, that's false",original,cancel,3 -goodbye,i'll go,parrot,bye,2 -goodbye,good night,original,bye,2 -thank_you,my gratitude,parrot,bye,2 -date,today?,parrot,avail,0 -no,FALSE,original,cancel,3 -date,in three days,parrot,avail,0 -greeting,"hello, ai",original,greet,4 -how_busy,when would the wait at pizza sauce last?,parrot,avail,0 -yes,yeap,original,book,1 -cancel_reservation,cancell my reservation for dinner this friday please,parrot,cancel,3 -how_busy,how busy is the chili dog at 8:30pm,lambada,avail,0 -how_busy,how busy will the chilis be at 6pm,parrot,avail,0 -reminder_update,let me remember,parrot,resched,5 -goodbye,i'll go,parrot,bye,2 -yes,yes that is true,lambada,book,1 -no,that's not factual,parrot,cancel,3 -no,thanks no,parrot,cancel,3 -date,please share today's date,original,avail,0 -yes,uh-huh,original,book,1 -how_busy,ambrosio is busy around nine,parrot,avail,0 -how_busy,how busy is ihop?,parrot,avail,0 -yes,obviously,parrot,book,1 -no,the information is false,parrot,cancel,3 -thank_you,merci beaucoup,original,bye,2 -yes,ya,original,book,1 -goodbye,bye for now,original,bye,2 -goodbye,tootles?,parrot,bye,2 -no,certainly not true,parrot,cancel,3 -goodbye,goodbye now,parrot,bye,2 -greeting,how are things,original,greet,4 -how_busy,tell me the time to wait in the restaurant?,parrot,avail,0 -yes,and you're correct,parrot,book,1 -how_busy,say how busy it is in the cheesecake factory?,parrot,avail,0 -cancel_reservation,i'd like to cancel my reservation for fred at red robin,parrot,cancel,3 -date,in 9 days?,parrot,avail,0 -no,but it's false,parrot,cancel,3 -no,nothing,parrot,cancel,3 -no,but that's not true?,parrot,cancel,3 -thank_you,okay thank you,parrot,bye,2 -thank_you,good job,lambada,bye,2 -calendar,what do i have scheduled for 3/25?,lambada,avail,0 -greeting,all right now?,parrot,greet,4 -no,i mean no,parrot,cancel,3 -yes,yes,original,book,1 -yes,yeah that's right,lambada,book,1 -schedule_meeting,you know if meeting rooms are open for use 1-2?,parrot,book,1 -greeting,whats up?,parrot,greet,4 -goodbye,nice seeing you bye,original,bye,2 -goodbye,sign off,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -greeting,welcome,parrot,greet,4 -greeting,"wake up, ai",original,greet,4 -goodbye,"great talk, thanks",original,bye,2 -thank_you,i appreciate the assistance,original,bye,2 -no,thats a negative,original,cancel,3 -how_busy,is the wait too long for dinner?,parrot,avail,0 -greeting,what's new,lambada,greet,4 -yes,accept,parrot,book,1 -yes,sure,original,book,1 -calendar,tell me what my calendar looks like for march 2nd?,parrot,avail,0 -goodbye,goodbye goodbye,parrot,bye,2 -no,"no, it's not",lambada,cancel,3 -goodbye,later gater,original,bye,2 -no,that's not right?,parrot,cancel,3 -no,it doesn't seem so,parrot,cancel,3 -greeting,hiya,original,greet,4 -greeting,heyo,original,greet,4 -schedule_meeting,can you schedule a meeting with damon for 1?,original,book,1 -yes,it's logical,parrot,book,1 -thank_you,thanks again,original,bye,2 -reminder_update,you know something?,parrot,resched,5 -thank_you,thanks very much for your answer,parrot,bye,2 -goodbye,goodbye,original,bye,2 -schedule_meeting,please give me a meeting room for 9am on friday,parrot,book,1 -date,what date this month?,parrot,avail,0 -reminder_update,remind me later,original,resched,5 -greeting,ai how you're doing,lambada,greet,4 -calendar,look at my calendar for birthdays,parrot,avail,0 -goodbye,goodnight,original,bye,2 -yes,confirmed,original,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,whats new?,parrot,greet,4 -greeting,what's new?,parrot,greet,4 -no,no thank you,original,cancel,3 -how_busy,tell me how busy regina is,parrot,avail,0 -no,not so i think,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -no,not a good idea,parrot,cancel,3 -yes,ya,original,book,1 -yes,uh-huh,original,book,1 -reminder_update,remember to call me tomorrow,parrot,resched,5 -thank_you,thanks for the help!,original,bye,2 -schedule_meeting,a meeting should be scheduled,parrot,book,1 -yes,positive,parrot,book,1 -no,nope,original,cancel,3 -reminder_update,can you make me a reminder to apply for a credit card?,lambada,resched,5 -yes,perfect,parrot,book,1 -date,which date is next day?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -how_busy,what is the wait time for a reservation at the iloveys?,lambada,avail,0 -no,that is actually false,original,cancel,3 -reminder_update,create a reminder,original,resched,5 -greeting,tell me the situation in the city,parrot,greet,4 -yes,yeah,original,book,1 -how_busy,sage's busy at noon?,parrot,avail,0 -yes,that is not false,original,book,1 -goodbye,go easy,parrot,bye,2 -thank_you,it pleased me,parrot,bye,2 -how_busy,say how busy it is at noon?,parrot,avail,0 -goodbye,tata for now,original,bye,2 -no,please no,parrot,cancel,3 -goodbye,good see you,lambada,bye,2 -no,is my false statement?,parrot,cancel,3 -calendar,what's my schedule for march 2nd?,parrot,avail,0 -thank_you,thank you please,parrot,bye,2 -how_busy,what will it take to get a seat at chili's at 6pm?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -goodbye,nice chat today,lambada,bye,2 -reminder_update,can you remind me?,parrot,resched,5 -goodbye,later,original,bye,2 -no,no please,parrot,cancel,3 -no,i meant nothing,parrot,cancel,3 -goodbye,adios,original,bye,2 -no,"no, that information is wrong",original,cancel,3 -yes,certainly,parrot,book,1 -goodbye,thanks bye bye!,original,bye,2 -yes,not a lie,parrot,book,1 -yes,yeap,original,book,1 -date,what year is tomorrow?,parrot,avail,0 -meeting_schedule,check the time of the meeting scheduled for today,parrot,avail,0 -thank_you,thanks for this information,lambada,bye,2 -greeting,hi,original,greet,4 -yes,absolutely!,original,book,1 -date,i need to know what the date is today,original,avail,0 -goodbye,have fun?,lambada,bye,2 -yes,yeah yeah,lambada,book,1 -goodbye,afterward,parrot,bye,2 -yes,positive,original,book,1 -yes,sure,original,book,1 -thank_you,thank ya!,original,bye,2 -yes,okay,original,book,1 -yes,i want you to know it's correct,parrot,book,1 -calendar,what are my current calendar activities?,parrot,avail,0 -calendar_update,remove lunch from my calendar on friday,lambada,resched,5 -greeting,is everything okay today?,parrot,greet,4 -goodbye,and i'm glad we talked,parrot,bye,2 -reminder_update,please remind me,parrot,resched,5 -yes,yeap,original,book,1 -yes,yeah,original,book,1 -how_busy,how busy is the coffee shop at 8 o'clock?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -goodbye,buhbye,original,bye,2 -greeting,how things go?,parrot,greet,4 -goodbye,regards,original,bye,2 -greeting,you good?,parrot,greet,4 -greeting,how's life,original,greet,4 -goodbye,afterward,parrot,bye,2 -goodbye,adios,original,bye,2 -yes,and you're right,parrot,book,1 -yes,"yes, that's right",original,book,1 -greeting,hi there,original,greet,4 -date,what date in 10 days?,parrot,avail,0 -goodbye,nice conversation today,parrot,bye,2 -greeting,hola!,original,greet,4 -no,but not right now,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -how_busy,how busy is michel at 5:30,lambada,avail,0 -yes,you're right,original,book,1 -calendar,is event on my calendar?,original,avail,0 -yes,affirmitive,original,book,1 -yes,great,original,book,1 -date,what date?,parrot,avail,0 -calendar,check my calendar to see if i have any goals for my current account,parrot,avail,0 -yes,"yeah, that's true",lambada,book,1 -how_busy,how busy is the cheesecake factory at noon,lambada,avail,0 -yes,yeap,original,book,1 -no,certainly not,original,cancel,3 -goodbye,fairwell,original,bye,2 -greeting,how you are,original,greet,4 -greeting,hola,original,greet,4 -yes,positive,original,book,1 -goodbye,buhbye,original,bye,2 -goodbye,goodbye to yours,parrot,bye,2 -no,no please,parrot,cancel,3 -thank_you,appreciate it,original,bye,2 -yes,yeap,original,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,how's life?,parrot,greet,4 -no,no?,parrot,cancel,3 -how_busy,list the seating available in this restaurant?,parrot,avail,0 -yes,"yes, please",original,book,1 -thank_you,i'm grateful,original,bye,2 -yes,huh,parrot,book,1 -thank_you,appreciated,original,bye,2 -calendar_update,i have to clean the kitchen on thursday please add an item to my calendar,parrot,resched,5 -greeting,hey what's up?,parrot,greet,4 -goodbye,fairwell?,parrot,bye,2 -no,invalid,original,cancel,3 -yes,"yes, that is it",original,book,1 -yes,i'd say yes,parrot,book,1 -no,negative certainly,parrot,cancel,3 -greeting,how's everything?,parrot,greet,4 -schedule_meeting,are there any available rooms from 5 to 9?,parrot,book,1 -thank_you,thanks please,original,bye,2 -greeting,get up ai,parrot,greet,4 -no,certainly not,original,cancel,3 -reminder_update,please remember something,parrot,resched,5 -greeting,how's everything?,parrot,greet,4 -goodbye,peace out!,original,bye,2 -how_busy,is the restaurant always full between dinner and breakfast?,parrot,avail,0 -greeting,bonjour,original,greet,4 -goodbye,the talk was nice,lambada,bye,2 -greeting,whats up?,parrot,greet,4 -schedule_meeting,"if i want to schedule a meeting, how do i do it",original,book,1 -goodbye,tootles?,parrot,bye,2 -greeting,hola,original,greet,4 -yes,accept,parrot,book,1 -how_busy,how long can i expect olive gardens to be busy at dinner?,parrot,avail,0 -no,nope,original,cancel,3 -no,that’s not correct,original,cancel,3 -no,that's not right?,parrot,cancel,3 -thank_you,"that's all i need, thanks!",original,bye,2 -greeting,hola,original,greet,4 -yes,yeah you got it,lambada,book,1 -no,nope it's not true,parrot,cancel,3 -reminder_update,make a reminder,parrot,resched,5 -thank_you,i'm thankful for my support,parrot,bye,2 -yes,that's a fact,parrot,book,1 -goodbye,go easy,parrot,bye,2 -how_busy,i want to know the number of people who frequent tacoma swans,parrot,avail,0 -greeting,hiya,original,greet,4 -goodbye,"later, goodbye",lambada,bye,2 -goodbye,good bye,original,bye,2 -date,a year?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -date,what is my date today?,parrot,avail,0 -greeting,hello,original,greet,4 -no,that's actually false,parrot,cancel,3 -how_busy,how long will it take me to get a seat in a restaurant?,parrot,avail,0 -no,nope,original,cancel,3 -thank_you,awesome thanks,parrot,bye,2 -greeting,good day,original,greet,4 -goodbye,bye-bye,original,bye,2 -no,no?,parrot,cancel,3 -no,it's false,parrot,cancel,3 -thank_you,thanks for that,original,bye,2 -no,certainly not,original,cancel,3 -goodbye,i’m leaving-goodbye!,original,bye,2 -yes,that's right,original,book,1 -yes,okay,original,book,1 -no,i disagree,parrot,cancel,3 -no,i'll pass,original,cancel,3 -yes,yes,original,book,1 -reminder_update,set a reminder for when the turkey is finished cooking,original,resched,5 -goodbye,tootles,original,bye,2 -no,that's not the case,parrot,cancel,3 -yes,ok,original,book,1 -schedule_meeting,how do i set up a meeting?,parrot,book,1 -no,certainly not,original,cancel,3 -no,not good,parrot,cancel,3 -no,not right?,parrot,cancel,3 -greeting,how does life treat you?,parrot,greet,4 -meeting_schedule,what's my meeting calendar?,parrot,avail,0 -yes,confirm,original,book,1 -date,where is tomorrow's date?,parrot,avail,0 -greeting,how is it going my friend,original,greet,4 -yes,absolutely!,original,book,1 -no,that's not right?,parrot,cancel,3 -goodbye,it's over,parrot,bye,2 -reminder_update,make me remember my vacation,parrot,resched,5 -date,what's my tomorrow date?,parrot,avail,0 -goodbye,i have to go for it,parrot,bye,2 -yes,of course,original,book,1 -no,naw,parrot,cancel,3 -schedule_meeting,schedule a monday meeting with sam at 1 p,parrot,book,1 -how_busy,how busy is mcdonalds?,parrot,avail,0 -no,FALSE,original,cancel,3 -goodbye,buhbye,original,bye,2 -greeting,how's my day been?,parrot,greet,4 -meeting_schedule,the meetings today,parrot,avail,0 -no,indeed it's false,parrot,cancel,3 -goodbye,i enjoy our chat,lambada,bye,2 -meeting_schedule,check my schedule for meetings today,original,avail,0 -goodbye,lovely conversation,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -no,negative,original,cancel,3 -thank_you,i thank you,original,bye,2 -date,is tomorrow's date?,parrot,avail,0 -no,negatory,original,cancel,3 -greeting,"hello, friend",original,greet,4 -how_busy,how long will i be able to wait for a table at tiffany's steakhouse,lambada,avail,0 -meeting_schedule,is my meeting scheduled?,parrot,avail,0 -how_busy,what number of people are waiting for chili's around 9pm?,parrot,avail,0 -greeting,"hello, hello, hello",lambada,greet,4 -greeting,aho,parrot,greet,4 -yes,it is true,original,book,1 -greeting,all right now?,parrot,greet,4 -goodbye,take a rest,parrot,bye,2 -greeting,hello there!,original,greet,4 -no,that's actually false,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -greeting,"hi, how are you",original,greet,4 -goodbye,nice chat today,lambada,bye,2 -goodbye,but now i'm leaving,parrot,bye,2 -goodbye,great conversation,parrot,bye,2 -thank_you,thank you for the reply,lambada,bye,2 -greeting,bonjour,original,greet,4 -yes,yup,original,book,1 -date,what day is it?,original,avail,0 -goodbye,goodbyes,parrot,bye,2 -no,it's not a fact,parrot,cancel,3 -no,naw,original,cancel,3 -yes,correct,original,book,1 -cancel_reservation,can i cancel my reservation for 6 pm?,parrot,cancel,3 -meeting_schedule,meeting today,parrot,avail,0 -yes,i want that,parrot,book,1 -no,nothing,parrot,cancel,3 -goodbye,maybe next time,parrot,bye,2 -greeting,hey there,original,greet,4 -goodbye,regards,original,bye,2 -yes,TRUE,original,book,1 -yes,sure,original,book,1 -no,negatory,original,cancel,3 -thank_you,i am thankful,lambada,bye,2 -goodbye,sayonara ,parrot,bye,2 -reminder_update,make a reminder,parrot,resched,5 -greeting,hi how's it going,lambada,greet,4 -goodbye,im leaving,parrot,bye,2 -how_busy,how long will the wait be when i go to chili's pizza?,parrot,avail,0 -date,the calendar says tomorrow is tomorrow,parrot,avail,0 -goodbye,good conversation,parrot,bye,2 -calendar,tell me what my calendar shows for april 15th?,parrot,avail,0 -greeting,hello siri,original,greet,4 -yes,correct,original,book,1 -greeting,what's new?,parrot,greet,4 -goodbye,good luck later,parrot,bye,2 -no,it's false,parrot,cancel,3 -reminder_update,need to make a reminder for dinner,parrot,resched,5 -yes,exactly right,original,book,1 -yes,indeed,original,book,1 -reminder_update,remember to give my cat flea medicine,parrot,resched,5 -greeting,aho,parrot,greet,4 -date,in eight days?,parrot,avail,0 -yes,huh,parrot,book,1 -yes,ok,original,book,1 -date,what is tomorrow?,parrot,avail,0 -goodbye,signing off,original,bye,2 -greeting,yo,original,greet,4 -yes,that's a fact,lambada,book,1 -goodbye,good conversation,parrot,bye,2 -thank_you,the help is appreciated,parrot,bye,2 -thank_you,merci beaucoup,original,bye,2 -yes,certainly,parrot,book,1 -no,no please,parrot,cancel,3 -how_busy,check how busy the chili is at 10 o'clock in the morning?,parrot,avail,0 -yes,okay,original,book,1 -yes,yup,original,book,1 -greeting,hey fellow,parrot,greet,4 -greeting,ahoy there,lambada,greet,4 -meeting_schedule,are there meetings from noon to 3pm?,parrot,avail,0 -no,that’s not correct,original,cancel,3 -no,it's so bad,parrot,cancel,3 -date,what date will tomorrow be?,lambada,avail,0 -no,i'm afraid not,parrot,cancel,3 -thank_you,gracias,original,bye,2 -reminder_update,remind me what i need to do,lambada,resched,5 -greeting,hey there,original,greet,4 -no,hell nah,original,cancel,3 -greeting,hi,original,greet,4 -thank_you,thanks for helping,original,bye,2 -yes,ya,original,book,1 -greeting,how's idy?,parrot,greet,4 -no,nay,original,cancel,3 -yes,uh-huh,original,book,1 -yes,that is true,lambada,book,1 -yes,indeed,original,book,1 -yes,absolutely correct,original,book,1 -goodbye,say goodbye now,parrot,bye,2 -yes,roger that,original,book,1 -greeting,how's idy?,parrot,greet,4 -goodbye,farewell,original,bye,2 -goodbye,bye!,original,bye,2 -how_busy,how busy will olive garden be around noon,lambada,avail,0 -no,not so i think,parrot,cancel,3 -schedule_meeting,can you give me a meeting room for 9 o'clock,parrot,book,1 -how_busy,will red lobster be crowded at 5:00 pm,lambada,avail,0 -reminder_update,i need to remember,parrot,resched,5 -no,absolutely false,parrot,cancel,3 -date,what is tomorrow?,parrot,avail,0 -goodbye,i'll leave now,parrot,bye,2 -yes,definitely,original,book,1 -goodbye,i'm leaving,parrot,bye,2 -goodbye,adios!,original,bye,2 -goodbye,we had a nice chat,parrot,bye,2 -date,today is the date,parrot,avail,0 -yes,approved,original,book,1 -calendar,what do i have scheduled for february 28th?,original,avail,0 -greeting,hello hello good morning,parrot,greet,4 -thank_you,i appreciate the answer,parrot,bye,2 -no,negating,parrot,cancel,3 -greeting,how're you doing,original,greet,4 -yes,true is my response,original,book,1 -date,what's the date?,parrot,avail,0 -no,not right,parrot,cancel,3 -meeting_schedule,what time is my meeting with the design team scheduled?,parrot,avail,0 -greeting,aloha,original,greet,4 -greeting,hey,original,greet,4 -goodbye,regards,original,bye,2 -date,what today?,parrot,avail,0 -no,nada,original,cancel,3 -thank_you,gracias,original,bye,2 -yes,certainly,parrot,book,1 -goodbye,later goodbye,parrot,bye,2 -greeting,whats new?,parrot,greet,4 -greeting,salutations,parrot,greet,4 -goodbye,goodbyes,parrot,bye,2 -date,in 100 days?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -how_busy,how busy will ian be at 6 o'clock in the evening,parrot,avail,0 -date,what's the year?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -greeting,how's life treating you?,parrot,greet,4 -no,it's overwhelmingly negative,parrot,cancel,3 -reminder_update,remind me,original,resched,5 -no,no please,parrot,cancel,3 -goodbye,good conversation,parrot,bye,2 -goodbye,thanks for the talk,lambada,bye,2 -thank_you,i'm very thankful,parrot,bye,2 -no,no that isn't true,lambada,cancel,3 -yes,yep,original,book,1 -no,negation,parrot,cancel,3 -thank_you,thanks for that answer,original,bye,2 -reminder_update,remind me,original,resched,5 -date,what's the current date?,parrot,avail,0 -goodbye,goodbye thank you,parrot,bye,2 -how_busy,how busy will chili be around 7 o'clock in the morning,parrot,avail,0 -how_busy,mcdonald's busy around 9?,parrot,avail,0 -how_busy,what's the average wait time at ihuachina?,parrot,avail,0 -yes,agreed,original,book,1 -no,hell nah,original,cancel,3 -schedule_meeting,can you arrange a meeting with george for 4?,parrot,book,1 -yes,positive,original,book,1 -goodbye,goodbye ai,parrot,bye,2 -no,that isn't what we want,lambada,cancel,3 -calendar,please show me the calendar for next sunday,parrot,avail,0 -no,it's overwhelmingly wrong,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -reminder_update,remind me of the steak,parrot,resched,5 -yes,it's positive,parrot,book,1 -calendar,how many events are planned for march 15?,parrot,avail,0 -thank_you,you're welcome,parrot,bye,2 -goodbye,adios,original,bye,2 -greeting,are you all right?,parrot,greet,4 -no,negatory?,parrot,cancel,3 -greeting,hello ai,parrot,greet,4 -cancel_reservation,please unreserve that table,original,cancel,3 -no,no way,original,cancel,3 -goodbye,talk to me later,parrot,bye,2 -yes,absolutely!,original,book,1 -no,"no, that'd be my response",lambada,cancel,3 -how_busy,when is chili busy?,parrot,avail,0 -yes,sure,original,book,1 -no,this is false,parrot,cancel,3 -how_busy,how long is the wait for a table at this restaurant,lambada,avail,0 -goodbye,great conversation,parrot,bye,2 -reminder_update,set a reminder to remind me to check when my car payment is due,parrot,resched,5 -date,can you give me the date tomorrow please,parrot,avail,0 -calendar,is there anything planned for march 1?,parrot,avail,0 -reminder_update,please remind me of my mom's birthday,parrot,resched,5 -greeting,hola,original,greet,4 -meeting_schedule,are any meetings with lance scheduled today?,lambada,avail,0 -calendar,what's on my calendar for next sunday?,parrot,avail,0 -no,that's erroneous,parrot,cancel,3 -goodbye,adios!,original,bye,2 -yes,facts,original,book,1 -goodbye,see you around,original,bye,2 -no,"no, that information is wrong",original,cancel,3 -thank_you,gracias,original,bye,2 -yes,TRUE,original,book,1 -thank_you,you answered,parrot,bye,2 -yes,definitely yes,parrot,book,1 -goodbye,adios ai,original,bye,2 -how_busy,how busy is the olive garden right now?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -goodbye,i'll be gone,parrot,bye,2 -no,that's not factual,parrot,cancel,3 -reminder_update,pay taxes on monday,parrot,resched,5 -no,sure it's wrong,parrot,cancel,3 -goodbye,"nice talk, goodbye",lambada,bye,2 -calendar,check what's on my calendar for tuesday?,parrot,avail,0 -yes,it makes sense,parrot,book,1 -greeting,all right with you?,parrot,greet,4 -greeting,hey fellow,parrot,greet,4 -no,certainly not,original,cancel,3 -goodbye,tootles?,parrot,bye,2 -goodbye,i'm outta here!,original,bye,2 -meeting_schedule,are any meetings with lance planned today?,parrot,avail,0 -calendar_update,on 22 of this month we need to clear our calendar so we can leave it open for mark to visit,parrot,resched,5 -yes,affirmitive,original,book,1 -how_busy,wait at jalapeno ranch?,parrot,avail,0 -meeting_schedule,when is my meeting with dr robin?,parrot,avail,0 -how_busy,how long will it take for me to get seated at the chinese restaurant,lambada,avail,0 -no,no!,original,cancel,3 -goodbye,i'll be gone,parrot,bye,2 -no,definitely not,original,cancel,3 -no,negating,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -greeting,bonjour,original,greet,4 -greeting,hiya,original,greet,4 -how_busy,what is the average wait time at olive garden right now?,lambada,avail,0 -yes,yay,lambada,book,1 -how_busy,tell me how busy regina is right now,parrot,avail,0 -no,nothing,parrot,cancel,3 -yes,absolutely correct,original,book,1 -yes,good,parrot,book,1 -greeting,aho,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -yes,facts,original,book,1 -greeting,how's life,original,greet,4 -no,negatory,original,cancel,3 -thank_you,you answered,parrot,bye,2 -greeting,yo,original,greet,4 -greeting,"hey, what's new",original,greet,4 -no,erroneous,parrot,cancel,3 -no,i meant nothing,parrot,cancel,3 -yes,i'm telling you it's true,parrot,book,1 -goodbye,catch you later,original,bye,2 -no,negation,parrot,cancel,3 -greeting,"hey, ai",original,greet,4 -no,sure it's wrong,parrot,cancel,3 -goodbye,enjoy my day goodbye,parrot,bye,2 -goodbye,bye bye!,original,bye,2 -yes,i vote yes,original,book,1 -greeting,aho,parrot,greet,4 -no,nay,original,cancel,3 -thank_you,i really appreciate my help,parrot,bye,2 -how_busy,will it be busy on the macaroni grill at 5pm?,parrot,avail,0 -no,not really,original,cancel,3 -thank_you,many thanks,original,bye,2 -greeting,how was my day?,parrot,greet,4 -goodbye,my way,parrot,bye,2 -how_busy,is the cheesecake factory busy?,parrot,avail,0 -date,what today?,parrot,avail,0 -no,no good,original,cancel,3 -yes,"yes, please",original,book,1 -goodbye,peace,original,bye,2 -thank_you,i wanted to thank you,parrot,bye,2 -no,not correct,parrot,cancel,3 -greeting,how are you,original,greet,4 -goodbye,goodbye!,original,bye,2 -no,that's very false,parrot,cancel,3 -yes,agreed,original,book,1 -reminder_update,keep me in mind,parrot,resched,5 -greeting,"hello, friend",original,greet,4 -date,"in three days, what will be the date of my wedding",lambada,avail,0 -yes,TRUE,original,book,1 -thank_you,you did it,parrot,bye,2 -no,naw,parrot,cancel,3 -how_busy,will there be a long wait for food in chinese restaurants?,parrot,avail,0 -yes,that checks out,original,book,1 -yes,is true,parrot,book,1 -greeting,hi how's it going,lambada,greet,4 -yes,"yes, that's accurate",original,book,1 -goodbye,later thanks for the conversation,parrot,bye,2 -goodbye,farewell!,original,bye,2 -no,nada,original,cancel,3 -meeting_schedule,when does richard meet me,parrot,avail,0 -greeting,yo,original,greet,4 -yes,"yep, that's true",original,book,1 -goodbye,later!,original,bye,2 -goodbye,good conversation,parrot,bye,2 -no,naw,original,cancel,3 -cancel_reservation,cancel my dinner reservation please,original,cancel,3 -goodbye,buhbye,original,bye,2 -greeting,heller,original,greet,4 -goodbye,on the road,parrot,bye,2 -goodbye,adios,original,bye,2 -goodbye,good luck,lambada,bye,2 -how_busy,is ihop busy around 8:15am?,lambada,avail,0 -thank_you,thank ya!,original,bye,2 -date,what day?,parrot,avail,0 -no,certainly false,parrot,cancel,3 -yes,facts,original,book,1 -goodbye,goodnight,original,bye,2 -no,nothing,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -goodbye,goodnight,original,bye,2 -goodbye,good see you,lambada,bye,2 -calendar_update,stop this event today,parrot,resched,5 -date,tell me the current date,parrot,avail,0 -date,what is tomorrow's date?,original,avail,0 -greeting,how is ai doing?,parrot,greet,4 -greeting,wassup,original,greet,4 -greeting,hey there!,original,greet,4 -yes,definitely,original,book,1 -yes,yep,original,book,1 -no,nada,original,cancel,3 -schedule_meeting,please schedule a meeting with marnie at 7pm,lambada,book,1 -date,give me what date it is for tomorrow,lambada,avail,0 -thank_you,you helped me,parrot,bye,2 -yes,it is definitely affirmative,original,book,1 -cancel_reservation,you can cancel my reservation at 4pm for pizza,parrot,cancel,3 -no,naw,parrot,cancel,3 -goodbye,later,original,bye,2 -yes,say positive,parrot,book,1 -thank_you,glad you helped me,parrot,bye,2 -no,no way,original,cancel,3 -no,that’s incorrect,original,cancel,3 -how_busy,how long will it take me to get a seat in a chinese restaurant,parrot,avail,0 -yes,absolutely,original,book,1 -greeting,how do you feel,original,greet,4 -greeting,what's happening?,parrot,greet,4 -no,invalid,original,cancel,3 -date,will the date be 500 days?,parrot,avail,0 -how_busy,what is the wait time at tomato salad?,lambada,avail,0 -no,that's incorrect!,original,cancel,3 -greeting,hiya!,original,greet,4 -thank_you,i appreciate your answer,parrot,bye,2 -no,i do not agree,lambada,cancel,3 -how_busy,does the restaurant have a lot of business around noon?,lambada,avail,0 -greeting,hello how's my life?,parrot,greet,4 -goodbye,adios!,original,bye,2 -thank_you,thank ya!,original,bye,2 -goodbye,take it easy!,original,bye,2 -thank_you,merci beaucoup,original,bye,2 -thank_you,good job at trying to make sure i'm doing well,parrot,bye,2 -calendar_update,can you add a doctor's appointment to the calendar for friday?,parrot,resched,5 -greeting,how's everything?,parrot,greet,4 -yes,confirmed,original,book,1 -goodbye,bye-bye,original,bye,2 -yes,"yes, please",parrot,book,1 -greeting,show me what's new,parrot,greet,4 -how_busy,do you think longhorn steakhouse will be busy at 5pm?,original,avail,0 -how_busy,sage is busy at noon?,parrot,avail,0 -reminder_update,set up a reminder for the time of the meeting at 2 pm,parrot,resched,5 -reminder_update,i want a reminder,lambada,resched,5 -no,ill pass,original,cancel,3 -yes,yes please,original,book,1 -goodbye,tootles,original,bye,2 -how_busy,can you tell me the wait time at the restaurant?,parrot,avail,0 -yes,right,parrot,book,1 -goodbye,see ya!,original,bye,2 -no,negative,original,cancel,3 -thank_you,you've helped,parrot,bye,2 -no,nothing,parrot,cancel,3 -date,what date is today?,original,avail,0 -how_busy,how long will the chili's wait,lambada,avail,0 -yes,certainly,parrot,book,1 -no,naw,parrot,cancel,3 -yes,indeed,original,book,1 -thank_you,thank you,original,bye,2 -goodbye,tootles?,parrot,bye,2 -yes,i'll say yes,parrot,book,1 -goodbye,take a break,parrot,bye,2 -goodbye,i'll leave,parrot,bye,2 -reminder_update,i want you to remember something,parrot,resched,5 -goodbye,"thanks for the great talk, bye",lambada,bye,2 -goodbye,bye bye!,original,bye,2 -goodbye,fairwell,original,bye,2 -how_busy,how long does it take for a table at dr daddy's,parrot,avail,0 -yes,yes,original,book,1 -yes,huh,parrot,book,1 -no,negatory?,parrot,cancel,3 -yes,"yup, that's true",original,book,1 -greeting,bonjour,original,greet,4 -reminder_update,make a reminder of my makeup,parrot,resched,5 -goodbye,good-bye,parrot,bye,2 -greeting,hola,original,greet,4 -no,that isn't true,lambada,cancel,3 -meeting_schedule,are meetings with lance scheduled today?,parrot,avail,0 -no,no that's not right,parrot,cancel,3 -greeting,hi,original,greet,4 -no,invalid,original,cancel,3 -no,i'd prefer not to answer,parrot,cancel,3 -no,not good,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -no,not good idea,parrot,cancel,3 -date,when will be the date?,parrot,avail,0 -date,what will be the date in six months?,lambada,avail,0 -yes,do that?,original,book,1 -yes,perfect,parrot,book,1 -how_busy,how long can i wait at the cheese cake factory,parrot,avail,0 -calendar,what's the date on my calendar that i have to pay for my operation?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -yes,obviously,parrot,book,1 -no,is very false,parrot,cancel,3 -cancel_reservation,i booked at the pizza hut under the name of leia roberts and i want to cancel this,parrot,cancel,3 -cancel_reservation,please cancel my reservation,original,cancel,3 -how_busy,is the restaurant crowded at dinner?,lambada,avail,0 -yes,affirmative,original,book,1 -calendar,let me know what's currently on my calendar for march 26th?,parrot,avail,0 -greeting,heyo,original,greet,4 -greeting,how are you doing,original,greet,4 -how_busy,how busy will it be if i go to chili's around 6,lambada,avail,0 -no,negative certainly,parrot,cancel,3 -no,that's not acceptable,parrot,cancel,3 -greeting,salutations!,original,greet,4 -no,the wrong answer,parrot,cancel,3 -reminder_update,just a reminder,parrot,resched,5 -greeting,what i feel?,parrot,greet,4 -date,what year?,parrot,avail,0 -calendar,what's on the 2nd march calendar?,parrot,avail,0 -greeting,how are things,original,greet,4 -reminder_update,please do not forget,parrot,resched,5 -no,so that's no,parrot,cancel,3 -reminder_update,my cat needs neutered,parrot,resched,5 -date,a year?,parrot,avail,0 -yes,definitely confirmed,parrot,book,1 -no,that's bad,parrot,cancel,3 -greeting,how you are?,parrot,greet,4 -calendar_update,put my work on my calendar,parrot,resched,5 -thank_you,okay thank you,parrot,bye,2 -no,so that's no,parrot,cancel,3 -how_busy,please tell me what's the wait?,parrot,avail,0 -yes,positive,parrot,book,1 -no,negative definitely,parrot,cancel,3 -no,nope,original,cancel,3 -no,negative,original,cancel,3 -calendar_update,please don't put a party on my calendar,parrot,resched,5 -yes,yeap,original,book,1 -reminder_update,you know something?,parrot,resched,5 -greeting,how is idy?,parrot,greet,4 -thank_you,again thanks,parrot,bye,2 -no,negation,parrot,cancel,3 -thank_you,gracias,original,bye,2 -no,that would be incorrect,lambada,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -calendar,show me what my calendar looks like on march 2?,parrot,avail,0 -date,what the day?,parrot,avail,0 -no,that's not always true,parrot,cancel,3 -greeting,wassup,original,greet,4 -yes,good,parrot,book,1 -greeting,hello,original,greet,4 -thank_you,you did it,parrot,bye,2 -no,that's very negative,parrot,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -no,no good,original,cancel,3 -date,tell me what the day is today,parrot,avail,0 -greeting,hey,original,greet,4 -goodbye,goodbye soon,lambada,bye,2 -yes,"yeah, that's true",lambada,book,1 -date,in 10 days?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -greeting,how is the car doing?,parrot,greet,4 -yes,uh-huh,original,book,1 -yes,do that?,original,book,1 -thank_you,appreciate it,original,bye,2 -greeting,hello there ai,original,greet,4 -goodbye,be careful then,lambada,bye,2 -thank_you,nice,parrot,bye,2 -yes,that's correct,original,book,1 -how_busy,wait for red lobster?,parrot,avail,0 -calendar_update,remove the event from my schedule,parrot,resched,5 -yes,yup,original,book,1 -no,negative definitely,parrot,cancel,3 -goodbye,"nice talking again, bye",original,bye,2 -no,no no no,parrot,cancel,3 -yes,i agree,original,book,1 -yes,"yes, please",original,book,1 -yes,i want it,parrot,book,1 -yes,it'd be great,parrot,book,1 -thank_you,you've tried,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -greeting,how's ai doing today?,parrot,greet,4 -date,what's the date today?,parrot,avail,0 -greeting,hello ai,parrot,greet,4 -no,that's no way,parrot,cancel,3 -no,naw,parrot,cancel,3 -date,what's the date,original,avail,0 -calendar,tell me what's on my calendar for march 3rd?,parrot,avail,0 -no,absolutely not,original,cancel,3 -no,invalid,original,cancel,3 -yes,i'm telling you it's true,parrot,book,1 -thank_you,thank you please,parrot,bye,2 -thank_you,appreciate it,original,bye,2 -greeting,how's idy?,parrot,greet,4 -thank_you,thanks!,original,bye,2 -goodbye,bye!,original,bye,2 -no,invalid,original,cancel,3 -greeting,are you well?,original,greet,4 -date,what'll it be tomorrow?,parrot,avail,0 -how_busy,what's the average wait time at chris brown's steak house?,parrot,avail,0 -greeting,how's life?,parrot,greet,4 -yes,ok,original,book,1 -no,that's not the answer,parrot,cancel,3 -no,that's the wrong answer,parrot,cancel,3 -no,it's absolutely false,parrot,cancel,3 -thank_you,thank you for trying,parrot,bye,2 -yes,ya,original,book,1 -greeting,how's the life?,parrot,greet,4 -thank_you,"oh, thanks",original,bye,2 -yes,confirmed,original,book,1 -how_busy,can you wait before eating in the beta restaurant?,parrot,avail,0 -no,no it's not true,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -how_busy,how busy is mr. joes steakhouse at 5:30,lambada,avail,0 -yes,very true,original,book,1 -yes,yup,original,book,1 -yes,so it's real,parrot,book,1 -greeting,how does it go?,parrot,greet,4 -goodbye,good talk,parrot,bye,2 -thank_you,so grateful,parrot,bye,2 -no,negative certainly,parrot,cancel,3 -no,absolutely false,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -yes,"yeah, that's true",lambada,book,1 -thank_you,"thanks, that's helpful",original,bye,2 -no,nope,original,cancel,3 -goodbye,buhbye,original,bye,2 -yes,ok,original,book,1 -no,the negator,parrot,cancel,3 -schedule_meeting,please reserve a meeting room for 10:00 on thursday,lambada,book,1 -yes,10-Apr,original,book,1 -goodbye,see ya,original,bye,2 -yes,absolutely!,original,book,1 -yes,confirmed,original,book,1 -how_busy,how long is the wait to eat at red lobster,lambada,avail,0 -no,this is my reply,parrot,cancel,3 -no,i mean no,parrot,cancel,3 -no,it's false,parrot,cancel,3 -yes,is true,parrot,book,1 -thank_you,okay thank you,parrot,bye,2 -no,no!,original,cancel,3 -goodbye,thanks goodbye,parrot,bye,2 -how_busy,how long will the wait at mcdonald's be after 7?,parrot,avail,0 -no,this is false,parrot,cancel,3 -how_busy,what's the wait time at red lobster right now?,parrot,avail,0 -yes,okay,original,book,1 -greeting,hi there alexa,original,greet,4 -calendar,please know what's on my calendar for friday the 1st,parrot,avail,0 -date,what's it today?,parrot,avail,0 -date,what's the date now,parrot,avail,0 -no,so that's no,parrot,cancel,3 -greeting,hey,original,greet,4 -greeting,how's my doing?,parrot,greet,4 -no,that's not it,parrot,cancel,3 -cancel_reservation,i have to cancel my reservation,original,cancel,3 -yes,sure thing,original,book,1 -goodbye,see ya,lambada,bye,2 -greeting,hi there,original,greet,4 -greeting,"hello, good morning",lambada,greet,4 -date,tell me what day it is,parrot,avail,0 -date,today?,parrot,avail,0 -yes,absolutely correct,original,book,1 -no,nay,original,cancel,3 -greeting,how's my family going?,parrot,greet,4 -no,i say negative,original,cancel,3 -no,nothing,parrot,cancel,3 -reminder_update,you know something?,parrot,resched,5 -yes,"yep, that's right",original,book,1 -yes,great,original,book,1 -no,absolutely false,parrot,cancel,3 -yes,perfect,parrot,book,1 -no,"no, that can't be right",original,cancel,3 -greeting,hey,original,greet,4 -no,so that's no,parrot,cancel,3 -goodbye,take it easy,lambada,bye,2 -how_busy,the crowd at red lobster around 8?,parrot,avail,0 -goodbye,later!,original,bye,2 -no,that is not factual,original,cancel,3 -how_busy,can you tell me the wait time at the olive garden?,parrot,avail,0 -goodbye,cya later,original,bye,2 -how_busy,how busy is black hawk steak house at 8,lambada,avail,0 -yes,"yep, that's right",original,book,1 -yes,that is right,original,book,1 -meeting_schedule,wanna meet roger?,parrot,avail,0 -goodbye,goodbye goodbye,parrot,bye,2 -no,certainly false,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -calendar,read my calendar events,original,avail,0 -goodbye,give me a chat soon,lambada,bye,2 -cancel_reservation,i need to cancel my reservation for rob at red robin,original,cancel,3 -no,that's absolutely false,parrot,cancel,3 -thank_you,i'm very thankful,parrot,bye,2 -how_busy,how long will it be before we are seated at the restaurant,lambada,avail,0 -date,today?,parrot,avail,0 -yes,accept,parrot,book,1 -meeting_schedule,when's my meeting with frank?,parrot,avail,0 -date,what will it be tomorrow?,lambada,avail,0 -yes,accept,parrot,book,1 -yes,so it's checked,parrot,book,1 -yes,certainly,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -meeting_schedule,tell me if i have any meetings with dan today?,lambada,avail,0 -no,negating,parrot,cancel,3 -yes,TRUE,original,book,1 -reminder_update,remind me of the steak,parrot,resched,5 -how_busy,how long will it take me to get a seat at the steakhouse in the outback,parrot,avail,0 -yes,"correct, that's true",original,book,1 -goodbye,bye,original,bye,2 -greeting,good day,original,greet,4 -greeting,how you're doing?,parrot,greet,4 -thank_you,my gratitude,parrot,bye,2 -yes,"yep, that's right",original,book,1 -goodbye,goodnight,original,bye,2 -calendar_update,take the doctor appointment off my calendar please,original,resched,5 -goodbye,goodbyes,parrot,bye,2 -cancel_reservation,i want to cancel my reservation for network to xaga such,original,cancel,3 -greeting,heyo,original,greet,4 -meeting_schedule,what meetings do you have planned today?,parrot,avail,0 -goodbye,regards,original,bye,2 -goodbye,later,original,bye,2 -no,it's negative,parrot,cancel,3 -schedule_meeting,i need an appointment for john at 9am,parrot,book,1 -yes,yeah,original,book,1 -thank_you,many thanks,original,bye,2 -goodbye,goodbye,original,bye,2 -schedule_meeting,put in a meeting for the blue room on friday?,parrot,book,1 -goodbye,later,original,bye,2 -greeting,"hey, ai",original,greet,4 -goodbye,see ya!,original,bye,2 -greeting,what is going on?,parrot,greet,4 -goodbye,peace,original,bye,2 -goodbye,tootles?,parrot,bye,2 -greeting,what's happened?,parrot,greet,4 -yes,ok,original,book,1 -yes,"yes, please",original,book,1 -greeting,"hey, what's up",original,greet,4 -greeting,so how's everything going?,parrot,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how long will it take for me to be seated at red lobster,lambada,avail,0 -greeting,whats up?,parrot,greet,4 -yes,ya,original,book,1 -yes,"yeah, that's right",original,book,1 -how_busy,does the olive garden have a long wait for dinner?,parrot,avail,0 -no,i think that's false,original,cancel,3 -yes,it's indeed true,original,book,1 -thank_you,thanks!,original,bye,2 -goodbye,i was on a great run,lambada,bye,2 -yes,accept,parrot,book,1 -goodbye,peace,original,bye,2 -schedule_meeting,can i book a meeting?,parrot,book,1 -yes,indeed,original,book,1 -date,today?,parrot,avail,0 -no,that's no,parrot,cancel,3 -goodbye,"later, thanks for chatting",original,bye,2 -goodbye,peace,original,bye,2 -yes,thats right,original,book,1 -no,invalid,original,cancel,3 -thank_you,thanks again,original,bye,2 -yes,roger that,original,book,1 -no,that's not factual,parrot,cancel,3 -calendar,show me what my calendar looks like for march 13?,parrot,avail,0 -goodbye,signing off,original,bye,2 -thank_you,good job thanks,parrot,bye,2 -yes,indeed,parrot,book,1 -goodbye,bye my friend,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -no,i meant no,original,cancel,3 -greeting,bonjour,original,greet,4 -no,it's negative,parrot,cancel,3 -greeting,hey fellow,parrot,greet,4 -goodbye,i'll leave now,parrot,bye,2 -goodbye,bye my friend,parrot,bye,2 -no,it is indeed false,lambada,cancel,3 -yes,certainly true,parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -yes,10-Apr,original,book,1 -meeting_schedule,i need to know if i have scheduled meetings with mark,parrot,avail,0 -calendar,do you have scheduled events on the calendar for the afternoon of september 7th?,parrot,avail,0 -how_busy,does the wait at olive garden have been long?,lambada,avail,0 -no,invalid,original,cancel,3 -no,this statement is false,parrot,cancel,3 -thank_you,your assistance is appreciated,parrot,bye,2 -how_busy,are there any cool people in the bar at 9 pm?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -greeting,why hello?,original,greet,4 -no,false sure,parrot,cancel,3 -no,that's no,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -meeting_schedule,are there meetings between 3 and 5 o'clock?,parrot,avail,0 -how_busy,how busy will the cheesecake factory be at 8 pm?,parrot,avail,0 -yes,yes,original,book,1 -no,that would be terrible,lambada,cancel,3 -date,wednesday friday or saturday?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -goodbye,i had a good run,parrot,bye,2 -date,what's it today?,parrot,avail,0 -yes,affirmative,original,book,1 -goodbye,buhbye now,lambada,bye,2 -how_busy,how long will it take to wait at the steak house?,parrot,avail,0 -no,"no, that isn't right",lambada,cancel,3 -date,give me today's date,original,avail,0 -goodbye,glad we can talk,parrot,bye,2 -yes,oh yes,original,book,1 -yes,"yes, that's right",original,book,1 -greeting,"good morning, ai",original,greet,4 -yes,positive,parrot,book,1 -greeting,how goes it,original,greet,4 -reminder_update,remind me of the flowers,parrot,resched,5 -no,no,lambada,cancel,3 -goodbye,bye-bye,original,bye,2 -yes,you're right,original,book,1 -goodbye,regards,original,bye,2 -thank_you,again thanks,parrot,bye,2 -greeting,show me what's new,parrot,greet,4 -goodbye,i enjoyed our talk,parrot,bye,2 -no,yes that's false,lambada,cancel,3 -thank_you,thanks,original,bye,2 -yes,certainly,parrot,book,1 -yes,"yes, that's right",original,book,1 -reminder_update,i need you to remember to buy my clothes,parrot,resched,5 -yes,"yes, please",original,book,1 -yes,definitely yes,parrot,book,1 -yes,it was exactly what you said,parrot,book,1 -goodbye,i'll leave,parrot,bye,2 -no,that's not the way,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -greeting,salutations,parrot,greet,4 -no,not that,original,cancel,3 -reminder_update,make me remember,parrot,resched,5 -goodbye,talk later,original,bye,2 -goodbye,later thanks for talking,parrot,bye,2 -goodbye,later!,original,bye,2 -yes,positive,original,book,1 -greeting,"hey, how's it going",original,greet,4 -no,nay,original,cancel,3 -no,is my falsehood?,parrot,cancel,3 -no,no longer valid,parrot,cancel,3 -yes,all right,original,book,1 -yes,oh-huh,parrot,book,1 -greeting,so how's everything going?,parrot,greet,4 -goodbye,bye for now,original,bye,2 -yes,perfect,parrot,book,1 -yes,yes,original,book,1 -meeting_schedule,what meetings are scheduled today?,lambada,avail,0 -goodbye,good-bye,parrot,bye,2 -no,that's incorrect,original,cancel,3 -thank_you,good job thanks,parrot,bye,2 -date,today is the date,parrot,avail,0 -no,negation,parrot,cancel,3 -no,nada,original,cancel,3 -cancel_reservation,please cancel the reservation at zephers for joe and me right now,parrot,cancel,3 -thank_you,your response is appreciated,parrot,bye,2 -yes,yes that's it,original,book,1 -reminder_update,maybe a reminder?,parrot,resched,5 -how_busy,how busy the restaurant is when i go?,parrot,avail,0 -how_busy,how busy is imanas?,parrot,avail,0 -yes,that's right,original,book,1 -greeting,hola,original,greet,4 -how_busy,how long will i have to wait before i go to the lobster?,parrot,avail,0 -goodbye,bye,original,bye,2 -yes,yes,original,book,1 -calendar,what's the next day of march?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -date,what's today?,parrot,avail,0 -greeting,wassup,original,greet,4 -yes,approved,original,book,1 -no,nada,original,cancel,3 -goodbye,i'll go,parrot,bye,2 -goodbye,bye now,original,bye,2 -yes,we would say yes,lambada,book,1 -thank_you,thanks for cooperating,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -goodbye,tootles,original,bye,2 -date,tell me the day tomorrow?,parrot,avail,0 -date,what the day is?,parrot,avail,0 -no,nay,original,cancel,3 -no,naw,original,cancel,3 -no,i disagree,parrot,cancel,3 -greeting,hey,original,greet,4 -yes,ya,original,book,1 -goodbye,sayonara,original,bye,2 -goodbye,"later, good luck",lambada,bye,2 -goodbye,goodbyes soon,parrot,bye,2 -yes,can we please?,original,book,1 -yes,10-Apr,original,book,1 -calendar,what's on my calendar for march 10th,lambada,avail,0 -yes,certainly,parrot,book,1 -goodbye,buhbye,original,bye,2 -goodbye,my friend,parrot,bye,2 -yes,perfect,parrot,book,1 -goodbye,goodbye then,parrot,bye,2 -no,that's so false,parrot,cancel,3 -yes,certainly,parrot,book,1 -no,that's erroneous,parrot,cancel,3 -greeting,what's up with you?,parrot,greet,4 -no,negatory?,parrot,cancel,3 -goodbye,on the road,parrot,bye,2 -no,negating,parrot,cancel,3 -goodbye,lovely conversation,parrot,bye,2 -goodbye,have fun?,lambada,bye,2 -greeting,hello what's going on?,parrot,greet,4 -how_busy,waiting at macaroni grill?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -yes,uh huh,original,book,1 -meeting_schedule,is my meeting scheduled?,parrot,avail,0 -greeting,aho,parrot,greet,4 -yes,i agree,original,book,1 -yes,yup,original,book,1 -yes,confirmed,original,book,1 -thank_you,you've been great,parrot,bye,2 -greeting,wassup,original,greet,4 -reminder_update,so i can remember the baby shower this weekend,parrot,resched,5 -no,not right?,parrot,cancel,3 -no,it's the wrong answer,parrot,cancel,3 -yes,good,parrot,book,1 -yes,roger that,original,book,1 -thank_you,you've tried,parrot,bye,2 -thank_you,you helped me,parrot,bye,2 -date,can you tell me what the next day will be?,parrot,avail,0 -yes,great,original,book,1 -reminder_update,you have to remind me of something,parrot,resched,5 -how_busy,how long is the wait time at a nice steak house,lambada,avail,0 -how_busy,if i wait for a table at the red lobster,parrot,avail,0 -yes,yeap,original,book,1 -greeting,salutations!,original,greet,4 -cancel_reservation,please cancel my reservation for franklin at the outback,parrot,cancel,3 -how_busy,how busy is the cheesecake factory at 6pm?,parrot,avail,0 -reminder_update,add a reminder to check my mail,parrot,resched,5 -thank_you,appreciated,original,bye,2 -goodbye,good call,parrot,bye,2 -greeting,how's life treating you?,parrot,greet,4 -schedule_meeting,can you book a meeting with emma?,parrot,book,1 -goodbye,i enjoy our chat,lambada,bye,2 -thank_you,again thanks,parrot,bye,2 -cancel_reservation,i don't need a reservation,parrot,cancel,3 -cancel_reservation,abrogate the reservation for dinner,parrot,cancel,3 -how_busy,tell me the time it takes to sit in needham's,parrot,avail,0 -no,"no, that's incorrect",original,cancel,3 -yes,yay,lambada,book,1 -yes,that's true,original,book,1 -yes,okay,original,book,1 -no,it's overwhelmingly negative,parrot,cancel,3 -greeting,hola,original,greet,4 -goodbye,the talk was nice,lambada,bye,2 -no,not that one,original,cancel,3 -cancel_reservation,cancel my reservation in the restaurant for robin,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -reminder_update,create a reminder please,parrot,resched,5 -greeting,hi,original,greet,4 -goodbye,bye bye,lambada,bye,2 -no,nope,original,cancel,3 -goodbye,"enjoy my day, bye",lambada,bye,2 -yes,TRUE,original,book,1 -meeting_schedule,are there meetings between noon and one?,parrot,avail,0 -yes,say yes,lambada,book,1 -no,i don't want that,parrot,cancel,3 -greeting,hello there!,original,greet,4 -no,that's so wrong,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -goodbye,glad to talk,parrot,bye,2 -yes,10-Apr,original,book,1 -goodbye,good-bye,parrot,bye,2 -no,it's no,parrot,cancel,3 -yes,yeap,original,book,1 -date,date tomorrow,parrot,avail,0 -how_busy,how long is the wait at olive garden at 5pm,lambada,avail,0 -thank_you,i'm glad you met,parrot,bye,2 -goodbye,farewell!,original,bye,2 -how_busy,how long do i have to wait for a table at the restaurant?,parrot,avail,0 -no,negating,parrot,cancel,3 -greeting,heyo,original,greet,4 -thank_you,please thank you,lambada,bye,2 -thank_you,i'm thankful,original,bye,2 -goodbye,"thanks for chatting, bye",lambada,bye,2 -how_busy,how long will the line be at chili's around 7pm,lambada,avail,0 -no,the negator,parrot,cancel,3 -yes,and you're right,parrot,book,1 -no,not good,parrot,cancel,3 -how_busy,how long do you think i'll have to wait for a table in the olive garden?,parrot,avail,0 -date,what date?,parrot,avail,0 -greeting,hello there,original,greet,4 -greeting,how ya doing,lambada,greet,4 -how_busy,wait how long?,parrot,avail,0 -thank_you,i want to thank you for your time,parrot,bye,2 -greeting,what i feel?,parrot,greet,4 -greeting,wanted to say hello,parrot,greet,4 -goodbye,adios,original,bye,2 -yes,do that?,original,book,1 -yes,i'm going to tell you tes,parrot,book,1 -greeting,whats up?,parrot,greet,4 -goodbye,i enjoyed our goodbye,parrot,bye,2 -yes,yeah,original,book,1 -no,it's overwhelmingly negative,parrot,cancel,3 -goodbye,good bye then,original,bye,2 -greeting,"hi, ai",original,greet,4 -no,negative sure,parrot,cancel,3 -no,"no, definitely not",original,cancel,3 -greeting,wassup,original,greet,4 -goodbye,thank you for the talk,parrot,bye,2 -how_busy,how busy is the meal at red lobster tonight?,parrot,avail,0 -greeting,yo,original,greet,4 -goodbye,be careful then,lambada,bye,2 -reminder_update,make a reminder,parrot,resched,5 -goodbye,later,original,bye,2 -cancel_reservation,i've got to cancel my reservation,parrot,cancel,3 -calendar,what's the tuesday calendar?,parrot,avail,0 -no,invalid,original,cancel,3 -greeting,hola!,original,greet,4 -yes,perfect,parrot,book,1 -no,so that's no,parrot,cancel,3 -reminder_update,please remind me,parrot,resched,5 -yes,is true,parrot,book,1 -greeting,hey fellows,parrot,greet,4 -how_busy,i want a table at texas roadhouse; how long will it be,original,avail,0 -no,no?,parrot,cancel,3 -how_busy,how much will the restaurant be packed before dinner?,parrot,avail,0 -yes,confirm,original,book,1 -goodbye,wonderful conversation,lambada,bye,2 -date,what's the date,original,avail,0 -thank_you,thanks so much!,original,bye,2 -cancel_reservation,discard my reservation for dinner,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -schedule_meeting,check room availability between 1 and 3 pm,parrot,book,1 -no,negation,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -no,no!,original,cancel,3 -goodbye,i'm outta here!,original,bye,2 -greeting,how're you?,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -date,please tell me the date tomorrow,parrot,avail,0 -how_busy,how many people attend the restaurant at 8 pm,parrot,avail,0 -how_busy,is the wait at chocolate fountain long?,lambada,avail,0 -yes,facts,original,book,1 -goodbye,goodbyes,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -no,that is overwhelmingly wrong,lambada,cancel,3 -yes,ya,original,book,1 -goodbye,peace,original,bye,2 -calendar,tell me what's in my calendar for march 23?,parrot,avail,0 -how_busy,how busy is raspberry sauce factory around 3,lambada,avail,0 -goodbye,peace,original,bye,2 -how_busy,how busy will the chilis be at 6pm?,parrot,avail,0 -greeting,yo,original,greet,4 -reminder_update,please remind me again,parrot,resched,5 -meeting_schedule,do i have any meetings today between 5 and 6?,original,avail,0 -greeting,hello,original,greet,4 -yes,yeah yeah,lambada,book,1 -goodbye,great talk,lambada,bye,2 -calendar,can you see my calendar for tuesday 17th?,parrot,avail,0 -yes,that is true,lambada,book,1 -yes,great,original,book,1 -meeting_schedule,show me the time i'm meeting with sarah today?,parrot,avail,0 -thank_you,appreciate the assistance,parrot,bye,2 -goodbye,goodbye bye,parrot,bye,2 -meeting_schedule,can you list the schedule of my meeting for today?,parrot,avail,0 -thank_you,thank you very much,original,bye,2 -no,negatory?,parrot,cancel,3 -yes,TRUE,original,book,1 -greeting,hey how's my day going?,parrot,greet,4 -goodbye,good-bye,parrot,bye,2 -date,today?,parrot,avail,0 -yes,absolutely,original,book,1 -yes,you got it,parrot,book,1 -thank_you,thank you ai,parrot,bye,2 -no,invalid,original,cancel,3 -yes,a fact,parrot,book,1 -no,i think it's not possible it's not true,parrot,cancel,3 -greeting,so what's up?,parrot,greet,4 -how_busy,what's the wait time at the chipotle steakhouse?,parrot,avail,0 -no,not happening,original,cancel,3 -how_busy,how busy is ihop at 7,lambada,avail,0 -thank_you,thanks for my support,parrot,bye,2 -no,i think not,original,cancel,3 -goodbye,afterward,parrot,bye,2 -yes,that's right,original,book,1 -no,negatory,original,cancel,3 -greeting,and how're you doing,parrot,greet,4 -greeting,ahoy there,lambada,greet,4 -no,negative for sure,original,cancel,3 -how_busy,how busy is ihop?,parrot,avail,0 -no,is very false,parrot,cancel,3 -meeting_schedule,how much time is my meeting scheduled to last,parrot,avail,0 -how_busy,how busy is the olive garden at dinner time?,parrot,avail,0 -meeting_schedule,any meetings on schedule today,parrot,avail,0 -goodbye,later good luck,parrot,bye,2 -how_busy,is that olive garden busy?,parrot,avail,0 -schedule_meeting,is there meeting room available between 9 and 10?,parrot,book,1 -no,that's not right,original,cancel,3 -greeting,hey,original,greet,4 -no,no,lambada,cancel,3 -yes,yep,original,book,1 -thank_you,"oh, thanks",original,bye,2 -greeting,welcome,parrot,greet,4 -thank_you,good job,lambada,bye,2 -thank_you,awesome thanks,parrot,bye,2 -greeting,how are things going,original,greet,4 -no,negating,parrot,cancel,3 -goodbye,farewell!,original,bye,2 -goodbye,tootles,original,bye,2 -yes,"yeah, that's it",lambada,book,1 -goodbye,later goodbye,parrot,bye,2 -date,what day?,parrot,avail,0 -how_busy,how busy is macy's right now,lambada,avail,0 -yes,accepted,original,book,1 -goodbye,good bye,original,bye,2 -no,no good,original,cancel,3 -no,negating,parrot,cancel,3 -goodbye,adios!,original,bye,2 -schedule_meeting,are any meeting rooms available between 8-10?,lambada,book,1 -no,negative for sure,original,cancel,3 -no,erroneous,parrot,cancel,3 -yes,i guess yes,parrot,book,1 -goodbye,glad we talked,parrot,bye,2 -goodbye,sayonara,original,bye,2 -goodbye,later then,lambada,bye,2 -greeting,hey,original,greet,4 -reminder_update,remind yourself to go shopping,parrot,resched,5 -no,FALSE,original,cancel,3 -no,no good,original,cancel,3 -thank_you,"oh, thanks",original,bye,2 -yes,indeed,parrot,book,1 -yes,ok,original,book,1 -goodbye,farewell,original,bye,2 -thank_you,appreciated,original,bye,2 -how_busy,how long will it be before i sit at the red lobster?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -how_busy,please check the wait times at chili's for a meal,lambada,avail,0 -how_busy,how long is the wait time at the cheese cake factory,lambada,avail,0 -yes,okay,original,book,1 -goodbye,later gater,original,bye,2 -calendar,do you have any appointments scheduled for april 19?,parrot,avail,0 -goodbye,later gator!,original,bye,2 -goodbye,adios!,original,bye,2 -yes,that's a fact,parrot,book,1 -goodbye,farewell!,original,bye,2 -calendar,check my calendar,parrot,avail,0 -how_busy,tiaras are usually crowded around 7pm?,parrot,avail,0 -yes,uh huh,original,book,1 -goodbye,bye-bye,original,bye,2 -no,so that's no,parrot,cancel,3 -goodbye,nice to see you goodbye,parrot,bye,2 -greeting,"ah-yah, how are things",lambada,greet,4 -yes,obviously,parrot,book,1 -meeting_schedule,when will i meet ann?,parrot,avail,0 -greeting,"hello, good day",lambada,greet,4 -goodbye,i'm out,parrot,bye,2 -goodbye,good night,original,bye,2 -how_busy,tell me how busy red robin is at 7:30?,lambada,avail,0 -reminder_update,add a note,parrot,resched,5 -how_busy,how long after 7pm,parrot,avail,0 -goodbye,sign off,parrot,bye,2 -greeting,heyo,original,greet,4 -greeting,how's idy?,parrot,greet,4 -thank_you,thankyou,parrot,bye,2 -meeting_schedule,is my meeting scheduled?,parrot,avail,0 -yes,yeap,original,book,1 -how_busy,how long after 7pm,parrot,avail,0 -date,current date,original,avail,0 -goodbye,ai goodbye,original,bye,2 -yes,yes that's correct,original,book,1 -reminder_update,keep checking the steak?,parrot,resched,5 -thank_you,i need to thank you for your time,lambada,bye,2 -no,that's no,parrot,cancel,3 -reminder_update,can we set a reminder?,parrot,resched,5 -yes,oh yes,original,book,1 -no,"that would be ""no",original,cancel,3 -reminder_update,remind me to change the oil,parrot,resched,5 -greeting,aho,parrot,greet,4 -yes,"yes, please",parrot,book,1 -goodbye,goodbye soon,lambada,bye,2 -yes,of course,original,book,1 -thank_you,thanks please,original,bye,2 -date,what date tomorrow?,parrot,avail,0 -meeting_schedule,how do you plan my meeting?,parrot,avail,0 -schedule_meeting,tell me how do i schedule a meeting?,original,book,1 -goodbye,a good conversation,parrot,bye,2 -yes,"yup, that's true",original,book,1 -thank_you,thank ya!,original,bye,2 -goodbye,thanks for chatting,lambada,bye,2 -goodbye,i'm leaving,parrot,bye,2 -thank_you,thank you again,parrot,bye,2 -goodbye,sayonara,original,bye,2 -how_busy,how busy the rest of the restaurant will be at noon?,parrot,avail,0 -thank_you,you did it for me,parrot,bye,2 -how_busy,how long will i wait at rancho rancho?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -calendar,what time is my haircut on wednesday?,original,avail,0 -calendar_update,please remove dinner with sally from my calendar for march 18 2019,parrot,resched,5 -goodbye,my way,parrot,bye,2 -date,i'd like to know the date tomorrow,original,avail,0 -thank_you,for that thank you,parrot,bye,2 -calendar,show me the calendar?,parrot,avail,0 -cancel_reservation,can i cancel my reservation at red robin?,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -thank_you,very grateful,parrot,bye,2 -no,there is no,parrot,cancel,3 -no,negatory,original,cancel,3 -yes,all right,original,book,1 -meeting_schedule,check my schedule today,parrot,avail,0 -no,naw,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -greeting,hey bs,lambada,greet,4 -yes,i know,parrot,book,1 -meeting_schedule,time of meeting?,parrot,avail,0 -cancel_reservation,how do you cancel kyle's party at red lobster?,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -yes,certainly,parrot,book,1 -thank_you,thanks so much,original,bye,2 -thank_you,thanks please,original,bye,2 -goodbye,always a pleasure to chat with you,parrot,bye,2 -thank_you,"nice, excellent!",original,bye,2 -yes,yeah yeah,lambada,book,1 -greeting,how's ai doing today?,parrot,greet,4 -how_busy,what's the wait time in chipotle tonight?,parrot,avail,0 -no,no don't do that!,original,cancel,3 -calendar,what should i do on wednesday?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -calendar_update,can you delete an event from my calendar?,parrot,resched,5 -goodbye,goodbye bye,parrot,bye,2 -goodbye,goodbye thank you,parrot,bye,2 -greeting,welcome,parrot,greet,4 -meeting_schedule,what's on my schedule?,parrot,avail,0 -greeting,hello,original,greet,4 -greeting,wassup,original,greet,4 -how_busy,would there be a long wait for a table at blue moon,lambada,avail,0 -thank_you,awesome thank you,parrot,bye,2 -greeting,aloha,original,greet,4 -no,negative definitely,parrot,cancel,3 -greeting,how ya doing,lambada,greet,4 -yes,roger that,original,book,1 -greeting,how's everything,original,greet,4 -goodbye,i'm out,parrot,bye,2 -date,show me the date,original,avail,0 -greeting,bonjour,original,greet,4 -no,negatory,original,cancel,3 -greeting,how've you been feeling,original,greet,4 -goodbye,say goodbye,parrot,bye,2 -date,current day,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -thank_you,thanks for trying,original,bye,2 -goodbye,goodbye,original,bye,2 -goodbye,goodbye,original,bye,2 -yes,yeah yeah,lambada,book,1 -yes,sure,original,book,1 -goodbye,it's over,parrot,bye,2 -no,you can't make the statement true,parrot,cancel,3 -thank_you,my thanks,parrot,bye,2 -greeting,bonjour,original,greet,4 -goodbye,"talk to you soon, bye!",original,bye,2 -yes,10-Apr,original,book,1 -calendar,please know what's on my calendar for friday the 1st of february,parrot,avail,0 -greeting,hello there,original,greet,4 -date,what's the date now?,parrot,avail,0 -greeting,hi,original,greet,4 -yes,i believe that is true,lambada,book,1 -thank_you,thanks!,original,bye,2 -calendar_update,add my wedding to my calendar for march 7,lambada,resched,5 -reminder_update,please remember to clean the floor,parrot,resched,5 -thank_you,my gratitude,parrot,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -goodbye,great conversation,parrot,bye,2 -yes,you are definitely correct,lambada,book,1 -meeting_schedule,tell me the scheduled conference from noon?,parrot,avail,0 -no,it's not correct,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -yes,definitely yes,parrot,book,1 -no,not really,original,cancel,3 -goodbye,farewell!,original,bye,2 -no,that is not true,original,cancel,3 -greeting,i want to know how things go,parrot,greet,4 -goodbye,i want it now,parrot,bye,2 -meeting_schedule,tell me the date of today's meeting,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -greeting,hey there!,original,greet,4 -yes,yep,original,book,1 -yes,perfect,parrot,book,1 -goodbye,regards,original,bye,2 -calendar,what do i have planned for march 2?,parrot,avail,0 -yes,affirmitive,original,book,1 -yes,yep,original,book,1 -yes,oh-huh,parrot,book,1 -thank_you,okay thank you,parrot,bye,2 -no,no no thanks,parrot,cancel,3 -no,no please,parrot,cancel,3 -cancel_reservation,can you cancel my reservation on tuesday for chris at stella maris?,original,cancel,3 -greeting,whats up,original,greet,4 -reminder_update,can i set a reminder?,original,resched,5 -yes,yep,original,book,1 -goodbye,bye,original,bye,2 -yes,affirmitive,original,book,1 -no,FALSE,lambada,cancel,3 -thank_you,you've been great,parrot,bye,2 -goodbye,bye!,original,bye,2 -thank_you,okay thank you,parrot,bye,2 -yes,"yes, that's accurate",original,book,1 -yes,confirmed,original,book,1 -no,erroneous,parrot,cancel,3 -goodbye,goodbyes soon,parrot,bye,2 -calendar,help me know what's on my calendar for march 17th,parrot,avail,0 -date,what today?,parrot,avail,0 -yes,absolutely!,original,book,1 -reminder_update,have i forgotten?,parrot,resched,5 -yes,accept,parrot,book,1 -date,what's it today?,parrot,avail,0 -goodbye,great conversation,parrot,bye,2 -goodbye,goodbye soon,lambada,bye,2 -yes,agreed,original,book,1 -thank_you,i'm grateful,original,bye,2 -no,nada,original,cancel,3 -yes,yeah,original,book,1 -yes,you're right,original,book,1 -meeting_schedule,check out my meetings with christopher,parrot,avail,0 -date,what is the date that we'll be in?,lambada,avail,0 -reminder_update,make a reminder of my car insurance on monday,parrot,resched,5 -yes,right,parrot,book,1 -yes,perfect,parrot,book,1 -calendar_update,take out my dinner plans today,parrot,resched,5 -greeting,what's up,original,greet,4 -how_busy,how busy will olive gardens be around 5,parrot,avail,0 -no,i'd rather not answer,parrot,cancel,3 -goodbye,good conversation,parrot,bye,2 -yes,definitely,original,book,1 -thank_you,again thanks,parrot,bye,2 -thank_you,okay thanks,original,bye,2 -yes,huh,parrot,book,1 -calendar,what's on my calendar for next january,lambada,avail,0 -goodbye,good luck,lambada,bye,2 -meeting_schedule,what time will i meet jane?,parrot,avail,0 -greeting,ahoy hoy,original,greet,4 -no,no way!,original,cancel,3 -goodbye,good luck tomorrow,lambada,bye,2 -how_busy,how many people do you think are at chili around 11pm,parrot,avail,0 -yes,not a falsehood,parrot,book,1 -yes,ok,original,book,1 -goodbye,i leave now,parrot,bye,2 -goodbye,adios!,original,bye,2 -no,the answer is not true,parrot,cancel,3 -date,date tomorrow,parrot,avail,0 -no,negatory?,parrot,cancel,3 -date,tell me what day of the week it is?,lambada,avail,0 -no,that's incorrect!,original,cancel,3 -reminder_update,how about a reminder,original,resched,5 -goodbye,nice drive by,lambada,bye,2 -greeting,good evening,original,greet,4 -no,say negative,parrot,cancel,3 -goodbye,i'll go,parrot,bye,2 -yes,not false,parrot,book,1 -goodbye,thank you goodbye,original,bye,2 -how_busy,how busy is chili at 6?,parrot,avail,0 -yes,okay,original,book,1 -greeting,how is my day,original,greet,4 -goodbye,bye,original,bye,2 -greeting,"hey, how's my day",lambada,greet,4 -thank_you,the best,parrot,bye,2 -yes,ok,original,book,1 -greeting,whats new,lambada,greet,4 -greeting,hello there,original,greet,4 -goodbye,i've got to go,lambada,bye,2 -no,that's not factual,parrot,cancel,3 -reminder_update,make a reminder for 5 pm to clean the house,parrot,resched,5 -goodbye,get there soon,lambada,bye,2 -yes,yes you have been correct,lambada,book,1 -no,it's not true,parrot,cancel,3 -no,invalid,original,cancel,3 -yes,ok,original,book,1 -greeting,nice day,lambada,greet,4 -greeting,"hey, ai",original,greet,4 -goodbye,fairwell?,parrot,bye,2 -yes,yay,lambada,book,1 -thank_you,thank ya!,original,bye,2 -yes,correct,original,book,1 -yes,accepted,original,book,1 -thank_you,thank you!,original,bye,2 -yes,obviously,parrot,book,1 -no,FALSE,lambada,cancel,3 -date,what day?,parrot,avail,0 -meeting_schedule,are there meetings between 1 and 8?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -goodbye,i leave now,parrot,bye,2 -no,not true,original,cancel,3 -greeting,get up ai,parrot,greet,4 -goodbye,it was great to chat with you,lambada,bye,2 -thank_you,you've been amazing,lambada,bye,2 -thank_you,thank you ai,parrot,bye,2 -schedule_meeting,is it possible to sign up for a meeting on friday at 10am?,parrot,book,1 -goodbye,the discussion was nice,parrot,bye,2 -no,nothing,parrot,cancel,3 -thank_you,you've been amazing,lambada,bye,2 -yes,that's the truth,original,book,1 -yes,okay,original,book,1 -no,so that's no,parrot,cancel,3 -yes,correct,original,book,1 -no,FALSE,original,cancel,3 -yes,certainly true,parrot,book,1 -yes,absolutely!,original,book,1 -meeting_schedule,have any meetings between 2 and 3?,parrot,avail,0 -yes,accepted,original,book,1 -greeting,hi,original,greet,4 -yes,my response is yes,parrot,book,1 -no,this is false,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -calendar,please help me find the march schedule,parrot,avail,0 -goodbye,goodbye goodbye,parrot,bye,2 -goodbye,im leaving,parrot,bye,2 -date,what month is it today??,parrot,avail,0 -goodbye,just relax,parrot,bye,2 -no,erroneous,parrot,cancel,3 -goodbye,good conversation,parrot,bye,2 -greeting,salutations!,original,greet,4 -goodbye,thank you for the talk,parrot,bye,2 -thank_you,okay thanks,original,bye,2 -calendar,tell me what's on my calendar for november 6th?,lambada,avail,0 -date,what's the year?,parrot,avail,0 -yes,positive,parrot,book,1 -goodbye,farewell,original,bye,2 -goodbye,", goodbye",lambada,bye,2 -no,naw,original,cancel,3 -thank_you,you're welcome,parrot,bye,2 -calendar,can you tell me the calendar for march 19?,parrot,avail,0 -greeting,what's new here?,parrot,greet,4 -meeting_schedule,please read my schedule,parrot,avail,0 -thank_you,awesome thank you,parrot,bye,2 -date,in 9 days?,parrot,avail,0 -date,what's my date?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -no,FALSE,original,cancel,3 -no,that's wrong,original,cancel,3 -date,today is the date?,parrot,avail,0 -greeting,hey fellow,parrot,greet,4 -yes,good yes,lambada,book,1 -thank_you,i'm grateful,original,bye,2 -meeting_schedule,when is the meeting with jim planned?,parrot,avail,0 -yes,yep,original,book,1 -yes,perfect,parrot,book,1 -greeting,aloha,original,greet,4 -greeting,good day,original,greet,4 -meeting_schedule,do you have any meetings with stan today?,parrot,avail,0 -goodbye,adios ai,original,bye,2 -reminder_update,create a reminder to change clothes,parrot,resched,5 -no,not good idea,parrot,cancel,3 -no,that can't be true?,parrot,cancel,3 -no,invalid,original,cancel,3 -thank_you,thankyou,parrot,bye,2 -yes,10-Apr,original,book,1 -greeting,what's new?,parrot,greet,4 -how_busy,waiting at macaroni grill?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -goodbye,glad we can talk,parrot,bye,2 -greeting,heyo,original,greet,4 -greeting,hola!,original,greet,4 -cancel_reservation,cancel my reservation at chris's for the dinner,parrot,cancel,3 -greeting,hola!,original,greet,4 -goodbye,we can talk later,parrot,bye,2 -greeting,hi how's everything?,parrot,greet,4 -no,no it wouldn't be true,parrot,cancel,3 -greeting,good evening,original,greet,4 -goodbye,later gater,original,bye,2 -goodbye,later then,lambada,bye,2 -schedule_meeting,please help me in a meeting,parrot,book,1 -no,don't like it no,parrot,cancel,3 -yes,approved,original,book,1 -greeting,aho,parrot,greet,4 -yes,"yes, that's true",lambada,book,1 -yes,oh-huh,parrot,book,1 -greeting,hello how're you doing?,parrot,greet,4 -thank_you,my sincere thanks,parrot,bye,2 -yes,i would say yes,lambada,book,1 -no,ill pass,original,cancel,3 -greeting,how ife treats you?,parrot,greet,4 -no,negatory?,parrot,cancel,3 -yes,absolutely,original,book,1 -goodbye,goodbye,original,bye,2 -yes,it's true,original,book,1 -no,it's false,parrot,cancel,3 -no,the negator,parrot,cancel,3 -greeting,how's idy doing?,parrot,greet,4 -no,that's so negative,parrot,cancel,3 -thank_you,i appreciate it,original,bye,2 -thank_you,thank you!,original,bye,2 -no,nada,original,cancel,3 -goodbye,adios,original,bye,2 -no,not that,original,cancel,3 -how_busy,how long does it take to sit in olive garden?,parrot,avail,0 -yes,yep,original,book,1 -yes,10-Apr,original,book,1 -calendar,can you tell me anything about march 29th on my calendar?,lambada,avail,0 -goodbye,nice talk,lambada,bye,2 -meeting_schedule,have a meeting today?,parrot,avail,0 -no,nada,original,cancel,3 -yes,"yes, please",parrot,book,1 -greeting,whats up?,parrot,greet,4 -no,that's a negative,original,cancel,3 -how_busy,how long will i have to wait for a table at the red lobster?,parrot,avail,0 -cancel_reservation,i no longer need the dinner reservation,original,cancel,3 -date,is tomorrow's date?,parrot,avail,0 -no,"no, that's a lie",lambada,cancel,3 -no,that's no,parrot,cancel,3 -goodbye,", goodbye",lambada,bye,2 -yes,yeah that's right,lambada,book,1 -goodbye,good call,parrot,bye,2 -yes,it's certainly positive,parrot,book,1 -yes,"yeah, that's true",lambada,book,1 -no,so that's no,parrot,cancel,3 -yes,i know,parrot,book,1 -no,negation,parrot,cancel,3 -greeting,ahoy there,lambada,greet,4 -yes,it is a true,original,book,1 -reminder_update,new reminder please,lambada,resched,5 -yes,yay,lambada,book,1 -goodbye,greetings,parrot,bye,2 -thank_you,you've been great,parrot,bye,2 -greeting,wassup,original,greet,4 -goodbye,later then,lambada,bye,2 -no,it's so bad,parrot,cancel,3 -how_busy,tell me how long i have to wait at pizza ranch?,lambada,avail,0 -thank_you,so grateful,parrot,bye,2 -no,negatory?,parrot,cancel,3 -goodbye,lovely conversation,parrot,bye,2 -goodbye,farewell!,original,bye,2 -goodbye,thank you for the chance to speak,parrot,bye,2 -how_busy,the coffee shop is usually busy?,parrot,avail,0 -date,what month is it today?,lambada,avail,0 -yes,10-Apr,original,book,1 -goodbye,greetings,parrot,bye,2 -no,FALSE,lambada,cancel,3 -goodbye,afterward,parrot,bye,2 -yes,so it's checked,parrot,book,1 -yes,that would be true,original,book,1 -goodbye,buhbye now,lambada,bye,2 -date,what is the date that will be in 5 days?,lambada,avail,0 -yes,yes please,original,book,1 -how_busy,find out how busy the olive garden is now,parrot,avail,0 -greeting,whats new,lambada,greet,4 -date,tell me the date,parrot,avail,0 -thank_you,i'm thankful,original,bye,2 -no,i meant nothing,parrot,cancel,3 -how_busy,how long will i wait for a table at mac n cheese?,parrot,avail,0 -thank_you,you answered my questions,parrot,bye,2 -greeting,ahoy there,lambada,greet,4 -thank_you,thank you for my consideration,parrot,bye,2 -no,FALSE,original,cancel,3 -goodbye,afterward,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -yes,good yes,lambada,book,1 -greeting,hiya,original,greet,4 -how_busy,is there a wait time at mcdonald's,parrot,avail,0 -cancel_reservation,make sure my reservation in umami with carl is canceled,parrot,cancel,3 -how_busy,does chili have a lot of people sitting between 5 and 7?,parrot,avail,0 -no,the negator,parrot,cancel,3 -thank_you,you helped,parrot,bye,2 -greeting,how's the ayi?,parrot,greet,4 -no,it's a negative,parrot,cancel,3 -goodbye,adios ai,original,bye,2 -thank_you,thanks!,original,bye,2 -thank_you,very grateful,parrot,bye,2 -calendar,tell me what's on my agenda?,parrot,avail,0 -greeting,hola,original,greet,4 -thank_you,you helped me,parrot,bye,2 -yes,approved,original,book,1 -no,it's a no,original,cancel,3 -how_busy,is mr joes pizza usually occupied?,lambada,avail,0 -yes,positive,original,book,1 -reminder_update,new reminder please,lambada,resched,5 -no,erroneous,parrot,cancel,3 -yes,positive,parrot,book,1 -greeting,whats new,lambada,greet,4 -no,that's a negation,parrot,cancel,3 -no,negating,parrot,cancel,3 -date,date please,original,avail,0 -greeting,how's ife treating you,original,greet,4 -schedule_meeting,how are meetings scheduled?,parrot,book,1 -greeting,whats up,original,greet,4 -yes,very true,original,book,1 -goodbye,afterward,parrot,bye,2 -goodbye,adios ai,original,bye,2 -no,"no, don't do that",original,cancel,3 -how_busy,can i expect a long wait at the cheesecake factory?,parrot,avail,0 -greeting,hey hey!,original,greet,4 -schedule_meeting,how can i submit a new meeting request?,parrot,book,1 -yes,just right,parrot,book,1 -yes,facts,original,book,1 -greeting,hello,original,greet,4 -cancel_reservation,scrap that dinner reservation,original,cancel,3 -thank_you,merci beaucoup,original,bye,2 -goodbye,have fun?,lambada,bye,2 -yes,uh-huh,original,book,1 -yes,of course,original,book,1 -no,that’s incorrect,original,cancel,3 -date,can you give me the date tomorrow please?,parrot,avail,0 -yes,i'm telling you it's a true statement,parrot,book,1 -goodbye,i’m leaving-goodbye!,original,bye,2 -no,that's a negatory,original,cancel,3 -no,so that's no,parrot,cancel,3 -yes,agreed,original,book,1 -date,current date,original,avail,0 -schedule_meeting,please schedule a meeting with john?,parrot,book,1 -goodbye,later gator!,original,bye,2 -greeting,hello hello good day,parrot,greet,4 -how_busy,how busy will the restaurant be?,parrot,avail,0 -greeting,hey there,original,greet,4 -how_busy,the chili's busy at 6 pm?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -date,which day is next?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -yes,uh-huh,original,book,1 -how_busy,how long will i have to wait if i want to sit at applebee's?,parrot,avail,0 -greeting,how's ai doing today?,parrot,greet,4 -thank_you,gracias,original,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -goodbye,adios,original,bye,2 -calendar,what's on my calendar for march 14?,parrot,avail,0 -meeting_schedule,what time do you have to meet peter?,parrot,avail,0 -date,tell me what's the date for tomorrow?,parrot,avail,0 -greeting,how's the life in my neighborhood,parrot,greet,4 -greeting,heller,original,greet,4 -yes,positive,parrot,book,1 -how_busy,tell me how busy the cheesecake factory is,parrot,avail,0 -how_busy,how long can i wait for a table at the restaurant?,parrot,avail,0 -reminder_update,remind me to do this once in a while,parrot,resched,5 -no,nothing,parrot,cancel,3 -yes,yep,original,book,1 -goodbye,thank you for contacting me,parrot,bye,2 -how_busy,what is waiting for a table at red lobster?,parrot,avail,0 -no,no?,parrot,cancel,3 -greeting,hi,original,greet,4 -yes,yeah,original,book,1 -goodbye,good conversation,parrot,bye,2 -how_busy,how busy will jennifer's be around 6:30 pm,lambada,avail,0 -yes,a fact,parrot,book,1 -no,that's completely wrong,parrot,cancel,3 -yes,confirmed,original,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -no,FALSE,lambada,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -cancel_reservation,annul the reservation i made,parrot,cancel,3 -calendar,what do i have planned for march 3rd?,lambada,avail,0 -goodbye,goodbyes,parrot,bye,2 -how_busy,would you say how busy is teddy bear at 5 pm,lambada,avail,0 -goodbye,see ya!,original,bye,2 -thank_you,i'm grateful,original,bye,2 -thank_you,i appeciate it,parrot,bye,2 -greeting,how is my day,original,greet,4 -thank_you,"nice, excellent!",original,bye,2 -yes,uh-huh,original,book,1 -greeting,hello there,original,greet,4 -no,this is not true,parrot,cancel,3 -greeting,what's happened to you?,parrot,greet,4 -greeting,hey how's life,original,greet,4 -no,this is false,parrot,cancel,3 -reminder_update,set a reminder reminder to remind me to check when my car payment is due,parrot,resched,5 -date,please date,parrot,avail,0 -goodbye,bye bye now,lambada,bye,2 -date,today's date is what,original,avail,0 -no,that's definitely false,original,cancel,3 -thank_you,thank you,original,bye,2 -goodbye,good luck later,parrot,bye,2 -greeting,salutation,parrot,greet,4 -no,that's bad,parrot,cancel,3 -calendar_update,clear my calendar for march 22,parrot,resched,5 -goodbye,i’m leaving-goodbye!,original,bye,2 -yes,"yes, that is factual",original,book,1 -thank_you,thankyou,parrot,bye,2 -no,don't agree,parrot,cancel,3 -no,that's so false,parrot,cancel,3 -greeting,what's happening?,parrot,greet,4 -no,i'd rather not answer,parrot,cancel,3 -greeting,how's my day?,parrot,greet,4 -thank_you,thankyou,parrot,bye,2 -how_busy,how busy will dr joe be at five?,parrot,avail,0 -how_busy,how busy will ti-noodle be around 6pm,lambada,avail,0 -yes,affirmative,original,book,1 -how_busy,is the cheesecake factory busy at 7 o'clock in the morning?,parrot,avail,0 -no,that's so wrong,parrot,cancel,3 -no,that's incorrect!,original,cancel,3 -goodbye,tootles?,parrot,bye,2 -greeting,what do i feel?,parrot,greet,4 -thank_you,thanks,original,bye,2 -thank_you,gracias,original,bye,2 -goodbye,i enjoyed talking to you goodbye,parrot,bye,2 -thank_you,i appreciate that answer!,original,bye,2 -greeting,ahoy,lambada,greet,4 -goodbye,goodnight,original,bye,2 -goodbye,buhbye now,lambada,bye,2 -calendar,is bowling on my calendar?,parrot,avail,0 -how_busy,how long until dinner?,parrot,avail,0 -thank_you,"awesome, thanks",original,bye,2 -greeting,ahoy,lambada,greet,4 -no,the information is inaccurate,parrot,cancel,3 -thank_you,thank you!,original,bye,2 -greeting,how's otc?,parrot,greet,4 -how_busy,will i be seated at this restaurant for long,lambada,avail,0 -no,say negative,parrot,cancel,3 -greeting,how things go?,parrot,greet,4 -greeting,heyo,original,greet,4 -goodbye,bye bye,lambada,bye,2 -how_busy,how long will the wait be at iman's,lambada,avail,0 -date,i need to know tomorrow,parrot,avail,0 -goodbye,later!,original,bye,2 -greeting,salutations,parrot,greet,4 -thank_you,"thanks, i appreciate it",original,bye,2 -yes,you got it,parrot,book,1 -yes,"yes, that's correct",original,book,1 -goodbye,goodnight,original,bye,2 -yes,correct,original,book,1 -how_busy,how long until dinner?,parrot,avail,0 -no,no way!,original,cancel,3 -how_busy,is ziggy busy around dinner?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -thank_you,thanks so much!,original,bye,2 -goodbye,"that's all, bye",original,bye,2 -reminder_update,remind me,original,resched,5 -goodbye,sayonara,original,bye,2 -cancel_reservation,i don't even need my reservation anymore,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -thank_you,thanks!,original,bye,2 -thank_you,so grateful,parrot,bye,2 -yes,accepted,original,book,1 -greeting,hey fellow,parrot,greet,4 -meeting_schedule,meeting today,parrot,avail,0 -reminder_update,come on please,parrot,resched,5 -reminder_update,make another reminder for tomorrow at 4am,parrot,resched,5 -goodbye,buhbye,original,bye,2 -goodbye,goodbye now,parrot,bye,2 -goodbye,goodbye now,parrot,bye,2 -reminder_update,give me a reminder to pay for groceries this week,parrot,resched,5 -goodbye,thank you for talking to me,lambada,bye,2 -greeting,how's my life today?,parrot,greet,4 -date,what day are we on?,lambada,avail,0 -goodbye,see ya!,original,bye,2 -yes,i'd like to make sure it's true,parrot,book,1 -cancel_reservation,cancel my reservation for dinner at the red robin restaurant,parrot,cancel,3 -calendar,show me the calendar?,parrot,avail,0 -greeting,hola!,original,greet,4 -goodbye,adios,original,bye,2 -how_busy,how long will it take me to get a seat in a chinese restaurant?,parrot,avail,0 -greeting,aho,parrot,greet,4 -greeting,yo,original,greet,4 -yes,approved,original,book,1 -yes,okay,original,book,1 -greeting,how's otc?,parrot,greet,4 -calendar_update,will you remove the dinner with june on saturday the 4th at 7pm from my calendar,original,resched,5 -goodbye,goodbye!,original,bye,2 -thank_you,thank you for the meeting,parrot,bye,2 -no,this isn't true,parrot,cancel,3 -greeting,how are you doing?,parrot,greet,4 -date,date please,original,avail,0 -calendar_update,make sure april 1 is on my calendar,parrot,resched,5 -goodbye,adios!,original,bye,2 -date,in seven days?,parrot,avail,0 -goodbye,peace,original,bye,2 -greeting,wassup,original,greet,4 -no,i say negative,original,cancel,3 -how_busy,what are average wait times for grilled cheese from 6 to 8?,parrot,avail,0 -goodbye,good luck tomorrow,lambada,bye,2 -thank_you,thank you?,parrot,bye,2 -how_busy,is ihop busy?,parrot,avail,0 -no,negative,original,cancel,3 -yes,you are yes,lambada,book,1 -reminder_update,keep an eye on my plants,parrot,resched,5 -goodbye,this conversation was nice,parrot,bye,2 -meeting_schedule,what meetings are planned for today?,parrot,avail,0 -yes,ok,original,book,1 -yes,certainly true,parrot,book,1 -yes,i'll say yes,parrot,book,1 -greeting,heyo,original,greet,4 -greeting,salutations!,original,greet,4 -yes,correct,original,book,1 -reminder_update,please set a reminder?,parrot,resched,5 -greeting,how you're treated?,parrot,greet,4 -no,hell nah,original,cancel,3 -greeting,hello what's happening,parrot,greet,4 -meeting_schedule,when's the meeting today?,parrot,avail,0 -goodbye,i’m leaving-goodbye!,original,bye,2 -goodbye,we chatted well,parrot,bye,2 -how_busy,how long will it be before i'm seated at the red lobster?,parrot,avail,0 -meeting_schedule,meeting today,parrot,avail,0 -goodbye,say goodbye,parrot,bye,2 -yes,a true statement,parrot,book,1 -greeting,wassup,original,greet,4 -meeting_schedule,when's my meeting today?,parrot,avail,0 -no,this isn't true,parrot,cancel,3 -greeting,yo,original,greet,4 -goodbye,bye bye,lambada,bye,2 -goodbye,i have to go now,lambada,bye,2 -schedule_meeting,need a meeting room,parrot,book,1 -how_busy,how long will chili's wait,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -thank_you,thanks again,original,bye,2 -goodbye,tootles?,parrot,bye,2 -yes,accepted,original,book,1 -thank_you,thank you?,parrot,bye,2 -thank_you,thanks for all the help,parrot,bye,2 -goodbye,good luck,lambada,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -no,no?,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -how_busy,does the italian restaurant usually have long lines?,lambada,avail,0 -no,negative,original,cancel,3 -yes,definitely,original,book,1 -yes,approved,original,book,1 -goodbye,"thanks, bye",original,bye,2 -goodbye,say goodbye,parrot,bye,2 -thank_you,thank you for the time,parrot,bye,2 -how_busy,is the cheesecake factory busy right now?,lambada,avail,0 -greeting,how's life,original,greet,4 -date,what's the date tomorrow? '',parrot,avail,0 -goodbye,peace,original,bye,2 -greeting,"hello, good morning",lambada,greet,4 -thank_you,again thank you,parrot,bye,2 -yes,"yes, that's true",lambada,book,1 -schedule_meeting,need a meeting room,parrot,book,1 -greeting,hola,original,greet,4 -no,FALSE,original,cancel,3 -goodbye,sayonara,original,bye,2 -greeting,hi how're things going,lambada,greet,4 -yes,you got it,parrot,book,1 -yes,accepted,original,book,1 -no,negating,parrot,cancel,3 -yes,definitely,original,book,1 -thank_you,i'm happy you've helped me,parrot,bye,2 -how_busy,how long is the wait at olive garden today,lambada,avail,0 -thank_you,thankyou,parrot,bye,2 -goodbye,until the next time,parrot,bye,2 -no,invalid,original,cancel,3 -schedule_meeting,schedule the meeting with tom for 6pm,parrot,book,1 -no,no way!,original,cancel,3 -yes,obviously,parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,certainly,parrot,book,1 -thank_you,you answered,parrot,bye,2 -meeting_schedule,when do you meet roger?,parrot,avail,0 -yes,definitely,original,book,1 -how_busy,how busy is the restaurant at 5 pm,lambada,avail,0 -no,negation,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -meeting_schedule,what meetings are i scheduled for today?,lambada,avail,0 -thank_you,i really thank you,original,bye,2 -no,no?,parrot,cancel,3 -greeting,aho,parrot,greet,4 -no,it is no,original,cancel,3 -thank_you,my thanks,parrot,bye,2 -greeting,hello there!,original,greet,4 -greeting,how is life in my neighborhood,lambada,greet,4 -no,there is no,parrot,cancel,3 -reminder_update,remember to write later,parrot,resched,5 -yes,definitely,original,book,1 -how_busy,how long will chili's wait?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -goodbye,afterward,parrot,bye,2 -thank_you,i'm grateful,original,bye,2 -greeting,heyo,original,greet,4 -goodbye,later good luck,parrot,bye,2 -no,thanks no,parrot,cancel,3 -how_busy,tell me how busy denny's is at 6 o'clock in the morning,parrot,avail,0 -greeting,how's ayi doing?,parrot,greet,4 -goodbye,goodbye then,parrot,bye,2 -thank_you,gracias,original,bye,2 -yes,sure,original,book,1 -thank_you,appreciated,original,bye,2 -yes,"yes, please",parrot,book,1 -calendar,what's my schedule for thursday?,parrot,avail,0 -no,no?,parrot,cancel,3 -greeting,how's my life today?,parrot,greet,4 -yes,it's positive,parrot,book,1 -greeting,heller,original,greet,4 -goodbye,we chatted well,parrot,bye,2 -date,what year is tomorrow,parrot,avail,0 -no,negation,parrot,cancel,3 -greeting,yo,original,greet,4 -calendar,did i mark the appointment on my calendar?,parrot,avail,0 -yes,affirmative,original,book,1 -yes,agreed,original,book,1 -no,that isn't true,lambada,cancel,3 -no,FALSE,lambada,cancel,3 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -yes,10-Apr,original,book,1 -goodbye,afterward,parrot,bye,2 -date,in 9 days?,parrot,avail,0 -greeting,hi,original,greet,4 -no,no it's a lie,parrot,cancel,3 -yes,not false,parrot,book,1 -date,what month today?,parrot,avail,0 -no,nope,original,cancel,3 -cancel_reservation,abrogate the dinner reservation,parrot,cancel,3 -thank_you,again thanks,parrot,bye,2 -how_busy,do you think this place is busy around 5?,parrot,avail,0 -greeting,hola!,original,greet,4 -how_busy,how busy will be the wait at olive garden at 4 pm,lambada,avail,0 -goodbye,it was good chatting,original,bye,2 -schedule_meeting,i need a meeting room at 2pm on friday,original,book,1 -greeting,"hello, good day",lambada,greet,4 -no,naw,original,cancel,3 -cancel_reservation,cancellation of reservation at the restaurant,parrot,cancel,3 -cancel_reservation,annull a reservation at the restaurant for robin,parrot,cancel,3 -yes,okay,original,book,1 -reminder_update,keep an eye on the meeting of tomorrow,parrot,resched,5 -goodbye,sayonara,original,bye,2 -yes,confirmed,original,book,1 -greeting,how are things going for you,original,greet,4 -how_busy,the chili's busy at 9?,parrot,avail,0 -date,current date,original,avail,0 -calendar,are there plans for 12032019?,parrot,avail,0 -meeting_schedule,when is homer's meeting?,parrot,avail,0 -greeting,what's up?,parrot,greet,4 -yes,that is right,original,book,1 -no,so that's no,parrot,cancel,3 -no,that's erroneous,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -no,it's negative,parrot,cancel,3 -calendar,check my calendar for saturday,original,avail,0 -greeting,"hello, are you doing fine",lambada,greet,4 -no,that's incorrect!,original,cancel,3 -yes,yes that's right,lambada,book,1 -date,please explain today,parrot,avail,0 -yes,"sure, that is right",lambada,book,1 -yes,TRUE,lambada,book,1 -how_busy,has the wait been long for orange blossoms?,parrot,avail,0 -how_busy,why's the chili busy around noon?,parrot,avail,0 -no,no that's wrong,original,cancel,3 -greeting,hows it going,lambada,greet,4 -yes,correct,original,book,1 -goodbye,goodbyes,parrot,bye,2 -yes,you are correct,original,book,1 -meeting_schedule,i have any meetings today,lambada,avail,0 -date,date tomorrow,parrot,avail,0 -no,i think it's not right,parrot,cancel,3 -no,FALSE,original,cancel,3 -yes,correct,original,book,1 -goodbye,goodbye now,parrot,bye,2 -thank_you,i'm glad you did it for me,parrot,bye,2 -greeting,yo,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -yes,and you're correct,parrot,book,1 -thank_you,you're welcome,parrot,bye,2 -goodbye,i'll see you later ai,lambada,bye,2 -no,erroneous,parrot,cancel,3 -yes,yes,original,book,1 -how_busy,does the grocery store have a lot of people around noon?,parrot,avail,0 -greeting,hi,original,greet,4 -goodbye,afterward,parrot,bye,2 -greeting,"hello, ai",original,greet,4 -no,FALSE,lambada,cancel,3 -no,naw,original,cancel,3 -goodbye,sayonara,original,bye,2 -no,nay,original,cancel,3 -greeting,whats up,original,greet,4 -date,today?,parrot,avail,0 -schedule_meeting,i'm going to need a meeting room on 9am on tuesday,original,book,1 -date,which date is next?,parrot,avail,0 -yes,accepted,original,book,1 -no,that's absolutely false,parrot,cancel,3 -goodbye,goodbyes soon,parrot,bye,2 -how_busy,is ihop busy?,parrot,avail,0 -no,negative certainly,parrot,cancel,3 -yes,affirmative,original,book,1 -date,in five days?,parrot,avail,0 -date,please date,parrot,avail,0 -goodbye,later,original,bye,2 -goodbye,go easy,parrot,bye,2 -thank_you,the best,parrot,bye,2 -greeting,what's happened?,parrot,greet,4 -goodbye,later!,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -cancel_reservation,should i cancel my reservation or should i just cancel it out?,parrot,cancel,3 -no,negatory,original,cancel,3 -yes,facts,original,book,1 -greeting,heller,original,greet,4 -cancel_reservation,the reservation i made,parrot,cancel,3 -greeting,hi,original,greet,4 -yes,"yes, that's correct",original,book,1 -how_busy,how long will i wait to be seated in an italian restaurant?,parrot,avail,0 -how_busy,do you know how busy the steakhouse will be at 5 pm?,parrot,avail,0 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -thank_you,you're special thanks,parrot,bye,2 -meeting_schedule,are there any meetings planned between 3 and 5?,parrot,avail,0 -how_busy,how long is the wait at chili's around 6 pm,lambada,avail,0 -no,that's negative,parrot,cancel,3 -how_busy,is ihop busy at 6 pm?,lambada,avail,0 -goodbye,it's time to run,parrot,bye,2 -thank_you,merci beaucoup,original,bye,2 -no,no thanks,original,cancel,3 -no,negative for sure,original,cancel,3 -goodbye,i'm out,parrot,bye,2 -goodbye,regards,original,bye,2 -date,a year?,parrot,avail,0 -greeting,what's my feeling?,parrot,greet,4 -goodbye,come on soon,parrot,bye,2 -no,naw,original,cancel,3 -greeting,yo,original,greet,4 -greeting,so how's everything?,parrot,greet,4 -thank_you,thanks!,original,bye,2 -greeting,"hi, ai",original,greet,4 -no,negative,original,cancel,3 -reminder_update,the cat needs neutering,parrot,resched,5 -yes,correct,original,book,1 -goodbye,tootles,original,bye,2 -greeting,what do you feel today?,parrot,greet,4 -goodbye,catch you later,original,bye,2 -goodbye,later good luck,parrot,bye,2 -reminder_update,remind yourself to take care of myself,parrot,resched,5 -yes,yes is my answer,original,book,1 -yes,i'm going to tell you tes,parrot,book,1 -how_busy,how long is the wait at applebee's right now,lambada,avail,0 -meeting_schedule,list the meetings today?,parrot,avail,0 -how_busy,how busy is my kitchen today,lambada,avail,0 -goodbye,peace,original,bye,2 -greeting,aloha,original,greet,4 -goodbye,the talks were pleasant,parrot,bye,2 -greeting,hey,original,greet,4 -goodbye,good-bye,parrot,bye,2 -yes,"yes, please",parrot,book,1 -date,what is today?,original,avail,0 -goodbye,later gator!,original,bye,2 -goodbye,sayonara ,parrot,bye,2 -greeting,hello there!,original,greet,4 -no,no that's not it?,parrot,cancel,3 -date,today is what date?,parrot,avail,0 -no,i must say no,original,cancel,3 -thank_you,your answer was good,original,bye,2 -date,what is the date of the next month?,lambada,avail,0 -how_busy,how busy will the chili grill be at 7 pm?,parrot,avail,0 -goodbye,see you soon,original,bye,2 -no,that's actually false,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -no,not right,parrot,cancel,3 -schedule_meeting,is it possible to meet steve at the office?,parrot,book,1 -yes,positive,parrot,book,1 -no,negative,original,cancel,3 -greeting,nice day,lambada,greet,4 -no,i must say no,original,cancel,3 -thank_you,awesome thanks,parrot,bye,2 -how_busy,how busy is olive garden around 5:30,lambada,avail,0 -greeting,hiya!,original,greet,4 -greeting,yo,original,greet,4 -schedule_meeting,help me set up a meeting,lambada,book,1 -yes,yay,lambada,book,1 -no,please disagree,lambada,cancel,3 -calendar,what's my calendar for march 20th?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -no,that's erroneous,parrot,cancel,3 -meeting_schedule,please tell me what meeting i have today?,parrot,avail,0 -thank_you,i'm really grateful,parrot,bye,2 -no,the answer is no,original,cancel,3 -yes,positive,original,book,1 -no,it's no,parrot,cancel,3 -goodbye,my friend,parrot,bye,2 -how_busy,is kaya busy around 5 pm?,original,avail,0 -greeting,hola,original,greet,4 -calendar_update,please add the date of feb 5 to my calendar on june 7th,parrot,resched,5 -thank_you,i'm happy you've helped me,parrot,bye,2 -goodbye,buhbye now,lambada,bye,2 -date,what is tomorrow?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -no,nada,original,cancel,3 -thank_you,thanks!,original,bye,2 -goodbye,i have to leave,parrot,bye,2 -yes,confirm,original,book,1 -thank_you,many thanks,original,bye,2 -greeting,good morning ai,parrot,greet,4 -yes,uh huh,original,book,1 -greeting,"ai, how is my life",lambada,greet,4 -greeting,good morning ai,parrot,greet,4 -yes,oh-huh,parrot,book,1 -thank_you,the best,parrot,bye,2 -meeting_schedule,do we meet today?,parrot,avail,0 -yes,good,parrot,book,1 -reminder_update,make a reminder to pay my mortgage,parrot,resched,5 -no,i would prefer not,original,cancel,3 -yes,it's certainly true,parrot,book,1 -yes,right,parrot,book,1 -thank_you,thanks for that,original,bye,2 -no,FALSE,original,cancel,3 -goodbye,bye!,original,bye,2 -goodbye,bye,original,bye,2 -yes,accept,parrot,book,1 -goodbye,good call,parrot,bye,2 -goodbye,adios!,original,bye,2 -no,but it's wrong,parrot,cancel,3 -how_busy,what's the wait?,parrot,avail,0 -greeting,good morning,parrot,greet,4 -meeting_schedule,meetings today,original,avail,0 -no,the answer is certainly no,parrot,cancel,3 -yes,absolutely,original,book,1 -greeting,how's otc?,parrot,greet,4 -thank_you,you helped,parrot,bye,2 -thank_you,much obliged,original,bye,2 -how_busy,how long until dinner macaroni and cheese,parrot,avail,0 -goodbye,for now,parrot,bye,2 -thank_you,the best,parrot,bye,2 -yes,yes that's correct,original,book,1 -reminder_update,set up an alarm to remind me to give my cat her flea medicine,original,resched,5 -date,tell me the day?,parrot,avail,0 -cancel_reservation,i have to cancel my reservation for tonight,parrot,cancel,3 -how_busy,learn about waiting times at olive garden,parrot,avail,0 -greeting,aho,parrot,greet,4 -meeting_schedule,can i meet joan today?,parrot,avail,0 -date,list the current days?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -how_busy,is the wait at the pizza hut too long?,parrot,avail,0 -calendar,if i have any events on my calendar for saturday you could let me know,parrot,avail,0 -no,no!,original,cancel,3 -date,what's my date tomorrow?,parrot,avail,0 -greeting,how's otc?,parrot,greet,4 -yes,accepted,original,book,1 -yes,right,parrot,book,1 -no,negative,original,cancel,3 -thank_you,okay thank you,parrot,bye,2 -calendar,what's my march 30 calendar?,parrot,avail,0 -greeting,how does ai feel?,parrot,greet,4 -thank_you,so i appreciate it,parrot,bye,2 -how_busy,how long do i have to wait at the cheese cake factory?,parrot,avail,0 -no,i don't agree,parrot,cancel,3 -calendar_update,please add my appointment to my calendar for the fifth,parrot,resched,5 -no,negatory?,parrot,cancel,3 -yes,yeah that's right,lambada,book,1 -greeting,hows are ya,original,greet,4 -no,no it's not good,parrot,cancel,3 -how_busy,is michel busy at 3?,parrot,avail,0 -yes,indeed,original,book,1 -greeting,hey there!,original,greet,4 -yes,perfect,parrot,book,1 -greeting,how are things?,parrot,greet,4 -greeting,"hello, ai",original,greet,4 -yes,definitely,original,book,1 -no,nada,original,cancel,3 -yes,i need to know that it is true,parrot,book,1 -goodbye,the talk was nice,lambada,bye,2 -no,nope not it,original,cancel,3 -goodbye,the discussion was nice,parrot,bye,2 -reminder_update,let me remember,parrot,resched,5 -yes,certainly,parrot,book,1 -yes,correct,original,book,1 -how_busy,is the restaurant busy at night?,lambada,avail,0 -meeting_schedule,are there any meetings with jason today?,lambada,avail,0 -goodbye,i really enjoyed talking to you goodbye,parrot,bye,2 -how_busy,sage's busy at noon?,parrot,avail,0 -calendar,what's tuesday's calendar?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -thank_you,"great, thanks!",original,bye,2 -date,tell me what's the day,parrot,avail,0 -no,naw,parrot,cancel,3 -goodbye,bye,original,bye,2 -yes,i think it's true,original,book,1 -yes,TRUE,lambada,book,1 -greeting,how's idy doing,lambada,greet,4 -yes,confirm,original,book,1 -goodbye,goodbye soon,lambada,bye,2 -meeting_schedule,what's the meeting today?,parrot,avail,0 -meeting_schedule,when's the meeting?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -no,not correct,parrot,cancel,3 -yes,yeap,original,book,1 -greeting,how's my doing?,parrot,greet,4 -goodbye,have a nice day?,lambada,bye,2 -thank_you,thanks a million,original,bye,2 -thank_you,thanks again,original,bye,2 -no,negatory,original,cancel,3 -goodbye,bye bye!,original,bye,2 -meeting_schedule,what's my meeting plan?,parrot,avail,0 -yes,"yes, that's accurate",original,book,1 -greeting,hey there,original,greet,4 -goodbye,thanks goodbye,parrot,bye,2 -reminder_update,remind me to do something,original,resched,5 -yes,"yeah, that is true",lambada,book,1 -meeting_schedule,when's my meeting with frank?,parrot,avail,0 -greeting,are you okay??,parrot,greet,4 -yes,"yep, that's correct",lambada,book,1 -goodbye,farewell,original,bye,2 -no,negating,parrot,cancel,3 -how_busy,how much time do i have to wait at the restaurant,lambada,avail,0 -no,it's not a fact,parrot,cancel,3 -no,would be no?,parrot,cancel,3 -no,not good,parrot,cancel,3 -yes,i want to make sure it's true,parrot,book,1 -thank_you,appreciate it,original,bye,2 -goodbye,good-bye,parrot,bye,2 -no,no it's not,parrot,cancel,3 -no,nope,original,cancel,3 -date,the date is today,parrot,avail,0 -no,that's not right?,parrot,cancel,3 -greeting,whats new,lambada,greet,4 -yes,ya,original,book,1 -thank_you,appreciated,original,bye,2 -yes,i'll vote for you,parrot,book,1 -cancel_reservation,i'm not going to dinner tonight,parrot,cancel,3 -yes,certainly,parrot,book,1 -date,is the date?,parrot,avail,0 -no,that's so wrong,parrot,cancel,3 -thank_you,okay thank you,parrot,bye,2 -greeting,how's otc?,parrot,greet,4 -cancel_reservation,i would like to cancel my reservation,parrot,cancel,3 -greeting,hola!,original,greet,4 -yes,of course,original,book,1 -how_busy,how long is the sitting time at olive garden,lambada,avail,0 -goodbye,goodbye later,parrot,bye,2 -how_busy,how long will it take before i can get a table at the cheese cake factory,lambada,avail,0 -goodbye,we chatted well,parrot,bye,2 -thank_you,you have done well,lambada,bye,2 -yes,that's right,original,book,1 -greeting,heyo,original,greet,4 -goodbye,the conversation with you was pleasant,parrot,bye,2 -yes,definitely,original,book,1 -date,what month and day?,parrot,avail,0 -how_busy,how busy is macaroni and cheese right now,lambada,avail,0 -yes,a real statement,parrot,book,1 -cancel_reservation,please cancel my reservation,original,cancel,3 -yes,"yes, that's correct",original,book,1 -yes,i want you to know it's a true statement,original,book,1 -date,what year?,parrot,avail,0 -date,what's today?,parrot,avail,0 -yes,obviously,parrot,book,1 -yes,certainly,parrot,book,1 -yes,i believe that's true,original,book,1 -how_busy,can i expect orange island to be busy around 730?,parrot,avail,0 -date,what's today,original,avail,0 -greeting,wassup,original,greet,4 -reminder_update,please remind me later on,parrot,resched,5 -yes,uh-huh,original,book,1 -greeting,what's my feeling?,parrot,greet,4 -no,it seems wrong,parrot,cancel,3 -date,what is month and year?,parrot,avail,0 -greeting,heller,original,greet,4 -goodbye,adios!,original,bye,2 -yes,that's correct,original,book,1 -goodbye,later!,original,bye,2 -greeting,so what's up?,parrot,greet,4 -meeting_schedule,how many meetings will i have today between noon and one?,parrot,avail,0 -no,nada,original,cancel,3 -greeting,hola!,original,greet,4 -how_busy,what's the typical crowd in olive garden?,parrot,avail,0 -goodbye,bye,original,bye,2 -yes,certainly,parrot,book,1 -yes,confirmed,original,book,1 -date,what's the day now,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -date,in three days when will it be?,parrot,avail,0 -goodbye,goodbye now,parrot,bye,2 -no,that's very false,parrot,cancel,3 -thank_you,you've been great,parrot,bye,2 -goodbye,it was nice talking to you,lambada,bye,2 -goodbye,just relax,parrot,bye,2 -yes,obviously,parrot,book,1 -greeting,how's everything going?,parrot,greet,4 -goodbye,maybe next time,parrot,bye,2 -how_busy,can i wait for a table at mac n cheese?,parrot,avail,0 -meeting_schedule,when's my meeting?,parrot,avail,0 -yes,positive,parrot,book,1 -no,not happening,original,cancel,3 -thank_you,gracias,original,bye,2 -greeting,have you been good??,parrot,greet,4 -goodbye,"no problem, take it easy",lambada,bye,2 -greeting,"hello, what's up with you",lambada,greet,4 -greeting,how things go for you?,parrot,greet,4 -yes,TRUE,original,book,1 -goodbye,"nice talk, goodbye",lambada,bye,2 -goodbye,regards,original,bye,2 -no,please no,parrot,cancel,3 -date,date tomorrow?,parrot,avail,0 -date,please date,parrot,avail,0 -greeting,aho,parrot,greet,4 -greeting,wassup,original,greet,4 -how_busy,tell me the time to wait if i want to go to the cheesecake factory,parrot,avail,0 -no,"yea, that is wrong",lambada,cancel,3 -schedule_meeting,would you be able to book a meeting with kristen,lambada,book,1 -how_busy,how long can i expect to wait for a restaurant table,original,avail,0 -thank_you,good job,lambada,bye,2 -yes,that seems true,original,book,1 -how_busy,how busy is imanas right now?,parrot,avail,0 -goodbye,i have to say goodbye,original,bye,2 -yes,yep,original,book,1 -cancel_reservation,tell the restaurant i booked to cancel my reservation?,lambada,cancel,3 -greeting,salutations!,original,greet,4 -no,no?,parrot,cancel,3 -yes,but i want it to be true,parrot,book,1 -greeting,hello ai,parrot,greet,4 -goodbye,later goodbye,parrot,bye,2 -yes,not a falsehood,parrot,book,1 -goodbye,go easy,parrot,bye,2 -calendar,show me the calendar for march 23rd?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -yes,seems true,parrot,book,1 -greeting,tell me how it goes?,parrot,greet,4 -no,say negative,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -no,so that's no,parrot,cancel,3 -meeting_schedule,what are my calendar appointments?,parrot,avail,0 -thank_you,thanks,original,bye,2 -no,this is not true,parrot,cancel,3 -no,not true,original,cancel,3 -no,that is not correct,original,cancel,3 -yes,that is true,lambada,book,1 -goodbye,fairwell,original,bye,2 -schedule_meeting,set up a meeting,parrot,book,1 -cancel_reservation,i booked chris at tony's please cancel it,parrot,cancel,3 -goodbye,goodbyes soon,parrot,bye,2 -reminder_update,remind me,original,resched,5 -cancel_reservation,cancellation of 6 reservations at the red robin,parrot,cancel,3 -greeting,how's otc?,parrot,greet,4 -calendar,let me know what's happening on march 21,parrot,avail,0 -greeting,salutations,parrot,greet,4 -no,it's false,parrot,cancel,3 -goodbye,i'm outta here!,original,bye,2 -goodbye,tootles?,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,no?,parrot,cancel,3 -yes,"yes, that's true",lambada,book,1 -goodbye,just relax,parrot,bye,2 -greeting,whats up,original,greet,4 -yes,it's logical,parrot,book,1 -no,absolutely false,parrot,cancel,3 -no,that's negative,parrot,cancel,3 -no,i think that's a lie,parrot,cancel,3 -meeting_schedule,give me a list of the meetings on my calendar today?,parrot,avail,0 -greeting,why hello?,original,greet,4 -goodbye,"nice talk, goodbye",lambada,bye,2 -goodbye,no problem goodbye,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -thank_you,the best,parrot,bye,2 -greeting,how is everything?,parrot,greet,4 -greeting,good day,original,greet,4 -thank_you,i owe you one!,original,bye,2 -how_busy,how busy will red robin be around 5 pm,lambada,avail,0 -date,today?,parrot,avail,0 -greeting,hey how's ot,lambada,greet,4 -greeting,hello,original,greet,4 -greeting,hello good day,parrot,greet,4 -no,no no no,parrot,cancel,3 -no,no!,original,cancel,3 -goodbye,signing off,original,bye,2 -yes,it's certainly true,parrot,book,1 -goodbye,i'm outta here!,original,bye,2 -goodbye,nice conversation today,parrot,bye,2 -goodbye,glad to talk,parrot,bye,2 -how_busy,how long does it take to wait for dinner at ipl?,parrot,avail,0 -schedule_meeting,check meeting rooms available between 1 and 3pm,parrot,book,1 -cancel_reservation,get rid of my reservation for robert at red lobster,lambada,cancel,3 -no,that's a negatory,original,cancel,3 -cancel_reservation,call the restaurant to cancel my dinner reservation tonight,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -date,what today?,parrot,avail,0 -goodbye,good night,original,bye,2 -no,negative,original,cancel,3 -schedule_meeting,please help me figure out how to set up a meeting,original,book,1 -yes,certainly,parrot,book,1 -goodbye,bye!,original,bye,2 -no,it's so bad,parrot,cancel,3 -no,i'd prefer not to answer that,lambada,cancel,3 -goodbye,bye now,original,bye,2 -thank_you,i'm so grateful,parrot,bye,2 -no,erroneous,parrot,cancel,3 -greeting,"why, hello bandit",original,greet,4 -calendar,what's my schedule for march 2,lambada,avail,0 -yes,yup,original,book,1 -greeting,why hello?,original,greet,4 -no,not happening,original,cancel,3 -goodbye,good conversation,parrot,bye,2 -greeting,yo,original,greet,4 -no,so that's no,parrot,cancel,3 -goodbye,later then,lambada,bye,2 -goodbye,goodbye for now,parrot,bye,2 -greeting,how you're doing?,parrot,greet,4 -no,no!,original,cancel,3 -yes,great,original,book,1 -reminder_update,please remind me again,parrot,resched,5 -yes,"yes, please",parrot,book,1 -yes,yes,original,book,1 -yes,"yes, please",parrot,book,1 -how_busy,there's a cheesecake factory,parrot,avail,0 -reminder_update,"new reminder, please",original,resched,5 -how_busy,how long will it take to eat the red lobsters?,parrot,avail,0 -thank_you,appreciate it,original,bye,2 -yes,yes sir,original,book,1 -meeting_schedule,when is my meeting with john planned?,parrot,avail,0 -cancel_reservation,please cancel the reservation at red robin for 4 persons,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -thank_you,your help is appreciated,original,bye,2 -no,that is not factual,original,cancel,3 -no,"no, that's not it",original,cancel,3 -goodbye,i'm leaving,parrot,bye,2 -yes,certainly,parrot,book,1 -yes,"yes, that's correct",original,book,1 -how_busy,how busy is imana at 7 am,lambada,avail,0 -how_busy,how long will it take to be seated at the macaron grill?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -yes,obviously,parrot,book,1 -greeting,heyo,original,greet,4 -greeting,whats new?,parrot,greet,4 -date,what's today,original,avail,0 -yes,please confirm this is true,parrot,book,1 -thank_you,thanks for that!,original,bye,2 -no,no that isn't the case,original,cancel,3 -thank_you,so grateful,parrot,bye,2 -greeting,bonjour,original,greet,4 -goodbye,this conversation was pleasant,parrot,bye,2 -yes,right,parrot,book,1 -greeting,how you are,original,greet,4 -yes,okay,original,book,1 -date,what will be tomorrow?,parrot,avail,0 -no,please disagree,lambada,cancel,3 -goodbye,greetings,parrot,bye,2 -greeting,hola!,original,greet,4 -reminder_update,let me remember,parrot,resched,5 -greeting,hi,original,greet,4 -goodbye,farewell!,original,bye,2 -date,tell me what date it is please?,original,avail,0 -date,what date will be 9 months from now?,lambada,avail,0 -goodbye,i’m leaving-goodbye!,original,bye,2 -no,nope,original,cancel,3 -greeting,how the car is doing?,parrot,greet,4 -no,i disagree with that,lambada,cancel,3 -thank_you,good job thanks,parrot,bye,2 -yes,that's definitely true,original,book,1 -yes,yeap,original,book,1 -thank_you,thank you for my payment,parrot,bye,2 -yes,can we please?,original,book,1 -goodbye,goodnight,original,bye,2 -date,where's tomorrow's date,parrot,avail,0 -reminder_update,can you set up a reminder for the meeting?,parrot,resched,5 -yes,say yes,lambada,book,1 -how_busy,how long will the wait be for the jalapenos at 6 pm,lambada,avail,0 -thank_you,thanks for telling me,parrot,bye,2 -yes,correct,original,book,1 -cancel_reservation,i just want to cancel my reservation at starbucks,lambada,cancel,3 -yes,positive,original,book,1 -greeting,what's new,lambada,greet,4 -thank_you,thank ya!,original,bye,2 -yes,huh huh,parrot,book,1 -date,tell me what day tomorrow?,parrot,avail,0 -no,it's no,parrot,cancel,3 -greeting,yo,original,greet,4 -greeting,wassup,original,greet,4 -goodbye,farewell,original,bye,2 -thank_you,your assistance is appreciated,parrot,bye,2 -yes,"yep, that's correct",lambada,book,1 -greeting,"hi, ai",original,greet,4 -how_busy,how long can i wait at the pizza place?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -thank_you,you're welcome,parrot,bye,2 -yes,yeah,original,book,1 -no,false for sure,original,cancel,3 -goodbye,tootles?,parrot,bye,2 -calendar,show me the calendar for march 12?,parrot,avail,0 -no,naw,original,cancel,3 -date,what date?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -no,no way!,original,cancel,3 -yes,yeah,original,book,1 -date,which day is next,parrot,avail,0 -greeting,how's everything?,parrot,greet,4 -calendar,show me what my calendar looks like for march 12th?,parrot,avail,0 -date,date tomorrow?,parrot,avail,0 -how_busy,how busy amanda is at 5 pm?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -date,what year?,parrot,avail,0 -reminder_update,can you give me a reminder to wash?,parrot,resched,5 -yes,yep,original,book,1 -cancel_reservation,joe's reservation at zepher cancels,parrot,cancel,3 -reminder_update,the steaks are on the grill remind me to check them at the right time,parrot,resched,5 -greeting,hey,original,greet,4 -calendar_update,clear my calendar for february 29,parrot,resched,5 -yes,"yes, please",parrot,book,1 -no,so that's no,parrot,cancel,3 -greeting,hey yai,lambada,greet,4 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -meeting_schedule,time of meeting?,parrot,avail,0 -no,i'd rather not,parrot,cancel,3 -date,what's today,original,avail,0 -thank_you,appreciate it,original,bye,2 -goodbye,great conversation,parrot,bye,2 -reminder_update,remind me later,original,resched,5 -reminder_update,have i forgotten?,parrot,resched,5 -yes,TRUE,lambada,book,1 -goodbye,bye my friend,parrot,bye,2 -yes,"yep, that's correct",lambada,book,1 -schedule_meeting,is there meeting room between noon and 2?,parrot,book,1 -goodbye,i'm going to leave,parrot,bye,2 -greeting,hey,original,greet,4 -schedule_meeting,please schedule a meeting for tom?,parrot,book,1 -calendar_update,get rid of tuesday's 5th dinner,parrot,resched,5 -calendar,please check my calendar,parrot,avail,0 -no,not at all,original,cancel,3 -goodbye,we'll talk later ai,original,bye,2 -no,that's not true,original,cancel,3 -how_busy,can i wait in an immaculate steakhouse?,parrot,avail,0 -greeting,heller,original,greet,4 -goodbye,make sure you get some rest,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -goodbye,my way,parrot,bye,2 -greeting,hey yai,lambada,greet,4 -how_busy,how long would it take to get to the pizza?,parrot,avail,0 -yes,i'll check that out,parrot,book,1 -greeting,how've you been?,parrot,greet,4 -goodbye,regards,original,bye,2 -goodbye,i'm going,parrot,bye,2 -greeting,hiya!,original,greet,4 -goodbye,for now,parrot,bye,2 -no,nada,original,cancel,3 -meeting_schedule,have any meetings between 9 and 1030?,parrot,avail,0 -greeting,how's my family going?,parrot,greet,4 -no,it's actually false,parrot,cancel,3 -greeting,hey how's life,original,greet,4 -thank_you,thanks for cooperating,parrot,bye,2 -thank_you,many thank,original,bye,2 -thank_you,a million thanks,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -how_busy,can you tell me how long will there be wait in order to get a table at red lobster?,lambada,avail,0 -greeting,hey,original,greet,4 -no,nay,original,cancel,3 -yes,is true,parrot,book,1 -goodbye,lovely conversation,parrot,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -schedule_meeting,get me a meeting room for 9 am on friday,parrot,book,1 -yes,positive,parrot,book,1 -calendar,what's the calendar for march 2nd?,parrot,avail,0 -no,not right,parrot,cancel,3 -goodbye,goodbyes soon,parrot,bye,2 -date,date tomorrow,parrot,avail,0 -greeting,how is my day going?,parrot,greet,4 -goodbye,good-bye,parrot,bye,2 -yes,so it's true,parrot,book,1 -thank_you,thanks for the information,parrot,bye,2 -yes,accept,parrot,book,1 -cancel_reservation,i must cancel my reservation for barry at the red robins,parrot,cancel,3 -no,negating,parrot,cancel,3 -greeting,hi there,original,greet,4 -no,no,lambada,cancel,3 -yes,absolutely,original,book,1 -no,negatory?,parrot,cancel,3 -goodbye,"nice talk, next time",lambada,bye,2 -how_busy,is there a waiting time?,parrot,avail,0 -yes,that's all right,parrot,book,1 -greeting,ai what are you feeling?,parrot,greet,4 -yes,yeah,original,book,1 -yes,i agree,original,book,1 -no,that's untrue,parrot,cancel,3 -no,no?,parrot,cancel,3 -greeting,"hello, friend",original,greet,4 -greeting,aloha,original,greet,4 -yes,i agree,original,book,1 -calendar,what do i have to do on january 1st?,original,avail,0 -yes,absolutely!,original,book,1 -greeting,aloha,original,greet,4 -how_busy,is ihop busy?,parrot,avail,0 -no,negative definitely,parrot,cancel,3 -no,negative,original,cancel,3 -yes,indeed,original,book,1 -no,not that,original,cancel,3 -goodbye,farewell to you,lambada,bye,2 -how_busy,what is the wait time at the restaurant?,lambada,avail,0 -how_busy,how busy is imahi at 5,lambada,avail,0 -calendar,check out my calendar for events on march 11?,parrot,avail,0 -yes,absolutely!,original,book,1 -no,that is wrong,original,cancel,3 -reminder_update,i need to remember,parrot,resched,5 -yes,certainly,parrot,book,1 -goodbye,say goodbye,parrot,bye,2 -yes,confirm,original,book,1 -thank_you,okay thank you,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -no,i'll pass,original,cancel,3 -goodbye,until next time!,original,bye,2 -goodbye,i'm leaving,parrot,bye,2 -goodbye,good luck,lambada,bye,2 -yes,facts,original,book,1 -greeting,how's this going?,parrot,greet,4 -greeting,hola,original,greet,4 -goodbye,later then,lambada,bye,2 -cancel_reservation,cancel the dinner reservation i made?,parrot,cancel,3 -yes,so it's real,parrot,book,1 -meeting_schedule,do i have to go to meetings today?,parrot,avail,0 -no,is that a lie,parrot,cancel,3 -goodbye,i’ll be leaving now,original,bye,2 -greeting,hola,original,greet,4 -yes,confirmed,original,book,1 -thank_you,i appreciate your time,lambada,bye,2 -how_busy,how long will the wait at chili's be?,parrot,avail,0 -greeting,hiya!,original,greet,4 -no,that's wrong,original,cancel,3 -yes,affirmitive,original,book,1 -goodbye,peace out,original,bye,2 -goodbye,fairwell,original,bye,2 -no,nada,original,cancel,3 -how_busy,is that restaurant always crowded?,lambada,avail,0 -yes,yup,original,book,1 -thank_you,thankyou,parrot,bye,2 -goodbye,regards,original,bye,2 -greeting,aloha,original,greet,4 -no,naw,original,cancel,3 -no,no that's a lie,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -thank_you,thank you!,original,bye,2 -reminder_update,let me be reminded,parrot,resched,5 -no,it's actually false,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -thank_you,your answer is good,parrot,bye,2 -yes,so it's true,parrot,book,1 -yes,right,parrot,book,1 -yes,facts,original,book,1 -calendar_update,remove my baby shower from my calendar,lambada,resched,5 -how_busy,will brown bear be busy at 10pm?,parrot,avail,0 -goodbye,next time we'll talk,parrot,bye,2 -yes,10-Apr,original,book,1 -how_busy,do you have mr joes pizza available?,parrot,avail,0 -yes,10-Apr,original,book,1 -no,negative,original,cancel,3 -calendar_update,you can remove the wedding from my calendar for march 12 2019,parrot,resched,5 -greeting,salutations!,original,greet,4 -no,FALSE,lambada,cancel,3 -no,negative for sure,original,cancel,3 -yes,agreed,original,book,1 -goodbye,it's over,parrot,bye,2 -yes,sure,original,book,1 -date,what date?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -greeting,how's my life?,parrot,greet,4 -no,it's not a fact,parrot,cancel,3 -meeting_schedule,what's my day's schedule?,parrot,avail,0 -no,no,lambada,cancel,3 -greeting,hey fellows,parrot,greet,4 -yes,that is affirmative,original,book,1 -yes,obviously,parrot,book,1 -cancel_reservation,cancell my dinner reservation,parrot,cancel,3 -greeting,good morning,parrot,greet,4 -meeting_schedule,do you have any meetings with susie today?,parrot,avail,0 -how_busy,tell me how long it will take to get a seat at chili's at 6 pm,parrot,avail,0 -greeting,hiya!,original,greet,4 -yes,oh-huh,parrot,book,1 -thank_you,so much easier with you,parrot,bye,2 -goodbye,thanks for talking,original,bye,2 -date,what date?,parrot,avail,0 -goodbye,i’m leaving-goodbye!,original,bye,2 -no,negative certainly,parrot,cancel,3 -no,naw,parrot,cancel,3 -yes,yeah that's right,lambada,book,1 -no,i say negative,original,cancel,3 -goodbye,good-bye,parrot,bye,2 -thank_you,again thanks,parrot,bye,2 -no,no,lambada,cancel,3 -calendar_update,erase all the birthday celebrations from my calendar,lambada,resched,5 -calendar,i want to know what's on my calendar for friday the 1st,parrot,avail,0 -greeting,yo,original,greet,4 -thank_you,thank you for that!,lambada,bye,2 -no,it's very wrong,parrot,cancel,3 -no,that's not the truth,parrot,cancel,3 -yes,"true, most definitely",original,book,1 -no,the information is inaccurate,parrot,cancel,3 -calendar,check my calendar please,parrot,avail,0 -thank_you,okay thanks,original,bye,2 -yes,facts,original,book,1 -calendar,are there any active events for march 4 2019?,parrot,avail,0 -meeting_schedule,meeting today,parrot,avail,0 -how_busy,is iman busy around five?,lambada,avail,0 -reminder_update,so i don't forget my baby shower this weekend,parrot,resched,5 -thank_you,i owe you one,original,bye,2 -goodbye,i wanted to talk to you again,parrot,bye,2 -greeting,how've you been,original,greet,4 -thank_you,thanks for helping,original,bye,2 -meeting_schedule,will you meet ann?,parrot,avail,0 -yes,sure thing,original,book,1 -yes,uh huh,original,book,1 -yes,yup,original,book,1 -yes,yay,lambada,book,1 -thank_you,thanks for the reply,original,bye,2 -no,FALSE,original,cancel,3 -no,not right?,parrot,cancel,3 -no,naw,original,cancel,3 -calendar,what's on my calendar for june 22?,parrot,avail,0 -no,this is so negative,parrot,cancel,3 -yes,accept,parrot,book,1 -yes,is true,parrot,book,1 -goodbye,nice drive by,lambada,bye,2 -thank_you,gracias,original,bye,2 -goodbye,goodbye to you,original,bye,2 -goodbye,good luck tomorrow,lambada,bye,2 -how_busy,tell me the time to wait at red robin before i can get a table?,parrot,avail,0 -thank_you,good job,lambada,bye,2 -greeting,hi ai,original,greet,4 -yes,good,parrot,book,1 -no,nada,original,cancel,3 -how_busy,how long will i have to wait for steak?,parrot,avail,0 -goodbye,good luck,lambada,bye,2 -date,what is my date today?,parrot,avail,0 -schedule_meeting,schedule my meeting with tom for 6pm,parrot,book,1 -schedule_meeting,can you schedule a meeting with bob at 10 am?,parrot,book,1 -goodbye,peace out,original,bye,2 -no,negation,parrot,cancel,3 -goodbye,adios,original,bye,2 -date,what date in 100 days?,parrot,avail,0 -yes,it's true,original,book,1 -goodbye,im leaving,parrot,bye,2 -greeting,how were you?,parrot,greet,4 -no,that's a huge mistake,parrot,cancel,3 -thank_you,good job,lambada,bye,2 -no,that's untrue,parrot,cancel,3 -yes,accept,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -how_busy,how busy will the cheesecake factory be around 7pm,parrot,avail,0 -greeting,"why, hello bandit",original,greet,4 -thank_you,okay thank you,parrot,bye,2 -how_busy,how long will the wait at chili be?,parrot,avail,0 -yes,huh,parrot,book,1 -schedule_meeting,are there open meeting rooms between noon and 1?,parrot,book,1 -how_busy,how long will it take to wait at 5pm?,parrot,avail,0 -calendar,what's tuesday's calendar?,parrot,avail,0 -no,"no, that would be bad",lambada,cancel,3 -thank_you,thanks for all my help,original,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -thank_you,many thanks,original,bye,2 -how_busy,chili's busy around 730?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -yes,right,parrot,book,1 -yes,please let's do this,parrot,book,1 -goodbye,ai goodbye,original,bye,2 -how_busy,how long do we have to wait before we're seated in the cheese cake factory?,parrot,avail,0 -how_busy,is the tiara usually crowded around 7pm?,parrot,avail,0 -yes,10-Apr,original,book,1 -goodbye,good night,original,bye,2 -goodbye,good-bye,parrot,bye,2 -how_busy,how busy is mcdonalds at 9,lambada,avail,0 -calendar_update,eliminate the doctor's appointment for saturday,parrot,resched,5 -yes,10-Apr,original,book,1 -thank_you,my gratitude,parrot,bye,2 -yes,confirm,original,book,1 -no,nada,original,cancel,3 -reminder_update,maybe a reminder?,parrot,resched,5 -yes,i want to know the truth,parrot,book,1 -no,so that's no,parrot,cancel,3 -greeting,hola!,original,greet,4 -goodbye,for now,parrot,bye,2 -how_busy,how long does it take to wait for torris?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,hi how's everything?,parrot,greet,4 -yes,absolutely,original,book,1 -greeting,how is life?,parrot,greet,4 -reminder_update,"new reminder, please",original,resched,5 -thank_you,good job,lambada,bye,2 -goodbye,adios!,original,bye,2 -yes,yep,original,book,1 -date,today?,parrot,avail,0 -thank_you,thanks very much,parrot,bye,2 -greeting,hey,original,greet,4 -yes,uh-huh,original,book,1 -no,nada,original,cancel,3 -yes,i'd say yes,parrot,book,1 -yes,yeap,original,book,1 -how_busy,how many people are expected to be in an immaculate steakhouse?,parrot,avail,0 -meeting_schedule,when's my meeting with leroy?,parrot,avail,0 -how_busy,how long should i wait before eating macaroni grill?,parrot,avail,0 -calendar_update,clear my calendar for february,parrot,resched,5 -no,that's untrue,parrot,cancel,3 -yes,good,parrot,book,1 -how_busy,wait how long?,parrot,avail,0 -goodbye,see ya!,original,bye,2 -yes,uh huh,original,book,1 -no,it would be a no,parrot,cancel,3 -goodbye,thanks for talking,original,bye,2 -thank_you,appreciate the assistance,parrot,bye,2 -thank_you,well done,parrot,bye,2 -cancel_reservation,i no longer want my reservation anymore,original,cancel,3 -thank_you,appreciate the support,parrot,bye,2 -no,nothing,parrot,cancel,3 -yes,yay,lambada,book,1 -calendar,what's the date for my doctor's appointment,lambada,avail,0 -goodbye,see ya,lambada,bye,2 -date,what date is that?,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -yes,obviously,parrot,book,1 -goodbye,greetings,parrot,bye,2 -no,it's actually a lie,parrot,cancel,3 -no,hell nah,original,cancel,3 -date,what is today's month day?,parrot,avail,0 -greeting,hi ai,original,greet,4 -greeting,how are you today,original,greet,4 -date,which date is it,lambada,avail,0 -no,i'm afraid not,parrot,cancel,3 -yes,10-Apr,original,book,1 -greeting,how ya been,original,greet,4 -calendar,show me the events on my calendar for march 26th?,parrot,avail,0 -greeting,what's my day like?,parrot,greet,4 -no,no!,original,cancel,3 -no,negatory?,parrot,cancel,3 -goodbye,i'm leaving now,lambada,bye,2 -yes,it's true,original,book,1 -meeting_schedule,show me the number of meetings i have today between noon and one,parrot,avail,0 -greeting,how're you today?,parrot,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,thanks goodbye,parrot,bye,2 -goodbye,signing off,original,bye,2 -goodbye,maybe next time,parrot,bye,2 -goodbye,no problem goodbye,parrot,bye,2 -goodbye,it's over,parrot,bye,2 -yes,i'll vote for you,parrot,book,1 -yes,thats right,original,book,1 -reminder_update,set a reminder for the time of the meeting at 2 p,parrot,resched,5 -greeting,how's my life?,parrot,greet,4 -meeting_schedule,when do you have my meetings today?,parrot,avail,0 -reminder_update,make a reminder please,parrot,resched,5 -schedule_meeting,me and seth would like to have a meeting at 11 o'clock,parrot,book,1 -goodbye,i'm glad you're talking to me,parrot,bye,2 -yes,TRUE,original,book,1 -meeting_schedule,when is homer's meeting?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -yes,yup,original,book,1 -meeting_schedule,when do you have my meetings?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -yes,sure,original,book,1 -greeting,hiya,original,greet,4 -no,that's very wrong,parrot,cancel,3 -how_busy,can you give me an accurate estimate of how busy the restaurant is at 8pm?,parrot,avail,0 -how_busy,"if i go to olive garden at 4 pm, how busy will it be",original,avail,0 -goodbye,later gater,original,bye,2 -yes,great,original,book,1 -yes,yup,original,book,1 -goodbye,thanks goodbye,parrot,bye,2 -goodbye,later good luck,parrot,bye,2 -schedule_meeting,can you book a meeting room for 6pm on wednesday?,parrot,book,1 -yes,ya,original,book,1 -goodbye,later,original,bye,2 -meeting_schedule,list the meetings today?,parrot,avail,0 -yes,good,parrot,book,1 -date,what day?,parrot,avail,0 -goodbye,and tell me bye?,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -no,not right?,parrot,cancel,3 -thank_you,for the help i'm grateful,parrot,bye,2 -no,negatory?,parrot,cancel,3 -cancel_reservation,my reservation for dinner tonight must be cancelled,parrot,cancel,3 -greeting,heller,original,greet,4 -yes,perfect,parrot,book,1 -calendar_update,remove my birthday party from my schedule on friday,parrot,resched,5 -schedule_meeting,can you schedule a meeting with george for 4? ,parrot,book,1 -no,false sure,parrot,cancel,3 -reminder_update,give me a reminder to pay my utility bill,parrot,resched,5 -greeting,hello,original,greet,4 -yes,confirmed,original,book,1 -goodbye,later gator!,original,bye,2 -greeting,how's it going?,parrot,greet,4 -no,that's incorrect!,original,cancel,3 -reminder_update,let me be reminded?,parrot,resched,5 -no,nothing good,parrot,cancel,3 -no,it's the wrong answer,parrot,cancel,3 -schedule_meeting,list the meeting room sizes between 2 and 4?,parrot,book,1 -no,no!,original,cancel,3 -yes,it'll be yes,parrot,book,1 -no,it's a negative,parrot,cancel,3 -goodbye,say goodbye for now,parrot,bye,2 -greeting,hey,original,greet,4 -meeting_schedule,how many meetings do i attend between 12 and 3 today?,parrot,avail,0 -goodbye,peace,original,bye,2 -greeting,how's ife treating you,original,greet,4 -no,so that's no,parrot,cancel,3 -yes,absolutely,original,book,1 -greeting,welcome,parrot,greet,4 -no,i disagree,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -greeting,salutation,parrot,greet,4 -goodbye,later gater,original,bye,2 -greeting,"howdy, what's new",original,greet,4 -greeting,salutations,parrot,greet,4 -yes,ok,original,book,1 -goodbye,greetings,parrot,bye,2 -how_busy,how busy is imanas?,parrot,avail,0 -yes,thats right,original,book,1 -greeting,welcome,parrot,greet,4 -goodbye,goodbye!,original,bye,2 -how_busy,is the restaurant crowded for lunch?,parrot,avail,0 -greeting,good morning,parrot,greet,4 -goodbye,adios!,original,bye,2 -greeting,greetings to you,original,greet,4 -yes,absolutely,original,book,1 -greeting,what's happened?,parrot,greet,4 -reminder_update,make a reminder to wash dishes,parrot,resched,5 -thank_you,you're the best!,original,bye,2 -thank_you,okay thanks,original,bye,2 -schedule_meeting,create a meeting for me,lambada,book,1 -yes,confirmed,original,book,1 -yes,accepted,original,book,1 -thank_you,okay thank you,parrot,bye,2 -thank_you,i am thankful,lambada,bye,2 -thank_you,thank you!,original,bye,2 -date,in 9 days?,parrot,avail,0 -greeting,"hello, hello, hello",lambada,greet,4 -reminder_update,pay taxes on monday,parrot,resched,5 -calendar,is there anything for january 1st?,parrot,avail,0 -goodbye,goodbye later,parrot,bye,2 -goodbye,peace,original,bye,2 -thank_you,appreciate it,original,bye,2 -date,what is tomorrow?,parrot,avail,0 -yes,approved,original,book,1 -greeting,how it goes?,parrot,greet,4 -greeting,salutations,parrot,greet,4 -reminder_update,please remind me to take out the trash,original,resched,5 -greeting,what's up,original,greet,4 -yes,definitely yes,parrot,book,1 -goodbye,i'm going,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -how_busy,how busy will i have to be at the pizzeria around 8 o'clock,parrot,avail,0 -goodbye,lovely conversation,parrot,bye,2 -schedule_meeting,i want to meet with john at 6pm,parrot,book,1 -no,FALSE,original,cancel,3 -reminder_update,i must create a reminder for dinner,parrot,resched,5 -how_busy,waiting at macaroni grill?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -no,false sure,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -date,which day will be my wedding?,parrot,avail,0 -goodbye,maybe i'll see you,parrot,bye,2 -yes,that's true,original,book,1 -yes,perfect,parrot,book,1 -goodbye,so i'll talk to you soon,parrot,bye,2 -yes,perfect,parrot,book,1 -thank_you,you've been great,parrot,bye,2 -no,no!,original,cancel,3 -yes,okay,original,book,1 -thank_you,thanks!,original,bye,2 -goodbye,goodbye to your,lambada,bye,2 -reminder_update,you know something?,parrot,resched,5 -cancel_reservation,thank you for canceling my oyster bar reservation,parrot,cancel,3 -greeting,what's up with you,original,greet,4 -meeting_schedule,what is on my calendar?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -greeting,hello are you all right?,parrot,greet,4 -yes,obviously,parrot,book,1 -yes,do that?,original,book,1 -date,what's today?,parrot,avail,0 -goodbye,i'm outta here!,original,bye,2 -yes,oh-huh,parrot,book,1 -no,FALSE,original,cancel,3 -goodbye,lovely conversation,parrot,bye,2 -greeting,salutations!,original,greet,4 -greeting,how're you?,parrot,greet,4 -no,it's not a fact,parrot,cancel,3 -meeting_schedule,please show me the next meeting?,parrot,avail,0 -how_busy,can i expect chili's to be busy at 4:30?,original,avail,0 -yes,affirmative,original,book,1 -no,that's not right,original,cancel,3 -no,ill pass,original,cancel,3 -yes,ya,original,book,1 -no,that's incorrect!,original,cancel,3 -date,is today the date?,lambada,avail,0 -thank_you,you're special thanks,parrot,bye,2 -calendar,what is tuesday's calendar like?,original,avail,0 -no,it's overwhelmingly wrong,parrot,cancel,3 -goodbye,later!,original,bye,2 -no,nay,original,cancel,3 -schedule_meeting,are there any rooms available from 5 to 9?,parrot,book,1 -yes,ya,original,book,1 -greeting,heyo,original,greet,4 -thank_you,you're welcome,parrot,bye,2 -goodbye,"good talk, see you later",original,bye,2 -goodbye,i'm gone,parrot,bye,2 -yes,uh huh,original,book,1 -yes,that's correct,original,book,1 -yes,so it's real,parrot,book,1 -no,that's incorrect!,original,cancel,3 -calendar,i have something to do on wednesday,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -goodbye,good conversation,parrot,bye,2 -greeting,how life treats you?,parrot,greet,4 -goodbye,farewell,original,bye,2 -yes,confirmed,original,book,1 -yes,approved,original,book,1 -date,in 14 days?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -yes,indeed,original,book,1 -greeting,what do i feel?,parrot,greet,4 -reminder_update,create a reminder,original,resched,5 -meeting_schedule,do you have any meetings?,parrot,avail,0 -goodbye,later,original,bye,2 -greeting,good evening,original,greet,4 -yes,i know,parrot,book,1 -yes,the truth is true,lambada,book,1 -goodbye,you're done,parrot,bye,2 -no,negative,original,cancel,3 -no,invalid,original,cancel,3 -date,what day?,parrot,avail,0 -goodbye,sign off,parrot,bye,2 -goodbye,bye bye now,lambada,bye,2 -no,nay,original,cancel,3 -goodbye,goodbye my friend,parrot,bye,2 -meeting_schedule,list the meetings today?,parrot,avail,0 -yes,positive,original,book,1 -date,what year?,parrot,avail,0 -how_busy,how busy will i find this place at 6:00,lambada,avail,0 -yes,i guess yes,parrot,book,1 -goodbye,afterward,parrot,bye,2 -yes,i think you're right about that,parrot,book,1 -yes,yes that's correct,original,book,1 -how_busy,is the wait at the cheese cake factory long?,parrot,avail,0 -date,what's the date tomorrow?,parrot,avail,0 -how_busy,how busy is imo at 11,lambada,avail,0 -goodbye,see ya later,original,bye,2 -goodbye,goodbye soon,lambada,bye,2 -calendar,please read my calendar,parrot,avail,0 -yes,this is true,lambada,book,1 -date,what date?,parrot,avail,0 -greeting,what's new here?,parrot,greet,4 -goodbye,tootles?,parrot,bye,2 -no,not correct,parrot,cancel,3 -yes,absolutely!,original,book,1 -thank_you,"oh, thanks",original,bye,2 -yes,sure,original,book,1 -goodbye,ai goodbye,original,bye,2 -greeting,hello siri,original,greet,4 -yes,facts,original,book,1 -goodbye,bye bye!,original,bye,2 -calendar,what's on january 1st?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -calendar,what's my schedule for tomorrow?,parrot,avail,0 -calendar_update,i need to add a date to my calendar that i need to dress up,parrot,resched,5 -goodbye,bye!,original,bye,2 -date,what's the date next week?,parrot,avail,0 -yes,good,parrot,book,1 -yes,oh-huh,parrot,book,1 -no,no it's not true,parrot,cancel,3 -no,that is false,original,cancel,3 -how_busy,here's how busy cheesecake factory is at 11,lambada,avail,0 -how_busy,how long does the wait at pizza bread be at 5:30,lambada,avail,0 -reminder_update,create a reminder to drink water at work,parrot,resched,5 -thank_you,thanks a lot,original,bye,2 -yes,so it's true,parrot,book,1 -goodbye,thanks for the talk,lambada,bye,2 -greeting,"hello, good day",lambada,greet,4 -how_busy,how busy are iguanas at weekends,parrot,avail,0 -yes,i say yes,lambada,book,1 -how_busy,is the restaurant usually crowded around 8 o'clock?,parrot,avail,0 -goodbye,thank you for my conversation,parrot,bye,2 -reminder_update,to remind myself of this,parrot,resched,5 -thank_you,thankyou,parrot,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -thank_you,you were so nice,parrot,bye,2 -cancel_reservation,cancellation of dinner reservation tonight,parrot,cancel,3 -greeting,what's my day like?,parrot,greet,4 -date,what's today?,parrot,avail,0 -yes,"yes, that is correct",original,book,1 -date,in 8 days?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -cancel_reservation,cancell my reservation for dinner,parrot,cancel,3 -how_busy,what's the wait right now?,parrot,avail,0 -reminder_update,i need to take out the trash please remind me,original,resched,5 -how_busy,how much time will the restaurant be for dinner?,parrot,avail,0 -goodbye,goodbye thank you,parrot,bye,2 -no,that's not true,original,cancel,3 -date,what's the date for today?,parrot,avail,0 -yes,thats right,original,book,1 -yes,obviously,parrot,book,1 -goodbye,afterward,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,not right now,original,cancel,3 -calendar_update,please make sure the summit trip is clear on my calendar,parrot,resched,5 -no,no that isn't right,original,cancel,3 -schedule_meeting,please schedule a meeting with marnie for 9 am,parrot,book,1 -yes,indeed,original,book,1 -yes,it's logical,parrot,book,1 -no,no that isn't correct,original,cancel,3 -yes,oh-huh,parrot,book,1 -thank_you,appreciate the help,original,bye,2 -no,that's not it,parrot,cancel,3 -date,what would be tomorrow's date?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,thanks goodbye,parrot,bye,2 -goodbye,farewell,original,bye,2 -reminder_update,help me to remember to pick up stan later,original,resched,5 -goodbye,good-bye,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -thank_you,thanks for the donation,parrot,bye,2 -yes,facts,original,book,1 -yes,good yes,lambada,book,1 -yes,it makes sense too,parrot,book,1 -no,that's not it,parrot,cancel,3 -greeting,what's happened?,parrot,greet,4 -no,i think it's wrong,parrot,cancel,3 -yes,i'll say yes,parrot,book,1 -goodbye,later,original,bye,2 -date,a year?,parrot,avail,0 -date,show me what's the date?,parrot,avail,0 -reminder_update,may i be reminded?,parrot,resched,5 -how_busy,how busy is the olive garden at 8 am,lambada,avail,0 -yes,sure,original,book,1 -greeting,hey how ya feeling,lambada,greet,4 -yes,"yes, please",parrot,book,1 -yes,absolutely,original,book,1 -how_busy,how long do i have to wait for a table in a chinese restaurant?,parrot,avail,0 -no,not true,original,cancel,3 -yes,absolutely,original,book,1 -greeting,hi ai,original,greet,4 -date,what is it today?,lambada,avail,0 -meeting_schedule,what time is it to meet steve?,parrot,avail,0 -goodbye,great conversation,parrot,bye,2 -reminder_update,remind me something,parrot,resched,5 -calendar,can you check my calendar for my repair appointment?,parrot,avail,0 -greeting,how you are,original,greet,4 -yes,very true,original,book,1 -no,FALSE,original,cancel,3 -greeting,wassup,original,greet,4 -date,what date?,parrot,avail,0 -yes,ya,original,book,1 -greeting,what's new here?,parrot,greet,4 -goodbye,signing off,original,bye,2 -greeting,hello,original,greet,4 -reminder_update,please remind me,parrot,resched,5 -goodbye,for now,parrot,bye,2 -no,that's definitely false,original,cancel,3 -date,what date tomorrow?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -date,what day?,parrot,avail,0 -greeting,hola!,original,greet,4 -thank_you,gracias,original,bye,2 -date,tell me what day it is,parrot,avail,0 -schedule_meeting,schedule a meeting with tom for 6pm,original,book,1 -date,what is tomorrow's date?,original,avail,0 -no,so that's no,parrot,cancel,3 -yes,facts,original,book,1 -greeting,what's my day like?,parrot,greet,4 -goodbye,adios,original,bye,2 -greeting,ahoy,lambada,greet,4 -thank_you,appreciate the support,parrot,bye,2 -yes,uh-huh,original,book,1 -thank_you,again thanks,parrot,bye,2 -yes,confirm,original,book,1 -yes,that's a fact,lambada,book,1 -thank_you,so grateful,parrot,bye,2 -yes,sure,original,book,1 -greeting,whats new,lambada,greet,4 -how_busy,what's the time to sit in the restaurant?,parrot,avail,0 -yes,definitely,original,book,1 -reminder_update,please remember me later,parrot,resched,5 -thank_you,i'm very thankful,parrot,bye,2 -how_busy,how long will i have to wait if i want to go to tom's,parrot,avail,0 -goodbye,until next time!,original,bye,2 -goodbye,bye bye,lambada,bye,2 -thank_you,thanks!,original,bye,2 -yes,affirmitive,original,book,1 -thank_you,appreciate it,original,bye,2 -yes,yay,lambada,book,1 -goodbye,greetings,parrot,bye,2 -goodbye,farewell,original,bye,2 -thank_you,"oh, thanks",original,bye,2 -goodbye,sayonara ,parrot,bye,2 -no,definitely not,original,cancel,3 -yes,that's true,original,book,1 -greeting,how's idy?,parrot,greet,4 -no,this is false,parrot,cancel,3 -greeting,aho,parrot,greet,4 -thank_you,nice,parrot,bye,2 -yes,TRUE,lambada,book,1 -goodbye,good-bye,parrot,bye,2 -yes,obviously,parrot,book,1 -thank_you,so grateful,parrot,bye,2 -greeting,what am i feeling?,lambada,greet,4 -date,what the day?,parrot,avail,0 -schedule_meeting,i want to book a meeting room for 8pm,parrot,book,1 -thank_you,you've given me that,parrot,bye,2 -how_busy,the wait at rancho alamo?,parrot,avail,0 -how_busy,tell me how busy it is at 5 o'clock?,parrot,avail,0 -greeting,hello there!,original,greet,4 -meeting_schedule,meetings today,original,avail,0 -goodbye,good talk,parrot,bye,2 -how_busy,can you list the wait times at red robin?,parrot,avail,0 -schedule_meeting,can you arrange a meeting for 300 wednesday?,parrot,book,1 -greeting,bonjour,original,greet,4 -goodbye,good call,parrot,bye,2 -no,negatory?,parrot,cancel,3 -reminder_update,remind me,original,resched,5 -how_busy,is dinner time usually longer at a pizza place?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -greeting,how's life,original,greet,4 -yes,that checks out,original,book,1 -yes,i know that's true,parrot,book,1 -greeting,hello good morning,parrot,greet,4 -how_busy,how long will the wait time be for a 8:00 lunch at chipotle,lambada,avail,0 -date,tell me what's the date today,parrot,avail,0 -goodbye,fairwell,original,bye,2 -no,that's so wrong,parrot,cancel,3 -goodbye,maybe next time,parrot,bye,2 -goodbye,bye,original,bye,2 -yes,roger that,original,book,1 -cancel_reservation,i booked chris at tony's please cancel it,parrot,cancel,3 -date,what year?,parrot,avail,0 -meeting_schedule,how many meetings i have between 2 and 5,parrot,avail,0 -greeting,what am i feeling?,lambada,greet,4 -goodbye,later!,original,bye,2 -date,current day,parrot,avail,0 -greeting,so how's everything?,parrot,greet,4 -yes,exactly right,original,book,1 -yes,that is right,original,book,1 -thank_you,i apprecaite the help from you,original,bye,2 -yes,indeed,parrot,book,1 -yes,TRUE,lambada,book,1 -yes,i think that is correct,lambada,book,1 -goodbye,goodnight,original,bye,2 -yes,certainly true,parrot,book,1 -no,no,lambada,cancel,3 -how_busy,there's a cheesecake factory,parrot,avail,0 -calendar,what's going on on march 4th 2019?,parrot,avail,0 -date,what's the year?,parrot,avail,0 -yes,absolutely!,original,book,1 -how_busy,in a chinese house how long does it take to sit down?,parrot,avail,0 -greeting,well hello,original,greet,4 -greeting,salutations,parrot,greet,4 -goodbye,this conversation was good,parrot,bye,2 -yes,definitely,original,book,1 -reminder_update,you need to remind me to do something,original,resched,5 -greeting,how is everything going,original,greet,4 -greeting,how was my day?,parrot,greet,4 -no,it's not true,parrot,cancel,3 -yes,positive,original,book,1 -goodbye,later gator!,original,bye,2 -yes,confirm,original,book,1 -how_busy,how long will it take to get seated at iman's,lambada,avail,0 -no,erroneous,parrot,cancel,3 -cancel_reservation,my reservation for dinner was cancelled by uni,parrot,cancel,3 -goodbye,good seeing you,original,bye,2 -goodbye,go easy,parrot,bye,2 -yes,"yes, please",parrot,book,1 -no,nada,original,cancel,3 -goodbye,see ya,lambada,bye,2 -no,no please,parrot,cancel,3 -yes,you're right,original,book,1 -thank_you,i'm glad you did it for me,parrot,bye,2 -yes,yes,original,book,1 -goodbye,", goodbye",lambada,bye,2 -no,no thanks,original,cancel,3 -date,current day,parrot,avail,0 -yes,i'll give it a go,parrot,book,1 -greeting,good to see you,original,greet,4 -how_busy,how long is the wait at chili's?,parrot,avail,0 -yes,perfect,parrot,book,1 -yes,great,original,book,1 -how_busy,how long will it take to get seated at chili's?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -thank_you,gracias,original,bye,2 -goodbye,see ya,lambada,bye,2 -goodbye,goodbye!,original,bye,2 -cancel_reservation,because of the circumstances i don't need my reservation,parrot,cancel,3 -goodbye,"see you later, alligator",original,bye,2 -goodbye,later goodbye,parrot,bye,2 -yes,positive,original,book,1 -greeting,salutations,parrot,greet,4 -thank_you,you're welcome,parrot,bye,2 -no,naw,parrot,cancel,3 -no,no,lambada,cancel,3 -reminder_update,remind me to put away the clothes,parrot,resched,5 -thank_you,okay thank you,parrot,bye,2 -greeting,hello how are things?,parrot,greet,4 -how_busy,can you tell me how long will there be wait in order to get a table at red lobster?,lambada,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,goodbye soon,lambada,bye,2 -yes,good,parrot,book,1 -reminder_update,set up a reminder to check the car,lambada,resched,5 -goodbye,sign off,parrot,bye,2 -goodbye,goodbye,original,bye,2 -yes,perfect,parrot,book,1 -yes,i agree with what you said,parrot,book,1 -meeting_schedule,what's on my calendar?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -greeting,how is ife treating you,parrot,greet,4 -meeting_schedule,is dan aware of my meeting today?,parrot,avail,0 -yes,of course,original,book,1 -no,not good,parrot,cancel,3 -goodbye,it was very good to talk to you,original,bye,2 -thank_you,i appreciate that,original,bye,2 -thank_you,okay thank you,parrot,bye,2 -no,negatory,original,cancel,3 -goodbye,good talk,parrot,bye,2 -meeting_schedule,when is my meeting with bob?,original,avail,0 -no,that is overwhelmingly false,original,cancel,3 -goodbye,buhbye,original,bye,2 -goodbye,ai goodbye,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -no,what is it that's not true?,parrot,cancel,3 -goodbye,"thanks, bye",original,bye,2 -meeting_schedule,do you have meetings today from 5 to 7?,parrot,avail,0 -greeting,hello good day,parrot,greet,4 -yes,i can confirm,parrot,book,1 -no,this is false,parrot,cancel,3 -goodbye,later gator!,original,bye,2 -goodbye,glad we could talk,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -goodbye,cya later,original,bye,2 -greeting,how's ai doing?,parrot,greet,4 -yes,indeed,parrot,book,1 -date,tell me what's the date?,parrot,avail,0 -date,tell me the year?,parrot,avail,0 -yes,it seems true,parrot,book,1 -greeting,ahoy,lambada,greet,4 -goodbye,was fun seeing you,parrot,bye,2 -goodbye,peace,original,bye,2 -goodbye,great conversation,parrot,bye,2 -yes,"yes, that is it",original,book,1 -how_busy,does olive garden have to wait for dinner?,parrot,avail,0 -no,please disagree,lambada,cancel,3 -goodbye,buhbye,original,bye,2 -greeting,wassup,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -calendar_update,remove event from calendar,lambada,resched,5 -goodbye,nice drive by,lambada,bye,2 -greeting,what's new,lambada,greet,4 -how_busy,how long will it take me to get a table at chili's restaurant?,parrot,avail,0 -yes,"yep, that's correct",lambada,book,1 -yes,confirmed,original,book,1 -goodbye,bye!,original,bye,2 -calendar,can you look at my calendar for the 17th?,parrot,avail,0 -no,that's incorrect!,original,cancel,3 -no,that's a false,lambada,cancel,3 -calendar,what should i do on january 1st?,parrot,avail,0 -yes,yes,original,book,1 -meeting_schedule,when are my meetings?,parrot,avail,0 -no,i'm afraid not,parrot,cancel,3 -meeting_schedule,time of meeting?,parrot,avail,0 -greeting,hey how's ot,lambada,greet,4 -yes,that's absolutely true,parrot,book,1 -date,what's the current date?,parrot,avail,0 -greeting,and are you all right?,parrot,greet,4 -no,no way,original,cancel,3 -greeting,yo,original,greet,4 -no,thanks no,parrot,cancel,3 -thank_you,appreciate it,original,bye,2 -yes,definitely,original,book,1 -reminder_update,remind me to get rid of the garbage,parrot,resched,5 -thank_you,thank you for helping,parrot,bye,2 -calendar,do you have any events on my calendar for march 3?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -yes,it's positive,parrot,book,1 -date,give me a date for today?,parrot,avail,0 -reminder_update,remind me,original,resched,5 -no,negation,parrot,cancel,3 -yes,all right,parrot,book,1 -goodbye,later gater,original,bye,2 -thank_you,glad that you did it,parrot,bye,2 -yes,i believe you're right,parrot,book,1 -greeting,have you felt?,parrot,greet,4 -yes,"yeah, that's true",lambada,book,1 -goodbye,goodbye,original,bye,2 -yes,good yes,lambada,book,1 -goodbye,regards,original,bye,2 -no,naw,parrot,cancel,3 -cancel_reservation,cancel my dinner reservation please,original,cancel,3 -yes,say positive,parrot,book,1 -no,that is overwhelmingly wrong,lambada,cancel,3 -greeting,welcome,parrot,greet,4 -greeting,"hello, friend",original,greet,4 -how_busy,how busy is the restaurant around 6?,parrot,avail,0 -no,negative definitely,parrot,cancel,3 -greeting,salutations!,original,greet,4 -no,but that's totally wrong,parrot,cancel,3 -no,not right?,parrot,cancel,3 -reminder_update,remind me to remind my cat to give her flea medicine,parrot,resched,5 -yes,positive,original,book,1 -thank_you,very grateful,parrot,bye,2 -goodbye,peace,original,bye,2 -yes,is true,parrot,book,1 -thank_you,awesome thank you,parrot,bye,2 -how_busy,how long do you expect to wait in the cheese cake factory?,parrot,avail,0 -yes,oh yes,original,book,1 -greeting,"hey, what's up",original,greet,4 -no,not right,parrot,cancel,3 -schedule_meeting,can you schedule a meeting for 5pm on friday?,parrot,book,1 -date,what is the date tomorrow?,original,avail,0 -yes,absolutely correct,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -meeting_schedule,do i have to be present for meetings?,parrot,avail,0 -schedule_meeting,meeting rooms open between one and three pm,original,book,1 -how_busy,how busy will red robin be around noon? ,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -goodbye,i'll have to go,parrot,bye,2 -date,in 100 days?,parrot,avail,0 -meeting_schedule,meeting today,parrot,avail,0 -how_busy,does the olive garden get crowded around dinner?,parrot,avail,0 -no,that's incorrect,original,cancel,3 -greeting,hello,original,greet,4 -greeting,salutations,parrot,greet,4 -greeting,why hello?,original,greet,4 -no,no,lambada,cancel,3 -greeting,ahoy,lambada,greet,4 -no,FALSE,original,cancel,3 -how_busy,what is the wait supposed to be at zippys?,original,avail,0 -greeting,hey how's ot,lambada,greet,4 -calendar,do you have anything planned for thursday?,parrot,avail,0 -greeting,hi,original,greet,4 -goodbye,tootles,original,bye,2 -meeting_schedule,do i have any meetings today with sean?,lambada,avail,0 -no,"please, no",original,cancel,3 -cancel_reservation,can i cancel a reservation?,parrot,cancel,3 -yes,yay,lambada,book,1 -no,is very false,parrot,cancel,3 -date,tell me what day it's?,parrot,avail,0 -greeting,"hello, ai",original,greet,4 -date,tell me what the date is in 5 days?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -yes,yep,original,book,1 -yes,you are yes,lambada,book,1 -goodbye,regards,original,bye,2 -yes,positive,parrot,book,1 -no,that's so false,parrot,cancel,3 -how_busy,tell me if there's a lot of waiting time at olive garden at 5pm?,parrot,avail,0 -schedule_meeting,reserve a meeting space for friday 5pm,parrot,book,1 -reminder_update,make a reminder for lunch at 10am,parrot,resched,5 -how_busy,how long will it take to eat a red lobster?,parrot,avail,0 -no,FALSE,original,cancel,3 -yes,confirm,original,book,1 -goodbye,farewell,original,bye,2 -no,"nope, that's false",original,cancel,3 -goodbye,i'm going,parrot,bye,2 -thank_you,thank you!,original,bye,2 -date,what's my tomorrow date?,parrot,avail,0 -thank_you,"great, thanks!",original,bye,2 -yes,agreed,original,book,1 -greeting,salutation,parrot,greet,4 -yes,it'll be yes,parrot,book,1 -no,i'll say no,parrot,cancel,3 -date,current day,parrot,avail,0 -yes,i'd say yes,parrot,book,1 -thank_you,nice,parrot,bye,2 -reminder_update,a reminder to clean the shower,parrot,resched,5 -calendar,tell me what's happening on march 22nd?,lambada,avail,0 -greeting,hiya!,original,greet,4 -cancel_reservation,delete my dinner reservation,parrot,cancel,3 -date,today?,parrot,avail,0 -greeting,hola!,original,greet,4 -goodbye,my way,parrot,bye,2 -no,negative certainly,parrot,cancel,3 -goodbye,good seeing you,original,bye,2 -how_busy,how busy is pittsburgh cheesecake at 8,lambada,avail,0 -no,no please,parrot,cancel,3 -thank_you,okay thank you,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -date,let me know what today's date is,original,avail,0 -no,naw,original,cancel,3 -goodbye,adios,original,bye,2 -goodbye,bye!,original,bye,2 -no,you got that wrong,original,cancel,3 -meeting_schedule,talk to me about my schedule of meetings,parrot,avail,0 -greeting,hiya!,original,greet,4 -goodbye,bye!,original,bye,2 -goodbye,will leave now,parrot,bye,2 -calendar_update,can you change the date of the doctor's appointment event in my calendar from april 1 to april 3?,parrot,resched,5 -thank_you,why thank you?,original,bye,2 -yes,yay,lambada,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -reminder_update,i'd like to be reminded,parrot,resched,5 -goodbye,i'm leaving,parrot,bye,2 -greeting,heyo,original,greet,4 -date,what is today?,original,avail,0 -thank_you,you've tried,parrot,bye,2 -thank_you,thanks!,original,bye,2 -reminder_update,remind me,original,resched,5 -calendar,please check my calendar,parrot,avail,0 -reminder_update,give me a reminder,parrot,resched,5 -no,that's incorrect,original,cancel,3 -goodbye,please talk soon,parrot,bye,2 -reminder_update,want you to remind me something?,parrot,resched,5 -yes,this is true,lambada,book,1 -greeting,"wake up, ai",original,greet,4 -no,is very false,parrot,cancel,3 -how_busy,what are average wait times for grilled cheese from 6 to 8,parrot,avail,0 -how_busy,how long will it take to get a table at flannigans?,parrot,avail,0 -how_busy,what is the current status of chichi at 6pm?,lambada,avail,0 -meeting_schedule,what are meetings today?,parrot,avail,0 -goodbye,goodbyes soon,parrot,bye,2 -date,what year is this?,parrot,avail,0 -no,FALSE,original,cancel,3 -cancel_reservation,can you cancel my reservation tonight for chris at smith and wollensky?,original,cancel,3 -greeting,hey yai,lambada,greet,4 -no,it's so bad,parrot,cancel,3 -goodbye,ill be leaving now,parrot,bye,2 -goodbye,bye,original,bye,2 -goodbye,i'm leaving,parrot,bye,2 -yes,do that?,original,book,1 -goodbye,bye-bye,original,bye,2 -greeting,hello there!,original,greet,4 -no,so that's no,parrot,cancel,3 -date,in three days,parrot,avail,0 -reminder_update,please remind me something,parrot,resched,5 -yes,"yes, that's a fact",lambada,book,1 -how_busy,how long is the wait at olive garden currently?,parrot,avail,0 -thank_you,i'm thankful,original,bye,2 -yes,oh yes,original,book,1 -reminder_update,put the steaks on the grill remind me to check it at the right time,parrot,resched,5 -goodbye,thanks goodbye,parrot,bye,2 -date,date tomorrow?,parrot,avail,0 -meeting_schedule,when is the meeting?,parrot,avail,0 -goodbye,peace,original,bye,2 -yes,it seems true,parrot,book,1 -yes,yes please,original,book,1 -yes,that's a sure yes,parrot,book,1 -no,negatory?,parrot,cancel,3 -yes,it's logical,parrot,book,1 -date,what is it today?,lambada,avail,0 -goodbye,"later, goodbye",lambada,bye,2 -yes,all right,original,book,1 -goodbye,goodbye later,parrot,bye,2 -no,it's false,parrot,cancel,3 -no,that's a wrong answer?,parrot,cancel,3 -greeting,whats up,original,greet,4 -no,no?,parrot,cancel,3 -yes,uh-huh,original,book,1 -no,yes that's false,lambada,cancel,3 -goodbye,fairwell,original,bye,2 -no,nope that's not it,original,cancel,3 -goodbye,afterward,parrot,bye,2 -yes,yep,original,book,1 -greeting,are you feeling okay?,original,greet,4 -greeting,what is going on with you?,lambada,greet,4 -how_busy,how busy is the restaurant around dinner time?,parrot,avail,0 -greeting,wassup,original,greet,4 -thank_you,your assistance is appreciated,parrot,bye,2 -greeting,hey hey!,original,greet,4 -greeting,hi,original,greet,4 -thank_you,i appreciate the gesture you made,parrot,bye,2 -no,naw,parrot,cancel,3 -reminder_update,remember to check the mail,parrot,resched,5 -greeting,hello how is it going?,parrot,greet,4 -yes,huh,parrot,book,1 -yes,i'm going to tell you tes,parrot,book,1 -no,not true,original,cancel,3 -no,nothing good,parrot,cancel,3 -no,that's a negatory,original,cancel,3 -yes,yay,lambada,book,1 -goodbye,i'll be gone,parrot,bye,2 -no,that is erroneous,original,cancel,3 -goodbye,signing off,original,bye,2 -date,what date will it be?,parrot,avail,0 -how_busy,is the mall open till noon?,parrot,avail,0 -greeting,give me the information,parrot,greet,4 -reminder_update,remember me to bring a jacket tomorrow,parrot,resched,5 -no,certainly false,parrot,cancel,3 -cancel_reservation,the reservation i made,parrot,cancel,3 -greeting,how you're treated?,parrot,greet,4 -yes,obviously,parrot,book,1 -goodbye,it was good chatting,original,bye,2 -how_busy,how busy will the tomato garden be around 5pm?,parrot,avail,0 -yes,right,parrot,book,1 -greeting,hi ai,original,greet,4 -how_busy,how busy will chili's be around 6pm,lambada,avail,0 -reminder_update,remember to give the cat flea medicine,parrot,resched,5 -yes,yeah,original,book,1 -greeting,"hey, what's up",original,greet,4 -yes,TRUE,original,book,1 -yes,indeed,parrot,book,1 -yes,indeed,original,book,1 -greeting,ahoy,lambada,greet,4 -yes,that's right,original,book,1 -calendar_update,remove all calendar entries on march 4th,parrot,resched,5 -yes,confirm,original,book,1 -how_busy,tell me how busy chipotle will be tonight?,parrot,avail,0 -yes,approved,original,book,1 -how_busy,is ian busy around five?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -no,erroneous,parrot,cancel,3 -greeting,what's happened?,parrot,greet,4 -goodbye,"later, goodbye",lambada,bye,2 -no,it's negative,parrot,cancel,3 -calendar,show me my calendar?,parrot,avail,0 -goodbye,peace out,original,bye,2 -no,erroneous,parrot,cancel,3 -goodbye,i'm going,parrot,bye,2 -how_busy,how long can you expect to wait to be seated in an italian restaurant?,parrot,avail,0 -goodbye,tootles,original,bye,2 -greeting,hiya,original,greet,4 -greeting,hey,original,greet,4 -greeting,so how's everything?,parrot,greet,4 -goodbye,goodbye then,parrot,bye,2 -greeting,greetings to you,original,greet,4 -how_busy,would you say that the red lobster is pretty good at noon,parrot,avail,0 -yes,yes it's true,lambada,book,1 -reminder_update,i'd like you to remind me of something,parrot,resched,5 -thank_you,"oh, thanks",original,bye,2 -goodbye,see ya,lambada,bye,2 -yes,that makes sense,lambada,book,1 -yes,that's true,original,book,1 -yes,that's right,original,book,1 -yes,accepted,original,book,1 -no,negatory,original,cancel,3 -yes,im sure you're right,parrot,book,1 -schedule_meeting,meetings open between 1 and 3pm,parrot,book,1 -no,hell nah,original,cancel,3 -thank_you,my sincere gratitude,parrot,bye,2 -thank_you,i am very grateful,original,bye,2 -greeting,how is ife treating you,parrot,greet,4 -greeting,salutations!,original,greet,4 -no,erroneous,parrot,cancel,3 -thank_you,you answered,parrot,bye,2 -no,it's so negative,parrot,cancel,3 -thank_you,i'm grateful,original,bye,2 -no,not right so,parrot,cancel,3 -date,what is tomorrow?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -greeting,do you think about acii?,parrot,greet,4 -thank_you,i'm so grateful,parrot,bye,2 -yes,right,parrot,book,1 -date,where is tomorrow's date?,parrot,avail,0 -how_busy,what time should i wait when i go to the restaurant?,parrot,avail,0 -yes,yeap,original,book,1 -no,that's inaccurate,original,cancel,3 -goodbye,goodbye,original,bye,2 -thank_you,thank you for the info,parrot,bye,2 -goodbye,thank you for talking to me,lambada,bye,2 -how_busy,how long is the wait time at the cheesecake factory,lambada,avail,0 -no,is a lie?,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -yes,do that?,original,book,1 -calendar_update,remove the trip to scotland from my calendar on march 1st,lambada,resched,5 -yes,approved,original,book,1 -calendar,what is the tuesday calendar?,parrot,avail,0 -no,no!,original,cancel,3 -greeting,how's idy?,parrot,greet,4 -greeting,what's up?,parrot,greet,4 -yes,ya,original,book,1 -date,what year?,parrot,avail,0 -thank_you,many thanks,original,bye,2 -greeting,salutations!,original,greet,4 -yes,affirmitive,original,book,1 -greeting,i want to know how it goes,parrot,greet,4 -no,it's completely false,parrot,cancel,3 -thank_you,"oh, thanks",original,bye,2 -greeting,hola,original,greet,4 -yes,"yes, please",parrot,book,1 -no,no that isn't right,original,cancel,3 -goodbye,adios!,original,bye,2 -reminder_update,what's a reminder,parrot,resched,5 -greeting,"hello, friend",original,greet,4 -how_busy,how busy is red robin at 9 pm?,parrot,avail,0 -meeting_schedule,meeting today,parrot,avail,0 -cancel_reservation,cancel my reservation for 6 pm at sidetracks,original,cancel,3 -calendar,what's my schedule for october 14?,parrot,avail,0 -greeting,hi,original,greet,4 -goodbye,adios ai,original,bye,2 -calendar_update,please delete a certain meeting,parrot,resched,5 -calendar,please know what's in my calendar for friday the 1st,parrot,avail,0 -goodbye,the talk was nice,lambada,bye,2 -thank_you,appreciated,original,bye,2 -thank_you,i'm really grateful,parrot,bye,2 -goodbye,chat with me later,lambada,bye,2 -reminder_update,i need a reminder to get dinner out of the oven,parrot,resched,5 -no,i didn't mean that,parrot,cancel,3 -greeting,bonjour,original,greet,4 -no,that isn't correct,original,cancel,3 -yes,confirm,original,book,1 -thank_you,merci beaucoup,original,bye,2 -yes,accept,parrot,book,1 -goodbye,later,original,bye,2 -greeting,hey bs,lambada,greet,4 -greeting,what do you feel today?,parrot,greet,4 -no,"no, don't do that",original,cancel,3 -yes,great,original,book,1 -yes,and you're correct,parrot,book,1 -goodbye,nice chat today,lambada,bye,2 -no,FALSE,original,cancel,3 -greeting,"hey, how are you",original,greet,4 -yes,just right,parrot,book,1 -reminder_update,can you set me a reminder?,original,resched,5 -greeting,whats up?,parrot,greet,4 -no,hell nah,original,cancel,3 -goodbye,regards,original,bye,2 -greeting,hey bs,lambada,greet,4 -no,not correct,parrot,cancel,3 -yes,affirmative,original,book,1 -calendar,what's happening on march 15,parrot,avail,0 -goodbye,tootles,original,bye,2 -goodbye,peace,original,bye,2 -no,no!,original,cancel,3 -how_busy,how long do you expect to wait in the cheese cake factory,parrot,avail,0 -yes,is a real statement,parrot,book,1 -no,that's definitely false,original,cancel,3 -greeting,welcome,parrot,greet,4 -reminder_update,let me be reminded?,parrot,resched,5 -reminder_update,please remind me to write a letter,parrot,resched,5 -goodbye,nice talk,lambada,bye,2 -how_busy,how long will it take me to get a table at buffalo wings?,parrot,avail,0 -no,not good,parrot,cancel,3 -thank_you,awesome thanks,parrot,bye,2 -how_busy,what's the usual number of diners at wine and cheese around noon,lambada,avail,0 -goodbye,thanks bye bye!,original,bye,2 -yes,ya,original,book,1 -calendar,check calendar for events,lambada,avail,0 -no,invalid,original,cancel,3 -greeting,salutation,parrot,greet,4 -goodbye,afterward,parrot,bye,2 -goodbye,a good talk,parrot,bye,2 -yes,yes,original,book,1 -greeting,and how's it going,parrot,greet,4 -how_busy,does michelin steakhouse have people on their server right now?,parrot,avail,0 -greeting,yo,original,greet,4 -thank_you,thanks for my support,parrot,bye,2 -reminder_update,give me a reminder for calling bill,original,resched,5 -yes,approved,original,book,1 -goodbye,goodbye later,parrot,bye,2 -yes,this is true,lambada,book,1 -greeting,what's up?,parrot,greet,4 -meeting_schedule,are there meetings from 1-5?,parrot,avail,0 -yes,ya,original,book,1 -date,date please,original,avail,0 -goodbye,sayonara ,parrot,bye,2 -no,naw,parrot,cancel,3 -yes,absolutely!,original,book,1 -date,what day is it gonna be in twenty-one days?,original,avail,0 -greeting,yo,original,greet,4 -thank_you,many thank,original,bye,2 -no,it's a lie,parrot,cancel,3 -yes,great,original,book,1 -greeting,whats up?,parrot,greet,4 -no,"no, definitely not",original,cancel,3 -yes,great,original,book,1 -thank_you,i appreciate this answer,parrot,bye,2 -greeting,hello there!,original,greet,4 -goodbye,it's over,parrot,bye,2 -greeting,how you are,original,greet,4 -no,that's very wrong,parrot,cancel,3 -goodbye,adios,original,bye,2 -goodbye,bye,original,bye,2 -thank_you,thanks so much!,original,bye,2 -yes,i agree,original,book,1 -no,naw,original,cancel,3 -goodbye,bye!,original,bye,2 -yes,confirmed,original,book,1 -greeting,how is everything?,parrot,greet,4 -thank_you,much obliged,original,bye,2 -reminder_update,maybe a reminder?,parrot,resched,5 -calendar_update,remove my birthday party on friday from my schedule,lambada,resched,5 -yes,positive,parrot,book,1 -no,no?,parrot,cancel,3 -yes,yeah,original,book,1 -goodbye,get there soon,lambada,bye,2 -thank_you,you've been great,parrot,bye,2 -yes,yup,original,book,1 -greeting,what's up,original,greet,4 -reminder_update,can you remind me to put the clothes in the dryer?,parrot,resched,5 -goodbye,regards,original,bye,2 -no,certainly false,parrot,cancel,3 -yes,definitely yes,parrot,book,1 -thank_you,i'm happy with my response,parrot,bye,2 -goodbye,i'll leave now,parrot,bye,2 -yes,oh-huh,parrot,book,1 -goodbye,farewell,original,bye,2 -yes,oh-huh,parrot,book,1 -no,no thank you,original,cancel,3 -how_busy,how long would the wait be at olive garden right now?,parrot,avail,0 -yes,good,parrot,book,1 -yes,yes you are,original,book,1 -greeting,hey,original,greet,4 -goodbye,have fun?,lambada,bye,2 -meeting_schedule,what's my plan today?,parrot,avail,0 -thank_you,"awesome, thanks",original,bye,2 -yes,and you're correct,parrot,book,1 -calendar_update,remove concerts from my calendar on march 19 2019,parrot,resched,5 -date,which day is it now,original,avail,0 -yes,"yes, please",parrot,book,1 -goodbye,later gator!,original,bye,2 -how_busy,is ihop currently busy?,parrot,avail,0 -how_busy,how busy is mc donald at 8 in the morning?,parrot,avail,0 -date,current date,original,avail,0 -goodbye,nice talk,lambada,bye,2 -thank_you,i'm happy with my answer,original,bye,2 -goodbye,have fun?,lambada,bye,2 -greeting,how you are,original,greet,4 -meeting_schedule,do you have a meeting to attend today?,parrot,avail,0 -goodbye,lovely conversation,parrot,bye,2 -reminder_update,create a reminder please,parrot,resched,5 -yes,agreed,original,book,1 -greeting,how is my day,original,greet,4 -meeting_schedule,do i have to meet david?,parrot,avail,0 -no,this information is false,parrot,cancel,3 -no,negatory,original,cancel,3 -schedule_meeting,i want a meeting,parrot,book,1 -yes,that is true,lambada,book,1 -yes,you are yes,lambada,book,1 -goodbye,thanks bye bye!,original,bye,2 -yes,"yes, please",parrot,book,1 -no,not necessarily true,parrot,cancel,3 -meeting_schedule,plan my meetings for today,parrot,avail,0 -reminder_update,remind me of exercise,parrot,resched,5 -goodbye,my way,parrot,bye,2 -yes,uh-huh,original,book,1 -goodbye,tootles,original,bye,2 -no,FALSE,lambada,cancel,3 -goodbye,take a break,parrot,bye,2 -thank_you,"oh, thanks",original,bye,2 -greeting,bonjour,original,greet,4 -no,no?,parrot,cancel,3 -greeting,hola!,original,greet,4 -yes,"yes, that's confirmed",original,book,1 -greeting,how's my day?,parrot,greet,4 -how_busy,which time of day is the most busy for a chili meal?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -goodbye,adios,original,bye,2 -yes,sure,original,book,1 -how_busy,how busy will golden gate be at 5?,parrot,avail,0 -yes,absolutely!,original,book,1 -yes,approved,original,book,1 -greeting,are you doing ok?,original,greet,4 -no,negative,original,cancel,3 -goodbye,wonderful conversation,lambada,bye,2 -yes,positive,original,book,1 -greeting,how are you treated,lambada,greet,4 -goodbye,glad we can talk,parrot,bye,2 -yes,great,original,book,1 -how_busy,how long will the wait be when i go to olive garden,lambada,avail,0 -date,in five days?,parrot,avail,0 -yes,yeah,original,book,1 -date,what date this month?,parrot,avail,0 -greeting,how's it going,lambada,greet,4 -calendar,tell me what's on my calendar for april 1?,parrot,avail,0 -yes,yep,original,book,1 -calendar_update,forget my scheduled appointment i've set for tomorrow,parrot,resched,5 -thank_you,"oh, thanks",original,bye,2 -thank_you,thank you for my time and my effort to help,parrot,bye,2 -yes,my answer is yes,parrot,book,1 -thank_you,thank you!,original,bye,2 -thank_you,good job trying to achieve something,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -yes,positive,parrot,book,1 -greeting,what's new here?,parrot,greet,4 -no,naw,original,cancel,3 -no,that's certainly false,parrot,cancel,3 -how_busy,how long will the wait be at italian restaurant,lambada,avail,0 -goodbye,farewell!,original,bye,2 -goodbye,i enjoyed talking with you,lambada,bye,2 -goodbye,afterward,parrot,bye,2 -no,nothing,parrot,cancel,3 -how_busy,don't you know how busy outback steakhouse will be at 5 pm?,parrot,avail,0 -how_busy,is kaya busy around 5pm?,parrot,avail,0 -calendar,tell me what's on my calendar for march 21?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -yes,yes sir,original,book,1 -yes,confirmed,original,book,1 -meeting_schedule,do i have a meeting with nora today?,parrot,avail,0 -no,it's no,parrot,cancel,3 -how_busy,how long does it take to get to the pizza?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -yes,i guess,parrot,book,1 -no,naw,original,cancel,3 -greeting,"wake up, ai",original,greet,4 -schedule_meeting,are there meeting rooms between 7 and 8?,parrot,book,1 -calendar,can you see if i have an amy surprise party on my calendar?,parrot,avail,0 -greeting,how's otc?,parrot,greet,4 -no,that is incorrect,original,cancel,3 -goodbye,signing off,original,bye,2 -goodbye,adios!,original,bye,2 -yes,agreed,original,book,1 -goodbye,ill be leaving now,parrot,bye,2 -how_busy,how busy will mr joes be around 12?,parrot,avail,0 -goodbye,good talk,parrot,bye,2 -meeting_schedule,list the meetings in the calendar for today,parrot,avail,0 -greeting,hello what's happening,parrot,greet,4 -thank_you,good job thanks,parrot,bye,2 -no,invalid,original,cancel,3 -how_busy,can you tell me what the current wait time is at chili's?,lambada,avail,0 -goodbye,i'm out,parrot,bye,2 -greeting,yo,original,greet,4 -yes,yes please,original,book,1 -goodbye,buhbye,original,bye,2 -yes,just right,parrot,book,1 -no,certainly not,original,cancel,3 -yes,seems true,parrot,book,1 -yes,positive,original,book,1 -calendar_update,please clean my calendar,parrot,resched,5 -calendar,what's going on on the march 2 calendar?,parrot,avail,0 -no,negative definitely,parrot,cancel,3 -greeting,hey fellow,parrot,greet,4 -greeting,heller,original,greet,4 -greeting,welcome,parrot,greet,4 -thank_you,again thanks,parrot,bye,2 -no,but that's not what i want,parrot,cancel,3 -goodbye,see ya later,original,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -no,i'd rather not,parrot,cancel,3 -no,"please, no",original,cancel,3 -goodbye,later!,original,bye,2 -schedule_meeting,set up a meeting with carrie and lisa,parrot,book,1 -no,no,lambada,cancel,3 -greeting,hello ai,parrot,greet,4 -yes,is true,parrot,book,1 -how_busy,can i wait for a table at the red lobster?,parrot,avail,0 -no,no?,parrot,cancel,3 -yes,yay,lambada,book,1 -no,no please,parrot,cancel,3 -thank_you,my gratitude,parrot,bye,2 -goodbye,"later, good luck",lambada,bye,2 -greeting,how're you?,parrot,greet,4 -how_busy,how busy will the olive garden be at 7pm,parrot,avail,0 -yes,obviously,parrot,book,1 -yes,affirmative,original,book,1 -no,that's no,parrot,cancel,3 -how_busy,tell me how busy i'm going to be at the cheese cake factory around 1030?,parrot,avail,0 -goodbye,goodbye bye,parrot,bye,2 -no,no!,original,cancel,3 -cancel_reservation,i wish to cancel my reservation for fred at red robin,original,cancel,3 -no,nothing,parrot,cancel,3 -yes,my answer is yes,parrot,book,1 -goodbye,"nice talk, next time",lambada,bye,2 -no,that's not acceptable,parrot,cancel,3 -yes,certainly true,parrot,book,1 -thank_you,thanks,original,bye,2 -no,that is no way,lambada,cancel,3 -goodbye,see ya,lambada,bye,2 -goodbye,good talk,parrot,bye,2 -goodbye,"syonara, ai device!",original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -schedule_meeting,how are meetings scheduled?,parrot,book,1 -thank_you,thanks again!,original,bye,2 -no,i don't think it's true so i'd say it's a false statement,parrot,cancel,3 -goodbye,good night,original,bye,2 -no,i disagree with that,lambada,cancel,3 -thank_you,nice,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -thank_you,you did a good job,lambada,bye,2 -how_busy,how long will it take to eat at red lobster,lambada,avail,0 -goodbye,fairwell,original,bye,2 -thank_you,thank you kindly,original,bye,2 -greeting,good day,original,greet,4 -thank_you,i'm grateful for my pay check,parrot,bye,2 -greeting,"wake up, ai",original,greet,4 -no,it is not that,lambada,cancel,3 -greeting,aloha,original,greet,4 -no,that's incorrect,original,cancel,3 -goodbye,sayonara,original,bye,2 -reminder_update,a new reminder,parrot,resched,5 -meeting_schedule,what kind of meeting is it today between 10 and noon?,parrot,avail,0 -goodbye,adios!,original,bye,2 -no,naw,original,cancel,3 -reminder_update,remember to call tomorrow,parrot,resched,5 -calendar,please inform me what is showing on my calendar for the 17th of march,original,avail,0 -no,that's bad,parrot,cancel,3 -thank_you,"oh, thanks",original,bye,2 -thank_you,i'm grateful,original,bye,2 -thank_you,thanks!,original,bye,2 -yes,confirm,original,book,1 -yes,huh,parrot,book,1 -how_busy,how long will the wait be at red lobster at 5pm,lambada,avail,0 -how_busy,how long will i have to wait before i go to the olive garden,parrot,avail,0 -how_busy,how busy will the red lobster be at 6:00,lambada,avail,0 -yes,i will say yes as my response,original,book,1 -cancel_reservation,i booked chris at tony's please cancel it,parrot,cancel,3 -no,that isn't right,original,cancel,3 -how_busy,is she busy around 5pm?,parrot,avail,0 -yes,yeap,original,book,1 -yes,definitely,original,book,1 -yes,affirmitive,original,book,1 -yes,absolutely!,original,book,1 -thank_you,your answer pleased me,original,bye,2 -no,nope,original,cancel,3 -goodbye,"thanks, bye",original,bye,2 -thank_you,again thanks,parrot,bye,2 -greeting,are you well?,original,greet,4 -greeting,heyo,original,greet,4 -yes,ok,original,book,1 -no,that is incorrect,original,cancel,3 -goodbye,thanks for talking to me later,parrot,bye,2 -no,so that's no,parrot,cancel,3 -no,FALSE,original,cancel,3 -thank_you,"oh, thanks",original,bye,2 -greeting,what's going on,original,greet,4 -no,the statement is completely wrong,parrot,cancel,3 -meeting_schedule,what time is my meeting with fred?,parrot,avail,0 -no,no longer valid,parrot,cancel,3 -goodbye,bye bye!,original,bye,2 -thank_you,i owe you one,original,bye,2 -thank_you,thank you for my donation,parrot,bye,2 -calendar_update,delete dentist from my calendar,original,resched,5 -no,no!,original,cancel,3 -no,the statement is false,original,cancel,3 -goodbye,my friend,parrot,bye,2 -goodbye,later!,original,bye,2 -yes,affirmitive,original,book,1 -calendar,tell me the march date on my calendar?,parrot,avail,0 -yes,confirm,original,book,1 -goodbye,bye bye,lambada,bye,2 -yes,not false,parrot,book,1 -goodbye,greetings,parrot,bye,2 -no,negating,parrot,cancel,3 -thank_you,thank you kindly,original,bye,2 -how_busy,what's the crowd like at chili's around 7,lambada,avail,0 -how_busy,how busy is the restaurant at 8am?,parrot,avail,0 -greeting,well hello,original,greet,4 -date,today?,parrot,avail,0 -thank_you,thank you very much for the help,parrot,bye,2 -greeting,hey fellows,parrot,greet,4 -yes,not false,parrot,book,1 -greeting,hello,original,greet,4 -no,no way,original,cancel,3 -thank_you,i appreciate that,original,bye,2 -thank_you,okay thanks,original,bye,2 -reminder_update,"new reminder, please",original,resched,5 -thank_you,okay thanks,original,bye,2 -no,negative,original,cancel,3 -thank_you,a million thanks,parrot,bye,2 -no,that's definitely false,original,cancel,3 -thank_you,thanks for trying,original,bye,2 -no,no,lambada,cancel,3 -goodbye,adios,original,bye,2 -thank_you,awesome thank you,parrot,bye,2 -no,no way!,original,cancel,3 -thank_you,i want to thank you for your time,parrot,bye,2 -how_busy,wait long in this italian place?,parrot,avail,0 -greeting,"hello, ai",original,greet,4 -no,i would prefer not,original,cancel,3 -thank_you,i'm glad you answered,parrot,bye,2 -goodbye,say goodbye,parrot,bye,2 -goodbye,as regards,parrot,bye,2 -thank_you,you did it,parrot,bye,2 -yes,please let's do this,parrot,book,1 -no,FALSE,lambada,cancel,3 -greeting,ahoy,lambada,greet,4 -calendar,show me what's on the calendar for february 1?,parrot,avail,0 -no,no!,original,cancel,3 -goodbye,tootles,original,bye,2 -calendar,let me know what's on my calendar for thursday,parrot,avail,0 -cancel_reservation,cancel reservation at olive garden for tommy,parrot,cancel,3 -no,no good,original,cancel,3 -no,no!,original,cancel,3 -yes,i believe it's true,lambada,book,1 -yes,very true,original,book,1 -greeting,"howdy, what's new",original,greet,4 -greeting,hi there,original,greet,4 -goodbye,tootles,original,bye,2 -thank_you,appreciate the support,parrot,bye,2 -date,today is the date,parrot,avail,0 -yes,all right,parrot,book,1 -goodbye,the talk was nice,lambada,bye,2 -goodbye,i'm leaving,parrot,bye,2 -yes,positive,parrot,book,1 -greeting,are you doing ok?,original,greet,4 -goodbye,goodbye now,parrot,bye,2 -yes,just right,parrot,book,1 -greeting,hey there,original,greet,4 -yes,okay,original,book,1 -date,today?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -calendar,read my appointments for april 2,lambada,avail,0 -no,FALSE,lambada,cancel,3 -greeting,and what's up?,parrot,greet,4 -how_busy,how long can i wait for pizza?,parrot,avail,0 -thank_you,much obliged,original,bye,2 -goodbye,tootles,original,bye,2 -date,in five days?,parrot,avail,0 -yes,obviously,parrot,book,1 -greeting,heller,original,greet,4 -greeting,hello,original,greet,4 -no,i think it's incorrect,parrot,cancel,3 -yes,yeap,original,book,1 -yes,absolutely,original,book,1 -goodbye,great talk,lambada,bye,2 -yes,accept,parrot,book,1 -yes,what is the truth of that?,lambada,book,1 -no,it's not true,parrot,cancel,3 -no,that's not always true,parrot,cancel,3 -date,wednesday friday or saturday?,parrot,avail,0 -greeting,aloha,original,greet,4 -no,not so i think,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -greeting,hi,original,greet,4 -goodbye,great conversation,parrot,bye,2 -yes,TRUE,lambada,book,1 -goodbye,farewell!,original,bye,2 -greeting,well hello,original,greet,4 -goodbye,goodnight,original,bye,2 -calendar_update,make sure the events on my calendar for march 8 2019 are cleared,parrot,resched,5 -yes,certainly,parrot,book,1 -yes,please confirm that it is true,parrot,book,1 -yes,yes sir,original,book,1 -yes,positive,original,book,1 -greeting,salutations,parrot,greet,4 -calendar,have you added the bike ride to my calendar yet?,parrot,avail,0 -yes,agreed,original,book,1 -greeting,hola!,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -greeting,bonjour,original,greet,4 -thank_you,thanks for answering,parrot,bye,2 -calendar_update,i don't need to go to the zoo on the 8th of the month,parrot,resched,5 -no,that's a no,lambada,cancel,3 -schedule_meeting,i need an agenda,parrot,book,1 -greeting,how's the life?,parrot,greet,4 -greeting,hey,original,greet,4 -no,the negator,parrot,cancel,3 -no,the wrong answer,parrot,cancel,3 -greeting,bonjour,original,greet,4 -schedule_meeting,please book a meeting room for wednesday at noon,parrot,book,1 -how_busy,how long is olive garden usually busy around noon,lambada,avail,0 -thank_you,you've given me it,parrot,bye,2 -how_busy,how long can i expect the olive garden to be busy at dinner?,parrot,avail,0 -date,date tomorrow,parrot,avail,0 -greeting,what's happening,original,greet,4 -date,in seven days?,parrot,avail,0 -calendar_update,remove the recurring training meeting events from my calendars,parrot,resched,5 -yes,good,parrot,book,1 -goodbye,fairwell,original,bye,2 -yes,affirmitive,original,book,1 -calendar,when i'll have a meeting next month?,parrot,avail,0 -no,"no, that's not right",original,cancel,3 -greeting,hiya,original,greet,4 -goodbye,peace,original,bye,2 -calendar_update,i have to delete this event from my calendar,parrot,resched,5 -reminder_update,make me remember my vacation,parrot,resched,5 -yes,positive,parrot,book,1 -greeting,so how's everything?,parrot,greet,4 -yes,yup,original,book,1 -how_busy,is the imbrosio crowded at night?,lambada,avail,0 -how_busy,how busy will honey be at the dinner?,parrot,avail,0 -no,no no thanks,parrot,cancel,3 -calendar,did i set the 10th as my doctor's date?,parrot,avail,0 -greeting,"hey, what's up",original,greet,4 -calendar,let me know my march 2 calendar,original,avail,0 -no,no no thanks,parrot,cancel,3 -yes,sure,original,book,1 -goodbye,"bye-bye, my friend",lambada,bye,2 -goodbye,farewell,original,bye,2 -no,absolutely false,parrot,cancel,3 -yes,sure thing,original,book,1 -greeting,hola,original,greet,4 -goodbye,lovely conversation,parrot,bye,2 -goodbye,bye bye!,original,bye,2 -yes,it'll be yes,parrot,book,1 -thank_you,i'm thankful,original,bye,2 -greeting,would you tell me how the ai is doing,original,greet,4 -greeting,heyo,original,greet,4 -goodbye,as regards,parrot,bye,2 -goodbye,tootles,original,bye,2 -how_busy,how busy is ihop now?,parrot,avail,0 -thank_you,thanks for my help,original,bye,2 -greeting,heyo,original,greet,4 -goodbye,peace out!,original,bye,2 -goodbye,good call,parrot,bye,2 -thank_you,i'm grateful,original,bye,2 -no,i don't think it's true,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -greeting,hello what's going on,parrot,greet,4 -calendar,tell me what's on my calendar for march 25?,lambada,avail,0 -how_busy,is the wait at the pizza hut long?,parrot,avail,0 -yes,TRUE,lambada,book,1 -date,what date tomorrow?,parrot,avail,0 -yes,absolutely!,original,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -goodbye,i need to go,lambada,bye,2 -goodbye,my friend,parrot,bye,2 -greeting,hi,original,greet,4 -meeting_schedule,what is today's meeting hour?,parrot,avail,0 -no,i think it's false,parrot,cancel,3 -greeting,hiya,original,greet,4 -greeting,how're you doing,original,greet,4 -yes,affirmative,original,book,1 -no,no,lambada,cancel,3 -no,that's a negative,original,cancel,3 -yes,oh-huh,parrot,book,1 -thank_you,you've helped,parrot,bye,2 -greeting,how's idy?,parrot,greet,4 -goodbye,good luck,lambada,bye,2 -date,what date tomorrow?,parrot,avail,0 -yes,yep,original,book,1 -yes,yeap,original,book,1 -yes,"correct, that's true",original,book,1 -goodbye,"thanks, bye",original,bye,2 -goodbye,talk later,original,bye,2 -no,i didn't mean that,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -no,i gotta say no,original,cancel,3 -goodbye,"no problem, goodbye",lambada,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -date,what's the next date?,parrot,avail,0 -no,naw,original,cancel,3 -yes,i know this is true,lambada,book,1 -greeting,wassup,original,greet,4 -date,what's it like now?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -goodbye,see ya,lambada,bye,2 -yes,10-Apr,original,book,1 -goodbye,goodbyes,parrot,bye,2 -greeting,hey there!,original,greet,4 -goodbye,tootles,original,bye,2 -greeting,heller,original,greet,4 -schedule_meeting,please make a meeting room,lambada,book,1 -goodbye,", goodbye",lambada,bye,2 -no,not so i think,parrot,cancel,3 -how_busy,how busy will chili be around 8?,parrot,avail,0 -greeting,what's up,original,greet,4 -yes,that is right,original,book,1 -no,but that's not true,parrot,cancel,3 -schedule_meeting,tell me how to schedule a meeting?,original,book,1 -how_busy,how long will the wait at the pizza shop be?,parrot,avail,0 -yes,indeed,parrot,book,1 -thank_you,awesome thanks,parrot,bye,2 -calendar,what is currently on my calendar for thursday the 1st?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -no,negatory,original,cancel,3 -no,negative sure,parrot,cancel,3 -yes,positive,original,book,1 -no,no thanks,original,cancel,3 -goodbye,as regards,parrot,bye,2 -goodbye,tootles,original,bye,2 -goodbye,i like our chat,parrot,bye,2 -goodbye,buhbye,original,bye,2 -goodbye,regards,original,bye,2 -greeting,"hey, what's up",original,greet,4 -thank_you,thanks for helping me,original,bye,2 -no,no please,parrot,cancel,3 -greeting,are you good?,original,greet,4 -thank_you,and you're doing well,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -yes,"yes, that's accurate",original,book,1 -thank_you,i am grateful,lambada,bye,2 -no,nay,original,cancel,3 -meeting_schedule,is lisa meeting you today?,parrot,avail,0 -thank_you,thanks for answering,parrot,bye,2 -thank_you,i am very grateful,original,bye,2 -how_busy,can i wait at red lobster at 9 pm?,parrot,avail,0 -greeting,hello bs,parrot,greet,4 -no,naw,parrot,cancel,3 -how_busy,how long will i have to wait for the chocolate fountain?,parrot,avail,0 -no,the answer isn't correct,parrot,cancel,3 -no,no it's not right,parrot,cancel,3 -yes,is true,parrot,book,1 -cancel_reservation,can you cancel my reservation at the restaurant?,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -greeting,hey bs,lambada,greet,4 -calendar_update,can you remove this event from my calendar?,parrot,resched,5 -greeting,hey,original,greet,4 -thank_you,my sincere thanks,parrot,bye,2 -yes,just right,parrot,book,1 -yes,accepted,original,book,1 -greeting,hi,original,greet,4 -goodbye,i've got to go,lambada,bye,2 -no,naw,parrot,cancel,3 -goodbye,goodbye now,parrot,bye,2 -goodbye,bye,original,bye,2 -no,i am saying no,original,cancel,3 -yes,yay,lambada,book,1 -goodbye,regards,original,bye,2 -greeting,ahoy,lambada,greet,4 -goodbye,i need to go,lambada,bye,2 -how_busy,what time will it take for me to sit in chili's?,parrot,avail,0 -no,FALSE,original,cancel,3 -calendar,please tell me what may 1 will be like?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -yes,that is a yes,original,book,1 -thank_you,thank you,original,bye,2 -no,certainly not true,parrot,cancel,3 -goodbye,talk later,original,bye,2 -goodbye,see ya,lambada,bye,2 -thank_you,appreciate the assistance,parrot,bye,2 -yes,please let's do that,parrot,book,1 -yes,oh yes,original,book,1 -yes,yup,original,book,1 -yes,"affirmative, go ahead",original,book,1 -goodbye,bye!,original,bye,2 -no,it is false,original,cancel,3 -reminder_update,what about a reminder?,parrot,resched,5 -goodbye,good talk,parrot,bye,2 -date,is monday wednesday thursday friday or sunday?,parrot,avail,0 -calendar_update,clear my calendar for february,parrot,resched,5 -goodbye,see ya,original,bye,2 -meeting_schedule,what meetings are today?,lambada,avail,0 -goodbye,later good luck,parrot,bye,2 -no,that's not acceptable,parrot,cancel,3 -greeting,hola,original,greet,4 -no,i'll pass,original,cancel,3 -no,that's negative,parrot,cancel,3 -goodbye,i need to leave now,lambada,bye,2 -yes,yes that is true,lambada,book,1 -goodbye,see ya!,original,bye,2 -greeting,hiya,original,greet,4 -no,erroneous,parrot,cancel,3 -meeting_schedule,when do i meet my father?,parrot,avail,0 -greeting,hello there!,original,greet,4 -how_busy,how long will it take to wait for black friday?,parrot,avail,0 -goodbye,goodbyes soon,parrot,bye,2 -greeting,hey fellow,parrot,greet,4 -thank_you,your answer was good,original,bye,2 -cancel_reservation,cancel my reservation at morton's,lambada,cancel,3 -no,that is actually false,original,cancel,3 -yes,yeah yeah,lambada,book,1 -yes,sure thing,original,book,1 -greeting,hi what's up?,parrot,greet,4 -no,it's very wrong,parrot,cancel,3 -greeting,"why, hello bandit",original,greet,4 -greeting,how's it going now?,parrot,greet,4 -no,that's false,original,cancel,3 -reminder_update,remind me to write this note,parrot,resched,5 -yes,say yes,lambada,book,1 -thank_you,good job,lambada,bye,2 -date,what date today?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -yes,yeah,original,book,1 -no,nada,original,cancel,3 -how_busy,what is the average sitting time at this restaurant?,lambada,avail,0 -greeting,hiya,original,greet,4 -no,hell nah,original,cancel,3 -yes,so it's true,parrot,book,1 -calendar,what do i have on my calendar for march 2?,original,avail,0 -calendar_update,i need you to add my birthday party to my calendar for march 13,lambada,resched,5 -no,not right i don't think,parrot,cancel,3 -date,please show the date,parrot,avail,0 -yes,we would say yes,lambada,book,1 -goodbye,im leaving,parrot,bye,2 -yes,so it works,parrot,book,1 -yes,good,parrot,book,1 -how_busy,tell me how busy the chili will be between 11 and 2?,parrot,avail,0 -yes,"true, most definitely",original,book,1 -no,that's very false,parrot,cancel,3 -reminder_update,set a reminder to do dishes,lambada,resched,5 -yes,"yup, that's true",original,book,1 -goodbye,chat with me later,lambada,bye,2 -calendar,what's happening on my schedule for march 12th,lambada,avail,0 -no,no that isn't right,original,cancel,3 -no,nada,original,cancel,3 -how_busy,what's the time to be in this restaurant?,parrot,avail,0 -greeting,how's life going?,parrot,greet,4 -no,it's so negative,parrot,cancel,3 -how_busy,how busy is red robin at 5 pm,lambada,avail,0 -how_busy,you know how busy imoos is?,parrot,avail,0 -greeting,how's everything?,parrot,greet,4 -how_busy,is she busy at 5pm?,parrot,avail,0 -greeting,hola,original,greet,4 -goodbye,farewell,original,bye,2 -greeting,hiya,original,greet,4 -greeting,hiya,original,greet,4 -thank_you,i'm glad you answered,parrot,bye,2 -no,erroneous,parrot,cancel,3 -yes,ok,original,book,1 -date,current day,parrot,avail,0 -goodbye,bye,original,bye,2 -meeting_schedule,meetings today,original,avail,0 -no,no!,original,cancel,3 -greeting,hi,original,greet,4 -greeting,hola,original,greet,4 -no,it's very false,parrot,cancel,3 -greeting,wake up ai,parrot,greet,4 -yes,positive,parrot,book,1 -how_busy,will the restaurant fill up?,parrot,avail,0 -greeting,what's happening?,parrot,greet,4 -meeting_schedule,is there any meetings between 2 and 5 pm?,lambada,avail,0 -date,in 7 days?,parrot,avail,0 -greeting,how do you feel?,parrot,greet,4 -yes,very true,original,book,1 -yes,obviously,parrot,book,1 -reminder_update,schedule time to prepare for tomorrow,parrot,resched,5 -yes,okay,original,book,1 -schedule_meeting,can you list the meeting rooms available between 5 and 6pm?,parrot,book,1 -thank_you,you're so much help,parrot,bye,2 -meeting_schedule,when's my meeting?,parrot,avail,0 -how_busy,waiting at macaroni grill?,parrot,avail,0 -calendar,what's my plan for march 3rd?,parrot,avail,0 -meeting_schedule,are there meetings between 4 and 7pm today?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -no,that isn't right,original,cancel,3 -thank_you,i am grateful,lambada,bye,2 -thank_you,you've tried,parrot,bye,2 -yes,right,parrot,book,1 -thank_you,gracias,original,bye,2 -goodbye,thanks for the chat,parrot,bye,2 -goodbye,bye now,original,bye,2 -no,yes it's false,parrot,cancel,3 -goodbye,later goodbye,parrot,bye,2 -goodbye,goodbye to yours,parrot,bye,2 -thank_you,you're a good help,parrot,bye,2 -reminder_update,just a reminder,parrot,resched,5 -greeting,whats up?,parrot,greet,4 -meeting_schedule,what time is my meeting with the design team scheduled for?,parrot,avail,0 -no,"no, it's not",lambada,cancel,3 -greeting,how you feel?,parrot,greet,4 -goodbye,i'm very happy to talk to you,parrot,bye,2 -goodbye,"thanks, bye",original,bye,2 -cancel_reservation,thank you for canceled my reservation at oyster bar,lambada,cancel,3 -no,thats a negative,original,cancel,3 -goodbye,im leaving goodbye,parrot,bye,2 -goodbye,great chat goodbye,lambada,bye,2 -no,this is false,parrot,cancel,3 -greeting,ahoy,lambada,greet,4 -no,but that's not factual,parrot,cancel,3 -greeting,good to see you,original,greet,4 -how_busy,how busy will the outback steakhouse be around 5:30 pm,lambada,avail,0 -yes,obviously,parrot,book,1 -yes,it's logical,parrot,book,1 -yes,great,original,book,1 -greeting,hello there!,original,greet,4 -greeting,how's the ai?,parrot,greet,4 -yes,"yep, that's correct",lambada,book,1 -goodbye,greetings,parrot,bye,2 -cancel_reservation,please unreserve that table,original,cancel,3 -reminder_update,can you set a reminder to put clothes in the dryer?,parrot,resched,5 -greeting,you good?,parrot,greet,4 -date,i need to know what date it's tomorrow?,parrot,avail,0 -goodbye,nice drive by,lambada,bye,2 -calendar,please tell me what is in my calendar for march 25th?,parrot,avail,0 -thank_you,awesome thanks,parrot,bye,2 -yes,"yep, that's true",original,book,1 -greeting,how have you been,original,greet,4 -no,it's no,parrot,cancel,3 -date,what will be the date in six days?,parrot,avail,0 -goodbye,good luck later,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -greeting,welcome,parrot,greet,4 -greeting,hey there,original,greet,4 -meeting_schedule,what's the time of the meeting?,parrot,avail,0 -no,nada,original,cancel,3 -yes,indeed,original,book,1 -how_busy,how busy is mishawaka,lambada,avail,0 -yes,accepted,original,book,1 -no,no?,parrot,cancel,3 -cancel_reservation,cancel my reservation for dinner,original,cancel,3 -yes,not a false statement,parrot,book,1 -how_busy,how busy is kaya around 5 pm,original,avail,0 -calendar_update,make sure i have an appointment tomorrow on my calendar,parrot,resched,5 -greeting,hello,original,greet,4 -yes,yay,lambada,book,1 -reminder_update,remind me,original,resched,5 -yes,it's positive,parrot,book,1 -how_busy,if i go to olive garden at 4pm how busy it will be,parrot,avail,0 -no,yes that's false,lambada,cancel,3 -meeting_schedule,how many meetings do i have today,original,avail,0 -greeting,how you're treated,parrot,greet,4 -greeting,"hello, what's up",original,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -greeting,hello what is happening,lambada,greet,4 -greeting,hey how are you,lambada,greet,4 -greeting,yo,original,greet,4 -goodbye,good luck later,parrot,bye,2 -meeting_schedule,when's the meeting?,parrot,avail,0 -no,no way,original,cancel,3 -yes,affirmitive,original,book,1 -yes,obviously,parrot,book,1 -yes,yeap,original,book,1 -goodbye,later!,original,bye,2 -goodbye,i enjoyed our talk,parrot,bye,2 -yes,yes it's true,lambada,book,1 -yes,oh-huh,parrot,book,1 -thank_you,you answered,parrot,bye,2 -goodbye,i'm gonna talk to you later,lambada,bye,2 -greeting,hola!,original,greet,4 -no,ill pass,original,cancel,3 -yes,yay,lambada,book,1 -yes,sure,original,book,1 -date,what will be the date in four days?,lambada,avail,0 -yes,you are yes,lambada,book,1 -calendar,is bowling in my calendar?,parrot,avail,0 -goodbye,i'm going,parrot,bye,2 -yes,uh-huh,original,book,1 -date,how can i know the date of my account?,parrot,avail,0 -greeting,well hello,original,greet,4 -meeting_schedule,what's my schedule today?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -calendar_update,need a calendar for april 15th,parrot,resched,5 -goodbye,"no problem, goodbye",lambada,bye,2 -how_busy,can you tell me how crowded the lobster is at noon?,parrot,avail,0 -date,list the next week?,parrot,avail,0 -thank_you,gracias,original,bye,2 -goodbye,i've been talking to you recently,parrot,bye,2 -yes,yeah,original,book,1 -date,let me know what's the date today?,parrot,avail,0 -date,what's today,original,avail,0 -greeting,heyo,original,greet,4 -no,naw,original,cancel,3 -thank_you,very grateful,parrot,bye,2 -no,"no, definitely not",original,cancel,3 -yes,i want to confirm it,parrot,book,1 -meeting_schedule,what are my calendar appointments?,parrot,avail,0 -calendar,please read my calendar,parrot,avail,0 -thank_you,you're welcome,parrot,bye,2 -greeting,salutations!,original,greet,4 -yes,obviously,parrot,book,1 -meeting_schedule,any meetings on schedule today,parrot,avail,0 -meeting_schedule,are there meetings between 2 and 5 pm?,parrot,avail,0 -yes,correct,original,book,1 -yes,facts,original,book,1 -goodbye,good night,original,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -calendar,please check my calendar,parrot,avail,0 -goodbye,tootles,original,bye,2 -yes,obviously,parrot,book,1 -yes,not false,parrot,book,1 -reminder_update,please create a reminder,parrot,resched,5 -meeting_schedule,when is my next meeting?,parrot,avail,0 -yes,approved,original,book,1 -goodbye,my way,parrot,bye,2 -meeting_schedule,give me the schedule of my meetings for today?,parrot,avail,0 -thank_you,"great, thanks!",original,bye,2 -yes,indeed,original,book,1 -how_busy,is it okay to eat beef in ohio?,parrot,avail,0 -schedule_meeting,a meeting is needed,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -goodbye,ai goodbye,original,bye,2 -date,in 14 days?,parrot,avail,0 -how_busy,how busy is chili around noon?,parrot,avail,0 -yes,perfect,parrot,book,1 -greeting,how's everything,original,greet,4 -no,it's the wrong answer,parrot,cancel,3 -meeting_schedule,have any meetings scheduled today?,parrot,avail,0 -yes,great,original,book,1 -how_busy,what is the wait time at an ihop cheese?,lambada,avail,0 -thank_you,i appreciate your time,lambada,bye,2 -yes,TRUE,lambada,book,1 -no,that's absolutely wrong,parrot,cancel,3 -goodbye,i must say goodbye,original,bye,2 -thank_you,appreciated,original,bye,2 -no,nothing,parrot,cancel,3 -reminder_update,make a reminder,parrot,resched,5 -no,nothing,parrot,cancel,3 -yes,absolutely!,original,book,1 -date,what's today,original,avail,0 -thank_you,thank you for the info,parrot,bye,2 -no,FALSE,lambada,cancel,3 -greeting,how are you,original,greet,4 -yes,right,parrot,book,1 -how_busy,can you tell me how busy is michel at 5 pm?,lambada,avail,0 -yes,10-Apr,original,book,1 -goodbye,adios!,original,bye,2 -cancel_reservation,my reservation has to be cancelled,parrot,cancel,3 -goodbye,on the highway,parrot,bye,2 -thank_you,you helped,parrot,bye,2 -thank_you,thanks for that,original,bye,2 -schedule_meeting,please get together with matthew,parrot,book,1 -cancel_reservation,cancel dinner reservation tonight,parrot,cancel,3 -yes,uh-huh,original,book,1 -thank_you,thanks,original,bye,2 -goodbye,good-bye,parrot,bye,2 -yes,affirmative,original,book,1 -greeting,"wake up, ai",original,greet,4 -date,what's my date today?,parrot,avail,0 -yes,indeed,original,book,1 -yes,affirmative,original,book,1 -no,i meant nothing,parrot,cancel,3 -no,yes it's false,parrot,cancel,3 -greeting,how you are,original,greet,4 -how_busy,when is rancho crowded?,parrot,avail,0 -meeting_schedule,tell me the schedule of the meeting?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -how_busy,how long does it take to get to a table at the gobi steakhouse?,parrot,avail,0 -yes,yup,original,book,1 -yes,yes it's true,lambada,book,1 -date,i need to know the date of today,parrot,avail,0 -no,no thanks,original,cancel,3 -goodbye,tootles,original,bye,2 -yes,"yes, that is accurate",original,book,1 -yes,accept,parrot,book,1 -how_busy,is red lobster busy?,parrot,avail,0 -date,in seven days?,parrot,avail,0 -date,what date tomorrow?,parrot,avail,0 -no,invalid,original,cancel,3 -goodbye,talk to you soon,parrot,bye,2 -cancel_reservation,cancell my reservation for jimmy in the outback,parrot,cancel,3 -thank_you,i appeciate it,parrot,bye,2 -yes,yay,lambada,book,1 -no,that's totally wrong,parrot,cancel,3 -no,naw,parrot,cancel,3 -thank_you,i'm very thankful,parrot,bye,2 -thank_you,good job with good effort,parrot,bye,2 -yes,yeah that's right,lambada,book,1 -no,the answer isn't correct,parrot,cancel,3 -no,invalid,original,cancel,3 -yes,yep,original,book,1 -yes,accept,parrot,book,1 -goodbye,buhbye,original,bye,2 -greeting,salutation,parrot,greet,4 -greeting,hello,original,greet,4 -yes,great,original,book,1 -no,it's false,parrot,cancel,3 -yes,i agree,original,book,1 -greeting,nice day,lambada,greet,4 -no,thats a negative,original,cancel,3 -greeting,yo,original,greet,4 -how_busy,how long will the wait be at the cheesecake factory?,parrot,avail,0 -cancel_reservation,can i cancel my reservation for 6pm?,parrot,cancel,3 -date,what's the next date?,parrot,avail,0 -goodbye,see ya,original,bye,2 -goodbye,fairwell,original,bye,2 -schedule_meeting,are meeting rooms available between 7 and 8?,parrot,book,1 -calendar_update,eliminate jury duty from my calendar for may 7,parrot,resched,5 -greeting,"hello, good day",lambada,greet,4 -yes,yes,original,book,1 -date,in five days?,parrot,avail,0 -greeting,"hello, hello, hello",lambada,greet,4 -no,not good,parrot,cancel,3 -calendar_update,remove jury duty from my calendar for may 7th,parrot,resched,5 -goodbye,adios,original,bye,2 -yes,it's positive,parrot,book,1 -calendar,pull up my calendar and tell me what i have planned for march 30th,parrot,avail,0 -yes,TRUE,original,book,1 -goodbye,good conversation,parrot,bye,2 -yes,oh-huh,parrot,book,1 -thank_you,"thanks, you've helped me",original,bye,2 -meeting_schedule,tell me what i have planned for today?,parrot,avail,0 -how_busy,how long will it take to dine at the chai plant,lambada,avail,0 -goodbye,adios,original,bye,2 -greeting,how's life?,parrot,greet,4 -date,please show what's the date for this account,parrot,avail,0 -goodbye,talk later,original,bye,2 -yes,yup,original,book,1 -yes,positive,original,book,1 -yes,i think that's correct,parrot,book,1 -goodbye,good luck,lambada,bye,2 -greeting,"howdy, what's new",original,greet,4 -no,please disagree,lambada,cancel,3 -date,tell me what date it's?,parrot,avail,0 -goodbye,later gator!,original,bye,2 -yes,yep,original,book,1 -thank_you,my thanks,parrot,bye,2 -yes,positive,parrot,book,1 -no,"no, that's incorrect",original,cancel,3 -yes,huh,parrot,book,1 -no,invalid,original,cancel,3 -greeting,how's everything going for you?,parrot,greet,4 -schedule_meeting,are there meeting rooms available between 7-9?,original,book,1 -goodbye,i'll go,parrot,bye,2 -calendar,what's on my calendar for march 5th?,parrot,avail,0 -date,and what's the day?,parrot,avail,0 -how_busy,are there any wait times at the olive garden?,parrot,avail,0 -no,no!,original,cancel,3 -yes,obviously,parrot,book,1 -meeting_schedule,meeting today,parrot,avail,0 -greeting,are you okay right now?,original,greet,4 -thank_you,good job,lambada,bye,2 -goodbye,the talk was nice,lambada,bye,2 -yes,certainly,parrot,book,1 -no,thanks no,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -cancel_reservation,cancel my reservation at diner for robin,lambada,cancel,3 -goodbye,but now i'm leaving,parrot,bye,2 -greeting,hey hey!,original,greet,4 -yes,good,parrot,book,1 -yes,ya,original,book,1 -goodbye,fairwell?,parrot,bye,2 -yes,"yes, that's right",original,book,1 -thank_you,okay thanks,original,bye,2 -no,that's not correct,original,cancel,3 -meeting_schedule,meeting today,parrot,avail,0 -no,that’s actually wrong,original,cancel,3 -date,what day it today?,original,avail,0 -thank_you,you answered,parrot,bye,2 -no,i disagree,parrot,cancel,3 -thank_you,thanks for my response,original,bye,2 -goodbye,"no problem, goodbye",lambada,bye,2 -how_busy,can i wait for a long time before i can go to the restaurant?,parrot,avail,0 -thank_you,i am grateful,lambada,bye,2 -how_busy,find out what wait times are like right now at olive garden,original,avail,0 -yes,ya,original,book,1 -date,where is tomorrow's date,lambada,avail,0 -no,that's a wrong answer,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -thank_you,thank you for coming by,parrot,bye,2 -yes,that'd be great,parrot,book,1 -greeting,yo,original,greet,4 -how_busy,how long will i wait to go to the cheesecake factory?,parrot,avail,0 -yes,affirmitive,original,book,1 -how_busy,how busy is jiro at lunchtime?,parrot,avail,0 -yes,okay,original,book,1 -goodbye,i'll leave,parrot,bye,2 -greeting,hi ai,original,greet,4 -no,is my falsehood?,parrot,cancel,3 -how_busy,how busy the restaurant is at dinner time?,parrot,avail,0 -how_busy,how many people are at olive garden at 7,lambada,avail,0 -greeting,hey there!,original,greet,4 -calendar_update,add this to the calendar tomorrow?,parrot,resched,5 -no,negative definitely,parrot,cancel,3 -no,no!,original,cancel,3 -no,naw,original,cancel,3 -thank_you,and i thank you,parrot,bye,2 -no,no?,parrot,cancel,3 -yes,i think it's true,original,book,1 -no,naw,parrot,cancel,3 -yes,yeah,original,book,1 -meeting_schedule,is there any meetings from 5 to 6 pm?,original,avail,0 -yes,indeed,original,book,1 -no,no!,original,cancel,3 -thank_you,you've been great,parrot,bye,2 -calendar,what items do you have on my calendar for easter?,parrot,avail,0 -goodbye,farewell,original,bye,2 -goodbye,tootles?,parrot,bye,2 -no,that's erroneous,parrot,cancel,3 -date,what's today?,parrot,avail,0 -goodbye,i'll go,parrot,bye,2 -goodbye,i'll see you around,lambada,bye,2 -yes,this is true,lambada,book,1 -yes,so it's real,parrot,book,1 -no,don't like that,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -greeting,hey how's ot,lambada,greet,4 -thank_you,for the help i'm grateful,parrot,bye,2 -yes,do that?,original,book,1 -goodbye,afterward,parrot,bye,2 -greeting,hey how have you been?,parrot,greet,4 -thank_you,i really thank you,original,bye,2 -date,is tomorrow's date?,parrot,avail,0 -calendar_update,i want to add a doctor's visit to the calendar for friday,original,resched,5 -goodbye,bye!,original,bye,2 -how_busy,how long will it take me to get seated in olive garden for the dinner?,parrot,avail,0 -thank_you,you helped,parrot,bye,2 -greeting,whats new,lambada,greet,4 -calendar,please tell me what's on my calendar for march 20th,parrot,avail,0 -date,can you tell me when it'll be?,parrot,avail,0 -yes,yay,lambada,book,1 -yes,i agree,original,book,1 -yes,absolutely,original,book,1 -yes,absolutely!,original,book,1 -no,it's so bad,parrot,cancel,3 -yes,obviously,parrot,book,1 -yes,accept,parrot,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -schedule_meeting,i need you to schedule a meeting with carrie and lisa,original,book,1 -yes,"yes, please",parrot,book,1 -yes,it's positive,parrot,book,1 -how_busy,is ihop busy around 8 am?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,i prefer not,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -no,yes that's false,lambada,cancel,3 -no,negation,parrot,cancel,3 -greeting,hey,original,greet,4 -reminder_update,remind me to pay my utilities,parrot,resched,5 -thank_you,your response is appreciated,parrot,bye,2 -goodbye,please chat to me,parrot,bye,2 -greeting,"why, hello bandit",original,greet,4 -yes,certainly true,parrot,book,1 -date,please let me know the date tomorrow,parrot,avail,0 -reminder_update,my cat needs neutered,parrot,resched,5 -greeting,how it goes?,parrot,greet,4 -thank_you,let me thank you,original,bye,2 -goodbye,tootles?,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -thank_you,that's what you did,parrot,bye,2 -reminder_update,remind me to buy cat food,parrot,resched,5 -goodbye,regards,original,bye,2 -yes,definitely yes,parrot,book,1 -date,in five days?,parrot,avail,0 -yes,certainly,parrot,book,1 -reminder_update,remember the meeting tomorrow,parrot,resched,5 -yes,i know that the statement is true,original,book,1 -no,i don't think so,original,cancel,3 -greeting,hello good day,parrot,greet,4 -meeting_schedule,what's the time for today?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -yes,"yeah, that's true",lambada,book,1 -goodbye,goodbye helpful ai devices,parrot,bye,2 -no,thanks no,parrot,cancel,3 -thank_you,gracias,original,bye,2 -yes,right,parrot,book,1 -greeting,salutations!,original,greet,4 -how_busy,how busy will dr. joe's be at 5,lambada,avail,0 -no,naw,original,cancel,3 -goodbye,see you soon,original,bye,2 -thank_you,"great, thanks!",original,bye,2 -greeting,hiya,original,greet,4 -thank_you,you answered,parrot,bye,2 -meeting_schedule,please show my schedule of meetings,parrot,avail,0 -greeting,hey fellows,parrot,greet,4 -yes,sure,original,book,1 -no,negative,original,cancel,3 -thank_you,i appeciate it,parrot,bye,2 -greeting,what's going on,original,greet,4 -cancel_reservation,but i don't want my reservation anymore,parrot,cancel,3 -date,what's tomorrow on the calendar?,parrot,avail,0 -yes,certainly true,parrot,book,1 -meeting_schedule,have any meetings scheduled today?,parrot,avail,0 -meeting_schedule,time of meeting?,parrot,avail,0 -no,negative definitely,parrot,cancel,3 -yes,okay,original,book,1 -goodbye,buhbye now,lambada,bye,2 -goodbye,fairwell?,parrot,bye,2 -greeting,why hello?,original,greet,4 -goodbye,my way,parrot,bye,2 -calendar,are there any events between may 5 and may 6?,parrot,avail,0 -no,not that one,original,cancel,3 -how_busy,how long will it take to wait at 5 pm,parrot,avail,0 -no,thanks no,parrot,cancel,3 -date,i'd like to know what the date is,original,avail,0 -yes,and you're right,parrot,book,1 -thank_you,it's so much easier with you,parrot,bye,2 -reminder_update,give me a reminder,parrot,resched,5 -no,erroneous,parrot,cancel,3 -yes,you said i have it,lambada,book,1 -yes,indeed,original,book,1 -cancel_reservation,i have to cancel my dinner reservation in the steakhouse,parrot,cancel,3 -no,is my false assertion?,parrot,cancel,3 -yes,i know,parrot,book,1 -date,what date tomorrow?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -date,what day is it?,original,avail,0 -no,no?,parrot,cancel,3 -goodbye,regards,original,bye,2 -date,month and day in four days?,parrot,avail,0 -meeting_schedule,when is today's meeting?,lambada,avail,0 -greeting,heyo,original,greet,4 -thank_you,my gratitude,parrot,bye,2 -calendar,check my calendar,parrot,avail,0 -greeting,hey fellows,parrot,greet,4 -goodbye,good luck,lambada,bye,2 -greeting,hiya!,original,greet,4 -calendar,what do you plan for january 19th?,parrot,avail,0 -greeting,heyo,original,greet,4 -goodbye,i'm going,parrot,bye,2 -yes,certainly true,parrot,book,1 -no,is very false,parrot,cancel,3 -how_busy,wait at jalapeno ranch?,parrot,avail,0 -yes,obviously,parrot,book,1 -reminder_update,remind yourself to go shopping,parrot,resched,5 -goodbye,good bye,original,bye,2 -schedule_meeting,i need help with setting a meeting,parrot,book,1 -goodbye,goodbye to yours,parrot,bye,2 -yes,good,parrot,book,1 -no,not correct,parrot,cancel,3 -meeting_schedule,what's the meeting today?,parrot,avail,0 -meeting_schedule,what meetings are on my calendar today?,lambada,avail,0 -no,not true,original,cancel,3 -yes,say yes,lambada,book,1 -yes,right,parrot,book,1 -no,that's a no,lambada,cancel,3 -how_busy,how long do i have to wait for a table in olive garden,parrot,avail,0 -yes,definitely,original,book,1 -yes,obviously,parrot,book,1 -no,"that would be ""no",original,cancel,3 -goodbye,later then,lambada,bye,2 -goodbye,farewell!,original,bye,2 -no,that is overwhelmingly negative,lambada,cancel,3 -reminder_update,make a reminder please,parrot,resched,5 -thank_you,i appreciate your answer,parrot,bye,2 -reminder_update,remind me to write this memo,lambada,resched,5 -calendar,pull up my calendar and tell me what i'm planning for march 30th '',parrot,avail,0 -yes,good yes,lambada,book,1 -yes,that's true,original,book,1 -greeting,are you okay??,parrot,greet,4 -goodbye,the talk was nice,lambada,bye,2 -greeting,salutations,parrot,greet,4 -goodbye,goodbyes soon,parrot,bye,2 -goodbye,ai goodbye,original,bye,2 -schedule_meeting,please help me with a meeting,lambada,book,1 -yes,"yes, please",parrot,book,1 -yes,it is a yes from me,parrot,book,1 -yes,i guess,parrot,book,1 -yes,i'm going to tell you tes,parrot,book,1 -goodbye,farewell,original,bye,2 -no,naw,parrot,cancel,3 -greeting,how are things going?,parrot,greet,4 -yes,yep,original,book,1 -goodbye,buhbye now,lambada,bye,2 -thank_you,thanks for the update,lambada,bye,2 -cancel_reservation,i want to cancel my reservation for 5 at red robin,original,cancel,3 -yes,i'm going to tell you tes,parrot,book,1 -greeting,how is ai feeling?,parrot,greet,4 -how_busy,what time do you expect to wait for a table in chili's?,parrot,avail,0 -calendar,do i have anything scheduled on my calendar for tuesday?,lambada,avail,0 -thank_you,thanks,original,bye,2 -no,not happening,original,cancel,3 -greeting,"wake up, ai",original,greet,4 -yes,not false,parrot,book,1 -yes,that's right,original,book,1 -thank_you,appreciated,original,bye,2 -no,i don't think that's true,lambada,cancel,3 -no,"no, that is wrong",original,cancel,3 -yes,indeed,original,book,1 -goodbye,sign off,parrot,bye,2 -no,negatory,original,cancel,3 -thank_you,thanks,original,bye,2 -yes,oh-huh,parrot,book,1 -yes,"yes, that's confirmed",original,book,1 -how_busy,how long does it take to eat the red lobsters?,parrot,avail,0 -yes,confirm,original,book,1 -calendar,what's on my agenda for tomorrow,original,avail,0 -goodbye,go easy,parrot,bye,2 -yes,accepted,original,book,1 -goodbye,goodbye later,parrot,bye,2 -yes,that is true,original,book,1 -no,that's incorrect,original,cancel,3 -no,nope,original,cancel,3 -greeting,"yo, hows it going",original,greet,4 -no,it seems wrong,parrot,cancel,3 -greeting,how goes it,original,greet,4 -greeting,"hey, what's up",original,greet,4 -how_busy,how long will chili wait?,parrot,avail,0 -date,what day tomorrow? what month?,parrot,avail,0 -goodbye,i must run now,parrot,bye,2 -no,nada,original,cancel,3 -greeting,"hello, friend",original,greet,4 -no,that's not correct,original,cancel,3 -date,tell me the date in six days?,parrot,avail,0 -thank_you,i appreciate what you did,original,bye,2 -goodbye,goodbye helpful ai device,parrot,bye,2 -how_busy,how long will it take to get a table at cheese cake factory?,parrot,avail,0 -greeting,how's it with you?,parrot,greet,4 -no,that's not right,original,cancel,3 -yes,approved,original,book,1 -no,erroneous,parrot,cancel,3 -no,naw,original,cancel,3 -goodbye,have a nice day?,lambada,bye,2 -cancel_reservation,please unreserve that table,original,cancel,3 -yes,yep,original,book,1 -greeting,how's it hanging,original,greet,4 -no,sure it's wrong,parrot,cancel,3 -yes,absolutely!,original,book,1 -no,that seems wrong,lambada,cancel,3 -cancel_reservation,repeal the dinner reservation,original,cancel,3 -no,that's erroneous,parrot,cancel,3 -how_busy,list the wait times for a meal at gusto?,parrot,avail,0 -no,nothing,parrot,cancel,3 -meeting_schedule,please inform me if i have any meetings today,lambada,avail,0 -goodbye,until next time,original,bye,2 -goodbye,a good conversation,parrot,bye,2 -goodbye,peace,original,bye,2 -yes,exactly right,original,book,1 -meeting_schedule,when will i meet bob?,parrot,avail,0 -reminder_update,remember for tomorrow's meeting,parrot,resched,5 -no,naw,parrot,cancel,3 -no,negatory,original,cancel,3 -goodbye,bye!,original,bye,2 -greeting,hola,original,greet,4 -no,say negative,parrot,cancel,3 -yes,good,parrot,book,1 -yes,accepted,original,book,1 -how_busy,is mcdonald's busy at 9 o'clock in the morning?,parrot,avail,0 -yes,confirmed,original,book,1 -goodbye,good-bye,parrot,bye,2 -calendar,tell me what's on my calendar for tomorrow?,parrot,avail,0 -yes,yep,original,book,1 -date,what's the date,original,avail,0 -no,that is no way,lambada,cancel,3 -no,so that's no,parrot,cancel,3 -yes,yeah,original,book,1 -reminder_update,set a reminder to listen to music on monday,lambada,resched,5 -reminder_update,add a note,parrot,resched,5 -thank_you,thank you?,parrot,bye,2 -greeting,hey there!,original,greet,4 -yes,right,parrot,book,1 -no,absolutely not,original,cancel,3 -how_busy,does the olive garden get crowded at dinner?,parrot,avail,0 -yes,let's do it,parrot,book,1 -goodbye,ai goodbye,original,bye,2 -how_busy,how long will i have to wait for a table at chili's,lambada,avail,0 -how_busy,can we expect tgi to be busy around 7?,parrot,avail,0 -goodbye,very nice conversation,parrot,bye,2 -thank_you,i wanted to thank you,parrot,bye,2 -yes,it's certainly true,parrot,book,1 -no,not at all,original,cancel,3 -thank_you,the best,parrot,bye,2 -goodbye,thank you goodbye,original,bye,2 -yes,can we please?,original,book,1 -yes,i agree,original,book,1 -no,it's very false,parrot,cancel,3 -greeting,hola!,original,greet,4 -goodbye,for now,parrot,bye,2 -greeting,hey how's life,original,greet,4 -greeting,ahoy,lambada,greet,4 -no,i'd rather not,parrot,cancel,3 -calendar_update,put a reminder on the calendar to buy a gun on march 1st,original,resched,5 -goodbye,the talk was nice,lambada,bye,2 -yes,positive,original,book,1 -goodbye,bye now,original,bye,2 -how_busy,how busy is the chili's at 6pm,lambada,avail,0 -no,negatory?,parrot,cancel,3 -cancel_reservation,please cancel my booking,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -thank_you,many thank,original,bye,2 -no,FALSE,original,cancel,3 -yes,yay,lambada,book,1 -greeting,how is idy?,parrot,greet,4 -greeting,"why, hello bandit",original,greet,4 -greeting,welcome,parrot,greet,4 -yes,facts,original,book,1 -greeting,how's ai doing?,parrot,greet,4 -reminder_update,remind me to clean up,parrot,resched,5 -yes,so it works,parrot,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -date,what do you think the date will be in 100 days?,parrot,avail,0 -reminder_update,please remind me to write my resume,parrot,resched,5 -goodbye,bye,original,bye,2 -meeting_schedule,when is homer's meeting?,parrot,avail,0 -greeting,hello ai,parrot,greet,4 -yes,yes please,original,book,1 -greeting,well hi there,original,greet,4 -cancel_reservation,cancel my dinner reservation,lambada,cancel,3 -yes,perfect,parrot,book,1 -goodbye,great chat goodbye,lambada,bye,2 -calendar,please see my calendar,parrot,avail,0 -yes,facts,original,book,1 -thank_you,you helped,parrot,bye,2 -greeting,"hello, hello, hello",lambada,greet,4 -goodbye,my way,parrot,bye,2 -greeting,yo,original,greet,4 -goodbye,goodbye soon,lambada,bye,2 -greeting,aho,parrot,greet,4 -yes,accept,parrot,book,1 -reminder_update,add a reminder,lambada,resched,5 -thank_you,appreciated,original,bye,2 -reminder_update,at 4 pm tomorrow remind me to start the oven,parrot,resched,5 -how_busy,how busy is a typical pizza restaurant at 12pm,parrot,avail,0 -yes,uh-huh,original,book,1 -thank_you,thanks again!,original,bye,2 -how_busy,how long will i have to wait for a table at olive garden,lambada,avail,0 -thank_you,you helped me i'm happy,parrot,bye,2 -yes,a fact,parrot,book,1 -no,no,lambada,cancel,3 -greeting,how's everything?,parrot,greet,4 -greeting,heyo,original,greet,4 -yes,positive,original,book,1 -greeting,what's my feeling today?,parrot,greet,4 -how_busy,how long is the wait at mac's,lambada,avail,0 -greeting,hi,original,greet,4 -yes,absolutely!,original,book,1 -goodbye,see ya,lambada,bye,2 -greeting,hiya!,original,greet,4 -reminder_update,give the cat flea medicine,parrot,resched,5 -goodbye,thanks goodbye,parrot,bye,2 -yes,facts,original,book,1 -how_busy,can you tell me if the busy at olive garden is around 9pm?,lambada,avail,0 -date,what today?,parrot,avail,0 -no,most definitely false,parrot,cancel,3 -date,i want to know today's date,parrot,avail,0 -no,certainly false,parrot,cancel,3 -how_busy,how busy the chili will be between 11 and 2?,parrot,avail,0 -greeting,hey yai,lambada,greet,4 -greeting,salutations!,original,greet,4 -date,what today?,parrot,avail,0 -no,no good,original,cancel,3 -yes,you're right,original,book,1 -yes,all right,parrot,book,1 -goodbye,see ya later,original,bye,2 -yes,yes,original,book,1 -yes,oh-huh,parrot,book,1 -no,that's wrong,original,cancel,3 -greeting,hello there,original,greet,4 -goodbye,thanks goodbye,parrot,bye,2 -no,nope that's not true,parrot,cancel,3 -greeting,how is ife treating you?,parrot,greet,4 -greeting,heyo,original,greet,4 -greeting,how is life?,parrot,greet,4 -thank_you,thanks for cooperating,parrot,bye,2 -calendar_update,please clear my calendar for the 1st,parrot,resched,5 -thank_you,thank you again,parrot,bye,2 -goodbye,later!,original,bye,2 -yes,yes,original,book,1 -reminder_update,make a reminder to pay taxes on monday,lambada,resched,5 -no,no,lambada,cancel,3 -greeting,hola,original,greet,4 -greeting,salutations!,original,greet,4 -yes,sure,original,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -yes,correct,original,book,1 -thank_you,you did that for me,parrot,bye,2 -thank_you,very grateful,parrot,bye,2 -yes,TRUE,lambada,book,1 -how_busy,is ihop busy?,parrot,avail,0 -greeting,hi,original,greet,4 -yes,yep,original,book,1 -yes,positive,parrot,book,1 -goodbye,peace,original,bye,2 -greeting,aho,parrot,greet,4 -goodbye,fairwell?,parrot,bye,2 -yes,positive,original,book,1 -yes,that seems true,original,book,1 -yes,confirm,original,book,1 -no,naw,parrot,cancel,3 -goodbye,nice talking to you,parrot,bye,2 -goodbye,it's over,parrot,bye,2 -thank_you,thanks for answering,parrot,bye,2 -goodbye,goodbye bye,parrot,bye,2 -greeting,hiya!,original,greet,4 -greeting,how're you?,parrot,greet,4 -no,negatory,original,cancel,3 -yes,great,original,book,1 -yes,is true,parrot,book,1 -goodbye,later then,lambada,bye,2 -yes,certainly,parrot,book,1 -no,it's a negation,parrot,cancel,3 -greeting,hows life for you,lambada,greet,4 -date,what date?,parrot,avail,0 -yes,affirmative,original,book,1 -calendar_update,can you remove the cookout from my calendar for june 29th?,parrot,resched,5 -yes,yeap,original,book,1 -greeting,hello ai,parrot,greet,4 -yes,it's a yes from me,parrot,book,1 -calendar_update,please remove this event from my calendars,parrot,resched,5 -thank_you,i sincerely thank you,parrot,bye,2 -no,negating,parrot,cancel,3 -reminder_update,you should take out the trash in an hour,parrot,resched,5 -greeting,hey bs,lambada,greet,4 -goodbye,"later, goodbye",lambada,bye,2 -yes,good yes,lambada,book,1 -how_busy,is there a wait time at red lobster?,parrot,avail,0 -thank_you,and i thank you,parrot,bye,2 -greeting,aho,parrot,greet,4 -goodbye,catch you around,original,bye,2 -yes,it's positive,parrot,book,1 -date,'what is the date today',parrot,avail,0 -date,please tell me today's date,original,avail,0 -no,that's a false,lambada,cancel,3 -yes,good,parrot,book,1 -how_busy,how long will it take for this restaurant to be crowded at five?,parrot,avail,0 -calendar,when is my doctor appointment?,parrot,avail,0 -meeting_schedule,meetings today,original,avail,0 -greeting,hiya!,original,greet,4 -greeting,hiya,original,greet,4 -greeting,is everything going okay?,original,greet,4 -goodbye,take a rest,parrot,bye,2 -no,FALSE,original,cancel,3 -yes,accept,parrot,book,1 -calendar_update,delete birthday party on friday from my calendar,parrot,resched,5 -date,what today?,parrot,avail,0 -date,what's my date tomorrow?,parrot,avail,0 -cancel_reservation,i'm not going to need the reservation,parrot,cancel,3 -yes,uh-huh,original,book,1 -thank_you,thanks again!,original,bye,2 -goodbye,on the highway,parrot,bye,2 -thank_you,thank you!,original,bye,2 -yes,good,parrot,book,1 -goodbye,later good luck,parrot,bye,2 -yes,that's right,original,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -goodbye,adios,original,bye,2 -date,what the day?,parrot,avail,0 -thank_you,your assistance is appreciated,parrot,bye,2 -goodbye,this conversation was great,parrot,bye,2 -yes,my response is correct,parrot,book,1 -meeting_schedule,how many meetings am i going to have today between noon and one,lambada,avail,0 -goodbye,good night,original,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -greeting,hows it going,lambada,greet,4 -thank_you,thanks!,original,bye,2 -how_busy,tell me the wait for a seat at the cheese cake factory?,parrot,avail,0 -date,is today monday?,original,avail,0 -no,nope,original,cancel,3 -no,negative certainly,parrot,cancel,3 -goodbye,goodbye no problem,parrot,bye,2 -greeting,hiya!,original,greet,4 -thank_you,thank you for the response,lambada,bye,2 -meeting_schedule,how do i know i'm talking about a meeting,parrot,avail,0 -no,"please, no",original,cancel,3 -cancel_reservation,how do you cancel a reservation?,parrot,cancel,3 -date,in 7 days?,parrot,avail,0 -no,naw,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -no,not happening,original,cancel,3 -goodbye,later!,original,bye,2 -goodbye,i’ll be leaving now,original,bye,2 -calendar_update,please delete an event from my calendar,parrot,resched,5 -goodbye,farewell,original,bye,2 -goodbye,until next time!,original,bye,2 -thank_you,okay thanks,original,bye,2 -calendar_update,please remove my yoga class from my calendar for march 21,parrot,resched,5 -yes,great,original,book,1 -greeting,how's my treatment?,parrot,greet,4 -date,what date will it be in 10 days?,parrot,avail,0 -greeting,hey,original,greet,4 -how_busy,ihop around 10 pm,parrot,avail,0 -date,date tomorrow,parrot,avail,0 -greeting,what i feel?,parrot,greet,4 -goodbye,ai goodbye,original,bye,2 -greeting,salutations,parrot,greet,4 -calendar,have you added an event to my calendar for april 1st 2019?,parrot,avail,0 -goodbye,goodbye bye,parrot,bye,2 -greeting,how is ife treating you?,parrot,greet,4 -reminder_update,remind me,original,resched,5 -greeting,salutation,parrot,greet,4 -yes,"yeah, that's true",lambada,book,1 -no,negating,parrot,cancel,3 -date,what day?,parrot,avail,0 -greeting,hello what's up?,parrot,greet,4 -yes,positive,parrot,book,1 -yes,10-Apr,original,book,1 -yes,indeed,original,book,1 -thank_you,my gratitude,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -yes,yes i know it's true,lambada,book,1 -yes,agreed,original,book,1 -yes,affirmative,original,book,1 -yes,great,original,book,1 -cancel_reservation,cancel the reservation i made for 8 pm at black rock,original,cancel,3 -yes,right,parrot,book,1 -no,i mean no,parrot,cancel,3 -how_busy,how long will it take to sit in ihop?,parrot,avail,0 -thank_you,"nice, excellent!",original,bye,2 -thank_you,i appeciate it,parrot,bye,2 -no,it's a negation,parrot,cancel,3 -yes,definitely,original,book,1 -goodbye,goodbye ai,parrot,bye,2 -goodbye,later!,original,bye,2 -yes,that is really true,lambada,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -yes,confirm,original,book,1 -greeting,heller,original,greet,4 -no,absolutely not,original,cancel,3 -no,but that's not really the case,parrot,cancel,3 -yes,positive,original,book,1 -cancel_reservation,the reservation i made isn't needed anymore,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -schedule_meeting,are meeting rooms open between 10 and 11 o'clock in the morning?,parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,how ya doin,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,hows it going,lambada,greet,4 -thank_you,you did it,parrot,bye,2 -yes,yeah,original,book,1 -no,"no, that is inaccurate",original,cancel,3 -thank_you,i'm thankful,original,bye,2 -no,no good,original,cancel,3 -yes,correct,original,book,1 -schedule_meeting,can you book a meeting with kristen?,parrot,book,1 -calendar_update,please delete my anniversary party from my calendar,parrot,resched,5 -reminder_update,give me a reminder,parrot,resched,5 -date,current day,parrot,avail,0 -no,FALSE,original,cancel,3 -goodbye,tootles,original,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -how_busy,what hours of use do you have at a restaurant?,parrot,avail,0 -schedule_meeting,are there any rooms available between 11 and 12?,parrot,book,1 -greeting,salutations!,original,greet,4 -no,the negator,parrot,cancel,3 -date,describe the day?,parrot,avail,0 -yes,10-Apr,original,book,1 -how_busy,how long should i wait at the cheesecake factory before getting seated,parrot,avail,0 -yes,that's a yes,original,book,1 -goodbye,goodbye bye,parrot,bye,2 -yes,"yes, please",original,book,1 -date,describe the day?,parrot,avail,0 -how_busy,how long will i need to wait before i can get into red robin,lambada,avail,0 -reminder_update,i need to remember to order cookies,parrot,resched,5 -no,negative,original,cancel,3 -no,don't like that,parrot,cancel,3 -schedule_meeting,it must be set up for 6pm on friday,parrot,book,1 -goodbye,farewell to you,lambada,bye,2 -how_busy,how long will the restaurant be before the lunch,parrot,avail,0 -no,nothing,parrot,cancel,3 -greeting,hello siri,original,greet,4 -thank_you,thanks for responding,parrot,bye,2 -goodbye,bye for now,original,bye,2 -greeting,hey it's up,lambada,greet,4 -greeting,yo,original,greet,4 -yes,oh-huh,parrot,book,1 -yes,thats right,original,book,1 -goodbye,adios,original,bye,2 -yes,affirmative,original,book,1 -no,no!,original,cancel,3 -yes,sure thing,original,book,1 -date,what's the date tomorrow please,parrot,avail,0 -thank_you,okay thanks,original,bye,2 -date,current date,original,avail,0 -goodbye,i must say goodbye,original,bye,2 -thank_you,thanks again,original,bye,2 -yes,let's do that,parrot,book,1 -date,is it monday?,parrot,avail,0 -thank_you,i appreciate your time,lambada,bye,2 -greeting,hey hey!,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -yes,okay,original,book,1 -how_busy,how many people will wait in orange sauce at 7 pm?,parrot,avail,0 -calendar,what have i got planned for the date of april 23?,original,avail,0 -how_busy,is the restaurant usually crowded at 8pm?,parrot,avail,0 -greeting,hey,original,greet,4 -yes,right,parrot,book,1 -date,please tell me the current date,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -goodbye,good seeing you,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,much obliged,original,bye,2 -goodbye,cya later,original,bye,2 -goodbye,bye-bye,original,bye,2 -goodbye,tootles,original,bye,2 -yes,definitely,original,book,1 -thank_you,merci beaucoup,original,bye,2 -how_busy,how long will the wait be in this restaurant,parrot,avail,0 -calendar,tell me what's on my calendar for tomorrow,parrot,avail,0 -thank_you,you are grateful for my support,parrot,bye,2 -no,ill pass,original,cancel,3 -yes,"yes, please",parrot,book,1 -reminder_update,remind me,original,resched,5 -greeting,you good?,parrot,greet,4 -yes,ya,original,book,1 -date,what's today,original,avail,0 -greeting,what is new?,parrot,greet,4 -goodbye,tootles?,parrot,bye,2 -goodbye,just relax,parrot,bye,2 -date,date please,original,avail,0 -thank_you,"awesome, thanks",original,bye,2 -no,it seems not,original,cancel,3 -goodbye,on the road,parrot,bye,2 -calendar_update,i need a clear calendar for april 15,original,resched,5 -goodbye,thank you goodbye,original,bye,2 -date,current date,original,avail,0 -cancel_reservation,get a salad off,parrot,cancel,3 -yes,correct,original,book,1 -date,date tomorrow?,parrot,avail,0 -yes,right,parrot,book,1 -yes,"yeah, that's it",lambada,book,1 -how_busy,what is the wait like right now?,lambada,avail,0 -goodbye,i enjoy our chat,lambada,bye,2 -no,negatory?,parrot,cancel,3 -reminder_update,remind me,original,resched,5 -date,please let me know the date for tomorrow,parrot,avail,0 -thank_you,thank a bunch,original,bye,2 -calendar_update,clear my calendar for the 6th of february,parrot,resched,5 -calendar,what is the date on my calendar that i have to pay for my surgery?,lambada,avail,0 -greeting,salutations,parrot,greet,4 -how_busy,how busy is the cheese cake factory at 7am,lambada,avail,0 -thank_you,thanks for coming by,lambada,bye,2 -no,that's a negatory,original,cancel,3 -reminder_update,create a reminder please,parrot,resched,5 -no,i disagree,parrot,cancel,3 -reminder_update,are you able to remind me?,parrot,resched,5 -yes,agreed,original,book,1 -greeting,how's otc?,parrot,greet,4 -greeting,ahoy there,lambada,greet,4 -date,"what's the date tomorrow, please",original,avail,0 -how_busy,how long can i wait at the cheese cake factory?,parrot,avail,0 -no,"no, don't do that",original,cancel,3 -yes,great,original,book,1 -meeting_schedule,meetings today,original,avail,0 -goodbye,later good luck,parrot,bye,2 -greeting,hola,original,greet,4 -thank_you,thanks very much,parrot,bye,2 -no,naw,original,cancel,3 -cancel_reservation,i must cancel my reservation for barry at red robin,parrot,cancel,3 -no,not good,parrot,cancel,3 -yes,that checks out,original,book,1 -goodbye,goodbye bye,parrot,bye,2 -no,i'm saying no,parrot,cancel,3 -date,in 7 days?,parrot,avail,0 -no,no way,original,cancel,3 -schedule_meeting,make a meeting room for 9am on friday,parrot,book,1 -greeting,yo,original,greet,4 -calendar,is there anything on my calendar for tuesday?,parrot,avail,0 -thank_you,i'm glad you met,parrot,bye,2 -yes,all right,original,book,1 -goodbye,goodbyes,parrot,bye,2 -how_busy,is the olive garden busy around 6 pm?,parrot,avail,0 -how_busy,what time is reserved for me at this restaurant?,parrot,avail,0 -reminder_update,"new reminder, please",original,resched,5 -no,certainly false,parrot,cancel,3 -no,no?,parrot,cancel,3 -yes,definitely,original,book,1 -thank_you,nice,parrot,bye,2 -thank_you,so much easier with you around,parrot,bye,2 -yes,yup,original,book,1 -goodbye,farewell,original,bye,2 -date,what's today's date,original,avail,0 -goodbye,goodbye now,parrot,bye,2 -yes,i say yes,lambada,book,1 -greeting,i want to know what you feel,parrot,greet,4 -how_busy,how long is the wait for a table at red lobster,lambada,avail,0 -schedule_meeting,i need a meeting scheduled,parrot,book,1 -yes,ya,original,book,1 -no,no thanks,original,cancel,3 -thank_you,wish you were here sooner,parrot,bye,2 -yes,affirmitive,original,book,1 -how_busy,can you tell me how busy mr joes is at 8pm?,parrot,avail,0 -how_busy,how busy is the cheesecake factory?,parrot,avail,0 -how_busy,how long will i have to wait for red lobster?,parrot,avail,0 -goodbye,buhbye now,lambada,bye,2 -yes,i vote yes,original,book,1 -yes,uh-huh,original,book,1 -greeting,hi,original,greet,4 -no,it'd be awful,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -greeting,good day,original,greet,4 -greeting,how's otc?,parrot,greet,4 -no,no!,original,cancel,3 -goodbye,thanks for chatting with me,lambada,bye,2 -no,definitely not,original,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,that is wrong,original,cancel,3 -goodbye,thanks for chatting,lambada,bye,2 -goodbye,i'm out,parrot,bye,2 -goodbye,buhbye,original,bye,2 -goodbye,it's time to run,parrot,bye,2 -calendar_update,clear my calendar for september 6,parrot,resched,5 -goodbye,peace,original,bye,2 -thank_you,okay thank you,parrot,bye,2 -goodbye,regards,original,bye,2 -yes,yes,original,book,1 -yes,obviously,parrot,book,1 -how_busy,can you tell me how long will there be wait in order to get a table at red lobster?,lambada,avail,0 -yes,obviously,parrot,book,1 -greeting,hey what's up?,parrot,greet,4 -yes,confirmed,original,book,1 -reminder_update,may i be reminded?,parrot,resched,5 -yes,yep,original,book,1 -yes,uh huh,original,book,1 -greeting,salutations!,original,greet,4 -thank_you,thanks,original,bye,2 -no,nada,original,cancel,3 -meeting_schedule,are there meetings between 5 and 6pm today?,parrot,avail,0 -greeting,"hello, ai",original,greet,4 -yes,TRUE,lambada,book,1 -thank_you,appreciated,original,bye,2 -cancel_reservation,i booked chris at tony's please cancel it,parrot,cancel,3 -yes,ya,original,book,1 -reminder_update,how about a reminder,original,resched,5 -yes,absolutely,original,book,1 -goodbye,thanks bye bye!,original,bye,2 -how_busy,how long will i be seated at red lobster at 6,lambada,avail,0 -thank_you,"great, thanks!",original,bye,2 -yes,yeap,original,book,1 -yes,you got it,parrot,book,1 -no,no!,original,cancel,3 -thank_you,appreciate the help,original,bye,2 -meeting_schedule,when does i meet richard?,parrot,avail,0 -greeting,how you are,original,greet,4 -yes,great,original,book,1 -yes,yes,original,book,1 -no,the statement is totally false,parrot,cancel,3 -yes,agreed,original,book,1 -thank_you,and i thank you,parrot,bye,2 -how_busy,tell me if this restaurant is busy at 6 pm?,lambada,avail,0 -yes,huh,parrot,book,1 -reminder_update,create a reminder,original,resched,5 -goodbye,"thanks, bye",original,bye,2 -no,FALSE,original,cancel,3 -meeting_schedule,do i have any meetings with suzan today?,lambada,avail,0 -cancel_reservation,"i need to cancel my reservation after all, please",original,cancel,3 -yes,say positive,parrot,book,1 -thank_you,you've been great,parrot,bye,2 -yes,all right,original,book,1 -yes,of course,original,book,1 -goodbye,later!,original,bye,2 -goodbye,it's nice to talk again,parrot,bye,2 -no,so that's no,parrot,cancel,3 -no,"nope, that's false",original,cancel,3 -no,that's absolutely wrong,parrot,cancel,3 -goodbye,tootles,original,bye,2 -greeting,hey hey!,original,greet,4 -yes,perfect,parrot,book,1 -yes,roger that,original,book,1 -thank_you,thanks a million,original,bye,2 -thank_you,i sincerely thank you,parrot,bye,2 -thank_you,why thank you?,original,bye,2 -yes,yes that's right,lambada,book,1 -how_busy,how busy is pizzeria around 6pm,lambada,avail,0 -date,and what's the day?,parrot,avail,0 -yes,TRUE,original,book,1 -calendar_update,remove my teeth from my schedule,lambada,resched,5 -thank_you,gracias,original,bye,2 -thank_you,i am thankful,lambada,bye,2 -thank_you,the best,parrot,bye,2 -greeting,aloha,original,greet,4 -goodbye,i'm glad we can talk again,parrot,bye,2 -thank_you,i owe you one!,original,bye,2 -goodbye,greetings,parrot,bye,2 -how_busy,is it possible to tell you how busy the restaurant is at 6pm?,parrot,avail,0 -meeting_schedule,meetings today,original,avail,0 -goodbye,fairwell?,parrot,bye,2 -calendar,can you tell me what's on the list?,parrot,avail,0 -date,where's the date tomorrow?,parrot,avail,0 -thank_you,the best,parrot,bye,2 -no,no no thanks,parrot,cancel,3 -goodbye,the talk was nice,lambada,bye,2 -greeting,salutation,parrot,greet,4 -goodbye,buhbye,original,bye,2 -reminder_update,can you remind me?,parrot,resched,5 -yes,obviously,parrot,book,1 -goodbye,goodbye bye,parrot,bye,2 -how_busy,has the wait been long at orange blossoms?,lambada,avail,0 -goodbye,bye!,original,bye,2 -cancel_reservation,i'd like to cancel the party of 7 we reserved in the olive garden,parrot,cancel,3 -greeting,"hello, what's up",original,greet,4 -yes,yeap,original,book,1 -greeting,what's new,lambada,greet,4 -no,it's not true,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -yes,my answer is yes,parrot,book,1 -date,give me tomorrow's date please,original,avail,0 -no,nope,original,cancel,3 -meeting_schedule,what's on my schedule?,parrot,avail,0 -how_busy,how busy is iman at 7,lambada,avail,0 -thank_you,thanks again,original,bye,2 -yes,it's positive,parrot,book,1 -reminder_update,set a reminder to call my mom,original,resched,5 -yes,that's absolutely true,parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,naw,parrot,cancel,3 -calendar,check calendar for events,lambada,avail,0 -how_busy,how busy is the olive garden at 6pm?,parrot,avail,0 -yes,okay,original,book,1 -no,that's not the way,parrot,cancel,3 -yes,positive,original,book,1 -yes,i think you are right,parrot,book,1 -no,that is sooo bad,lambada,cancel,3 -yes,all right,parrot,book,1 -greeting,hiya!,original,greet,4 -calendar_update,"on the 22nd of this month, we need to clear our calendar so we can leave it open for mark to visit",original,resched,5 -no,nada,original,cancel,3 -goodbye,later gator!,original,bye,2 -goodbye,ok good chatting goodbye,original,bye,2 -thank_you,you've given me it,parrot,bye,2 -goodbye,tootles,original,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -goodbye,have a nice day?,lambada,bye,2 -yes,huh,parrot,book,1 -greeting,ahoy,lambada,greet,4 -yes,definitely yes,parrot,book,1 -no,that's incorrect,original,cancel,3 -goodbye,", goodbye",lambada,bye,2 -goodbye,i'll have to go,parrot,bye,2 -thank_you,"great, thanks!",original,bye,2 -date,i have to know the date,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,later thanks for talking,parrot,bye,2 -thank_you,gracias,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -thank_you,you helped,parrot,bye,2 -no,nada,original,cancel,3 -no,negatory,original,cancel,3 -goodbye,bye bye,lambada,bye,2 -yes,exactly right,original,book,1 -date,today?,parrot,avail,0 -no,no that's not it,parrot,cancel,3 -greeting,how's the situation?,parrot,greet,4 -date,what the day?,parrot,avail,0 -how_busy,what's the waiting period for a meal at california pizza?,parrot,avail,0 -reminder_update,remember to write later,parrot,resched,5 -goodbye,send a goodbye,lambada,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -yes,facts,original,book,1 -yes,TRUE,original,book,1 -greeting,salutations,parrot,greet,4 -greeting,so how's it going?,parrot,greet,4 -date,i need a date,parrot,avail,0 -how_busy,tell me how busy the red rooster is at 8pm?,parrot,avail,0 -greeting,how is everything?,parrot,greet,4 -date,what's the day now??,parrot,avail,0 -how_busy,how long will i have to wait to be seated at this restaurant,lambada,avail,0 -no,nope not it,original,cancel,3 -yes,absolutely correct,original,book,1 -yes,accepted,original,book,1 -thank_you,thank you for the time,parrot,bye,2 -thank_you,thanks a million,original,bye,2 -yes,is a real statement,parrot,book,1 -greeting,hi how's my life?,parrot,greet,4 -yes,it seems true,parrot,book,1 -thank_you,gracias,original,bye,2 -yes,definitely yes,parrot,book,1 -goodbye,cya later,original,bye,2 -no,the answer is false,original,cancel,3 -yes,great,original,book,1 -no,nothing,parrot,cancel,3 -how_busy,how long does it take to sit in this steakhouse?,parrot,avail,0 -greeting,"hello, how are things",original,greet,4 -yes,huh,parrot,book,1 -yes,yeap,original,book,1 -no,i believe it's wrong,parrot,cancel,3 -date,a year?,parrot,avail,0 -yes,10-Apr,original,book,1 -greeting,hey how's my day?,parrot,greet,4 -thank_you,thanks a lot,original,bye,2 -yes,positive,parrot,book,1 -no,negatory,original,cancel,3 -no,nay,original,cancel,3 -greeting,aloha,original,greet,4 -greeting,aho,parrot,greet,4 -date,what day it today?,original,avail,0 -meeting_schedule,are there meetings between 1 and 8 o'clock?,parrot,avail,0 -no,negatory,original,cancel,3 -yes,so it works,parrot,book,1 -reminder_update,make a reminder of the gas bill,parrot,resched,5 -goodbye,i'm gone,parrot,bye,2 -yes,that's correct,original,book,1 -greeting,hello,original,greet,4 -no,it's no,parrot,cancel,3 -schedule_meeting,book a meeting room for thursday at 3pm,lambada,book,1 -goodbye,later!,original,bye,2 -goodbye,adios!,original,bye,2 -no,no!,original,cancel,3 -meeting_schedule,how many meetings do i have scheduled between 10 and 3?,parrot,avail,0 -goodbye,i’m leaving-goodbye!,original,bye,2 -how_busy,what is the wait at jalapeno ranch?,lambada,avail,0 -goodbye,but now i'm leaving,parrot,bye,2 -no,negating,parrot,cancel,3 -yes,yup,original,book,1 -yes,thats right,original,book,1 -reminder_update,remind me to put the trash in the can,parrot,resched,5 -how_busy,is the wait at cheese cake factory long?,lambada,avail,0 -goodbye,it's over,parrot,bye,2 -meeting_schedule,when is my meeting with john scheduled for?,lambada,avail,0 -greeting,hey yai,lambada,greet,4 -yes,"yes, please",parrot,book,1 -date,what date?,parrot,avail,0 -calendar,what's tuesday's calendar?,parrot,avail,0 -no,it's a false,lambada,cancel,3 -no,that's negative,parrot,cancel,3 -cancel_reservation,can i cancel my reservation?,lambada,cancel,3 -how_busy,what is the expected wait time for a table at olive garden at 6pm?,parrot,avail,0 -greeting,hey how ya been,lambada,greet,4 -goodbye,tootles?,parrot,bye,2 -thank_you,"oh, thanks",original,bye,2 -yes,confirmed,original,book,1 -date,what today?,parrot,avail,0 -schedule_meeting,a meeting must be scheduled and i need to know how,parrot,book,1 -how_busy,is there a rise in the number of people expected to visit the restaurant when i go?,parrot,avail,0 -schedule_meeting,make an appointment with carrie and lisa,parrot,book,1 -no,no that's wrong,original,cancel,3 -greeting,tell me about my neighborhood,parrot,greet,4 -goodbye,until next time!,original,bye,2 -meeting_schedule,please list my meetings for today from 8 am to 2 pm,parrot,avail,0 -goodbye,sayonara,original,bye,2 -yes,positive,original,book,1 -how_busy,how busy is orchids at 7,original,avail,0 -meeting_schedule,is there a meeting with my boss today?,parrot,avail,0 -yes,uh huh,original,book,1 -goodbye,tootles?,parrot,bye,2 -how_busy,how busy will oompa looma be at lunch,parrot,avail,0 -goodbye,have to go,parrot,bye,2 -goodbye,say goodbye,parrot,bye,2 -schedule_meeting,are there meeting rooms open between 10 and 11 am?,lambada,book,1 -greeting,hi how's my life?,parrot,greet,4 -how_busy,how long will the restaurant be before lunch,lambada,avail,0 -no,you're not right,parrot,cancel,3 -goodbye,goodbye later,parrot,bye,2 -calendar,tell me what's going on march 22?,parrot,avail,0 -how_busy,how busy will red robin be at 5 o'clock in the evening,parrot,avail,0 -yes,it is true yes,parrot,book,1 -goodbye,regards,original,bye,2 -thank_you,okay thanks,original,bye,2 -meeting_schedule,when's my meeting with john?,parrot,avail,0 -date,what will it be in two days?,parrot,avail,0 -thank_you,"nice, excellent!",original,bye,2 -thank_you,thanks!,original,bye,2 -goodbye,peace,original,bye,2 -yes,say yes,lambada,book,1 -reminder_update,remember to call tomorrow,parrot,resched,5 -how_busy,how long will it take to get a table at the red lobster,parrot,avail,0 -yes,yes sir,original,book,1 -reminder_update,i don't want to forget to call my mother,parrot,resched,5 -yes,it is true,original,book,1 -greeting,hiya!,original,greet,4 -yes,sure,original,book,1 -goodbye,later!,original,bye,2 -no,and i'm sorry,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -goodbye,good chatting with you,lambada,bye,2 -greeting,good day,original,greet,4 -greeting,hello,original,greet,4 -how_busy,what time will it take to sit on the macaroni grill?,parrot,avail,0 -no,negative,original,cancel,3 -goodbye,tootles,original,bye,2 -thank_you,i am thankful,lambada,bye,2 -yes,TRUE,original,book,1 -yes,exactly right,original,book,1 -calendar,see my calendar for events,parrot,avail,0 -cancel_reservation,can you cancel my reservation for winters in the palace tonight,parrot,cancel,3 -greeting,hey how have you been?,parrot,greet,4 -thank_you,thank ya!,original,bye,2 -no,naw,parrot,cancel,3 -yes,seems true,parrot,book,1 -goodbye,goodnight,original,bye,2 -goodbye,just relax,parrot,bye,2 -cancel_reservation,my dinner reservation needs to be cancelled,parrot,cancel,3 -thank_you,good job thanks,parrot,bye,2 -thank_you,it pleased me,parrot,bye,2 -greeting,do you feel?,parrot,greet,4 -yes,obviously,parrot,book,1 -date,in 14 days?,parrot,avail,0 -goodbye,i'll leave,parrot,bye,2 -no,naw,original,cancel,3 -meeting_schedule,when will i meet loren today?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -greeting,"hello, how's my day",original,greet,4 -yes,absolutely,original,book,1 -yes,yeah yeah,lambada,book,1 -no,there is no,parrot,cancel,3 -no,it's very wrong,parrot,cancel,3 -reminder_update,please remember to pay my mortgage,parrot,resched,5 -schedule_meeting,can you sign me up for a meeting in the blue room at 8am?,parrot,book,1 -no,no?,parrot,cancel,3 -yes,all right,parrot,book,1 -greeting,ahoy,lambada,greet,4 -greeting,hello good day,parrot,greet,4 -greeting,heller,original,greet,4 -calendar_update,i need to put my dentist appointment on the calendar for tomorrow,parrot,resched,5 -yes,"yes, you got it",original,book,1 -goodbye,regards,original,bye,2 -greeting,bonjour,original,greet,4 -yes,very true,original,book,1 -greeting,hey hey!,original,greet,4 -greeting,why hello?,original,greet,4 -yes,it's definitely positive,parrot,book,1 -yes,huh,parrot,book,1 -no,it's not the right answer,parrot,cancel,3 -yes,absolutely!,original,book,1 -thank_you,the best,parrot,bye,2 -yes,that's correct,original,book,1 -yes,i want to be true,parrot,book,1 -reminder_update,i'd like a reminder,parrot,resched,5 -reminder_update,set a reminder for meeting time at 2 pm,parrot,resched,5 -yes,the truth is true,lambada,book,1 -greeting,how you're treated?,parrot,greet,4 -goodbye,it was great talking to you,original,bye,2 -yes,you are yes,lambada,book,1 -no,negatory?,parrot,cancel,3 -goodbye,later!,original,bye,2 -yes,huh,parrot,book,1 -yes,it appears true,parrot,book,1 -how_busy,how long would it take to get seated at applebee?,parrot,avail,0 -yes,positive,original,book,1 -yes,it's true yes,parrot,book,1 -no,not true,original,cancel,3 -yes,"yeah, that is true",lambada,book,1 -greeting,hey there!,original,greet,4 -how_busy,how long will i wait in the olive garden?,parrot,avail,0 -cancel_reservation,you can cancel my lunch reservation,parrot,cancel,3 -goodbye,see ya!,original,bye,2 -greeting,how it goes my friend?,parrot,greet,4 -yes,approved,original,book,1 -thank_you,thanks for that!,original,bye,2 -greeting,"hi, ai",original,greet,4 -no,FALSE,lambada,cancel,3 -thank_you,nice,parrot,bye,2 -goodbye,later,original,bye,2 -reminder_update,the cat needs neutering,parrot,resched,5 -thank_you,you've been amazing,lambada,bye,2 -no,most definitely false,parrot,cancel,3 -yes,okay,original,book,1 -meeting_schedule,are there meetings between 6 and 9 pm?,parrot,avail,0 -greeting,hey how's ot,lambada,greet,4 -greeting,aho,parrot,greet,4 -how_busy,would i be forced to wait long to eat at chili's?,parrot,avail,0 -how_busy,how long will the wait at olive garden be at 6?,parrot,avail,0 -goodbye,bye,original,bye,2 -reminder_update,maybe a reminder?,parrot,resched,5 -cancel_reservation,can you cancel my reservation at the red robin?,lambada,cancel,3 -no,certainly false,parrot,cancel,3 -greeting,hola,original,greet,4 -greeting,bonjour,original,greet,4 -thank_you,merci beaucoup,original,bye,2 -date,tell me what the date is,parrot,avail,0 -thank_you,your assistance is appreciated,parrot,bye,2 -date,what is the day?,original,avail,0 -goodbye,cya later,original,bye,2 -greeting,heller,original,greet,4 -thank_you,you've been amazing,lambada,bye,2 -greeting,hola,original,greet,4 -goodbye,greetings,parrot,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -thank_you,thank you please,parrot,bye,2 -yes,that's a yes,original,book,1 -calendar,list the events on my calendar for march 6?,parrot,avail,0 -no,is a lie?,parrot,cancel,3 -yes,my response is correct,parrot,book,1 -goodbye,later!,original,bye,2 -meeting_schedule,the meetings today,parrot,avail,0 -goodbye,be careful then,lambada,bye,2 -goodbye,bye,original,bye,2 -no,not right now,original,cancel,3 -yes,yes that's right,lambada,book,1 -greeting,how's ai feeling?,parrot,greet,4 -thank_you,i owe you,parrot,bye,2 -yes,okay,original,book,1 -thank_you,thanks for responding,parrot,bye,2 -no,that's incorrect!,original,cancel,3 -cancel_reservation,is it possible to cancel my booking?,parrot,cancel,3 -goodbye,peace,original,bye,2 -yes,indeed,original,book,1 -date,what today?,parrot,avail,0 -goodbye,"thanks, bye",original,bye,2 -greeting,welcome,parrot,greet,4 -goodbye,go easy,parrot,bye,2 -goodbye,sayonara ,parrot,bye,2 -no,nope not it,original,cancel,3 -yes,correct,original,book,1 -yes,of course,original,book,1 -greeting,what's happening,original,greet,4 -how_busy,is ihop busy around 815 o'clock?,parrot,avail,0 -reminder_update,please remind me of my bills,parrot,resched,5 -goodbye,peace,original,bye,2 -yes,confirm,original,book,1 -greeting,yo,original,greet,4 -yes,i'm going to tell you tes,parrot,book,1 -goodbye,goodbye,original,bye,2 -no,that's totally wrong!,original,cancel,3 -date,please date,parrot,avail,0 -no,that's wrong,original,cancel,3 -greeting,how's ai feeling?,parrot,greet,4 -yes,TRUE,original,book,1 -greeting,ahoy,lambada,greet,4 -meeting_schedule,are there any meetings booked today?,parrot,avail,0 -date,which date today?,parrot,avail,0 -yes,yeah,original,book,1 -yes,let's do that,parrot,book,1 -calendar,give me an overview of what march 23 will be like for me?,parrot,avail,0 -goodbye,goodbye later,parrot,bye,2 -thank_you,appreciate the help,original,bye,2 -goodbye,adios,original,bye,2 -no,i'm sorry it's not happening,parrot,cancel,3 -greeting,aho,parrot,greet,4 -goodbye,tootles?,parrot,bye,2 -greeting,heyo,original,greet,4 -thank_you,so grateful,parrot,bye,2 -goodbye,later!,original,bye,2 -yes,affirmitive,original,book,1 -goodbye,"later, goodbye",lambada,bye,2 -yes,indeed,parrot,book,1 -goodbye,i’m leaving-goodbye!,original,bye,2 -greeting,"hello, friend",original,greet,4 -yes,"yes, please",parrot,book,1 -thank_you,much obliged,original,bye,2 -goodbye,farewell,original,bye,2 -goodbye,see ya,lambada,bye,2 -yes,ya,original,book,1 -how_busy,sage's busy at noon?,parrot,avail,0 -goodbye,go easy,parrot,bye,2 -goodbye,later!,original,bye,2 -no,invalid,original,cancel,3 -how_busy,is ihop busy?,parrot,avail,0 -no,FALSE,original,cancel,3 -thank_you,for that thank you,parrot,bye,2 -reminder_update,remember to write later,parrot,resched,5 -date,tell me the current date?,parrot,avail,0 -no,nope not it,original,cancel,3 -greeting,aho,parrot,greet,4 -yes,it's positive,parrot,book,1 -how_busy,is michel busy at three?,parrot,avail,0 -no,not right,parrot,cancel,3 -yes,absolutely!,original,book,1 -date,date tomorrow,parrot,avail,0 -calendar,show me the calendar?,parrot,avail,0 -greeting,how are you feeling today?,parrot,greet,4 -thank_you,thanks for helping,original,bye,2 -goodbye,bye bye,lambada,bye,2 -greeting,wake up ai,parrot,greet,4 -goodbye,i need to go,lambada,bye,2 -yes,yes it's true,lambada,book,1 -no,that is no,lambada,cancel,3 -greeting,how is it going,original,greet,4 -date,what's the date of tomorrow?,parrot,avail,0 -yes,yes you are,original,book,1 -goodbye,good-bye,parrot,bye,2 -no,not that,original,cancel,3 -goodbye,i'm gone,parrot,bye,2 -no,that is untrue,original,cancel,3 -how_busy,how long will i wait to get a table at olive garden,lambada,avail,0 -greeting,hiya!,original,greet,4 -yes,"yes, please",parrot,book,1 -yes,absolutely!,original,book,1 -yes,yeap,original,book,1 -no,say negative,parrot,cancel,3 -goodbye,i'm leaving now,lambada,bye,2 -yes,that's true,original,book,1 -goodbye,good talk,parrot,bye,2 -reminder_update,set a reminder to check the car,lambada,resched,5 -goodbye,regards,original,bye,2 -no,hell nah,original,cancel,3 -yes,absolutely!,original,book,1 -goodbye,afterward,parrot,bye,2 -thank_you,i owe you a thing,parrot,bye,2 -no,negative certainly,parrot,cancel,3 -reminder_update,set up a new reminder to remind me when it's time to put the trash out,parrot,resched,5 -yes,is true,parrot,book,1 -no,no way!,original,cancel,3 -calendar,tell me what's on my calendar for march 3rd,parrot,avail,0 -yes,indeed,original,book,1 -no,negation,parrot,cancel,3 -meeting_schedule,what is in my calendar today?,parrot,avail,0 -how_busy,tell me the typical time to eat red lobster?,parrot,avail,0 -yes,good,parrot,book,1 -goodbye,i'm gone,parrot,bye,2 -greeting,you good?,parrot,greet,4 -greeting,what's happened?,parrot,greet,4 -goodbye,goodbye later,parrot,bye,2 -date,in 9 days?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -no,that's so false,parrot,cancel,3 -greeting,whats new?,parrot,greet,4 -greeting,salutations!,original,greet,4 -no,erroneous,parrot,cancel,3 -goodbye,you're done,parrot,bye,2 -thank_you,that's what i want,parrot,bye,2 -no,nope,original,cancel,3 -no,it's not necessarily true,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -reminder_update,have i forgotten?,parrot,resched,5 -yes,indeed,parrot,book,1 -greeting,hola,original,greet,4 -greeting,hi,original,greet,4 -cancel_reservation,there's no need to confirm my reservation,parrot,cancel,3 -date,please date,parrot,avail,0 -yes,a real statement,parrot,book,1 -goodbye,bye,original,bye,2 -no,negative,original,cancel,3 -meeting_schedule,did i schedule any meetings for today?,original,avail,0 -goodbye,"goodbye, helpful ai device!",original,bye,2 -goodbye,"thanks, bye",original,bye,2 -how_busy,check the wait times at olive garden right now,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -no,i'll pass,original,cancel,3 -how_busy,can you tell me how much seating is available at this restaurant?,lambada,avail,0 -thank_you,i am thankful,lambada,bye,2 -goodbye,good bye then,original,bye,2 -greeting,welcome,parrot,greet,4 -calendar_update,cancel the event on february 23,lambada,resched,5 -yes,absolutely!,original,book,1 -how_busy,how long can i wait at the restaurant,lambada,avail,0 -goodbye,adios!,original,bye,2 -calendar_update,please remove joe's wedding from my calendar,parrot,resched,5 -calendar_update,write an appointment for tomorrow on my calendar,parrot,resched,5 -goodbye,you're done,parrot,bye,2 -no,not right so,parrot,cancel,3 -yes,good,parrot,book,1 -goodbye,regards,original,bye,2 -yes,yeap,original,book,1 -yes,good,parrot,book,1 -date,how many days it will be before the next day?,parrot,avail,0 -greeting,aho,parrot,greet,4 -greeting,aloha,original,greet,4 -goodbye,"later, goodbye",lambada,bye,2 -no,FALSE,original,cancel,3 -yes,yay,lambada,book,1 -goodbye,it's time to run,parrot,bye,2 -thank_you,thanks,original,bye,2 -greeting,greetings to you,original,greet,4 -greeting,what's new,lambada,greet,4 -date,when will it be after eight days?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -yes,just right,parrot,book,1 -goodbye,bye,original,bye,2 -date,today?,parrot,avail,0 -no,that's incorrect!,original,cancel,3 -calendar,you have yo go to school on calendar,original,avail,0 -thank_you,i'm really thankful,parrot,bye,2 -greeting,aho,parrot,greet,4 -how_busy,how busy will mr joes' around 12,lambada,avail,0 -how_busy,how long is the wait at the cheese cake factory?,parrot,avail,0 -goodbye,bye,original,bye,2 -thank_you,you've been great,parrot,bye,2 -goodbye,regards,original,bye,2 -no,but that's not factual,parrot,cancel,3 -no,no thanks,original,cancel,3 -no,nope,original,cancel,3 -goodbye,please talk soon,parrot,bye,2 -greeting,what's up?,parrot,greet,4 -no,negatory,original,cancel,3 -goodbye,adios!,original,bye,2 -greeting,what's happened?,parrot,greet,4 -goodbye,nice chat today,lambada,bye,2 -no,don't like it no,parrot,cancel,3 -greeting,yo,original,greet,4 -no,i wouldn't like that,parrot,cancel,3 -greeting,you good?,parrot,greet,4 -greeting,what's happening,original,greet,4 -no,it seems wrong,parrot,cancel,3 -goodbye,bye-bye,original,bye,2 -greeting,"hello, friend",original,greet,4 -thank_you,nice,parrot,bye,2 -yes,it's logical,parrot,book,1 -date,what's today?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -date,what's today,original,avail,0 -no,"please, no",original,cancel,3 -no,no that isn't true,lambada,cancel,3 -meeting_schedule,when is my meeting with infrastructure?,original,avail,0 -no,that is no way,lambada,cancel,3 -reminder_update,i don't want to forget to call mom,original,resched,5 -goodbye,goodbyes,parrot,bye,2 -date,show me a calendar,original,avail,0 -goodbye,fairwell,original,bye,2 -yes,a real statement,parrot,book,1 -thank_you,you have my thanks,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -yes,TRUE,original,book,1 -no,nope,original,cancel,3 -goodbye,adios,original,bye,2 -date,what's the date from 200 days,lambada,avail,0 -greeting,good day,original,greet,4 -goodbye,my friend,parrot,bye,2 -goodbye,later,original,bye,2 -greeting,heyo,original,greet,4 -meeting_schedule,what's on my agenda today?,parrot,avail,0 -goodbye,ill leave now,parrot,bye,2 -goodbye,talk later,original,bye,2 -yes,uh-huh,original,book,1 -yes,confirmed,original,book,1 -yes,approved,original,book,1 -no,nope,original,cancel,3 -date,what's the month and day of tomorrow?,parrot,avail,0 -thank_you,thank you ai,parrot,bye,2 -no,but it's totally wrong,parrot,cancel,3 -no,i disagree with that,lambada,cancel,3 -thank_you,you gave me that,parrot,bye,2 -thank_you,i'm very grateful,parrot,bye,2 -greeting,hows it going,lambada,greet,4 -thank_you,again thanks,parrot,bye,2 -goodbye,have to run,parrot,bye,2 -goodbye,i'm leaving now,lambada,bye,2 -no,nay,original,cancel,3 -yes,"yes, that is accurate",original,book,1 -date,please share today's date,original,avail,0 -goodbye,i'm gone,parrot,bye,2 -greeting,hey how's my day going,parrot,greet,4 -yes,certainly,parrot,book,1 -cancel_reservation,cancel dinner reservation tonight,parrot,cancel,3 -thank_you,thanks for coming,parrot,bye,2 -date,what's today?,parrot,avail,0 -thank_you,i am thankful,lambada,bye,2 -greeting,how're you today?,parrot,greet,4 -thank_you,thanks for my cooperation,original,bye,2 -date,what day will it be in 373 days?,parrot,avail,0 -thank_you,the best,parrot,bye,2 -no,not happening,original,cancel,3 -yes,accepted,original,book,1 -no,negative,original,cancel,3 -no,negatory,original,cancel,3 -yes,that's definitely true,original,book,1 -thank_you,good job on that,lambada,bye,2 -date,what day is tomorrow?,lambada,avail,0 -goodbye,afterward,parrot,bye,2 -greeting,how is life treating you,original,greet,4 -greeting,how've you been feeling,original,greet,4 -date,what's the word for tomorrow?,parrot,avail,0 -yes,i can confirm,parrot,book,1 -cancel_reservation,can you cancel the reservation i have for dinner?,parrot,cancel,3 -no,no way!,original,cancel,3 -goodbye,i need to say goodbye,lambada,bye,2 -no,nothing,parrot,cancel,3 -greeting,how's otc?,parrot,greet,4 -how_busy,which place is the most crowded at 8pm,parrot,avail,0 -yes,that is affirmative,original,book,1 -date,date please,original,avail,0 -no,naw,original,cancel,3 -goodbye,goodbyes,parrot,bye,2 -yes,indeed,parrot,book,1 -no,negating,parrot,cancel,3 -goodbye,i'm leaving now,lambada,bye,2 -how_busy,why is the chili busy around noon?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -thank_you,good job,lambada,bye,2 -yes,so it's checked,parrot,book,1 -goodbye,afterward,parrot,bye,2 -yes,huh,parrot,book,1 -thank_you,thank ya!,original,bye,2 -goodbye,as regards,parrot,bye,2 -thank_you,i'm very grateful,parrot,bye,2 -thank_you,thanks,original,bye,2 -greeting,hello what's happening,parrot,greet,4 -thank_you,so grateful,parrot,bye,2 -no,not that,original,cancel,3 -meeting_schedule,which meetings will be in san fransico,parrot,avail,0 -no,not really,original,cancel,3 -cancel_reservation,cancell my reservation at the steakhouse,parrot,cancel,3 -yes,yes,original,book,1 -thank_you,appreciate the help,original,bye,2 -thank_you,well done,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -how_busy,how busy is chili's around 6:30 p.m.,lambada,avail,0 -how_busy,do you know how busy it is at chili's 730?,parrot,avail,0 -yes,a fact,parrot,book,1 -date,in five days?,parrot,avail,0 -no,negation,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -date,in 14 days?,parrot,avail,0 -thank_you,you gave me this,parrot,bye,2 -reminder_update,what about a reminder,parrot,resched,5 -yes,yes you are right,original,book,1 -thank_you,"awesome, thanks",original,bye,2 -no,negatory,original,cancel,3 -yes,confirm,original,book,1 -thank_you,i'm glad you helped,parrot,bye,2 -no,would be a lie,parrot,cancel,3 -goodbye,adios,original,bye,2 -thank_you,nice,parrot,bye,2 -thank_you,i'm so grateful,parrot,bye,2 -yes,obviously,parrot,book,1 -reminder_update,help me set a reminder to work out?,parrot,resched,5 -how_busy,how long will i have to wait if i want to go to the red lobster?,parrot,avail,0 -yes,my answer is yes,parrot,book,1 -goodbye,sayonara,original,bye,2 -yes,oh-huh,parrot,book,1 -yes,yes i am,original,book,1 -yes,TRUE,lambada,book,1 -yes,it's true,original,book,1 -calendar,do you have anything planned for may 3?,parrot,avail,0 -how_busy,is michel busy at 9 o'clock?,parrot,avail,0 -date,tell me what today's date is?,original,avail,0 -goodbye,no problem goodbye,parrot,bye,2 -greeting,how is idy?,parrot,greet,4 -greeting,have you been good??,parrot,greet,4 -greeting,how's life?,parrot,greet,4 -goodbye,peace,original,bye,2 -no,that isn't true,lambada,cancel,3 -goodbye,bye-bye,original,bye,2 -no,please no,parrot,cancel,3 -how_busy,how busy is imanas tei at 7 dinner,original,avail,0 -calendar,tell me what's on my calendar for march 2nd,parrot,avail,0 -goodbye,later!,original,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -yes,yay,lambada,book,1 -goodbye,goodbye now,parrot,bye,2 -greeting,welcome,parrot,greet,4 -date,what's the day now?,parrot,avail,0 -greeting,wassup,original,greet,4 -yes,okay,original,book,1 -goodbye,regards,original,bye,2 -reminder_update,can you add a reminder?,parrot,resched,5 -how_busy,what is the time in this restaurant?,parrot,avail,0 -thank_you,thanks for telling me,parrot,bye,2 -yes,right,parrot,book,1 -yes,yeah,original,book,1 -date,what date?,parrot,avail,0 -greeting,hello,original,greet,4 -how_busy,how long will i wait to get a table at mac n cheese,lambada,avail,0 -thank_you,thankyou,parrot,bye,2 -no,that's not correct,original,cancel,3 -date,how many days will it be in six days,lambada,avail,0 -goodbye,"enjoy my day, goodbye",original,bye,2 -greeting,whats up?,parrot,greet,4 -yes,yes that's it,original,book,1 -no,certainly false,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -goodbye,have a good day?,original,bye,2 -calendar,what's on my calendar for march 22?,parrot,avail,0 -no,it's a negative,parrot,cancel,3 -no,nay,original,cancel,3 -yes,yup,original,book,1 -no,that's incorrect,original,cancel,3 -no,not really,original,cancel,3 -greeting,salutation,parrot,greet,4 -how_busy,tell me the wait time at the red lobsters?,parrot,avail,0 -yes,definitely yes,parrot,book,1 -greeting,what's up,original,greet,4 -goodbye,lovely conversation,parrot,bye,2 -greeting,how's it going now?,parrot,greet,4 -greeting,good day,original,greet,4 -greeting,welcome,parrot,greet,4 -calendar,pull up my calendar and tell me what i'm planning for march 30,parrot,avail,0 -goodbye,sayonara ,parrot,bye,2 -how_busy,how busy is the restaurant for dinner?,parrot,avail,0 -greeting,aho,parrot,greet,4 -meeting_schedule,let me know when my meeting with peter is scheduled?,parrot,avail,0 -calendar_update,remove my lunch with jeff from my calendar for may 3rd,parrot,resched,5 -greeting,"good morning, ai",original,greet,4 -greeting,yo,original,greet,4 -no,is a lie?,parrot,cancel,3 -no,that's incorrect!,original,cancel,3 -how_busy,how busy is imanas?,parrot,avail,0 -how_busy,how long will i have to wait before i can eat,lambada,avail,0 -goodbye,goodbye goodbye,parrot,bye,2 -thank_you,appreciate it,original,bye,2 -greeting,hi ai,original,greet,4 -how_busy,is red lobster busy around noon?,parrot,avail,0 -yes,facts,original,book,1 -calendar,tell me what's on my calendar for the 28th march?,parrot,avail,0 -yes,obviously,parrot,book,1 -thank_you,merci beaucoup,original,bye,2 -goodbye,glad we had to talk,parrot,bye,2 -greeting,how's ayi doing?,parrot,greet,4 -calendar,show me what i have on my calendar today?,parrot,avail,0 -greeting,well hello,original,greet,4 -meeting_schedule,do you have any meetings on my calendar?,parrot,avail,0 -no,it's very wrong,parrot,cancel,3 -calendar_update,i have to add my wedding to my calendar for march 5,parrot,resched,5 -yes,sure,original,book,1 -no,that's a false statement,lambada,cancel,3 -no,that's totally wrong,parrot,cancel,3 -goodbye,be careful then,lambada,bye,2 -yes,positive,original,book,1 -how_busy,is there a waiting period for a greengrocer?,parrot,avail,0 -goodbye,just relax,parrot,bye,2 -yes,agreed,original,book,1 -greeting,hola!,original,greet,4 -meeting_schedule,will you meet ann?,parrot,avail,0 -greeting,"hey, ai",original,greet,4 -yes,10-Apr,original,book,1 -yes,it's logical,parrot,book,1 -greeting,how's it going my friend,parrot,greet,4 -calendar,what's the next day of march?,parrot,avail,0 -date,what date tomorrow?,parrot,avail,0 -no,that's not factual,parrot,cancel,3 -how_busy,check the wait time for the macaroni grill,parrot,avail,0 -greeting,nice day,lambada,greet,4 -date,in 7 days?,parrot,avail,0 -reminder_update,make a reminder,parrot,resched,5 -thank_you,you're the best!,original,bye,2 -greeting,hey there!,original,greet,4 -date,tell me the date it will be in 3 days?,lambada,avail,0 -no,the wrong answer,parrot,cancel,3 -goodbye,please talk to me,parrot,bye,2 -no,so that's no,parrot,cancel,3 -no,negative,original,cancel,3 -goodbye,later,original,bye,2 -yes,good yes,lambada,book,1 -greeting,how is the ai feeling,lambada,greet,4 -greeting,hey yai,lambada,greet,4 -greeting,have you felt?,parrot,greet,4 -no,nay,original,cancel,3 -greeting,how're you doing?,parrot,greet,4 -date,a year?,parrot,avail,0 -yes,i want to make sure that is true,lambada,book,1 -goodbye,farewell to you,lambada,bye,2 -goodbye,i'm gone,parrot,bye,2 -no,negatory?,parrot,cancel,3 -no,FALSE,original,cancel,3 -greeting,salutations!,original,greet,4 -greeting,hey,original,greet,4 -how_busy,how long will chili's wait?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -yes,TRUE,lambada,book,1 -yes,obviously,parrot,book,1 -yes,you got it,original,book,1 -goodbye,see ya,lambada,bye,2 -yes,not false,parrot,book,1 -calendar,what should i do today?,parrot,avail,0 -thank_you,your assistance is appreciated,parrot,bye,2 -goodbye,adios!,original,bye,2 -yes,certainly,parrot,book,1 -yes,yay,lambada,book,1 -yes,i can confirm,parrot,book,1 -goodbye,catch you later,original,bye,2 -yes,good yes,lambada,book,1 -goodbye,see ya,lambada,bye,2 -goodbye,lovely conversation,parrot,bye,2 -greeting,how ife treats you?,parrot,greet,4 -greeting,well hello,original,greet,4 -greeting,how's my feeling?,parrot,greet,4 -goodbye,goodbye,original,bye,2 -goodbye,later!,original,bye,2 -how_busy,how long will i wait for a table at mac n cheese,parrot,avail,0 -how_busy,how long will the wait be at the red lobsters?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -reminder_update,i need to create a reminder about paying taxes,lambada,resched,5 -meeting_schedule,wanna meet with roger?,parrot,avail,0 -cancel_reservation,i no longer need the reservation for 20 at ihop,original,cancel,3 -date,when will it be two months,parrot,avail,0 -date,what's the month and day tomorrow?,parrot,avail,0 -no,FALSE,original,cancel,3 -calendar,check my calendar,parrot,avail,0 -no,certainly false,parrot,cancel,3 -greeting,hey hey!,original,greet,4 -no,nope,original,cancel,3 -yes,seems true,parrot,book,1 -meeting_schedule,are there any meetings with stan today?,parrot,avail,0 -greeting,nice day,lambada,greet,4 -goodbye,farewell!,original,bye,2 -meeting_schedule,when will i meet bob?,parrot,avail,0 -schedule_meeting,schedule my meeting with jim at 3pm,original,book,1 -goodbye,bye bye!,original,bye,2 -reminder_update,i need to remember,parrot,resched,5 -yes,is true,parrot,book,1 -no,invalid,original,cancel,3 -thank_you,thanks for trying,original,bye,2 -yes,huh huh,parrot,book,1 -goodbye,i enjoyed talking to you later,lambada,bye,2 -greeting,what's going on,original,greet,4 -greeting,how's life,original,greet,4 -greeting,hey yai,lambada,greet,4 -thank_you,thanks,original,bye,2 -thank_you,thanks for the answer,original,bye,2 -no,negation,parrot,cancel,3 -yes,great,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,no good,original,cancel,3 -date,what day it will be in two days?,parrot,avail,0 -thank_you,thanks again!,original,bye,2 -greeting,hey,original,greet,4 -goodbye,fairwell,original,bye,2 -goodbye,bye now,original,bye,2 -meeting_schedule,is dan aware of any meetings with me today?,original,avail,0 -goodbye,it's time for goodbye,parrot,bye,2 -goodbye,"i enjoyed our talk, goodbye",original,bye,2 -how_busy,can you tell me how busy it is at 5?,lambada,avail,0 -how_busy,how long would i wait at the hamster wheel,parrot,avail,0 -goodbye,i’m leaving-goodbye!,original,bye,2 -yes,yes,original,book,1 -yes,perfect,parrot,book,1 -reminder_update,i need to pay my rent can you send me a reminder?,parrot,resched,5 -yes,that statement is true,lambada,book,1 -greeting,hello siri,original,greet,4 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -yes,ya,original,book,1 -goodbye,tootles,original,bye,2 -yes,i want to prove the truth,parrot,book,1 -yes,sure,original,book,1 -date,please explain to me what it is today?,parrot,avail,0 -date,what's the day tomorrow?,parrot,avail,0 -goodbye,bye,original,bye,2 -no,negatory?,parrot,cancel,3 -yes,say yes,lambada,book,1 -how_busy,is that olive garden busy?,parrot,avail,0 -goodbye,sign off,parrot,bye,2 -yes,uh huh,original,book,1 -yes,i know,parrot,book,1 -greeting,ahoy hoy,original,greet,4 -yes,yes,original,book,1 -yes,affirmative,original,book,1 -yes,it's positive,parrot,book,1 -reminder_update,remind me later,original,resched,5 -greeting,how's ai feeling?,parrot,greet,4 -yes,affirmitive,original,book,1 -greeting,whats up?,parrot,greet,4 -how_busy,how long will it take to be seated at the chipotle steakhouse?,parrot,avail,0 -no,i disagree,parrot,cancel,3 -goodbye,adios,original,bye,2 -goodbye,you're done,parrot,bye,2 -goodbye,thanks for chatting,lambada,bye,2 -goodbye,glad we talked,parrot,bye,2 -thank_you,you answered,parrot,bye,2 -thank_you,you're the best!,original,bye,2 -thank_you,so grateful,parrot,bye,2 -greeting,aho,parrot,greet,4 -goodbye,goodbye then,parrot,bye,2 -yes,affirmitive,original,book,1 -no,i don't agree,parrot,cancel,3 -thank_you,i appeciate it,parrot,bye,2 -goodbye,farewell!,original,bye,2 -yes,is true,parrot,book,1 -yes,right,parrot,book,1 -goodbye,a good conversation,parrot,bye,2 -reminder_update,please remember me,parrot,resched,5 -goodbye,i'd like to see you after,parrot,bye,2 -yes,all right,parrot,book,1 -goodbye,buhbye now,lambada,bye,2 -how_busy,how busy is toby's at 11,lambada,avail,0 -greeting,hello siri,original,greet,4 -greeting,what's happened?,parrot,greet,4 -no,negation,parrot,cancel,3 -calendar_update,can you delete the event from my calendar?,parrot,resched,5 -calendar_update,remove the recurring training meeting events from my calendar,parrot,resched,5 -date,what's today's date,original,avail,0 -goodbye,goodnight,original,bye,2 -greeting,i need to know how my day is going,lambada,greet,4 -calendar_update,make sure my calendar is clear for june 1,original,resched,5 -yes,yeah yeah,lambada,book,1 -date,describe the day?,parrot,avail,0 -no,it doesn't seem so,parrot,cancel,3 -no,that's false,original,cancel,3 -yes,uh-huh,original,book,1 -yes,oh-huh,parrot,book,1 -meeting_schedule,what's my plan today?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -no,please disagree,lambada,cancel,3 -no,negative certainly,parrot,cancel,3 -greeting,how's life?,parrot,greet,4 -no,erroneous,parrot,cancel,3 -greeting,hello good day,parrot,greet,4 -goodbye,tootles,original,bye,2 -greeting,how are you doing today? ai,parrot,greet,4 -no,that's negative,parrot,cancel,3 -date,today?,parrot,avail,0 -thank_you,thanks,original,bye,2 -goodbye,bye!,original,bye,2 -greeting,how you are?,parrot,greet,4 -no,the answer is false,original,cancel,3 -reminder_update,remind me,original,resched,5 -thank_you,you helped,parrot,bye,2 -yes,confirmed,original,book,1 -greeting,yo,original,greet,4 -goodbye,say goodbye now,parrot,bye,2 -date,in seven days?,parrot,avail,0 -goodbye,farewell,original,bye,2 -yes,"affirmative, go ahead",original,book,1 -no,it's false,parrot,cancel,3 -reminder_update,can you remind me later,parrot,resched,5 -calendar,do i have anything on my schedule for april 15?,original,avail,0 -thank_you,nice,parrot,bye,2 -greeting,salutations,parrot,greet,4 -goodbye,great talk,lambada,bye,2 -yes,TRUE,lambada,book,1 -yes,so it's true,parrot,book,1 -no,i don't think it's correct,parrot,cancel,3 -yes,yes that is right,original,book,1 -reminder_update,remind me to bring my jacket tomorrow,parrot,resched,5 -greeting,ahoy,lambada,greet,4 -no,no?,parrot,cancel,3 -goodbye,peace,original,bye,2 -greeting,salutation,parrot,greet,4 -greeting,what's happening,original,greet,4 -cancel_reservation,i need you to cancel my reservation for 6 at red lobster,lambada,cancel,3 -no,negation,parrot,cancel,3 -greeting,yo,original,greet,4 -greeting,hiya,original,greet,4 -how_busy,how long will it take to get a seat in the clean restaurant,parrot,avail,0 -yes,it's positive,parrot,book,1 -yes,it's a fact,parrot,book,1 -greeting,ahoy hoy,original,greet,4 -greeting,hello siri,original,greet,4 -no,negation,parrot,cancel,3 -goodbye,my way,parrot,bye,2 -goodbye,im leaving,parrot,bye,2 -greeting,hiya,original,greet,4 -greeting,how ya been,original,greet,4 -greeting,hi ai,original,greet,4 -no,FALSE,original,cancel,3 -thank_you,that's what i want,parrot,bye,2 -no,no good,original,cancel,3 -date,this is the day,parrot,avail,0 -meeting_schedule,time of meeting?,parrot,avail,0 -yes,certainly,parrot,book,1 -goodbye,was a pleasure talking to you,parrot,bye,2 -no,it's absolutely false,parrot,cancel,3 -goodbye,it's over,parrot,bye,2 -greeting,what's new?,parrot,greet,4 -yes,oh-huh,parrot,book,1 -yes,oh-huh,parrot,book,1 -no,no!,original,cancel,3 -yes,uh-huh,original,book,1 -thank_you,many thanks,original,bye,2 -date,tell me the next month,parrot,avail,0 -greeting,aho,parrot,greet,4 -calendar_update,please add to my calendar for the staff meeting scheduled for march 1 2019 at 10 am please,parrot,resched,5 -yes,it's logical,parrot,book,1 -goodbye,greetings,parrot,bye,2 -how_busy,is macy's busy?,parrot,avail,0 -calendar_update,remove the event from my calendar for march 4,parrot,resched,5 -thank_you,really great!,original,bye,2 -reminder_update,remember for tomorrow's meeting,parrot,resched,5 -goodbye,i'll leave,parrot,bye,2 -greeting,hello siri,original,greet,4 -date,current date,original,avail,0 -thank_you,thank ya!,original,bye,2 -no,invalid,original,cancel,3 -no,nope,original,cancel,3 -no,it's not a fact,parrot,cancel,3 -yes,yep,original,book,1 -no,i'm afraid not,parrot,cancel,3 -thank_you,the help is appreciated,parrot,bye,2 -yes,it seems true,parrot,book,1 -goodbye,take it easy!,original,bye,2 -yes,positive,original,book,1 -greeting,how you're treated?,parrot,greet,4 -goodbye,i’m leaving-goodbye!,original,bye,2 -goodbye,see you later,original,bye,2 -how_busy,what is the wait time for a table at june 7?,lambada,avail,0 -yes,yup,original,book,1 -date,what date tomorrow?,parrot,avail,0 -meeting_schedule,what meetings do i have between 9 and 11 today?,parrot,avail,0 -date,today?,parrot,avail,0 -goodbye,"later, good luck",lambada,bye,2 -no,erroneous,parrot,cancel,3 -calendar_update,make sure the summit trip is clear on my calendar,parrot,resched,5 -greeting,nice day,lambada,greet,4 -goodbye,afterward,parrot,bye,2 -yes,that's true,original,book,1 -yes,yup,original,book,1 -date,what day is it?,original,avail,0 -yes,approved,original,book,1 -goodbye,thanks goodbye,parrot,bye,2 -goodbye,farewell!,original,bye,2 -greeting,hey yai,lambada,greet,4 -thank_you,you answered,parrot,bye,2 -yes,not a falsehood,parrot,book,1 -goodbye,i'm leaving,parrot,bye,2 -yes,definitely,original,book,1 -no,no that is not right,original,cancel,3 -no,negative,original,cancel,3 -yes,ok,original,book,1 -greeting,yo how's it going,parrot,greet,4 -no,say negative,parrot,cancel,3 -date,what's today,original,avail,0 -goodbye,adios!,original,bye,2 -greeting,hiya!,original,greet,4 -yes,facts,original,book,1 -yes,yes you are correct,original,book,1 -meeting_schedule,about what date is today's meeting,lambada,avail,0 -calendar_update,remove moms birthday from calendar,original,resched,5 -yes,it's logical,parrot,book,1 -schedule_meeting,i need an agenda,parrot,book,1 -yes,"that's right, it's true",lambada,book,1 -greeting,hola!,original,greet,4 -date,in seven days?,parrot,avail,0 -goodbye,thanks for the talk,lambada,bye,2 -no,no thanks,original,cancel,3 -greeting,hiya!,original,greet,4 -goodbye,good luck,lambada,bye,2 -yes,say positive,parrot,book,1 -yes,i'm going to tell you tes,parrot,book,1 -yes,i know,parrot,book,1 -goodbye,see you later!,original,bye,2 -goodbye,it's over,parrot,bye,2 -how_busy,"at 5 pm, is kaya very busy",original,avail,0 -greeting,how you're treated?,parrot,greet,4 -greeting,ahoy there,lambada,greet,4 -yes,it's true,original,book,1 -thank_you,thanks!,original,bye,2 -cancel_reservation,you can cancel my reservation,original,cancel,3 -yes,facts,original,book,1 -greeting,do you think about acii?,parrot,greet,4 -goodbye,fairwell?,parrot,bye,2 -thank_you,thanks for that response,original,bye,2 -meeting_schedule,have a meeting today?,parrot,avail,0 -reminder_update,let me remember,parrot,resched,5 -goodbye,bye!,original,bye,2 -greeting,hiya,original,greet,4 -thank_you,you've helped,parrot,bye,2 -goodbye,bye bye then,original,bye,2 -yes,yeah you got it,lambada,book,1 -calendar,what is tuesday like on my calendar?,original,avail,0 -thank_you,appreciated,original,bye,2 -date,in 7 days?,parrot,avail,0 -no,negative sure,parrot,cancel,3 -yes,TRUE,lambada,book,1 -goodbye,peace out!,original,bye,2 -yes,TRUE,original,book,1 -no,i disagree,parrot,cancel,3 -yes,sure,original,book,1 -no,negating,parrot,cancel,3 -greeting,hey fellows,parrot,greet,4 -calendar_update,add a new event to my calendar,parrot,resched,5 -thank_you,well done,parrot,bye,2 -yes,is true,parrot,book,1 -yes,yeap,original,book,1 -yes,affirmitive,original,book,1 -meeting_schedule,show me my meeting schedule,lambada,avail,0 -no,FALSE,original,cancel,3 -yes,certainly true,parrot,book,1 -date,what's my date?,parrot,avail,0 -cancel_reservation,i need to cancel my reservation for rob at the red robin,parrot,cancel,3 -yes,it'll be yes,parrot,book,1 -goodbye,farewell!,original,bye,2 -date,what day?,parrot,avail,0 -yes,affirmative,original,book,1 -goodbye,see ya,lambada,bye,2 -greeting,salutations,parrot,greet,4 -no,that's not it,parrot,cancel,3 -schedule_meeting,list the availability of meeting rooms in the afternoon?,parrot,book,1 -calendar,anything on the schedule for october 14th,original,avail,0 -yes,i can confirm,parrot,book,1 -no,not correct,parrot,cancel,3 -calendar_update,can you add exercise to my calendar today?,lambada,resched,5 -goodbye,later gater,original,bye,2 -yes,"yes, please",parrot,book,1 -schedule_meeting,i must have a meeting to begin today,parrot,book,1 -goodbye,tootles,original,bye,2 -yes,"yes, this is true",original,book,1 -thank_you,you've helped,parrot,bye,2 -cancel_reservation,i want to cancel the reservation for mercury in the ritz,parrot,cancel,3 -how_busy,how long will i have to wait to be seated at the restaurant,lambada,avail,0 -no,nope,original,cancel,3 -goodbye,sayonara,original,bye,2 -yes,positive,original,book,1 -no,no!,original,cancel,3 -how_busy,how many people do you think are in chili around 11pm,parrot,avail,0 -greeting,nice day,lambada,greet,4 -yes,facts,original,book,1 -goodbye,see you around,original,bye,2 -date,do you know what the date is?,lambada,avail,0 -greeting,hey fellow,parrot,greet,4 -goodbye,fairwell,original,bye,2 -reminder_update,keep me in mind,parrot,resched,5 -yes,ok,original,book,1 -yes,absolutely,original,book,1 -meeting_schedule,what time am i meeting robert?,parrot,avail,0 -thank_you,many thank,original,bye,2 -goodbye,say goodbye,parrot,bye,2 -schedule_meeting,can you sign me up for a meeting at 10 am friday?,parrot,book,1 -date,in five days?,parrot,avail,0 -goodbye,", goodbye",lambada,bye,2 -thank_you,many thanks,original,bye,2 -how_busy,is the wait at olive garden lately?,lambada,avail,0 -goodbye,", goodbye",lambada,bye,2 -calendar_update,remove the doctor appointment from my calendar,parrot,resched,5 -how_busy,when will i be waiting at chipotle?,lambada,avail,0 -calendar,are there appointments for april 3?,parrot,avail,0 -goodbye,goodbyes soon,parrot,bye,2 -goodbye,tootles,original,bye,2 -thank_you,thanks for my time,parrot,bye,2 -greeting,hey how's life,original,greet,4 -no,that's not really the case,parrot,cancel,3 -thank_you,i am very grateful,original,bye,2 -how_busy,tell me the time to wait for a table at the avocado cafe?,parrot,avail,0 -yes,my answer is yes,parrot,book,1 -no,certainly false,parrot,cancel,3 -how_busy,how long will it be in the olive garden,parrot,avail,0 -thank_you,thanks,original,bye,2 -yes,sure thing,original,book,1 -yes,huh huh,parrot,book,1 -calendar,tell me what's on my calendar for may 3rd?,parrot,avail,0 -thank_you,my gratitude,parrot,bye,2 -goodbye,say goodbye now,parrot,bye,2 -goodbye,good seeing you,original,bye,2 -goodbye,greetings,parrot,bye,2 -yes,it's positive,parrot,book,1 -yes,okay,original,book,1 -how_busy,how long will it be at olive garden,lambada,avail,0 -yes,sure,original,book,1 -yes,yeah,original,book,1 -greeting,salutation,parrot,greet,4 -calendar_update,i need to put my car repair on my calendar for tomorrow,parrot,resched,5 -meeting_schedule,when's my meeting with jack?,parrot,avail,0 -goodbye,bye now,original,bye,2 -greeting,how's everything,original,greet,4 -greeting,are you okay??,parrot,greet,4 -yes,"yes, please",parrot,book,1 -yes,"yes, please",original,book,1 -goodbye,peace,original,bye,2 -no,negative sure,parrot,cancel,3 -goodbye,"syonara, ai device!",original,bye,2 -greeting,how's the ayi?,parrot,greet,4 -yes,i want it,parrot,book,1 -thank_you,"great, thanks!",original,bye,2 -date,what date will it be in 14 days from now on?,parrot,avail,0 -greeting,hey hey!,original,greet,4 -date,i need a date for tomorrow,parrot,avail,0 -thank_you,and you're doing well,parrot,bye,2 -goodbye,adios ai,original,bye,2 -thank_you,thanks for the reply,original,bye,2 -calendar_update,please clean my calendar,parrot,resched,5 -no,that's a huge mistake,parrot,cancel,3 -greeting,how's life?,parrot,greet,4 -yes,great,original,book,1 -cancel_reservation,cancel my reservation for 5 at the loft,original,cancel,3 -no,not necessarily true,parrot,cancel,3 -greeting,bonjour,original,greet,4 -no,not that,original,cancel,3 -greeting,hola,original,greet,4 -yes,confirmed,original,book,1 -thank_you,you made me aware,parrot,bye,2 -yes,ok,original,book,1 -date,what month is today?,parrot,avail,0 -date,what date will it be 3 days from now?,lambada,avail,0 -yes,affirmitive,original,book,1 -no,say negative,parrot,cancel,3 -date,what's today?,parrot,avail,0 -yes,i guess,parrot,book,1 -yes,agreed,original,book,1 -thank_you,gracias,original,bye,2 -no,absolutely not,original,cancel,3 -greeting,how you are?,parrot,greet,4 -greeting,what is new?,parrot,greet,4 -goodbye,see ya,original,bye,2 -reminder_update,my cat needs neutered,parrot,resched,5 -no,you're not right,parrot,cancel,3 -how_busy,how long will i have to wait in the restaurant?,parrot,avail,0 -thank_you,i sincerely thank you,parrot,bye,2 -no,nothing,parrot,cancel,3 -meeting_schedule,are there any meetings i have today?,original,avail,0 -goodbye,see ya,lambada,bye,2 -yes,yes you have been correct,lambada,book,1 -meeting_schedule,tell me my meeting schedule?,lambada,avail,0 -cancel_reservation,is it possible to cancel my reservation at the restaurant?,parrot,cancel,3 -goodbye,goodbye now,parrot,bye,2 -how_busy,tell me how busy i'll have to be at the cheese cake factory around 1030,parrot,avail,0 -greeting,why hello?,original,greet,4 -calendar_update,remove event from calendar,lambada,resched,5 -goodbye,you're done,parrot,bye,2 -how_busy,is the restaurant always crowded between dinner and breakfast?,parrot,avail,0 -reminder_update,please remember to pay my bills,parrot,resched,5 -how_busy,how busy is chocolate milkshakes around 9?,parrot,avail,0 -goodbye,peace out,original,bye,2 -yes,accept,parrot,book,1 -no,certainly false,parrot,cancel,3 -cancel_reservation,can i cancel a reservation?,parrot,cancel,3 -goodbye,peace,original,bye,2 -greeting,hi there alexa,original,greet,4 -goodbye,regards,original,bye,2 -goodbye,later,original,bye,2 -greeting,how're you?,parrot,greet,4 -yes,just right,parrot,book,1 -thank_you,"great, thanks!",original,bye,2 -thank_you,"thanks, that's helpful",original,bye,2 -greeting,hey hey!,original,greet,4 -no,no!,original,cancel,3 -greeting,wassup,original,greet,4 -greeting,ahoy,lambada,greet,4 -yes,ok,original,book,1 -no,nay,original,cancel,3 -no,that is false,original,cancel,3 -yes,positive,parrot,book,1 -no,no way!,original,cancel,3 -thank_you,appreciate it,original,bye,2 -reminder_update,i need to set a reminder to call lisa for her birthday,original,resched,5 -date,please show the date,parrot,avail,0 -goodbye,bye!,original,bye,2 -greeting,how're you?,parrot,greet,4 -greeting,hello,original,greet,4 -yes,yay,lambada,book,1 -greeting,how's it going,lambada,greet,4 -yes,yup,original,book,1 -no,i'd rather not,parrot,cancel,3 -calendar,what do i have going on for march 12th?,lambada,avail,0 -yes,not false,parrot,book,1 -yes,yeah yeah,lambada,book,1 -greeting,"hey, what's new",original,greet,4 -thank_you,appreciate the help,original,bye,2 -yes,a fact,parrot,book,1 -yes,i'm voting for you,parrot,book,1 -yes,just right,parrot,book,1 -greeting,what's new?,parrot,greet,4 -calendar,can you tell me what's showing on my calendar for march 31st?,lambada,avail,0 -date,what will be the day tomorrow?,parrot,avail,0 -greeting,heller,original,greet,4 -yes,yay,lambada,book,1 -goodbye,the talk was nice,lambada,bye,2 -no,negation,parrot,cancel,3 -calendar_update,"can you remove that event from my calendar, please?",original,resched,5 -how_busy,how busy is chili at 730?,parrot,avail,0 -yes,obviously,parrot,book,1 -greeting,what's new?,parrot,greet,4 -thank_you,"awesome, thanks",original,bye,2 -date,in three days,parrot,avail,0 -greeting,"hey, ai",original,greet,4 -how_busy,will i be able to get a seat at chili's between 7:00am and 9:00pm,lambada,avail,0 -goodbye,the conversation was great,parrot,bye,2 -yes,yeah,original,book,1 -thank_you,thanks!,original,bye,2 -how_busy,how long is the wait at chicken alfredo,lambada,avail,0 -no,definitely not,original,cancel,3 -no,FALSE,original,cancel,3 -greeting,hiya,original,greet,4 -yes,ok,original,book,1 -no,"nope, that's false",original,cancel,3 -no,that's incorrect,original,cancel,3 -cancel_reservation,please cancel my booking,parrot,cancel,3 -how_busy,how long will i have to wait to be seated in chili's restaurant,parrot,avail,0 -goodbye,take it easy!,original,bye,2 -yes,yay,lambada,book,1 -no,negative,original,cancel,3 -goodbye,bye-bye,original,bye,2 -thank_you,again thanks,parrot,bye,2 -yes,TRUE,lambada,book,1 -thank_you,thank you!,original,bye,2 -how_busy,how long is the wait at chocolate chip cookies,lambada,avail,0 -greeting,hi,original,greet,4 -no,that's no,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -date,what is that day?,parrot,avail,0 -yes,good yes,lambada,book,1 -goodbye,catch you later,original,bye,2 -thank_you,and i'm grateful,parrot,bye,2 -yes,obviously,parrot,book,1 -greeting,hello,original,greet,4 -yes,indeed,original,book,1 -goodbye,later,original,bye,2 -date,in five days?,parrot,avail,0 -greeting,how is it going? hi,parrot,greet,4 -thank_you,thankyou,parrot,bye,2 -no,nope,original,cancel,3 -yes,yup,original,book,1 -greeting,how ya doing,lambada,greet,4 -goodbye,bye bye,lambada,bye,2 -calendar_update,delete the events on 1 june,parrot,resched,5 -no,"please, no",original,cancel,3 -no,i believe it's false,parrot,cancel,3 -thank_you,gracias,original,bye,2 -goodbye,bye bye,lambada,bye,2 -schedule_meeting,meeting room availability from 8:00 please,original,book,1 -how_busy,wait how long will it take to get a table in this restaurant,parrot,avail,0 -greeting,wassup,original,greet,4 -greeting,what's my feeling today?,parrot,greet,4 -date,i'd like a date today,parrot,avail,0 -goodbye,peace,original,bye,2 -schedule_meeting,what is my availability for conference rooms between one and two today?,original,book,1 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -goodbye,i must run now,parrot,bye,2 -thank_you,merci beaucoup,original,bye,2 -thank_you,thankyou,parrot,bye,2 -no,erroneous,parrot,cancel,3 -greeting,hello good day,parrot,greet,4 -no,"no, that is inaccurate",original,cancel,3 -yes,absolutely!,original,book,1 -reminder_update,set up a reminder for the time of the meeting at 2pm,parrot,resched,5 -thank_you,thanks for the information you've provided,lambada,bye,2 -thank_you,i'm glad you did it for me,parrot,bye,2 -thank_you,thanks for the help,original,bye,2 -greeting,how ya doing,lambada,greet,4 -yes,confirm,original,book,1 -greeting,hello,original,greet,4 -reminder_update,remember to bring checkbook,parrot,resched,5 -goodbye,later,original,bye,2 -how_busy,is there a wait in chipotle tonight,parrot,avail,0 -thank_you,thank you?,parrot,bye,2 -meeting_schedule,when i'll meet roger?,parrot,avail,0 -date,date please,original,avail,0 -goodbye,i'm going,parrot,bye,2 -no,that’s not correct,original,cancel,3 -yes,affirmative,original,book,1 -how_busy,how long does it take for a table at garlic bread pizza?,parrot,avail,0 -greeting,how's it going now?,parrot,greet,4 -goodbye,bye,original,bye,2 -greeting,how are you?,parrot,greet,4 -no,negative certainly,parrot,cancel,3 -goodbye,tootles,original,bye,2 -calendar_update,can i delete my golf tournament from tomorrow?,parrot,resched,5 -goodbye,goodbye!,original,bye,2 -reminder_update,can you remind me?,parrot,resched,5 -date,what date tomorrow?,parrot,avail,0 -greeting,hey,original,greet,4 -yes,yeah yeah,lambada,book,1 -goodbye,bye bye,lambada,bye,2 -reminder_update,remind me,original,resched,5 -goodbye,tootles,original,bye,2 -greeting,hello,original,greet,4 -date,what's today?,parrot,avail,0 -thank_you,i'm grateful,original,bye,2 -greeting,hey hey!,original,greet,4 -no,i think not,original,cancel,3 -no,and i'm sorry,parrot,cancel,3 -thank_you,okay thank you,parrot,bye,2 -how_busy,tio is busy at 830?,parrot,avail,0 -no,the information is incorrect,parrot,cancel,3 -no,negative certainly,parrot,cancel,3 -goodbye,farewell!,original,bye,2 -no,negation,parrot,cancel,3 -reminder_update,remind me to put clothes away,lambada,resched,5 -meeting_schedule,what meetings are on my schedule today between 1:00 pm and 4:00 pm?,original,avail,0 -schedule_meeting,are there meeting rooms available between 4 and 8?,parrot,book,1 -goodbye,buhbye,original,bye,2 -no,this isn't true,parrot,cancel,3 -date,what date?,parrot,avail,0 -goodbye,the talk was nice,lambada,bye,2 -date,current day,parrot,avail,0 -meeting_schedule,what are my meetings today?,original,avail,0 -yes,it is definitely affirmative,original,book,1 -goodbye,goodbye!,original,bye,2 -goodbye,buhbye,original,bye,2 -yes,huh,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -goodbye,goodnight,original,bye,2 -yes,it's certainly positive,parrot,book,1 -yes,very true,original,book,1 -greeting,well hello,original,greet,4 -greeting,whats up?,parrot,greet,4 -no,you are wrong,original,cancel,3 -thank_you,you answered,parrot,bye,2 -yes,sure,original,book,1 -yes,that's correct,original,book,1 -yes,it's indeed true,original,book,1 -yes,great,original,book,1 -date,he's got the date,parrot,avail,0 -goodbye,"no problem, goodbye",lambada,bye,2 -goodbye,ai goodbye,original,bye,2 -how_busy,wait how long before we go to the olive garden,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,that is totally true,original,book,1 -goodbye,farewell!,original,bye,2 -yes,say positive,parrot,book,1 -cancel_reservation,cancellation of reservations for dinner,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -yes,TRUE,original,book,1 -thank_you,"thanks, that's helpful",original,bye,2 -greeting,yo,original,greet,4 -reminder_update,remember to take the chicken out in an hour,parrot,resched,5 -thank_you,very grateful,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -goodbye,peace,original,bye,2 -goodbye,good call,parrot,bye,2 -how_busy,how long is the wait for a chuck turkey seated,lambada,avail,0 -greeting,hiya!,original,greet,4 -no,negative,original,cancel,3 -goodbye,take care then,parrot,bye,2 -goodbye,sayonara,original,bye,2 -yes,you are yes,lambada,book,1 -cancel_reservation,scrap the dinner reservation,parrot,cancel,3 -goodbye,"bye-bye, my friend",lambada,bye,2 -no,i'll say no,parrot,cancel,3 -thank_you,i really thank you,original,bye,2 -thank_you,glad that you did it,parrot,bye,2 -meeting_schedule,please show me my meeting schedule for the day,parrot,avail,0 -goodbye,my way,parrot,bye,2 -calendar_update,i have to set a date for the lab tomorrow,parrot,resched,5 -yes,certainly true,parrot,book,1 -goodbye,cya later,original,bye,2 -yes,correct,original,book,1 -reminder_update,remind me to exercise,original,resched,5 -how_busy,how long is the wait for a table at the red robin,lambada,avail,0 -yes,great,original,book,1 -no,that's not the way,parrot,cancel,3 -greeting,hi how's everything?,parrot,greet,4 -greeting,hey fellows,parrot,greet,4 -goodbye,bye,original,bye,2 -goodbye,later!,original,bye,2 -how_busy,is ihop busy?,parrot,avail,0 -schedule_meeting,then i have to schedule a meeting with stanley at 6pm,parrot,book,1 -schedule_meeting,can you schedule a meeting for tuesday evening at 6 pm,parrot,book,1 -meeting_schedule,meeting today,parrot,avail,0 -no,negating,parrot,cancel,3 -greeting,whats up,original,greet,4 -thank_you,thanks again!,original,bye,2 -no,i believe it's incorrect,lambada,cancel,3 -date,today is what date,original,avail,0 -goodbye,goodbye now,parrot,bye,2 -schedule_meeting,can you arrange a meeting with scott at 9 am?,parrot,book,1 -thank_you,thanks for that answer,original,bye,2 -goodbye,the talk was nice,lambada,bye,2 -no,don't agree,parrot,cancel,3 -greeting,hola,original,greet,4 -goodbye,"goodbye, ai assistant",original,bye,2 -date,in five days?,parrot,avail,0 -no,no,lambada,cancel,3 -reminder_update,give me a reminder to change my clothes,parrot,resched,5 -no,no?,parrot,cancel,3 -no,that isn't right,original,cancel,3 -yes,"yes, please",original,book,1 -yes,perfect,parrot,book,1 -date,tell me the day?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -goodbye,i'm outta here!,original,bye,2 -no,not that,original,cancel,3 -how_busy,what's the crowd like at hopper's bar around 11pm,original,avail,0 -yes,10-Apr,original,book,1 -how_busy,is olive garden busy with lunch?,parrot,avail,0 -schedule_meeting,i'll need a meeting room at 9am on tuesday morning,parrot,book,1 -yes,perfect,parrot,book,1 -yes,i'd say yes,parrot,book,1 -no,i disagree,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -no,negatory,original,cancel,3 -reminder_update,you can remind me to put the clothes in the dryer,parrot,resched,5 -no,that's a negatory,original,cancel,3 -calendar_update,"for friday, add a doctor's appointment to my calendar",original,resched,5 -goodbye,bye-bye,original,bye,2 -date,i can't remember the date,parrot,avail,0 -yes,definitely yes,parrot,book,1 -thank_you,thanks,original,bye,2 -no,FALSE,lambada,cancel,3 -cancel_reservation,please cancel my reservation for the loft,parrot,cancel,3 -yes,affirmitive,original,book,1 -calendar_update,put appointment on my calendar for tomorrow,original,resched,5 -goodbye,ok good chatting goodbye,original,bye,2 -thank_you,appreciate it,original,bye,2 -greeting,hey how are you,lambada,greet,4 -yes,affirmative,original,book,1 -goodbye,"nice talk, next time",lambada,bye,2 -goodbye,fairwell,original,bye,2 -no,that's completely false,original,cancel,3 -greeting,what's happening,original,greet,4 -yes,my answer is yes,parrot,book,1 -greeting,hiya,original,greet,4 -greeting,salutation,parrot,greet,4 -goodbye,later good luck,parrot,bye,2 -goodbye,goodbye,original,bye,2 -no,that's absolutely false,parrot,cancel,3 -no,that's incorrect,original,cancel,3 -no,so that's no,parrot,cancel,3 -yes,positive,parrot,book,1 -goodbye,adios!,original,bye,2 -yes,oh-huh,parrot,book,1 -goodbye,wonderful conversation,lambada,bye,2 -reminder_update,please add a reminder,lambada,resched,5 -thank_you,okay thank you,parrot,bye,2 -yes,yeah that's what i want,original,book,1 -no,invalid,original,cancel,3 -date,what today?,parrot,avail,0 -thank_you,thanks for coming,parrot,bye,2 -yes,facts,original,book,1 -yes,accepted,original,book,1 -no,that is so false,original,cancel,3 -how_busy,if i want to get a table in the restaurant how long will it take,parrot,avail,0 -yes,yeah that's what i want,original,book,1 -no,negation,parrot,cancel,3 -yes,10-Apr,original,book,1 -goodbye,"i'm glad you had a good chat with me, goodbye",lambada,bye,2 -yes,my answer is yes,parrot,book,1 -thank_you,thank ya!,original,bye,2 -how_busy,will mr joes pizza be crowded around dinner,lambada,avail,0 -greeting,i need to know how it goes,parrot,greet,4 -no,"nope, that's false",original,cancel,3 -thank_you,very grateful,parrot,bye,2 -thank_you,thanks for the response,lambada,bye,2 -greeting,hiya,original,greet,4 -date,the date will be in 4 days,parrot,avail,0 -date,what will it be tomorrow?,lambada,avail,0 -goodbye,have fun?,lambada,bye,2 -greeting,is everything going okay?,original,greet,4 -no,naw,original,cancel,3 -yes,"yes, that's true",lambada,book,1 -no,negatory?,parrot,cancel,3 -date,a year?,parrot,avail,0 -reminder_update,please remember me again,parrot,resched,5 -no,no!,original,cancel,3 -thank_you,you've been great,parrot,bye,2 -greeting,aloha,original,greet,4 -no,it's absolutely false,parrot,cancel,3 -goodbye,later,original,bye,2 -meeting_schedule,how many total meetings will i have between 2 and 5,original,avail,0 -no,nope,original,cancel,3 -thank_you,thanks for trying,original,bye,2 -goodbye,tootles?,parrot,bye,2 -goodbye,tootles,original,bye,2 -no,that can't be true?,parrot,cancel,3 -yes,is true,parrot,book,1 -how_busy,how long will i have to wait in the cheesecake factory?,parrot,avail,0 -goodbye,later then,lambada,bye,2 -yes,yes that's right,lambada,book,1 -calendar,is there an event titled anniversary dinner on my calendar?,original,avail,0 -no,it's a bad idea i think,parrot,cancel,3 -yes,sure,original,book,1 -goodbye,my friend,parrot,bye,2 -greeting,why hello?,original,greet,4 -yes,confirm,original,book,1 -schedule_meeting,tell me if there's a meeting room available at 11am?,parrot,book,1 -calendar,please read my appointments for march 2,parrot,avail,0 -no,no!,original,cancel,3 -greeting,salutations!,original,greet,4 -goodbye,goodnight,original,bye,2 -goodbye,adios,original,bye,2 -thank_you,okay thanks,original,bye,2 -goodbye,see ya,original,bye,2 -thank_you,you're welcome,parrot,bye,2 -calendar_update,please clean my calendar,parrot,resched,5 -greeting,hey,original,greet,4 -goodbye,i'm out of this,parrot,bye,2 -thank_you,thanks for that information,lambada,bye,2 -thank_you,and i'm grateful,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -cancel_reservation,my reservation for dinner needs to be cancelled,parrot,cancel,3 -calendar,can you check what is showing on my calendar for march 2?,lambada,avail,0 -date,what's today?,parrot,avail,0 -meeting_schedule,when do i meet my father?,parrot,avail,0 -thank_you,i'm thankful for my support,parrot,bye,2 -no,it's negative,parrot,cancel,3 -yes,definitely,original,book,1 -meeting_schedule,do i have meetings with dan?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,that's very false,parrot,cancel,3 -goodbye,bye bye!,original,bye,2 -date,please date,parrot,avail,0 -calendar_update,remove celebrate birthday from my calendar,lambada,resched,5 -yes,okay,original,book,1 -yes,accept,parrot,book,1 -date,'what's the date today?',parrot,avail,0 -no,that's certainly not the case,parrot,cancel,3 -yes,indeed,original,book,1 -no,invalid,original,cancel,3 -yes,that's a fact,parrot,book,1 -no,that's a huge mistake,parrot,cancel,3 -date,wednesday friday or saturday?,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -date,describe the day?,parrot,avail,0 -yes,yay,lambada,book,1 -goodbye,"later, good luck",lambada,bye,2 -meeting_schedule,when's the meeting?,parrot,avail,0 -meeting_schedule,are there meetings between 11 and 4?,parrot,avail,0 -date,is it monday?,parrot,avail,0 -how_busy,list the average wait times at chili's right now?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -thank_you,thanks for that,original,bye,2 -calendar,what are my current calendar activities?,parrot,avail,0 -how_busy,would ihop be busy around 5 pm,lambada,avail,0 -calendar,tell me what's on my calendar for april 24th?,parrot,avail,0 -greeting,hiya!,original,greet,4 -greeting,aho,parrot,greet,4 -yes,"yes, please",original,book,1 -calendar,what is happening on may 3,parrot,avail,0 -reminder_update,add a reminder to my check,lambada,resched,5 -no,naw,original,cancel,3 -schedule_meeting,is there any availability for conferences between one and 2?,parrot,book,1 -greeting,salutations!,original,greet,4 -calendar_update,go ahead and cancel the appointment that was scheduled for yesterday,parrot,resched,5 -greeting,hey,original,greet,4 -calendar_update,i need to add my wedding to my calendar for march 5,lambada,resched,5 -yes,accept,parrot,book,1 -date,in 14 days?,parrot,avail,0 -goodbye,later then,lambada,bye,2 -calendar,tell me what my calendar looks like for march 12th,parrot,avail,0 -goodbye,goodbye soon,lambada,bye,2 -greeting,salutations,parrot,greet,4 -no,nothing,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -no,don't agree,parrot,cancel,3 -thank_you,thanks,original,bye,2 -no,that’s incorrect,original,cancel,3 -no,nothing good,parrot,cancel,3 -goodbye,later!,original,bye,2 -no,that's a false statement,lambada,cancel,3 -goodbye,i'll be gone,parrot,bye,2 -calendar_update,delete the party i had with sir april 14 from my calendars,parrot,resched,5 -meeting_schedule,how many meetings are on my calendar?,parrot,avail,0 -goodbye,goodbye to your,lambada,bye,2 -thank_you,you're a great help,parrot,bye,2 -thank_you,you helped me,parrot,bye,2 -goodbye,i enjoyed our talk,parrot,bye,2 -thank_you,thank you!,original,bye,2 -thank_you,you've helped,parrot,bye,2 -yes,that's correct,original,book,1 -yes,"correct, that's true",original,book,1 -greeting,hello,original,greet,4 -no,no?,parrot,cancel,3 -yes,confirmed,original,book,1 -how_busy,is red lobster usually busy around 8pm?,parrot,avail,0 -thank_you,my gratitude,parrot,bye,2 -how_busy,how long will it take to wait in this restaurant,parrot,avail,0 -yes,"yeah, that is true",lambada,book,1 -greeting,hey hey!,original,greet,4 -no,is very false,parrot,cancel,3 -greeting,hello,original,greet,4 -greeting,heller,original,greet,4 -goodbye,bye!,original,bye,2 -yes,perfect,parrot,book,1 -schedule_meeting,can i meet with steven?,parrot,book,1 -goodbye,good talk,parrot,bye,2 -how_busy,what time will it take for me to sit down at chili's?,parrot,avail,0 -goodbye,bye,original,bye,2 -greeting,ahoy there,lambada,greet,4 -greeting,hows it going,lambada,greet,4 -cancel_reservation,can you cancel my reservation at the scallop bar?,parrot,cancel,3 -greeting,how things go?,parrot,greet,4 -yes,that's correct,original,book,1 -greeting,how are you,original,greet,4 -yes,exactly right,original,book,1 -no,nope not it,original,cancel,3 -how_busy,will the restaurant be busy at 5pm,original,avail,0 -greeting,aho,parrot,greet,4 -greeting,good evening,original,greet,4 -thank_you,my sincere thanks,parrot,bye,2 -greeting,heller,original,greet,4 -greeting,what's up,original,greet,4 -date,please give me the full day and the date for today,parrot,avail,0 -yes,indeed,original,book,1 -thank_you,you have made my life so much easier,lambada,bye,2 -date,please date,parrot,avail,0 -how_busy,how busy is red lobster?,parrot,avail,0 -cancel_reservation,the reservation isn't needed now,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -goodbye,goodbye my friend,parrot,bye,2 -calendar_update,remove the trip to scotland from my calendar on 1 march,parrot,resched,5 -greeting,aho,parrot,greet,4 -reminder_update,please remind me later,original,resched,5 -how_busy,please tell me what it is like in the olive garden?,parrot,avail,0 -no,absolutely not,original,cancel,3 -reminder_update,tell me to call a friend tomorrow,parrot,resched,5 -no,erroneous,parrot,cancel,3 -yes,thats right,original,book,1 -calendar_update,delete everything from my calendar,parrot,resched,5 -yes,obviously,parrot,book,1 -yes,accept,parrot,book,1 -schedule_meeting,is it possible to arrange a meeting room for interviews on thursday?,parrot,book,1 -yes,"yes, please",parrot,book,1 -greeting,hey how ya feeling,lambada,greet,4 -no,no!,original,cancel,3 -schedule_meeting,are meeting rooms available between 9 and 11?,parrot,book,1 -no,thanks no,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -meeting_schedule,are there meetings on the calendar today?,parrot,avail,0 -no,this isn't true,parrot,cancel,3 -greeting,hey how are you going?,parrot,greet,4 -thank_you,thank you!,original,bye,2 -yes,i can tell you,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -reminder_update,can you tell me something?,parrot,resched,5 -greeting,you good?,parrot,greet,4 -calendar,are there any events between march 5 and march 8th?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -goodbye,regards,original,bye,2 -goodbye,i'll be gone,parrot,bye,2 -yes,obviously,parrot,book,1 -how_busy,wait long in this italian place?,parrot,avail,0 -no,negative,original,cancel,3 -how_busy,can you tell me how busy chili's will be at five?,parrot,avail,0 -goodbye,ai goodbye,original,bye,2 -no,not really,original,cancel,3 -date,can you tell me the date for the next four days?,parrot,avail,0 -goodbye,tootles,original,bye,2 -greeting,how ya been,original,greet,4 -yes,right,parrot,book,1 -no,it's a negation,parrot,cancel,3 -greeting,hey what's up,original,greet,4 -calendar,do you have anything planned for march 5th?,parrot,avail,0 -greeting,heyo,original,greet,4 -thank_you,okay thank you,parrot,bye,2 -how_busy,can i wait at chili's?,parrot,avail,0 -date,what's today?,parrot,avail,0 -goodbye,see ya,original,bye,2 -reminder_update,tell me to take the trash out in an hour?,parrot,resched,5 -greeting,how are things going,original,greet,4 -date,what day?,parrot,avail,0 -goodbye,goodbye goodbye,parrot,bye,2 -greeting,how is ayi doing?,parrot,greet,4 -goodbye,i’m leaving-goodbye!,original,bye,2 -goodbye,goodbyes soon,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -schedule_meeting,plan a meeting for me,parrot,book,1 -no,this is so negative,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -thank_you,awesome thank you,parrot,bye,2 -no,i think not,original,cancel,3 -thank_you,"awesome, thanks",original,bye,2 -greeting,how's life in my town,lambada,greet,4 -no,that's bad,parrot,cancel,3 -goodbye,later gater,original,bye,2 -yes,let's do it,parrot,book,1 -greeting,hey,original,greet,4 -yes,positive,parrot,book,1 -date,tell me the date?,original,avail,0 -no,no no thanks,parrot,cancel,3 -thank_you,again thanks,parrot,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -greeting,aho,parrot,greet,4 -how_busy,what's the typical wait time at this restaurant?,parrot,avail,0 -how_busy,tell me if chili's busy around 8 am?,parrot,avail,0 -yes,that's a fact,parrot,book,1 -greeting,good morning,parrot,greet,4 -greeting,how life treats you?,parrot,greet,4 -how_busy,please tell me what the wait at olive garden is like,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -thank_you,much obliged,original,bye,2 -calendar_update,remove the birthday date from my calendar,parrot,resched,5 -no,that's erroneous,parrot,cancel,3 -no,negatory,original,cancel,3 -goodbye,glad we can talk,parrot,bye,2 -calendar_update,remove dinner date from my calendar,lambada,resched,5 -greeting,whats up?,parrot,greet,4 -no,this is a false answer,parrot,cancel,3 -yes,yes i am,original,book,1 -goodbye,i'll leave,parrot,bye,2 -calendar,what do you have on my calendar for march 29?,parrot,avail,0 -yes,i know it's true,parrot,book,1 -goodbye,bye!,original,bye,2 -greeting,what's happening,original,greet,4 -greeting,how ya doing,lambada,greet,4 -thank_you,thank you for answering,parrot,bye,2 -yes,let's do it,parrot,book,1 -greeting,how's everything,original,greet,4 -greeting,salutations,parrot,greet,4 -date,what month today?,parrot,avail,0 -no,is my false claim?,parrot,cancel,3 -yes,correct,original,book,1 -how_busy,when is the restaurant busiest around 11 am?,lambada,avail,0 -goodbye,bye!,original,bye,2 -thank_you,awesome thanks,parrot,bye,2 -no,negation,parrot,cancel,3 -yes,right,parrot,book,1 -goodbye,talk later,original,bye,2 -goodbye,goodbye,original,bye,2 -greeting,hey there!,original,greet,4 -no,not right,parrot,cancel,3 -no,that is overwhelmingly negative,lambada,cancel,3 -thank_you,okay thank you,parrot,bye,2 -goodbye,it's over,parrot,bye,2 -goodbye,have a good day?,original,bye,2 -how_busy,wait how long on fridays,parrot,avail,0 -goodbye,ai goodbye,original,bye,2 -no,"no, it's not",lambada,cancel,3 -goodbye,i'm gone,parrot,bye,2 -yes,that's right,original,book,1 -yes,okay,original,book,1 -no,that's erroneous,parrot,cancel,3 -how_busy,do you think the outback steakhouse will be busy between 6 and 9 pm?,parrot,avail,0 -yes,accepted,original,book,1 -thank_you,gracias,original,bye,2 -how_busy,how busy will olive garden be at 5pm,lambada,avail,0 -thank_you,you've tried,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -yes,that's a yes,original,book,1 -greeting,ahoy hoy,original,greet,4 -reminder_update,could you remind me to clean the floors?,parrot,resched,5 -date,the date is today,parrot,avail,0 -no,"no, don't do that",original,cancel,3 -greeting,are you well?,original,greet,4 -no,not that,original,cancel,3 -goodbye,maybe next time,parrot,bye,2 -goodbye,goodbye,original,bye,2 -meeting_schedule,when's my meeting with bob?,parrot,avail,0 -no,that's false,original,cancel,3 -greeting,tell me how you're doing today?,parrot,greet,4 -goodbye,goodbye,original,bye,2 -goodbye,later,original,bye,2 -greeting,what's happened?,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -thank_you,merci beaucoup,original,bye,2 -calendar,tell me what's on my calendar for tuesday the 2nd,parrot,avail,0 -goodbye,adios!,original,bye,2 -greeting,ahoy,lambada,greet,4 -yes,roger that,original,book,1 -yes,certainly,parrot,book,1 -yes,all right,parrot,book,1 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -no,this is false,parrot,cancel,3 -meeting_schedule,can i give you the time of my meetings?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -thank_you,thanks for the help!,original,bye,2 -date,what's my day today?,parrot,avail,0 -goodbye,adios!,original,bye,2 -no,invalid,original,cancel,3 -greeting,aho,parrot,greet,4 -greeting,hi,original,greet,4 -thank_you,you have been a good help,lambada,bye,2 -greeting,hiya,original,greet,4 -yes,okay,original,book,1 -thank_you,i'm thankful,original,bye,2 -calendar,tell me about anything on the calendar for feb 1?,lambada,avail,0 -no,"nope, that's false",original,cancel,3 -no,that is overwhelmingly wrong,lambada,cancel,3 -thank_you,nice,parrot,bye,2 -yes,ok,original,book,1 -yes,facts,original,book,1 -greeting,what's my feeling today?,parrot,greet,4 -goodbye,sayonara,original,bye,2 -calendar,what do you have on my calendar for today?,parrot,avail,0 -yes,sure,original,book,1 -yes,confirmed,original,book,1 -how_busy,can you tell me how busy the olive garden is around noon?,parrot,avail,0 -yes,certainly true,parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -goodbye,i'll leave,parrot,bye,2 -calendar,check my calendar please,parrot,avail,0 -how_busy,how long will it take me to get seated in olive garden for dinner?,parrot,avail,0 -yes,yay,lambada,book,1 -yes,can we please?,original,book,1 -how_busy,how busy is macaroni and cheese at 6 o'clock?,parrot,avail,0 -thank_you,good job,lambada,bye,2 -date,what day are we in?,original,avail,0 -meeting_schedule,do you have any meetings between 9 and 1030?,parrot,avail,0 -date,you have the date?,parrot,avail,0 -no,certainly not,original,cancel,3 -date,what date today?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -goodbye,sayonara,original,bye,2 -no,that's not the truth,parrot,cancel,3 -yes,TRUE,lambada,book,1 -date,can you tell me the day of the month or the year?,parrot,avail,0 -goodbye,wonderful conversation,lambada,bye,2 -goodbye,peace,original,bye,2 -no,that's not correct,original,cancel,3 -goodbye,see ya,lambada,bye,2 -goodbye,buhbye,original,bye,2 -goodbye,afterward,parrot,bye,2 -greeting,how is everything going,original,greet,4 -no,no,lambada,cancel,3 -yes,ok,original,book,1 -no,please no,parrot,cancel,3 -yes,confirmed,original,book,1 -calendar,tell me what's going on on sunday?,parrot,avail,0 -yes,TRUE,lambada,book,1 -yes,certainly,parrot,book,1 -yes,yeap,original,book,1 -yes,huh,parrot,book,1 -goodbye,great talking to you,parrot,bye,2 -cancel_reservation,abrogate the reservation of dinner,parrot,cancel,3 -no,certainly false,parrot,cancel,3 -reminder_update,maybe a reminder?,parrot,resched,5 -how_busy,how long will the restaurant be before we go,lambada,avail,0 -goodbye,adios,original,bye,2 -how_busy,how busy will the olive garden be at 730 pm,parrot,avail,0 -greeting,hi,original,greet,4 -yes,that is totally true,original,book,1 -goodbye,see ya,lambada,bye,2 -how_busy,how long is the wait at the olive garden,lambada,avail,0 -goodbye,bye now,original,bye,2 -greeting,how ya doing,lambada,greet,4 -greeting,hey there,original,greet,4 -no,hell nah,original,cancel,3 -yes,positive,original,book,1 -cancel_reservation,please cancel my reservation for robert at the park,lambada,cancel,3 -greeting,how's everything?,parrot,greet,4 -calendar,tell me what's on my calendar for march 17th?,parrot,avail,0 -meeting_schedule,what are meetings today?,parrot,avail,0 -thank_you,i'm really thankful,parrot,bye,2 -goodbye,my friend,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -meeting_schedule,are there meetings between 1 and 8 pm?,parrot,avail,0 -yes,positive,original,book,1 -thank_you,nice,parrot,bye,2 -how_busy,what's the time to sit down in this restaurant,parrot,avail,0 -thank_you,gracias,original,bye,2 -how_busy,is the restaurant crowded?,parrot,avail,0 -yes,all right,parrot,book,1 -greeting,good day,original,greet,4 -how_busy,how busy is a traditional chinese restaurant right now,lambada,avail,0 -goodbye,"later, good luck",lambada,bye,2 -goodbye,adios,original,bye,2 -how_busy,is the wait long at this italian place?,lambada,avail,0 -yes,"yeah, that's right",original,book,1 -no,negatory,original,cancel,3 -schedule_meeting,i'd like you to set a meeting with john at 10 am,lambada,book,1 -no,what you said was wrong?,parrot,cancel,3 -no,is very false,parrot,cancel,3 -greeting,how's idy?,parrot,greet,4 -no,negative,original,cancel,3 -greeting,heller,original,greet,4 -greeting,tell me the latest thing,parrot,greet,4 -how_busy,how long can you wait to be seated in an italian restaurant?,parrot,avail,0 -calendar,have any appointments on my calendar for march 22?,parrot,avail,0 -goodbye,i’m leaving-goodbye!,original,bye,2 -no,nothing,parrot,cancel,3 -greeting,yo,original,greet,4 -goodbye,goodnight,original,bye,2 -goodbye,later!,original,bye,2 -greeting,wassup,original,greet,4 -goodbye,see ya,lambada,bye,2 -greeting,aloha,original,greet,4 -yes,"yeah that's right, so true",original,book,1 -how_busy,how busy will chipotle grill be at 5 pm,lambada,avail,0 -yes,perfect,parrot,book,1 -thank_you,thank you?,parrot,bye,2 -goodbye,later gator!,original,bye,2 -cancel_reservation,i must cancel my reservation for barry in the red robins,parrot,cancel,3 -goodbye,goodbye thank you,parrot,bye,2 -cancel_reservation,can you cancel my dinner reservation for me?,parrot,cancel,3 -greeting,whats new,lambada,greet,4 -no,it's so negative,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -no,that's completely wrong,parrot,cancel,3 -yes,my response is correct,parrot,book,1 -no,i'd say no,original,cancel,3 -yes,oh yes,original,book,1 -yes,yep,original,book,1 -no,negatory?,parrot,cancel,3 -yes,truthful is my answer,lambada,book,1 -greeting,heyo,original,greet,4 -goodbye,im leaving goodbye,parrot,bye,2 -no,it's a mistake,parrot,cancel,3 -no,nothing,parrot,cancel,3 -greeting,hi how're things going,lambada,greet,4 -yes,affirmative,original,book,1 -goodbye,good conversation,parrot,bye,2 -how_busy,what's the best time to eat at olive garden?,parrot,avail,0 -no,no!,original,cancel,3 -greeting,heyo,original,greet,4 -greeting,what's new?,parrot,greet,4 -yes,yes,original,book,1 -cancel_reservation,can you cancel my reservation for the dinner?,parrot,cancel,3 -greeting,how's my feeling?,parrot,greet,4 -greeting,hello ai,parrot,greet,4 -thank_you,thanks again,original,bye,2 -no,that's wrong,original,cancel,3 -thank_you,gracias,original,bye,2 -date,give me today's date,original,avail,0 -how_busy,what's the wait right now?,parrot,avail,0 -no,naw,parrot,cancel,3 -thank_you,thanks for the info,original,bye,2 -yes,perfect,parrot,book,1 -how_busy,how busy is mishawaka?,parrot,avail,0 -yes,is true,parrot,book,1 -thank_you,thanks i appreciate it,parrot,bye,2 -goodbye,adios,original,bye,2 -yes,is true,parrot,book,1 -yes,approved,original,book,1 -yes,accepted,original,book,1 -greeting,whats up,original,greet,4 -greeting,hello,original,greet,4 -goodbye,bye bye,lambada,bye,2 -yes,exactly right,original,book,1 -goodbye,bye bye,lambada,bye,2 -yes,correct,original,book,1 -goodbye,tootles,original,bye,2 -goodbye,greetings,parrot,bye,2 -greeting,how's the life?,parrot,greet,4 -how_busy,does red lobster have many people around?,parrot,avail,0 -thank_you,why thank you?,original,bye,2 -goodbye,have fun?,lambada,bye,2 -schedule_meeting,i need to know how to find a new meeting,lambada,book,1 -goodbye,fairwell?,parrot,bye,2 -greeting,"hey, ai",original,greet,4 -greeting,let me know how it goes,parrot,greet,4 -calendar,do i have any appointments set for april 1st?,lambada,avail,0 -no,but it's false,parrot,cancel,3 -no,that is so false,original,cancel,3 -yes,absolutely,original,book,1 -date,in eight days?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -no,but not right now,parrot,cancel,3 -yes,huh,parrot,book,1 -goodbye,have a nice day?,lambada,bye,2 -goodbye,sign off,parrot,bye,2 -yes,so it's checked,parrot,book,1 -thank_you,i appreciate your consideration,lambada,bye,2 -date,today?,parrot,avail,0 -no,negatory?,parrot,cancel,3 -yes,correct,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,nope,original,cancel,3 -cancel_reservation,im not going to use the reservation i made,lambada,cancel,3 -cancel_reservation,remove my dinner reservation,original,cancel,3 -yes,yeah yeah,lambada,book,1 -thank_you,thanks for my prompt response,parrot,bye,2 -yes,TRUE,lambada,book,1 -how_busy,how long is the wait for a table at applebee's,lambada,avail,0 -goodbye,it's over,parrot,bye,2 -goodbye,goodbye then,parrot,bye,2 -yes,obviously,parrot,book,1 -calendar,how many events are scheduled for march 15?,parrot,avail,0 -thank_you,thanks for helping me,original,bye,2 -no,i'd rather not,parrot,cancel,3 -no,negative definitely,parrot,cancel,3 -meeting_schedule,meetings today,original,avail,0 -thank_you,"oh, thanks",original,bye,2 -yes,i'll say yes,parrot,book,1 -goodbye,peace,original,bye,2 -how_busy,can you tell me how busy chili's will be at 11 pm?,lambada,avail,0 -greeting,hey how ya been,lambada,greet,4 -yes,"yep, that's correct",lambada,book,1 -no,nay,original,cancel,3 -date,today?,parrot,avail,0 -thank_you,thanks please,original,bye,2 -no,invalid,original,cancel,3 -no,that's very wrong,parrot,cancel,3 -goodbye,peace,original,bye,2 -greeting,salutations!,original,greet,4 -greeting,hi there,original,greet,4 -cancel_reservation,cancel reservation at robin's for 6,lambada,cancel,3 -how_busy,how busy will the olive garden be at 8 o'clock in the morning,parrot,avail,0 -how_busy,can i be busy at pizzeria around 8 pm,parrot,avail,0 -meeting_schedule,what's my schedule today?,parrot,avail,0 -greeting,how's my day been?,parrot,greet,4 -no,it's completely false,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -goodbye,signing off,original,bye,2 -how_busy,wait how long?,parrot,avail,0 -yes,ya,original,book,1 -yes,agreed,original,book,1 -no,that's a no,lambada,cancel,3 -greeting,what's my day like?,parrot,greet,4 -how_busy,tell me the time to wait for a table at macaroni grill,parrot,avail,0 -reminder_update,let me be reminded,parrot,resched,5 -greeting,hi what's up?,parrot,greet,4 -no,"no, that is inaccurate",original,cancel,3 -goodbye,goodbye,original,bye,2 -yes,oh yes,original,book,1 -cancel_reservation,you can cancel the table i reserved for tonight,parrot,cancel,3 -how_busy,how long would the wait at pizza sauce be?,parrot,avail,0 -no,nope,original,cancel,3 -goodbye,peace out!,original,bye,2 -yes,affirmative,original,book,1 -greeting,hey,original,greet,4 -date,what is today?,original,avail,0 -goodbye,afterward,parrot,bye,2 -yes,accepted,original,book,1 -no,invalid,original,cancel,3 -greeting,ahoy there,lambada,greet,4 -how_busy,how busy is the steakhouse at midnight?,parrot,avail,0 -yes,accepted,original,book,1 -greeting,well hello,original,greet,4 -thank_you,appreciated,original,bye,2 -date,what's the date?,parrot,avail,0 -yes,yes that is right,original,book,1 -goodbye,for now,parrot,bye,2 -goodbye,bye now,original,bye,2 -how_busy,can you tell me how long will i have to wait to be seated at phoenix steakhouse?,lambada,avail,0 -how_busy,how busy is olive garden at 6 pm,lambada,avail,0 -goodbye,i'll go,parrot,bye,2 -no,not right,parrot,cancel,3 -no,please disagree,lambada,cancel,3 -thank_you,"great, thanks!",original,bye,2 -greeting,how's life treating you?,parrot,greet,4 -yes,"correct, that's true",original,book,1 -no,erroneous,parrot,cancel,3 -how_busy,how long is the wait in chipotle right now?,parrot,avail,0 -no,what you've said is wrong?,parrot,cancel,3 -goodbye,good talk,parrot,bye,2 -date,what's the date of nine days?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -no,that's bad,parrot,cancel,3 -no,nada,original,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -yes,yes sir,original,book,1 -yes,TRUE,original,book,1 -yes,not false,parrot,book,1 -greeting,hiya,original,greet,4 -greeting,how was my day?,parrot,greet,4 -thank_you,"great, thanks!",original,bye,2 -date,is the date?,parrot,avail,0 -no,no?,parrot,cancel,3 -how_busy,how long do i have to wait for the table at chipotle?,parrot,avail,0 -greeting,whats new?,parrot,greet,4 -goodbye,take care then,parrot,bye,2 -no,no?,parrot,cancel,3 -how_busy,how many people are at the restaurant between 11 and 5,lambada,avail,0 -thank_you,please thank you,lambada,bye,2 -how_busy,how long will the wait be before we go to the restaurant,lambada,avail,0 -thank_you,i am grateful,lambada,bye,2 -goodbye,adios,original,bye,2 -greeting,hi,original,greet,4 -yes,approved,original,book,1 -greeting,how you are?,parrot,greet,4 -no,that's false,original,cancel,3 -greeting,hello there ai,original,greet,4 -goodbye,nice to see you,original,bye,2 -yes,a real statement,parrot,book,1 -greeting,hey how's my day?,parrot,greet,4 -calendar,do you have appointments scheduled for saturday?,parrot,avail,0 -goodbye,peace,original,bye,2 -thank_you,nice,parrot,bye,2 -thank_you,that's what you did,parrot,bye,2 -thank_you,thanks!,original,bye,2 -no,negating,parrot,cancel,3 -schedule_meeting,could you please schedule a meeting with carrie and lisa,original,book,1 -thank_you,appreciated,original,bye,2 -goodbye,bye-bye,original,bye,2 -goodbye,nice talk,lambada,bye,2 -how_busy,what is the typical wait time at ihuachina?,lambada,avail,0 -thank_you,thankyou,parrot,bye,2 -goodbye,sign off,parrot,bye,2 -no,that's negative,parrot,cancel,3 -goodbye,please talk soon,parrot,bye,2 -greeting,all right now?,parrot,greet,4 -yes,confirm,original,book,1 -calendar,tell me what's planned for sunday?,parrot,avail,0 -goodbye,i'll have to go,parrot,bye,2 -yes,good yes,lambada,book,1 -how_busy,can you tell me how long the wait will be in the italian place at midnight?,parrot,avail,0 -how_busy,what time does it take to wait for a table on june 7th?,parrot,avail,0 -greeting,heller,original,greet,4 -yes,yay,lambada,book,1 -yes,correct,original,book,1 -date,what is today's date?,original,avail,0 -calendar,what's on january 1st?,parrot,avail,0 -reminder_update,remind me to clean room,original,resched,5 -how_busy,is mcdonalds busy?,parrot,avail,0 -meeting_schedule,am i scheduled for any gathering today,parrot,avail,0 -goodbye,regards,original,bye,2 -thank_you,you've been great,parrot,bye,2 -goodbye,catch you later,original,bye,2 -no,negatory?,parrot,cancel,3 -yes,it's positive,parrot,book,1 -meeting_schedule,meetings today,original,avail,0 -yes,so it works,parrot,book,1 -goodbye,lovely conversation,parrot,bye,2 -reminder_update,a new reminder,parrot,resched,5 -yes,approved,original,book,1 -schedule_meeting,please schedule a meeting with debbie,parrot,book,1 -date,can you tell me tomorrow's date?,original,avail,0 -greeting,what's my feeling?,parrot,greet,4 -reminder_update,can i set a reminder?,original,resched,5 -goodbye,see ya,lambada,bye,2 -thank_you,good looking out,original,bye,2 -no,that is overwhelmingly false,original,cancel,3 -meeting_schedule,what if i have any meetings today?,parrot,avail,0 -greeting,"hey, how's my day",lambada,greet,4 -yes,affirmative,original,book,1 -yes,yay,lambada,book,1 -no,"no, that's wrong",original,cancel,3 -no,it's a false statement i'd say,parrot,cancel,3 -calendar,i need to know what is currently on my calendar for friday the 1st,original,avail,0 -greeting,hola!,original,greet,4 -thank_you,"nice, excellent!",original,bye,2 -yes,yes that is right,original,book,1 -no,nothing good,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -no,that's completely false,original,cancel,3 -thank_you,my gratitude,parrot,bye,2 -how_busy,how long will the wait be at pee pee's?,parrot,avail,0 -how_busy,is that place crowded at dinner?,parrot,avail,0 -greeting,hiya!,original,greet,4 -meeting_schedule,do i have any meetings today between 9 and 10:15?,original,avail,0 -calendar,tell me what's on my calendar for november 6?,parrot,avail,0 -goodbye,regards,original,bye,2 -date,date tomorrow?,parrot,avail,0 -no,naw,parrot,cancel,3 -greeting,"hey, ai",original,greet,4 -goodbye,later goodbye,parrot,bye,2 -how_busy,what's the wait at jalapeno ranch?,parrot,avail,0 -reminder_update,remind me later,original,resched,5 -no,that's no,parrot,cancel,3 -yes,10-Apr,original,book,1 -greeting,hello,original,greet,4 -goodbye,"no problem, goodbye",lambada,bye,2 -greeting,what's up,original,greet,4 -thank_you,i appreciate the help,original,bye,2 -yes,just right,parrot,book,1 -greeting,hiya!,original,greet,4 -goodbye,sayonara,original,bye,2 -greeting,heyo,original,greet,4 -greeting,what's happened to you?,parrot,greet,4 -greeting,hey there!,original,greet,4 -goodbye,goodbye bye,parrot,bye,2 -yes,sure thing,original,book,1 -how_busy,tell me the time to wait for the pizza at the bakery?,parrot,avail,0 -how_busy,how long can i wait in this restaurant?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -how_busy,how long will it take to get seated at olive garden,lambada,avail,0 -thank_you,youre a doll,original,bye,2 -thank_you,i appeciate it,original,bye,2 -thank_you,i owe you,parrot,bye,2 -greeting,hey there,original,greet,4 -greeting,yo,original,greet,4 -thank_you,many thanks,original,bye,2 -no,invalid,original,cancel,3 -greeting,how is everything?,parrot,greet,4 -goodbye,goodbye,original,bye,2 -no,negative certainly,parrot,cancel,3 -greeting,and how's it going,parrot,greet,4 -yes,it's true,original,book,1 -no,"please, no",original,cancel,3 -how_busy,how long will it take to get seated at the macaroni grill?,parrot,avail,0 -yes,confirm,original,book,1 -goodbye,goodbye later,parrot,bye,2 -no,i say negative,original,cancel,3 -greeting,are you doing okay?,original,greet,4 -yes,yay,lambada,book,1 -no,FALSE,original,cancel,3 -how_busy,is the wait more than an hour at the italian restaurant?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -no,nada,original,cancel,3 -how_busy,how busy will tidy be at 9pm,lambada,avail,0 -schedule_meeting,can you please have a meeting with kate at 8am?,lambada,book,1 -yes,yay,lambada,book,1 -date,what's the current date of,parrot,avail,0 -goodbye,go easy,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,how's life?,parrot,greet,4 -goodbye,tootles,original,bye,2 -thank_you,thank you!,original,bye,2 -greeting,bonjour,original,greet,4 -yes,i think it's right,parrot,book,1 -thank_you,"oh, thanks",original,bye,2 -how_busy,is there a long wait at chili's?,parrot,avail,0 -cancel_reservation,i have to cancel the reservation at red robin,parrot,cancel,3 -how_busy,how busy is the olive garden around 6pm,parrot,avail,0 -yes,yeap,original,book,1 -yes,that is true,original,book,1 -goodbye,farewell!,original,bye,2 -yes,okay,original,book,1 -thank_you,your response was good,parrot,bye,2 -yes,affirmitive,original,book,1 -greeting,whats new?,parrot,greet,4 -goodbye,goodbye!,original,bye,2 -thank_you,thanks for that!,original,bye,2 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -thank_you,I owe you one,parrot,bye,2 -no,that's certainly not the case,parrot,cancel,3 -greeting,hows life for you,lambada,greet,4 -meeting_schedule,are there meetings with john?,parrot,avail,0 -how_busy,how long will it take me to sit in the olive garden?,parrot,avail,0 -yes,definitely yes,parrot,book,1 -goodbye,adios!,original,bye,2 -thank_you,thanks for helping,original,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -yes,okay,original,book,1 -schedule_meeting,please schedule a meeting,parrot,book,1 -date,what date tomorrow?,parrot,avail,0 -yes,yes,original,book,1 -greeting,how's ai feeling?,parrot,greet,4 -reminder_update,set a reminder to let the plumber in tomorrow,parrot,resched,5 -greeting,hi what's going on,parrot,greet,4 -no,no good,original,cancel,3 -date,what's the day now?,parrot,avail,0 -no,nay,original,cancel,3 -greeting,wassup,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -goodbye,talk later,original,bye,2 -no,it is no,original,cancel,3 -goodbye,see you later!,original,bye,2 -yes,good,parrot,book,1 -meeting_schedule,when is the meeting?,parrot,avail,0 -calendar_update,add my next doctor appointment to my schedule,parrot,resched,5 -how_busy,how busy is the place at 7am?,parrot,avail,0 -date,which date is it?,parrot,avail,0 -reminder_update,give the cat a reminder to come home at 9 o'clock in the morning,parrot,resched,5 -no,that's incorrect!,original,cancel,3 -yes,ya,original,book,1 -greeting,salutations,parrot,greet,4 -greeting,heyo,original,greet,4 -how_busy,can i expect a long wait at chili's at 5pm?,parrot,avail,0 -how_busy,can the wait be long in the cheesecake factory?,parrot,avail,0 -greeting,heller,original,greet,4 -greeting,have you been good??,parrot,greet,4 -how_busy,there are around 7 people going to the chili,parrot,avail,0 -yes,TRUE,lambada,book,1 -how_busy,how busy is the outback at 6?,parrot,avail,0 -no,but it's not true,parrot,cancel,3 -calendar_update,put my birthday on the calendar for next month,lambada,resched,5 -calendar,can you tell me what's on my calendar for march 25th?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -yes,and you're correct,parrot,book,1 -yes,facts,original,book,1 -yes,yeah,original,book,1 -no,invalid,original,cancel,3 -meeting_schedule,when do you meet kara?,parrot,avail,0 -reminder_update,please remember me later,parrot,resched,5 -goodbye,i'm gone,parrot,bye,2 -reminder_update,can you add a reminder to my list of things to remember?,parrot,resched,5 -how_busy,how long will the restaurant wait for?,parrot,avail,0 -yes,im sure you are true,parrot,book,1 -greeting,how ya doin,original,greet,4 -goodbye,fairwell,original,bye,2 -cancel_reservation,cancellation of dinner reservations,parrot,cancel,3 -goodbye,nice drive by,lambada,bye,2 -date,what day are we?,parrot,avail,0 -thank_you,my sincere gratitude,parrot,bye,2 -yes,yes,original,book,1 -no,this is a hard no for me,parrot,cancel,3 -greeting,how are things with you,original,greet,4 -yes,my answer is yes,parrot,book,1 -yes,okay,original,book,1 -date,if you could tell me today's date,parrot,avail,0 -date,what do you think will be the date of 200 days?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -reminder_update,remind me to check the steak,original,resched,5 -yes,TRUE,lambada,book,1 -yes,yes,original,book,1 -greeting,whats new,lambada,greet,4 -no,so that's no,parrot,cancel,3 -no,i meant nothing,parrot,cancel,3 -goodbye,always a pleasure to speak with you,parrot,bye,2 -how_busy,does olive garden get crowded during dinner?,lambada,avail,0 -calendar,do i have an annual physical on my calendar? why?,parrot,avail,0 -greeting,what's happening,original,greet,4 -goodbye,goodnight,original,bye,2 -goodbye,i'm out,parrot,bye,2 -date,what day of the month is it today?,original,avail,0 -goodbye,goodbye,original,bye,2 -goodbye,later!,original,bye,2 -yes,oh-huh,parrot,book,1 -no,naw,parrot,cancel,3 -yes,agreed,original,book,1 -greeting,"hi, ai",original,greet,4 -greeting,whats up?,parrot,greet,4 -no,negative sure,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -thank_you,i appreciate the help,original,bye,2 -greeting,hiya!,original,greet,4 -yes,i'm going to tell you tes,parrot,book,1 -greeting,how's idy?,parrot,greet,4 -goodbye,buhbye,original,bye,2 -yes,yup,original,book,1 -greeting,wassup,original,greet,4 -no,negative,original,cancel,3 -yes,uh-huh,original,book,1 -goodbye,ill leave now,parrot,bye,2 -yes,"yes, that's correct",original,book,1 -goodbye,adios ai,original,bye,2 -greeting,"hello, friend",original,greet,4 -goodbye,farewell!,original,bye,2 -greeting,hola,original,greet,4 -how_busy,how busy is the cheesecake factory at 6pm,lambada,avail,0 -thank_you,you've been great,parrot,bye,2 -yes,great,original,book,1 -yes,yup,original,book,1 -reminder_update,can you create a reminder?,original,resched,5 -greeting,hey fellow,parrot,greet,4 -yes,it seems true,parrot,book,1 -goodbye,adios!,original,bye,2 -thank_you,thanks!,original,bye,2 -goodbye,good talk,parrot,bye,2 -goodbye,"thanks, bye",original,bye,2 -no,i disagree,parrot,cancel,3 -calendar,what do i have scheduled for january 14th?,lambada,avail,0 -cancel_reservation,i'd like to cancel my reservation for 5 at hoss's steak house,original,cancel,3 -how_busy,would i expect chili's to be busy at 7,lambada,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -calendar_update,remove my event from my calendar on thursday,lambada,resched,5 -date,in 14 days?,parrot,avail,0 -no,that's negative,parrot,cancel,3 -greeting,hola!,original,greet,4 -goodbye,great chat goodbye,lambada,bye,2 -yes,yeah,original,book,1 -yes,all right,original,book,1 -goodbye,see ya,lambada,bye,2 -how_busy,how long will it take to get a table in the restaurant?,parrot,avail,0 -thank_you,so grateful,parrot,bye,2 -thank_you,please thank you,lambada,bye,2 -no,naw,original,cancel,3 -meeting_schedule,when should i meet jane?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -thank_you,i'm grateful for the information,parrot,bye,2 -how_busy,how busy is imanas at 6,original,avail,0 -calendar_update,remove all calendar entries on march 3rd,parrot,resched,5 -thank_you,thankyou,parrot,bye,2 -goodbye,nice drive by,lambada,bye,2 -goodbye,goodbye then,parrot,bye,2 -goodbye,later!,original,bye,2 -goodbye,peace,original,bye,2 -date,i would like to know tomorrow's date,original,avail,0 -thank_you,so grateful,parrot,bye,2 -how_busy,tell me how busy macaroni grill will be around 8 pm?,original,avail,0 -goodbye,im leaving,parrot,bye,2 -calendar_update,can i make an appointment for my anniversary on may 4th?,parrot,resched,5 -meeting_schedule,when's the meeting today?,parrot,avail,0 -calendar,please read my appointments for march 2nd,parrot,avail,0 -goodbye,it was nice to chat,original,bye,2 -yes,confirm,original,book,1 -how_busy,how long will the wait be at chipper's,lambada,avail,0 -yes,yes that is true,lambada,book,1 -no,it's not right,parrot,cancel,3 -yes,positive,original,book,1 -no,no!,original,cancel,3 -yes,okay,original,book,1 -thank_you,you've given me that,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -goodbye,take care then,parrot,bye,2 -yes,accepted,original,book,1 -yes,definitely,original,book,1 -goodbye,goodbye later,parrot,bye,2 -meeting_schedule,when is the meeting?,parrot,avail,0 -yes,do that?,original,book,1 -thank_you,i appeciate it,parrot,bye,2 -greeting,hi,original,greet,4 -goodbye,have fun?,lambada,bye,2 -greeting,salutations!,original,greet,4 -yes,accepted,original,book,1 -how_busy,does the restaurant get crowded during the lunch time?,parrot,avail,0 -goodbye,later goodbye,parrot,bye,2 -yes,i know,parrot,book,1 -goodbye,bye-bye,original,bye,2 -no,yes it's false,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -thank_you,you're special thanks,parrot,bye,2 -yes,agreed,original,book,1 -goodbye,great talk,lambada,bye,2 -yes,certainly,parrot,book,1 -goodbye,you're done,parrot,bye,2 -no,is my falsehood?,parrot,cancel,3 -no,that's inaccurate,original,cancel,3 -calendar_update,add my work on my calendar,lambada,resched,5 -date,what is today's date?,original,avail,0 -yes,right,parrot,book,1 -yes,great,original,book,1 -how_busy,is the restaurant crowded around dinner?,lambada,avail,0 -goodbye,catch you around,original,bye,2 -no,and i think it is false,parrot,cancel,3 -yes,accept,parrot,book,1 -date,what's today,original,avail,0 -date,what today?,parrot,avail,0 -yes,10-Apr,original,book,1 -goodbye,tootles,original,bye,2 -date,what's the date now,parrot,avail,0 -yes,yes please,original,book,1 -meeting_schedule,do i have a meeting today?,parrot,avail,0 -how_busy,i wanna know how long of a wait will i have to wait at olive garden,lambada,avail,0 -yes,agreed,original,book,1 -no,no?,parrot,cancel,3 -thank_you,i'm so grateful,parrot,bye,2 -no,FALSE,lambada,cancel,3 -greeting,good evening,original,greet,4 -thank_you,and i'm grateful,parrot,bye,2 -greeting,how ya doing,lambada,greet,4 -greeting,are you all right now?,parrot,greet,4 -how_busy,how busy will the cheesecake factory be around 8am?,parrot,avail,0 -no,nada,original,cancel,3 -yes,okay,original,book,1 -goodbye,greetings,parrot,bye,2 -how_busy,can you tell me how busy olive garden is at 7 pm?,lambada,avail,0 -greeting,how is ayi doing?,parrot,greet,4 -goodbye,buhbye,original,bye,2 -yes,oh-huh,parrot,book,1 -goodbye,goodbye!,original,bye,2 -date,let me know the day tomorrow,parrot,avail,0 -goodbye,later gater,original,bye,2 -yes,right,parrot,book,1 -yes,affirmitive,original,book,1 -yes,oh-huh,parrot,book,1 -greeting,aloha,original,greet,4 -no,it's negative,parrot,cancel,3 -no,hell nah,original,cancel,3 -greeting,how do you feel?,parrot,greet,4 -calendar_update,i need to get an appointment for tomorrow for 3,lambada,resched,5 -yes,yes you are correct,original,book,1 -how_busy,how long is the wait for a table at the lobster?,parrot,avail,0 -meeting_schedule,is my schedule clear?,parrot,avail,0 -greeting,are you well?,original,greet,4 -goodbye,adios,original,bye,2 -goodbye,bye!,original,bye,2 -yes,that's correct,original,book,1 -no,invalid,original,cancel,3 -date,what day it today?,original,avail,0 -goodbye,i'll leave,parrot,bye,2 -date,what day?,parrot,avail,0 -goodbye,sign off,parrot,bye,2 -meeting_schedule,what's my day's schedule?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -no,no?,parrot,cancel,3 -yes,my answer is yes,parrot,book,1 -goodbye,buhbye,original,bye,2 -goodbye,a good talk,parrot,bye,2 -reminder_update,keep me reminded to put the clothes in the dryer,parrot,resched,5 -greeting,how are things going?,parrot,greet,4 -yes,right,parrot,book,1 -no,no thanks,original,cancel,3 -no,invalid,original,cancel,3 -date,what day?,parrot,avail,0 -how_busy,how long will i have to wait in phoenix steakhouse?,parrot,avail,0 -calendar,tell me what my calendar says for april 15th?,parrot,avail,0 -no,this information is false,parrot,cancel,3 -cancel_reservation,get rid of my 2 pm reservation at ruth's steakhouse,original,cancel,3 -yes,certainly true,parrot,book,1 -thank_you,"oh, thanks",original,bye,2 -no,that isn't correct,original,cancel,3 -goodbye,sayonara,original,bye,2 -date,you have the date?,parrot,avail,0 -meeting_schedule,am i scheduled for meetings between noon and one?,parrot,avail,0 -no,no that's not accurate,parrot,cancel,3 -thank_you,i'm thankful for you,parrot,bye,2 -meeting_schedule,give me a summary of today's meetings,original,avail,0 -no,this is not true,parrot,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -how_busy,tell me the number of people in chipotle at 6pm,parrot,avail,0 -thank_you,thanks for responding,parrot,bye,2 -goodbye,bye bye!,original,bye,2 -yes,ya,original,book,1 -goodbye,im leaving,parrot,bye,2 -meeting_schedule,what meetings are on my schedule today?,original,avail,0 -no,no way,original,cancel,3 -how_busy,do you know how busy cheese steak house is at 7?,lambada,avail,0 -no,negative sure,parrot,cancel,3 -greeting,what's new?,parrot,greet,4 -no,that is sooo bad,lambada,cancel,3 -yes,yes sir,original,book,1 -greeting,heyo,original,greet,4 -no,negatory,original,cancel,3 -yes,correct,original,book,1 -no,not happening,original,cancel,3 -no,the answer is definitely no,original,cancel,3 -goodbye,bye bye,lambada,bye,2 -meeting_schedule,what's the time of the meeting?,parrot,avail,0 -yes,oh yes,original,book,1 -no,erroneous,parrot,cancel,3 -yes,that checks out,original,book,1 -date,please explain today,parrot,avail,0 -schedule_meeting,can you get me a meeting room for noon?,lambada,book,1 -yes,positive,original,book,1 -no,no it's not good,parrot,cancel,3 -meeting_schedule,i need to know what meetings i have scheduled for today,lambada,avail,0 -no,not good,parrot,cancel,3 -how_busy,how busy will the red lobster be at 4pm?,parrot,avail,0 -how_busy,how busy is iguana at 9 pm?,parrot,avail,0 -how_busy,is tilman busy at 5?,parrot,avail,0 -greeting,hey bs,lambada,greet,4 -goodbye,say goodbye,parrot,bye,2 -no,nay,original,cancel,3 -thank_you,merci beaucoup,original,bye,2 -goodbye,good-bye,parrot,bye,2 -goodbye,go easy,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,that is correct,original,book,1 -no,nada,original,cancel,3 -cancel_reservation,please cancel my lunch reservation,lambada,cancel,3 -calendar,what's on my calendar on march 10?,parrot,avail,0 -how_busy,how long will the restaurant be waiting,lambada,avail,0 -yes,yeap,original,book,1 -goodbye,adios!,original,bye,2 -how_busy,how long will the wait be in the cheesecake factory?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -yes,yeap,original,book,1 -yes,it's indeed true,original,book,1 -thank_you,you've helped,parrot,bye,2 -greeting,hey fellows,parrot,greet,4 -greeting,hiya,original,greet,4 -yes,so it's real,parrot,book,1 -yes,"yup, that's correct",lambada,book,1 -no,negatory,original,cancel,3 -schedule_meeting,are there meeting rooms available between 9-10?,original,book,1 -how_busy,how long will i have to wait at chili's,lambada,avail,0 -yes,that's true,original,book,1 -yes,great,original,book,1 -how_busy,how busy is mishawaka,lambada,avail,0 -yes,"yes, please",parrot,book,1 -greeting,"why, hello bandit",original,greet,4 -goodbye,thanks bye bye!,original,bye,2 -how_busy,do you know how long the wait will be at chris's?,parrot,avail,0 -greeting,how you feel?,parrot,greet,4 -thank_you,i'm grateful,original,bye,2 -thank_you,you've helped,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -no,negative,original,cancel,3 -yes,confirm,original,book,1 -greeting,how's the ayi?,parrot,greet,4 -how_busy,when is the best time to book a table in this restaurant?,parrot,avail,0 -reminder_update,you know something?,parrot,resched,5 -yes,"yes, that's correct",original,book,1 -schedule_meeting,can you arrange a meeting with james in the office please?,parrot,book,1 -no,no please,parrot,cancel,3 -no,negative,original,cancel,3 -how_busy,is macy's busy?,parrot,avail,0 -no,"no, that is not the case",lambada,cancel,3 -greeting,how's ai doing?,parrot,greet,4 -calendar,let's see what's on my calendar for march 15,parrot,avail,0 -date,is tomorrow's date?,parrot,avail,0 -yes,sure thing,original,book,1 -yes,agreed,original,book,1 -no,that's overwhelmingly negative,parrot,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -yes,that is affirmative,original,book,1 -no,negating,parrot,cancel,3 -cancel_reservation,the dinner reservation is not necessary,parrot,cancel,3 -yes,approved,original,book,1 -no,there's no way this is true,parrot,cancel,3 -yes,right,parrot,book,1 -goodbye,thanks goodbye,parrot,bye,2 -how_busy,how long does it take for applebee's?,parrot,avail,0 -date,in five days?,parrot,avail,0 -thank_you,i appeciate it,parrot,bye,2 -thank_you,thanks!,original,bye,2 -no,and no it's not true,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -goodbye,thanks goodbye,parrot,bye,2 -thank_you,thanks a million,original,bye,2 -greeting,aho,parrot,greet,4 -goodbye,and then goodbye,parrot,bye,2 -no,invalid,original,cancel,3 -date,what day is tomorrow?,lambada,avail,0 -yes,yeah,original,book,1 -no,is very false,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -thank_you,i am thankful,lambada,bye,2 -calendar_update,stop this thing today,parrot,resched,5 -meeting_schedule,do you have any meetings for today from 5 to 7?,lambada,avail,0 -thank_you,thanks for the answer,original,bye,2 -greeting,give me the details,parrot,greet,4 -how_busy,can you tell me how busy cheesecake factory is right now?,lambada,avail,0 -calendar,show me the calendar for march 12th?,parrot,avail,0 -greeting,what's up,original,greet,4 -thank_you,i'm grateful for the information,parrot,bye,2 -thank_you,thanks,original,bye,2 -yes,my answer is yes,parrot,book,1 -yes,"yes, please",parrot,book,1 -yes,yup,original,book,1 -reminder_update,remind me,original,resched,5 -thank_you,appreciated,original,bye,2 -yes,obviously,parrot,book,1 -no,nada,original,cancel,3 -thank_you,many thank,original,bye,2 -no,negatory?,parrot,cancel,3 -reminder_update,please remember something,parrot,resched,5 -greeting,hiya,original,greet,4 -meeting_schedule,what is in my schedule?,parrot,avail,0 -no,that's negative,parrot,cancel,3 -goodbye,really nice to talk with you,parrot,bye,2 -no,naw,parrot,cancel,3 -how_busy,in a chinese house how long does it take to get there?,parrot,avail,0 -goodbye,go easy,parrot,bye,2 -goodbye,great conversation,parrot,bye,2 -greeting,whats new?,parrot,greet,4 -goodbye,goodbye later,parrot,bye,2 -goodbye,say goodbye,parrot,bye,2 -reminder_update,what about a reminder?,parrot,resched,5 -reminder_update,can you remind me something?,parrot,resched,5 -thank_you,you gave me that,parrot,bye,2 -thank_you,good job thanks,parrot,bye,2 -goodbye,we can talk later,parrot,bye,2 -no,not correct,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -goodbye,cya later,original,bye,2 -goodbye,ill leave now,parrot,bye,2 -greeting,how're you doing?,parrot,greet,4 -greeting,salutations!,original,greet,4 -greeting,how you are?,parrot,greet,4 -yes,absolutely,original,book,1 -date,current day,parrot,avail,0 -yes,yay,lambada,book,1 -greeting,are you okay??,parrot,greet,4 -calendar_update,i need to clear a date on my calendar for next friday,parrot,resched,5 -greeting,bonjour,original,greet,4 -yes,affirmative,original,book,1 -greeting,salutations,parrot,greet,4 -greeting,are you doing anything good?,parrot,greet,4 -yes,"yes, i want to know this",lambada,book,1 -no,"please, no",original,cancel,3 -date,tell me the next week?,parrot,avail,0 -date,what's tomorrow's date,original,avail,0 -goodbye,"later, good luck",lambada,bye,2 -greeting,wassup,original,greet,4 -goodbye,bye-bye,original,bye,2 -yes,yes is my answer,original,book,1 -greeting,what's up?,parrot,greet,4 -yes,agreed,original,book,1 -yes,indeed,original,book,1 -no,erroneous,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -thank_you,okay thanks,original,bye,2 -thank_you,thanks again,original,bye,2 -no,that's a no,lambada,cancel,3 -reminder_update,remind me to call my mom?,parrot,resched,5 -how_busy,how long will it take me to sit at ihop?,parrot,avail,0 -yes,so it's real,parrot,book,1 -schedule_meeting,how does scheduling meetings work?,parrot,book,1 -goodbye,it's over,parrot,bye,2 -thank_you,nice,parrot,bye,2 -how_busy,i want to know if the wait is long at olive garden at 5:30,lambada,avail,0 -greeting,good evening,original,greet,4 -meeting_schedule,wanna meet roger?,parrot,avail,0 -thank_you,the best,parrot,bye,2 -yes,is true,parrot,book,1 -goodbye,buhbye now,lambada,bye,2 -thank_you,i'm grateful to you,original,bye,2 -thank_you,awesome thank you,parrot,bye,2 -no,negatory,original,cancel,3 -no,please disagree,lambada,cancel,3 -goodbye,goodbye later,parrot,bye,2 -calendar,do i have appointments for april?,parrot,avail,0 -yes,is true,parrot,book,1 -meeting_schedule,are meetings on my calendar today?,parrot,avail,0 -yes,it's positive,parrot,book,1 -greeting,how is my day going,lambada,greet,4 -greeting,"hello, friend",original,greet,4 -yes,say yes,lambada,book,1 -thank_you,my thanks,parrot,bye,2 -yes,affirmitive,original,book,1 -reminder_update,i have a doctor's appointment tomorrow at 3pm,parrot,resched,5 -goodbye,bye bye,lambada,bye,2 -thank_you,your answer is appreciated,original,bye,2 -yes,that is accurate,original,book,1 -thank_you,appreciated,original,bye,2 -meeting_schedule,how long will the meeting with diana take?,parrot,avail,0 -yes,ok,original,book,1 -goodbye,buhbye now,lambada,bye,2 -yes,is true,parrot,book,1 -no,this is false,parrot,cancel,3 -goodbye,later goodbye,parrot,bye,2 -how_busy,i want to know how busy ruby will be around 845 pm,parrot,avail,0 -no,FALSE,lambada,cancel,3 -yes,is true,parrot,book,1 -no,thanks no,parrot,cancel,3 -goodbye,farewell,original,bye,2 -goodbye,goodbye,original,bye,2 -greeting,"hello, ai",original,greet,4 -yes,TRUE,lambada,book,1 -date,i'd like to know what the date is tomorrow,parrot,avail,0 -meeting_schedule,the meetings today,parrot,avail,0 -greeting,hiya!,original,greet,4 -greeting,yo,original,greet,4 -no,no that's wrong,original,cancel,3 -goodbye,good night,original,bye,2 -no,that's no,parrot,cancel,3 -how_busy,how busy is a typical pizza restaurant at 12 pm,lambada,avail,0 -yes,positive,original,book,1 -goodbye,see you later,original,bye,2 -no,no thanks,original,cancel,3 -goodbye,say goodbye for now,parrot,bye,2 -greeting,good evening,original,greet,4 -greeting,hey fellows,parrot,greet,4 -yes,"yeah, that's right",original,book,1 -no,not true,original,cancel,3 -thank_you,"great, thanks!",original,bye,2 -goodbye,and then goodbye,parrot,bye,2 -no,that's not right?,parrot,cancel,3 -date,current date,original,avail,0 -meeting_schedule,what time do you meet with john?,parrot,avail,0 -how_busy,what time is it to get a table at this restaurant?,parrot,avail,0 -how_busy,can i wait at the red lobster until 9 pm?,parrot,avail,0 -calendar,show me the calendar for march 13?,parrot,avail,0 -meeting_schedule,what are my calendar meetings?,parrot,avail,0 -reminder_update,but i need to remember,parrot,resched,5 -how_busy,is chili's busy around 7:30?,lambada,avail,0 -greeting,how're you?,parrot,greet,4 -yes,absolutely!,original,book,1 -goodbye,bye!,original,bye,2 -greeting,hola,original,greet,4 -goodbye,goodbye ai,parrot,bye,2 -calendar_update,stop this thing today,parrot,resched,5 -yes,"yes, please",parrot,book,1 -meeting_schedule,show me the time of my meeting,parrot,avail,0 -yes,a fact,parrot,book,1 -thank_you,why do you thank me?,parrot,bye,2 -goodbye,thanks goodbye,parrot,bye,2 -greeting,hi what's going on?,parrot,greet,4 -yes,10-Apr,original,book,1 -greeting,hey bs,lambada,greet,4 -no,nada,original,cancel,3 -yes,"yes, that's it",original,book,1 -how_busy,what is it like to wait in olive garden?,parrot,avail,0 -yes,that's right,original,book,1 -no,that's not right,original,cancel,3 -yes,that would be yes,original,book,1 -how_busy,how long will i have to wait at tenpence for a table at impossibly large?,parrot,avail,0 -greeting,how're you doing,original,greet,4 -yes,yes sir,original,book,1 -no,"no, that is inaccurate",original,cancel,3 -how_busy,does the restaurant get crowded at 7pm?,parrot,avail,0 -goodbye,now i have to go to sleep,parrot,bye,2 -yes,affirmative,original,book,1 -yes,i know,parrot,book,1 -goodbye,bye bye then,original,bye,2 -greeting,hey there,original,greet,4 -yes,positive,original,book,1 -greeting,heyo,original,greet,4 -yes,yeah yeah,lambada,book,1 -yes,im sure you're true,parrot,book,1 -thank_you,thankyou,parrot,bye,2 -yes,certainly true,parrot,book,1 -greeting,hi ai,original,greet,4 -how_busy,how busy is the chicory grill before dinner,parrot,avail,0 -goodbye,good luck,lambada,bye,2 -greeting,bonjour,original,greet,4 -goodbye,i’m leaving-goodbye!,original,bye,2 -how_busy,what is the wait time at chili's right now?,lambada,avail,0 -greeting,yo how is it going,lambada,greet,4 -no,nope,original,cancel,3 -yes,10-Apr,original,book,1 -yes,i want that,parrot,book,1 -greeting,hi ai,original,greet,4 -goodbye,good-bye,parrot,bye,2 -thank_you,i just want to thank you,parrot,bye,2 -goodbye,i want it now,parrot,bye,2 -greeting,whats up,original,greet,4 -greeting,hiya,original,greet,4 -goodbye,i'll go,parrot,bye,2 -greeting,and how're you doing,parrot,greet,4 -greeting,how's idy?,parrot,greet,4 -goodbye,talk later,original,bye,2 -yes,confirmed,original,book,1 -yes,uh-huh,original,book,1 -yes,positive,parrot,book,1 -yes,"yes, please",parrot,book,1 -calendar_update,schedule family dinner on my calendar on 8 march,parrot,resched,5 -thank_you,appreciated,original,bye,2 -goodbye,thank you for talking to me,lambada,bye,2 -how_busy,how busy is cheesecake factory at 5pm,lambada,avail,0 -goodbye,greetings,parrot,bye,2 -yes,TRUE,original,book,1 -no,i'll pass,original,cancel,3 -yes,confirmed,original,book,1 -yes,correct,original,book,1 -schedule_meeting,please reserve a meeting room for thursday at 1pm,lambada,book,1 -how_busy,is mcdonalds busy?,parrot,avail,0 -no,that's inaccurate,original,cancel,3 -how_busy,you know the busy hours at olive garden?,parrot,avail,0 -calendar,check my calendar for me,lambada,avail,0 -greeting,what's happening?,parrot,greet,4 -no,that's a huge mistake,parrot,cancel,3 -goodbye,nice seeing you bye,original,bye,2 -goodbye,good conversation,parrot,bye,2 -greeting,so how's everything?,parrot,greet,4 -date,what's today,original,avail,0 -schedule_meeting,meetings open from 1 pm to 3 pm,parrot,book,1 -calendar_update,add to my friday calendar a doctor appointment,parrot,resched,5 -yes,my answer is yes,parrot,book,1 -yes,definitely,original,book,1 -date,what's the current date,original,avail,0 -meeting_schedule,are there any meetings in the calendar for today?,parrot,avail,0 -meeting_schedule,what are meetings today?,parrot,avail,0 -yes,yay,lambada,book,1 -greeting,so what's up?,parrot,greet,4 -meeting_schedule,what's on my calendar?,parrot,avail,0 -no,naw,original,cancel,3 -date,tell me what's the day?,parrot,avail,0 -thank_you,my gratitude,parrot,bye,2 -no,ill pass,original,cancel,3 -date,in eight days?,parrot,avail,0 -thank_you,you answered,parrot,bye,2 -goodbye,this conversation was great,parrot,bye,2 -yes,sure,original,book,1 -no,hell nah,original,cancel,3 -no,negative,original,cancel,3 -how_busy,what's the wait for the red lobster?,parrot,avail,0 -thank_you,you've been amazing,lambada,bye,2 -goodbye,bye,original,bye,2 -reminder_update,what's a reminder,parrot,resched,5 -goodbye,goodbye,original,bye,2 -thank_you,"thanks, that's helpful",original,bye,2 -thank_you,awesome thanks,parrot,bye,2 -how_busy,how long will the wait be at the chili's at 7pm,lambada,avail,0 -greeting,whats new?,parrot,greet,4 -yes,you're right,original,book,1 -no,naw,parrot,cancel,3 -goodbye,goodbye to yours,parrot,bye,2 -no,it's negative,parrot,cancel,3 -schedule_meeting,i must get a meeting room,parrot,book,1 -thank_you,well done,parrot,bye,2 -thank_you,thank you!,original,bye,2 -greeting,bonjour,original,greet,4 -yes,i'm ready to say yes,parrot,book,1 -how_busy,when will the restaurant be most busy?,parrot,avail,0 -yes,right,parrot,book,1 -no,it's false,parrot,cancel,3 -greeting,how's life?,parrot,greet,4 -calendar,show me my calendar for march 2?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -greeting,ahoy,lambada,greet,4 -calendar_update,all events on my calendar with the word girlfriend in them,parrot,resched,5 -no,say negative,parrot,cancel,3 -greeting,hola,original,greet,4 -goodbye,talk later,original,bye,2 -yes,let's do that,parrot,book,1 -goodbye,nice talk,lambada,bye,2 -yes,"yes, please",parrot,book,1 -thank_you,i appeciate it,parrot,bye,2 -meeting_schedule,when is my next meeting with kevin scheduled to begin?,parrot,avail,0 -yes,yup,original,book,1 -yes,okay,original,book,1 -no,negative,original,cancel,3 -greeting,whats up?,parrot,greet,4 -goodbye,"bye-bye, my friend",lambada,bye,2 -greeting,hey,original,greet,4 -greeting,what's my feeling?,parrot,greet,4 -calendar,tell me what my calendar looks like on march 1st,parrot,avail,0 -thank_you,so grateful,parrot,bye,2 -yes,affirmitive,original,book,1 -yes,okay,original,book,1 -yes,approved,original,book,1 -greeting,how is ife treating you,parrot,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -yes,that checks out,original,book,1 -yes,yeah,original,book,1 -greeting,hello and how are things?,parrot,greet,4 -greeting,what's new,lambada,greet,4 -no,FALSE,original,cancel,3 -cancel_reservation,i don't need a reservation any more,parrot,cancel,3 -goodbye,wonderful conversation,lambada,bye,2 -greeting,how's life?,parrot,greet,4 -greeting,hey there!,original,greet,4 -meeting_schedule,when are my meetings today between noon and one?,original,avail,0 -greeting,hi there,original,greet,4 -how_busy,wait at jalapeno ranch?,parrot,avail,0 -greeting,how are you treated?,parrot,greet,4 -no,no?,parrot,cancel,3 -yes,affirmitive,original,book,1 -goodbye,good-bye,parrot,bye,2 -greeting,heyo,original,greet,4 -calendar,how does my calendar look on thursday 14?,parrot,avail,0 -how_busy,please tell me what it is like in olive garden right now?,parrot,avail,0 -schedule_meeting,can i meet kate at 8am?,parrot,book,1 -greeting,wassup,original,greet,4 -calendar,what's going on my calendar for march 12th?,parrot,avail,0 -goodbye,peace out,original,bye,2 -goodbye,adios ai,original,bye,2 -goodbye,my way,parrot,bye,2 -calendar,what's the next day of march?,parrot,avail,0 -greeting,salutations!,original,greet,4 -yes,yay,lambada,book,1 -goodbye,peace,original,bye,2 -yes,facts,original,book,1 -thank_you,thank you,original,bye,2 -no,i believe it's incorrect,lambada,cancel,3 -greeting,all right now?,parrot,greet,4 -greeting,wassup,original,greet,4 -no,the wrong answer,parrot,cancel,3 -schedule_meeting,do you have a meeting room between 10 and 4?,parrot,book,1 -no,no way,original,cancel,3 -goodbye,adios!,original,bye,2 -yes,perfect,parrot,book,1 -goodbye,i'm gone,parrot,bye,2 -date,today?,parrot,avail,0 -yes,it's true,original,book,1 -greeting,bonjour,original,greet,4 -yes,that's a fact,lambada,book,1 -yes,accepted,original,book,1 -goodbye,the talk was nice,lambada,bye,2 -how_busy,how busy is ihop?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -no,negative,original,cancel,3 -goodbye,i'll go,parrot,bye,2 -yes,absolutely!,original,book,1 -thank_you,appreciated,original,bye,2 -how_busy,can you tell me the amount of wait time in the restaurant?,parrot,avail,0 -date,do you know what the date will be three months from now?,lambada,avail,0 -thank_you,i appeciate it,original,bye,2 -thank_you,your answer pleased me,original,bye,2 -goodbye,farewell,original,bye,2 -goodbye,goodbye soon,lambada,bye,2 -thank_you,you're welcome,parrot,bye,2 -no,"no, that's incorrect",original,cancel,3 -yes,yay,lambada,book,1 -yes,confirm,original,book,1 -thank_you,you helped,parrot,bye,2 -thank_you,you're so much help,parrot,bye,2 -goodbye,farewell to you,lambada,bye,2 -meeting_schedule,how did you meet mary?,parrot,avail,0 -yes,it's positive,parrot,book,1 -goodbye,later!,original,bye,2 -yes,seems true,parrot,book,1 -no,that's bad,parrot,cancel,3 -goodbye,farewell,original,bye,2 -date,what day of the week are we on?,original,avail,0 -yes,indeed,original,book,1 -no,not correct,parrot,cancel,3 -thank_you,good job,lambada,bye,2 -goodbye,get there soon,lambada,bye,2 -thank_you,you have my gratitude,original,bye,2 -goodbye,adios,original,bye,2 -no,no way!,original,cancel,3 -greeting,salutations!,original,greet,4 -yes,yep,original,book,1 -no,that's certainly false,parrot,cancel,3 -how_busy,mcdonald's busy around 9?,parrot,avail,0 -yes,exactly right,original,book,1 -calendar,can you check my calendar for events on march 11?,parrot,avail,0 -yes,great,original,book,1 -yes,agreed,original,book,1 -goodbye,sayonara,original,bye,2 -how_busy,how long will it be in this restaurant?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -thank_you,thanks for responding,parrot,bye,2 -schedule_meeting,i need help with setting a meeting,parrot,book,1 -yes,right,parrot,book,1 -meeting_schedule,do you have a meeting on my calendar today?,parrot,avail,0 -greeting,how've you been feeling,original,greet,4 -date,today?,parrot,avail,0 -yes,certainly,parrot,book,1 -greeting,how is my day,original,greet,4 -greeting,hello siri,original,greet,4 -greeting,ahoy,lambada,greet,4 -goodbye,say goodbye now,parrot,bye,2 -no,false sure,parrot,cancel,3 -how_busy,how busy is the olive garden at 10?,parrot,avail,0 -calendar,what's the daytime show next week?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -how_busy,how busy will the olive garden be at 730pm?,parrot,avail,0 -goodbye,for now,parrot,bye,2 -yes,sure,original,book,1 -date,tell me what the date is tomorrow?,original,avail,0 -yes,absolutely!,original,book,1 -date,date please,original,avail,0 -no,negation,parrot,cancel,3 -greeting,hiya!,original,greet,4 -thank_you,gracias,original,bye,2 -greeting,aho,parrot,greet,4 -goodbye,very nice conversation,parrot,bye,2 -yes,yes please,original,book,1 -how_busy,is the ozone restaurant expected to have a long wait at 5pm?,parrot,avail,0 -yes,i guess,parrot,book,1 -goodbye,goodbye!,original,bye,2 -thank_you,nice,parrot,bye,2 -no,no!,original,cancel,3 -no,nothing good,parrot,cancel,3 -greeting,what's my day like?,parrot,greet,4 -no,"no, that is invalid",original,cancel,3 -how_busy,is ihop busy around 815?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -how_busy,how long will the wait be if i want to be at the red lobster,parrot,avail,0 -date,what date will it be in five days?,parrot,avail,0 -goodbye,i'll see you later,lambada,bye,2 -goodbye,good seeing you,original,bye,2 -yes,i know,parrot,book,1 -how_busy,how long would i have to wait for a table at macaroni and cheese,lambada,avail,0 -cancel_reservation,what do i need to do to cancel my reservation?,parrot,cancel,3 -calendar,get events in my calendar,parrot,avail,0 -yes,definitely,original,book,1 -yes,10-Apr,original,book,1 -greeting,hi,original,greet,4 -no,no,lambada,cancel,3 -yes,great,original,book,1 -no,negation,parrot,cancel,3 -goodbye,sign off,parrot,bye,2 -schedule_meeting,help me know how to set up a meeting,lambada,book,1 -greeting,how's life?,parrot,greet,4 -greeting,how are things with you?,parrot,greet,4 -goodbye,good bye,original,bye,2 -thank_you,your answer was enjoyable,original,bye,2 -yes,roger that,original,book,1 -greeting,hola,original,greet,4 -goodbye,great talk thanks for coming,parrot,bye,2 -thank_you,nice,parrot,bye,2 -no,negatory?,parrot,cancel,3 -goodbye,adios!,original,bye,2 -goodbye,later gator!,original,bye,2 -date,describe the day?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -reminder_update,give me a reminder to pay taxes on monday,parrot,resched,5 -no,it's negative,parrot,cancel,3 -yes,yeap,original,book,1 -yes,approved,original,book,1 -date,today?,parrot,avail,0 -goodbye,thanks for talking,original,bye,2 -greeting,whats up?,parrot,greet,4 -greeting,how's life?,parrot,greet,4 -greeting,heller,original,greet,4 -schedule_meeting,i have to schedule a meeting with stanley at 6pm,parrot,book,1 -greeting,"hello, friend",original,greet,4 -goodbye,regards,original,bye,2 -greeting,how does ai do?,parrot,greet,4 -goodbye,you've been talking to me,parrot,bye,2 -goodbye,nice talk,lambada,bye,2 -how_busy,show me the current wait time at the peppermill?,parrot,avail,0 -thank_you,"thanks, that's helpful",original,bye,2 -no,that is wrong,original,cancel,3 -meeting_schedule,do you have any meetings between 8 and 9 today?,parrot,avail,0 -greeting,hello good day,parrot,greet,4 -date,in five days?,parrot,avail,0 -greeting,hiya,original,greet,4 -no,is my false statement?,parrot,cancel,3 -yes,uh huh,original,book,1 -no,it's negative,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -goodbye,fairwell?,parrot,bye,2 -how_busy,how long is the line at the restaurant before dinner,parrot,avail,0 -greeting,how're you doing,original,greet,4 -schedule_meeting,please schedule a meeting with john smith at 10 am tomorrow?,parrot,book,1 -yes,good,parrot,book,1 -greeting,how you're doing?,parrot,greet,4 -date,if you can give me the date today,parrot,avail,0 -date,today?,parrot,avail,0 -thank_you,you've helped,parrot,bye,2 -thank_you,appreciated,original,bye,2 -goodbye,goodbye bye,parrot,bye,2 -how_busy,how busy do you have to be to get a table at this restaurant?,parrot,avail,0 -how_busy,how long is a table in the olive garden right now?,parrot,avail,0 -greeting,good day,original,greet,4 -greeting,nice day,lambada,greet,4 -greeting,hi,original,greet,4 -goodbye,see ya later,original,bye,2 -greeting,tell me the way my day goes?,parrot,greet,4 -yes,right,parrot,book,1 -reminder_update,reminder to prepare for my meeting at 10 am,parrot,resched,5 -no,i disagree,parrot,cancel,3 -no,that's false,original,cancel,3 -goodbye,have fun?,lambada,bye,2 -yes,great,original,book,1 -greeting,"hello, ai",original,greet,4 -goodbye,goodbyes,parrot,bye,2 -yes,that is true,original,book,1 -goodbye,go easy,parrot,bye,2 -goodbye,good conversation,parrot,bye,2 -thank_you,thanks!,original,bye,2 -calendar,find events on my calendar,parrot,avail,0 -no,but that's not factual,parrot,cancel,3 -yes,let's do it,parrot,book,1 -no,that's not the truth,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -yes,TRUE,lambada,book,1 -no,it seems not,original,cancel,3 -greeting,hi,original,greet,4 -calendar,check my calendar to see if i have any goals set for my current account,lambada,avail,0 -greeting,"hey, what's up with you",lambada,greet,4 -reminder_update,i want to get reminded to clean my room,original,resched,5 -reminder_update,please remember to pay my taxes,parrot,resched,5 -no,and i'm sorry,parrot,cancel,3 -calendar,show me my calendar?,parrot,avail,0 -goodbye,adios,original,bye,2 -goodbye,"syonara, ai device!",original,bye,2 -goodbye,bye,original,bye,2 -goodbye,wait for me later,parrot,bye,2 -thank_you,many thanks,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,i enjoy our conversation,parrot,bye,2 -greeting,what's new?,parrot,greet,4 -goodbye,bye my friend,parrot,bye,2 -no,no thanks,original,cancel,3 -how_busy,is there a long wait at the red lobster?,lambada,avail,0 -no,negatory?,parrot,cancel,3 -date,today's date is exactly what,parrot,avail,0 -goodbye,farewell,original,bye,2 -calendar_update,take pat's appointment off of my calendar,parrot,resched,5 -thank_you,good job,lambada,bye,2 -no,that's so false,parrot,cancel,3 -reminder_update,new reminder please,lambada,resched,5 -yes,positive,parrot,book,1 -date,what's the day now?,parrot,avail,0 -yes,definitely,original,book,1 -goodbye,fairwell?,parrot,bye,2 -goodbye,adios,original,bye,2 -greeting,hiya!,original,greet,4 -no,not happening,original,cancel,3 -goodbye,sayonara,original,bye,2 -calendar_update,delete everything from my calendar,parrot,resched,5 -thank_you,why thank you?,original,bye,2 -greeting,yo,original,greet,4 -greeting,aloha,original,greet,4 -calendar_update,take away the party for sally from my calendar,parrot,resched,5 -goodbye,goodbye later,parrot,bye,2 -yes,yeah,original,book,1 -thank_you,appreciated,original,bye,2 -yes,absolutely!,original,book,1 -greeting,"hey, what's up",original,greet,4 -no,it's very wrong,parrot,cancel,3 -thank_you,thanks a lot,original,bye,2 -meeting_schedule,what's my meeting schedule today?,parrot,avail,0 -yes,good,parrot,book,1 -no,FALSE,lambada,cancel,3 -meeting_schedule,do you know when i'm meeting nick?,parrot,avail,0 -goodbye,i'll leave now,parrot,bye,2 -yes,perfect,parrot,book,1 -no,no please,parrot,cancel,3 -yes,yeah you got it,lambada,book,1 -yes,good,parrot,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -goodbye,bye!,original,bye,2 -thank_you,again thanks,parrot,bye,2 -thank_you,thanks!,original,bye,2 -no,not correct,parrot,cancel,3 -yes,yes that is correct,original,book,1 -no,negative certainly,parrot,cancel,3 -schedule_meeting,can you schedule a meeting with matt for 3 people?,parrot,book,1 -goodbye,nice to see you again,original,bye,2 -goodbye,fairwell,original,bye,2 -yes,good,parrot,book,1 -goodbye,regards,original,bye,2 -thank_you,thank you again,parrot,bye,2 -no,it's negative,parrot,cancel,3 -how_busy,how long is the wait for a seated table at olive garden,lambada,avail,0 -yes,approved,original,book,1 -goodbye,bye!,original,bye,2 -yes,that is totally true,original,book,1 -no,negative for sure,original,cancel,3 -goodbye,nice chat today,lambada,bye,2 -calendar,tell me what's on my calendar for april 24?,parrot,avail,0 -no,and i'm sorry,parrot,cancel,3 -yes,absolutely,original,book,1 -yes,certainly,parrot,book,1 -no,hell nah,original,cancel,3 -greeting,wassup,original,greet,4 -yes,my response is yes,parrot,book,1 -meeting_schedule,i want to know how many meetings i have today,parrot,avail,0 -yes,indeed,original,book,1 -schedule_meeting,can you help me find a meeting?,parrot,book,1 -greeting,what's happened?,parrot,greet,4 -goodbye,bye bye!,original,bye,2 -yes,confirm,original,book,1 -how_busy,how long would it take to wait in chili?,parrot,avail,0 -greeting,hola,original,greet,4 -yes,confirmed,original,book,1 -no,no good,original,cancel,3 -goodbye,bye bye,lambada,bye,2 -calendar,tell me what's on my calendar for may 1?,parrot,avail,0 -greeting,what's happening,original,greet,4 -goodbye,"enjoy my day, bye",lambada,bye,2 -goodbye,glad we talked,parrot,bye,2 -thank_you,nice,parrot,bye,2 -how_busy,what's the average wait time at chili's right now?,parrot,avail,0 -date,what date will it be in 14 days?,parrot,avail,0 -yes,yes,original,book,1 -goodbye,my way,parrot,bye,2 -goodbye,good night,original,bye,2 -yes,approved,original,book,1 -thank_you,thanks,original,bye,2 -goodbye,regards,original,bye,2 -no,no!,original,cancel,3 -thank_you,thank you for the help,original,bye,2 -thank_you,you've helped,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,goodbye now,parrot,bye,2 -no,nada,original,cancel,3 -no,no this is false,parrot,cancel,3 -how_busy,show me what it's like in this restaurant right now?,parrot,avail,0 -yes,confirmed,original,book,1 -greeting,hey how's life,original,greet,4 -no,naw,original,cancel,3 -no,nothing,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -greeting,hey there!,original,greet,4 -goodbye,take a break,parrot,bye,2 -yes,obviously,parrot,book,1 -no,it is not that,lambada,cancel,3 -meeting_schedule,meetings today,original,avail,0 -no,no thank you,original,cancel,3 -no,no?,parrot,cancel,3 -date,current date,original,avail,0 -no,i disagree with that,lambada,cancel,3 -how_busy,is the restaurant always crowded?,parrot,avail,0 -calendar,let me know if there are any march schedules for me,lambada,avail,0 -calendar,is there anything planned for january 1st?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -how_busy,is red robin busy at 7?,lambada,avail,0 -no,that's absolutely wrong,parrot,cancel,3 -calendar,do you have calendar entries for march 8th?,parrot,avail,0 -yes,definitely,original,book,1 -yes,it'd be great,parrot,book,1 -goodbye,the chat was great,parrot,bye,2 -how_busy,how busy is peanut butter at 5 pm,lambada,avail,0 -no,FALSE,lambada,cancel,3 -thank_you,i'm thankful,original,bye,2 -yes,"yes, please",original,book,1 -reminder_update,keep me in mind,parrot,resched,5 -thank_you,thanks for that!,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -date,what will be the date in 840 days?,lambada,avail,0 -calendar_update,cancel my date with james on 28 march,parrot,resched,5 -yes,accept,parrot,book,1 -yes,it's certainly true,parrot,book,1 -calendar,can you check my calendar for 17th?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -no,i think it's false,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -no,that's no,parrot,cancel,3 -greeting,hi ai,original,greet,4 -no,the negator,parrot,cancel,3 -no,i disagree with that,lambada,cancel,3 -yes,certainly,parrot,book,1 -greeting,heller,original,greet,4 -goodbye,bye bye now,lambada,bye,2 -yes,my response is yes,parrot,book,1 -no,nothing,parrot,cancel,3 -greeting,hello how are things?,parrot,greet,4 -goodbye,i've got to run now,original,bye,2 -thank_you,thanks,original,bye,2 -how_busy,how busy is the chili dog at 5pm?,parrot,avail,0 -reminder_update,how about a reminder?,parrot,resched,5 -meeting_schedule,what are meetings today?,parrot,avail,0 -yes,TRUE,original,book,1 -thank_you,thanks for the update,lambada,bye,2 -goodbye,goodbye later,parrot,bye,2 -schedule_meeting,make an appointment for me,parrot,book,1 -no,not good,parrot,cancel,3 -goodbye,bye now,original,bye,2 -yes,positive,parrot,book,1 -goodbye,fairwell,original,bye,2 -yes,that's correct,original,book,1 -goodbye,greetings,parrot,bye,2 -schedule_meeting,create a meeting room for 11 o'clock,parrot,book,1 -thank_you,thank you for the vacation,parrot,bye,2 -how_busy,how long will it be at red lobster,lambada,avail,0 -greeting,hey there,original,greet,4 -yes,huh,parrot,book,1 -goodbye,farewell!,original,bye,2 -no,nothing,parrot,cancel,3 -goodbye,adios!,original,bye,2 -no,"no, don't do that",original,cancel,3 -greeting,tell me how you're doing,parrot,greet,4 -greeting,salutation,parrot,greet,4 -no,no?,parrot,cancel,3 -yes,i want it,parrot,book,1 -goodbye,peace,original,bye,2 -no,no,lambada,cancel,3 -greeting,bonjour,original,greet,4 -thank_you,you've tried,parrot,bye,2 -greeting,hey there fellow,original,greet,4 -yes,that's correct,original,book,1 -goodbye,see you later alligator,original,bye,2 -cancel_reservation,repeal the dinner reservation,original,cancel,3 -no,say negative,parrot,cancel,3 -thank_you,so grateful,parrot,bye,2 -yes,affirmitive,original,book,1 -goodbye,have fun?,lambada,bye,2 -cancel_reservation,abrogate the reservation of dinner,parrot,cancel,3 -greeting,hi how are you doing,parrot,greet,4 -yes,my answer is yes,parrot,book,1 -goodbye,i'm gone,parrot,bye,2 -meeting_schedule,do i have to go to a meeting today?,parrot,avail,0 -reminder_update,let me know,parrot,resched,5 -greeting,hey fellow,parrot,greet,4 -reminder_update,remind me to wash my clothes,parrot,resched,5 -how_busy,how busy is red robin at 6:30,lambada,avail,0 -yes,i guess you're right,parrot,book,1 -yes,i know,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,hello bs,parrot,greet,4 -no,not really,original,cancel,3 -no,that is so false,original,cancel,3 -no,nay,original,cancel,3 -greeting,how are you,original,greet,4 -no,negation,parrot,cancel,3 -greeting,ahoy there,lambada,greet,4 -no,nope not it,original,cancel,3 -cancel_reservation,get rid of my reservation for dinner in umami,parrot,cancel,3 -goodbye,good talk,parrot,bye,2 -greeting,welcome,parrot,greet,4 -yes,all right,original,book,1 -yes,confirm,original,book,1 -yes,that's right,original,book,1 -yes,that's correct,original,book,1 -how_busy,how busy will the olive garden be around noon,parrot,avail,0 -yes,yup,original,book,1 -yes,i know,parrot,book,1 -goodbye,see ya,lambada,bye,2 -date,give me tomorrow's date please,original,avail,0 -no,absolutely not,original,cancel,3 -goodbye,my friend,parrot,bye,2 -greeting,what's new,lambada,greet,4 -goodbye,the conversation with you was enjoyable,parrot,bye,2 -greeting,and how're you doing,parrot,greet,4 -greeting,salutations,parrot,greet,4 -date,which date today?,parrot,avail,0 -how_busy,how long will it take to get seated at the immaculately clean restaurant,lambada,avail,0 -greeting,are you well?,original,greet,4 -greeting,how's life?,parrot,greet,4 -goodbye,just relax,parrot,bye,2 -yes,sure,original,book,1 -reminder_update,get me a reminder to take care of the car,lambada,resched,5 -goodbye,good conversation,parrot,bye,2 -no,naw,parrot,cancel,3 -cancel_reservation,cancel tonight's dinner reservation,original,cancel,3 -no,that's a negative,original,cancel,3 -no,nope,original,cancel,3 -greeting,"wake up, ai",original,greet,4 -goodbye,see ya,original,bye,2 -greeting,how were you?,parrot,greet,4 -yes,is true,parrot,book,1 -yes,ya,original,book,1 -greeting,hey what's up,original,greet,4 -no,nada,original,cancel,3 -how_busy,how long is the wait at buffalo wings,lambada,avail,0 -goodbye,on the highway,parrot,bye,2 -thank_you,thank you for the response,lambada,bye,2 -date,give me a date,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -thank_you,thanks,original,bye,2 -yes,TRUE,original,book,1 -yes,absolutely!,original,book,1 -greeting,have you been good??,parrot,greet,4 -reminder_update,you can remind me,parrot,resched,5 -yes,oh yes,original,book,1 -calendar,do you have appointments for saturday?,parrot,avail,0 -goodbye,regards,original,bye,2 -cancel_reservation,can you cancel my reservation at 4pm at ruth's?,parrot,cancel,3 -how_busy,what is the current wait time at the peppermill?,lambada,avail,0 -yes,yes,original,book,1 -goodbye,goodbye,original,bye,2 -goodbye,goodbye then,parrot,bye,2 -goodbye,was nice to talk to you,parrot,bye,2 -goodbye,farewell!,original,bye,2 -greeting,heyo,original,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -no,negatory?,parrot,cancel,3 -calendar_update,remove the june 7 event called symphony from my calendars,parrot,resched,5 -no,no no thanks,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -date,today's date is what,original,avail,0 -no,erroneous,parrot,cancel,3 -date,what date is it?,original,avail,0 -how_busy,how busy will chili's be at 6 pm,lambada,avail,0 -goodbye,buhbye,original,bye,2 -greeting,how's everything,original,greet,4 -no,not a good sign,parrot,cancel,3 -goodbye,good luck,lambada,bye,2 -no,in hell it's not true,parrot,cancel,3 -goodbye,bye,original,bye,2 -greeting,whats up?,parrot,greet,4 -schedule_meeting,please help me with a meeting,lambada,book,1 -no,that seems wrong,lambada,cancel,3 -reminder_update,please remember me,parrot,resched,5 -thank_you,my gratitude,parrot,bye,2 -goodbye,glad we can talk,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -goodbye,goodbye for now,parrot,bye,2 -goodbye,tootles,original,bye,2 -yes,"yes, that is right",original,book,1 -how_busy,how long will it take to wait for the red lobster at 730?,parrot,avail,0 -greeting,hello how you doing,lambada,greet,4 -yes,say positive,parrot,book,1 -meeting_schedule,when is my meeting with christian?,parrot,avail,0 -greeting,what's new?,parrot,greet,4 -greeting,hello,original,greet,4 -yes,yeah that's right,lambada,book,1 -yes,yes,original,book,1 -how_busy,how busy will angie be around 5 pm,parrot,avail,0 -goodbye,good call,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -yes,it appears true,parrot,book,1 -yes,obviously,parrot,book,1 -no,nada,original,cancel,3 -greeting,are you all right?,parrot,greet,4 -schedule_meeting,please give me a meeting room for 9 am please,parrot,book,1 -goodbye,"later, goodbye",lambada,bye,2 -yes,facts,original,book,1 -meeting_schedule,what if i have a meeting?,parrot,avail,0 -greeting,well hello,original,greet,4 -greeting,"hey, ai",original,greet,4 -goodbye,take it easy,lambada,bye,2 -goodbye,good bye,original,bye,2 -yes,roger that,original,book,1 -no,negating,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -goodbye,will leave now,parrot,bye,2 -no,i say no to that question,original,cancel,3 -how_busy,wait for a long wait at the chocolate fountain around 11am?,parrot,avail,0 -how_busy,how long is the wait at the chipotle factory?,parrot,avail,0 -goodbye,adios!,original,bye,2 -thank_you,i appreciate that answer,original,bye,2 -greeting,whats up?,parrot,greet,4 -greeting,hey,original,greet,4 -date,what is the day?,original,avail,0 -thank_you,merci beaucoup,original,bye,2 -thank_you,thanks very much for your answer,parrot,bye,2 -date,tell me what date it will be from tomorrow?,lambada,avail,0 -date,what's the date now?,parrot,avail,0 -yes,ya,original,book,1 -thank_you,the best,parrot,bye,2 -how_busy,what's the wait?,parrot,avail,0 -no,that is very false,lambada,cancel,3 -goodbye,bye!,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,for the help i'm thankful,parrot,bye,2 -no,erroneous,parrot,cancel,3 -schedule_meeting,i need a meeting with jane for 3pm,parrot,book,1 -how_busy,list the typical wait times at ihuachina?,parrot,avail,0 -no,not right now,original,cancel,3 -greeting,hey there!,original,greet,4 -thank_you,merci beaucoup,original,bye,2 -reminder_update,i need to apply for a credit card can you remind me?,parrot,resched,5 -calendar,is there any note on the calendar for black friday?,parrot,avail,0 -yes,i vote yes,original,book,1 -how_busy,how long can you expect to wait to be seated at an italian restaurant?,parrot,avail,0 -goodbye,good bye,original,bye,2 -date,he's got the date,parrot,avail,0 -yes,that's correct,original,book,1 -goodbye,my friend,parrot,bye,2 -how_busy,how long will i have to wait at the cheesecake factory?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -greeting,whats up?,parrot,greet,4 -no,nothing good,parrot,cancel,3 -yes,it's true,original,book,1 -goodbye,later good luck,parrot,bye,2 -goodbye,fairwell,original,bye,2 -date,what year is tomorrow?,parrot,avail,0 -how_busy,when will i have to wait until i make a reservation in the olive garden?,parrot,avail,0 -greeting,aho,parrot,greet,4 -goodbye,thank you for talking to me,lambada,bye,2 -meeting_schedule,check my meetings with christopher,lambada,avail,0 -greeting,salutations,parrot,greet,4 -thank_you,you gave me this,parrot,bye,2 -thank_you,your answer pleased me,original,bye,2 -no,not true,original,cancel,3 -reminder_update,add a note,parrot,resched,5 -yes,thats right,original,book,1 -goodbye,sayonara,original,bye,2 -yes,sure,original,book,1 -goodbye,fairwell,original,bye,2 -no,no it's not right at all,parrot,cancel,3 -no,don't agree,parrot,cancel,3 -date,what day of the month?,parrot,avail,0 -thank_you,thanks for that!,original,bye,2 -thank_you,thanks so much ai,original,bye,2 -goodbye,my way,parrot,bye,2 -greeting,salutations!,original,greet,4 -goodbye,bye,original,bye,2 -thank_you,thanks,original,bye,2 -yes,my answer is yes,parrot,book,1 -no,that's totally wrong!,original,cancel,3 -reminder_update,pay taxes on monday,parrot,resched,5 -yes,certainly,parrot,book,1 -yes,yeah yeah,lambada,book,1 -yes,yeap,original,book,1 -yes,agreed,original,book,1 -calendar_update,put the abc on my calendar for tuesday the 8th,parrot,resched,5 -goodbye,goodbye soon,lambada,bye,2 -yes,"yes, please",parrot,book,1 -no,definitely not,original,cancel,3 -greeting,hiya,original,greet,4 -no,that's inaccurate,original,cancel,3 -thank_you,i'm thankful,original,bye,2 -goodbye,see you later!,original,bye,2 -no,it's actually a lie,parrot,cancel,3 -greeting,hello what's up?,parrot,greet,4 -yes,approved,original,book,1 -yes,roger that,original,book,1 -greeting,"hey, how's it going",original,greet,4 -goodbye,glad to talk to you,parrot,bye,2 -no,no?,parrot,cancel,3 -date,what's the current date of,parrot,avail,0 -goodbye,good talk,parrot,bye,2 -greeting,heyo,original,greet,4 -yes,ya,original,book,1 -goodbye,later,original,bye,2 -yes,positive,original,book,1 -no,it's certainly a false claim,parrot,cancel,3 -how_busy,will there be a wait at red robin at 6 pm,lambada,avail,0 -schedule_meeting,please book a meeting room for thursday at 5pm,parrot,book,1 -no,nada,original,cancel,3 -no,that's a false,lambada,cancel,3 -how_busy,how long does it take to wait in an italian restaurant?,parrot,avail,0 -reminder_update,i need to be notified of a maintenance reminder,lambada,resched,5 -yes,absolutely!,original,book,1 -yes,"yes, please",parrot,book,1 -schedule_meeting,is it possible to schedule a meeting for scott today?,parrot,book,1 -thank_you,thanks for my cooperation,original,bye,2 -yes,yeap,original,book,1 -goodbye,regards,original,bye,2 -calendar_update,can you change the date of the doctor's appointment event in my calendar from april 1 to april 3?,parrot,resched,5 -date,what day are we?,parrot,avail,0 -no,that's negative,parrot,cancel,3 -thank_you,you helped me out,parrot,bye,2 -no,it's a mistake,parrot,cancel,3 -goodbye,for now,parrot,bye,2 -calendar,what is on my calendar for march 18?,parrot,avail,0 -how_busy,how busy is the chicken salad place at 5:30,lambada,avail,0 -yes,yeah yeah,lambada,book,1 -yes,uh-huh,original,book,1 -no,that's totally wrong,parrot,cancel,3 -goodbye,have fun?,lambada,bye,2 -date,can you tell me what today's date is?,original,avail,0 -goodbye,thank you for contacting me,parrot,bye,2 -no,definitely not,original,cancel,3 -yes,yep,original,book,1 -no,i'd say no,original,cancel,3 -date,what's today,original,avail,0 -thank_you,thank you?,parrot,bye,2 -thank_you,i'm so grateful for my check,parrot,bye,2 -greeting,hey,original,greet,4 -thank_you,you've been great,parrot,bye,2 -how_busy,is there a sitting time at the restaurant?,parrot,avail,0 -no,negating,parrot,cancel,3 -yes,indeed,original,book,1 -date,what's the date,original,avail,0 -no,is a lie?,parrot,cancel,3 -yes,yep,original,book,1 -meeting_schedule,meetings today,original,avail,0 -no,negative for sure,original,cancel,3 -how_busy,tell me the time to wait if i want to eat at the cheese cake factory?,parrot,avail,0 -calendar,is there anything on my calendar for may 3?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -no,naw,original,cancel,3 -date,what's the year?,parrot,avail,0 -yes,yay,lambada,book,1 -thank_you,thanks for my help!,original,bye,2 -meeting_schedule,what's on my schedule today?,parrot,avail,0 -thank_you,your answer was good,original,bye,2 -yes,positive,original,book,1 -greeting,hello,original,greet,4 -thank_you,you're welcome,parrot,bye,2 -yes,it seems true,parrot,book,1 -goodbye,goodbye later,parrot,bye,2 -reminder_update,do you want me to remind you to pay my taxes tomorrow?,parrot,resched,5 -reminder_update,add a reminder to check how the body is decomposing,original,resched,5 -no,negating,parrot,cancel,3 -greeting,hey fellows,parrot,greet,4 -goodbye,good night,original,bye,2 -yes,yay,lambada,book,1 -greeting,hey bs,lambada,greet,4 -thank_you,okay thank you,parrot,bye,2 -goodbye,i'll leave now,parrot,bye,2 -yes,confirm,original,book,1 -no,that's completely wrong,parrot,cancel,3 -how_busy,what's the wait for chili's tonight?,parrot,avail,0 -no,that's negative,parrot,cancel,3 -greeting,ahoy hoy,original,greet,4 -no,that's very wrong,parrot,cancel,3 -yes,that's a clear yes,parrot,book,1 -goodbye,wonderful conversation,lambada,bye,2 -yes,affirmative,original,book,1 -meeting_schedule,meeting today,parrot,avail,0 -no,negation,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -thank_you,my thanks,parrot,bye,2 -no,no way,original,cancel,3 -yes,huh,parrot,book,1 -goodbye,bye!,original,bye,2 -how_busy,how long can i wait at the macaroni grill,parrot,avail,0 -greeting,hey yai,lambada,greet,4 -yes,absolutely!,original,book,1 -goodbye,and then goodbye,parrot,bye,2 -how_busy,are ihops packed around 9 pm?,parrot,avail,0 -reminder_update,set a reminder for the meeting tomorrow,parrot,resched,5 -meeting_schedule,is there a meeting planned today?,parrot,avail,0 -calendar,tell me my calendar for march 1st?,parrot,avail,0 -no,negating,parrot,cancel,3 -cancel_reservation,can you tell the restaurant to cancel my reservation?,parrot,cancel,3 -no,it's no,parrot,cancel,3 -greeting,how's my day going?,parrot,greet,4 -thank_you,appreciated,original,bye,2 -no,erroneous,parrot,cancel,3 -yes,huh,parrot,book,1 -no,thanks no,parrot,cancel,3 -yes,of course,original,book,1 -no,that's no,parrot,cancel,3 -calendar_update,make not of my appointment for tomorrow on my calendar,original,resched,5 -goodbye,regards,original,bye,2 -no,it's a mistake,parrot,cancel,3 -goodbye,bye-bye,original,bye,2 -no,negatory?,parrot,cancel,3 -no,that's not correct,original,cancel,3 -yes,sure,original,book,1 -yes,correct,original,book,1 -yes,it's true,original,book,1 -greeting,good evening,original,greet,4 -goodbye,good chatting with you,lambada,bye,2 -calendar_update,can you add remember to register for the race on my calendar for the 15th of march?,original,resched,5 -yes,that makes sense as well,original,book,1 -yes,yeah,original,book,1 -no,FALSE,original,cancel,3 -schedule_meeting,how can i set up a meeting,original,book,1 -goodbye,farewell!,original,bye,2 -no,that is no,lambada,cancel,3 -greeting,hey there,original,greet,4 -no,invalid,original,cancel,3 -yes,oh-huh,parrot,book,1 -thank_you,gracias,original,bye,2 -yes,agreed,original,book,1 -greeting,hola,original,greet,4 -how_busy,can you give me some info about how long the wait will be at mrs and mrs after 9?,lambada,avail,0 -goodbye,later good luck,parrot,bye,2 -thank_you,you were a good help,parrot,bye,2 -no,there's no way this is true,parrot,cancel,3 -goodbye,good talking to you,lambada,bye,2 -no,nay,original,cancel,3 -meeting_schedule,when do i meet richard?,parrot,avail,0 -how_busy,is there a long wait at olive garden currently?,lambada,avail,0 -thank_you,i'm so grateful,parrot,bye,2 -yes,indeed,original,book,1 -thank_you,much obliged,original,bye,2 -meeting_schedule,what's my plan today?,parrot,avail,0 -date,i need to know what the date is tomorrow,parrot,avail,0 -calendar,what's in my calendar for march 20th?,parrot,avail,0 -no,naw,parrot,cancel,3 -no,is not true?,parrot,cancel,3 -greeting,hey how's life,original,greet,4 -no,no it's not,parrot,cancel,3 -goodbye,i'm leaving,parrot,bye,2 -how_busy,how long will it take to get a seat in the restaurant?,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -how_busy,how long will the wait be if i want to sit at the red lobster,parrot,avail,0 -greeting,hello hello good day,parrot,greet,4 -yes,uh-huh,original,book,1 -yes,indeed,original,book,1 -schedule_meeting,can you book a room for a friday meeting at 5pm?,parrot,book,1 -thank_you,your answer pleased me,original,bye,2 -yes,all right,parrot,book,1 -goodbye,goodbye,original,bye,2 -schedule_meeting,i need an agenda,parrot,book,1 -greeting,welcome,parrot,greet,4 -yes,"yes, please",parrot,book,1 -goodbye,farewell!,original,bye,2 -date,what's the date?,parrot,avail,0 -yes,facts,original,book,1 -thank_you,thankyou,parrot,bye,2 -greeting,hey,original,greet,4 -goodbye,"syonara, ai device!",original,bye,2 -no,nope,original,cancel,3 -greeting,how is everything going?,parrot,greet,4 -greeting,hey hey!,original,greet,4 -calendar,what do i have to do on march 2 that's on my calendar?,original,avail,0 -no,that's very false,parrot,cancel,3 -thank_you,thanks for that response,original,bye,2 -how_busy,how long will it take to make a reservation at a pizza outlet?,parrot,avail,0 -how_busy,is the breakfast full in the morning?,parrot,avail,0 -no,nothing,parrot,cancel,3 -goodbye,peace,original,bye,2 -yes,ok,original,book,1 -no,FALSE,original,cancel,3 -no,please no,parrot,cancel,3 -no,nada,original,cancel,3 -reminder_update,keep an eye on the film,parrot,resched,5 -thank_you,thankyou,parrot,bye,2 -thank_you,good job,lambada,bye,2 -thank_you,why did you thank me?,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -greeting,whats up,original,greet,4 -goodbye,goodbye to your,lambada,bye,2 -goodbye,fairwell?,parrot,bye,2 -goodbye,goodnight,original,bye,2 -goodbye,on the highway,parrot,bye,2 -reminder_update,please remember to visit ryan,parrot,resched,5 -goodbye,goodbye soon,lambada,bye,2 -meeting_schedule,when are we going to meet?,parrot,avail,0 -thank_you,your answer was good,original,bye,2 -goodbye,sayonara,original,bye,2 -date,when will it be?,parrot,avail,0 -no,no no no,parrot,cancel,3 -no,don't agree,parrot,cancel,3 -how_busy,how long will it be in the macaroni grill?,parrot,avail,0 -no,i believe it's wrong,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -thank_you,i thank you,original,bye,2 -goodbye,you're done,parrot,bye,2 -yes,positive,original,book,1 -no,that's not correct,original,cancel,3 -no,"no, you are wrong",original,cancel,3 -goodbye,later,original,bye,2 -thank_you,gracias,original,bye,2 -yes,yeah,original,book,1 -meeting_schedule,meeting today,parrot,avail,0 -thank_you,it pleased me,parrot,bye,2 -reminder_update,please remind me of the cookies,parrot,resched,5 -no,it's completely false,parrot,cancel,3 -greeting,how's my feeling?,parrot,greet,4 -no,it's actually a lie,parrot,cancel,3 -thank_you,thanks again,original,bye,2 -calendar,what's happening on the next day of march,parrot,avail,0 -schedule_meeting,how many meeting rooms are available between 1 and 4?,parrot,book,1 -meeting_schedule,what meetings do i have?,parrot,avail,0 -greeting,good day,original,greet,4 -goodbye,later,original,bye,2 -how_busy,the wait time at the cheesecake factory?,parrot,avail,0 -thank_you,please thank you,lambada,bye,2 -no,i believe it's not correct,parrot,cancel,3 -date,please date,parrot,avail,0 -no,but that's not true?,parrot,cancel,3 -no,negative sure,parrot,cancel,3 -yes,yep,original,book,1 -greeting,hola!,original,greet,4 -no,so that's no,parrot,cancel,3 -yes,correct,original,book,1 -no,so that's no,parrot,cancel,3 -how_busy,is the wait long?,parrot,avail,0 -how_busy,how often do people go to chili around 9pm,parrot,avail,0 -goodbye,adios,original,bye,2 -calendar,can you check what's on my calendar for march 2?,parrot,avail,0 -no,i believe it's incorrect,lambada,cancel,3 -yes,"yes, please",parrot,book,1 -how_busy,how busy is applebee's around 11:30,lambada,avail,0 -greeting,how are you,original,greet,4 -how_busy,how long does it take to get seated at chili's?,parrot,avail,0 -no,i disagree,parrot,cancel,3 -goodbye,good conversation,parrot,bye,2 -yes,accepted,original,book,1 -greeting,hey hey!,original,greet,4 -greeting,hi,original,greet,4 -no,i'll pass,original,cancel,3 -no,naw,parrot,cancel,3 -yes,let's do that,parrot,book,1 -how_busy,how busy is georgios around 11,lambada,avail,0 -greeting,how is it going? hello,parrot,greet,4 -cancel_reservation,the dinner reservation will not be needed,parrot,cancel,3 -calendar,let me know what my calendar shows for march 28th,parrot,avail,0 -goodbye,sayonara,original,bye,2 -thank_you,i am very grateful,original,bye,2 -yes,all right,original,book,1 -yes,agreed,original,book,1 -yes,obviously,parrot,book,1 -greeting,hola!,original,greet,4 -no,that's not what we want,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -date,a year?,parrot,avail,0 -thank_you,very grateful,parrot,bye,2 -reminder_update,please remind me to take my cat to the vet,parrot,resched,5 -no,i don't agree,parrot,cancel,3 -no,that's certainly false,parrot,cancel,3 -goodbye,very nice conversation,parrot,bye,2 -goodbye,good night,original,bye,2 -thank_you,nice,parrot,bye,2 -no,that's inaccurate,original,cancel,3 -greeting,how did you feel?,parrot,greet,4 -reminder_update,create a reminder,original,resched,5 -how_busy,would tio's be crowded at 7,original,avail,0 -goodbye,just relax,parrot,bye,2 -greeting,heller,original,greet,4 -yes,it's true,original,book,1 -how_busy,how long will it take to wait at 6 o'clock?,parrot,avail,0 -reminder_update,a new reminder,parrot,resched,5 -yes,certainly,parrot,book,1 -no,nope it's not true,parrot,cancel,3 -goodbye,tootles,original,bye,2 -greeting,welcome,parrot,greet,4 -goodbye,see ya,lambada,bye,2 -no,FALSE,original,cancel,3 -calendar_update,schedule family dinner on my calendar for march 8th,parrot,resched,5 -goodbye,i'll go,parrot,bye,2 -greeting,hi,original,greet,4 -meeting_schedule,when is my meeting with mark scheduled for?,lambada,avail,0 -greeting,hey bs,lambada,greet,4 -goodbye,see ya,original,bye,2 -schedule_meeting,secure us a meeting room for 9am on friday,original,book,1 -greeting,hello what's happening,parrot,greet,4 -yes,obviously,parrot,book,1 -thank_you,"nice, excellent!",original,bye,2 -thank_you,i'm very thankful,parrot,bye,2 -thank_you,i wish you were here earlier,original,bye,2 -yes,positive,parrot,book,1 -no,i say negative,original,cancel,3 -yes,yup,original,book,1 -goodbye,please talk to me,parrot,bye,2 -thank_you,i'm really grateful,parrot,bye,2 -no,negatory?,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -greeting,hello ai,parrot,greet,4 -goodbye,bye,original,bye,2 -greeting,heyo,original,greet,4 -yes,that's true,original,book,1 -how_busy,how busy is ihop?,parrot,avail,0 -how_busy,how busy is the pizza place at 6:00 pm,lambada,avail,0 -cancel_reservation,i need to cancel my reservation at tostada,lambada,cancel,3 -greeting,"ah-yah, how are things",lambada,greet,4 -date,what's the date,original,avail,0 -yes,do that?,original,book,1 -greeting,hi how's it going,lambada,greet,4 -goodbye,later good luck,parrot,bye,2 -no,negating,parrot,cancel,3 -reminder_update,keep an eye on the car,parrot,resched,5 -yes,i can tell you,parrot,book,1 -greeting,hey there!,original,greet,4 -no,that's bad,parrot,cancel,3 -yes,is a real statement,parrot,book,1 -how_busy,outback steakhouse at 6pm,parrot,avail,0 -calendar_update,can you cancel an improv class from my calendar for may 7?,parrot,resched,5 -no,negating,parrot,cancel,3 -thank_you,you have my thanks,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -no,"no, definitely not",original,cancel,3 -cancel_reservation,call the restaurant to cancel my reservation,parrot,cancel,3 -calendar,what's on my calendar for march 20,parrot,avail,0 -greeting,are you okay now?,parrot,greet,4 -no,nay,original,cancel,3 -yes,absolutely,original,book,1 -no,no?,parrot,cancel,3 -yes,it'll be yes,parrot,book,1 -date,what date?,parrot,avail,0 -yes,yes sir,original,book,1 -greeting,hola!,original,greet,4 -yes,facts,original,book,1 -goodbye,catch you around,original,bye,2 -goodbye,i'm leaving now,lambada,bye,2 -no,invalid,original,cancel,3 -date,what's it today?,parrot,avail,0 -calendar,what's on january 1st?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -no,negation,parrot,cancel,3 -greeting,hi how's it going,lambada,greet,4 -date,what's today?,parrot,avail,0 -goodbye,a good conversation,parrot,bye,2 -how_busy,how long before i can have a burger at olive garden,parrot,avail,0 -thank_you,thank you for that reply,original,bye,2 -no,negative,original,cancel,3 -goodbye,say goodbye now,parrot,bye,2 -goodbye,later good luck,parrot,bye,2 -date,in three days,parrot,avail,0 -date,what date is today?,original,avail,0 -yes,accepted,original,book,1 -thank_you,my sincere thanks,parrot,bye,2 -goodbye,sayonara,original,bye,2 -greeting,hello,original,greet,4 -goodbye,later goodbye,parrot,bye,2 -yes,yeap,original,book,1 -thank_you,thank you,original,bye,2 -no,negatory,original,cancel,3 -yes,yep,original,book,1 -thank_you,thanks!,original,bye,2 -greeting,"hi there, how's it going",lambada,greet,4 -goodbye,later then,lambada,bye,2 -greeting,will you tell me how the ai is doing,original,greet,4 -yes,yeap,original,book,1 -greeting,you good?,parrot,greet,4 -yes,10-Apr,original,book,1 -yes,oh-huh,parrot,book,1 -calendar_update,please clean my calendar,parrot,resched,5 -greeting,how's my family doing?,parrot,greet,4 -no,that's a false,lambada,cancel,3 -yes,its a for sure true,original,book,1 -no,that's no,parrot,cancel,3 -how_busy,what happens when i go to work at 5 o'clock?,parrot,avail,0 -how_busy,how long should i wait to be seated in the red rooster,parrot,avail,0 -goodbye,signing off,original,bye,2 -goodbye,buhbye,original,bye,2 -no,no,lambada,cancel,3 -no,negating,parrot,cancel,3 -date,what day?,parrot,avail,0 -reminder_update,i'd like a reminder,parrot,resched,5 -no,that's not what i want!,original,cancel,3 -schedule_meeting,can you arrange a meeting?,parrot,book,1 -goodbye,good luck later,parrot,bye,2 -goodbye,just relax,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -greeting,nice day,lambada,greet,4 -date,tell me what's the date today,parrot,avail,0 -goodbye,see ya,original,bye,2 -thank_you,good to look at,parrot,bye,2 -greeting,how are you?,parrot,greet,4 -cancel_reservation,please cancel my reservation at the grill,lambada,cancel,3 -goodbye,goodbyes,parrot,bye,2 -goodbye,bye,original,bye,2 -no,i don't think it is right,parrot,cancel,3 -date,today what date?,parrot,avail,0 -reminder_update,remind me to buy bread,parrot,resched,5 -goodbye,later,original,bye,2 -greeting,salutations!,original,greet,4 -how_busy,how busy is cheesecake factory around 6 pm,lambada,avail,0 -greeting,aloha,original,greet,4 -yes,i know it is true,parrot,book,1 -no,that's not correct,original,cancel,3 -yes,i agree,original,book,1 -thank_you,you've been great,parrot,bye,2 -no,hell nah,original,cancel,3 -no,FALSE,lambada,cancel,3 -calendar,tell me what's on my calendar for march 14th,parrot,avail,0 -thank_you,i'm glad you helped,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -yes,yup,original,book,1 -how_busy,how busy is ihop?,parrot,avail,0 -thank_you,thanks again,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -no,but we don't want it,parrot,cancel,3 -yes,that is accurate,original,book,1 -no,no that isn't it,original,cancel,3 -yes,let's do it,parrot,book,1 -thank_you,i'm happy you've helped me,parrot,bye,2 -no,no that isn't right,original,cancel,3 -greeting,how are you doing,original,greet,4 -goodbye,good call,parrot,bye,2 -no,absolutely false,parrot,cancel,3 -meeting_schedule,how many meetings will i have between 2 and 5,parrot,avail,0 -thank_you,let me thank you,original,bye,2 -greeting,hola!,original,greet,4 -how_busy,is tiaras crowded around 7pm?,parrot,avail,0 -how_busy,how long after 7pm,parrot,avail,0 -how_busy,can i expect wait time to be long at outback steakhouse?,lambada,avail,0 -no,but that's not true,parrot,cancel,3 -thank_you,thanks,original,bye,2 -yes,correct,original,book,1 -yes,yes,original,book,1 -thank_you,thanks again!,original,bye,2 -thank_you,thanks!,original,bye,2 -thank_you,many thanks,original,bye,2 -yes,sure,original,book,1 -yes,positive,original,book,1 -yes,truthful is my answer,lambada,book,1 -yes,it's logical,parrot,book,1 -goodbye,fairwell,original,bye,2 -no,"no, that's not right",original,cancel,3 -greeting,heller,original,greet,4 -no,invalid,original,cancel,3 -no,negating,parrot,cancel,3 -no,nothing,parrot,cancel,3 -no,not true,original,cancel,3 -no,that's not factual,parrot,cancel,3 -reminder_update,remember to remind me of this later,original,resched,5 -date,"what's the date tomorrow, please",original,avail,0 -no,that's completely wrong,parrot,cancel,3 -thank_you,i'm really thankful,parrot,bye,2 -greeting,how've you been,original,greet,4 -yes,absolutely!,original,book,1 -how_busy,how many people will be seated in the restaurant at 7 pm,parrot,avail,0 -greeting,what's my feeling?,parrot,greet,4 -calendar,do i have plans on 12/03/2019?,original,avail,0 -no,negative,original,cancel,3 -greeting,hi there,original,greet,4 -no,the statement is false,original,cancel,3 -yes,agreed,original,book,1 -thank_you,thanks!,original,bye,2 -yes,yeah,original,book,1 -yes,absolutely,original,book,1 -thank_you,"great, thanks!",original,bye,2 -date,what's the date now,parrot,avail,0 -no,nada,original,cancel,3 -yes,confirmed,original,book,1 -yes,that's right,original,book,1 -thank_you,i'm glad you did it for me,parrot,bye,2 -no,that's not factual,parrot,cancel,3 -yes,i can confirm,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -calendar,can you tell me if i have added an item to my calendar?,lambada,avail,0 -date,date tomorrow?,parrot,avail,0 -goodbye,catch you later,original,bye,2 -yes,uh-huh,original,book,1 -schedule_meeting,please help me set up a meeting,parrot,book,1 -yes,huh huh,parrot,book,1 -thank_you,thanks for trying,original,bye,2 -yes,it's certainly true,parrot,book,1 -yes,"yes, please",parrot,book,1 -no,that's erroneous,parrot,cancel,3 -greeting,what's new,lambada,greet,4 -how_busy,can you give me an idea about how busy the robinson grill is?,lambada,avail,0 -goodbye,bye bye,lambada,bye,2 -greeting,heyo,original,greet,4 -reminder_update,remind me,original,resched,5 -no,that is erroneous,original,cancel,3 -goodbye,adios,original,bye,2 -date,what's tomorrow's date,original,avail,0 -greeting,salutations,parrot,greet,4 -meeting_schedule,do i have to meet the dev squad?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -calendar_update,make sure the events in my calendar for march 30 2019 are clear,parrot,resched,5 -greeting,hey how's ot,lambada,greet,4 -goodbye,"thanks, bye",original,bye,2 -yes,perfect,parrot,book,1 -goodbye,peace,original,bye,2 -greeting,salutations,parrot,greet,4 -yes,huh,parrot,book,1 -goodbye,nice talk,lambada,bye,2 -schedule_meeting,i need a meeting room for 11 am,lambada,book,1 -greeting,aho,parrot,greet,4 -goodbye,sayonara ,parrot,bye,2 -no,FALSE,lambada,cancel,3 -goodbye,later gator!,original,bye,2 -greeting,welcome,parrot,greet,4 -date,today?,parrot,avail,0 -reminder_update,reminder to prepare for my meeting at 5pm,parrot,resched,5 -thank_you,"thanks, that's helpful",original,bye,2 -greeting,how are you doing,original,greet,4 -how_busy,tell me how busy the olive garden is?,parrot,avail,0 -yes,"yes, that's confirmed",original,book,1 -greeting,get up ai,parrot,greet,4 -goodbye,later gater,original,bye,2 -yes,absolutely correct,original,book,1 -goodbye,bye-bye,original,bye,2 -goodbye,and then goodbye,parrot,bye,2 -greeting,how's my feeling?,parrot,greet,4 -no,yes that's false,lambada,cancel,3 -yes,i say yes,lambada,book,1 -no,it's no,parrot,cancel,3 -calendar_update,clear my calendar for march 22nd,parrot,resched,5 -yes,approved,original,book,1 -yes,sure,original,book,1 -yes,is true,parrot,book,1 -no,FALSE,lambada,cancel,3 -goodbye,goodbyes,parrot,bye,2 -greeting,heller,original,greet,4 -schedule_meeting,are there any free rooms from 12 to 1?,parrot,book,1 -greeting,how's my doing?,parrot,greet,4 -schedule_meeting,please help me with a meeting,lambada,book,1 -goodbye,bye-bye,original,bye,2 -no,not true,original,cancel,3 -calendar_update,"on the 22nd of this month, we need to clear our calendar so we can leave it open for mark to visit",original,resched,5 -thank_you,i appreciate your answer,parrot,bye,2 -how_busy,how long can i expect to wait at the red lobster,parrot,avail,0 -greeting,hola!,original,greet,4 -goodbye,regards,original,bye,2 -no,invalid,original,cancel,3 -greeting,hi what's up?,parrot,greet,4 -greeting,hola!,original,greet,4 -thank_you,i'm glad you met,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -yes,right,parrot,book,1 -greeting,hello what's up?,parrot,greet,4 -goodbye,tootles,original,bye,2 -thank_you,thanks for my response,original,bye,2 -greeting,what's happening?,parrot,greet,4 -date,what date?,parrot,avail,0 -reminder_update,"new reminder, please",original,resched,5 -yes,huh,parrot,book,1 -yes,ok,original,book,1 -goodbye,tootles?,parrot,bye,2 -greeting,how is this going?,parrot,greet,4 -goodbye,goodbye!,original,bye,2 -greeting,wassup,original,greet,4 -greeting,hola,original,greet,4 -greeting,hello there!,original,greet,4 -thank_you,i'm thankful,original,bye,2 -calendar,what's my schedule for march 5th?,parrot,avail,0 -no,that's inaccurate,original,cancel,3 -how_busy,please tell me how long it will take at the italian place at midnight?,parrot,avail,0 -thank_you,i really appreciate you,parrot,bye,2 -calendar_update,take lunch with steven off of my calendar,original,resched,5 -yes,sure,original,book,1 -thank_you,okay thanks,original,bye,2 -goodbye,great talk,lambada,bye,2 -yes,"yes, please",original,book,1 -greeting,how're you doing,original,greet,4 -greeting,how's ai feeling?,parrot,greet,4 -yes,sure,original,book,1 -no,nay,original,cancel,3 -greeting,how is everything going,original,greet,4 -no,no?,parrot,cancel,3 -how_busy,how long will i have to wait before being seated at the cheese cake factory?,parrot,avail,0 -yes,i think you're right,parrot,book,1 -greeting,how're you doing,original,greet,4 -no,the answer to that is no,lambada,cancel,3 -greeting,hello how is it going,lambada,greet,4 -yes,certainly,parrot,book,1 -yes,okay,original,book,1 -reminder_update,maybe a reminder?,parrot,resched,5 -yes,good,parrot,book,1 -greeting,hola,original,greet,4 -greeting,salutation,parrot,greet,4 -no,the statement is false,original,cancel,3 -greeting,how has my day been,lambada,greet,4 -yes,uh-huh,original,book,1 -calendar,what's on the march 2 calendars?,parrot,avail,0 -thank_you,i'm so grateful for your help,lambada,bye,2 -greeting,"hey, how's my day going",lambada,greet,4 -goodbye,i'll be gone,parrot,bye,2 -how_busy,can i wait for a table at the tiffany steakhouse?,parrot,avail,0 -yes,i'd say yes,parrot,book,1 -greeting,wassup,original,greet,4 -no,but that's not true,parrot,cancel,3 -calendar_update,remove jess' party from my calendar,parrot,resched,5 -goodbye,i'm going,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -date,in 100 days?,parrot,avail,0 -date,a year?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -calendar_update,eliminate all birthday celebrations from my calendar,parrot,resched,5 -no,what isn't true?,parrot,cancel,3 -greeting,aloha,original,greet,4 -how_busy,how long will i have to wait in ihop?,parrot,avail,0 -no,negatory,original,cancel,3 -thank_you,thank you so much,original,bye,2 -how_busy,how long do i have to wait for a table at the olive garden,lambada,avail,0 -greeting,hello good day,parrot,greet,4 -goodbye,i'll go,parrot,bye,2 -goodbye,take it easy!,original,bye,2 -how_busy,what's the wait time for a table in olive gardens?,parrot,avail,0 -date,current day,parrot,avail,0 -yes,oh yes,original,book,1 -no,that's incorrect!,original,cancel,3 -yes,TRUE,original,book,1 -yes,facts,original,book,1 -yes,good,parrot,book,1 -goodbye,farewell,original,bye,2 -goodbye,tootles?,parrot,bye,2 -greeting,bonjour,original,greet,4 -meeting_schedule,can you tell me the date of my meeting with stacy?,parrot,avail,0 -thank_you,thanks very much for your answer,parrot,bye,2 -goodbye,adios!,original,bye,2 -goodbye,later,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -greeting,hi,original,greet,4 -greeting,how are you,original,greet,4 -yes,affirmative,original,book,1 -no,nope,original,cancel,3 -no,naw,parrot,cancel,3 -greeting,how's idy?,parrot,greet,4 -calendar_update,put an appointment in my calendar for tomorrow,parrot,resched,5 -thank_you,i thank you,original,bye,2 -greeting,hi there alexa,original,greet,4 -date,what's today,original,avail,0 -thank_you,gracias,original,bye,2 -how_busy,how busy will ian be at 6 pm?,parrot,avail,0 -how_busy,how long will it take before i can eat at friday's steak house?,parrot,avail,0 -no,that's so negative,parrot,cancel,3 -how_busy,does the cheesecake factory have many people?,parrot,avail,0 -greeting,hey there,original,greet,4 -goodbye,lovely conversation,parrot,bye,2 -thank_you,my gratitude,parrot,bye,2 -goodbye,thanks bye bye!,original,bye,2 -goodbye,bye,original,bye,2 -date,what's the current day?,parrot,avail,0 -reminder_update,set reminder to eat at 6pm,lambada,resched,5 -no,"please, no",original,cancel,3 -thank_you,"nice, excellent!",original,bye,2 -goodbye,"goodbye, ai assistant",original,bye,2 -greeting,how's my family going?,parrot,greet,4 -no,false sure,parrot,cancel,3 -how_busy,how busy will olive garden be at 5 pm,lambada,avail,0 -no,the information is false,parrot,cancel,3 -goodbye,come on soon,parrot,bye,2 -calendar,tell me my calendar for march 1?,lambada,avail,0 -thank_you,thanks very much for your answer,parrot,bye,2 -yes,affirmitive,original,book,1 -goodbye,good-bye,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -yes,im sure you're right,parrot,book,1 -goodbye,i'll go,parrot,bye,2 -goodbye,please chat to me,parrot,bye,2 -yes,do that?,original,book,1 -date,is today a date?,parrot,avail,0 -meeting_schedule,meeting today,parrot,avail,0 -thank_you,thanks for telling me,parrot,bye,2 -reminder_update,save the reminder for later,parrot,resched,5 -greeting,salutations!,original,greet,4 -yes,i guess,parrot,book,1 -thank_you,you helped me,parrot,bye,2 -thank_you,thanks please,original,bye,2 -how_busy,is the mexican place crowded?,parrot,avail,0 -no,this isn't true,parrot,cancel,3 -thank_you,thanks,original,bye,2 -yes,exactly right,original,book,1 -goodbye,buhbye,original,bye,2 -yes,my answer is yes,parrot,book,1 -how_busy,how long will i wait to have a table in olive garden?,parrot,avail,0 -thank_you,thank you ai,parrot,bye,2 -goodbye,good seeing you,original,bye,2 -no,i disagree with that,lambada,cancel,3 -calendar,is there anything on my calendar for april 15?,parrot,avail,0 -how_busy,how busy is tee mart at 8 am,lambada,avail,0 -no,it's very false,parrot,cancel,3 -goodbye,good luck tomorrow,lambada,bye,2 -greeting,"hello, friend",original,greet,4 -goodbye,i enjoyed talking to you,original,bye,2 -no,that's so wrong,parrot,cancel,3 -thank_you,thanks for the info,original,bye,2 -reminder_update,i need to make a reminder for dinner,parrot,resched,5 -thank_you,it pleased me,parrot,bye,2 -yes,"yep, that's correct",lambada,book,1 -goodbye,afterward,parrot,bye,2 -greeting,salutations,parrot,greet,4 -goodbye,buhbye,original,bye,2 -no,certainly not,original,cancel,3 -meeting_schedule,meet all my meetings today,parrot,avail,0 -greeting,how's my day been?,parrot,greet,4 -thank_you,you answered,parrot,bye,2 -how_busy,how busy is the cheesecake factory at 12,lambada,avail,0 -greeting,hi what's up,original,greet,4 -yes,accepted,original,book,1 -greeting,welcome,parrot,greet,4 -goodbye,bye bye,lambada,bye,2 -no,you are wrong,original,cancel,3 -goodbye,fairwell?,parrot,bye,2 -how_busy,how busy will the cheesecake factory be around noon?,parrot,avail,0 -greeting,hiya!,original,greet,4 -meeting_schedule,when are my meetings?,parrot,avail,0 -yes,my answer is yes,parrot,book,1 -yes,yes i am,original,book,1 -yes,great,original,book,1 -no,that's untrue,parrot,cancel,3 -no,negative,original,cancel,3 -date,today is what date?,parrot,avail,0 -greeting,hiya!,original,greet,4 -greeting,tell me what's going on,parrot,greet,4 -goodbye,good conversation,parrot,bye,2 -no,nothing,parrot,cancel,3 -no,i would prefer not,original,cancel,3 -goodbye,bye bye,lambada,bye,2 -goodbye,bye now,original,bye,2 -greeting,what's new?,parrot,greet,4 -yes,"yep, that's true",original,book,1 -reminder_update,give me a reminder,parrot,resched,5 -greeting,heyo,original,greet,4 -goodbye,peace,original,bye,2 -goodbye,bye now,original,bye,2 -thank_you,thank a bunch,original,bye,2 -no,that's incorrect,original,cancel,3 -date,what day is it now?,lambada,avail,0 -how_busy,how long will the wait be at chili peppers,lambada,avail,0 -no,"no, that's incorrect",original,cancel,3 -date,what's my date tomorrow?,parrot,avail,0 -yes,approved,original,book,1 -yes,good yes,lambada,book,1 -greeting,what's happened?,parrot,greet,4 -thank_you,thanks please,original,bye,2 -how_busy,how long will the wait time be at chili's at 6,lambada,avail,0 -goodbye,later,original,bye,2 -thank_you,many thanks,original,bye,2 -greeting,how it goes?,parrot,greet,4 -schedule_meeting,what is a meeting room size between 2 and 4?,parrot,book,1 -greeting,hey there,original,greet,4 -greeting,wassup,original,greet,4 -how_busy,tell me the time for a table at this restaurant?,parrot,avail,0 -greeting,"hello, friend",original,greet,4 -thank_you,thank ya!,original,bye,2 -no,it's my false statement,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -greeting,wake up ai,parrot,greet,4 -thank_you,"awesome, thanks",original,bye,2 -no,i'll pass,original,cancel,3 -schedule_meeting,"can you schedule a meeting with jessica at the office, please?",original,book,1 -greeting,ahoy hoy,original,greet,4 -greeting,well hi there,original,greet,4 -goodbye,later thanks for talking,parrot,bye,2 -calendar,check my calendar for events on march 11?,parrot,avail,0 -schedule_meeting,can you please tell me if there are any conference rooms available between 2:00 and 3:30?,lambada,book,1 -no,not a good idea,parrot,cancel,3 -date,please give me the date today,lambada,avail,0 -yes,10-Apr,original,book,1 -greeting,whats up,original,greet,4 -greeting,what's happening?,parrot,greet,4 -yes,indeed,original,book,1 -thank_you,a million thanks,parrot,bye,2 -goodbye,later!,original,bye,2 -reminder_update,remind me again please,original,resched,5 -no,negation,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -thank_you,i'm thankful,original,bye,2 -calendar_update,i want you to cancel the event on april 15th,parrot,resched,5 -no,that's negative,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -thank_you,"nice, excellent!",original,bye,2 -meeting_schedule,are there any meetings with susie today?,parrot,avail,0 -how_busy,how long will i wait if i go to the steak house in the outback,parrot,avail,0 -no,negatory?,parrot,cancel,3 -date,today what date?,parrot,avail,0 -greeting,whats new,lambada,greet,4 -thank_you,you're special thanks,parrot,bye,2 -reminder_update,remind me,original,resched,5 -calendar_update,add my work on my calendar,lambada,resched,5 -schedule_meeting,will you set up a meeting with us at 6 pm,lambada,book,1 -yes,indeed,original,book,1 -date,when will it be in five days?,lambada,avail,0 -no,erroneous,parrot,cancel,3 -goodbye,bye!,original,bye,2 -schedule_meeting,i'd like to meet you,parrot,book,1 -goodbye,i'm leaving,parrot,bye,2 -goodbye,send a goodbye,lambada,bye,2 -thank_you,"thanks, that's helpful",original,bye,2 -no,that's inaccurate,original,cancel,3 -date,tomorrow is the date,parrot,avail,0 -greeting,hi,original,greet,4 -goodbye,later!,original,bye,2 -goodbye,goodnight,original,bye,2 -greeting,whats new?,parrot,greet,4 -yes,yup,original,book,1 -how_busy,can you tell me if mr joes steakhouse is crowded at 6pm?,lambada,avail,0 -reminder_update,can you tell me to take out the trash in an hour?,parrot,resched,5 -goodbye,take it easy,lambada,bye,2 -goodbye,farewell,original,bye,2 -yes,right,parrot,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -yes,yes,original,book,1 -goodbye,catch you later,original,bye,2 -goodbye,see ya later,original,bye,2 -no,that's a false,lambada,cancel,3 -yes,sure thing,original,book,1 -thank_you,thanks again,original,bye,2 -no,i think it's wrong,parrot,cancel,3 -greeting,how's everything?,parrot,greet,4 -greeting,hi,original,greet,4 -how_busy,if i go to a cheesecake factory how long will i have to wait for,parrot,avail,0 -goodbye,adios,original,bye,2 -schedule_meeting,please explain how to schedule a meeting,parrot,book,1 -no,that's incorrect!,original,cancel,3 -no,don't like that no,parrot,cancel,3 -goodbye,good night,original,bye,2 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -greeting,how's idy?,parrot,greet,4 -greeting,hi,original,greet,4 -yes,oh-huh,parrot,book,1 -date,what's the year?,parrot,avail,0 -how_busy,does the olive garden get crowded at dinner time?,parrot,avail,0 -goodbye,thanks for the good talk,parrot,bye,2 -no,is it a lie,parrot,cancel,3 -how_busy,how long should i wait before eating in a beta restaurant,parrot,avail,0 -yes,it'd be great,parrot,book,1 -thank_you,i appreciate it,original,bye,2 -yes,oh yes,original,book,1 -yes,TRUE,lambada,book,1 -goodbye,fairwell,original,bye,2 -no,i disagree,parrot,cancel,3 -no,indeed it's false,parrot,cancel,3 -yes,agreed,original,book,1 -goodbye,cya later,original,bye,2 -yes,agreed,original,book,1 -yes,exactly right,original,book,1 -no,naw,original,cancel,3 -goodbye,goodbye goodbye,parrot,bye,2 -thank_you,you gave it to me,parrot,bye,2 -thank_you,"nice, excellent!",original,bye,2 -schedule_meeting,is my availability between one and two today?,parrot,book,1 -no,negatory?,parrot,cancel,3 -reminder_update,please remember to put the clothes in the dryer,parrot,resched,5 -yes,approved,original,book,1 -calendar_update,remove april 16's birthday party from my calendar,lambada,resched,5 -greeting,hi how's it going?,parrot,greet,4 -yes,huh,parrot,book,1 -cancel_reservation,fill in my reservation at the white cliffs,lambada,cancel,3 -goodbye,signing off,original,bye,2 -thank_you,merci beaucoup,original,bye,2 -no,nope not it,original,cancel,3 -date,what date tomorrow?,parrot,avail,0 -yes,perfect,parrot,book,1 -thank_you,i'm glad you responded,parrot,bye,2 -yes,i'll say yes,parrot,book,1 -goodbye,i'll be gone,parrot,bye,2 -no,negation,parrot,cancel,3 -thank_you,gracias,original,bye,2 -thank_you,thanks for my prompt response,parrot,bye,2 -no,so that's no,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -greeting,welcome,parrot,greet,4 -thank_you,you've been great,parrot,bye,2 -greeting,are you okay?,original,greet,4 -no,i'm saying no,parrot,cancel,3 -goodbye,nice talk,lambada,bye,2 -goodbye,my way,parrot,bye,2 -date,give me today's date,original,avail,0 -thank_you,many thank,original,bye,2 -no,please no,parrot,cancel,3 -yes,yeah,original,book,1 -goodbye,good-bye,parrot,bye,2 -thank_you,appreciate it,original,bye,2 -goodbye,as regards,parrot,bye,2 -no,it's a negation,parrot,cancel,3 -cancel_reservation,delete my dinner reservation,parrot,cancel,3 -greeting,how is life?,parrot,greet,4 -thank_you,your help is appreciated,original,bye,2 -meeting_schedule,when is my meeting with lucas?,parrot,avail,0 -no,naw,original,cancel,3 -goodbye,"goodbye, ai assistant",original,bye,2 -yes,positive,original,book,1 -yes,accept,parrot,book,1 -date,i need to know what date it is tomorrow,original,avail,0 -thank_you,thanks for responding,parrot,bye,2 -thank_you,the best,parrot,bye,2 -no,FALSE,original,cancel,3 -greeting,how's everything going?,parrot,greet,4 -goodbye,tootles?,parrot,bye,2 -no,no!,original,cancel,3 -no,that's completely wrong,parrot,cancel,3 -yes,accepted,original,book,1 -calendar,please read my calendar,parrot,avail,0 -yes,a fact,parrot,book,1 -greeting,hiya!,original,greet,4 -thank_you,i owe you one!,original,bye,2 -greeting,whats up,original,greet,4 -yes,i think that's right,parrot,book,1 -yes,the answer is yes,original,book,1 -greeting,bonjour,original,greet,4 -greeting,whats up?,parrot,greet,4 -calendar_update,remove event from my calendar for march 4th,lambada,resched,5 -date,tell me what the date is 5 days from now?,lambada,avail,0 -schedule_meeting,please reserve a meeting room for 9am on friday,lambada,book,1 -reminder_update,let me be reminded,parrot,resched,5 -no,nothing good,parrot,cancel,3 -greeting,how you are?,parrot,greet,4 -yes,exactly right,original,book,1 -goodbye,take care then,parrot,bye,2 -greeting,hola!,original,greet,4 -no,definitely not,original,cancel,3 -yes,yay,lambada,book,1 -yes,uh huh,original,book,1 -date,what's going to happen next?,parrot,avail,0 -yes,i'm going to tell you tes,parrot,book,1 -cancel_reservation,please cancel the table for two at burger king,original,cancel,3 -no,it seems wrong,parrot,cancel,3 -schedule_meeting,is there meeting room available between 11 and 12?,parrot,book,1 -goodbye,goodbye then,parrot,bye,2 -thank_you,oh sweet thanks,original,bye,2 -reminder_update,remind me of something,parrot,resched,5 -goodbye,farewell,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,erroneous,parrot,cancel,3 -thank_you,gracias,original,bye,2 -yes,accepted,original,book,1 -goodbye,goodbye no problem,parrot,bye,2 -goodbye,thanks for the chat,parrot,bye,2 -calendar_update,clear my calendar for may 21,parrot,resched,5 -goodbye,i'm leaving now,lambada,bye,2 -no,negative,original,cancel,3 -yes,positive,original,book,1 -greeting,what's going on,original,greet,4 -greeting,hows are ya,original,greet,4 -thank_you,thanks,original,bye,2 -yes,10-Apr,original,book,1 -calendar_update,write an appointment for my doctor on my calendar,parrot,resched,5 -no,negative definitely,parrot,cancel,3 -thank_you,i appreciate this answer,parrot,bye,2 -greeting,tell me how you've been?,original,greet,4 -greeting,whats up?,parrot,greet,4 -yes,oh-huh,parrot,book,1 -thank_you,you have made my life so much easier,lambada,bye,2 -goodbye,goodbye,original,bye,2 -thank_you,you've been great,parrot,bye,2 -how_busy,how long will it take for a table at flannigans?,parrot,avail,0 -no,no?,parrot,cancel,3 -calendar_update,remove dinner with suzie from my calendar on 1st march,parrot,resched,5 -greeting,well hello,original,greet,4 -yes,great,original,book,1 -greeting,hows it going,lambada,greet,4 -how_busy,can i expect fry's to be very busy around 7pm?,lambada,avail,0 -greeting,"why, hello bandit",original,greet,4 -no,absolutely not,original,cancel,3 -thank_you,i appreciate my help!,original,bye,2 -date,current date,original,avail,0 -no,don't agree,parrot,cancel,3 -date,what's today?,parrot,avail,0 -no,not right so,parrot,cancel,3 -yes,uh-huh,original,book,1 -thank_you,nice,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -cancel_reservation,cancel tonight's dinner reservation,original,cancel,3 -yes,facts,original,book,1 -yes,10-Apr,original,book,1 -how_busy,"at 5 am, how busy is red lobster at 7",lambada,avail,0 -goodbye,i'll leave now,parrot,bye,2 -yes,good,parrot,book,1 -goodbye,fairwell?,parrot,bye,2 -greeting,how's life going?,parrot,greet,4 -greeting,how are things,original,greet,4 -cancel_reservation,i need to cancel my reservation for dinner at red robin,lambada,cancel,3 -goodbye,ai goodbye,original,bye,2 -reminder_update,new reminder please,lambada,resched,5 -no,i disagree,parrot,cancel,3 -how_busy,how long will the restaurant wait?,parrot,avail,0 -yes,positive,original,book,1 -yes,"yes, please",parrot,book,1 -goodbye,good night,original,bye,2 -date,calender says tomorrow is tomorrow,parrot,avail,0 -cancel_reservation,can you cancel my reservation for dinner?,parrot,cancel,3 -how_busy,get to know how busy chili is at 5pm,parrot,avail,0 -reminder_update,can you send me a reminder?,parrot,resched,5 -greeting,are you all right?,parrot,greet,4 -greeting,how's everything?,parrot,greet,4 -cancel_reservation,you have canceled my reservation at oyster bar,parrot,cancel,3 -no,that's overwhelmingly negative,parrot,cancel,3 -date,when will be the date?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -goodbye,tootles,original,bye,2 -schedule_meeting,please schedule a meeting with bob brown the day after tomorrow,parrot,book,1 -thank_you,thanks!,original,bye,2 -no,that's untrue,parrot,cancel,3 -how_busy,how busy will the olive garden be at 9 pm,parrot,avail,0 -goodbye,later,original,bye,2 -goodbye,goodbye,original,bye,2 -thank_you,okay thank you,parrot,bye,2 -calendar_update,clear my calendar for february 6,parrot,resched,5 -how_busy,do you think the pizza place is crowded?,parrot,avail,0 -how_busy,can i wait for a table at cheesecake factory?,parrot,avail,0 -goodbye,i like our conversation,parrot,bye,2 -greeting,how you feel?,parrot,greet,4 -date,today?,parrot,avail,0 -thank_you,i'm so grateful for this answer,parrot,bye,2 -yes,that's all right,parrot,book,1 -date,what is today?,original,avail,0 -greeting,heller,original,greet,4 -yes,it is true,original,book,1 -greeting,salutations!,original,greet,4 -thank_you,thanks so much!,original,bye,2 -reminder_update,keep checking the steak?,parrot,resched,5 -meeting_schedule,meeting today,parrot,avail,0 -goodbye,adios,original,bye,2 -no,that's negative,parrot,cancel,3 -yes,yeap,original,book,1 -yes,just right,parrot,book,1 -no,invalid,original,cancel,3 -date,the date is tomorrow,parrot,avail,0 -no,it's a no,original,cancel,3 -goodbye,nice talk,lambada,bye,2 -thank_you,thanks!,original,bye,2 -yes,affirmitive,original,book,1 -greeting,how's everything?,parrot,greet,4 -date,please explain today,parrot,avail,0 -no,nothing,parrot,cancel,3 -greeting,you good?,parrot,greet,4 -thank_you,very grateful,parrot,bye,2 -no,no!,original,cancel,3 -goodbye,nice talk,lambada,bye,2 -yes,i think it's correct,parrot,book,1 -how_busy,please let me know if there is a wait at this restaurant right now,lambada,avail,0 -yes,sure,original,book,1 -cancel_reservation,send me a cancelation of the reservation for 6 at outback,lambada,cancel,3 -greeting,how's the world?,parrot,greet,4 -goodbye,later,original,bye,2 -date,today is the date,parrot,avail,0 -thank_you,well done,parrot,bye,2 -no,negatory?,parrot,cancel,3 -no,that’s incorrect,original,cancel,3 -thank_you,you helped me today,parrot,bye,2 -goodbye,get there soon,lambada,bye,2 -yes,i'll say yes,parrot,book,1 -yes,obviously,parrot,book,1 -goodbye,i'm leaving,parrot,bye,2 -thank_you,gracias,original,bye,2 -greeting,hello hello good day,parrot,greet,4 -yes,perfect,parrot,book,1 -thank_you,nice,parrot,bye,2 -no,not happening,original,cancel,3 -schedule_meeting,i need a meeting with mike at 5 p,parrot,book,1 -greeting,aho,parrot,greet,4 -yes,TRUE,original,book,1 -no,you got that wrong,original,cancel,3 -goodbye,good call,parrot,bye,2 -schedule_meeting,please set up a meeting with john at 9am,parrot,book,1 -how_busy,how long do i have to wait for a table in chipotle?,parrot,avail,0 -how_busy,outback steakhouse at 6pm,parrot,avail,0 -date,you have the date?,parrot,avail,0 -goodbye,you've been talking to me,parrot,bye,2 -goodbye,thanks goodbye,parrot,bye,2 -goodbye,peace,original,bye,2 -reminder_update,remember to work out in the gym,parrot,resched,5 -how_busy,can you tell me if the wait is really long at macaroni and cheese?,lambada,avail,0 -thank_you,awesome thank you,parrot,bye,2 -yes,"yes, please",parrot,book,1 -reminder_update,add a reminder to have my pay deposited,parrot,resched,5 -calendar_update,i need to add something to my calendar for next tuesday,original,resched,5 -yes,yup,original,book,1 -date,when the date will it be?,parrot,avail,0 -date,today?,parrot,avail,0 -yes,absolutely!,original,book,1 -yes,that's true,original,book,1 -greeting,how's everything going with you?,parrot,greet,4 -greeting,how's my life today?,parrot,greet,4 -greeting,hey how's life,original,greet,4 -greeting,"hi, ai",original,greet,4 -no,"no, that is inaccurate",original,cancel,3 -greeting,what is new?,parrot,greet,4 -goodbye,later,original,bye,2 -no,you are wrong,original,cancel,3 -goodbye,my friend,parrot,bye,2 -date,what the day?,parrot,avail,0 -goodbye,ai goodbye,original,bye,2 -goodbye,great conversation,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -greeting,all right with you?,parrot,greet,4 -no,not right so,parrot,cancel,3 -reminder_update,my cat needs neutered,parrot,resched,5 -goodbye,i enjoy our chat,lambada,bye,2 -no,erroneous,parrot,cancel,3 -goodbye,nice drive by,lambada,bye,2 -greeting,you good?,parrot,greet,4 -no,"no, that's incorrect",original,cancel,3 -goodbye,goodnight,original,bye,2 -yes,absolutely!,original,book,1 -yes,certainly true,parrot,book,1 -yes,affirmitive,original,book,1 -date,date tomorrow,parrot,avail,0 -calendar_update,delete events on june 1st,parrot,resched,5 -how_busy,how long will the wait be in the restaurant?,parrot,avail,0 -cancel_reservation,i don't need to cancel my reservation,parrot,cancel,3 -yes,seems true,parrot,book,1 -thank_you,thank you for the job,parrot,bye,2 -date,what is tomorrow?,parrot,avail,0 -yes,uh huh,original,book,1 -calendar,what's tuesday's calendar?,parrot,avail,0 -greeting,how is idy?,parrot,greet,4 -greeting,aloha,original,greet,4 -yes,uh-huh,original,book,1 -no,nada,original,cancel,3 -goodbye,bye now,original,bye,2 -no,invalid,original,cancel,3 -goodbye,good bye,original,bye,2 -goodbye,bye-bye,original,bye,2 -yes,uh-huh,original,book,1 -schedule_meeting,i want to know if there is meeting room available at 8,original,book,1 -goodbye,"syonara, ai device!",original,bye,2 -no,it's certainly a false statement,parrot,cancel,3 -thank_you,merci beaucoup,original,bye,2 -no,it is false,original,cancel,3 -greeting,how've you been?,parrot,greet,4 -how_busy,how long will the line at chili's be around 7pm?,parrot,avail,0 -how_busy,how long will the wait time at mc ericks be,lambada,avail,0 -goodbye,go easy,parrot,bye,2 -yes,confirmed,original,book,1 -thank_you,many thank,original,bye,2 -goodbye,bye bye,lambada,bye,2 -greeting,hi how's my life?,parrot,greet,4 -greeting,hi,original,greet,4 -greeting,what i feel?,parrot,greet,4 -date,please show what's the date of this account,parrot,avail,0 -yes,"yes, please",parrot,book,1 -greeting,how's life?,parrot,greet,4 -how_busy,is a cheesecake factory busy right now?,parrot,avail,0 -greeting,heller,original,greet,4 -greeting,aho,parrot,greet,4 -meeting_schedule,i need to know when i'm meeting with robert,parrot,avail,0 -greeting,hiya!,original,greet,4 -yes,yes that's right,lambada,book,1 -yes,thats right,original,book,1 -yes,accept,parrot,book,1 -thank_you,thanks again,original,bye,2 -yes,affirmative,original,book,1 -goodbye,a good conversation,parrot,bye,2 -yes,so it's real,parrot,book,1 -goodbye,peace out!,original,bye,2 -goodbye,bye bye,lambada,bye,2 -meeting_schedule,when's the meeting today?,parrot,avail,0 -greeting,hello how're you doing?,parrot,greet,4 -yes,do that?,original,book,1 -goodbye,great conversation,parrot,bye,2 -how_busy,how long would i have to wait for a table at ihop right now,parrot,avail,0 -thank_you,thanks,original,bye,2 -thank_you,okay thank you,parrot,bye,2 -calendar_update,is it possible to remove an event from the calendar please?,parrot,resched,5 -goodbye,later,original,bye,2 -no,negatory?,parrot,cancel,3 -yes,absolutely,original,book,1 -greeting,how are things,original,greet,4 -greeting,whats new,lambada,greet,4 -yes,yes that's it,original,book,1 -how_busy,how busy will red robin be,lambada,avail,0 -greeting,whats up?,parrot,greet,4 -goodbye,farewell!,original,bye,2 -greeting,hola!,original,greet,4 -goodbye,my friend,parrot,bye,2 -yes,ya,original,book,1 -date,what's the next week?,parrot,avail,0 -no,no!,original,cancel,3 -date,list the current days?,parrot,avail,0 -yes,positive,original,book,1 -yes,"yes, please",parrot,book,1 -how_busy,how long should i wait to sit at the red rooster?,parrot,avail,0 -date,do you have a date for that?,parrot,avail,0 -no,ill pass,original,cancel,3 -yes,yeap,original,book,1 -thank_you,i'm thankful,original,bye,2 -greeting,bonjour,original,greet,4 -yes,yes that's correct,original,book,1 -yes,"yes, please",original,book,1 -how_busy,how busy will garlic bread be at 5 o'clock?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -yes,yay,lambada,book,1 -date,please date,parrot,avail,0 -how_busy,how long does it take to wait for a table at the gobi steakhouse?,parrot,avail,0 -date,tell me the next month,parrot,avail,0 -no,that is untrue,original,cancel,3 -how_busy,what is the crowd like at the red lobster?,lambada,avail,0 -thank_you,you helped,parrot,bye,2 -yes,absolutely!,original,book,1 -calendar,did i put an event on the calendar to get an annual physical?,lambada,avail,0 -goodbye,bye,original,bye,2 -no,not true,original,cancel,3 -thank_you,gracias,original,bye,2 -how_busy,how busy will the chipotle grill be at 5pm?,parrot,avail,0 -yes,sure,original,book,1 -yes,yeah yeah,lambada,book,1 -goodbye,i have to go out of here,lambada,bye,2 -goodbye,afterward,parrot,bye,2 -date,show me the date it will be in three days?,parrot,avail,0 -no,it's the wrong answer,parrot,cancel,3 -calendar_update,please remove the dinner party from my schedule,parrot,resched,5 -greeting,hi what's going on?,parrot,greet,4 -greeting,hiya!,original,greet,4 -no,that can't be true,original,cancel,3 -no,that's wrong,original,cancel,3 -goodbye,great talking to you,parrot,bye,2 -no,say negative,parrot,cancel,3 -no,invalid,original,cancel,3 -no,nope that's not it,original,cancel,3 -goodbye,you're done,parrot,bye,2 -yes,certainly,parrot,book,1 -greeting,how are things,original,greet,4 -greeting,well hi there,original,greet,4 -goodbye,the conversation was great,parrot,bye,2 -greeting,yo,original,greet,4 -no,not right?,parrot,cancel,3 -calendar,are there any active events happening between 12/04 and 13/04?,lambada,avail,0 -goodbye,"thanks, bye",original,bye,2 -yes,so it's checked,parrot,book,1 -greeting,what's going on,original,greet,4 -goodbye,sayonara,original,bye,2 -how_busy,how busy is chili's around 4 pm,lambada,avail,0 -goodbye,the talk was nice,lambada,bye,2 -goodbye,for now,parrot,bye,2 -goodbye,lovely conversation,parrot,bye,2 -goodbye,farewell,original,bye,2 -thank_you,awesome thanks,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -yes,absolutely,original,book,1 -goodbye,goodbyes soon,parrot,bye,2 -greeting,hola!,original,greet,4 -greeting,hiya,original,greet,4 -greeting,how's idy?,parrot,greet,4 -goodbye,goodbyes soon,parrot,bye,2 -greeting,how are you,original,greet,4 -how_busy,what do you think the longhorn steakhouse will be like at 5pm?,parrot,avail,0 -calendar,what are my current calendar activities?,parrot,avail,0 -thank_you,"oh, thanks",original,bye,2 -goodbye,maybe next time i'll see you,parrot,bye,2 -calendar,let me know what's currently set for march 26 on my calendar,parrot,avail,0 -yes,approved,original,book,1 -greeting,ahoy,lambada,greet,4 -schedule_meeting,i need to set a meeting with john at 11am,lambada,book,1 -no,indeed it's false,parrot,cancel,3 -no,no,lambada,cancel,3 -how_busy,how long do i have to wait for a table at the cheesecake factory,parrot,avail,0 -date,how can i know what my account's date is,lambada,avail,0 -no,negative,original,cancel,3 -goodbye,wonderful conversation,lambada,bye,2 -yes,agreed,original,book,1 -calendar,can you see what's on my calendar for february 14th?,parrot,avail,0 -calendar,bowling on my calendar?,parrot,avail,0 -greeting,whats new,lambada,greet,4 -no,erroneous,parrot,cancel,3 -yes,affirmative,original,book,1 -goodbye,goodnight,original,bye,2 -yes,yeah yeah,lambada,book,1 -how_busy,how busy is this restaurant around 5?,parrot,avail,0 -no,FALSE,original,cancel,3 -yes,accepted,original,book,1 -meeting_schedule,are there meetings with john?,parrot,avail,0 -yes,do that?,original,book,1 -greeting,welcome,parrot,greet,4 -goodbye,goodbyes soon,parrot,bye,2 -how_busy,how busy will ihop be at 6:30 pm,lambada,avail,0 -goodbye,bye,original,bye,2 -greeting,what's happening?,parrot,greet,4 -yes,huh,parrot,book,1 -no,no it's not,parrot,cancel,3 -thank_you,my gratitude,parrot,bye,2 -no,FALSE,lambada,cancel,3 -how_busy,how long will the wait at olive garden be?,parrot,avail,0 -goodbye,goodbye to yours,parrot,bye,2 -greeting,welcome,parrot,greet,4 -no,certainly not true,parrot,cancel,3 -no,negative sure,parrot,cancel,3 -no,don't agree,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -yes,yay,lambada,book,1 -greeting,hi there,original,greet,4 -greeting,greetings to you,original,greet,4 -no,say negative,parrot,cancel,3 -goodbye,glad we can talk,parrot,bye,2 -date,what date?,parrot,avail,0 -date,list the next week?,parrot,avail,0 -yes,huh huh,parrot,book,1 -greeting,all right now?,parrot,greet,4 -thank_you,nice,parrot,bye,2 -no,nope,original,cancel,3 -goodbye,i'm out,parrot,bye,2 -no,"no, definitely not",original,cancel,3 -schedule_meeting,i must schedule a meeting,parrot,book,1 -goodbye,signing off,original,bye,2 -yes,i'll say yes,parrot,book,1 -date,in three days,parrot,avail,0 -yes,TRUE,original,book,1 -yes,TRUE,original,book,1 -thank_you,thankyou,parrot,bye,2 -yes,roger that,original,book,1 -greeting,how's it with you?,parrot,greet,4 -yes,okay,original,book,1 -meeting_schedule,time of meeting?,parrot,avail,0 -yes,definitely,original,book,1 -yes,huh,parrot,book,1 -how_busy,how long will it take to get seated at the red lobster restaurant,parrot,avail,0 -yes,it also makes sense,parrot,book,1 -reminder_update,please remind me of cleaning my room,parrot,resched,5 -no,no good,original,cancel,3 -yes,i guess you're right,parrot,book,1 -meeting_schedule,let me know when my meeting with peter is scheduled,lambada,avail,0 -date,today?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -no,so that's no,parrot,cancel,3 -goodbye,the conversation was nice,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -date,do you have a date today?,parrot,avail,0 -goodbye,until next time!,original,bye,2 -no,that's wrong,original,cancel,3 -thank_you,appreciated,original,bye,2 -goodbye,happy to talk to you,parrot,bye,2 -calendar_update,please cancel my planned meal,parrot,resched,5 -reminder_update,let me remember,parrot,resched,5 -no,that's not correct,original,cancel,3 -date,i need to know the date it will be 4 days from now,original,avail,0 -no,not that,original,cancel,3 -goodbye,i'm out of here,original,bye,2 -greeting,all right now?,parrot,greet,4 -yes,accepted,original,book,1 -how_busy,how long will i have to wait to go to tom's fries?,parrot,avail,0 -greeting,hey,original,greet,4 -cancel_reservation,cancel my reservation for dinner on saturday,parrot,cancel,3 -thank_you,thank you for everything you did,parrot,bye,2 -yes,absolutely,original,book,1 -yes,it's true,original,book,1 -yes,certainly,parrot,book,1 -goodbye,fairwell?,parrot,bye,2 -greeting,how's life?,parrot,greet,4 -greeting,hello there!,original,greet,4 -schedule_meeting,can you check if the meeting rooms are available between 4 and 5?,parrot,book,1 -date,what's tomorrow's date,original,avail,0 -yes,10-Apr,original,book,1 -calendar,do you have any plans for 12032019?,parrot,avail,0 -goodbye,later!,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -thank_you,thanks for my prompt reply,lambada,bye,2 -goodbye,chat with me later,lambada,bye,2 -no,i think it's wrong,parrot,cancel,3 -greeting,how you're treated,parrot,greet,4 -greeting,how's everything,original,greet,4 -thank_you,many thank,original,bye,2 -schedule_meeting,can you schedule a meeting room for 5pm on friday?,lambada,book,1 -no,not true,original,cancel,3 -goodbye,thanks for the good talk,parrot,bye,2 -goodbye,farewell,original,bye,2 -greeting,hello,original,greet,4 -yes,accepted,original,book,1 -meeting_schedule,what are my scheduled meetings today?,parrot,avail,0 -thank_you,awesome thanks,parrot,bye,2 -no,that's negative,parrot,cancel,3 -date,give me the date tomorrow,parrot,avail,0 -goodbye,goodbye for now,parrot,bye,2 -date,please date,parrot,avail,0 -no,naw,parrot,cancel,3 -no,the answer is false,original,cancel,3 -greeting,you're all right?,parrot,greet,4 -yes,ya,original,book,1 -greeting,"hello, ai",original,greet,4 -goodbye,sayonara,original,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -yes,confirm,original,book,1 -greeting,ahoy,lambada,greet,4 -no,it's a false,lambada,cancel,3 -schedule_meeting,i have to set up a meeting with tom at 6pm,parrot,book,1 -calendar,do i have anything to do march 2nd?,original,avail,0 -greeting,how's it going right now,original,greet,4 -no,no it's a lie,parrot,cancel,3 -yes,indeed,original,book,1 -no,so that's no,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -no,the wrong answer,parrot,cancel,3 -greeting,how are things?,parrot,greet,4 -reminder_update,please remember something,parrot,resched,5 -yes,10-Apr,original,book,1 -how_busy,how crowded is the restaurant at this time,lambada,avail,0 -calendar,what's my schedule for thursday?,parrot,avail,0 -goodbye,thanks for talking,original,bye,2 -goodbye,tata for now,original,bye,2 -meeting_schedule,what are my meetings today?,original,avail,0 -no,nope,original,cancel,3 -cancel_reservation,you can cancel my reservation,parrot,cancel,3 -reminder_update,just a reminder,parrot,resched,5 -calendar,what is on my calendar for march 10th?,lambada,avail,0 -goodbye,"great talk, take it easy",original,bye,2 -no,definitely not,original,cancel,3 -goodbye,bye!,original,bye,2 -how_busy,can you tell me the average wait time at cheese cake factory right now?,lambada,avail,0 -calendar_update,can you remove dinner with jim from my calendar?,lambada,resched,5 -date,current date,original,avail,0 -goodbye,bye bye,lambada,bye,2 -no,nothing,parrot,cancel,3 -date,today?,parrot,avail,0 -goodbye,the chat was good,parrot,bye,2 -greeting,salutations!,original,greet,4 -no,nay,original,cancel,3 -thank_you,thank you!,original,bye,2 -calendar,how many points do i have on my calendar for the annual membership fees?,parrot,avail,0 -how_busy,wait for red lobster?,parrot,avail,0 -yes,it's logical,parrot,book,1 -greeting,salutation,parrot,greet,4 -cancel_reservation,get a salad off,parrot,cancel,3 -greeting,what's up with you?,parrot,greet,4 -reminder_update,keep checking the steak?,parrot,resched,5 -greeting,hey how's it going,original,greet,4 -date,do you know the date?,parrot,avail,0 -no,that's not it,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -no,naw,parrot,cancel,3 -yes,indeed,parrot,book,1 -goodbye,good bye my friend,original,bye,2 -thank_you,i appreciate you answering this question,parrot,bye,2 -thank_you,good job,lambada,bye,2 -goodbye,good-bye,parrot,bye,2 -greeting,hey,original,greet,4 -greeting,are you doing good?,lambada,greet,4 -goodbye,goodbyes,parrot,bye,2 -greeting,good day,original,greet,4 -greeting,hello,original,greet,4 -goodbye,"thanks for my help, goodbye!",original,bye,2 -yes,you are definitely correct,lambada,book,1 -how_busy,how busy is the olive garden at 7?,parrot,avail,0 -no,don't agree,parrot,cancel,3 -no,no!,original,cancel,3 -yes,great,original,book,1 -thank_you,thanks for responding,parrot,bye,2 -date,what's it today?,parrot,avail,0 -thank_you,a special thanks to you,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,"yes, that's right",original,book,1 -meeting_schedule,do you have meetings between 4 and 7?,parrot,avail,0 -no,negative,original,cancel,3 -how_busy,how long will i wait at olive garden?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -thank_you,"nice, excellent!",original,bye,2 -thank_you,"thanks, that's helpful",original,bye,2 -no,"no, that's wrong",original,cancel,3 -greeting,aloha,original,greet,4 -yes,"yes, that's correct",original,book,1 -meeting_schedule,is there a meeting scheduled today?,parrot,avail,0 -yes,10-Apr,original,book,1 -yes,certainly true,parrot,book,1 -date,please date,parrot,avail,0 -greeting,bonjour,original,greet,4 -yes,yep,original,book,1 -greeting,how it goes?,parrot,greet,4 -no,nada,original,cancel,3 -yes,uh-huh,original,book,1 -no,i think it's wrong,parrot,cancel,3 -thank_you,thanks for my reply,parrot,bye,2 -no,not correct,parrot,cancel,3 -no,and i'm sorry,parrot,cancel,3 -how_busy,how long will it take to get a seat in the clean and tidy restaurant?,parrot,avail,0 -date,what date is tomorrow?,original,avail,0 -thank_you,my gratitude,parrot,bye,2 -yes,oh-huh,parrot,book,1 -no,it's indeed false,parrot,cancel,3 -goodbye,peace,original,bye,2 -no,that's totally wrong!,original,cancel,3 -no,negatory?,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -no,that's negative,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -yes,accepted,original,book,1 -how_busy,how long will the wait be for chili peppers?,parrot,avail,0 -yes,huh,parrot,book,1 -yes,you're right,original,book,1 -no,negation,parrot,cancel,3 -no,that’s incorrect,original,cancel,3 -how_busy,can you tell me the current wait time in the italian restaurant?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -goodbye,peace,original,bye,2 -goodbye,goodbye no problem,parrot,bye,2 -no,FALSE,original,cancel,3 -date,what's it today?,parrot,avail,0 -goodbye,you're done,parrot,bye,2 -no,ill pass,original,cancel,3 -goodbye,ill leave now,parrot,bye,2 -greeting,what's happening,original,greet,4 -how_busy,is the resataurant busy at 5:00 pm?,original,avail,0 -how_busy,how long the olive garden is usually busy around noon,parrot,avail,0 -no,naw,original,cancel,3 -goodbye,"syonara, ai device!",original,bye,2 -no,i'll pass,original,cancel,3 -no,that's a false,lambada,cancel,3 -greeting,"hello, good day",lambada,greet,4 -greeting,how's otc?,parrot,greet,4 -greeting,how's my doing?,parrot,greet,4 -thank_you,appreciate the support,parrot,bye,2 -how_busy,how busy is this restaurant at 11 o'clock,parrot,avail,0 -no,negating,parrot,cancel,3 -yes,yeap,original,book,1 -how_busy,how long will the restaurant be before we go there?,parrot,avail,0 -no,FALSE,original,cancel,3 -date,date tomorrow,parrot,avail,0 -thank_you,thanks for responding,parrot,bye,2 -how_busy,how busy will the rest of the restaurant be at noon?,parrot,avail,0 -greeting,yo,original,greet,4 -thank_you,you answered,parrot,bye,2 -date,today?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -thank_you,thank you for the thanks,parrot,bye,2 -no,it seems not,original,cancel,3 -meeting_schedule,when's my meeting?,parrot,avail,0 -date,which date is it?,parrot,avail,0 -goodbye,"goodbye, ai assistant",original,bye,2 -cancel_reservation,cancel my dinner reservation,lambada,cancel,3 -no,the answer isn't correct,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -schedule_meeting,i need help with setting a meeting,parrot,book,1 -no,nay,original,cancel,3 -reminder_update,create a reminder,original,resched,5 -yes,that's correct,original,book,1 -meeting_schedule,what meetings do i have today?,original,avail,0 -no,negating,parrot,cancel,3 -thank_you,gracias,original,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -no,definitely not,original,cancel,3 -greeting,yo,original,greet,4 -meeting_schedule,when is my meeting with kevin scheduled for?,lambada,avail,0 -yes,let's do it,parrot,book,1 -no,that’s incorrect,original,cancel,3 -no,erroneous,parrot,cancel,3 -greeting,"hi, ai",original,greet,4 -how_busy,is the restaurant crowded between 7 and 8 o'clock in the evening?,parrot,avail,0 -yes,a fact,parrot,book,1 -goodbye,goodbye later,parrot,bye,2 -yes,yeap,original,book,1 -yes,that is accurate,original,book,1 -no,that's bad,parrot,cancel,3 -how_busy,why is the olive garden busy at 5?,parrot,avail,0 -how_busy,how long do i have to wait for a table at applebee's?,parrot,avail,0 -yes,10-Apr,original,book,1 -yes,"yes, please",parrot,book,1 -goodbye,i enjoyed our conversation,parrot,bye,2 -goodbye,", goodbye",lambada,bye,2 -greeting,bonjour,original,greet,4 -how_busy,how long is the wait at red lobster?,parrot,avail,0 -goodbye,later gater,original,bye,2 -no,no way,original,cancel,3 -date,today is the date?,parrot,avail,0 -goodbye,farewell,original,bye,2 -no,not really,original,cancel,3 -thank_you,thanks!,original,bye,2 -no,absolutely not,original,cancel,3 -calendar_update,delete the event scheduled for april 14,parrot,resched,5 -goodbye,tata for now,original,bye,2 -meeting_schedule,what is my meeting calendar?,parrot,avail,0 -greeting,how've you been,original,greet,4 -goodbye,adios,original,bye,2 -goodbye,bye-bye,original,bye,2 -schedule_meeting,set up a meeting,parrot,book,1 -goodbye,"later, goodbye",lambada,bye,2 -goodbye,goodbyes,parrot,bye,2 -no,negative sure,parrot,cancel,3 -no,negative definitely,parrot,cancel,3 -date,what is current day?,parrot,avail,0 -no,it's actually a lie,parrot,cancel,3 -how_busy,how long before i can get a burger in olive garden,parrot,avail,0 -how_busy,how busy will oompa looma be during lunch,lambada,avail,0 -greeting,hi,original,greet,4 -yes,is true,parrot,book,1 -date,what day is it?,original,avail,0 -thank_you,you helped me so i'm thankful,parrot,bye,2 -yes,i think it's correct,parrot,book,1 -reminder_update,set a reminder alarm for the workout tomorrow at noon,parrot,resched,5 -no,no longer valid,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -thank_you,thanks again,original,bye,2 -yes,facts,original,book,1 -no,that's certainly false,parrot,cancel,3 -how_busy,please tell me what's a typical table in olive garden?,parrot,avail,0 -yes,just right,parrot,book,1 -goodbye,fairwell,original,bye,2 -greeting,welcome,parrot,greet,4 -yes,certainly,parrot,book,1 -goodbye,fairwell?,parrot,bye,2 -goodbye,i'll go,parrot,bye,2 -greeting,hey yai,lambada,greet,4 -greeting,how does ai do?,parrot,greet,4 -date,what's tomorrow's date,original,avail,0 -date,when is it going to be in eight days?,parrot,avail,0 -yes,certainly,parrot,book,1 -no,don't agree,parrot,cancel,3 -no,that's negative,parrot,cancel,3 -greeting,heller,original,greet,4 -calendar,please show what's on my calendar for march 17th,parrot,avail,0 -thank_you,youre a doll,original,bye,2 -no,indeed it's false,parrot,cancel,3 -goodbye,nice to talk to you,lambada,bye,2 -yes,sure,original,book,1 -calendar,can you see my calendar for next tuesday 17th?,parrot,avail,0 -yes,definitely yes,parrot,book,1 -date,date please,original,avail,0 -no,it is false,original,cancel,3 -goodbye,good night,original,bye,2 -thank_you,you're welcome,parrot,bye,2 -reminder_update,let me remember,parrot,resched,5 -yes,confirm,original,book,1 -yes,agreed,original,book,1 -yes,definitely yes,parrot,book,1 -greeting,whats up?,parrot,greet,4 -greeting,good morning ai,parrot,greet,4 -yes,"sure, that is right",lambada,book,1 -goodbye,you're done,parrot,bye,2 -date,today?,parrot,avail,0 -yes,yup,original,book,1 -greeting,hey there!,original,greet,4 -thank_you,oh sweet thanks,original,bye,2 -no,nada,original,cancel,3 -reminder_update,remind me,original,resched,5 -yes,that's definitely true,original,book,1 -no,please no,parrot,cancel,3 -thank_you,thank you for making my life easier,parrot,bye,2 -calendar,do you have anything on my calendar for march 21?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -yes,it's true,original,book,1 -yes,facts,original,book,1 -no,negative for sure,original,cancel,3 -yes,good yes,lambada,book,1 -yes,facts,original,book,1 -no,please no,parrot,cancel,3 -no,negation,parrot,cancel,3 -goodbye,tootles,original,bye,2 -greeting,"hi, ai",original,greet,4 -no,thanks no,parrot,cancel,3 -greeting,hi,original,greet,4 -goodbye,bye bye!,original,bye,2 -no,naw,parrot,cancel,3 -thank_you,"nice, excellent!",original,bye,2 -goodbye,tootles,original,bye,2 -goodbye,adios,original,bye,2 -yes,it's true yes,parrot,book,1 -thank_you,you answered,parrot,bye,2 -goodbye,"later, good luck",lambada,bye,2 -no,FALSE,lambada,cancel,3 -how_busy,what's the crowd like at 5 pm,lambada,avail,0 -yes,it appears true,parrot,book,1 -greeting,"hey, how's my day",lambada,greet,4 -yes,agreed,original,book,1 -no,and it's very false,parrot,cancel,3 -goodbye,i'm gone,parrot,bye,2 -how_busy,want to know how busy red robin is at seven,parrot,avail,0 -goodbye,i'm out,parrot,bye,2 -no,it's absolutely false,parrot,cancel,3 -calendar,do i have any appoints set for my calendar april 3rd?,original,avail,0 -goodbye,i enjoyed our conversation,parrot,bye,2 -greeting,heyo,original,greet,4 -greeting,so how's everything?,parrot,greet,4 -how_busy,how long will the wait in an italian restaurant be,parrot,avail,0 -goodbye,say goodbye for now,parrot,bye,2 -greeting,hello good day,parrot,greet,4 -goodbye,i'll have to go,parrot,bye,2 -yes,i know,parrot,book,1 -no,nada,original,cancel,3 -yes,it's logical,parrot,book,1 -thank_you,"awesome, thanks",original,bye,2 -yes,let's do it,parrot,book,1 -date,today?,parrot,avail,0 -greeting,why hello?,original,greet,4 -yes,"yep, that's correct",lambada,book,1 -goodbye,buhbye,original,bye,2 -thank_you,thanks a lot,original,bye,2 -goodbye,goodbye ai,parrot,bye,2 -no,"no, that's a lie",lambada,cancel,3 -no,negating,parrot,cancel,3 -yes,this is true,lambada,book,1 -greeting,salutations,parrot,greet,4 -greeting,hiya!,original,greet,4 -thank_you,many thanks,original,bye,2 -date,today?,parrot,avail,0 -goodbye,", goodbye",lambada,bye,2 -goodbye,"thanks, bye",original,bye,2 -greeting,good morning,parrot,greet,4 -yes,affirmative,original,book,1 -thank_you,the best,parrot,bye,2 -goodbye,see you around,original,bye,2 -greeting,are you well?,original,greet,4 -greeting,yo,original,greet,4 -goodbye,signing off,original,bye,2 -yes,certainly,parrot,book,1 -yes,it's certainly positive,parrot,book,1 -thank_you,i am thankful,lambada,bye,2 -how_busy,is tilman busy at 5?,parrot,avail,0 -goodbye,bye,original,bye,2 -no,it's actually false,parrot,cancel,3 -no,nope,original,cancel,3 -date,please tell me the date today,lambada,avail,0 -reminder_update,add a reminder to me?,parrot,resched,5 -goodbye,ill see you around,original,bye,2 -yes,not false,parrot,book,1 -thank_you,awesome thanks,parrot,bye,2 -reminder_update,remind me to buy bread,parrot,resched,5 -thank_you,my sincere thanks,parrot,bye,2 -goodbye,goodbye,original,bye,2 -goodbye,thanks goodbye,parrot,bye,2 -no,no thanks,original,cancel,3 -goodbye,regards,original,bye,2 -no,it's absolutely false,parrot,cancel,3 -how_busy,how busy will i be at tadao?,parrot,avail,0 -no,that's overwhelmingly negative,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -greeting,hey there!,original,greet,4 -yes,yay,lambada,book,1 -goodbye,"great talk, thanks",original,bye,2 -reminder_update,i need to remind myself,parrot,resched,5 -no,erroneous,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -date,what month today?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -how_busy,what's the wait time for a restaurant in texas?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -yes,ok,original,book,1 -reminder_update,"new reminder, please",original,resched,5 -yes,i'll say yes,parrot,book,1 -greeting,how is my situation?,parrot,greet,4 -goodbye,see ya,original,bye,2 -goodbye,"nice talk, goodbye",lambada,bye,2 -greeting,how are you feeling today?,parrot,greet,4 -how_busy,how busy is the restaurant at dinner time,parrot,avail,0 -goodbye,later,original,bye,2 -no,don't agree,parrot,cancel,3 -schedule_meeting,me and seth would like to meet at 11 am,parrot,book,1 -greeting,"hey, ai",original,greet,4 -no,that is not the case,original,cancel,3 -greeting,what's going on,original,greet,4 -cancel_reservation,get the salad cancelled,lambada,cancel,3 -thank_you,you've helped,parrot,bye,2 -greeting,how're you?,parrot,greet,4 -thank_you,thank you for the thanks,parrot,bye,2 -thank_you,you're special thanks,parrot,bye,2 -greeting,hello there,original,greet,4 -thank_you,i'm thankful,original,bye,2 -calendar_update,can you add events to my calendar?,parrot,resched,5 -yes,okay,original,book,1 -goodbye,it's over,parrot,bye,2 -calendar,do i have any calendar entries for march 8th?,original,avail,0 -yes,yeah,original,book,1 -yes,positive,parrot,book,1 -thank_you,nice,parrot,bye,2 -yes,roger that,original,book,1 -goodbye,you're done,parrot,bye,2 -calendar,check my calendar to see if my dog is accounted for,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -no,but that's totally wrong,parrot,cancel,3 -thank_you,thank you kindly,original,bye,2 -calendar_update,can you remove the date of the school play from my schedule?,parrot,resched,5 -yes,i'll check it out,parrot,book,1 -date,what's tomorrow on the calendar?,parrot,avail,0 -how_busy,does the coffee shop get busy?,parrot,avail,0 -goodbye,good bye,original,bye,2 -how_busy,how long will it take to get seated at the restaurant,lambada,avail,0 -greeting,aloha,original,greet,4 -thank_you,"great, thanks!",original,bye,2 -no,i'm going to say no,lambada,cancel,3 -greeting,salutations,parrot,greet,4 -yes,obviously,parrot,book,1 -no,certainly not,original,cancel,3 -goodbye,thanks goodbye,parrot,bye,2 -calendar,what's the daytime show next week?,parrot,avail,0 -yes,thats right,original,book,1 -goodbye,i'm out,parrot,bye,2 -no,no,lambada,cancel,3 -schedule_meeting,i need a meeting scheduled with bob for 7:00am on 9/11,original,book,1 -goodbye,say goodbye,parrot,bye,2 -greeting,hello how are things?,parrot,greet,4 -no,nothing,parrot,cancel,3 -no,but it's wrong,parrot,cancel,3 -no,nay,original,cancel,3 -greeting,"hi, ai",original,greet,4 -greeting,hi,original,greet,4 -yes,good,parrot,book,1 -thank_you,much obliged,original,bye,2 -yes,uh-huh,original,book,1 -thank_you,make sure you do something good for me,lambada,bye,2 -greeting,wake up ai,parrot,greet,4 -greeting,what's up,original,greet,4 -goodbye,farewell to you,lambada,bye,2 -thank_you,thanks again,original,bye,2 -reminder_update,can you add a reminder on my list?,parrot,resched,5 -thank_you,thanks for the update,lambada,bye,2 -thank_you,thank you?,parrot,bye,2 -no,FALSE,lambada,cancel,3 -goodbye,im leaving,parrot,bye,2 -goodbye,buhbye,original,bye,2 -thank_you,merci beaucoup,original,bye,2 -goodbye,thank you for my help goodbye,parrot,bye,2 -goodbye,and i had fun talking to you,parrot,bye,2 -date,what's my date today?,parrot,avail,0 -no,not good,parrot,cancel,3 -goodbye,"great talk, thanks",original,bye,2 -how_busy,is there a long wait at the pizza fountain?,parrot,avail,0 -greeting,how is ai doing?,parrot,greet,4 -greeting,"hello, how's my day",original,greet,4 -date,current day,parrot,avail,0 -reminder_update,what's a reminder,parrot,resched,5 -yes,yeah yeah,lambada,book,1 -goodbye,cya later,original,bye,2 -thank_you,thank you for helping me out,lambada,bye,2 -yes,indeed,original,book,1 -calendar_update,let's remove the date from the calendar,lambada,resched,5 -thank_you,thank you,original,bye,2 -no,naw,original,cancel,3 -yes,10-Apr,original,book,1 -date,what is my date today?,parrot,avail,0 -thank_you,you've tried,parrot,bye,2 -thank_you,much obliged,original,bye,2 -calendar_update,remove the dinner with john on friday,lambada,resched,5 -thank_you,you are so nice to think of me,original,bye,2 -no,nada,original,cancel,3 -goodbye,bye bye,lambada,bye,2 -date,date tomorrow?,parrot,avail,0 -greeting,whats up with you,original,greet,4 -how_busy,why does the restaurant have such a busy time at 5 o'clock?,parrot,avail,0 -no,it would be wrong,parrot,cancel,3 -goodbye,signing off,original,bye,2 -goodbye,good-bye,parrot,bye,2 -no,that's not it,parrot,cancel,3 -calendar_update,remove jess'party from my calendar,parrot,resched,5 -goodbye,good luck later,parrot,bye,2 -yes,my answer is yes,parrot,book,1 -schedule_meeting,i want you to have a meeting at noon,parrot,book,1 -goodbye,see ya!,original,bye,2 -how_busy,is it busy at the cheese cake factory around 6?,parrot,avail,0 -greeting,hello ai,parrot,greet,4 -meeting_schedule,what's my schedule today?,parrot,avail,0 -calendar,what is tuesday's calendar like?,original,avail,0 -goodbye,peace,original,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -no,no!,original,cancel,3 -greeting,wassup,original,greet,4 -meeting_schedule,time of meeting?,parrot,avail,0 -reminder_update,have i forgotten?,parrot,resched,5 -no,"no, that is fake",original,cancel,3 -no,don't like it no,parrot,cancel,3 -goodbye,i'm outta here!,original,bye,2 -yes,say positive,parrot,book,1 -yes,certainly true,parrot,book,1 -greeting,welcome,parrot,greet,4 -yes,great,original,book,1 -reminder_update,please remind me to take the trash out in an hour,parrot,resched,5 -thank_you,again thanks,parrot,bye,2 -goodbye,i leave now,parrot,bye,2 -date,date please,original,avail,0 -goodbye,goodbye goodbye,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -date,the date will be in four days,parrot,avail,0 -how_busy,how busy is enchilada around 7,lambada,avail,0 -greeting,whats up?,parrot,greet,4 -goodbye,i need to go,lambada,bye,2 -yes,what's the truth of this,lambada,book,1 -greeting,welcome,parrot,greet,4 -yes,yup,original,book,1 -greeting,why hello?,original,greet,4 -yes,yep,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how long is the wait for a table at olive garden,lambada,avail,0 -yes,you are definitely correct,lambada,book,1 -no,FALSE,lambada,cancel,3 -reminder_update,a new reminder,parrot,resched,5 -how_busy,what's the busiest place in town right now,lambada,avail,0 -reminder_update,set a reminder,original,resched,5 -thank_you,i'm glad you did it for me,parrot,bye,2 -yes,"yeah, that's right",original,book,1 -goodbye,later!,original,bye,2 -how_busy,what's the wait like at this restaurant right now,lambada,avail,0 -greeting,how's it going?,parrot,greet,4 -calendar,please check my calendar for march 4 2019,parrot,avail,0 -how_busy,how busy is ziggy's around dinner time,lambada,avail,0 -how_busy,how long is the wait at chipotle tonight,original,avail,0 -greeting,whats up?,parrot,greet,4 -greeting,ai how you're doing,lambada,greet,4 -how_busy,how busy is red robin at 3,lambada,avail,0 -no,don't like that,parrot,cancel,3 -goodbye,peace,original,bye,2 -date,what's today's date,original,avail,0 -greeting,how things go?,parrot,greet,4 -thank_you,gracias,original,bye,2 -yes,absolutely!,original,book,1 -goodbye,adios ai,original,bye,2 -greeting,good evening,original,greet,4 -schedule_meeting,i need an agenda,parrot,book,1 -greeting,"hello there, good morning",original,greet,4 -thank_you,you helped me out,parrot,bye,2 -no,nope,original,cancel,3 -yes,positive,original,book,1 -how_busy,how long is the wait at chipotle factory,lambada,avail,0 -goodbye,bye-bye,original,bye,2 -date,is tomorrow's date?,parrot,avail,0 -goodbye,"bye-bye, my friend",lambada,bye,2 -how_busy,how busy will ihop be at noon,lambada,avail,0 -yes,"yes, that's affirmative",original,book,1 -schedule_meeting,a meeting with steve at 3pm,parrot,book,1 -goodbye,glad we had to talk,parrot,bye,2 -no,it's negative,parrot,cancel,3 -no,nada,original,cancel,3 -meeting_schedule,what's the meeting today?,parrot,avail,0 -date,which date is it?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -greeting,salutations,parrot,greet,4 -greeting,good day,original,greet,4 -yes,that seems true,original,book,1 -greeting,ahoy,lambada,greet,4 -greeting,heller,original,greet,4 -calendar,what's the schedule for an event scheduled for october 14th?,parrot,avail,0 -cancel_reservation,cancel my reservation for me?,parrot,cancel,3 -calendar,are there plans for 12032019?,parrot,avail,0 -yes,definitely,original,book,1 -greeting,hiya!,original,greet,4 -greeting,how're you doing?,parrot,greet,4 -goodbye,goodbye soon,lambada,bye,2 -greeting,salutations!,original,greet,4 -no,not correct,parrot,cancel,3 -meeting_schedule,what's my plan today?,parrot,avail,0 -yes,okay,original,book,1 -yes,yup,original,book,1 -goodbye,it was wonderful to talk to you,parrot,bye,2 -date,what's my tomorrow date?,parrot,avail,0 -cancel_reservation,can i cancel my reservation for 4 at red robin?,original,cancel,3 -yes,TRUE,original,book,1 -reminder_update,remember to call tomorrow,parrot,resched,5 -yes,"yup, that's correct",lambada,book,1 -yes,that's a fact,lambada,book,1 -no,negatory,original,cancel,3 -yes,yes you are,original,book,1 -no,nada,original,cancel,3 -greeting,"hello, good day",lambada,greet,4 -goodbye,regards,original,bye,2 -goodbye,goodnight,original,bye,2 -no,absolutely not,original,cancel,3 -greeting,why hello?,original,greet,4 -goodbye,farewell!,original,bye,2 -calendar_update,please put taco night on the house calendar date of january 6,original,resched,5 -greeting,hiya,original,greet,4 -yes,roger that,original,book,1 -goodbye,bye now,original,bye,2 -no,that's a no,lambada,cancel,3 -how_busy,is the breakfast room full in the mornings?,parrot,avail,0 -yes,positive,original,book,1 -no,naw,parrot,cancel,3 -thank_you,you've tried,parrot,bye,2 -yes,it's indeed true,original,book,1 -no,thanks no,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -goodbye,adios,original,bye,2 -yes,affirmitive,original,book,1 -goodbye,im leaving goodbye,parrot,bye,2 -yes,ok,original,book,1 -date,what's the year?,parrot,avail,0 -thank_you,my thanks,parrot,bye,2 -calendar_update,please get rid of my prom event from march 25th,parrot,resched,5 -yes,absolutely,original,book,1 -goodbye,greetings,parrot,bye,2 -calendar_update,i need anniversary dinner added to my schedule for march 7,original,resched,5 -no,negative,original,cancel,3 -goodbye,good call,parrot,bye,2 -greeting,yo how's it going,parrot,greet,4 -reminder_update,please make a reminder,original,resched,5 -how_busy,the crowd at red lobster?,parrot,avail,0 -thank_you,i am thankful,lambada,bye,2 -no,so that's no,parrot,cancel,3 -greeting,nice day,lambada,greet,4 -greeting,heller,original,greet,4 -no,no,lambada,cancel,3 -yes,roger that,original,book,1 -goodbye,fairwell,original,bye,2 -goodbye,bye-bye,original,bye,2 -goodbye,nice to speak with you,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -how_busy,does iman be busy at 6 pm?,lambada,avail,0 -no,nothing,parrot,cancel,3 -thank_you,you've been great,parrot,bye,2 -goodbye,adios,original,bye,2 -goodbye,im leaving,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -yes,do that?,original,book,1 -greeting,what's happening?,parrot,greet,4 -no,negating,parrot,cancel,3 -thank_you,i'm thankful,original,bye,2 -reminder_update,add a reminder for me?,parrot,resched,5 -goodbye,"later, good luck",lambada,bye,2 -date,what the day?,parrot,avail,0 -reminder_update,just a reminder,parrot,resched,5 -goodbye,nice seeing you bye,original,bye,2 -greeting,good day,original,greet,4 -no,this is so negative,parrot,cancel,3 -how_busy,would i have to wait long if i want to eat at chili's,original,avail,0 -yes,that is correct,original,book,1 -no,definitely not,original,cancel,3 -greeting,ai how you're doing,lambada,greet,4 -goodbye,farewell,original,bye,2 -goodbye,bye!,original,bye,2 -no,and it's very false,parrot,cancel,3 -goodbye,fairwell,original,bye,2 -date,please date,parrot,avail,0 -thank_you,again thank you,parrot,bye,2 -date,today?,parrot,avail,0 -yes,facts,original,book,1 -thank_you,thank you,original,bye,2 -goodbye,farewell,original,bye,2 -how_busy,how busy is san tamasi at 7,lambada,avail,0 -thank_you,again thanks,parrot,bye,2 -calendar,display my calendar,lambada,avail,0 -cancel_reservation,i want to cancel a reservation at the pizza hut under the name of leia roberts,parrot,cancel,3 -goodbye,"thanks for my help, goodbye!",original,bye,2 -thank_you,i am grateful,lambada,bye,2 -no,say negative,parrot,cancel,3 -date,today what date?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,that is true,lambada,book,1 -greeting,welcome,parrot,greet,4 -reminder_update,want you to remember something,parrot,resched,5 -yes,absolutely!,original,book,1 -how_busy,how long do i have to wait at the cheesecake factory?,parrot,avail,0 -no,nothing,parrot,cancel,3 -date,and what day is it today,parrot,avail,0 -no,i believe my claim is false,parrot,cancel,3 -goodbye,farewell!,original,bye,2 -yes,facts,original,book,1 -greeting,how ya been,original,greet,4 -goodbye,goodbye!,original,bye,2 -greeting,aho,parrot,greet,4 -greeting,what am i feeling?,lambada,greet,4 -meeting_schedule,meeting today,parrot,avail,0 -goodbye,i leave now,parrot,bye,2 -goodbye,please talk soon,parrot,bye,2 -yes,10-Apr,original,book,1 -goodbye,bye bye,lambada,bye,2 -how_busy,how busy is imanas at 6,original,avail,0 -thank_you,thanks for answering,parrot,bye,2 -no,i think it's a lie,parrot,cancel,3 -reminder_update,remind me,original,resched,5 -yes,all right,parrot,book,1 -calendar_update,remove friday's event from my calendar,lambada,resched,5 -no,that's a false,lambada,cancel,3 -thank_you,nice,parrot,bye,2 -no,not good,parrot,cancel,3 -date,what's today's date,original,avail,0 -how_busy,how long will it take to sit at the macaroni grill,parrot,avail,0 -no,nothing,parrot,cancel,3 -cancel_reservation,i'd like you to cancel the dinner reservation for williams at the palace tonight,parrot,cancel,3 -how_busy,can i wait for a table in the red lobster?,parrot,avail,0 -how_busy,will there be a lot of waits at chili's dinner?,parrot,avail,0 -no,that's so wrong,parrot,cancel,3 -yes,confirmed,original,book,1 -greeting,hey it's up,lambada,greet,4 -no,this is a lie,parrot,cancel,3 -greeting,hows are ya,original,greet,4 -yes,yes you are right,original,book,1 -no,FALSE,lambada,cancel,3 -greeting,whats up?,parrot,greet,4 -no,no?,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -how_busy,what time do i need to wait for marinara?,parrot,avail,0 -schedule_meeting,what should i do to schedule a meeting with you?,parrot,book,1 -thank_you,so grateful,parrot,bye,2 -no,that's bad,parrot,cancel,3 -yes,absolutely!,original,book,1 -date,in five days?,parrot,avail,0 -greeting,heller,original,greet,4 -thank_you,thanks for that!,original,bye,2 -calendar,what's the schedule for tomorrow?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -goodbye,talk to me soon,parrot,bye,2 -thank_you,my thanks,parrot,bye,2 -how_busy,ihop around 10 pm,parrot,avail,0 -greeting,heller,original,greet,4 -greeting,how's everything?,parrot,greet,4 -no,it is very much false,original,cancel,3 -yes,sure,original,book,1 -greeting,so how's everything?,parrot,greet,4 -no,erroneous,parrot,cancel,3 -meeting_schedule,what's the meeting today?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -thank_you,you've been amazing,lambada,bye,2 -yes,yeah yeah,lambada,book,1 -no,nada,original,cancel,3 -goodbye,goodbye soon,lambada,bye,2 -no,negative,original,cancel,3 -thank_you,thank you!,original,bye,2 -greeting,hello how's it going,original,greet,4 -thank_you,thanks again!,original,bye,2 -no,negating,parrot,cancel,3 -thank_you,good job,lambada,bye,2 -yes,yes sir,original,book,1 -thank_you,thanks for all the help,parrot,bye,2 -how_busy,how long will the wait at koko be?,parrot,avail,0 -no,negating,parrot,cancel,3 -yes,sure,original,book,1 -date,what's it today?,parrot,avail,0 -how_busy,can you tell me how many people will be seated in this restaurant?,parrot,avail,0 -greeting,heller,original,greet,4 -yes,accepted,original,book,1 -yes,i'd say that's true,parrot,book,1 -greeting,salutation,parrot,greet,4 -greeting,have to know how everything goes,parrot,greet,4 -date,i need to know what's the date of today?,parrot,avail,0 -yes,"yeah, that is true",lambada,book,1 -greeting,ahoy,lambada,greet,4 -yes,definitely yes,parrot,book,1 -no,that's very negative,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -reminder_update,come on please,parrot,resched,5 -cancel_reservation,because of circumstances i don't need my reservation anymore,original,cancel,3 -yes,that's true,original,book,1 -how_busy,if i want a table in olive garden how long will it take,parrot,avail,0 -reminder_update,remember to remember later,parrot,resched,5 -no,not correct,parrot,cancel,3 -reminder_update,create a reminder please,parrot,resched,5 -yes,absolutely,original,book,1 -calendar_update,i have to put my appointment tomorrow on my calendar,parrot,resched,5 -goodbye,greetings,parrot,bye,2 -greeting,hiya,original,greet,4 -yes,my response is yes,parrot,book,1 -no,that's untrue,parrot,cancel,3 -greeting,what's new,lambada,greet,4 -goodbye,later thanks for the chat,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -thank_you,really great!,original,bye,2 -goodbye,was a pleasure talking with you,parrot,bye,2 -yes,huh,parrot,book,1 -greeting,hey fellow,parrot,greet,4 -goodbye,have fun?,lambada,bye,2 -date,describe the day?,parrot,avail,0 -greeting,how's ai feeling?,parrot,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -reminder_update,remind me to call bob,original,resched,5 -goodbye,see you around,original,bye,2 -yes,facts,original,book,1 -date,what date will it be in 9 months?,parrot,avail,0 -yes,i'd say yes,parrot,book,1 -how_busy,what's the wait in red lobster?,parrot,avail,0 -yes,say yes,lambada,book,1 -greeting,hiya!,original,greet,4 -no,no way!,original,cancel,3 -date,what would be the date tomorrow?,parrot,avail,0 -goodbye,later!,original,bye,2 -cancel_reservation,please cancel my reservation,original,cancel,3 -calendar_update,please add lunch and lisa on friday to my calendar,parrot,resched,5 -how_busy,wait at the pizza hut is it long?,parrot,avail,0 -thank_you,thank you!,original,bye,2 -thank_you,thanks please,original,bye,2 -calendar_update,can you cancel an improv class from my calendar for may 7th?,parrot,resched,5 -no,that's incorrect,original,cancel,3 -date,what's the current day?,parrot,avail,0 -thank_you,gracias,original,bye,2 -yes,10-Apr,original,book,1 -yes,TRUE,original,book,1 -goodbye,later,original,bye,2 -no,negative,original,cancel,3 -no,i say negative,original,cancel,3 -thank_you,thank you for helping,parrot,bye,2 -no,there is no,parrot,cancel,3 -goodbye,i'm out,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -goodbye,regards,original,bye,2 -schedule_meeting,i want to know if there's a meeting room available at 8,parrot,book,1 -no,not necessarily true,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -goodbye,goodbye!,original,bye,2 -thank_you,much obliged,original,bye,2 -no,you are wrong,original,cancel,3 -no,don't like it no,parrot,cancel,3 -reminder_update,remind me to remind my cat to shut the refrigerator,parrot,resched,5 -goodbye,goodbye,original,bye,2 -greeting,what do you feel today?,parrot,greet,4 -goodbye,farewell!,original,bye,2 -how_busy,how busy is the cheese cake factory at 7 pm,lambada,avail,0 -thank_you,thank you again,parrot,bye,2 -greeting,yo,original,greet,4 -how_busy,can you tell me how busy that place is at 6?,lambada,avail,0 -no,that's no,parrot,cancel,3 -no,that's not the answer,parrot,cancel,3 -goodbye,thank you for talking to me,lambada,bye,2 -yes,that's all right,parrot,book,1 -greeting,hello,original,greet,4 -thank_you,glad you did it,parrot,bye,2 -date,in 9 days?,parrot,avail,0 -no,nada,original,cancel,3 -no,not necessarily true,parrot,cancel,3 -no,certainly not,original,cancel,3 -yes,absolutely correct,original,book,1 -goodbye,good conversation,parrot,bye,2 -no,it doesn't seem so,parrot,cancel,3 -greeting,hiya!,original,greet,4 -goodbye,peace,original,bye,2 -no,it's no,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -meeting_schedule,what's on my calendar?,parrot,avail,0 -how_busy,how long before dinner at macaroni and cheese?,parrot,avail,0 -yes,"yes, please",original,book,1 -goodbye,tootles?,parrot,bye,2 -yes,indeed,original,book,1 -how_busy,when is rancho crowded?,parrot,avail,0 -greeting,whats new,lambada,greet,4 -thank_you,thanks for the prompt response,parrot,bye,2 -yes,absolutely!,original,book,1 -greeting,how are you treated,lambada,greet,4 -greeting,"hey, ai",original,greet,4 -goodbye,adios ai,original,bye,2 -greeting,bonjour,original,greet,4 -yes,i'm telling you that this is a true statement,lambada,book,1 -yes,right,parrot,book,1 -date,what's today,original,avail,0 -yes,sure,original,book,1 -goodbye,i’ll be leaving now,original,bye,2 -how_busy,how long should i wait to sit at the red rooster,parrot,avail,0 -greeting,yo,original,greet,4 -greeting,how's the ayi doing?,parrot,greet,4 -greeting,salutation,parrot,greet,4 -reminder_update,is it possible to make a reminder?,parrot,resched,5 -schedule_meeting,i'd like you to set up a meeting with bob at 2pm,parrot,book,1 -meeting_schedule,please show me my schedule of meetings,parrot,avail,0 -date,what is the day?,original,avail,0 -date,what's the day now??,parrot,avail,0 -no,negative,original,cancel,3 -goodbye,goodbye goodbye,parrot,bye,2 -thank_you,thanks,original,bye,2 -calendar_update,delete the restaurant party from my calendar,parrot,resched,5 -thank_you,wish you were here sooner,parrot,bye,2 -goodbye,take it easy!,original,bye,2 -no,i think not,original,cancel,3 -reminder_update,have to remind myself to do something,parrot,resched,5 -goodbye,nice talk,lambada,bye,2 -yes,yeah,original,book,1 -yes,"yeah, that's true",lambada,book,1 -yes,say yes,lambada,book,1 -how_busy,is mcdonalds busy?,parrot,avail,0 -goodbye,great chat goodbye,lambada,bye,2 -no,i would prefer not,original,cancel,3 -yes,and you're correct,parrot,book,1 -goodbye,fairwell?,parrot,bye,2 -thank_you,you've been amazing,lambada,bye,2 -yes,i can confirm,parrot,book,1 -greeting,hello what is happening,lambada,greet,4 -how_busy,how long will i have to wait to be seated in chili's?,parrot,avail,0 -yes,absolutely,original,book,1 -greeting,"hello, ai",original,greet,4 -meeting_schedule,show me the time i meet sarah today?,parrot,avail,0 -date,give me a date,parrot,avail,0 -no,erroneous,parrot,cancel,3 -greeting,how is everything?,parrot,greet,4 -no,so that's no,parrot,cancel,3 -yes,"yup, that is true",lambada,book,1 -yes,sure,original,book,1 -thank_you,again thanks,parrot,bye,2 -cancel_reservation,do you need to cancel my reservation for the loft?,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -no,negative,original,cancel,3 -greeting,bonjour,original,greet,4 -date,what's the date now?,parrot,avail,0 -goodbye,wonderful conversation,lambada,bye,2 -no,yes it's false,parrot,cancel,3 -thank_you,i appreciate that,original,bye,2 -yes,ya,original,book,1 -no,nope,original,cancel,3 -goodbye,later good luck,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -goodbye,buhbye,original,bye,2 -no,absolutely not,original,cancel,3 -thank_you,i'm grateful,original,bye,2 -no,it seems wrong,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -greeting,heller,original,greet,4 -yes,absolutely,original,book,1 -cancel_reservation,can you cancel my reservations for dinner please?,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -greeting,how does ai feel?,parrot,greet,4 -calendar,what's tuesday's calendar?,parrot,avail,0 -how_busy,how long is the wait in this restaurant?,parrot,avail,0 -how_busy,does the street get crowded around 11 o'clock?,parrot,avail,0 -how_busy,how long will chili's wait?,parrot,avail,0 -how_busy,how long will it take to get a table in buffalo wild wings?,parrot,avail,0 -greeting,how have you been doing,original,greet,4 -greeting,ahoy,lambada,greet,4 -no,negating,parrot,cancel,3 -thank_you,my gratitude,parrot,bye,2 -meeting_schedule,what's my meeting today?,parrot,avail,0 -no,that's incorrect,original,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,exactly right,original,book,1 -no,no thanks,original,cancel,3 -greeting,how're you?,parrot,greet,4 -greeting,aho,parrot,greet,4 -greeting,yo,original,greet,4 -greeting,hey there!,original,greet,4 -no,erroneous,parrot,cancel,3 -date,please tell me today's date,original,avail,0 -goodbye,bye-bye,original,bye,2 -greeting,how do you feel?,parrot,greet,4 -how_busy,will the red robin be busy at 5pm?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how long does it take for a table at chipotle,lambada,avail,0 -yes,TRUE,lambada,book,1 -yes,yes that's correct,original,book,1 -no,that's so negative,parrot,cancel,3 -yes,obviously,parrot,book,1 -no,it's no,parrot,cancel,3 -yes,yeap,original,book,1 -yes,oh-huh,parrot,book,1 -greeting,hola,original,greet,4 -yes,that appears true,original,book,1 -greeting,salutation,parrot,greet,4 -greeting,how is my day?,parrot,greet,4 -yes,good,parrot,book,1 -reminder_update,keep an eye on the litter,parrot,resched,5 -calendar,do you have anything scheduled for next tuesday?,parrot,avail,0 -no,not correct,parrot,cancel,3 -goodbye,goodbye no problem,parrot,bye,2 -thank_you,nice,parrot,bye,2 -goodbye,thanks bye bye!,original,bye,2 -greeting,aho,parrot,greet,4 -thank_you,you're special thanks,parrot,bye,2 -how_busy,can i wait for a long time before i can get to the restaurant?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -no,erroneous,parrot,cancel,3 -thank_you,thanks for the help!,original,bye,2 -goodbye,"that's all, bye",original,bye,2 -calendar_update,i have to remove the fishing from my calendar for soccer,parrot,resched,5 -goodbye,bye bye!,original,bye,2 -goodbye,farewell!,original,bye,2 -calendar_update,add the doctor appointment to my calendar for friday,parrot,resched,5 -greeting,have you been good??,parrot,greet,4 -goodbye,adios!,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -greeting,salutations!,original,greet,4 -yes,exactly right,original,book,1 -meeting_schedule,do i have a meeting with dave today?,parrot,avail,0 -how_busy,how busy is chipotle at 7 pm,lambada,avail,0 -yes,do that?,original,book,1 -no,absolutely not,original,cancel,3 -goodbye,take it easy!,original,bye,2 -thank_you,"nice, excellent!",original,bye,2 -no,certainly not true,parrot,cancel,3 -no,not really,original,cancel,3 -no,is it a lie,parrot,cancel,3 -calendar,what is on my calendar for february 8?,parrot,avail,0 -yes,great,original,book,1 -yes,perfect,parrot,book,1 -how_busy,what's the wait like at chili's around 4,lambada,avail,0 -yes,approved,original,book,1 -goodbye,i'll leave,parrot,bye,2 -goodbye,sayonara,original,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -goodbye,it's over,parrot,bye,2 -greeting,what's happening?,parrot,greet,4 -no,negatory?,parrot,cancel,3 -goodbye,and then goodbye,parrot,bye,2 -greeting,have you been good?,original,greet,4 -thank_you,many thanks,original,bye,2 -calendar_update,please add an item to my calendar that i need to clean the kitchen on thursday,original,resched,5 -goodbye,for now,parrot,bye,2 -no,that's incorrect!,original,cancel,3 -goodbye,fairwell?,parrot,bye,2 -no,not happening,original,cancel,3 -calendar,display my calendar,lambada,avail,0 -thank_you,okay thank you,parrot,bye,2 -how_busy,how long will i have to wait at chocolate fountain,lambada,avail,0 -goodbye,nice chat today,lambada,bye,2 -greeting,yo,original,greet,4 -goodbye,goodbye thank you,parrot,bye,2 -thank_you,thanks again!,original,bye,2 -meeting_schedule,let me know about every meeting i have scheduled today,parrot,avail,0 -yes,affirmative,original,book,1 -how_busy,how long is a table at olive garden right now,lambada,avail,0 -no,i prefer not,parrot,cancel,3 -no,nada,original,cancel,3 -greeting,"howdy, what's new",original,greet,4 -goodbye,", goodbye",lambada,bye,2 -yes,approved,original,book,1 -yes,huh,parrot,book,1 -greeting,hi,original,greet,4 -no,invalid,original,cancel,3 -goodbye,farewell,original,bye,2 -goodbye,see ya,lambada,bye,2 -greeting,how's that hanging?,parrot,greet,4 -greeting,"hi, how are you",original,greet,4 -thank_you,okay thank you,parrot,bye,2 -greeting,how's my feeling?,parrot,greet,4 -no,negative certainly,parrot,cancel,3 -greeting,hello siri,original,greet,4 -no,no good,original,cancel,3 -no,this is certainly not the case,parrot,cancel,3 -how_busy,is there a waiting time for a seat in e-li?,parrot,avail,0 -thank_you,i appreciate your assistance,parrot,bye,2 -yes,say positive,parrot,book,1 -no,i disagree,parrot,cancel,3 -how_busy,wait for a table at the red lobster?,parrot,avail,0 -no,absolutely not,original,cancel,3 -greeting,hello siri,original,greet,4 -goodbye,good conversation,parrot,bye,2 -greeting,what's new?,parrot,greet,4 -yes,"yup, that's correct",lambada,book,1 -reminder_update,i want to remind myself to eat at the office,parrot,resched,5 -goodbye,see ya!,original,bye,2 -greeting,hello how are you doing,lambada,greet,4 -date,current day,parrot,avail,0 -goodbye,catch you around,original,bye,2 -goodbye,see you later!,original,bye,2 -greeting,wake up ai,parrot,greet,4 -no,not right?,parrot,cancel,3 -yes,yes that's it,original,book,1 -greeting,all right now?,parrot,greet,4 -greeting,hola!,original,greet,4 -how_busy,how long will it take to get chili peppers?,parrot,avail,0 -goodbye,good luck later,parrot,bye,2 -thank_you,you've tried,parrot,bye,2 -date,tell me the day tomorrow?,parrot,avail,0 -date,a year?,parrot,avail,0 -yes,positive,original,book,1 -reminder_update,please remind me later on,parrot,resched,5 -calendar,did you set a day on my calendar for voting in the next election?,parrot,avail,0 -cancel_reservation,i don't want my reservation,parrot,cancel,3 -no,nay,original,cancel,3 -goodbye,goodnight,original,bye,2 -no,negative for sure,original,cancel,3 -goodbye,ai goodbye,original,bye,2 -reminder_update,have i forgotten?,parrot,resched,5 -goodbye,goodbyes,parrot,bye,2 -yes,yep,original,book,1 -no,invalid,original,cancel,3 -no,that is not factual,original,cancel,3 -yes,oh yes,original,book,1 -yes,is true,parrot,book,1 -thank_you,your response was good,parrot,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -thank_you,nice,parrot,bye,2 -thank_you,for that thank you,parrot,bye,2 -thank_you,"awesome, thanks",original,bye,2 -goodbye,tootles,original,bye,2 -goodbye,lovely conversation,parrot,bye,2 -yes,approved,original,book,1 -goodbye,glad i can talk to you,parrot,bye,2 -thank_you,gracias,original,bye,2 -yes,"yes, please",parrot,book,1 -greeting,heller,original,greet,4 -no,not happening,original,cancel,3 -cancel_reservation,i have to cancel my dinner reservation at the steak house,parrot,cancel,3 -calendar_update,i want you to cancel the event on 14 march,parrot,resched,5 -goodbye,peace,original,bye,2 -greeting,good evening,original,greet,4 -thank_you,you made me aware,parrot,bye,2 -greeting,how're you doing,original,greet,4 -how_busy,tell me the time it takes to be seated in this restaurant,parrot,avail,0 -greeting,ahoy hoy,original,greet,4 -no,that's so false,parrot,cancel,3 -yes,yup,original,book,1 -no,nothing,parrot,cancel,3 -no,false sure,parrot,cancel,3 -goodbye,it's time to run,parrot,bye,2 -greeting,tell me how you are today?,parrot,greet,4 -no,negatory,original,cancel,3 -goodbye,great talk,lambada,bye,2 -goodbye,good bye then,original,bye,2 -goodbye,good conversation,parrot,bye,2 -goodbye,bye!,original,bye,2 -goodbye,as regards,parrot,bye,2 -goodbye,my way,parrot,bye,2 -greeting,hola!,original,greet,4 -greeting,how've you been,original,greet,4 -no,nada,original,cancel,3 -greeting,yo,original,greet,4 -no,that's a huge mistake,parrot,cancel,3 -calendar,tell me what's on my calendar for march 3?,parrot,avail,0 -goodbye,just relax,parrot,bye,2 -greeting,how's my treatment?,parrot,greet,4 -goodbye,afterward,parrot,bye,2 -meeting_schedule,what's my meeting plan?,parrot,avail,0 -yes,affirmative,original,book,1 -thank_you,oh sweet thanks,original,bye,2 -no,nothing,parrot,cancel,3 -yes,certainly,parrot,book,1 -schedule_meeting,can you help me to schedule a meeting with you?,parrot,book,1 -schedule_meeting,i have to meet with john at 11 o'clock in the morning,parrot,book,1 -yes,10-Apr,original,book,1 -how_busy,how busy is the restaurant before the dinner,parrot,avail,0 -meeting_schedule,when is the meeting with jim scheduled to start?,parrot,avail,0 -calendar,what do i have scheduled for feb 22nd?,lambada,avail,0 -calendar_update,remove lunch with jeff from my calendar for may 3,lambada,resched,5 -reminder_update,a new reminder please,parrot,resched,5 -yes,obviously,parrot,book,1 -no,it's false,parrot,cancel,3 -yes,absolutely!,original,book,1 -greeting,whats new?,parrot,greet,4 -date,is it monday?,parrot,avail,0 -calendar,what's tuesday's calendar?,parrot,avail,0 -goodbye,go easy,parrot,bye,2 -date,is it monday?,parrot,avail,0 -yes,please let's do it,original,book,1 -no,that isn't right,original,cancel,3 -yes,i'd say yes,parrot,book,1 -yes,facts,original,book,1 -thank_you,thanks!,original,bye,2 -yes,ya,original,book,1 -date,what is current day?,parrot,avail,0 -thank_you,appreciate it,original,bye,2 -thank_you,you've been great,parrot,bye,2 -reminder_update,remember to pick up milk at the store,parrot,resched,5 -goodbye,bye-bye,original,bye,2 -yes,ok,original,book,1 -no,that's no,parrot,cancel,3 -how_busy,what's the wait time in chinese restaurants?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -yes,uh-huh,original,book,1 -goodbye,adios!,original,bye,2 -no,erroneous,parrot,cancel,3 -calendar_update,the day that i'm scheduled to be at the hospital is changed,lambada,resched,5 -goodbye,good bye,original,bye,2 -how_busy,wait for a table at red robin?,parrot,avail,0 -greeting,bonjour,original,greet,4 -goodbye,i'm leaving now,lambada,bye,2 -reminder_update,make a reminder to do my makeup,lambada,resched,5 -goodbye,sayonara,original,bye,2 -meeting_schedule,what date is today's meeting?,lambada,avail,0 -no,that's incorrect!,original,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,confirmed,original,book,1 -calendar,is an event in my calendar?,parrot,avail,0 -greeting,how ya been,original,greet,4 -no,no this is false,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -yes,"yup, that's true",original,book,1 -yes,that seems true,original,book,1 -no,no that's not accurate,parrot,cancel,3 -goodbye,have a good one?,original,bye,2 -greeting,how's everything,original,greet,4 -greeting,what is new?,parrot,greet,4 -goodbye,thank you for talking,parrot,bye,2 -calendar,is there anything on my calendar for april 15th?,parrot,avail,0 -goodbye,later!,original,bye,2 -no,that's no,parrot,cancel,3 -thank_you,i am very grateful,original,bye,2 -goodbye,"bye-bye, my friend",lambada,bye,2 -thank_you,thankyou,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -cancel_reservation,cancellation of dinner reservation,parrot,cancel,3 -greeting,hi ai,original,greet,4 -goodbye,"later, goodbye",lambada,bye,2 -meeting_schedule,what's my meeting today?,parrot,avail,0 -greeting,what's going on,original,greet,4 -cancel_reservation,my reservation is not necessary anymore,lambada,cancel,3 -thank_you,i'm grateful,original,bye,2 -how_busy,can you tell me how long it will take to get a table at the egg salad factory?,parrot,avail,0 -thank_you,"great, thanks!",original,bye,2 -yes,oh-huh,parrot,book,1 -yes,obviously,parrot,book,1 -greeting,have you felt?,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -yes,accept,parrot,book,1 -greeting,how's my current situation,parrot,greet,4 -goodbye,i'm going,parrot,bye,2 -goodbye,regards,original,bye,2 -calendar_update,check my calendar for march 30 2019,parrot,resched,5 -goodbye,great talk with you,lambada,bye,2 -yes,that's the truth,original,book,1 -yes,ok,original,book,1 -yes,uh-huh,original,book,1 -yes,agreed,original,book,1 -how_busy,how long will i have to wait before i can have lunch in red lobster,parrot,avail,0 -yes,facts,original,book,1 -meeting_schedule,meet me at every meeting today,parrot,avail,0 -greeting,hi,original,greet,4 -no,that is false,original,cancel,3 -no,no!,original,cancel,3 -no,that's certainly false,parrot,cancel,3 -how_busy,we have to wait in the restaurant for how long,parrot,avail,0 -yes,yep,original,book,1 -greeting,hi,original,greet,4 -thank_you,well done,parrot,bye,2 -yes,accept,parrot,book,1 -how_busy,how busy is the restaurant at 7pm,lambada,avail,0 -greeting,what's happening,original,greet,4 -yes,yep,original,book,1 -yes,"yes, please",parrot,book,1 -no,it's very false,parrot,cancel,3 -how_busy,how long is the wait time at chili's right now,lambada,avail,0 -reminder_update,let me set a reminder to check my mail,lambada,resched,5 -greeting,whats up?,parrot,greet,4 -yes,just right,parrot,book,1 -goodbye,sign off,parrot,bye,2 -greeting,salutation,parrot,greet,4 -thank_you,many thank,original,bye,2 -thank_you,thanks a million,original,bye,2 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -how_busy,is the wait long?,parrot,avail,0 -yes,is true,parrot,book,1 -greeting,hey there,original,greet,4 -yes,accepted,original,book,1 -date,current date,original,avail,0 -yes,accepted,original,book,1 -greeting,whats up?,parrot,greet,4 -no,negative certainly,parrot,cancel,3 -yes,i just said it,parrot,book,1 -meeting_schedule,are there any meetings today with sean?,parrot,avail,0 -no,negation,parrot,cancel,3 -yes,that's right,original,book,1 -goodbye,thanks goodbye,parrot,bye,2 -how_busy,does olive garden get crowded around dinner time?,lambada,avail,0 -no,negating,parrot,cancel,3 -thank_you,my sincere gratitude,parrot,bye,2 -calendar,let me know what my calendar says for march 28th,parrot,avail,0 -thank_you,you're welcome,parrot,bye,2 -greeting,hello,original,greet,4 -no,nada,original,cancel,3 -goodbye,glad to talk,parrot,bye,2 -date,today?,parrot,avail,0 -calendar,check out my calendar for march 5?,parrot,avail,0 -no,the information is inaccurate,parrot,cancel,3 -no,it's a negation,parrot,cancel,3 -yes,absolutely,original,book,1 -yes,yeah,original,book,1 -greeting,how's everything going?,parrot,greet,4 -date,what year?,parrot,avail,0 -yes,not false,parrot,book,1 -greeting,hey,original,greet,4 -thank_you,thanks for helping out,original,bye,2 -calendar_update,remove wrestlemania from my calendar for may 7,parrot,resched,5 -goodbye,bye,original,bye,2 -goodbye,this conversation was wonderful,parrot,bye,2 -schedule_meeting,i want to schedule a meeting with jerry in 5 pm,lambada,book,1 -schedule_meeting,get us a meeting room for 9 am,parrot,book,1 -date,what date is today?,original,avail,0 -how_busy,please tell me how busy it is in the olive garden?,parrot,avail,0 -meeting_schedule,do i have a meeting between 6 and 7?,parrot,avail,0 -no,i meant no,original,cancel,3 -no,this statement is false,parrot,cancel,3 -calendar,what items do you have on my easter calendar?,parrot,avail,0 -no,not really,original,cancel,3 -greeting,hi how's everything going?,parrot,greet,4 -calendar,what do i have planned on 3/15?,original,avail,0 -goodbye,sayonara,original,bye,2 -no,that's wrong,original,cancel,3 -yes,indeed,original,book,1 -date,date tomorrow?,parrot,avail,0 -goodbye,later gator!,original,bye,2 -yes,affirmitive,original,book,1 -yes,yeah,original,book,1 -date,what's the month and the day tomorrow?,parrot,avail,0 -yes,"yes, that's confirmed",original,book,1 -goodbye,tootles?,parrot,bye,2 -goodbye,sayonara,original,bye,2 -greeting,hi how are you,original,greet,4 -greeting,hiya!,original,greet,4 -yes,okay,original,book,1 -no,it's so bad,parrot,cancel,3 -no,no!,original,cancel,3 -how_busy,how busy is imanas?,parrot,avail,0 -thank_you,i'm thankful,original,bye,2 -thank_you,okay thanks,original,bye,2 -greeting,hey fellow,parrot,greet,4 -goodbye,bye-bye,original,bye,2 -greeting,hey there!,original,greet,4 -cancel_reservation,i don't really need my reservation anymore,parrot,cancel,3 -goodbye,farewell!,original,bye,2 -no,hell nah,original,cancel,3 -no,nada,original,cancel,3 -goodbye,good conversation,parrot,bye,2 -yes,huh,parrot,book,1 -no,invalid,original,cancel,3 -no,erroneous,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,hey,original,greet,4 -calendar_update,add swimming to my calendar for today,parrot,resched,5 -goodbye,see ya,lambada,bye,2 -date,what is today?,original,avail,0 -thank_you,appreciate the support,parrot,bye,2 -how_busy,how busy is iman at 5:30,lambada,avail,0 -no,negation,parrot,cancel,3 -goodbye,peace out,original,bye,2 -goodbye,see ya,lambada,bye,2 -greeting,how is my situation?,parrot,greet,4 -no,the information is inaccurate,parrot,cancel,3 -cancel_reservation,cancel my dinner reservation,lambada,cancel,3 -goodbye,i'm leaving,parrot,bye,2 -no,it's indeed false,parrot,cancel,3 -thank_you,thanks for helping,original,bye,2 -goodbye,later,original,bye,2 -yes,not false,parrot,book,1 -goodbye,i must say goodbye,original,bye,2 -greeting,"hi, ai",original,greet,4 -goodbye,"syonara, ai device!",original,bye,2 -no,that's bad,parrot,cancel,3 -how_busy,check to see how long i'd have to wait if i went to the outback steakhouse,parrot,avail,0 -date,current date,original,avail,0 -greeting,hiya,original,greet,4 -goodbye,just relax,parrot,bye,2 -schedule_meeting,do you have a meeting room available between 10 and 4?,lambada,book,1 -no,that's overwhelmingly negative,parrot,cancel,3 -yes,uh-huh,original,book,1 -calendar_update,clear my calendar for november 11,parrot,resched,5 -schedule_meeting,can you book a meeting room for 6pm wednesday night?,parrot,book,1 -no,i don't think it's correct,parrot,cancel,3 -yes,indeed,parrot,book,1 -greeting,bonjour,original,greet,4 -no,FALSE,original,cancel,3 -greeting,hey there,original,greet,4 -yes,it's indeed true,original,book,1 -goodbye,"later, goodbye",lambada,bye,2 -goodbye,bye my friend,parrot,bye,2 -yes,exactly right,original,book,1 -yes,yes you are,original,book,1 -calendar_update,remove the birthday party of scott from my calendar,parrot,resched,5 -greeting,whats new?,parrot,greet,4 -goodbye,see ya later,original,bye,2 -how_busy,how long is a table in a restaurant?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,not true,original,cancel,3 -greeting,hello how's my life?,parrot,greet,4 -yes,great,original,book,1 -date,a year?,parrot,avail,0 -greeting,i want to know how you're doing,lambada,greet,4 -calendar,did i have my wife's anniversary on my calendar?,parrot,avail,0 -no,no way!,original,cancel,3 -thank_you,i'm glad you answered,parrot,bye,2 -goodbye,goodbye bye,parrot,bye,2 -yes,obviously,parrot,book,1 -goodbye,glad we talked,parrot,bye,2 -yes,absolutely,original,book,1 -how_busy,how busy is ihop typically at 6:00 pm,lambada,avail,0 -yes,that's correct,original,book,1 -yes,that is really true,lambada,book,1 -thank_you,thanks for the assist,original,bye,2 -how_busy,how long will it take me to get a table at the cheesecake factory?,parrot,avail,0 -cancel_reservation,cancel my reservation at the steakhouse,lambada,cancel,3 -yes,"yes, that's confirmed",original,book,1 -yes,say yes,lambada,book,1 -yes,TRUE,original,book,1 -no,that's incorrect,original,cancel,3 -goodbye,bye-bye,original,bye,2 -yes,definitely,original,book,1 -goodbye,goodbyes,parrot,bye,2 -greeting,wassup,original,greet,4 -date,in 7 days?,parrot,avail,0 -yes,yeah,original,book,1 -no,please do not agree,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -thank_you,thankyou,parrot,bye,2 -goodbye,it was good to chat with you,parrot,bye,2 -date,a year?,parrot,avail,0 -how_busy,what time do you expect the wait for a table at chili's?,lambada,avail,0 -meeting_schedule,do you have any meetings between 9 and 10 today?,parrot,avail,0 -greeting,hello what is happening,lambada,greet,4 -yes,i agree,original,book,1 -no,that's a negation,parrot,cancel,3 -no,nay,original,cancel,3 -calendar,do you have scheduled events on my calendar?,parrot,avail,0 -thank_you,gracias,original,bye,2 -thank_you,you answered,parrot,bye,2 -thank_you,gracias,original,bye,2 -yes,facts,original,book,1 -greeting,hey,original,greet,4 -no,nope,original,cancel,3 -schedule_meeting,make a meeting room for 11am,parrot,book,1 -yes,that checks out,original,book,1 -yes,exactly right,original,book,1 -yes,positive,original,book,1 -thank_you,my thanks,parrot,bye,2 -yes,oh-huh,parrot,book,1 -thank_you,glad you helped me,parrot,bye,2 -yes,okay,original,book,1 -goodbye,peace out,original,bye,2 -goodbye,buhbye,original,bye,2 -goodbye,see you soon,original,bye,2 -goodbye,was a pleasure talking with you,parrot,bye,2 -goodbye,it's over,parrot,bye,2 -yes,good,parrot,book,1 -no,not good,parrot,cancel,3 -thank_you,thank you!,original,bye,2 -thank_you,thanks for the info,original,bye,2 -no,it's a mistake,parrot,cancel,3 -no,that is no,lambada,cancel,3 -goodbye,later!,original,bye,2 -no,nope,original,cancel,3 -yes,correct,original,book,1 -goodbye,fairwell?,parrot,bye,2 -greeting,heller,original,greet,4 -cancel_reservation,cancel my reservation for joe's at zepher right now,parrot,cancel,3 -greeting,how are you treated?,parrot,greet,4 -date,please date,parrot,avail,0 -how_busy,how long will it take to sit in a cheese cake factory?,parrot,avail,0 -how_busy,is there a waiting time for a greengrocer?,parrot,avail,0 -goodbye,ill be leaving now,parrot,bye,2 -thank_you,many thank,original,bye,2 -how_busy,how long can i expect to wait for the red lobster?,parrot,avail,0 -yes,yep,original,book,1 -no,not right?,parrot,cancel,3 -yes,okay,original,book,1 -date,in 14 days what will it be?,parrot,avail,0 -greeting,how're you?,parrot,greet,4 -schedule_meeting,are meeting rooms open between 9 and 10?,parrot,book,1 -greeting,how's ayi doing?,parrot,greet,4 -cancel_reservation,let you know that i have to cancel my reservation for dinner,lambada,cancel,3 -no,i would have to say the answer to that is no,original,cancel,3 -yes,absolutely!,original,book,1 -thank_you,i want to thank you for helping,original,bye,2 -goodbye,goodbye then,parrot,bye,2 -greeting,how's otc?,parrot,greet,4 -how_busy,how busy is ihop around 10 pm,lambada,avail,0 -greeting,aho,parrot,greet,4 -no,erroneous,parrot,cancel,3 -yes,affirmitive,original,book,1 -yes,sure,original,book,1 -yes,yup,original,book,1 -greeting,welcome,parrot,greet,4 -thank_you,thankyou,parrot,bye,2 -cancel_reservation,cancel my reservation at umami with carl,parrot,cancel,3 -no,i disagree with that,lambada,cancel,3 -date,in 7 days?,parrot,avail,0 -greeting,what's new?,parrot,greet,4 -goodbye,regards,original,bye,2 -yes,so it's true,parrot,book,1 -meeting_schedule,what are my meetings today?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -goodbye,goodbye,original,bye,2 -yes,it also makes sense,parrot,book,1 -thank_you,i'm thankful,original,bye,2 -date,what's the date of today?,parrot,avail,0 -how_busy,how long is the restaurant before dinner,lambada,avail,0 -yes,TRUE,lambada,book,1 -no,that’s incorrect,original,cancel,3 -greeting,ahoy,lambada,greet,4 -calendar,check my calendar for march 17,parrot,avail,0 -thank_you,much obliged,original,bye,2 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -greeting,how you feel?,parrot,greet,4 -yes,oh-huh,parrot,book,1 -schedule_meeting,what's the meeting room availability between 3:00 and 4:05,lambada,book,1 -no,don't like that,parrot,cancel,3 -goodbye,regards,original,bye,2 -thank_you,well done,parrot,bye,2 -goodbye,it was good chatting,original,bye,2 -date,tell me what the date will be,parrot,avail,0 -yes,yes please,original,book,1 -yes,confirmed,original,book,1 -greeting,welcome,parrot,greet,4 -reminder_update,add a note,parrot,resched,5 -date,what's going on today?,parrot,avail,0 -thank_you,for that thank you very much,parrot,bye,2 -calendar_update,need a calendar for april 15,parrot,resched,5 -yes,10-Apr,original,book,1 -thank_you,again thanks,parrot,bye,2 -greeting,good morning,parrot,greet,4 -schedule_meeting,please schedule a meeting,parrot,book,1 -date,what's the day like?,parrot,avail,0 -greeting,hola,original,greet,4 -thank_you,you have my gratitude,original,bye,2 -greeting,good day,original,greet,4 -goodbye,i'll go,parrot,bye,2 -yes,okay,original,book,1 -cancel_reservation,could i cancel my reservations,original,cancel,3 -thank_you,again thanks,parrot,bye,2 -goodbye,good conversation,parrot,bye,2 -calendar,what do i have on next friday?,lambada,avail,0 -yes,great,original,book,1 -goodbye,goodbye,original,bye,2 -yes,confirm,original,book,1 -thank_you,i'm very grateful,parrot,bye,2 -no,nada,original,cancel,3 -thank_you,so grateful,parrot,bye,2 -goodbye,see you around,original,bye,2 -thank_you,thanks please,original,bye,2 -goodbye,tootles?,parrot,bye,2 -goodbye,enjoy my day goodbye,parrot,bye,2 -greeting,hi what's up,original,greet,4 -no,not right so,parrot,cancel,3 -reminder_update,create a reminder please,parrot,resched,5 -reminder_update,remind me to call a friend tomorrow?,parrot,resched,5 -greeting,"hello, friend",original,greet,4 -date,what month is it today??,parrot,avail,0 -goodbye,regards,original,bye,2 -no,absolutely false,parrot,cancel,3 -reminder_update,let me remember,parrot,resched,5 -how_busy,i want to know how busy red robin is at 7,lambada,avail,0 -goodbye,talk to you later!,original,bye,2 -yes,ya,original,book,1 -how_busy,how long is the wait for a table at blue jay,lambada,avail,0 -yes,is is very much true?,original,book,1 -goodbye,tootles,original,bye,2 -no,nothing,parrot,cancel,3 -yes,accepted,original,book,1 -how_busy,can you tell me if mr joe's steakhouse is crowded at 6pm?,parrot,avail,0 -greeting,how's ayi doing?,parrot,greet,4 -greeting,why hello?,original,greet,4 -goodbye,see ya,lambada,bye,2 -goodbye,im leaving,parrot,bye,2 -yes,yeap,original,book,1 -meeting_schedule,meeting today,parrot,avail,0 -how_busy,show me the wait times for ihop cheeses?,parrot,avail,0 -thank_you,you helped me out,parrot,bye,2 -no,that's untrue,parrot,cancel,3 -how_busy,how long will it take to get a table at this restaurant,lambada,avail,0 -greeting,how is it going?,parrot,greet,4 -greeting,please tell me what you're feeling,parrot,greet,4 -yes,oh-huh,parrot,book,1 -how_busy,do you know how busy chili's is at 730?,parrot,avail,0 -goodbye,buhbye now,lambada,bye,2 -yes,is true,parrot,book,1 -date,tell me the date today,parrot,avail,0 -greeting,hiya!,original,greet,4 -goodbye,my way,parrot,bye,2 -calendar,what's on my calendar for friday the 1st?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -no,negative certainly,parrot,cancel,3 -greeting,hi,original,greet,4 -goodbye,adios!,original,bye,2 -date,today?,parrot,avail,0 -yes,great,original,book,1 -goodbye,i'll go,parrot,bye,2 -no,no,lambada,cancel,3 -no,negatory?,parrot,cancel,3 -goodbye,bye!,original,bye,2 -goodbye,goodbye!,original,bye,2 -calendar,tell me what's on my calendar for friday the 1st,parrot,avail,0 -no,hell nah,original,cancel,3 -date,i have to know what the date is now,parrot,avail,0 -no,negation,parrot,cancel,3 -goodbye,i'm going,parrot,bye,2 -reminder_update,remember to remember this later,parrot,resched,5 -yes,affirmitive,original,book,1 -yes,it's true,original,book,1 -reminder_update,please make a reminder for me,parrot,resched,5 -yes,TRUE,lambada,book,1 -goodbye,greetings,parrot,bye,2 -thank_you,why thank you?,original,bye,2 -goodbye,goodbye then,parrot,bye,2 -greeting,hey how do you feel?,parrot,greet,4 -yes,ok,original,book,1 -thank_you,so grateful,parrot,bye,2 -no,nada,original,cancel,3 -yes,good,parrot,book,1 -greeting,hi ai,original,greet,4 -greeting,hey there!,original,greet,4 -date,what date will it be in 9 days from now on?,parrot,avail,0 -date,what month is this today?,parrot,avail,0 -schedule_meeting,please set up a meeting with john at 5pm,lambada,book,1 -goodbye,adios,original,bye,2 -goodbye,later,original,bye,2 -thank_you,again thanks,parrot,bye,2 -yes,so it works,parrot,book,1 -date,'what is the date today',parrot,avail,0 -greeting,is everything okay today?,parrot,greet,4 -yes,confirmed,original,book,1 -yes,i'm going to tell you tes,parrot,book,1 -greeting,ahoy,lambada,greet,4 -yes,sure,original,book,1 -date,what is today?,original,avail,0 -how_busy,how busy will black beans be around 11 am,parrot,avail,0 -cancel_reservation,the reservation i created,parrot,cancel,3 -calendar,help me find my march schedule,lambada,avail,0 -how_busy,tell me the time to wait at the cheesecake factory?,parrot,avail,0 -date,what's tomorrow's date,original,avail,0 -goodbye,bye now,original,bye,2 -goodbye,i'm out,parrot,bye,2 -yes,10-Apr,original,book,1 -thank_you,you helped me i'm happy,parrot,bye,2 -how_busy,how busy is chili's around 9,lambada,avail,0 -yes,yes,original,book,1 -how_busy,how many people get a table at mr. barto's,lambada,avail,0 -date,is the date?,parrot,avail,0 -how_busy,can you tell me if mr joes steakhouse is busy at 5?,lambada,avail,0 -greeting,aloha,original,greet,4 -no,no,lambada,cancel,3 -greeting,have to know how everything goes,parrot,greet,4 -calendar,is my 30th birthday party on my calendar?,parrot,avail,0 -no,naw,original,cancel,3 -no,i believe my claim is wrong,lambada,cancel,3 -greeting,"hello, what's up",original,greet,4 -greeting,how's the ayi?,parrot,greet,4 -greeting,how is it going?,parrot,greet,4 -goodbye,catch you around,original,bye,2 -meeting_schedule,when does richard meet me?,parrot,avail,0 -no,"no, it's not",lambada,cancel,3 -how_busy,how long will it take to get seated in chili's?,parrot,avail,0 -goodbye,we can talk later,parrot,bye,2 -reminder_update,my cat needs neutered,parrot,resched,5 -how_busy,how long is the wait at ihop at noon,lambada,avail,0 -goodbye,please chat to me,parrot,bye,2 -no,that isn't correct,original,cancel,3 -yes,sure,original,book,1 -greeting,hello,original,greet,4 -greeting,how is everything going?,parrot,greet,4 -goodbye,take it easy,lambada,bye,2 -thank_you,thank ya!,original,bye,2 -calendar,do you have anything on my calendar for january 9th?,parrot,avail,0 -goodbye,goodbye then,parrot,bye,2 -greeting,what's happened?,parrot,greet,4 -goodbye,nice talk,lambada,bye,2 -goodbye,catch you around,original,bye,2 -goodbye,good luck,lambada,bye,2 -no,that's incorrect!,original,cancel,3 -greeting,aloha,original,greet,4 -yes,sure,original,book,1 -yes,indeed,original,book,1 -no,naw,parrot,cancel,3 -greeting,why hello?,original,greet,4 -goodbye,goodbyes,parrot,bye,2 -yes,obviously,parrot,book,1 -yes,positive,parrot,book,1 -yes,good,parrot,book,1 -date,a year?,parrot,avail,0 -no,it's actually false,parrot,cancel,3 -no,this is not true,parrot,cancel,3 -meeting_schedule,when i'll meet roger?,parrot,avail,0 -no,negatory,original,cancel,3 -date,which date is next day?,parrot,avail,0 -schedule_meeting,set up meeting rooms for 9am on friday,parrot,book,1 -how_busy,will iman be busy at 6 o'clock in the afternoon?,parrot,avail,0 -goodbye,"thanks for chatting, bye",lambada,bye,2 -thank_you,"great, thanks!",original,bye,2 -goodbye,goodbye!,original,bye,2 -reminder_update,remember to clean the shower,parrot,resched,5 -meeting_schedule,what meetings do i have today between 1 and 3?,parrot,avail,0 -date,what's today,original,avail,0 -goodbye,buhbye,original,bye,2 -greeting,are you good?,original,greet,4 -goodbye,it's time to say goodbye,parrot,bye,2 -date,tell me the date tomorrow,parrot,avail,0 -greeting,hey,original,greet,4 -yes,that is really true,lambada,book,1 -goodbye,goodbye,original,bye,2 -yes,great,original,book,1 -goodbye,i'm going,parrot,bye,2 -thank_you,i'm happy you've helped me,parrot,bye,2 -no,so that's no,parrot,cancel,3 -thank_you,thanks for trying,original,bye,2 -thank_you,very grateful,parrot,bye,2 -greeting,hola!,original,greet,4 -yes,affirmitive,original,book,1 -greeting,wassup,original,greet,4 -no,but we don't want that,parrot,cancel,3 -meeting_schedule,when is this meeting?,parrot,avail,0 -yes,so it's true,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -calendar,have i scheduled anything on march 2nd on my calendar?,original,avail,0 -goodbye,goodbye later,parrot,bye,2 -reminder_update,set reminders for storing the money,parrot,resched,5 -no,and no it's not true,parrot,cancel,3 -no,invalid,original,cancel,3 -greeting,hola!,original,greet,4 -yes,confirm,original,book,1 -goodbye,i've been talking to you lately,parrot,bye,2 -thank_you,thank ya!,original,bye,2 -greeting,hello hello good morning,parrot,greet,4 -calendar,what's on my calendar for june 22nd?,parrot,avail,0 -no,it is not that,lambada,cancel,3 -greeting,hey yai,lambada,greet,4 -yes,not false,parrot,book,1 -reminder_update,make me remember,parrot,resched,5 -greeting,hey there!,original,greet,4 -no,no that's not true,parrot,cancel,3 -goodbye,farewell!,original,bye,2 -calendar,tell me what's on my calendar april 1st?,lambada,avail,0 -schedule_meeting,i need you to schedule a meeting,lambada,book,1 -thank_you,really great!,original,bye,2 -how_busy,what's the wait at iman's,lambada,avail,0 -how_busy,how long will i have to wait to sit at macy's,parrot,avail,0 -goodbye,goodbye thank you,parrot,bye,2 -yes,great,original,book,1 -yes,that'd be great,parrot,book,1 -thank_you,i'm so grateful,parrot,bye,2 -calendar_update,remove my prom from my calendar for march 15 2019 ,parrot,resched,5 -yes,i say yes,lambada,book,1 -yes,all right,original,book,1 -how_busy,is the wait at olive garden long?,parrot,avail,0 -schedule_meeting,or register to attend the meeting on wednesday,lambada,book,1 -yes,that's a sure yes,parrot,book,1 -thank_you,gracias,original,bye,2 -how_busy,tell me the wait for a table at red lobster?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -no,not good,parrot,cancel,3 -no,i wouldn't like that,parrot,cancel,3 -no,not right so,parrot,cancel,3 -goodbye,have fun?,lambada,bye,2 -yes,indeed,original,book,1 -yes,yes please,original,book,1 -thank_you,awesome thanks,parrot,bye,2 -yes,confirmed,original,book,1 -how_busy,can you tell me how long the wait at the pizza factory is?,parrot,avail,0 -greeting,bonjour,original,greet,4 -greeting,hiya,original,greet,4 -no,invalid,original,cancel,3 -yes,i want that,parrot,book,1 -yes,i vote yes,original,book,1 -goodbye,this was a good conversation,parrot,bye,2 -greeting,hey hey!,original,greet,4 -yes,definitely,original,book,1 -thank_you,i owe you,parrot,bye,2 -thank_you,thanks for that!,original,bye,2 -yes,all right,parrot,book,1 -greeting,how're you today?,parrot,greet,4 -how_busy,tell me the time it takes to sit in this restaurant?,parrot,avail,0 -yes,approved,original,book,1 -no,"no, that's a lie",lambada,cancel,3 -no,no,lambada,cancel,3 -no,negation,parrot,cancel,3 -greeting,heller,original,greet,4 -greeting,how's my current situation?,parrot,greet,4 -no,we don't want that,parrot,cancel,3 -how_busy,how long will it take to get seated in the kitchen?,parrot,avail,0 -greeting,hello how you doing,lambada,greet,4 -yes,i know,parrot,book,1 -no,not that,original,cancel,3 -yes,"yes, that's accurate",original,book,1 -how_busy,is it busy at the cheesecake factory at 6pm?,parrot,avail,0 -yes,agreed,original,book,1 -thank_you,you answered,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -yes,accepted,original,book,1 -yes,good,parrot,book,1 -thank_you,thanks,original,bye,2 -goodbye,bye now,original,bye,2 -reminder_update,please set a reminder?,parrot,resched,5 -how_busy,how long will the restaurant last before noon?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -no,that’s incorrect,original,cancel,3 -how_busy,how long will the wait for a table at one of the top pizza joints be,lambada,avail,0 -greeting,what is new?,parrot,greet,4 -greeting,hey fellow,parrot,greet,4 -how_busy,i want to know how busy the cheesecake factory is at 830 pm,parrot,avail,0 -greeting,aloha,original,greet,4 -goodbye,goodbye goodbye,parrot,bye,2 -date,which day is next,parrot,avail,0 -meeting_schedule,is there a meeting planned today?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -no,not good,parrot,cancel,3 -goodbye,adios!,original,bye,2 -goodbye,bye!,original,bye,2 -greeting,how's otc?,parrot,greet,4 -thank_you,i appreciate it,original,bye,2 -goodbye,later!,original,bye,2 -yes,huh huh,parrot,book,1 -goodbye,will leave now,parrot,bye,2 -no,that's not it,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -thank_you,i am thankful,lambada,bye,2 -no,no it's a no,parrot,cancel,3 -yes,affirmitive,original,book,1 -greeting,"hello, ai",original,greet,4 -yes,10-Apr,original,book,1 -goodbye,go easy,parrot,bye,2 -how_busy,is this restaurant crowded?,parrot,avail,0 -calendar_update,cancel all events in my calendar,parrot,resched,5 -no,that's a lie,parrot,cancel,3 -date,let me know the date,parrot,avail,0 -meeting_schedule,time of meeting?,parrot,avail,0 -how_busy,how long will the wait at chipper's be?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -greeting,how's life?,parrot,greet,4 -yes,good,parrot,book,1 -greeting,what i feel?,parrot,greet,4 -greeting,"hey, ai",original,greet,4 -thank_you,thanks again!,original,bye,2 -goodbye,see you later alligator,original,bye,2 -goodbye,"nice talk, goodbye",lambada,bye,2 -goodbye,fairwell?,parrot,bye,2 -yes,sure,original,book,1 -how_busy,how long will the wait be at 6 pm?,parrot,avail,0 -greeting,hey how are you,lambada,greet,4 -no,"no, that's not the case",lambada,cancel,3 -goodbye,fairwell,original,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -thank_you,thanks for my response,original,bye,2 -no,it's actually a lie,parrot,cancel,3 -no,negative for sure,original,cancel,3 -no,i don't want that,parrot,cancel,3 -yes,roger that,original,book,1 -thank_you,a million thanks,parrot,bye,2 -thank_you,i appeciate it,parrot,bye,2 -goodbye,the talk was nice,lambada,bye,2 -date,you have the date?,parrot,avail,0 -date,today?,parrot,avail,0 -no,the negator,parrot,cancel,3 -meeting_schedule,do i have any meetings scheduled today?,original,avail,0 -yes,exactly right,original,book,1 -no,negatory?,parrot,cancel,3 -cancel_reservation,i need to cancel my reservation,lambada,cancel,3 -greeting,hey bs,lambada,greet,4 -goodbye,later,original,bye,2 -how_busy,how long does the wait for a table in the italian restaurant be?,parrot,avail,0 -greeting,hola,original,greet,4 -yes,certainly,parrot,book,1 -greeting,tell me about my neighborhood,parrot,greet,4 -greeting,how's my treatment?,parrot,greet,4 -no,that's a negation,parrot,cancel,3 -goodbye,i'm leaving,parrot,bye,2 -no,nothing,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -yes,that's the truth,original,book,1 -greeting,aho,parrot,greet,4 -goodbye,later thanks for the chat,parrot,bye,2 -how_busy,how busy will the cheesecake factory be around noon,lambada,avail,0 -no,naw,original,cancel,3 -how_busy,tell me the average sitting time in this restaurant?,parrot,avail,0 -no,hell nah,original,cancel,3 -reminder_update,make a note to pay the mortgage,parrot,resched,5 -goodbye,"enjoy my day, goodbye",original,bye,2 -greeting,how's everything?,parrot,greet,4 -yes,ya,original,book,1 -goodbye,very nice conversation,parrot,bye,2 -yes,TRUE,lambada,book,1 -date,what year is it?,original,avail,0 -greeting,hey bs,lambada,greet,4 -goodbye,later!,original,bye,2 -how_busy,tell me the number of people in the restaurant at 8pm?,parrot,avail,0 -greeting,how's my day going?,parrot,greet,4 -greeting,and how are you treated?,parrot,greet,4 -yes,affirmative,original,book,1 -reminder_update,please make me a reminder to go visit ryan,parrot,resched,5 -yes,indeed,original,book,1 -thank_you,appreciated,original,bye,2 -date,please date,parrot,avail,0 -cancel_reservation,cancellation of dinner reservations,parrot,cancel,3 -reminder_update,a new reminder please,parrot,resched,5 -yes,TRUE,original,book,1 -reminder_update,create a reminder for me to exercise this week,original,resched,5 -date,what's the date,original,avail,0 -goodbye,thanks for the conversation take care,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -no,the information is wrong,original,cancel,3 -goodbye,glad to talk,parrot,bye,2 -goodbye,nice talk,lambada,bye,2 -goodbye,later gator!,original,bye,2 -no,no?,parrot,cancel,3 -yes,i believe that's true,original,book,1 -cancel_reservation,you may cancel my reservation,parrot,cancel,3 -calendar,show me what's on my calendar for march 12th?,parrot,avail,0 -yes,positive,parrot,book,1 -goodbye,great conversation,parrot,bye,2 -thank_you,thank you for my cooperation,parrot,bye,2 -goodbye,bye!,original,bye,2 -yes,absolutely,original,book,1 -greeting,so what's up?,parrot,greet,4 -goodbye,adios,original,bye,2 -yes,i want you to know this is a true statement,parrot,book,1 -greeting,whats new,lambada,greet,4 -goodbye,see you soon,original,bye,2 -thank_you,again thank you,parrot,bye,2 -no,negatory,original,cancel,3 -yes,absolutely,original,book,1 -reminder_update,and i'd like to remind myself of my holiday,parrot,resched,5 -goodbye,fairwell,original,bye,2 -yes,facts,original,book,1 -greeting,can you tell me how things are going for you?,lambada,greet,4 -greeting,how's idy?,parrot,greet,4 -yes,ok,original,book,1 -yes,all right,original,book,1 -how_busy,is mcdonalds busy?,parrot,avail,0 -goodbye,ai goodbye,original,bye,2 -calendar,'check my calendar for saturday,parrot,avail,0 -greeting,bonjour,original,greet,4 -goodbye,greetings,parrot,bye,2 -goodbye,goodbye now,parrot,bye,2 -meeting_schedule,when will i have my meeting?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -greeting,hello there,original,greet,4 -greeting,how's that hanging?,parrot,greet,4 -yes,i agree,original,book,1 -yes,that is right,original,book,1 -thank_you,my thanks,parrot,bye,2 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -greeting,what's happened?,parrot,greet,4 -date,what date is tomorrow?,original,avail,0 -meeting_schedule,what are meetings today?,parrot,avail,0 -how_busy,how busy is shokudo at 12?,parrot,avail,0 -no,nope,original,cancel,3 -calendar_update,i want you to cancel the party on may 13,lambada,resched,5 -thank_you,"great, thanks!",original,bye,2 -no,negative,original,cancel,3 -greeting,how have you been,original,greet,4 -goodbye,we chatted well,parrot,bye,2 -no,negatory,original,cancel,3 -goodbye,see ya,lambada,bye,2 -yes,you're right,original,book,1 -meeting_schedule,meeting today,parrot,avail,0 -reminder_update,remind me to call my friend tomorrow,parrot,resched,5 -greeting,heller,original,greet,4 -thank_you,your assistance is appreciated,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -no,naw,parrot,cancel,3 -yes,i can tell you,parrot,book,1 -calendar,what's on my calendar for march 7?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -no,certainly not,original,cancel,3 -reminder_update,can you remind me to finish a task for you?,parrot,resched,5 -no,please check that my statement is not valid,parrot,cancel,3 -no,i disagree,parrot,cancel,3 -thank_you,thanks again,original,bye,2 -goodbye,you're done,parrot,bye,2 -greeting,how's the ayi?,parrot,greet,4 -goodbye,i'm going,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -yes,good,parrot,book,1 -meeting_schedule,please tell me when the scheduled meetings end,lambada,avail,0 -no,that's not the case,parrot,cancel,3 -thank_you,your assistance is appreciated,parrot,bye,2 -greeting,salutations!,original,greet,4 -greeting,hiya!,original,greet,4 -date,what today?,parrot,avail,0 -yes,ok,original,book,1 -thank_you,thanks,original,bye,2 -no,no!,original,cancel,3 -greeting,salutations!,original,greet,4 -greeting,welcome,parrot,greet,4 -thank_you,merci beaucoup,original,bye,2 -date,today?,parrot,avail,0 -yes,that's a fact,lambada,book,1 -yes,i want to make sure that's true,parrot,book,1 -reminder_update,may i be reminded,lambada,resched,5 -greeting,hi,original,greet,4 -thank_you,thankyou,parrot,bye,2 -yes,ya,original,book,1 -no,no,lambada,cancel,3 -greeting,whats up?,parrot,greet,4 -yes,i vote yes,original,book,1 -how_busy,how busy the outback steakhouse will be at 730?,parrot,avail,0 -no,i say negative,original,cancel,3 -yes,sure,original,book,1 -no,that's wrong,original,cancel,3 -yes,perfect,parrot,book,1 -yes,accept,parrot,book,1 -yes,ya,original,book,1 -goodbye,see ya later,original,bye,2 -no,it's overwhelmingly wrong,parrot,cancel,3 -no,not good,parrot,cancel,3 -yes,indeed,original,book,1 -meeting_schedule,give me my schedule of meetings,parrot,avail,0 -greeting,salutations,parrot,greet,4 -no,it's overwhelmingly wrong,parrot,cancel,3 -yes,confirm,original,book,1 -no,"no, that is fake",original,cancel,3 -cancel_reservation,cancel dinner reservation tonight,parrot,cancel,3 -greeting,"hey, what's new",original,greet,4 -goodbye,fairwell?,parrot,bye,2 -greeting,heyo,original,greet,4 -goodbye,good seeing you,original,bye,2 -yes,affirmative,original,book,1 -goodbye,fairwell?,parrot,bye,2 -thank_you,"nice, excellent!",original,bye,2 -how_busy,would tio's be crowded at 7,original,avail,0 -goodbye,the chat was good,parrot,bye,2 -yes,let's do that,parrot,book,1 -meeting_schedule,wanna meet roger?,parrot,avail,0 -yes,of course,original,book,1 -goodbye,sayonara ,parrot,bye,2 -calendar_update,can you add a veterinarian appointment to my calendar on march 1st?,lambada,resched,5 -yes,"yes, please",parrot,book,1 -schedule_meeting,is there a room available between 5 and 10 pm?,parrot,book,1 -greeting,how life treats you?,parrot,greet,4 -goodbye,goodbye,original,bye,2 -date,what date tomorrow?,parrot,avail,0 -no,that’s incorrect,original,cancel,3 -greeting,hola!,original,greet,4 -goodbye,tootles,original,bye,2 -how_busy,how busy is chili's at 7:30,lambada,avail,0 -thank_you,nice,parrot,bye,2 -greeting,hi,original,greet,4 -goodbye,later goodbye,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -no,no,lambada,cancel,3 -date,current day,parrot,avail,0 -yes,correct,original,book,1 -goodbye,bye bye,lambada,bye,2 -how_busy,how busy will tasty browns be at 4pm,lambada,avail,0 -calendar,have i added my doctor's appointment to my calendar?,original,avail,0 -no,naw,original,cancel,3 -goodbye,sayonara,original,bye,2 -yes,ya,original,book,1 -calendar,can you tell me if i have any appointments on my calendar for march 20th?,lambada,avail,0 -greeting,hello,original,greet,4 -how_busy,tell me how busy can you expect red lobsters at 10pm?,lambada,avail,0 -goodbye,adios ai,original,bye,2 -thank_you,thank you for that reply,original,bye,2 -no,is my false assertion?,parrot,cancel,3 -no,i disagree,parrot,cancel,3 -greeting,what's happening,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,hi what's up,original,greet,4 -goodbye,adios,original,bye,2 -goodbye,good night,original,bye,2 -yes,oh-huh,parrot,book,1 -yes,my answer is yes,parrot,book,1 -thank_you,merci beaucoup,original,bye,2 -goodbye,goodbyes soon,parrot,bye,2 -calendar_update,please add the date of feb 5 to my calendar?,parrot,resched,5 -yes,obviously,parrot,book,1 -no,that's not factual,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -yes,sure,original,book,1 -schedule_meeting,i need a room,parrot,book,1 -how_busy,can you tell me how long the wait at olive garden is?,parrot,avail,0 -no,no!,original,cancel,3 -goodbye,i'll have to go,parrot,bye,2 -goodbye,i'm gone,parrot,bye,2 -yes,approved,original,book,1 -greeting,hiya,original,greet,4 -date,"in six days, what will it be",original,avail,0 -calendar,what's happening on march 15?,parrot,avail,0 -no,that's negative,parrot,cancel,3 -yes,indeed,original,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -goodbye,cya later,original,bye,2 -greeting,salutations!,original,greet,4 -yes,sure,original,book,1 -goodbye,goodbye!,original,bye,2 -greeting,whats new?,parrot,greet,4 -meeting_schedule,what's the date of the meeting today?,parrot,avail,0 -greeting,how is life?,parrot,greet,4 -meeting_schedule,tell me my meeting schedule?,lambada,avail,0 -cancel_reservation,can you cancel my reservation for dinner at kelley's at 7pm?,parrot,cancel,3 -no,false sure,parrot,cancel,3 -reminder_update,make a note to bring a book to work tomorrow,parrot,resched,5 -no,naw,parrot,cancel,3 -greeting,how are things?,parrot,greet,4 -thank_you,good job on that,lambada,bye,2 -how_busy,how busy is the olive garden at 9pm?,parrot,avail,0 -greeting,why hello?,original,greet,4 -calendar,tell me what's on my calendar for april 1st?,parrot,avail,0 -yes,yes,original,book,1 -how_busy,tell me the number of people who will wait for orange sauce at 7pm,parrot,avail,0 -yes,all right,parrot,book,1 -reminder_update,remind me,original,resched,5 -no,that's untrue,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -calendar,is there anything scheduled for march 1?,parrot,avail,0 -greeting,wassup,original,greet,4 -no,negative certainly,parrot,cancel,3 -meeting_schedule,when's the meeting?,parrot,avail,0 -how_busy,how busy is olive garden at 5 pm,lambada,avail,0 -how_busy,how long will i have to wait for a table at the cheese cake factory,lambada,avail,0 -yes,huh,parrot,book,1 -greeting,hi ai,original,greet,4 -yes,oh-huh,parrot,book,1 -greeting,whats new?,parrot,greet,4 -greeting,salutation,parrot,greet,4 -greeting,heller,original,greet,4 -goodbye,later thanks for the conversation,parrot,bye,2 -yes,right,parrot,book,1 -no,so that's no,parrot,cancel,3 -how_busy,show me how busy mr joes is at 8 o'clock?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -greeting,how did you feel?,parrot,greet,4 -goodbye,bye-bye,original,bye,2 -thank_you,thanks for the response,lambada,bye,2 -goodbye,sayonara,original,bye,2 -thank_you,gracias,original,bye,2 -yes,affirmitive,original,book,1 -date,is it monday wednesday thursday friday or sunday?,parrot,avail,0 -no,that's very negative,parrot,cancel,3 -yes,i agree,original,book,1 -greeting,hey what's up?,parrot,greet,4 -cancel_reservation,i made a reservation at the emporium under mark hamil that i don't need anymore,parrot,cancel,3 -how_busy,waiting for chicken tikka masala?,parrot,avail,0 -no,that's negative,parrot,cancel,3 -goodbye,go easy,parrot,bye,2 -yes,huh huh,parrot,book,1 -thank_you,much obliged,original,bye,2 -greeting,hiya!,original,greet,4 -goodbye,it was great talking with you,lambada,bye,2 -calendar,what's in the books for april 30th,original,avail,0 -goodbye,talk to you later,original,bye,2 -how_busy,how long would it take to wait at chipmunk,parrot,avail,0 -no,negative sure,parrot,cancel,3 -how_busy,can you tell me how busy michael is at 5 o'clock?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -greeting,you good?,parrot,greet,4 -yes,right,parrot,book,1 -yes,so it works,parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,thanks a lot,original,bye,2 -goodbye,adios!,original,bye,2 -goodbye,talk to you soon,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -thank_you,i'm very grateful,parrot,bye,2 -no,FALSE,lambada,cancel,3 -schedule_meeting,you can book a meeting room for thursday at 4pm,parrot,book,1 -thank_you,thanks for cooperating,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -yes,affirmative,original,book,1 -no,negatory,original,cancel,3 -reminder_update,make me a reminder,lambada,resched,5 -calendar,tell me what is on my calendar for march 21st?,lambada,avail,0 -goodbye,goodbye,original,bye,2 -how_busy,how long will the wait at rta be?,parrot,avail,0 -meeting_schedule,what meetings are my scheduled today?,lambada,avail,0 -greeting,hey how's it hanging,original,greet,4 -date,what day is tomorrow?,lambada,avail,0 -goodbye,adios!,original,bye,2 -goodbye,adios!,original,bye,2 -goodbye,catch you around,original,bye,2 -goodbye,goodbye,original,bye,2 -how_busy,how long will the wait be before i go to imagos,lambada,avail,0 -date,when will it be 10 days from today?,parrot,avail,0 -goodbye,i have to run,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,is true,parrot,book,1 -greeting,whats up,original,greet,4 -no,no?,parrot,cancel,3 -yes,right,parrot,book,1 -thank_you,nice,parrot,bye,2 -how_busy,how busy will the chipotle fries menu be?,parrot,avail,0 -calendar_update,clear my calendar for the thursday,lambada,resched,5 -reminder_update,remind me again please,original,resched,5 -no,naw,original,cancel,3 -greeting,hi what's up,original,greet,4 -no,that's negative,parrot,cancel,3 -how_busy,can you tell me how long the wait would be at olive garden?,lambada,avail,0 -thank_you,i owe you one,original,bye,2 -yes,accept,parrot,book,1 -reminder_update,set a reminder for my birthday,parrot,resched,5 -reminder_update,can you add a reminder to my list?,parrot,resched,5 -yes,that's the truth,original,book,1 -yes,that appears true,original,book,1 -date,what's the present day?,parrot,avail,0 -thank_you,i appreciate your answer,parrot,bye,2 -how_busy,when is rancho crowded?,parrot,avail,0 -goodbye,peace out!,original,bye,2 -yes,i would have to say yes as my answer,original,book,1 -no,no,lambada,cancel,3 -goodbye,see you later,original,bye,2 -no,that's absolutely false,parrot,cancel,3 -yes,yup,original,book,1 -no,that's wrong,original,cancel,3 -yes,yeap,original,book,1 -calendar_update,a doctor appointment for friday,parrot,resched,5 -yes,certainly,parrot,book,1 -greeting,hiya!,original,greet,4 -greeting,hey how's life,original,greet,4 -thank_you,many thank,original,bye,2 -yes,approved,original,book,1 -yes,certainly,parrot,book,1 -no,not right?,parrot,cancel,3 -how_busy,what is the wait at the restaurant right now?,lambada,avail,0 -yes,yeah,original,book,1 -goodbye,say goodbye,parrot,bye,2 -yes,indeed,original,book,1 -how_busy,is mr joe's pizza a regular dinner?,parrot,avail,0 -reminder_update,let me know,parrot,resched,5 -meeting_schedule,what meetings are today?,lambada,avail,0 -greeting,hey,original,greet,4 -thank_you,you're the best!,original,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -greeting,what's up?,parrot,greet,4 -yes,a true statement,parrot,book,1 -how_busy,how long will the wait time be at the cheese cake factory right now?,parrot,avail,0 -no,i disagree,parrot,cancel,3 -no,negative certainly,parrot,cancel,3 -date,what month is today?,parrot,avail,0 -date,please tell me the day?,parrot,avail,0 -yes,yes that's right,lambada,book,1 -calendar,tell me what i have planned for march 19th,parrot,avail,0 -goodbye,buhbye,original,bye,2 -goodbye,afterward,parrot,bye,2 -goodbye,thanks for talking,original,bye,2 -greeting,you good?,parrot,greet,4 -how_busy,is the restaurant crowded between 7 and 8 o'clock in the night?,parrot,avail,0 -no,invalid,original,cancel,3 -date,what month today?,parrot,avail,0 -how_busy,check if the red lobster is crowded around 5pm,parrot,avail,0 -cancel_reservation,can you cancel the reservation at the restaurant?,lambada,cancel,3 -thank_you,gracias,original,bye,2 -date,today what date?,parrot,avail,0 -calendar,show me if i added an event to my calendar?,parrot,avail,0 -goodbye,later gator!,original,bye,2 -yes,"yeah, that's right",original,book,1 -goodbye,later,original,bye,2 -thank_you,you've tried,parrot,bye,2 -no,i have to say it's not true,parrot,cancel,3 -yes,great,original,book,1 -goodbye,"great talk, thanks",original,bye,2 -goodbye,regards,original,bye,2 -greeting,salutations!,original,greet,4 -goodbye,bye now,original,bye,2 -greeting,hola!,original,greet,4 -greeting,hey,original,greet,4 -goodbye,peace out!,original,bye,2 -yes,facts,original,book,1 -yes,confirmed,original,book,1 -goodbye,thanks bye bye!,original,bye,2 -no,negative,original,cancel,3 -thank_you,you've helped,parrot,bye,2 -yes,right,parrot,book,1 -goodbye,goodnight,original,bye,2 -greeting,how goes it,original,greet,4 -goodbye,im leaving,parrot,bye,2 -greeting,how've you been?,parrot,greet,4 -thank_you,i'm grateful,original,bye,2 -greeting,hello there!,original,greet,4 -goodbye,i'll leave now,parrot,bye,2 -cancel_reservation,go ahead and cancel the reservation i made for 6:00 pm at parc,original,cancel,3 -cancel_reservation,i can't make my reservation at robinson's,lambada,cancel,3 -goodbye,good-bye,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -no,so that's no,parrot,cancel,3 -calendar_update,eliminate the event scheduled for tuesday,parrot,resched,5 -yes,yep,original,book,1 -yes,affirmative,original,book,1 -greeting,are you good?,original,greet,4 -greeting,hey,original,greet,4 -no,that’s not correct,original,cancel,3 -how_busy,how long will the wait be if i go to kerri's,lambada,avail,0 -yes,oh yes,original,book,1 -yes,ya,original,book,1 -goodbye,goodbye!,original,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -how_busy,tell me how busy red robin is at 7 pm,parrot,avail,0 -yes,affirmitive,original,book,1 -yes,that is accurate,original,book,1 -yes,that's correct,original,book,1 -meeting_schedule,do you know if i have a meeting today with travis?,parrot,avail,0 -yes,absolutely,original,book,1 -greeting,how's ife treating you,original,greet,4 -greeting,how's it going?,parrot,greet,4 -goodbye,take it easy!,original,bye,2 -greeting,hola!,original,greet,4 -greeting,"hello, ai",original,greet,4 -calendar_update,check my calendar for march 13th,parrot,resched,5 -yes,yes,original,book,1 -greeting,salutations,parrot,greet,4 -goodbye,good seeing you,original,bye,2 -goodbye,greetings,parrot,bye,2 -yes,affirmative,original,book,1 -goodbye,bye,original,bye,2 -goodbye,later!,original,bye,2 -thank_you,thank you for my time and for trying to help,parrot,bye,2 -yes,definitely,original,book,1 -greeting,just wanted to say hi,original,greet,4 -cancel_reservation,you can cancel my reservation,original,cancel,3 -thank_you,"nice, excellent!",original,bye,2 -yes,so it's checked,parrot,book,1 -goodbye,sayonara ,parrot,bye,2 -goodbye,i'm out,parrot,bye,2 -how_busy,how long will i have to wait to be seated in that restaurant?,parrot,avail,0 -yes,i think it's correct,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -goodbye,later!,original,bye,2 -greeting,tell me how's my life?,parrot,greet,4 -yes,ya,original,book,1 -date,what's the date,original,avail,0 -yes,right,parrot,book,1 -how_busy,tio is busy at 830?,parrot,avail,0 -calendar,tell me where my calendar is for march 28?,parrot,avail,0 -greeting,"hello, friend",original,greet,4 -greeting,bonjour,original,greet,4 -date,how many days is 100 days?,parrot,avail,0 -thank_you,thank you!,original,bye,2 -date,what is the date in 11 days?,lambada,avail,0 -cancel_reservation,scrap that dinner reservation,original,cancel,3 -no,i'm saying no,parrot,cancel,3 -greeting,hi ai,original,greet,4 -goodbye,as regards,parrot,bye,2 -thank_you,"awesome, thanks",original,bye,2 -how_busy,when is chili busy?,parrot,avail,0 -yes,definitely yes,parrot,book,1 -no,that’s not correct,original,cancel,3 -goodbye,glad to talk to you,parrot,bye,2 -no,false for sure,original,cancel,3 -date,what day will it be in two days?,lambada,avail,0 -no,no good,original,cancel,3 -no,negating,parrot,cancel,3 -goodbye,adios ai,original,bye,2 -no,but it's false,parrot,cancel,3 -goodbye,peace out!,original,bye,2 -yes,huh,parrot,book,1 -greeting,hiya!,original,greet,4 -yes,yay,lambada,book,1 -no,not right?,parrot,cancel,3 -greeting,how's it hanging?,parrot,greet,4 -greeting,hi how is everything,original,greet,4 -how_busy,is it always crowded?,parrot,avail,0 -calendar,what's my schedule for october 14?,parrot,avail,0 -thank_you,thanks please,original,bye,2 -greeting,what's up,original,greet,4 -yes,accepted,original,book,1 -how_busy,what's the waiting time at the chippewa center?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -greeting,aho,parrot,greet,4 -thank_you,you helped,parrot,bye,2 -greeting,hey there!,original,greet,4 -thank_you,many thanks,original,bye,2 -meeting_schedule,are there meetings between 1-5?,parrot,avail,0 -no,it's completely false,parrot,cancel,3 -goodbye,"goodbye, ai assistant",original,bye,2 -thank_you,thanks for that answer,original,bye,2 -greeting,heller,original,greet,4 -greeting,why hello?,original,greet,4 -greeting,"hello there, good morning",original,greet,4 -yes,true is my response,original,book,1 -greeting,welcome,parrot,greet,4 -reminder_update,i'd like to get a reminder,parrot,resched,5 -yes,obviously,parrot,book,1 -greeting,how's the ai?,parrot,greet,4 -calendar,check my calendar,parrot,avail,0 -greeting,hiya,original,greet,4 -no,negatory,original,cancel,3 -goodbye,talk to me later,parrot,bye,2 -meeting_schedule,do meetings between 2 and 5?,parrot,avail,0 -cancel_reservation,cancel tonight's dinner reservation,original,cancel,3 -greeting,salutation,parrot,greet,4 -yes,i'm going to tell you tes,parrot,book,1 -no,nope,original,cancel,3 -yes,"correct, it is affirmative",original,book,1 -greeting,yo,original,greet,4 -goodbye,bye,original,bye,2 -goodbye,bye,original,bye,2 -no,that's false,original,cancel,3 -no,no!,original,cancel,3 -greeting,hey yai,lambada,greet,4 -no,so that's no,parrot,cancel,3 -reminder_update,bring me a reminder to take care of the car,parrot,resched,5 -goodbye,it's time for goodbye,parrot,bye,2 -thank_you,it's so much easier with you around,original,bye,2 -schedule_meeting,can i book a meeting room on thursday at 1:00?,lambada,book,1 -how_busy,can you tell me how busy mr joes is at 8 pm?,lambada,avail,0 -no,no!,original,cancel,3 -goodbye,farewell!,original,bye,2 -yes,10-Apr,original,book,1 -thank_you,thank ya!,original,bye,2 -greeting,good evening,original,greet,4 -greeting,hiya!,original,greet,4 -no,that's not factual,parrot,cancel,3 -goodbye,take a break,parrot,bye,2 -reminder_update,make me remember,parrot,resched,5 -yes,yup,original,book,1 -how_busy,what's the wait?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -greeting,wassup,original,greet,4 -goodbye,adios!,original,bye,2 -yes,ya,original,book,1 -no,that's untrue,parrot,cancel,3 -no,it is no,original,cancel,3 -thank_you,thanks please,original,bye,2 -goodbye,chat to me later,parrot,bye,2 -yes,oh-huh,parrot,book,1 -goodbye,later good luck,parrot,bye,2 -yes,confirmed,original,book,1 -greeting,hey fellow,parrot,greet,4 -how_busy,what's the wait for the red lobsters?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -greeting,hola!,original,greet,4 -yes,roger that,original,book,1 -no,nope,original,cancel,3 -thank_you,i am so grateful for that,lambada,bye,2 -thank_you,my thanks,parrot,bye,2 -thank_you,you helped,parrot,bye,2 -goodbye,bye my friend,parrot,bye,2 -thank_you,you did it,parrot,bye,2 -yes,certainly true,parrot,book,1 -greeting,whats up,original,greet,4 -date,what's today,original,avail,0 -yes,my answer is yes,parrot,book,1 -how_busy,how busy will ihop be at 7,lambada,avail,0 -how_busy,how busy is olive garden around dinner time,lambada,avail,0 -goodbye,and i'm glad we spoke,parrot,bye,2 -no,i am going to say no,lambada,cancel,3 -yes,i'm sure that's true,parrot,book,1 -yes,yeap,original,book,1 -greeting,welcome,parrot,greet,4 -yes,i know,parrot,book,1 -no,no!,original,cancel,3 -date,today?,parrot,avail,0 -no,you got that wrong,original,cancel,3 -how_busy,is there a lot of people at chili's around 8:30pm?,lambada,avail,0 -no,no please,parrot,cancel,3 -yes,great,original,book,1 -no,FALSE,original,cancel,3 -goodbye,peace out,original,bye,2 -goodbye,i need to talk to you,parrot,bye,2 -yes,definitely,original,book,1 -yes,certainly true,parrot,book,1 -goodbye,i'm going,parrot,bye,2 -yes,just right,parrot,book,1 -greeting,"hello, how are you",original,greet,4 -yes,confirm,original,book,1 -date,which day is it today,original,avail,0 -no,FALSE,lambada,cancel,3 -no,negating,parrot,cancel,3 -goodbye,ill leave now,parrot,bye,2 -reminder_update,remind me,original,resched,5 -goodbye,farewell!,original,bye,2 -goodbye,greetings,parrot,bye,2 -greeting,what's happening,original,greet,4 -meeting_schedule,when's my meeting with jack?,parrot,avail,0 -yes,certainly true,parrot,book,1 -no,i'd prefer not to answer,parrot,cancel,3 -yes,right,parrot,book,1 -yes,is true,parrot,book,1 -meeting_schedule,meeting today,parrot,avail,0 -yes,10-Apr,original,book,1 -date,what is the date tomorrow?,original,avail,0 -yes,facts,original,book,1 -goodbye,buhbye now,lambada,bye,2 -calendar_update,a date for the week of may 14th is needed,parrot,resched,5 -no,certainly not,original,cancel,3 -meeting_schedule,do i have any meetings scheduled between 3 and 5 pm today?,original,avail,0 -yes,confirm,original,book,1 -no,naw,original,cancel,3 -goodbye,see ya,original,bye,2 -meeting_schedule,what is on my schedule between 10:00 am and 11:00 am?,original,avail,0 -goodbye,farewell!,original,bye,2 -goodbye,buhbye,original,bye,2 -no,i meant no,original,cancel,3 -greeting,salutations!,original,greet,4 -no,"no, that is inaccurate",original,cancel,3 -how_busy,how long does the restaurant wait for me before i go,parrot,avail,0 -goodbye,have to go,parrot,bye,2 -greeting,hola!,original,greet,4 -yes,facts,original,book,1 -no,that's very negative,parrot,cancel,3 -no,naw,parrot,cancel,3 -thank_you,thank you kindly,original,bye,2 -yes,certainly,parrot,book,1 -no,that's not true,original,cancel,3 -date,what's my tomorrow date?,parrot,avail,0 -goodbye,i'm gone,parrot,bye,2 -no,but it's false,parrot,cancel,3 -yes,all right,original,book,1 -calendar,i need to know what is on my calendar for friday the 1st,parrot,avail,0 -no,the answer is certainly no,parrot,cancel,3 -yes,it's positive,parrot,book,1 -no,negative,original,cancel,3 -greeting,show me how you feel about this treatment,parrot,greet,4 -thank_you,i'm glad you did it for me,parrot,bye,2 -goodbye,nice talk,lambada,bye,2 -schedule_meeting,i'm having trouble scheduling the meeting,parrot,book,1 -goodbye,greetings,parrot,bye,2 -greeting,yo,original,greet,4 -yes,confirmed,original,book,1 -greeting,whats up,original,greet,4 -no,the information is not true,parrot,cancel,3 -no,no,lambada,cancel,3 -greeting,hey fellow,parrot,greet,4 -yes,obviously,parrot,book,1 -date,what is my tomorrow's date?,lambada,avail,0 -no,that's negative,parrot,cancel,3 -yes,indeed,parrot,book,1 -greeting,"good morning, ai",original,greet,4 -how_busy,how busy is ihop generally around noon,original,avail,0 -no,is very false,parrot,cancel,3 -date,tell me the date in 5 days?,lambada,avail,0 -how_busy,how long will i have to wait at the ranch?,parrot,avail,0 -how_busy,how busy is tomato at 5pm,lambada,avail,0 -no,it's actually false,parrot,cancel,3 -no,it's very false,parrot,cancel,3 -yes,exactly right,original,book,1 -greeting,hows are ya,original,greet,4 -no,no?,parrot,cancel,3 -cancel_reservation,because of the circumstances i don't need my reservation more,parrot,cancel,3 -greeting,ahoy,lambada,greet,4 -how_busy,at 5 pm is the tomato plant busy?,parrot,avail,0 -how_busy,how long does it take for a pizza in california to be served?,parrot,avail,0 -meeting_schedule,how many meetings i have between noon and 5pm?,parrot,avail,0 -greeting,how are things,original,greet,4 -how_busy,how long will it take to be seated at the mw steak house?,parrot,avail,0 -greeting,how ife treated you?,parrot,greet,4 -yes,certainly,parrot,book,1 -meeting_schedule,meetings today,original,avail,0 -thank_you,you gave it to me,parrot,bye,2 -yes,"yes, please",parrot,book,1 -no,negative,original,cancel,3 -greeting,good evening,original,greet,4 -greeting,whats new,lambada,greet,4 -thank_you,special thanks to you,original,bye,2 -goodbye,it's over,parrot,bye,2 -goodbye,i liked our conversation,parrot,bye,2 -date,which date today?,parrot,avail,0 -how_busy,how long before dinner,parrot,avail,0 -no,negative definitely,parrot,cancel,3 -greeting,why hello?,original,greet,4 -greeting,hey it's up,lambada,greet,4 -no,FALSE,original,cancel,3 -thank_you,thanks for my assistance,parrot,bye,2 -greeting,heyo,original,greet,4 -greeting,what's new,lambada,greet,4 -cancel_reservation,there's no need to confirm my reservation,parrot,cancel,3 -meeting_schedule,what is the meeting schedule?,lambada,avail,0 -thank_you,your response is appreciated,parrot,bye,2 -goodbye,bye,original,bye,2 -yes,confirmed,original,book,1 -yes,oh yes,original,book,1 -greeting,aho,parrot,greet,4 -calendar,read my calendar,parrot,avail,0 -yes,it's true,original,book,1 -no,nay,original,cancel,3 -goodbye,peace,original,bye,2 -goodbye,bye!,original,bye,2 -greeting,wassup,original,greet,4 -goodbye,bye bye,lambada,bye,2 -goodbye,regards,original,bye,2 -yes,it's certainly true,parrot,book,1 -how_busy,how long will i have to wait at olive garden,lambada,avail,0 -goodbye,bye now,original,bye,2 -yes,certainly,parrot,book,1 -reminder_update,need a reminder for signing up for conference,parrot,resched,5 -date,tell me tomorrow's date?,original,avail,0 -goodbye,goodbye now,parrot,bye,2 -no,that's untrue,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -cancel_reservation,i need to cancel my reservation for barclay's,lambada,cancel,3 -yes,that's right,original,book,1 -no,hell nah,original,cancel,3 -goodbye,adios ai,original,bye,2 -yes,TRUE,lambada,book,1 -date,'what's the date today?',parrot,avail,0 -goodbye,sayonara,original,bye,2 -no,that seems wrong,lambada,cancel,3 -yes,and you're right,parrot,book,1 -no,negative,original,cancel,3 -no,please disagree,lambada,cancel,3 -yes,oh-huh,parrot,book,1 -greeting,whats new,lambada,greet,4 -goodbye,buhbye,original,bye,2 -goodbye,later gator!,original,bye,2 -goodbye,nice to see you goodbye,parrot,bye,2 -thank_you,thanks!,original,bye,2 -yes,confirm,original,book,1 -yes,TRUE,original,book,1 -no,certainly false,parrot,cancel,3 -meeting_schedule,have a meeting today?,parrot,avail,0 -yes,is true,parrot,book,1 -yes,huh,parrot,book,1 -greeting,hola!,original,greet,4 -greeting,what's happened to you?,parrot,greet,4 -yes,indeed,original,book,1 -no,naw,parrot,cancel,3 -calendar,do i have my nephews birthday on november 10th?,parrot,avail,0 -how_busy,how busy is enchilada around 7?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -reminder_update,i'd like to remind you to clean the bathroom in the morning,parrot,resched,5 -schedule_meeting,can you set up a meeting for 3:00 on saturday?,lambada,book,1 -greeting,all right now?,parrot,greet,4 -goodbye,bye bye,lambada,bye,2 -no,false sure,parrot,cancel,3 -goodbye,thanks goodbye,parrot,bye,2 -date,please date,parrot,avail,0 -thank_you,gracias,original,bye,2 -yes,i think it's right,parrot,book,1 -how_busy,how long will i have to wait at the red lobster,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -no,nay,original,cancel,3 -yes,TRUE,original,book,1 -how_busy,the wait at outback steakhouse?,parrot,avail,0 -cancel_reservation,i want to cancel my reservation for dinner tomorrow,parrot,cancel,3 -goodbye,my friend,parrot,bye,2 -how_busy,how long will i have to wait for a seat at macys?,parrot,avail,0 -goodbye,good luck,lambada,bye,2 -yes,accept,parrot,book,1 -yes,"yes, that's it",original,book,1 -meeting_schedule,what's my schedule today?,parrot,avail,0 -yes,i want to know the truth,parrot,book,1 -goodbye,great talking with you,parrot,bye,2 -no,no,lambada,cancel,3 -how_busy,for how long will i be seated in red lobster at 6?,parrot,avail,0 -yes,definitely yes,parrot,book,1 -thank_you,appreciate it,original,bye,2 -goodbye,goodbye bye,parrot,bye,2 -greeting,hello ai,parrot,greet,4 -reminder_update,remind me something,parrot,resched,5 -goodbye,"that's all, bye",original,bye,2 -yes,affirmitive,original,book,1 -goodbye,see ya,lambada,bye,2 -yes,uh-huh,original,book,1 -calendar,what is january 1st on my calendar?,parrot,avail,0 -yes,just right,parrot,book,1 -no,negatory,original,cancel,3 -schedule_meeting,can you schedule a meeting with george for four?,parrot,book,1 -no,and i'm sorry,parrot,cancel,3 -no,nada,original,cancel,3 -reminder_update,please do not forget,parrot,resched,5 -date,tell me the date 5 days from now?,original,avail,0 -no,naw,parrot,cancel,3 -reminder_update,please remember to pay my bills,parrot,resched,5 -goodbye,tootles,original,bye,2 -yes,that seems true,original,book,1 -yes,i just said it,parrot,book,1 -goodbye,thank you for the great conversation,parrot,bye,2 -yes,yeah,original,book,1 -greeting,whats up,original,greet,4 -greeting,ai how you're doing,lambada,greet,4 -no,nada,original,cancel,3 -calendar_update,delete the appointment i scheduled,parrot,resched,5 -yes,facts,original,book,1 -how_busy,waiting at cheeseburgers?,parrot,avail,0 -meeting_schedule,does today's schedule include meetings or not?,parrot,avail,0 -greeting,good morning,parrot,greet,4 -thank_you,appreciated,original,bye,2 -thank_you,so glad you did it,parrot,bye,2 -yes,that is not false,original,book,1 -greeting,good evening,original,greet,4 -thank_you,thank you please,parrot,bye,2 -yes,not false,parrot,book,1 -no,please disagree,lambada,cancel,3 -goodbye,nice talk,lambada,bye,2 -yes,it's logical,parrot,book,1 -yes,positive,parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -yes,just right,parrot,book,1 -yes,okay,original,book,1 -yes,it is a yes from me,parrot,book,1 -yes,"yup, that's true",original,book,1 -how_busy,four how much business does georgio have,parrot,avail,0 -yes,the truth is true,lambada,book,1 -greeting,salutations,parrot,greet,4 -meeting_schedule,are there any meetings with kim today?,parrot,avail,0 -calendar_update,please remove this anniversary from my calendars,parrot,resched,5 -greeting,hiya,original,greet,4 -schedule_meeting,i want to know how do i schedule a meeting,original,book,1 -goodbye,good conversation,parrot,bye,2 -greeting,hello good morning,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -how_busy,how busy is red lobster at 5 pm,lambada,avail,0 -how_busy,how long will it take before we are seated in the restaurant?,parrot,avail,0 -thank_you,okay thanks,original,bye,2 -goodbye,see ya!,original,bye,2 -how_busy,is iman busy around 5?,parrot,avail,0 -calendar,display my calendar,lambada,avail,0 -thank_you,thanks for the response,lambada,bye,2 -goodbye,adios,original,bye,2 -how_busy,is the restaurant always crowded?,parrot,avail,0 -calendar,list some of the events on my calendar for april 1st?,parrot,avail,0 -reminder_update,remind me to do my chores,lambada,resched,5 -yes,okay,original,book,1 -goodbye,have a nice day?,lambada,bye,2 -date,what's today,original,avail,0 -goodbye,peace out!,original,bye,2 -yes,positive,parrot,book,1 -greeting,"hi, how's it going",lambada,greet,4 -date,what today?,parrot,avail,0 -no,it's false,parrot,cancel,3 -date,describe the day?,parrot,avail,0 -yes,i'm going to tell you tes,parrot,book,1 -yes,can we please?,original,book,1 -goodbye,on the highway,parrot,bye,2 -thank_you,thanks for my help,original,bye,2 -greeting,hey bs,lambada,greet,4 -how_busy,how busy is kaya at 5:30,lambada,avail,0 -date,give me the date for tomorrow please?,parrot,avail,0 -yes,yes,original,book,1 -goodbye,and i have to say goodbye,parrot,bye,2 -greeting,aloha,original,greet,4 -thank_you,you're the best!,original,bye,2 -greeting,hola,original,greet,4 -no,nay,original,cancel,3 -no,yes that's false,lambada,cancel,3 -schedule_meeting,how many people can go to meetings?,parrot,book,1 -reminder_update,"new reminder, please",original,resched,5 -yes,yep,original,book,1 -thank_you,thank you,original,bye,2 -yes,correct,original,book,1 -yes,and you're right,parrot,book,1 -greeting,well hello,original,greet,4 -thank_you,so i appreciate it,parrot,bye,2 -yes,positive,original,book,1 -reminder_update,remind me to get my vaccines,parrot,resched,5 -no,negation,parrot,cancel,3 -reminder_update,maybe a reminder?,parrot,resched,5 -thank_you,your assistance is appreciated,parrot,bye,2 -thank_you,you've been great,parrot,bye,2 -thank_you,your answer pleased me,original,bye,2 -date,where is tomorrow's date?,parrot,avail,0 -yes,say positive,parrot,book,1 -yes,TRUE,original,book,1 -yes,i'll say yes,parrot,book,1 -yes,yeap,original,book,1 -greeting,whats up?,parrot,greet,4 -greeting,aloha,original,greet,4 -date,what will the day be like?,parrot,avail,0 -calendar_update,please add my calendar for the meeting of the staff scheduled for march 1 2019 at 10 am,parrot,resched,5 -no,that is no,lambada,cancel,3 -goodbye,wonderful conversation,lambada,bye,2 -yes,yeah,original,book,1 -no,no that's not it?,parrot,cancel,3 -no,nothing good,parrot,cancel,3 -goodbye,adios,original,bye,2 -no,is my false assertion?,parrot,cancel,3 -yes,agreed,original,book,1 -no,false for sure,original,cancel,3 -goodbye,regards,original,bye,2 -greeting,wassup,original,greet,4 -goodbye,bye bye,lambada,bye,2 -goodbye,adios!,original,bye,2 -calendar,is there an event titled anniversary dinner on the calendar?,parrot,avail,0 -no,not really,original,cancel,3 -yes,indeed,original,book,1 -goodbye,goodnight,original,bye,2 -how_busy,what's the wait?,parrot,avail,0 -meeting_schedule,how many meetings will i have between noon and one,lambada,avail,0 -goodbye,good-bye,parrot,bye,2 -no,no!,original,cancel,3 -goodbye,glad we got to talk,original,bye,2 -goodbye,adios,original,bye,2 -goodbye,farewell to you,lambada,bye,2 -no,FALSE,original,cancel,3 -how_busy,how long will the wait be at pizza restaurant,lambada,avail,0 -schedule_meeting,do you need a meeting room for friday at 3 o'clock?,parrot,book,1 -yes,facts,original,book,1 -how_busy,how busy will the cheesecake factory be at noon?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -yes,i'll check it out -,parrot,book,1 -cancel_reservation,get rid of my dinner reservation,original,cancel,3 -yes,absolutely!,original,book,1 -greeting,wassup,original,greet,4 -greeting,welcome,parrot,greet,4 -date,what's tomorrow's date,original,avail,0 -no,nope,original,cancel,3 -thank_you,i thank you,original,bye,2 -calendar,let me know what's scheduled for my calendar for thursday?,parrot,avail,0 -thank_you,i am grateful,lambada,bye,2 -no,that's negative,parrot,cancel,3 -schedule_meeting,i need to schedule a meeting with liza,lambada,book,1 -yes,perfect,parrot,book,1 -meeting_schedule,tell me what meetings i booked for today?,parrot,avail,0 -reminder_update,let me know,parrot,resched,5 -yes,oh yes,original,book,1 -schedule_meeting,to meet with tom at 12pm,parrot,book,1 -no,nada,original,cancel,3 -thank_you,good job,lambada,bye,2 -thank_you,you've been great,parrot,bye,2 -no,no,lambada,cancel,3 -yes,yeah,original,book,1 -calendar,how are we doing on friday,lambada,avail,0 -yes,perfect,parrot,book,1 -yes,yup,original,book,1 -greeting,bonjour,original,greet,4 -greeting,wassup,original,greet,4 -meeting_schedule,when's my meeting?,parrot,avail,0 -greeting,what's happening,original,greet,4 -calendar_update,what is the best way to remove this appointment?,original,resched,5 -greeting,tell me what you feel,parrot,greet,4 -calendar,the 21st what's on my calendar,parrot,avail,0 -greeting,how's my family going?,parrot,greet,4 -how_busy,what is the wait time for a table at chili's?,lambada,avail,0 -reminder_update,please remember something,parrot,resched,5 -no,so that's no,parrot,cancel,3 -how_busy,how busy will it be at 6 pm?,parrot,avail,0 -no,that would be false,original,cancel,3 -goodbye,nice talk,lambada,bye,2 -thank_you,thankyou,parrot,bye,2 -thank_you,many thanks,original,bye,2 -no,nada,original,cancel,3 -greeting,ahoy hoy,original,greet,4 -thank_you,a million thanks,parrot,bye,2 -yes,definitely,original,book,1 -no,i meant no,original,cancel,3 -no,that’s incorrect,original,cancel,3 -thank_you,"oh, thanks",original,bye,2 -goodbye,sayonara,original,bye,2 -greeting,what's my feeling?,parrot,greet,4 -how_busy,how long will i have to wait at the cheesecake factory? '',parrot,avail,0 -date,what's the date tomorrow,original,avail,0 -no,negative,original,cancel,3 -yes,indeed,parrot,book,1 -greeting,hi there,original,greet,4 -greeting,hola,original,greet,4 -greeting,welcome,parrot,greet,4 -calendar,please tell me what's on my calendar for march 15th?,parrot,avail,0 -greeting,hi,original,greet,4 -no,naw,original,cancel,3 -yes,confirm,original,book,1 -yes,yes please,original,book,1 -yes,that is true,lambada,book,1 -greeting,ahoy hoy,original,greet,4 -greeting,welcome,parrot,greet,4 -reminder_update,please set a reminder?,parrot,resched,5 -thank_you,thanks very much,parrot,bye,2 -thank_you,thank ya!,original,bye,2 -date,tomorrow is the date,parrot,avail,0 -greeting,salutation,parrot,greet,4 -greeting,greetings to you,original,greet,4 -yes,approved,original,book,1 -thank_you,i'm happy with my response,parrot,bye,2 -yes,yep,original,book,1 -meeting_schedule,do i have meetings today?,parrot,avail,0 -goodbye,adios,original,bye,2 -calendar,show me what's on my calendar for friday the 1st?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -yes,i agree,original,book,1 -reminder_update,keep setting reminders for storing the money,lambada,resched,5 -how_busy,how long would it take to wait in the restaurant,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -yes,good,parrot,book,1 -goodbye,sayonara,original,bye,2 -no,i believe that to be false,original,cancel,3 -goodbye,i'll leave,parrot,bye,2 -yes,it's certainly positive,parrot,book,1 -date,what the day is?,parrot,avail,0 -thank_you,i am grateful,lambada,bye,2 -meeting_schedule,are there meetings with john?,parrot,avail,0 -thank_you,thanks a million,original,bye,2 -how_busy,how long will i have to wait at the cheese cake factory? '',parrot,avail,0 -yes,i'll check it out,parrot,book,1 -how_busy,how long is the wait at olive garden around 8 pm,lambada,avail,0 -yes,i agree,original,book,1 -reminder_update,please make a reminder,original,resched,5 -greeting,welcome,parrot,greet,4 -yes,thats right,original,book,1 -date,what day is that?,parrot,avail,0 -yes,im sure you're right,parrot,book,1 -yes,good,parrot,book,1 -no,erroneous,parrot,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -yes,obviously,parrot,book,1 -greeting,what's my feeling?,parrot,greet,4 -no,no?,parrot,cancel,3 -thank_you,and i'm grateful,parrot,bye,2 -meeting_schedule,when's my meeting with daddy scheduled,lambada,avail,0 -no,nope,original,cancel,3 -yes,confirm,original,book,1 -no,it's so negative,parrot,cancel,3 -goodbye,sayonara ,parrot,bye,2 -no,say negative,parrot,cancel,3 -yes,agreed,original,book,1 -greeting,wassup,original,greet,4 -greeting,good day,original,greet,4 -yes,ok,original,book,1 -goodbye,just relax,parrot,bye,2 -yes,yep,original,book,1 -thank_you,okay thanks,original,bye,2 -how_busy,is ihop busy?,parrot,avail,0 -yes,accepted,original,book,1 -no,nope,original,cancel,3 -goodbye,good night,original,bye,2 -date,date tomorrow,parrot,avail,0 -no,FALSE,original,cancel,3 -yes,accept,parrot,book,1 -greeting,hi ai,original,greet,4 -yes,say positive,parrot,book,1 -no,is not true?,parrot,cancel,3 -goodbye,cya later,original,bye,2 -yes,exactly right,original,book,1 -goodbye,i must say goodbye,original,bye,2 -calendar,tell me what's on my calendar for march 15th?,parrot,avail,0 -meeting_schedule,do you have any meetings with michael today?,parrot,avail,0 -goodbye,signing off,original,bye,2 -date,what month today?,parrot,avail,0 -goodbye,say goodbye for now,parrot,bye,2 -goodbye,regards,original,bye,2 -goodbye,farewell,original,bye,2 -yes,it's true,original,book,1 -yes,TRUE,lambada,book,1 -greeting,heyo,original,greet,4 -goodbye,later gater,original,bye,2 -goodbye,have to go,parrot,bye,2 -no,that's totally wrong,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,hi,original,greet,4 -yes,you got it,parrot,book,1 -calendar,when am i next having a meeting in december?,original,avail,0 -yes,confirmed,original,book,1 -greeting,heyo,original,greet,4 -no,no?,parrot,cancel,3 -cancel_reservation,delete my dinner reservation,parrot,cancel,3 -greeting,bonjour,original,greet,4 -date,tell me the details of my date?,lambada,avail,0 -how_busy,how long is the wait at olive garden,lambada,avail,0 -no,it's negative,parrot,cancel,3 -yes,positive,parrot,book,1 -yes,agreed,original,book,1 -goodbye,great conversation,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -goodbye,farewell!,original,bye,2 -yes,absolutely,original,book,1 -goodbye,adios ai,original,bye,2 -goodbye,see ya,lambada,bye,2 -goodbye,take a rest,parrot,bye,2 -no,please no,parrot,cancel,3 -goodbye,"thanks for chatting, later",original,bye,2 -calendar_update,can i make an appointment for my anniversary in may?,parrot,resched,5 -thank_you,okay thank you,parrot,bye,2 -goodbye,farewell!,original,bye,2 -yes,it seems true,parrot,book,1 -date,in 14 days?,parrot,avail,0 -goodbye,farewell,original,bye,2 -goodbye,bye!,original,bye,2 -goodbye,see ya,lambada,bye,2 -calendar_update,erase all my things from my calendar,lambada,resched,5 -thank_you,you've helped,parrot,bye,2 -calendar,is anything happening on march 4 2019?,parrot,avail,0 -yes,yup,original,book,1 -how_busy,how long will i have to wait to be in this restaurant?,parrot,avail,0 -yes,affirmative,original,book,1 -cancel_reservation,can you cancel my reservation at bob's burgers?,parrot,cancel,3 -yes,certainly,parrot,book,1 -reminder_update,please remember something,parrot,resched,5 -how_busy,what is the daily wait time for a table at pizza fountain?,lambada,avail,0 -yes,positive,parrot,book,1 -date,please give me the date tomorrow,parrot,avail,0 -calendar,list the dates of my next scheduled dental visit?,parrot,avail,0 -reminder_update,remind me,original,resched,5 -cancel_reservation,you can cancel my reservation for 5 at the loft please,parrot,cancel,3 -greeting,how are things?,parrot,greet,4 -yes,i can tell you,parrot,book,1 -cancel_reservation,please cancel my reservation at red lobster for six,parrot,cancel,3 -date,where's the date tomorrow?,parrot,avail,0 -calendar_update,can you remove dinner with jim from my calendar? '',parrot,resched,5 -goodbye,i'll go,parrot,bye,2 -no,negating,parrot,cancel,3 -goodbye,thanks for the chat,parrot,bye,2 -yes,uh-huh,original,book,1 -no,that's negative,parrot,cancel,3 -no,i think not,original,cancel,3 -no,the statement is false,original,cancel,3 -schedule_meeting,are there meeting rooms available between 10 and 11?,lambada,book,1 -how_busy,can you tell me how busy michel is at 5pm?,parrot,avail,0 -thank_you,my thanks,parrot,bye,2 -greeting,hello,original,greet,4 -greeting,how're you?,parrot,greet,4 -no,naw,original,cancel,3 -date,a year?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -greeting,wassup,original,greet,4 -thank_you,appreciated,original,bye,2 -meeting_schedule,what meetings do i have today between 1pm and 3pm?,parrot,avail,0 -yes,ya,original,book,1 -goodbye,peace out!,original,bye,2 -no,that's no,parrot,cancel,3 -yes,not a falsehood,parrot,book,1 -greeting,how's my current situation?,parrot,greet,4 -calendar_update,delete the hair appointment i had scheduled on may 1st pleae,original,resched,5 -greeting,how does ai feel?,parrot,greet,4 -goodbye,fairwell,original,bye,2 -yes,a fact,parrot,book,1 -no,ill pass,original,cancel,3 -goodbye,cya later,original,bye,2 -no,this is false,parrot,cancel,3 -goodbye,nice talk,lambada,bye,2 -greeting,hiya!,original,greet,4 -calendar,what's on my calendar for april 15?,parrot,avail,0 -no,so it's not possible,parrot,cancel,3 -goodbye,fairwell,original,bye,2 -no,no?,parrot,cancel,3 -yes,agreed,original,book,1 -yes,uh-huh,original,book,1 -date,tell me tomorrow's date?,original,avail,0 -greeting,how were you?,parrot,greet,4 -greeting,ahoy hoy,original,greet,4 -goodbye,see ya,lambada,bye,2 -date,what's the date in 100 days,lambada,avail,0 -calendar_update,delete all calendar entries on april 13th,lambada,resched,5 -how_busy,how busy is imanas?,parrot,avail,0 -calendar,do i have plans for 12032019?,parrot,avail,0 -calendar_update,add an appointment with a doctor on friday,parrot,resched,5 -thank_you,i'm glad you responded,parrot,bye,2 -yes,affirmative,original,book,1 -date,what year?,parrot,avail,0 -greeting,how's it going for you?,parrot,greet,4 -yes,agreed,original,book,1 -yes,uh-huh,original,book,1 -greeting,hey fellow,parrot,greet,4 -greeting,how is everything going,original,greet,4 -greeting,whats up?,parrot,greet,4 -yes,indeed,original,book,1 -yes,accepted,original,book,1 -yes,very true,original,book,1 -greeting,hola,original,greet,4 -thank_you,thanks,original,bye,2 -calendar,what do i have on my calendar for march 14?,parrot,avail,0 -goodbye,good luck,lambada,bye,2 -no,and it's very false,parrot,cancel,3 -schedule_meeting,can i meet with steve?,parrot,book,1 -greeting,hola,original,greet,4 -thank_you,i appeciate it,parrot,bye,2 -calendar,when do i have a meeting next month?,parrot,avail,0 -calendar_update,erase any event on my calendar that's set for wednesday next week,parrot,resched,5 -yes,correct,original,book,1 -no,most definitely false,parrot,cancel,3 -yes,yes you are correct,original,book,1 -calendar_update,remove april 16th's birthday party from my schedule,parrot,resched,5 -yes,do that?,original,book,1 -no,it's a mistake,parrot,cancel,3 -yes,all right,original,book,1 -no,FALSE,lambada,cancel,3 -no,not happening,original,cancel,3 -no,erroneous,parrot,cancel,3 -yes,good,parrot,book,1 -yes,sure thing,original,book,1 -yes,definitely,original,book,1 -yes,sure,original,book,1 -thank_you,thanks!,original,bye,2 -no,nothing good,parrot,cancel,3 -goodbye,goodbye then,parrot,bye,2 -yes,roger that,original,book,1 -greeting,are you okay??,parrot,greet,4 -yes,please let's do this,parrot,book,1 -reminder_update,come on please,parrot,resched,5 -thank_you,you've given me that,parrot,bye,2 -no,it's not true,parrot,cancel,3 -goodbye,peace out!,original,bye,2 -calendar,what's the date in my calendar for my birthday?,parrot,avail,0 -how_busy,how long will i wait at the outback steak house?,parrot,avail,0 -thank_you,awesome thanks,parrot,bye,2 -yes,that's true,original,book,1 -greeting,ahoy,lambada,greet,4 -cancel_reservation,something's come up so i need to cancel my reservation so now,original,cancel,3 -goodbye,have fun?,lambada,bye,2 -goodbye,bye,original,bye,2 -greeting,hi,original,greet,4 -date,what date?,parrot,avail,0 -goodbye,later goodbye,parrot,bye,2 -yes,indeed,parrot,book,1 -yes,"yup, that's true",original,book,1 -no,negatory,original,cancel,3 -thank_you,thankyou,parrot,bye,2 -yes,that'd be great,parrot,book,1 -yes,approved,original,book,1 -reminder_update,i'd like a reminder,parrot,resched,5 -thank_you,i am glad that you did that,original,bye,2 -goodbye,bye-bye,original,bye,2 -greeting,"hey, ai",original,greet,4 -no,it's a lie,parrot,cancel,3 -yes,so it works,parrot,book,1 -yes,this is true,lambada,book,1 -no,no please,parrot,cancel,3 -goodbye,my way,parrot,bye,2 -goodbye,adios,original,bye,2 -yes,im sure you're true,parrot,book,1 -greeting,yo,original,greet,4 -reminder_update,make a reminder to take the dog to the vet,parrot,resched,5 -greeting,aho,parrot,greet,4 -greeting,greetings to you,original,greet,4 -how_busy,how long is the wait at red robin,lambada,avail,0 -how_busy,how busy will the olive garden be at 5 pm,parrot,avail,0 -goodbye,"thanks for chatting, later",original,bye,2 -greeting,what is new?,parrot,greet,4 -no,negating,parrot,cancel,3 -greeting,"hello, good day",lambada,greet,4 -yes,approved,original,book,1 -reminder_update,"new reminder, please",original,resched,5 -goodbye,buhbye,original,bye,2 -greeting,hello bs,parrot,greet,4 -calendar,do you have anything scheduled for tuesday?,parrot,avail,0 -calendar,did i set an appointment on my calendar to see my doctor?,parrot,avail,0 -greeting,hey hey!,original,greet,4 -greeting,hey fellows,parrot,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -greeting,hiya!,original,greet,4 -reminder_update,remind me to write the dinner,parrot,resched,5 -meeting_schedule,is there any meetings between 2 and 3 pm?,lambada,avail,0 -thank_you,nice,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -yes,10-Apr,original,book,1 -no,nope,original,cancel,3 -no,i'll pass,original,cancel,3 -greeting,what's new,lambada,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -greeting,good evening,original,greet,4 -date,what is tomorrow's date?,original,avail,0 -yes,confirm,original,book,1 -yes,yeah,original,book,1 -how_busy,check out how busy the cheesecake factory is,parrot,avail,0 -no,the negator,parrot,cancel,3 -no,no way!,original,cancel,3 -how_busy,how busy is the olive garden at dinner?,parrot,avail,0 -no,nada,original,cancel,3 -greeting,what's happened?,parrot,greet,4 -yes,accept,parrot,book,1 -meeting_schedule,what's on my schedule?,parrot,avail,0 -goodbye,i'm out,parrot,bye,2 -yes,that's a definite yes,original,book,1 -no,negatory,original,cancel,3 -yes,huh huh,parrot,book,1 -calendar,show me what my calendar looks like for march 2?,parrot,avail,0 -greeting,hey yai,lambada,greet,4 -meeting_schedule,go over my meeting schedule with me please,original,avail,0 -meeting_schedule,when's the meeting with kara?,parrot,avail,0 -yes,all right,parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,nice talk,lambada,bye,2 -thank_you,i'm glad you answered,parrot,bye,2 -greeting,how's my day?,parrot,greet,4 -meeting_schedule,what's the meeting i'm planning today?,parrot,avail,0 -schedule_meeting,are there any rooms available between 5 and 10 o'clock?,parrot,book,1 -yes,yes sir,original,book,1 -yes,this is true,lambada,book,1 -goodbye,this conversation was wonderful,parrot,bye,2 -thank_you,nice,parrot,bye,2 -greeting,what's my feeling?,parrot,greet,4 -greeting,good evening,original,greet,4 -date,today?,parrot,avail,0 -no,"no, that is not right",original,cancel,3 -cancel_reservation,abrogate the dinner reservation,parrot,cancel,3 -yes,good yes,lambada,book,1 -goodbye,thanks for chatting,lambada,bye,2 -greeting,hi,original,greet,4 -date,describe the day?,parrot,avail,0 -yes,affirmative,original,book,1 -goodbye,i’m leaving-goodbye!,original,bye,2 -reminder_update,a new reminder,parrot,resched,5 -greeting,"hey, how's it going",original,greet,4 -no,negation,parrot,cancel,3 -goodbye,im leaving goodbye,parrot,bye,2 -greeting,how's life going?,parrot,greet,4 -goodbye,the talk was nice,lambada,bye,2 -goodbye,i'm gone,parrot,bye,2 -no,it's not true,parrot,cancel,3 -goodbye,"talk to you soon, bye!",original,bye,2 -greeting,whats up?,parrot,greet,4 -greeting,salutations!,original,greet,4 -yes,approved,original,book,1 -no,that's not right it's false,original,cancel,3 -goodbye,bye for now,original,bye,2 -greeting,yo,original,greet,4 -no,that's no way,parrot,cancel,3 -greeting,heller,original,greet,4 -yes,of course,original,book,1 -no,"no, definitely not",original,cancel,3 -greeting,how is it going my friend?,parrot,greet,4 -yes,roger that,original,book,1 -yes,confirmed,original,book,1 -no,that isn't true,lambada,cancel,3 -calendar_update,please remember to register for the race on my calendar for the 15th of march?,parrot,resched,5 -schedule_meeting,i need to know how to find a meeting,parrot,book,1 -greeting,get up ai,parrot,greet,4 -goodbye,adios!,original,bye,2 -date,today?,parrot,avail,0 -no,that's incorrect!,original,cancel,3 -goodbye,farewell!,original,bye,2 -yes,confirm,original,book,1 -goodbye,bye bye,lambada,bye,2 -no,negation,parrot,cancel,3 -yes,positive,original,book,1 -greeting,how you're treated,parrot,greet,4 -thank_you,nice,parrot,bye,2 -goodbye,farewell!,original,bye,2 -date,list the date for tomorrow?,parrot,avail,0 -yes,positive,parrot,book,1 -yes,accept,parrot,book,1 -reminder_update,remind yourself to take care of yourself,parrot,resched,5 -no,FALSE,original,cancel,3 -greeting,so how's everything going?,parrot,greet,4 -calendar,what's on my calendar for october 14th?,parrot,avail,0 -yes,accept,parrot,book,1 -no,not good,parrot,cancel,3 -thank_you,your answer was enjoyable,original,bye,2 -goodbye,goodbye to you,original,bye,2 -goodbye,good conversation,parrot,bye,2 -no,invalid,original,cancel,3 -greeting,how's ai doing?,parrot,greet,4 -thank_you,thanks,original,bye,2 -meeting_schedule,is my meeting scheduled?,parrot,avail,0 -yes,definitely,original,book,1 -greeting,bonjour,original,greet,4 -yes,affirmitive,original,book,1 -thank_you,thanks!,original,bye,2 -thank_you,i appeciate it,parrot,bye,2 -calendar,read me my schedule for april 30,lambada,avail,0 -greeting,salutation,parrot,greet,4 -cancel_reservation,my reservation for dinner tonight is cancelled,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -greeting,aloha,original,greet,4 -thank_you,really great!,original,bye,2 -greeting,salutation,parrot,greet,4 -goodbye,ai goodbye,original,bye,2 -greeting,what's happening?,parrot,greet,4 -greeting,how is my current situation,lambada,greet,4 -yes,ok,original,book,1 -goodbye,good bye,original,bye,2 -thank_you,appreciated,original,bye,2 -how_busy,canadian grill at 6pm?,parrot,avail,0 -goodbye,bye,original,bye,2 -how_busy,how busy is restaurant gondola at 4:30 pm,lambada,avail,0 -greeting,salutation,parrot,greet,4 -greeting,how've you been?,parrot,greet,4 -yes,"yes, that is right",original,book,1 -how_busy,how many people are on the server right now at michelin steakhouse?,parrot,avail,0 -thank_you,gracias,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -goodbye,i'm gone,parrot,bye,2 -no,that is actually false,original,cancel,3 -how_busy,how long is the restaurant line before dinner,lambada,avail,0 -greeting,heller,original,greet,4 -goodbye,i'm leaving now,lambada,bye,2 -no,no way,original,cancel,3 -no,it's completely false,parrot,cancel,3 -greeting,how's the world?,parrot,greet,4 -goodbye,goodbye to your,lambada,bye,2 -thank_you,well done,parrot,bye,2 -calendar,do you have anything scheduled for thursday?,parrot,avail,0 -goodbye,later!,original,bye,2 -no,nothing,parrot,cancel,3 -date,what will be in three days?,parrot,avail,0 -thank_you,thanks for the information you provided,lambada,bye,2 -greeting,well hi there,original,greet,4 -cancel_reservation,please cancel my reservation,original,cancel,3 -thank_you,thanks,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -calendar,show me what's on my calendar for april 17th?,parrot,avail,0 -meeting_schedule,do i have to have any meetings with david?,lambada,avail,0 -yes,all right,original,book,1 -yes,10-Apr,original,book,1 -greeting,aho,parrot,greet,4 -yes,right,parrot,book,1 -no,please disagree,lambada,cancel,3 -goodbye,later!,original,bye,2 -goodbye,great conversation,parrot,bye,2 -yes,approved,original,book,1 -goodbye,tootles,original,bye,2 -goodbye,goodbyes soon,parrot,bye,2 -no,invalid,original,cancel,3 -no,that's certainly false,parrot,cancel,3 -goodbye,i'm gone,parrot,bye,2 -goodbye,adios!,original,bye,2 -greeting,hey it's up,lambada,greet,4 -no,it's not right,parrot,cancel,3 -yes,i agree,original,book,1 -yes,positive,parrot,book,1 -goodbye,fairwell,original,bye,2 -goodbye,see ya,lambada,bye,2 -how_busy,what's the crowd at the red lobster?,parrot,avail,0 -no,it's so negative,parrot,cancel,3 -yes,sure,original,book,1 -how_busy,sage is busy at noon?,parrot,avail,0 -no,that seems wrong,lambada,cancel,3 -greeting,hey,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -how_busy,is the canadian restaurant usually busy at 5 pm?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -greeting,how's idy?,parrot,greet,4 -goodbye,goodbye!,original,bye,2 -no,nada,original,cancel,3 -cancel_reservation,how can i cancel a reservation at red robin hotel?,parrot,cancel,3 -greeting,aloha,original,greet,4 -goodbye,later,original,bye,2 -reminder_update,remember to prepare for my meeting at 5pm,parrot,resched,5 -no,it's negative,parrot,cancel,3 -goodbye,tootles,original,bye,2 -goodbye,later goodbye,parrot,bye,2 -yes,positive,parrot,book,1 -goodbye,the talk was nice,lambada,bye,2 -meeting_schedule,are there meetings scheduled for today?,original,avail,0 -greeting,have to know how it goes,parrot,greet,4 -no,FALSE,original,cancel,3 -yes,correct,original,book,1 -thank_you,thank you again,parrot,bye,2 -no,the wrong answer,parrot,cancel,3 -how_busy,is this restaurant crowded?,parrot,avail,0 -no,is my falsehood?,parrot,cancel,3 -greeting,hi there,original,greet,4 -no,that's very false,parrot,cancel,3 -schedule_meeting,are there meeting rooms available between 7 and 9?,parrot,book,1 -greeting,hello there,original,greet,4 -thank_you,and you're doing well,parrot,bye,2 -meeting_schedule,time of meeting?,parrot,avail,0 -goodbye,great talk,lambada,bye,2 -how_busy,how long will it take me to sit in the octopus?,parrot,avail,0 -goodbye,come on soon,parrot,bye,2 -date,what's my date?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -greeting,hey fellows,parrot,greet,4 -goodbye,i'm gone,parrot,bye,2 -yes,it's a fact,parrot,book,1 -how_busy,is the restaurant packed between dinner and breakfast?,parrot,avail,0 -yes,accepted,original,book,1 -thank_you,gracias,original,bye,2 -goodbye,peace out!,original,bye,2 -thank_you,my gratitude,parrot,bye,2 -no,don't agree,parrot,cancel,3 -no,it's not right,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -yes,certainly,parrot,book,1 -reminder_update,create a reminder,original,resched,5 -no,invalid,original,cancel,3 -no,negative definitely,parrot,cancel,3 -goodbye,later!,original,bye,2 -no,so that's no,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -thank_you,"you have been a big help, thank you so much",original,bye,2 -calendar,i gotta know what is currently on my calendar for friday the 1st,original,avail,0 -yes,yup,original,book,1 -thank_you,you've given me it,parrot,bye,2 -date,what date will it be two days from now on?,parrot,avail,0 -schedule_meeting,show me how i can schedule a meeting?,parrot,book,1 -yes,obviously,parrot,book,1 -yes,yay,lambada,book,1 -yes,TRUE,lambada,book,1 -yes,accepted,original,book,1 -goodbye,thanks goodbye,parrot,bye,2 -no,say negative,parrot,cancel,3 -how_busy,is there a lot of people at chili's around 6pm?,lambada,avail,0 -greeting,how are you treated?,parrot,greet,4 -no,not really,original,cancel,3 -calendar_update,clear my calendar for november 11th,original,resched,5 -yes,ya,original,book,1 -schedule_meeting,tell me if there's a meeting room available at 11 am?,parrot,book,1 -greeting,how's life,original,greet,4 -goodbye,later gator!,original,bye,2 -thank_you,you did it,parrot,bye,2 -greeting,"hey, ai",original,greet,4 -goodbye,goodbye ai,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -yes,absolutely!,original,book,1 -greeting,whats new,lambada,greet,4 -greeting,how is idy?,parrot,greet,4 -yes,i'm going to tell you tes,parrot,book,1 -calendar,please read my calendar,parrot,avail,0 -goodbye,peace out!,original,bye,2 -greeting,what's new,lambada,greet,4 -cancel_reservation,cancell the table i reserved in the restaurant,parrot,cancel,3 -how_busy,how long do you expect to wait for a table in the olive garden,parrot,avail,0 -no,it's the wrong answer,parrot,cancel,3 -goodbye,goodbye then,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -thank_you,i'm grateful,original,bye,2 -goodbye,for now,parrot,bye,2 -calendar,is my day open for march 4th 2019?,original,avail,0 -goodbye,buhbye now,lambada,bye,2 -calendar_update,clear my calendar for september 6th,original,resched,5 -no,no,lambada,cancel,3 -goodbye,fairwell?,parrot,bye,2 -date,in 7 days?,parrot,avail,0 -greeting,how's everything,original,greet,4 -thank_you,i'm really grateful,parrot,bye,2 -greeting,salutations!,original,greet,4 -calendar,21st what's on my calendar,parrot,avail,0 -greeting,hi there how are you doing?,parrot,greet,4 -date,can you remember the date?,parrot,avail,0 -yes,do that?,original,book,1 -no,not really,original,cancel,3 -how_busy,does the restaurant have business around noon?,parrot,avail,0 -yes,definitely,original,book,1 -date,please tell me the date for today?,parrot,avail,0 -how_busy,is ihop busy around 6pm?,lambada,avail,0 -goodbye,bye now,original,bye,2 -greeting,hola,original,greet,4 -yes,that's true,original,book,1 -yes,yay,lambada,book,1 -no,that's no way,parrot,cancel,3 -thank_you,and i'm grateful,parrot,bye,2 -greeting,whats new?,parrot,greet,4 -meeting_schedule,when's the meeting today?,parrot,avail,0 -how_busy,can i expect to wait a long time at chili's at 5pm?,lambada,avail,0 -yes,indeed,original,book,1 -how_busy,how long will i have to wait if i want to go to the red lobster,parrot,avail,0 -greeting,hi how's everything?,parrot,greet,4 -thank_you,you gave me that,parrot,bye,2 -yes,say yes,lambada,book,1 -no,that's a huge mistake,parrot,cancel,3 -yes,yup,original,book,1 -no,the negator,parrot,cancel,3 -how_busy,how long will i have to wait to be seated in this restaurant?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -no,i meant no,original,cancel,3 -greeting,salutations,parrot,greet,4 -thank_you,thanks,original,bye,2 -no,invalid,original,cancel,3 -how_busy,is there a long wait for pizza in the restaurant?,parrot,avail,0 -yes,i want you to know that that is correct,lambada,book,1 -thank_you,thank you ai,parrot,bye,2 -yes,agreed,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -meeting_schedule,when do i meet roger?,parrot,avail,0 -thank_you,i owe you,parrot,bye,2 -date,what's the next month?,parrot,avail,0 -yes,positive,original,book,1 -thank_you,your response is appreciated,parrot,bye,2 -how_busy,wait for a cheese cake in a restaurant?,parrot,avail,0 -yes,definitely,original,book,1 -goodbye,goodbye then,parrot,bye,2 -date,in five days?,parrot,avail,0 -yes,ok,original,book,1 -calendar_update,i have to make an appointment for tomorrow for 10am,parrot,resched,5 -goodbye,i'm very happy to be able to talk with you,parrot,bye,2 -no,naw,original,cancel,3 -goodbye,bye,original,bye,2 -goodbye,good-bye,parrot,bye,2 -yes,affirmitive,original,book,1 -thank_you,i'm grateful,original,bye,2 -calendar,tell me what's currently showing on my calendar for tuesday?,lambada,avail,0 -yes,ya,original,book,1 -date,what's today,original,avail,0 -yes,affirmative,original,book,1 -greeting,whats up?,parrot,greet,4 -thank_you,you helped,parrot,bye,2 -greeting,what's new?,parrot,greet,4 -greeting,hi,original,greet,4 -date,which date is next?,parrot,avail,0 -greeting,how's the ayi?,parrot,greet,4 -thank_you,i'm really grateful,parrot,bye,2 -yes,good,parrot,book,1 -no,not really,original,cancel,3 -goodbye,bye!,original,bye,2 -date,what's the current date,original,avail,0 -greeting,heller,original,greet,4 -greeting,"hello, friend",original,greet,4 -goodbye,the conversation was good,parrot,bye,2 -how_busy,oh is the restaurant busy between 11 and 5?,parrot,avail,0 -no,i'm saying no,parrot,cancel,3 -greeting,"good morning, what are you doing",lambada,greet,4 -calendar_update,clear my calendar for march 1st,lambada,resched,5 -yes,yeah yeah,lambada,book,1 -goodbye,just relax,parrot,bye,2 -greeting,good morning,parrot,greet,4 -thank_you,you did it,parrot,bye,2 -calendar,what's tuesday's calendar?,parrot,avail,0 -meeting_schedule,what kind of meeting is today between 10 and noon?,lambada,avail,0 -date,can you tell me what date it will be 2 days from now?,lambada,avail,0 -greeting,hola!,original,greet,4 -goodbye,my way,parrot,bye,2 -thank_you,and you're doing well,parrot,bye,2 -date,what's the date for today?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -no,but that's totally wrong,parrot,cancel,3 -greeting,how is my day,original,greet,4 -yes,so it's true,parrot,book,1 -goodbye,glad we've got to talk,parrot,bye,2 -yes,yes please,original,book,1 -thank_you,you answered,parrot,bye,2 -greeting,hiya!,original,greet,4 -greeting,ahoy,lambada,greet,4 -no,i prefer not to,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -thank_you,you did it,parrot,bye,2 -yes,great,original,book,1 -thank_you,thanks for responding,parrot,bye,2 -date,what year is tomorrow?,parrot,avail,0 -yes,obviously,parrot,book,1 -thank_you,many thanks,original,bye,2 -no,that's erroneous,parrot,cancel,3 -greeting,heller,original,greet,4 -meeting_schedule,what's the meeting today?,parrot,avail,0 -goodbye,farewell,original,bye,2 -date,what date?,parrot,avail,0 -goodbye,bye!,original,bye,2 -yes,"yes, please",parrot,book,1 -no,that’s incorrect,original,cancel,3 -date,what month today?,parrot,avail,0 -calendar_update,add a doctor's appointment to my calendar for friday,original,resched,5 -yes,yeah,original,book,1 -goodbye,bye bye,lambada,bye,2 -goodbye,goodbye,original,bye,2 -no,not good,parrot,cancel,3 -no,negation,parrot,cancel,3 -greeting,heller,original,greet,4 -date,list the current days?,parrot,avail,0 -goodbye,i like to talk to you,parrot,bye,2 -yes,good,parrot,book,1 -goodbye,"thanks for chatting, see you",lambada,bye,2 -goodbye,bye,original,bye,2 -greeting,hello there,original,greet,4 -yes,TRUE,original,book,1 -thank_you,thank you for the vacation,parrot,bye,2 -no,i'd rather not,parrot,cancel,3 -yes,correct,original,book,1 -greeting,hey fellows,parrot,greet,4 -greeting,well hello,original,greet,4 -thank_you,thanks,original,bye,2 -yes,agreed,original,book,1 -yes,accept,parrot,book,1 -greeting,how've you been feeling,original,greet,4 -goodbye,sign off,parrot,bye,2 -no,FALSE,lambada,cancel,3 -yes,right,parrot,book,1 -calendar,tell me what is on my calendar for may 3?,original,avail,0 -meeting_schedule,"i think dan scheduled a meeting today with me, can you double check please",original,avail,0 -thank_you,you've been great,parrot,bye,2 -greeting,how's my day going?,parrot,greet,4 -yes,"yes, please",parrot,book,1 -no,that's completely wrong,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -calendar_update,delete events on june 1,lambada,resched,5 -greeting,heyo,original,greet,4 -goodbye,i'll go,parrot,bye,2 -greeting,how's life?,parrot,greet,4 -no,it's a lie,parrot,cancel,3 -goodbye,goodbye thank you,parrot,bye,2 -greeting,heller,original,greet,4 -no,that's so wrong,parrot,cancel,3 -meeting_schedule,what time am i meeting with robert?,lambada,avail,0 -no,"no, definitely not",original,cancel,3 -yes,a fact,parrot,book,1 -calendar_update,delete events on 1 june,parrot,resched,5 -meeting_schedule,have a meeting today?,parrot,avail,0 -no,nothing good,parrot,cancel,3 -goodbye,i'm out,parrot,bye,2 -thank_you,thanks,original,bye,2 -no,erroneous,parrot,cancel,3 -yes,yeap,original,book,1 -goodbye,goodbye then,parrot,bye,2 -yes,that's correct,original,book,1 -greeting,hello good morning,parrot,greet,4 -goodbye,signing off,original,bye,2 -goodbye,chat with me later,lambada,bye,2 -meeting_schedule,what time do you meet john?,parrot,avail,0 -goodbye,bye,original,bye,2 -how_busy,what's the usual time to get a table in this restaurant?,parrot,avail,0 -date,what year?,parrot,avail,0 -meeting_schedule,what time is my meeting with steve?,original,avail,0 -no,no,lambada,cancel,3 -goodbye,"later, goodbye",lambada,bye,2 -greeting,are you okay??,parrot,greet,4 -yes,i want that,parrot,book,1 -how_busy,how long will the wait be before we go to olive garden,lambada,avail,0 -goodbye,bye,original,bye,2 -no,naw,parrot,cancel,3 -greeting,what's happened?,parrot,greet,4 -thank_you,so grateful,parrot,bye,2 -goodbye,later gator!,original,bye,2 -no,nope not it,original,cancel,3 -goodbye,farewell,original,bye,2 -goodbye,go easy,parrot,bye,2 -yes,TRUE,lambada,book,1 -goodbye,maybe next time,parrot,bye,2 -no,that's wrong,original,cancel,3 -date,what is the date 25 days from now?,lambada,avail,0 -meeting_schedule,when do i meet jane?,parrot,avail,0 -goodbye,thanks for the chat,parrot,bye,2 -calendar,did i put an appointment on my calendar?,parrot,avail,0 -yes,uh-huh,original,book,1 -thank_you,i'm thankful,original,bye,2 -date,what's the date?,parrot,avail,0 -yes,yup,original,book,1 -no,naw,parrot,cancel,3 -greeting,ahoy,lambada,greet,4 -schedule_meeting,please reserve me a meeting room on thursday at 11am,lambada,book,1 -date,in 7 days?,parrot,avail,0 -yes,sure,original,book,1 -thank_you,you've tried,parrot,bye,2 -yes,that is true,original,book,1 -greeting,salutations,parrot,greet,4 -no,no don't do that!,original,cancel,3 -yes,that's a sure yes,parrot,book,1 -thank_you,very grateful,parrot,bye,2 -yes,right,parrot,book,1 -no,no!,original,cancel,3 -no,not right,parrot,cancel,3 -yes,i guess yes,parrot,book,1 -goodbye,bye bye!,original,bye,2 -yes,yes,original,book,1 -yes,yeah,original,book,1 -goodbye,good-bye,parrot,bye,2 -yes,yes please,original,book,1 -reminder_update,make me a reminder,lambada,resched,5 -yes,good,parrot,book,1 -goodbye,later!,original,bye,2 -date,what's the date tomorrow? '',parrot,avail,0 -goodbye,regards,original,bye,2 -how_busy,how busy is chili's at 7 pm,lambada,avail,0 -goodbye,fairwell?,parrot,bye,2 -greeting,hi how's everything?,parrot,greet,4 -no,not that,original,cancel,3 -no,i disagree,parrot,cancel,3 -how_busy,how busy is the cheesecake factory now?,parrot,avail,0 -schedule_meeting,can i meet with steven?,parrot,book,1 -no,that's not it,parrot,cancel,3 -yes,ya,original,book,1 -no,not that,original,cancel,3 -how_busy,how busy mr joe is right now?,parrot,avail,0 -no,i would say that is not correct,lambada,cancel,3 -no,it's false,parrot,cancel,3 -goodbye,"that's all, bye",original,bye,2 -greeting,give me the details,parrot,greet,4 -no,no,lambada,cancel,3 -goodbye,farewell,original,bye,2 -greeting,whats up,original,greet,4 -meeting_schedule,what is on my schedule?,parrot,avail,0 -no,that's false,original,cancel,3 -goodbye,goodbye,original,bye,2 -greeting,how are things,original,greet,4 -no,it's no,parrot,cancel,3 -yes,"yes, that is accurate",original,book,1 -how_busy,how busy is chili around 6pm?,parrot,avail,0 -goodbye,see ya!,original,bye,2 -thank_you,awesome thanks,parrot,bye,2 -no,not that,original,cancel,3 -no,negative,original,cancel,3 -yes,great,original,book,1 -cancel_reservation,cancel the reservation i made,parrot,cancel,3 -no,that is not the case,original,cancel,3 -calendar_update,please clear my calendar for february,parrot,resched,5 -yes,yeah,original,book,1 -yes,TRUE,original,book,1 -goodbye,lovely conversation,parrot,bye,2 -date,how many days will it be?,parrot,avail,0 -goodbye,i'm going,parrot,bye,2 -calendar_update,please clear my calendar,original,resched,5 -yes,uh-huh,original,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,wassup,original,greet,4 -no,negation,parrot,cancel,3 -greeting,how were you?,parrot,greet,4 -yes,positive,parrot,book,1 -no,that's negative,parrot,cancel,3 -cancel_reservation,how do you cancel a reservation?,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -greeting,bonjour,original,greet,4 -greeting,how's my doing?,parrot,greet,4 -calendar,what's my schedule for april 3?,parrot,avail,0 -yes,i just said it,parrot,book,1 -yes,yeah,original,book,1 -cancel_reservation,cancell the table i reserved for tonight,parrot,cancel,3 -greeting,hey how's it hanging,original,greet,4 -calendar_update,clear my calendar for may 9th,lambada,resched,5 -goodbye,"thanks, bye",original,bye,2 -thank_you,thanks for making me laugh,parrot,bye,2 -goodbye,peace,original,bye,2 -no,so that's no,parrot,cancel,3 -how_busy,wait for red lobster?,parrot,avail,0 -thank_you,thanks for answering,parrot,bye,2 -greeting,how's life,original,greet,4 -greeting,whats up?,parrot,greet,4 -goodbye,im leaving,parrot,bye,2 -date,if you can give me the date for today,parrot,avail,0 -greeting,yo how yo feelin,lambada,greet,4 -no,you are wrong,original,cancel,3 -how_busy,how busy is mc jonny around 5,lambada,avail,0 -yes,right,parrot,book,1 -date,what's the day today,original,avail,0 -goodbye,"goodbye, ai assistant",original,bye,2 -how_busy,does the pizza restaurant have a long wait?,parrot,avail,0 -yes,"yeah, that's right",original,book,1 -cancel_reservation,get the salad canceled,parrot,cancel,3 -how_busy,how long will it take to eat the red lobster?,parrot,avail,0 -thank_you,thanks very much for your answer,parrot,bye,2 -no,nay,original,cancel,3 -how_busy,is the chili's busy at 6 pm?,lambada,avail,0 -yes,affirmative,original,book,1 -yes,"yes, that is actually true",original,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -no,and i'm sorry,parrot,cancel,3 -yes,indeed,original,book,1 -greeting,hola,original,greet,4 -yes,that would be true,original,book,1 -thank_you,thanks!,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,no thank you,original,cancel,3 -greeting,salutations!,original,greet,4 -thank_you,i'm thankful,original,bye,2 -schedule_meeting,please schedule a meeting room for 9am on friday,original,book,1 -greeting,heyo,original,greet,4 -cancel_reservation,cancel my reservation with carl at umami,original,cancel,3 -greeting,hiya,original,greet,4 -calendar,check my calendar,parrot,avail,0 -thank_you,thank you for trying,parrot,bye,2 -how_busy,is it always crowded?,parrot,avail,0 -meeting_schedule,when am i meeting roger?,lambada,avail,0 -greeting,welcome,parrot,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,salutations!,original,greet,4 -thank_you,thankyou,parrot,bye,2 -yes,perfect,parrot,book,1 -no,it would be awful,parrot,cancel,3 -meeting_schedule,meeting today,parrot,avail,0 -how_busy,how busy will olive garden be at 9pm,lambada,avail,0 -greeting,hi there,original,greet,4 -no,that is not factual,original,cancel,3 -no,nay,original,cancel,3 -no,negating,parrot,cancel,3 -greeting,how are things?,parrot,greet,4 -yes,definitely,original,book,1 -date,and i'm trying to find out what the date will be,parrot,avail,0 -how_busy,when is chili busy?,parrot,avail,0 -greeting,aloha,original,greet,4 -yes,is true,parrot,book,1 -meeting_schedule,let me hear the meetings for today,parrot,avail,0 -thank_you,i'm thankful,original,bye,2 -yes,obviously,parrot,book,1 -how_busy,is imbrosio busy around 6?,lambada,avail,0 -no,that's wrong,original,cancel,3 -thank_you,thank you for doing that,lambada,bye,2 -no,i'll pass,original,cancel,3 -date,what date is it tomorrow?,original,avail,0 -meeting_schedule,can i tell you the time of my meetings?,lambada,avail,0 -how_busy,how busy is chili's at 8:00 pm,lambada,avail,0 -yes,TRUE,original,book,1 -greeting,well hi there,original,greet,4 -greeting,hey how are you,lambada,greet,4 -yes,it's true,original,book,1 -yes,definitely,original,book,1 -yes,affirmative,original,book,1 -yes,that's a fact,parrot,book,1 -goodbye,peace,original,bye,2 -yes,correct,original,book,1 -calendar,what's happening on march 15,parrot,avail,0 -greeting,hello,original,greet,4 -goodbye,good bye then,original,bye,2 -goodbye,peace out,original,bye,2 -thank_you,thanks!,original,bye,2 -yes,that's the truth,original,book,1 -how_busy,is there a lot of people at st robert's right now?,parrot,avail,0 -goodbye,thank you for talking to me,lambada,bye,2 -greeting,"hello, good day",lambada,greet,4 -greeting,hi how's everything going?,parrot,greet,4 -yes,correct,original,book,1 -no,that's completely wrong,parrot,cancel,3 -date,which date today?,parrot,avail,0 -goodbye,bye,original,bye,2 -date,you have the date?,parrot,avail,0 -no,that is no,lambada,cancel,3 -greeting,hey,original,greet,4 -greeting,how is ayi doing?,parrot,greet,4 -no,"no, that's not right",original,cancel,3 -no,so that's no,parrot,cancel,3 -yes,yes that's it,original,book,1 -yes,positive,original,book,1 -yes,it's logical,parrot,book,1 -greeting,hows are ya,original,greet,4 -goodbye,bye bye,lambada,bye,2 -reminder_update,please remind me to exercise,parrot,resched,5 -yes,great,original,book,1 -yes,yeap,original,book,1 -reminder_update,may i be reminded?,parrot,resched,5 -thank_you,i appreciate that,original,bye,2 -thank_you,appreciate it,original,bye,2 -meeting_schedule,when do you meet roger?,parrot,avail,0 -goodbye,bye,original,bye,2 -reminder_update,make me remember,parrot,resched,5 -thank_you,i really appreciate it,parrot,bye,2 -yes,affirmative,original,book,1 -yes,i guess,parrot,book,1 -greeting,yo,original,greet,4 -goodbye,thanks for chatting,lambada,bye,2 -goodbye,please chat to me,parrot,bye,2 -greeting,how's idy?,parrot,greet,4 -date,what year is it?,original,avail,0 -greeting,hey yai,lambada,greet,4 -yes,okay,original,book,1 -no,i think that's false,original,cancel,3 -cancel_reservation,call the restaurant to cancel my reservation,lambada,cancel,3 -yes,i'll check that out,parrot,book,1 -no,no no no,parrot,cancel,3 -how_busy,is the wait at olive garden too long?,parrot,avail,0 -goodbye,bye,original,bye,2 -greeting,"hey, ai",original,greet,4 -yes,ok,original,book,1 -greeting,hola!,original,greet,4 -goodbye,later,original,bye,2 -calendar,is there an annual physical in my calendar?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -how_busy,how busy is this cheesecake factory right now,lambada,avail,0 -calendar_update,delete all calendar entries on 13 march,parrot,resched,5 -yes,positive,parrot,book,1 -no,no?,parrot,cancel,3 -greeting,hey how's it going,original,greet,4 -meeting_schedule,do i meet joan today?,parrot,avail,0 -goodbye,thank you for my help goodbye,parrot,bye,2 -no,no no thanks,parrot,cancel,3 -cancel_reservation,change my reservation with carl at umami to canceled,original,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,why hello?,original,greet,4 -how_busy,how long does it take to get a table at the red lobster restaurant?,parrot,avail,0 -how_busy,how long can i wait for a table in nasi lagu,parrot,avail,0 -how_busy,tell me how busy mr. joe's is at 9?,lambada,avail,0 -greeting,hola,original,greet,4 -greeting,hiya!,original,greet,4 -how_busy,how crowded will the olive garden be at 9pm?,parrot,avail,0 -goodbye,thank you so much for the conversation,parrot,bye,2 -calendar,tell me what's on my calendar for march 7?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -yes,TRUE,original,book,1 -how_busy,how long will chili's wait,parrot,avail,0 -how_busy,what's the wait time at the cheese cake factory?,parrot,avail,0 -yes,obviously,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -meeting_schedule,are there meetings between 6 and 7?,parrot,avail,0 -date,please date,parrot,avail,0 -goodbye,sayonara ,parrot,bye,2 -yes,a fact,parrot,book,1 -goodbye,good seeing you,original,bye,2 -yes,certainly,parrot,book,1 -yes,i know this is true,lambada,book,1 -cancel_reservation,the reservation i made is no longer needed,parrot,cancel,3 -yes,yes,original,book,1 -greeting,hi what's up,original,greet,4 -no,that is wrong,original,cancel,3 -thank_you,"awesome, thanks",original,bye,2 -yes,yeah yeah,lambada,book,1 -yes,say yes,lambada,book,1 -goodbye,lovely conversation,parrot,bye,2 -greeting,hi how are you today?,parrot,greet,4 -calendar,what's on the march 2nd calendar?,parrot,avail,0 -greeting,hi there,original,greet,4 -yes,accept,parrot,book,1 -yes,i believe it's true,lambada,book,1 -greeting,"hello there, good morning",original,greet,4 -yes,i think it is true,lambada,book,1 -greeting,nice day,lambada,greet,4 -greeting,hello,original,greet,4 -meeting_schedule,will i have any meetings today,lambada,avail,0 -calendar,tell me what my calendar looks like on march 1st?,lambada,avail,0 -greeting,hello how's my life?,parrot,greet,4 -no,i have to say it's wrong,parrot,cancel,3 -yes,positive,parrot,book,1 -calendar,what do you plan for tomorrow?,parrot,avail,0 -how_busy,how many people are in the restaurant between 11 and 5?,parrot,avail,0 -greeting,please tell me what's happening,lambada,greet,4 -goodbye,later!,original,bye,2 -reminder_update,remember to clean the shower,parrot,resched,5 -greeting,heller,original,greet,4 -reminder_update,remind me to take out the garbage in the morning,original,resched,5 -greeting,well hello,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -reminder_update,let me be reminded?,parrot,resched,5 -yes,absolutely!,original,book,1 -greeting,are you doing good?,lambada,greet,4 -meeting_schedule,when will you meet peter?,parrot,avail,0 -goodbye,tata for now,original,bye,2 -greeting,ahoy,lambada,greet,4 -calendar_update,cancel my date with james on march 28th,parrot,resched,5 -goodbye,goodbyes,parrot,bye,2 -yes,yup,original,book,1 -yes,accepted,original,book,1 -yes,"yes, please",parrot,book,1 -yes,so it's true,parrot,book,1 -date,can you tell me the date now,parrot,avail,0 -goodbye,goodbye to your,lambada,bye,2 -yes,that is affirmative,original,book,1 -no,erroneous,parrot,cancel,3 -thank_you,i'm grateful to you,original,bye,2 -yes,"yep, that's right",original,book,1 -no,please disagree,lambada,cancel,3 -greeting,so how's everything going?,parrot,greet,4 -goodbye,i'll leave,parrot,bye,2 -yes,exactly right,original,book,1 -goodbye,adios!,original,bye,2 -no,that seems wrong,lambada,cancel,3 -yes,absolutely!,original,book,1 -no,this is not true,parrot,cancel,3 -no,that isn't correct,original,cancel,3 -yes,oh-huh,parrot,book,1 -greeting,hola,original,greet,4 -date,a year?,parrot,avail,0 -yes,and you're right,parrot,book,1 -greeting,are you feeling okay?,original,greet,4 -yes,accept,parrot,book,1 -thank_you,you helped,parrot,bye,2 -yes,i know that's what i get,lambada,book,1 -meeting_schedule,what is my meeting schedule today?,original,avail,0 -reminder_update,remember to call bob,parrot,resched,5 -yes,great,original,book,1 -goodbye,my friend,parrot,bye,2 -goodbye,buhbye now,lambada,bye,2 -goodbye,take care then,parrot,bye,2 -yes,of course,original,book,1 -yes,oh-huh,parrot,book,1 -no,say negative,parrot,cancel,3 -thank_you,i'm grateful,original,bye,2 -reminder_update,don't forget to set a reminder to pay bills,parrot,resched,5 -date,today?,parrot,avail,0 -meeting_schedule,when i'll meet roger?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -greeting,heller,original,greet,4 -no,absolutely false,parrot,cancel,3 -date,what date will it be next week?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -yes,i know,parrot,book,1 -no,naw,parrot,cancel,3 -schedule_meeting,what is the meeting room number between noon and 2?,lambada,book,1 -yes,right,parrot,book,1 -greeting,hey yai,lambada,greet,4 -yes,huh huh,parrot,book,1 -goodbye,i leave now,parrot,bye,2 -greeting,hey fellow,parrot,greet,4 -no,i think it's not correct,parrot,cancel,3 -yes,perfect,parrot,book,1 -yes,yeah yeah,lambada,book,1 -yes,i'm going to tell you tes,parrot,book,1 -how_busy,if i go to the outback steakhouse how long will i wait?,parrot,avail,0 -greeting,how's everything?,parrot,greet,4 -no,it's absolutely false,parrot,cancel,3 -greeting,"hello, ai",original,greet,4 -greeting,heller,original,greet,4 -no,i'm afraid not,parrot,cancel,3 -goodbye,goodbye to your,lambada,bye,2 -no,negatory?,parrot,cancel,3 -yes,yeah,original,book,1 -thank_you,thanks!,original,bye,2 -goodbye,"thanks, bye",original,bye,2 -no,nope,original,cancel,3 -how_busy,how long will i have to wait for mr joe?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -calendar,please read my schedule for march 2nd,parrot,avail,0 -yes,you're right,original,book,1 -no,if i don't think it's true then i would say it's a false statement,parrot,cancel,3 -date,current date,original,avail,0 -yes,right,parrot,book,1 -goodbye,you're done,parrot,bye,2 -yes,you're right,original,book,1 -goodbye,i'm gone,parrot,bye,2 -goodbye,a good talk,parrot,bye,2 -goodbye,later gater,original,bye,2 -yes,facts,original,book,1 -goodbye,peace,original,bye,2 -no,that is wrong,original,cancel,3 -goodbye,later gator!,original,bye,2 -how_busy,what will it be like if i go to the olive garden at 4pm?,parrot,avail,0 -calendar,show me what's on my calendar for march 7th?,parrot,avail,0 -goodbye,peace,original,bye,2 -greeting,"hey, what's up",original,greet,4 -no,that is not right,original,cancel,3 -calendar_update,can you cancel my improv class for may 7th?,parrot,resched,5 -yes,yeah yeah,lambada,book,1 -goodbye,the conversation was good,parrot,bye,2 -schedule_meeting,what meeting rooms are available between 900 and 1130?,parrot,book,1 -how_busy,how long will the wait be at chili's at 5 pm,lambada,avail,0 -date,in 10 days?,parrot,avail,0 -goodbye,you're done,parrot,bye,2 -goodbye,", goodbye",lambada,bye,2 -greeting,wassup,original,greet,4 -yes,correct,original,book,1 -yes,it's true yes,parrot,book,1 -goodbye,good night,original,bye,2 -goodbye,a good talk,parrot,bye,2 -goodbye,fairwell,original,bye,2 -goodbye,bye-bye,original,bye,2 -yes,yup,original,book,1 -goodbye,goodbye my friend,parrot,bye,2 -greeting,wanted to say hi,parrot,greet,4 -reminder_update,please remember me again,parrot,resched,5 -yes,oh-huh,parrot,book,1 -no,that is erroneous,original,cancel,3 -no,that's certainly false,parrot,cancel,3 -yes,facts,original,book,1 -no,that is sooo bad,lambada,cancel,3 -thank_you,appreciated,original,bye,2 -calendar,please read my calendar,parrot,avail,0 -greeting,hiya!,original,greet,4 -no,nothing,parrot,cancel,3 -how_busy,how long will i have to wait at immaculate fridays,lambada,avail,0 -goodbye,have a good one?,original,bye,2 -goodbye,i'm out,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -schedule_meeting,can you help me set up a meeting for you?,parrot,book,1 -goodbye,fairwell?,parrot,bye,2 -goodbye,good to talk to you again,lambada,bye,2 -no,nada,original,cancel,3 -goodbye,i must run now,parrot,bye,2 -yes,uh-huh,original,book,1 -yes,confirm,original,book,1 -thank_you,thanks!,original,bye,2 -greeting,ahoy,lambada,greet,4 -yes,yup,original,book,1 -yes,i think that is correct,lambada,book,1 -greeting,hi,original,greet,4 -cancel_reservation,please cancel my reservation on the lake at 9pm,parrot,cancel,3 -greeting,how is life?,parrot,greet,4 -date,is the date?,parrot,avail,0 -greeting,how does ai do?,parrot,greet,4 -no,no thanks,original,cancel,3 -thank_you,you're welcome,parrot,bye,2 -cancel_reservation,i won't need the reservation anymore,parrot,cancel,3 -date,what is today?,original,avail,0 -no,that's untrue,parrot,cancel,3 -yes,absolutely,original,book,1 -goodbye,later gater,original,bye,2 -no,that's very negative,parrot,cancel,3 -yes,that is affirmative,original,book,1 -how_busy,what's the time to sit at this restaurant?,parrot,avail,0 -no,that's a negation,parrot,cancel,3 -yes,definitely yes,parrot,book,1 -goodbye,sayonara,original,bye,2 -reminder_update,let me be reminded?,parrot,resched,5 -yes,definitely,original,book,1 -greeting,bonjour,original,greet,4 -yes,"yes, that is actually true",original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,i'm glad we got along,parrot,bye,2 -thank_you,thanks for doing it,parrot,bye,2 -greeting,how is life?,parrot,greet,4 -goodbye,"see you later, alligator",original,bye,2 -how_busy,list the most popular times at the cheesecake factory?,parrot,avail,0 -yes,indeed,original,book,1 -thank_you,really great!,original,bye,2 -greeting,hello how you doing,lambada,greet,4 -yes,absolutely!,original,book,1 -goodbye,adios ai,original,bye,2 -how_busy,how long after 7pm,parrot,avail,0 -yes,facts,original,book,1 -no,invalid,original,cancel,3 -thank_you,many thanks,original,bye,2 -yes,uh-huh,original,book,1 -goodbye,adios!,original,bye,2 -no,i think it's false,parrot,cancel,3 -goodbye,bye,original,bye,2 -goodbye,we'll talk later ai,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -greeting,aloha,original,greet,4 -meeting_schedule,wanna meet with roger?,parrot,avail,0 -meeting_schedule,when is today's meeting?,lambada,avail,0 -meeting_schedule,meetings today,original,avail,0 -meeting_schedule,let me know what meetings i have scheduled today,parrot,avail,0 -greeting,how're you doing?,parrot,greet,4 -no,i'll pass,original,cancel,3 -greeting,good day,original,greet,4 -greeting,"hi, ai",original,greet,4 -date,please date,parrot,avail,0 -greeting,yo,original,greet,4 -date,in 10 days?,parrot,avail,0 -no,it's overwhelmingly wrong,parrot,cancel,3 -goodbye,i loved talking to you,parrot,bye,2 -thank_you,appreciated,original,bye,2 -date,in eight days?,parrot,avail,0 -goodbye,as regards,parrot,bye,2 -goodbye,farewell,original,bye,2 -date,what's the day like?,parrot,avail,0 -goodbye,thanks for talking,original,bye,2 -goodbye,adios,original,bye,2 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -yes,and you're right,parrot,book,1 -goodbye,im leaving,parrot,bye,2 -goodbye,farewell!,original,bye,2 -date,what's it today?,parrot,avail,0 -yes,definitely,original,book,1 -goodbye,come on soon,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -thank_you,thanks!,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,i disagree with this,parrot,cancel,3 -meeting_schedule,meetings today,original,avail,0 -yes,that's a fact,lambada,book,1 -goodbye,later,original,bye,2 -how_busy,how long will the wait at this pizza shop be?,parrot,avail,0 -yes,certainly,parrot,book,1 -thank_you,my thanks,parrot,bye,2 -no,not true,original,cancel,3 -reminder_update,the cat needs neutering,parrot,resched,5 -greeting,aho,parrot,greet,4 -no,don't agree,parrot,cancel,3 -thank_you,thanks again,original,bye,2 -no,certainly false,parrot,cancel,3 -date,in eight days?,parrot,avail,0 -cancel_reservation,call my reservation canceled,lambada,cancel,3 -greeting,salutations!,original,greet,4 -yes,great,original,book,1 -meeting_schedule,when is the meeting with jim scheduled?,lambada,avail,0 -goodbye,fairwell?,parrot,bye,2 -goodbye,later!,original,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -greeting,hi what's going on?,parrot,greet,4 -no,FALSE,lambada,cancel,3 -yes,positive,original,book,1 -greeting,what's happening?,parrot,greet,4 -no,so that's no,parrot,cancel,3 -how_busy,is the restaurant busiest during dinner?,lambada,avail,0 -yes,approved,original,book,1 -no,erroneous,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -yes,this is true,lambada,book,1 -calendar,tell me any events scheduled on my calendar for april 15?,original,avail,0 -how_busy,is this restaurant crowded?,parrot,avail,0 -no,negating,parrot,cancel,3 -date,in eight days?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -yes,oh-huh,parrot,book,1 -thank_you,you answered my questions,parrot,bye,2 -goodbye,"no problem, goodbye",lambada,bye,2 -goodbye,later,original,bye,2 -greeting,and how's it going?,parrot,greet,4 -yes,positive,original,book,1 -yes,i think that's true,original,book,1 -no,that's incorrect,original,cancel,3 -date,which date today?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -how_busy,tell me the time to wait at the cheese cake factory?,parrot,avail,0 -how_busy,how long will i have to wait at phoenix steakhouse,lambada,avail,0 -goodbye,have fun?,lambada,bye,2 -reminder_update,remind me to exercise,original,resched,5 -goodbye,see ya,lambada,bye,2 -goodbye,have to run,parrot,bye,2 -no,nope,original,cancel,3 -schedule_meeting,i have to go through a process to schedule a meeting,parrot,book,1 -yes,accepted,original,book,1 -goodbye,go easy,parrot,bye,2 -goodbye,peace out,original,bye,2 -greeting,hiya,original,greet,4 -yes,positive,original,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -no,that's inaccurate,original,cancel,3 -yes,yes that's correct,original,book,1 -no,that isn't correct,original,cancel,3 -how_busy,is there a long wait for pizza?,parrot,avail,0 -thank_you,i appreciate you doing that,original,bye,2 -greeting,aloha,original,greet,4 -thank_you,I owe you one,parrot,bye,2 -thank_you,my thanks,parrot,bye,2 -no,but that's not factual,parrot,cancel,3 -thank_you,merci beaucoup,original,bye,2 -yes,affirmitive,original,book,1 -no,i'd rather not,parrot,cancel,3 -greeting,aho,parrot,greet,4 -thank_you,thanks very much for your answer,parrot,bye,2 -no,that is wrong,original,cancel,3 -date,what day?,parrot,avail,0 -no,false for sure,original,cancel,3 -no,that's negative,parrot,cancel,3 -meeting_schedule,the meetings today,parrot,avail,0 -thank_you,thanks for helping,original,bye,2 -calendar,do i have any events on my calendar for march 23rd?,lambada,avail,0 -no,that's a wrong answer?,parrot,cancel,3 -goodbye,good talk,parrot,bye,2 -no,it's a negative,parrot,cancel,3 -calendar,what's going on may 4?,parrot,avail,0 -how_busy,do you know how busy outback steakhouse tends to be at 7:00 pm?,original,avail,0 -goodbye,", goodbye",lambada,bye,2 -goodbye,goodbye bye,parrot,bye,2 -greeting,heyo,original,greet,4 -greeting,tell me what's going on,parrot,greet,4 -thank_you,very grateful,parrot,bye,2 -yes,yes,original,book,1 -goodbye,my friend,parrot,bye,2 -meeting_schedule,when's the meeting?,parrot,avail,0 -greeting,bonjour,original,greet,4 -greeting,hey,original,greet,4 -yes,i'll say yes,parrot,book,1 -how_busy,what if there's a long wait at red lobster?,parrot,avail,0 -date,which day is next,parrot,avail,0 -calendar_update,remove my calendar from this friday,parrot,resched,5 -yes,TRUE,lambada,book,1 -goodbye,see ya later,original,bye,2 -how_busy,how long before dinner?,parrot,avail,0 -how_busy,how busy is mishawaka?,parrot,avail,0 -cancel_reservation,get the salad canceled,parrot,cancel,3 -thank_you,merci beaucoup,original,bye,2 -goodbye,afterward,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -no,that's totally false,parrot,cancel,3 -yes,affirmative,original,book,1 -no,"nope, that's false",original,cancel,3 -no,certainly false,parrot,cancel,3 -goodbye,fairwell,original,bye,2 -how_busy,can you tell me how long it will take to get a table in the egg salad factory?,parrot,avail,0 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -greeting,hello ai,parrot,greet,4 -thank_you,nice,parrot,bye,2 -no,that is incorrect,original,cancel,3 -calendar,are there any events in my calendar for thursday?,parrot,avail,0 -no,negating,parrot,cancel,3 -reminder_update,set a reminder for the date of my birthday,lambada,resched,5 -date,can you tell me what the date is tomorrow?,lambada,avail,0 -calendar_update,remove the fencing from my calendar for may 7,parrot,resched,5 -goodbye,thanks goodbye,parrot,bye,2 -yes,accepted,original,book,1 -goodbye,goodbye soon,lambada,bye,2 -goodbye,greetings,parrot,bye,2 -greeting,salutations,parrot,greet,4 -goodbye,later gator!,original,bye,2 -how_busy,how long will i have to wait at ihop?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -goodbye,a good conversation,parrot,bye,2 -no,no,lambada,cancel,3 -thank_you,very grateful,parrot,bye,2 -cancel_reservation,abandon the reservation for dinner i made,parrot,cancel,3 -yes,absolutely!,original,book,1 -no,invalid,original,cancel,3 -no,no?,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -reminder_update,remember to clean the shower,parrot,resched,5 -thank_you,thanks,original,bye,2 -no,that is so very negative,lambada,cancel,3 -no,not good idea,parrot,cancel,3 -calendar_update,clear my calendar on feb 28,original,resched,5 -reminder_update,let me remember,parrot,resched,5 -goodbye,see you around,original,bye,2 -yes,so it's checked,parrot,book,1 -goodbye,bye,original,bye,2 -yes,i agree,original,book,1 -yes,great,original,book,1 -thank_you,good looking out,original,bye,2 -how_busy,does a coffee bean work well at 7 hours?,parrot,avail,0 -goodbye,i had fun talking to you,parrot,bye,2 -yes,confirm,original,book,1 -thank_you,awesome thanks,parrot,bye,2 -how_busy,how long will it take to get a table in the olive garden?,parrot,avail,0 -how_busy,is this place crowded for dinner?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -yes,that is a yes,original,book,1 -yes,certainly true,parrot,book,1 -no,i disagree,parrot,cancel,3 -greeting,yo,original,greet,4 -cancel_reservation,i won't need the reservation anymore,parrot,cancel,3 -no,that's a negatory,original,cancel,3 -how_busy,will ihop be busy around 5,lambada,avail,0 -goodbye,say goodbye,parrot,bye,2 -yes,agreed,original,book,1 -thank_you,nice,parrot,bye,2 -goodbye,sayonara,original,bye,2 -goodbye,goodbye!,original,bye,2 -how_busy,wait how long?,parrot,avail,0 -reminder_update,keep me in mind,parrot,resched,5 -calendar_update,add my dentist appointment to my calendar,parrot,resched,5 -yes,absolutely,original,book,1 -yes,agreed,original,book,1 -yes,yeap,original,book,1 -goodbye,later,original,bye,2 -calendar,how many points do i have on my calendar for the annual membership fee?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -greeting,how's the situation?,parrot,greet,4 -yes,certainly,parrot,book,1 -thank_you,a million thanks,parrot,bye,2 -reminder_update,you can remind me,parrot,resched,5 -thank_you,thanks again,original,bye,2 -goodbye,regards,original,bye,2 -calendar,check my calendar for events,lambada,avail,0 -date,list the current days?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -no,that's no,parrot,cancel,3 -how_busy,how busy is chipotle grill?,parrot,avail,0 -no,no!,original,cancel,3 -yes,huh huh,parrot,book,1 -yes,indeed,original,book,1 -yes,confirmed,original,book,1 -how_busy,how long should i wait before eating in the restaurant beta,parrot,avail,0 -goodbye,bye!,original,bye,2 -meeting_schedule,meetings today,original,avail,0 -calendar,tell me what's on my calendar for 12232019?,parrot,avail,0 -yes,it appears true,parrot,book,1 -greeting,whats up?,parrot,greet,4 -yes,you got it,original,book,1 -greeting,hello bs,parrot,greet,4 -date,give me what date it's tomorrow,parrot,avail,0 -goodbye,good luck,lambada,bye,2 -how_busy,what is the current wait at bhr right now?,lambada,avail,0 -goodbye,goodbye,original,bye,2 -greeting,how's my day?,parrot,greet,4 -greeting,hola,original,greet,4 -no,definitely not,original,cancel,3 -greeting,"wake up, ai",original,greet,4 -goodbye,bye bye,lambada,bye,2 -thank_you,thanks very much for your answer,parrot,bye,2 -thank_you,it's my debt,parrot,bye,2 -thank_you,my gratitude,parrot,bye,2 -greeting,aho,parrot,greet,4 -no,not right?,parrot,cancel,3 -goodbye,talk later,original,bye,2 -schedule_meeting,how are meetings scheduled?,parrot,book,1 -yes,not false,parrot,book,1 -no,not right?,parrot,cancel,3 -greeting,wassup,original,greet,4 -no,most definitely false,parrot,cancel,3 -yes,obviously,parrot,book,1 -no,so that's no,parrot,cancel,3 -goodbye,farewell!,original,bye,2 -greeting,welcome,parrot,greet,4 -thank_you,gracias,original,bye,2 -no,it's a false,lambada,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -greeting,heller,original,greet,4 -cancel_reservation,you can cancel my reservation at the red robin,parrot,cancel,3 -greeting,hiya!,original,greet,4 -meeting_schedule,do we meet today?,parrot,avail,0 -thank_you,thanks,original,bye,2 -thank_you,really great!,original,bye,2 -greeting,heyo,original,greet,4 -date,today?,parrot,avail,0 -yes,10-Apr,original,book,1 -yes,i'll give it a try,parrot,book,1 -greeting,how is it going?,parrot,greet,4 -thank_you,thank you?,parrot,bye,2 -thank_you,good job,lambada,bye,2 -reminder_update,set reminder to feed cat at 10 pm,lambada,resched,5 -greeting,hiya,original,greet,4 -yes,agreed,original,book,1 -no,negatory,original,cancel,3 -goodbye,goodbye soon,lambada,bye,2 -how_busy,how busy will chili be around 8,parrot,avail,0 -greeting,ahoy hoy,original,greet,4 -thank_you,you've been great,parrot,bye,2 -yes,yeap,original,book,1 -yes,indeed,original,book,1 -how_busy,can you tell me how long is the wait at olive garden?,lambada,avail,0 -how_busy,what's the wait time for a table reservation?,parrot,avail,0 -no,i'll pass,original,cancel,3 -how_busy,is ihop busy around 6 pm?,parrot,avail,0 -schedule_meeting,how do i schedule meetings?,parrot,book,1 -cancel_reservation,remove the reservation i made with the olive garden,parrot,cancel,3 -goodbye,adios,original,bye,2 -yes,sure,original,book,1 -how_busy,is jack's steakhouse usually packed when we're gone?,parrot,avail,0 -reminder_update,i need to pay my tax,parrot,resched,5 -schedule_meeting,me and seth would like to have a meeting at 11 am,parrot,book,1 -thank_you,you were so nice,parrot,bye,2 -yes,yes,original,book,1 -thank_you,thank you,original,bye,2 -no,nada,original,cancel,3 -goodbye,good luck tomorrow,lambada,bye,2 -calendar_update,"on the 22nd of this month, we need to clear our calendar so we can leave it open for mark to visit",original,resched,5 -how_busy,how busy is chili at 7pm?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -date,what's today,original,avail,0 -no,FALSE,lambada,cancel,3 -goodbye,peace,original,bye,2 -meeting_schedule,do i have meetings between 1 and 8?,parrot,avail,0 -calendar,let me know what's on my calendar for march 15,parrot,avail,0 -no,don't agree,parrot,cancel,3 -yes,that'd be great,parrot,book,1 -reminder_update,remind me,original,resched,5 -yes,indeed,original,book,1 -goodbye,adios,original,bye,2 -cancel_reservation,please cancel my reservation for joe at ronnie's,lambada,cancel,3 -goodbye,have fun?,lambada,bye,2 -yes,"yes, that's it",original,book,1 -no,that's inaccurate,original,cancel,3 -schedule_meeting,is it possible to schedule a meeting with bob for 10 am?,parrot,book,1 -how_busy,show me the wait times at applebees restaurant?,parrot,avail,0 -goodbye,tootles,original,bye,2 -date,today?,parrot,avail,0 -meeting_schedule,do you have any meetings?,parrot,avail,0 -goodbye,i'm going,parrot,bye,2 -greeting,yo,original,greet,4 -goodbye,regards,original,bye,2 -no,FALSE,original,cancel,3 -how_busy,is there a wait before i go to imovis,parrot,avail,0 -no,so that's no,parrot,cancel,3 -yes,good,parrot,book,1 -no,"that's right, that is incorrect",lambada,cancel,3 -how_busy,the olive garden is usually busy around noon,parrot,avail,0 -goodbye,see you later,original,bye,2 -calendar_update,i want to clear the events on my calendar for march 20 2019,parrot,resched,5 -thank_you,really great!,original,bye,2 -goodbye,have fun?,lambada,bye,2 -no,i mean no,parrot,cancel,3 -thank_you,you've given me it,parrot,bye,2 -thank_you,thanks very much for your answer,parrot,bye,2 -how_busy,can i expect ruby tuesday to be busy around 5:30?,lambada,avail,0 -schedule_meeting,make a meeting with john at 6pm,parrot,book,1 -thank_you,appreciate it,original,bye,2 -how_busy,does this pizza place get a long wait?,lambada,avail,0 -how_busy,is there a long wait time at red lobster?,lambada,avail,0 -thank_you,thanks!,original,bye,2 -yes,yes please,original,book,1 -how_busy,there's a cheesecake factory,parrot,avail,0 -greeting,what's happening,original,greet,4 -thank_you,you've been great,parrot,bye,2 -no,this information is not true,parrot,cancel,3 -yes,i know this is true,lambada,book,1 -greeting,please tell me what you feel?,parrot,greet,4 -no,negation,parrot,cancel,3 -how_busy,when is chili busy?,parrot,avail,0 -date,in what year is tomorrow?,parrot,avail,0 -no,no that is wrong,original,cancel,3 -how_busy,please tell me what the wait at olive garden is like now,parrot,avail,0 -how_busy,how long is the wait at the outback steakhouse?,parrot,avail,0 -no,false sure,parrot,cancel,3 -calendar,what's my schedule for tomorrow?,parrot,avail,0 -how_busy,is the restaurant open at lunchtime?,parrot,avail,0 -no,not happening,original,cancel,3 -yes,you're right,original,book,1 -no,don't agree,parrot,cancel,3 -cancel_reservation,the reservation i have isn't needed any more,original,cancel,3 -no,no no thanks,parrot,cancel,3 -thank_you,my thanks,parrot,bye,2 -goodbye,will we talk about tomorrow?,parrot,bye,2 -reminder_update,give me a reminder to brush my teeth,parrot,resched,5 -goodbye,adios ai,original,bye,2 -no,nada,original,cancel,3 -no,negatory?,parrot,cancel,3 -thank_you,thank you,original,bye,2 -yes,sure,original,book,1 -no,no!,original,cancel,3 -yes,huh huh,parrot,book,1 -greeting,good evening,original,greet,4 -no,nada,original,cancel,3 -goodbye,goodbye,original,bye,2 -yes,indeed,original,book,1 -greeting,what's happened to you?,parrot,greet,4 -no,but it's false,parrot,cancel,3 -no,it's a negation,parrot,cancel,3 -yes,let's do it,parrot,book,1 -goodbye,i'll leave,parrot,bye,2 -yes,oh-huh,parrot,book,1 -goodbye,"thanks, bye",original,bye,2 -date,what is a date in 11 days?,parrot,avail,0 -reminder_update,do not let me forget later,parrot,resched,5 -no,nothing,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -thank_you,again thanks,parrot,bye,2 -goodbye,i enjoyed talking to you ',parrot,bye,2 -no,negatory,original,cancel,3 -no,that's wrong,original,cancel,3 -no,negative certainly,parrot,cancel,3 -calendar_update,can you remove the event from my calendar?,lambada,resched,5 -date,tell me what date tomorrow is?,lambada,avail,0 -greeting,hello what's going on with you,parrot,greet,4 -no,false sure,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -date,what's today?,parrot,avail,0 -yes,10-Apr,original,book,1 -goodbye,adios,original,bye,2 -greeting,what's happening,original,greet,4 -goodbye,this conversation was very pleasant,parrot,bye,2 -no,naw,parrot,cancel,3 -thank_you,i'm grateful for helping me,parrot,bye,2 -greeting,aloha,original,greet,4 -greeting,salutations,parrot,greet,4 -yes,positive,original,book,1 -schedule_meeting,how do you know if you can open a new meeting?,parrot,book,1 -no,nay,original,cancel,3 -date,what date today?,parrot,avail,0 -thank_you,you helped,parrot,bye,2 -goodbye,bye!,original,bye,2 -no,i would say the statement is definitely false,parrot,cancel,3 -how_busy,how long does it take to wait for teddy bears at 6 pm,parrot,avail,0 -no,no thanks,original,cancel,3 -no,no?,parrot,cancel,3 -greeting,hola!,original,greet,4 -no,not true,original,cancel,3 -no,that isn't correct,original,cancel,3 -thank_you,good job,lambada,bye,2 -meeting_schedule,do i have a meeting with dan?,parrot,avail,0 -goodbye,come on soon,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -thank_you,i want to thank you for your time,parrot,bye,2 -yes,good,parrot,book,1 -goodbye,sign off,parrot,bye,2 -calendar_update,let's delete the date from the calendar,parrot,resched,5 -no,absolutely false,parrot,cancel,3 -calendar,please read my calendar for march 7th,parrot,avail,0 -no,is not true?,parrot,cancel,3 -calendar,is an event in my calendar?,parrot,avail,0 -no,not right?,parrot,cancel,3 -yes,facts,original,book,1 -greeting,hiya!,original,greet,4 -how_busy,when is chili busy?,parrot,avail,0 -goodbye,the conversation with you was great,parrot,bye,2 -no,that's a negation,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -greeting,how's ayi doing?,parrot,greet,4 -how_busy,how long will i be in line at carl jr's,parrot,avail,0 -greeting,heyo,original,greet,4 -calendar,check my calendar to see if my dog was accounted for?,parrot,avail,0 -no,absolutely false,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -greeting,aloha,original,greet,4 -yes,that is really true,lambada,book,1 -yes,yes please,original,book,1 -how_busy,how busy is ihop?,parrot,avail,0 -yes,huh,parrot,book,1 -no,that's erroneous,parrot,cancel,3 -no,but certainly not,parrot,cancel,3 -yes,accept,parrot,book,1 -greeting,you good?,parrot,greet,4 -yes,perfect,parrot,book,1 -no,negatory?,parrot,cancel,3 -greeting,how ya been,original,greet,4 -greeting,how you're doing?,parrot,greet,4 -calendar,what do you have planned for tomorrow?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -thank_you,you've helped,parrot,bye,2 -yes,yup,original,book,1 -thank_you,appreciate it,original,bye,2 -thank_you,good job,lambada,bye,2 -thank_you,thank you for my time and effort to help,parrot,bye,2 -schedule_meeting,show me how to set up a meeting,parrot,book,1 -goodbye,adios,original,bye,2 -greeting,how are you,original,greet,4 -greeting,how are you feeling now?,parrot,greet,4 -thank_you,you're welcome,parrot,bye,2 -yes,that is correct,original,book,1 -no,but it's not true,parrot,cancel,3 -how_busy,what will it be like for chili at 8pm?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -greeting,how's life treating you,parrot,greet,4 -yes,my answer is yes,parrot,book,1 -greeting,how you feel?,parrot,greet,4 -goodbye,peace,original,bye,2 -greeting,salutations!,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -yes,accepted,original,book,1 -meeting_schedule,please read my schedule,parrot,avail,0 -yes,just right,parrot,book,1 -thank_you,nice,parrot,bye,2 -thank_you,thank you?,parrot,bye,2 -greeting,salutation,parrot,greet,4 -goodbye,maybe next time,parrot,bye,2 -yes,absolutely,original,book,1 -thank_you,you helped,parrot,bye,2 -goodbye,goodbye ai,parrot,bye,2 -goodbye,goodnight,original,bye,2 -thank_you,"thanks, that's helpful",original,bye,2 -date,what is the date of today?,original,avail,0 -yes,"correct, that's true",original,book,1 -thank_you,merci beaucoup,original,bye,2 -reminder_update,let me remember,parrot,resched,5 -yes,absolutely!,original,book,1 -goodbye,good-bye,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -goodbye,farewell to you,lambada,bye,2 -goodbye,come on soon,parrot,bye,2 -thank_you,your help was great thank you very much,parrot,bye,2 -greeting,"hi, how are you",original,greet,4 -date,he's got the date,parrot,avail,0 -cancel_reservation,my reservation at robin's must be cancelled,parrot,cancel,3 -reminder_update,please make a new note,parrot,resched,5 -greeting,i'll tell you how it goes,parrot,greet,4 -how_busy,how busy is red robin around 7pm,lambada,avail,0 -yes,perfect,parrot,book,1 -no,that’s incorrect,original,cancel,3 -yes,TRUE,lambada,book,1 -no,so that's no,parrot,cancel,3 -greeting,heyo,original,greet,4 -greeting,heyo,original,greet,4 -how_busy,wait how long before we're in the restaurant?,parrot,avail,0 -thank_you,thanks,original,bye,2 -yes,correct,original,book,1 -goodbye,ai goodbye,original,bye,2 -yes,that's a true statement,lambada,book,1 -greeting,how's ai feeling?,parrot,greet,4 -goodbye,sayonara,original,bye,2 -no,no?,parrot,cancel,3 -yes,confirmed,original,book,1 -goodbye,bye-bye,original,bye,2 -yes,indeed,original,book,1 -how_busy,how long will the wait be at chili's at 7pm,parrot,avail,0 -date,date please,original,avail,0 -goodbye,"no problem, goodbye",lambada,bye,2 -greeting,hey fellows,parrot,greet,4 -date,i'd like to know what the date is for tomorrow?,parrot,avail,0 -greeting,how've you been,original,greet,4 -goodbye,goodbye,original,bye,2 -goodbye,fairwell,original,bye,2 -reminder_update,please remember something,parrot,resched,5 -schedule_meeting,tell me how i can schedule a meeting with you,parrot,book,1 -no,not good,parrot,cancel,3 -schedule_meeting,how do i book a meeting?,parrot,book,1 -greeting,"hey, how's it going",original,greet,4 -date,if it's six days,parrot,avail,0 -reminder_update,set a reminder to get the mail,lambada,resched,5 -goodbye,but now i'm leaving,parrot,bye,2 -goodbye,buhbye,original,bye,2 -date,what date?,parrot,avail,0 -goodbye,thank you for the help goodbye,parrot,bye,2 -reminder_update,please remind me of my bills,parrot,resched,5 -greeting,"hello, good day",lambada,greet,4 -goodbye,good-bye,parrot,bye,2 -yes,ya,original,book,1 -greeting,what's up with you?,parrot,greet,4 -greeting,how're you?,parrot,greet,4 -yes,TRUE,original,book,1 -greeting,how's it hanging?,parrot,greet,4 -no,definitely not,original,cancel,3 -greeting,what's happening,original,greet,4 -date,a year?,parrot,avail,0 -reminder_update,remind me to pay taxes on friday,parrot,resched,5 -goodbye,see ya later,original,bye,2 -yes,yeah,original,book,1 -greeting,hey fellows,parrot,greet,4 -yes,good,parrot,book,1 -goodbye,bye,original,bye,2 -how_busy,can you tell me what the wait times at this restaurant are?,lambada,avail,0 -date,please date,parrot,avail,0 -no,nay,original,cancel,3 -yes,okay,original,book,1 -goodbye,i've got to go out,parrot,bye,2 -goodbye,goodnight,original,bye,2 -goodbye,thank you for talking to me,lambada,bye,2 -goodbye,farewell!,original,bye,2 -no,i disagree,parrot,cancel,3 -goodbye,please talk to me,parrot,bye,2 -greeting,"hey, how are you",original,greet,4 -yes,affirmative,original,book,1 -greeting,yo,original,greet,4 -yes,exactly right,original,book,1 -yes,it's positive,parrot,book,1 -yes,that's true,original,book,1 -goodbye,i'm glad you had a good conversation with me goodbye,parrot,bye,2 -goodbye,farewell,original,bye,2 -goodbye,it's over,parrot,bye,2 -no,there's no way it's true,parrot,cancel,3 -yes,that checks out,original,book,1 -yes,10-Apr,original,book,1 -greeting,how's my day going,lambada,greet,4 -goodbye,tootles?,parrot,bye,2 -yes,"yeah, that's right",original,book,1 -no,nope,original,cancel,3 -no,i'll pass,original,cancel,3 -no,no no no,parrot,cancel,3 -no,negative certainly,parrot,cancel,3 -greeting,how're you today?,parrot,greet,4 -how_busy,wait how long?,parrot,avail,0 -goodbye,it's over,parrot,bye,2 -date,what's the day tomorrow?,parrot,avail,0 -thank_you,"oh, thanks",original,bye,2 -greeting,hi,original,greet,4 -goodbye,goodbye,original,bye,2 -greeting,how's the ayi?,parrot,greet,4 -no,erroneous,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -cancel_reservation,cancel my dinner reservation,lambada,cancel,3 -schedule_meeting,can you schedule a meeting?,lambada,book,1 -no,it's overwhelmingly wrong,parrot,cancel,3 -goodbye,"bye-bye, my friend",lambada,bye,2 -no,negative definitely,parrot,cancel,3 -no,that's false,original,cancel,3 -thank_you,thank you please,parrot,bye,2 -how_busy,how busy is chili around 8 pm,parrot,avail,0 -goodbye,goodbye now,parrot,bye,2 -date,tell me the year?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -date,in eight days?,parrot,avail,0 -reminder_update,can you set a reminder for me to workout?,parrot,resched,5 -calendar_update,i need to remove fishing from my calendar for soccer,original,resched,5 -no,negation,parrot,cancel,3 -thank_you,why thank you?,original,bye,2 -greeting,hey fellow,parrot,greet,4 -yes,yay,lambada,book,1 -no,it's a negative,parrot,cancel,3 -reminder_update,i have to remind myself to go to the post office,parrot,resched,5 -yes,yeah that's right,lambada,book,1 -no,not right so,parrot,cancel,3 -goodbye,adios!,original,bye,2 -no,is a lie?,parrot,cancel,3 -yes,yes sir,original,book,1 -calendar,what's tuesday's calendar?,parrot,avail,0 -thank_you,did you do well?,parrot,bye,2 -greeting,hey fellow,parrot,greet,4 -goodbye,later gater,original,bye,2 -thank_you,thanks again!,original,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -greeting,salutations!,original,greet,4 -yes,im sure you're right,parrot,book,1 -no,but certainly not,parrot,cancel,3 -yes,that's definitely true,original,book,1 -greeting,hi,original,greet,4 -greeting,whats up,original,greet,4 -thank_you,you answered,parrot,bye,2 -yes,all right,parrot,book,1 -yes,that is true,original,book,1 -greeting,how's my day been?,parrot,greet,4 -date,today?,parrot,avail,0 -yes,indeed,original,book,1 -no,that's absolutely false,parrot,cancel,3 -goodbye,goodbye goodbye,parrot,bye,2 -thank_you,thanks for trying,original,bye,2 -yes,truthful is my answer,lambada,book,1 -how_busy,how long is the wait before i go to imovis,lambada,avail,0 -date,what today?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -no,indeed it's false,parrot,cancel,3 -goodbye,go easy,parrot,bye,2 -goodbye,thanks bye bye!,original,bye,2 -yes,"yes, please",parrot,book,1 -greeting,hey what's going on?,parrot,greet,4 -yes,absolutely,original,book,1 -no,no,lambada,cancel,3 -yes,indeed,parrot,book,1 -goodbye,see you soon,original,bye,2 -yes,of course,original,book,1 -no,and i say negative,parrot,cancel,3 -date,what month today?,parrot,avail,0 -how_busy,are chicken dinners busy?,lambada,avail,0 -yes,right,parrot,book,1 -goodbye,peace,original,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -yes,absolutely correct,original,book,1 -goodbye,regards,original,bye,2 -no,no it's not,parrot,cancel,3 -yes,affirmative,original,book,1 -greeting,what's happening,original,greet,4 -calendar,what's on my calendar for 14th,parrot,avail,0 -reminder_update,remind me something,parrot,resched,5 -how_busy,how long will it take to get a seat in the restaurant,parrot,avail,0 -goodbye,great chat goodbye,lambada,bye,2 -yes,yes please,original,book,1 -thank_you,thanks!,original,bye,2 -how_busy,please tell me what's a typical table in olive garden at 8pm?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -thank_you,thanks,original,bye,2 -no,negatory?,parrot,cancel,3 -greeting,how were you?,parrot,greet,4 -greeting,how's otc?,parrot,greet,4 -calendar_update,remove jeff's birthday from my calendar on 12 may,parrot,resched,5 -yes,that is correct,original,book,1 -greeting,well hello,original,greet,4 -reminder_update,remind me,original,resched,5 -cancel_reservation,cancel my reservation for dinner tonight,original,cancel,3 -goodbye,later!,original,bye,2 -no,no that's not correct,parrot,cancel,3 -no,hell nah,original,cancel,3 -how_busy,is the pizza place crowded?,parrot,avail,0 -no,negative certainly,parrot,cancel,3 -goodbye,no problem just relax,parrot,bye,2 -greeting,heyo,original,greet,4 -no,negatory,original,cancel,3 -date,what year is it?,original,avail,0 -thank_you,thankyou,parrot,bye,2 -goodbye,goodnight,original,bye,2 -date,in 100 days?,parrot,avail,0 -reminder_update,can you remind me to do something nice in ny?,parrot,resched,5 -how_busy,tell me how much time i have to wait for a table in dibruno's restaurant,parrot,avail,0 -schedule_meeting,how are meetings scheduled?,parrot,book,1 -goodbye,regards,original,bye,2 -greeting,how ya doin,original,greet,4 -no,"no, that is my response",original,cancel,3 -how_busy,tell me the time it takes to sit at the olympia?,parrot,avail,0 -greeting,hey there fellow,original,greet,4 -thank_you,thank you for my support,parrot,bye,2 -thank_you,it's much easier with you,parrot,bye,2 -no,it's actually false,parrot,cancel,3 -greeting,whats up,original,greet,4 -no,"no, it's not",lambada,cancel,3 -goodbye,adios!,original,bye,2 -goodbye,say goodbye,parrot,bye,2 -no,no way!,original,cancel,3 -goodbye,"bye-bye, my friend",lambada,bye,2 -greeting,hey there!,original,greet,4 -greeting,how's the life?,parrot,greet,4 -goodbye,tootles,original,bye,2 -greeting,whats up?,parrot,greet,4 -no,negating,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -goodbye,later gater,original,bye,2 -goodbye,afterward,parrot,bye,2 -no,"no, that is not right",original,cancel,3 -date,a year?,parrot,avail,0 -calendar_update,the last event on my calendar,parrot,resched,5 -greeting,hiya,original,greet,4 -calendar,tell me what's on my calendar for may?,parrot,avail,0 -yes,approved,original,book,1 -goodbye,on the highway,parrot,bye,2 -goodbye,please talk soon,parrot,bye,2 -date,what is the month and day?,lambada,avail,0 -meeting_schedule,when is my meeting with frank scheduled?,lambada,avail,0 -yes,it's logical,parrot,book,1 -yes,it's logical,parrot,book,1 -greeting,wassup,original,greet,4 -greeting,hello,original,greet,4 -thank_you,appreciated,original,bye,2 -no,please disagree,lambada,cancel,3 -goodbye,later!,original,bye,2 -goodbye,bye!,original,bye,2 -date,can you give me the date in five days?,parrot,avail,0 -greeting,good evening,original,greet,4 -greeting,hey how's ot,lambada,greet,4 -greeting,hiya!,original,greet,4 -greeting,hello there ai,original,greet,4 -reminder_update,remind me of exercise,parrot,resched,5 -no,no?,parrot,cancel,3 -no,no,lambada,cancel,3 -calendar_update,i need to add a doctor appointment to my calendar for the first time,parrot,resched,5 -goodbye,bye bye,lambada,bye,2 -goodbye,fairwell,original,bye,2 -greeting,hi,original,greet,4 -yes,"yes, that's accurate",original,book,1 -yes,that's true,original,book,1 -no,no!,original,cancel,3 -goodbye,goodbye to yours,parrot,bye,2 -no,negation,parrot,cancel,3 -how_busy,how long is the wait for a table at the red lobster,lambada,avail,0 -goodbye,thanks for the talk,lambada,bye,2 -reminder_update,remind me something,parrot,resched,5 -greeting,hello,original,greet,4 -yes,yes you are correct,original,book,1 -how_busy,how long will it take to get a table at this restaurant?,parrot,avail,0 -goodbye,i'll leave,parrot,bye,2 -meeting_schedule,can you tell me the time of my meetings?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -no,naw,original,cancel,3 -greeting,salutations!,original,greet,4 -cancel_reservation,cancel my reservation for bob at the red robin,parrot,cancel,3 -yes,yeah,original,book,1 -goodbye,good luck later,parrot,bye,2 -greeting,how you're doing?,parrot,greet,4 -no,absolutely false,parrot,cancel,3 -calendar_update,i need friday on my calendar,parrot,resched,5 -greeting,what's happening?,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -date,what's the date?,parrot,avail,0 -thank_you,a million thanks,parrot,bye,2 -yes,i think you succeeded,parrot,book,1 -goodbye,peace,original,bye,2 -yes,yeah,original,book,1 -goodbye,see ya,lambada,bye,2 -no,nay,original,cancel,3 -goodbye,ill be leaving now,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -goodbye,good talk,parrot,bye,2 -no,not that,original,cancel,3 -goodbye,until next time,original,bye,2 -no,so that's no,parrot,cancel,3 -yes,yep,original,book,1 -goodbye,sign off,parrot,bye,2 -thank_you,thank you please,parrot,bye,2 -greeting,hello,original,greet,4 -meeting_schedule,wanna meet roger?,parrot,avail,0 -yes,positive,parrot,book,1 -goodbye,thank you for talking,parrot,bye,2 -yes,do that?,original,book,1 -how_busy,what time should i expect to be sitting in this restaurant?,parrot,avail,0 -goodbye,i leave now,parrot,bye,2 -thank_you,your assistance is appreciated,parrot,bye,2 -no,certainly not true,parrot,cancel,3 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -goodbye,have a good day?,original,bye,2 -goodbye,happy to talk to you,parrot,bye,2 -yes,that is correct,original,book,1 -yes,"yes, please",parrot,book,1 -goodbye,i leave now,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -goodbye,farewell!,original,bye,2 -no,nothing good,parrot,cancel,3 -yes,obviously,parrot,book,1 -greeting,hey,original,greet,4 -how_busy,can i find out the number of people who have to wait in the lines at chili's 5 pm?,lambada,avail,0 -calendar_update,eliminate dinner at tiffany's from my calendar on march 6,parrot,resched,5 -yes,it's positive,parrot,book,1 -no,it's negative,parrot,cancel,3 -yes,i agree with what you said,parrot,book,1 -no,i don't think it is correct,parrot,cancel,3 -no,not right now,original,cancel,3 -reminder_update,please remind me of my mortgage,parrot,resched,5 -thank_you,awesome thank you,parrot,bye,2 -yes,yeah,original,book,1 -yes,oh-huh,parrot,book,1 -schedule_meeting,i want to meet you in the blue room on friday,parrot,book,1 -thank_you,thanks for that!,original,bye,2 -yes,agreed,original,book,1 -schedule_meeting,are there any rooms available between 5 and 530?,parrot,book,1 -yes,a true statement,parrot,book,1 -reminder_update,make a reminder to give me a deposit of pet food,parrot,resched,5 -greeting,salutations!,original,greet,4 -no,nope,original,cancel,3 -goodbye,later,original,bye,2 -goodbye,thanks for the talk,lambada,bye,2 -no,"no, that is inaccurate",original,cancel,3 -no,not that,original,cancel,3 -yes,uh-huh,original,book,1 -greeting,hi,original,greet,4 -meeting_schedule,what's my schedule for today?,parrot,avail,0 -goodbye,go easy,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -greeting,salutations!,original,greet,4 -schedule_meeting,is there a meeting room available between 1 and 2?,parrot,book,1 -goodbye,see ya,lambada,bye,2 -goodbye,later gator!,original,bye,2 -how_busy,how busy will the cheesecake factory be around 7pm?,parrot,avail,0 -no,negatory?,parrot,cancel,3 -date,which date is next?,parrot,avail,0 -no,it is no,original,cancel,3 -calendar_update,remove the lunch with jeff from my calendar for may 3rd,parrot,resched,5 -goodbye,later gator!,original,bye,2 -cancel_reservation,i would like to cancel my reservation for 5 at hoss's steak house,parrot,cancel,3 -goodbye,great talking to you,parrot,bye,2 -how_busy,at dinner time the restaurant is crowded?,parrot,avail,0 -no,not at all,original,cancel,3 -no,that's not factual,parrot,cancel,3 -greeting,what's new?,parrot,greet,4 -yes,TRUE,original,book,1 -greeting,hi there alexa,original,greet,4 -cancel_reservation,cancellation of reservation at the restaurant,parrot,cancel,3 -thank_you,i'm grateful,original,bye,2 -no,no?,parrot,cancel,3 -greeting,hi what's up?,parrot,greet,4 -greeting,how's idy doing?,parrot,greet,4 -greeting,what's up,original,greet,4 -thank_you,your assistance is appreciated,parrot,bye,2 -greeting,hey yai,lambada,greet,4 -no,nothing,parrot,cancel,3 -no,it's not correct,parrot,cancel,3 -thank_you,awesome thank you,parrot,bye,2 -no,that's certainly false,parrot,cancel,3 -no,no!,original,cancel,3 -thank_you,thanks for helping,original,bye,2 -yes,yep,original,book,1 -yes,positive,parrot,book,1 -goodbye,my way,parrot,bye,2 -greeting,aloha,original,greet,4 -yes,sure,original,book,1 -greeting,"hello, good day",lambada,greet,4 -goodbye,farewell,original,bye,2 -yes,absolutely,original,book,1 -no,don't like that,parrot,cancel,3 -no,what is it that isn't true?,lambada,cancel,3 -goodbye,thank you goodbye,original,bye,2 -yes,yeap,original,book,1 -greeting,salutation,parrot,greet,4 -how_busy,what is the current wait time for reservation at gpc?,lambada,avail,0 -thank_you,many thank,original,bye,2 -thank_you,you answered,parrot,bye,2 -greeting,hi what's up?,parrot,greet,4 -schedule_meeting,is there any way to schedule a meeting with mark at noon?,parrot,book,1 -yes,definitely,original,book,1 -thank_you,thanks for the info,original,bye,2 -greeting,whats up,original,greet,4 -yes,yay,lambada,book,1 -yes,i believe that's true,original,book,1 -greeting,what's my feeling today?,parrot,greet,4 -yes,certainly,parrot,book,1 -how_busy,is macy's busy?,parrot,avail,0 -thank_you,thanks for that,original,bye,2 -yes,huh,parrot,book,1 -yes,positive,parrot,book,1 -yes,that would be awesome,original,book,1 -yes,yup,original,book,1 -no,that's totally wrong!,original,cancel,3 -greeting,"wake up, ai",original,greet,4 -calendar,does my calendar include a baby shower?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -calendar,what's on the 2nd march?,parrot,avail,0 -no,is a false statement?,parrot,cancel,3 -how_busy,how long will i have to wait to be seated at imovie?,parrot,avail,0 -greeting,hola,original,greet,4 -meeting_schedule,have meetings today from 5 to 7?,parrot,avail,0 -yes,definitely,original,book,1 -greeting,why hello?,original,greet,4 -yes,ok,original,book,1 -yes,uh-huh,original,book,1 -greeting,hi there alexa,original,greet,4 -yes,great,original,book,1 -how_busy,list the wait times at red lobster?,parrot,avail,0 -no,negation,parrot,cancel,3 -yes,that is affirmative,original,book,1 -how_busy,around nine ambrosio is busy,parrot,avail,0 -how_busy,how long will it take to get a seat in a chinese restaurant?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -no,invalid,original,cancel,3 -greeting,hey how's it going,original,greet,4 -yes,i know,parrot,book,1 -reminder_update,you know something?,parrot,resched,5 -yes,confirm,original,book,1 -schedule_meeting,schedule a meeting room for friday at 3pm,original,book,1 -yes,correct,original,book,1 -yes,i guess,parrot,book,1 -calendar_update,add my doctor appointment on march 25th at 3:00 to my calendar,original,resched,5 -goodbye,later gator!,original,bye,2 -reminder_update,please remind me at a later time,original,resched,5 -yes,it's logical,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -how_busy,is red lobster busy at 6pm?,original,avail,0 -no,so that's no,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -meeting_schedule,when is my meeting with dr robin scheduled for?,lambada,avail,0 -no,no good,original,cancel,3 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -goodbye,bye!,original,bye,2 -greeting,heller,original,greet,4 -goodbye,later!,original,bye,2 -no,negative definitely,parrot,cancel,3 -greeting,yo,original,greet,4 -no,nothing,parrot,cancel,3 -cancel_reservation,get the salad canceled,parrot,cancel,3 -yes,ok,original,book,1 -thank_you,thanks for cooperating,parrot,bye,2 -yes,absolutely!,original,book,1 -no,ill pass,original,cancel,3 -reminder_update,have i forgotten?,parrot,resched,5 -how_busy,is that place crowded at dinner time?,parrot,avail,0 -yes,good,parrot,book,1 -thank_you,okay thank you,parrot,bye,2 -date,what's the full date after today?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -yes,and you're right,parrot,book,1 -greeting,salutations!,original,greet,4 -goodbye,greetings,parrot,bye,2 -how_busy,does cheese cake have a long wait in the restaurant?,parrot,avail,0 -yes,this is true,lambada,book,1 -no,thanks no,parrot,cancel,3 -date,today?,parrot,avail,0 -greeting,you're all right?,parrot,greet,4 -yes,that statement was correct,original,book,1 -yes,positive,parrot,book,1 -yes,positive,original,book,1 -greeting,welcome,parrot,greet,4 -thank_you,thanks,original,bye,2 -no,erroneous,parrot,cancel,3 -reminder_update,remind me on friday to call my mom,parrot,resched,5 -reminder_update,create a reminder,original,resched,5 -yes,that is affirmative,original,book,1 -thank_you,thanks,original,bye,2 -no,i have to say no,parrot,cancel,3 -goodbye,take it easy!,original,bye,2 -yes,a fact,parrot,book,1 -goodbye,good luck,lambada,bye,2 -greeting,have you felt?,parrot,greet,4 -how_busy,tell me the time to wait for pizza?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -no,that's negative,parrot,cancel,3 -date,today is what date,original,avail,0 -schedule_meeting,will you schedule a conference room for thursday at 4:00,original,book,1 -reminder_update,a new reminder please,parrot,resched,5 -thank_you,appreciated,original,bye,2 -date,what's tomorrow's date,original,avail,0 -reminder_update,maybe a reminder?,parrot,resched,5 -greeting,yo,original,greet,4 -thank_you,your assistance is appreciated,parrot,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -calendar,please tell me what's on my calendar for april 15th?,parrot,avail,0 -no,but certainly not,parrot,cancel,3 -thank_you,gracias,original,bye,2 -greeting,what's my feeling?,parrot,greet,4 -date,in six days what date will it be?,parrot,avail,0 -yes,thats right,original,book,1 -goodbye,"that's all, bye",original,bye,2 -greeting,wassup,original,greet,4 -greeting,why hello?,original,greet,4 -yes,"yes, please",parrot,book,1 -no,FALSE,original,cancel,3 -greeting,hola,original,greet,4 -yes,"yes, please",parrot,book,1 -reminder_update,please make a new reminder,parrot,resched,5 -greeting,how's ai doing today?,parrot,greet,4 -reminder_update,may i be reminded?,parrot,resched,5 -goodbye,catch you around,original,bye,2 -greeting,heyo,original,greet,4 -thank_you,what's a good way to thank you?,parrot,bye,2 -goodbye,bye,original,bye,2 -date,please date,parrot,avail,0 -goodbye,adios!,original,bye,2 -yes,affirmitive,original,book,1 -thank_you,appreciate it,original,bye,2 -reminder_update,make me remember,parrot,resched,5 -greeting,ahoy there,lambada,greet,4 -meeting_schedule,when are my meetings today?,lambada,avail,0 -no,i prefer not,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -yes,yes,original,book,1 -no,there is no,parrot,cancel,3 -no,negative certainly,parrot,cancel,3 -meeting_schedule,when is my next meeting with jim?,parrot,avail,0 -goodbye,goodbye now,parrot,bye,2 -greeting,hiya!,original,greet,4 -yes,uh-huh,original,book,1 -date,please date,parrot,avail,0 -goodbye,i'm gone,parrot,bye,2 -cancel_reservation,i have to cancel my reservation for two nights at the red rooster,parrot,cancel,3 -yes,affirmitive,original,book,1 -how_busy,how long will the wait be for a table at panera,lambada,avail,0 -greeting,how's everything?,parrot,greet,4 -yes,yep,original,book,1 -goodbye,goodbyes,parrot,bye,2 -meeting_schedule,tell me when i'll meet ole?,parrot,avail,0 -thank_you,your assistance is appreciated,parrot,bye,2 -greeting,heyo,original,greet,4 -goodbye,we chatted well,parrot,bye,2 -no,that's no,parrot,cancel,3 -greeting,hey yai,lambada,greet,4 -schedule_meeting,or register for a meeting on wednesday,parrot,book,1 -greeting,hi how're things going,lambada,greet,4 -how_busy,can you tell me if the busy olive garden is around 9pm?,parrot,avail,0 -how_busy,how long does it take to sit at carrabas,parrot,avail,0 -date,what's the date tomorrow? '',parrot,avail,0 -no,nothing,parrot,cancel,3 -greeting,whats new,lambada,greet,4 -yes,huh,parrot,book,1 -no,negating,parrot,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -goodbye,i'm glad you had a good chat,parrot,bye,2 -goodbye,buhbye now,lambada,bye,2 -goodbye,good-bye,parrot,bye,2 -greeting,hello,original,greet,4 -calendar,what does my schedule look like for april 1?,original,avail,0 -thank_you,i appreciate my help!,original,bye,2 -goodbye,farewell!,original,bye,2 -thank_you,thank ya!,original,bye,2 -greeting,hiya,original,greet,4 -yes,oh-huh,parrot,book,1 -yes,is true,parrot,book,1 -reminder_update,please remember to pay my tax,parrot,resched,5 -greeting,"hello, friend",original,greet,4 -goodbye,sayonara,original,bye,2 -no,that's the wrong answer,parrot,cancel,3 -meeting_schedule,do i have to meet with david?,parrot,avail,0 -yes,affirmitive,original,book,1 -calendar,what's tuesday on my calendar now?,parrot,avail,0 -thank_you,thank you for helping me,original,bye,2 -greeting,what's new,lambada,greet,4 -thank_you,thanks!,original,bye,2 -greeting,and how're you doing,parrot,greet,4 -thank_you,i'm grateful,original,bye,2 -goodbye,i'll be out on the highway,lambada,bye,2 -greeting,salutations,parrot,greet,4 -cancel_reservation,what's wrong with my reservation at the red robin'?,parrot,cancel,3 -greeting,how's my day going?,parrot,greet,4 -no,erroneous,parrot,cancel,3 -calendar_update,erase the event on friday from my calendar,lambada,resched,5 -thank_you,the best,parrot,bye,2 -how_busy,tell me the average wait time for a meal in gustos?,parrot,avail,0 -thank_you,thank you for the money,parrot,bye,2 -yes,i guess,parrot,book,1 -no,that is wrong,original,cancel,3 -calendar,what's happening on march 15th,lambada,avail,0 -date,please explain today,parrot,avail,0 -greeting,hola,original,greet,4 -yes,huh,parrot,book,1 -goodbye,good talk,parrot,bye,2 -yes,yep,original,book,1 -greeting,aloha,original,greet,4 -yes,yeap,original,book,1 -yes,ya,original,book,1 -date,what today?,parrot,avail,0 -no,so this is a no,lambada,cancel,3 -meeting_schedule,share my schedule of meetings with me,parrot,avail,0 -cancel_reservation,cancel the table i reserved at the restaurant,lambada,cancel,3 -yes,affirmitive,original,book,1 -meeting_schedule,i have any meetings today,lambada,avail,0 -no,that's erroneous,parrot,cancel,3 -goodbye,i'll leave,parrot,bye,2 -yes,what's that going to be,lambada,book,1 -yes,absolutely,original,book,1 -greeting,so how is everything,original,greet,4 -yes,i just said it,parrot,book,1 -goodbye,on the highway,parrot,bye,2 -greeting,heller,original,greet,4 -greeting,are you well?,original,greet,4 -yes,confirm,original,book,1 -no,not correct,parrot,cancel,3 -yes,perfect,parrot,book,1 -no,invalid,original,cancel,3 -goodbye,sayonara ,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -thank_you,awesome thanks,parrot,bye,2 -yes,great,original,book,1 -calendar,let me know if there are scheduled events for march 15th,parrot,avail,0 -goodbye,goodbye to your,lambada,bye,2 -how_busy,how long can i expect to wait for a table at macaroni grill?,parrot,avail,0 -reminder_update,i need to be informed to clean the room,parrot,resched,5 -meeting_schedule,what are my meetings today?,original,avail,0 -reminder_update,can you make a reminder to pay my bills?,lambada,resched,5 -greeting,how is everything?,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -how_busy,is the restaurant busy at night?,lambada,avail,0 -yes,positive,parrot,book,1 -calendar,let me know if there are any scheduled events for march 15,parrot,avail,0 -thank_you,appreciate the help,original,bye,2 -goodbye,"syonara, ai device!",original,bye,2 -how_busy,how busy is the olive garden at dinner time,parrot,avail,0 -date,tell me what the date will be in 5 days?,original,avail,0 -yes,positive,original,book,1 -goodbye,see ya,lambada,bye,2 -how_busy,wait how long?,parrot,avail,0 -yes,affirmative,original,book,1 -greeting,heller,original,greet,4 -date,tomorrow is the calendar,parrot,avail,0 -thank_you,well done,parrot,bye,2 -yes,huh,parrot,book,1 -reminder_update,let me be reminded?,parrot,resched,5 -goodbye,will leave now,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -yes,correct,original,book,1 -yes,it is definitely affirmative,original,book,1 -how_busy,how long would the wait be at the pizza place,lambada,avail,0 -greeting,hi how's it going?,parrot,greet,4 -yes,you got it,parrot,book,1 -cancel_reservation,cancellation of dinner reservation,parrot,cancel,3 -no,naw,parrot,cancel,3 -thank_you,many thank,original,bye,2 -yes,so it's checked,parrot,book,1 -thank_you,"oh, thanks",original,bye,2 -no,nothing,parrot,cancel,3 -how_busy,can you tell me how long will there be wait in order to get a table at red lobster?,lambada,avail,0 -goodbye,just relax,parrot,bye,2 -yes,ya,original,book,1 -goodbye,good talking to you,lambada,bye,2 -goodbye,i'm saying goodbye now,original,bye,2 -goodbye,goodbye to you,original,bye,2 -cancel_reservation,scrap the dinner reservation,parrot,cancel,3 -yes,that is true,lambada,book,1 -greeting,how's ai doing today?,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -meeting_schedule,do i have meetings today?,parrot,avail,0 -schedule_meeting,i need a meeting scheduled for 3:00 on wednesday,lambada,book,1 -yes,definitely,original,book,1 -no,would be a lie,parrot,cancel,3 -meeting_schedule,when's my meeting?,parrot,avail,0 -greeting,hi,original,greet,4 -thank_you,thank you please,parrot,bye,2 -no,naw,original,cancel,3 -schedule_meeting,i need to go through a process to schedule a meeting,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -no,nay,original,cancel,3 -greeting,how is my situation?,parrot,greet,4 -date,what year is it?,original,avail,0 -calendar_update,remove event from calendar,lambada,resched,5 -yes,yeah yeah,lambada,book,1 -no,no!,original,cancel,3 -yes,i guess yes,parrot,book,1 -greeting,whats up?,parrot,greet,4 -no,erroneous,parrot,cancel,3 -how_busy,how busy will the macy's be?,parrot,avail,0 -no,not right,parrot,cancel,3 -calendar,can you tell me what is on my calendar for march 8th?,parrot,avail,0 -greeting,how are you today,original,greet,4 -goodbye,adios,original,bye,2 -yes,perfect,parrot,book,1 -no,it's not right,parrot,cancel,3 -goodbye,i need to go,lambada,bye,2 -no,nay,original,cancel,3 -goodbye,buhbye now,lambada,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -yes,10-Apr,original,book,1 -goodbye,goodbye,original,bye,2 -yes,i say yes,lambada,book,1 -date,what's my date for tomorrow?,parrot,avail,0 -no,certainly not true,parrot,cancel,3 -greeting,hi there alexa,original,greet,4 -greeting,ai how you're doing,lambada,greet,4 -yes,confirmed,original,book,1 -thank_you,thanks a million,original,bye,2 -greeting,hi,original,greet,4 -cancel_reservation,you can cancel my booking,parrot,cancel,3 -no,please disagree,lambada,cancel,3 -thank_you,i appreciate the help,original,bye,2 -yes,so it works,parrot,book,1 -goodbye,i enjoyed talking to you,original,bye,2 -calendar,what's on my calendar for march 2?,parrot,avail,0 -no,there is no,parrot,cancel,3 -yes,TRUE,lambada,book,1 -no,that isn't true,lambada,cancel,3 -yes,yes please,original,book,1 -thank_you,good job,lambada,bye,2 -calendar,i want to check my calendar for saturday?,parrot,avail,0 -calendar_update,take the appointment of pat off my calendar,parrot,resched,5 -how_busy,how long will it take for me to be seated at the restaurant,lambada,avail,0 -greeting,"hey, how are you",original,greet,4 -greeting,good evening,original,greet,4 -greeting,hiya!,original,greet,4 -thank_you,thank you kindly,original,bye,2 -goodbye,goodbye,original,bye,2 -no,nay,original,cancel,3 -how_busy,how busy is mishawaka?,parrot,avail,0 -how_busy,is the wait in the cheese cake factory long?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -yes,perfect,parrot,book,1 -no,no,lambada,cancel,3 -no,nope,original,cancel,3 -calendar,please read my appointments for april 2,parrot,avail,0 -goodbye,next time i'll talk to you,parrot,bye,2 -no,no!,original,cancel,3 -greeting,how've you been?,parrot,greet,4 -thank_you,special thanks to you,original,bye,2 -yes,positive,original,book,1 -reminder_update,can i set a reminder?,original,resched,5 -reminder_update,make sure you remind yourself to book a flight to america,parrot,resched,5 -thank_you,gracias,original,bye,2 -no,yes it's false,parrot,cancel,3 -no,no that's not correct,parrot,cancel,3 -yes,affirmitive,original,book,1 -how_busy,what will it be like for chili at 8pm,parrot,avail,0 -yes,indeed,parrot,book,1 -date,what will be the date after getting married?,parrot,avail,0 -no,the answer is false,original,cancel,3 -greeting,hiya!,original,greet,4 -no,negative,original,cancel,3 -greeting,"hello, hello, hello",lambada,greet,4 -yes,that appears true,original,book,1 -yes,accept,parrot,book,1 -how_busy,how long will the wait be at noon if we went to nagomi,original,avail,0 -goodbye,my friend,parrot,bye,2 -greeting,hola,original,greet,4 -no,no that's wrong,original,cancel,3 -greeting,is everything okay today?,parrot,greet,4 -reminder_update,remind me to look at the steak,parrot,resched,5 -yes,TRUE,original,book,1 -yes,"yes, that's correct",original,book,1 -goodbye,bye now,original,bye,2 -schedule_meeting,i would like to schedule a meeting,lambada,book,1 -no,this isn't true,parrot,cancel,3 -thank_you,thanks,original,bye,2 -date,please date,parrot,avail,0 -date,what's the date next week?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -no,naw,original,cancel,3 -date,what date?,parrot,avail,0 -thank_you,the best,parrot,bye,2 -yes,facts,original,book,1 -goodbye,see ya,lambada,bye,2 -yes,okay,original,book,1 -goodbye,on the road,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -no,invalid,original,cancel,3 -how_busy,tell me how busy the cheesecake factory will be around 6pm?,parrot,avail,0 -greeting,how's my current situation?,parrot,greet,4 -meeting_schedule,when is my next meeting with kevin scheduled to start?,parrot,avail,0 -greeting,how's everything,original,greet,4 -reminder_update,set up a reminder to pay my rent,lambada,resched,5 -goodbye,bye bye,lambada,bye,2 -greeting,hello how is it going,lambada,greet,4 -thank_you,"great, thanks!",original,bye,2 -yes,"yes, that's accurate",original,book,1 -calendar_update,i want you to cancel the event on may 11,lambada,resched,5 -greeting,are you good?,original,greet,4 -date,tell me the year?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -no,don't agree,parrot,cancel,3 -yes,it is a yes from me,parrot,book,1 -thank_you,thanks for the update,lambada,bye,2 -date,tell me the date for today,parrot,avail,0 -greeting,yo how is this going?,parrot,greet,4 -goodbye,goodbyes,parrot,bye,2 -goodbye,goodbye to you,original,bye,2 -goodbye,sign off,parrot,bye,2 -goodbye,buhbye now,lambada,bye,2 -no,i don't think so,original,cancel,3 -greeting,hello there!,original,greet,4 -goodbye,good-bye,parrot,bye,2 -thank_you,my sincere thanks,parrot,bye,2 -no,that's negative,parrot,cancel,3 -reminder_update,please remember me later,parrot,resched,5 -greeting,how have you been?,parrot,greet,4 -goodbye,sign off,parrot,bye,2 -no,false sure,parrot,cancel,3 -date,give me a date today?,parrot,avail,0 -calendar_update,please keep april 2 open on my calendar,parrot,resched,5 -greeting,"hello, good day",lambada,greet,4 -reminder_update,can you remember me later,parrot,resched,5 -calendar,do i have anything planned for january 1st?,parrot,avail,0 -greeting,wassup,original,greet,4 -thank_you,really great!,original,bye,2 -no,is it a lie?,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -greeting,hiya,original,greet,4 -reminder_update,come on please,parrot,resched,5 -goodbye,i was happy to talk to you,parrot,bye,2 -yes,great,original,book,1 -no,so that's no,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -goodbye,sayonara,original,bye,2 -yes,certainly true,parrot,book,1 -goodbye,say goodbye,parrot,bye,2 -how_busy,how long will the wait be,lambada,avail,0 -thank_you,youre a doll,original,bye,2 -no,yes that's false,lambada,cancel,3 -greeting,ahoy,lambada,greet,4 -goodbye,nice to see you,original,bye,2 -reminder_update,remind me of exercise,parrot,resched,5 -greeting,how's everything?,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -yes,good,parrot,book,1 -how_busy,does chili have a lot of people sitting around between five and seven?,parrot,avail,0 -goodbye,", goodbye",lambada,bye,2 -yes,it's true,original,book,1 -no,nay,original,cancel,3 -date,what's the date?,parrot,avail,0 -greeting,how is it going?,parrot,greet,4 -greeting,what i feel?,parrot,greet,4 -meeting_schedule,do you have meetings from 2 to 5 pm?,parrot,avail,0 -no,that's inaccurate,original,cancel,3 -greeting,"hey, ai",original,greet,4 -yes,affirmative,original,book,1 -date,list the current date?,parrot,avail,0 -how_busy,how busy will the macy's be,lambada,avail,0 -no,negative,original,cancel,3 -meeting_schedule,what meetings do i have today between 1 pm and 3 pm?,lambada,avail,0 -yes,sure thing,original,book,1 -greeting,"hey, ai",original,greet,4 -thank_you,thank you!,original,bye,2 -date,which date today?,parrot,avail,0 -no,thats a negative,original,cancel,3 -reminder_update,make me a reminder,lambada,resched,5 -date,what's the day today?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -schedule_meeting,please tell me if there are meeting rooms available between 9:00 am and 11:00 am,original,book,1 -thank_you,okay thank you,parrot,bye,2 -thank_you,"great, thanks!",original,bye,2 -yes,"yes, please",parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,oh-huh,parrot,book,1 -greeting,hello there,original,greet,4 -thank_you,thank ya!,original,bye,2 -thank_you,"oh, thanks",original,bye,2 -goodbye,buhbye,original,bye,2 -goodbye,i enjoyed our talk,parrot,bye,2 -yes,uh huh,original,book,1 -thank_you,appreciated,original,bye,2 -goodbye,buhbye,original,bye,2 -date,is today the day?,parrot,avail,0 -thank_you,i want to thank you for your time,parrot,bye,2 -yes,that is true,lambada,book,1 -yes,okay,original,book,1 -date,what is tomorrow?,parrot,avail,0 -goodbye,later!,original,bye,2 -no,that's a negatory,original,cancel,3 -goodbye,later!,original,bye,2 -no,i'll pass,original,cancel,3 -date,is tomorrow's date?,parrot,avail,0 -goodbye,goodbyes soon,parrot,bye,2 -date,tell me what day?,parrot,avail,0 -greeting,what's new?,parrot,greet,4 -yes,TRUE,original,book,1 -date,what today?,parrot,avail,0 -how_busy,how busy is chili around 9?,parrot,avail,0 -no,that's very negative,parrot,cancel,3 -goodbye,nice talk,lambada,bye,2 -goodbye,sayonara,original,bye,2 -calendar_update,remove all events from my calendar on friday,parrot,resched,5 -how_busy,list the seating hours in the restaurant?,parrot,avail,0 -greeting,hola!,original,greet,4 -no,not really,original,cancel,3 -goodbye,later,original,bye,2 -greeting,why hello?,original,greet,4 -goodbye,i enjoy our chat,lambada,bye,2 -yes,approved,original,book,1 -yes,indeed,original,book,1 -yes,yeap,original,book,1 -reminder_update,remember to clean up the basement,parrot,resched,5 -reminder_update,remember to write a letter,parrot,resched,5 -no,it's actually false,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -greeting,greetings to you,original,greet,4 -no,that's certainly false,parrot,cancel,3 -no,naw,original,cancel,3 -greeting,hiya,original,greet,4 -yes,it's true,original,book,1 -calendar,is there anything on my calendar for january 9th?,parrot,avail,0 -no,nothing good,parrot,cancel,3 -yes,absolutely!,original,book,1 -no,nada,original,cancel,3 -yes,TRUE,original,book,1 -how_busy,how long will it take to get a table at st jerome?,parrot,avail,0 -greeting,what's happened?,parrot,greet,4 -goodbye,as regards,parrot,bye,2 -goodbye,bye,original,bye,2 -greeting,bonjour,original,greet,4 -yes,it's true for sure,parrot,book,1 -goodbye,i'll leave,parrot,bye,2 -no,please disagree,lambada,cancel,3 -yes,yay,lambada,book,1 -greeting,have you felt?,parrot,greet,4 -yes,i want to prove the truth,parrot,book,1 -thank_you,"nice, excellent!",original,bye,2 -yes,definitely yes,parrot,book,1 -greeting,heyo,original,greet,4 -no,negatory,original,cancel,3 -how_busy,how busy is the olive garden at 6 pm,lambada,avail,0 -goodbye,sayonara,original,bye,2 -greeting,how am i a good student?,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -greeting,salutations!,original,greet,4 -meeting_schedule,what time do i meet robert at?,parrot,avail,0 -calendar,is there anything planned for tuesday?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -greeting,wassup,original,greet,4 -thank_you,and i'm so happy you helped me,parrot,bye,2 -goodbye,i have to go but it was nice to talk again,parrot,bye,2 -date,what day?,parrot,avail,0 -no,no it's not correct,parrot,cancel,3 -greeting,"hello, what are you doing",lambada,greet,4 -how_busy,is tio's busy at 8:30?,lambada,avail,0 -greeting,aho,parrot,greet,4 -date,date tomorrow?,parrot,avail,0 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -meeting_schedule,what time is my meeting with robin scheduled?,parrot,avail,0 -how_busy,is the chili's busy at 5 pm?,lambada,avail,0 -goodbye,see ya!,original,bye,2 -thank_you,appreciated,original,bye,2 -greeting,how's life?,parrot,greet,4 -goodbye,farewell!,original,bye,2 -reminder_update,i need to be reminded to do something,original,resched,5 -goodbye,goodbye goodbye,parrot,bye,2 -no,i believe it's false,parrot,cancel,3 -calendar,list the events on my calendar for march 6th?,parrot,avail,0 -how_busy,tell me how busy imato will be for dinner around 6:30?,lambada,avail,0 -thank_you,good job,lambada,bye,2 -thank_you,thanks for the help,original,bye,2 -greeting,"hello, what's up",original,greet,4 -yes,i want that,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -no,not happening,original,cancel,3 -yes,confirm,original,book,1 -yes,i say yes,lambada,book,1 -greeting,heyo,original,greet,4 -yes,i'd say that's true,parrot,book,1 -no,but it's false,parrot,cancel,3 -yes,agreed,original,book,1 -no,so that's no,parrot,cancel,3 -thank_you,i'm really grateful,parrot,bye,2 -yes,correct,original,book,1 -no,it's a false,lambada,cancel,3 -greeting,wassup,original,greet,4 -yes,perfect,parrot,book,1 -greeting,what's happening,original,greet,4 -yes,seems true,parrot,book,1 -date,what year?,parrot,avail,0 -thank_you,gracias,original,bye,2 -no,nope,original,cancel,3 -goodbye,thank you for talking,parrot,bye,2 -goodbye,catch you around,original,bye,2 -yes,sure thing,original,book,1 -goodbye,adios,original,bye,2 -meeting_schedule,what scheduled meetings do i have?,parrot,avail,0 -how_busy,how busy will red robin be around 6:30pm,lambada,avail,0 -yes,affirmative,original,book,1 -reminder_update,so i don't forget the baby shower this weekend ,parrot,resched,5 -greeting,why hello?,original,greet,4 -date,what date?,parrot,avail,0 -no,no?,parrot,cancel,3 -date,today is the date?,parrot,avail,0 -no,no way!,original,cancel,3 -goodbye,i'll see you around,lambada,bye,2 -no,negatory,original,cancel,3 -greeting,salutation,parrot,greet,4 -no,no that isn't right,original,cancel,3 -calendar,did i set an appointment in my calendar?,parrot,avail,0 -no,no good,original,cancel,3 -greeting,hey there!,original,greet,4 -date,date tomorrow,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -date,when is it going to be in 10 days?,parrot,avail,0 -goodbye,so glad you're talking to me,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -thank_you,i appreciate your answer,parrot,bye,2 -no,not really,original,cancel,3 -yes,right,parrot,book,1 -yes,perfect,parrot,book,1 -yes,yay,lambada,book,1 -yes,certainly,parrot,book,1 -calendar_update,delete my golf tournament event from morrow,parrot,resched,5 -date,will it be 10 days?,parrot,avail,0 -greeting,are you okay?,original,greet,4 -no,that's definitely false,original,cancel,3 -greeting,aho,parrot,greet,4 -no,it's actually a lie,parrot,cancel,3 -yes,yeah,original,book,1 -date,which day is next?,parrot,avail,0 -yes,yes please,original,book,1 -yes,sure,original,book,1 -greeting,ahoy,lambada,greet,4 -thank_you,thanks for the information you provided,lambada,bye,2 -how_busy,how long would i have to wait for a table at macaroni grill,lambada,avail,0 -yes,sure,original,book,1 -greeting,what's happening?,parrot,greet,4 -greeting,yo,original,greet,4 -how_busy,how long will i have to wait if i go to chili's?,parrot,avail,0 -no,that isn't correct,original,cancel,3 -yes,yep,original,book,1 -calendar,tell me what's on my calendar for the 28th of march?,lambada,avail,0 -goodbye,buhbye,original,bye,2 -no,so that's no,parrot,cancel,3 -goodbye,regards,original,bye,2 -how_busy,what's the wait time at san teodoros?,parrot,avail,0 -goodbye,goodbye for now,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -how_busy,how busy is this place,lambada,avail,0 -yes,certainly,parrot,book,1 -goodbye,goodbyes soon,parrot,bye,2 -yes,TRUE,lambada,book,1 -goodbye,later then,lambada,bye,2 -yes,right,parrot,book,1 -no,negatory,original,cancel,3 -thank_you,you're special thanks,parrot,bye,2 -yes,the truth is true,lambada,book,1 -goodbye,bye bye,lambada,bye,2 -how_busy,can you tell me what the wait is like at cracker barrel?,parrot,avail,0 -goodbye,peace,original,bye,2 -yes,it makes sense,parrot,book,1 -goodbye,come on soon,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -thank_you,thanks again,original,bye,2 -no,so that's no,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -greeting,good to hear what's going on,parrot,greet,4 -greeting,how's life treating you?,parrot,greet,4 -no,that's inaccurate,original,cancel,3 -date,what's the date,original,avail,0 -goodbye,afterward,parrot,bye,2 -meeting_schedule,what's my meeting calendar?,parrot,avail,0 -meeting_schedule,what are my meeting hours today?,parrot,avail,0 -yes,"yes, please",original,book,1 -yes,facts,original,book,1 -date,please date,parrot,avail,0 -yes,absolutely,original,book,1 -greeting,hi,original,greet,4 -no,it is false,original,cancel,3 -goodbye,need to talk with you,parrot,bye,2 -greeting,how's life treating you,parrot,greet,4 -yes,okay,original,book,1 -yes,exactly right,original,book,1 -date,when will the date be?,lambada,avail,0 -goodbye,i'm out,parrot,bye,2 -reminder_update,remind yourself to go shopping,parrot,resched,5 -how_busy,how long is the wait time at natuzzis,lambada,avail,0 -yes,oh-huh,parrot,book,1 -how_busy,how many times will i be able to get a table in the restaurant?,parrot,avail,0 -no,that's not the answer,parrot,cancel,3 -goodbye,my way,parrot,bye,2 -no,invalid,original,cancel,3 -greeting,hows are ya,original,greet,4 -how_busy,how long is a table in the restaurant?,parrot,avail,0 -greeting,how ya doin,original,greet,4 -no,negating,parrot,cancel,3 -meeting_schedule,what's the meeting time for today,lambada,avail,0 -greeting,how goes it,original,greet,4 -thank_you,so grateful,parrot,bye,2 -schedule_meeting,how do i book a meeting?,parrot,book,1 -yes,yes please,original,book,1 -no,don't like that no,parrot,cancel,3 -yes,"correct, that's true",original,book,1 -date,what today?,parrot,avail,0 -no,naw,original,cancel,3 -yes,indeed,original,book,1 -reminder_update,make a reminder i have to ask about my job?,parrot,resched,5 -goodbye,regards,original,bye,2 -goodbye,and then goodbye,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -thank_you,thanks,original,bye,2 -goodbye,goodbye now,parrot,bye,2 -yes,great,original,book,1 -no,the information is wrong,original,cancel,3 -greeting,whats up?,parrot,greet,4 -no,so that's no,parrot,cancel,3 -how_busy,tell me how busy the olive garden is at 8pm?,parrot,avail,0 -thank_you,i'm glad you responded,parrot,bye,2 -no,that's not right?,parrot,cancel,3 -calendar_update,please remove concerts from my calendar on march 19 2019,parrot,resched,5 -greeting,hiya!,original,greet,4 -yes,yeah,original,book,1 -yes,confirm,original,book,1 -goodbye,bye bye,lambada,bye,2 -yes,affirmative,original,book,1 -goodbye,i'm out of this,parrot,bye,2 -greeting,is everything going okay?,original,greet,4 -greeting,is everything ok today?,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,would be no?,parrot,cancel,3 -no,that information is false,lambada,cancel,3 -goodbye,talk later,original,bye,2 -thank_you,i'm really grateful for my help,parrot,bye,2 -meeting_schedule,please list my meetings for today from 8:00 am to 2:00 pm,original,avail,0 -yes,good yes,lambada,book,1 -goodbye,see you later!,original,bye,2 -no,nope not it,original,cancel,3 -no,nothing,parrot,cancel,3 -no,that's overwhelmingly negative,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -thank_you,i appeciate it,parrot,bye,2 -thank_you,thanks very much for your answer,parrot,bye,2 -date,what today?,parrot,avail,0 -goodbye,later!,original,bye,2 -greeting,how is my ai doing?,parrot,greet,4 -yes,let's do that,parrot,book,1 -no,negatory?,parrot,cancel,3 -greeting,hello there,original,greet,4 -yes,accepted,original,book,1 -yes,not false,parrot,book,1 -yes,positive,parrot,book,1 -date,today?,parrot,avail,0 -reminder_update,make me a reminder,lambada,resched,5 -goodbye,later goodbye,parrot,bye,2 -yes,confirmed,original,book,1 -goodbye,bye,original,bye,2 -goodbye,a good conversation,parrot,bye,2 -meeting_schedule,what time do we meet john?,parrot,avail,0 -how_busy,should chili's be busy at 7:30 pm,lambada,avail,0 -goodbye,good luck,lambada,bye,2 -no,naw,original,cancel,3 -yes,accept,parrot,book,1 -thank_you,appreciated,original,bye,2 -how_busy,how busy is the restaurant around dinner time,lambada,avail,0 -yes,certainly,parrot,book,1 -reminder_update,remind me of something,parrot,resched,5 -how_busy,what's the typical wait time in this restaurant?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -yes,obviously,parrot,book,1 -schedule_meeting,need a meeting room,parrot,book,1 -thank_you,thank you for everything,parrot,bye,2 -goodbye,adios!,original,bye,2 -date,date tomorrow,parrot,avail,0 -goodbye,good call,parrot,bye,2 -yes,my answer is yes,parrot,book,1 -goodbye,adios,original,bye,2 -greeting,heyo,original,greet,4 -thank_you,you answered,parrot,bye,2 -yes,yay,lambada,book,1 -yes,right,parrot,book,1 -goodbye,"nice talk, goodbye",lambada,bye,2 -thank_you,thanks!,original,bye,2 -yes,it's logical,parrot,book,1 -greeting,well hi there,original,greet,4 -goodbye,goodbye now,parrot,bye,2 -yes,positive,original,book,1 -yes,that would be true,original,book,1 -no,nada,original,cancel,3 -goodbye,goodbye helpful ai device,parrot,bye,2 -yes,yeah that's right,lambada,book,1 -goodbye,my friend,parrot,bye,2 -no,no?,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -yes,it seems true,parrot,book,1 -how_busy,how long will i wait to be seated in the cheese cake factory?,parrot,avail,0 -how_busy,how busy is red robin at noon?,parrot,avail,0 -greeting,what's happened?,parrot,greet,4 -no,but it's wrong,parrot,cancel,3 -greeting,hello bs,parrot,greet,4 -yes,right,parrot,book,1 -thank_you,thank you for coming,parrot,bye,2 -calendar_update,all events on my calendar with the word girlfriend in it,parrot,resched,5 -greeting,whats new,lambada,greet,4 -thank_you,my sincere gratitude,parrot,bye,2 -thank_you,good job,lambada,bye,2 -goodbye,later good luck,parrot,bye,2 -goodbye,"great talk, thanks",original,bye,2 -calendar,bowling on my calendar?,parrot,avail,0 -greeting,heyo,original,greet,4 -yes,yay,lambada,book,1 -goodbye,"thanks, bye",original,bye,2 -thank_you,thanks for responding,parrot,bye,2 -goodbye,goodbye now,parrot,bye,2 -goodbye,sayonara,original,bye,2 -yes,is true,parrot,book,1 -thank_you,thankyou,parrot,bye,2 -greeting,hello,original,greet,4 -meeting_schedule,have any meetings with dan?,parrot,avail,0 -goodbye,signing off,original,bye,2 -date,what date is it?,original,avail,0 -yes,uh huh,original,book,1 -thank_you,many thank,original,bye,2 -schedule_meeting,reserve a room for a meeting at 11 am on wednesday,lambada,book,1 -no,no?,parrot,cancel,3 -greeting,how's my doing?,parrot,greet,4 -greeting,how are things?,parrot,greet,4 -greeting,hey,original,greet,4 -yes,right,parrot,book,1 -thank_you,so grateful,parrot,bye,2 -calendar,can you tell me the calendar for march 30?,parrot,avail,0 -no,it's absolutely false,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -yes,positive,original,book,1 -goodbye,peace,original,bye,2 -goodbye,have fun?,lambada,bye,2 -goodbye,"thanks, bye",original,bye,2 -no,that's false,original,cancel,3 -yes,perfect,parrot,book,1 -goodbye,"thanks, bye",original,bye,2 -yes,you got it,parrot,book,1 -no,this is false,parrot,cancel,3 -reminder_update,remind me to write later,lambada,resched,5 -goodbye,bye,original,bye,2 -goodbye,i'm out,parrot,bye,2 -no,i don't think that is right,lambada,cancel,3 -yes,oh-huh,parrot,book,1 -yes,agreed,original,book,1 -goodbye,glad we can talk,parrot,bye,2 -yes,yes please,original,book,1 -how_busy,what time you expect to wait for a place in chili's?,parrot,avail,0 -calendar,what's the tuesday calendar?,parrot,avail,0 -date,what day?,parrot,avail,0 -yes,uh-huh,original,book,1 -yes,it seems true,parrot,book,1 -how_busy,how busy is the restaurant at 7pm?,parrot,avail,0 -thank_you,thank you for my consideration,parrot,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -yes,yay,lambada,book,1 -goodbye,greetings,parrot,bye,2 -greeting,what's up?,parrot,greet,4 -thank_you,thank you for my support,parrot,bye,2 -thank_you,awesome thanks,parrot,bye,2 -goodbye,adios ai,original,bye,2 -how_busy,how busy will the lobster be at noon?,parrot,avail,0 -goodbye,tootles,original,bye,2 -thank_you,thanks!,original,bye,2 -no,don't agree,parrot,cancel,3 -yes,affirmitive,original,book,1 -greeting,please tell me how you're feeling,parrot,greet,4 -yes,that seems true,original,book,1 -no,definitely not,original,cancel,3 -calendar_update,please don't have a party on my calendar,parrot,resched,5 -greeting,how's idy?,parrot,greet,4 -greeting,how's the world?,parrot,greet,4 -yes,you got it,parrot,book,1 -no,i don't agree,parrot,cancel,3 -reminder_update,please remind me to clean the living room,parrot,resched,5 -yes,ya,original,book,1 -goodbye,peace out,original,bye,2 -greeting,bonjour,original,greet,4 -date,what is that day?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -cancel_reservation,karla doesn't want her olive garden reservation anymore,parrot,cancel,3 -greeting,"hello, friend",original,greet,4 -calendar_update,to my calendar i have to put a date to get dressed,parrot,resched,5 -goodbye,see ya,lambada,bye,2 -yes,"correct, that's true",original,book,1 -no,i'm saying no,parrot,cancel,3 -thank_you,i'm so glad you helped me!,original,bye,2 -greeting,how ya doin,original,greet,4 -greeting,hola!,original,greet,4 -yes,yes you are right,original,book,1 -no,that's incorrect!,original,cancel,3 -no,that's untrue,parrot,cancel,3 -calendar_update,i need buy a birthday gift for sue taken off my calendar it is on monday or tuesday last week,original,resched,5 -greeting,hi there,original,greet,4 -yes,ok,original,book,1 -goodbye,i'm gone,parrot,bye,2 -goodbye,later gater,original,bye,2 -yes,all right,original,book,1 -thank_you,i'm thankful for you,parrot,bye,2 -no,FALSE,lambada,cancel,3 -yes,yes that's it,original,book,1 -cancel_reservation,i don't need a reservation,parrot,cancel,3 -thank_you,i'm happy you've helped me,parrot,bye,2 -greeting,hey how are you doing,lambada,greet,4 -no,"please, no",original,cancel,3 -thank_you,thank you for making my life easier,parrot,bye,2 -no,thanks no,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -no,false sure,parrot,cancel,3 -yes,affirmative,original,book,1 -no,i believe it's not correct,parrot,cancel,3 -yes,yep,original,book,1 -greeting,how was my day?,parrot,greet,4 -no,it's no,parrot,cancel,3 -no,no thanks,original,cancel,3 -greeting,good morning,parrot,greet,4 -no,no?,parrot,cancel,3 -yes,that would be great,original,book,1 -yes,i believe you're right,parrot,book,1 -goodbye,i have to talk to you,parrot,bye,2 -no,naw,original,cancel,3 -yes,yay,lambada,book,1 -no,that's a negative,original,cancel,3 -yes,so it's checked,parrot,book,1 -schedule_meeting,let's schedule a meeting,lambada,book,1 -goodbye,farewell,original,bye,2 -no,that seems wrong,lambada,cancel,3 -date,what is current day?,parrot,avail,0 -cancel_reservation,cancel the table i reserved in the restaurant,parrot,cancel,3 -yes,it's my response to you,parrot,book,1 -greeting,whats new,lambada,greet,4 -thank_you,appreciated,original,bye,2 -goodbye,fairwell,original,bye,2 -yes,"yep, that's correct",lambada,book,1 -no,so that's no,parrot,cancel,3 -no,not that,original,cancel,3 -no,nothing,parrot,cancel,3 -greeting,hola,original,greet,4 -greeting,hello,original,greet,4 -yes,yup,original,book,1 -goodbye,ok good chatting goodbye,original,bye,2 -goodbye,adios,original,bye,2 -goodbye,i'm out,parrot,bye,2 -yes,perfect,parrot,book,1 -yes,is true,parrot,book,1 -yes,i know,parrot,book,1 -how_busy,how busy is iman at 7 pm,lambada,avail,0 -no,it's a negation,parrot,cancel,3 -no,i didn't mean that,parrot,cancel,3 -greeting,hey it's up,lambada,greet,4 -yes,and you're right,parrot,book,1 -yes,definitely,original,book,1 -yes,certainly,parrot,book,1 -goodbye,see ya,lambada,bye,2 -goodbye,peace,original,bye,2 -reminder_update,may i be reminded?,parrot,resched,5 -calendar_update,clear my calendar for the day of thursday,parrot,resched,5 -yes,ok,original,book,1 -thank_you,well done,parrot,bye,2 -yes,ok,original,book,1 -thank_you,thanks very much,parrot,bye,2 -thank_you,thanks again!,original,bye,2 -thank_you,thanks again!,original,bye,2 -schedule_meeting,can you sign me up for a meeting on friday at 10 am,parrot,book,1 -date,what's the full date after this?,parrot,avail,0 -thank_you,you've helped,parrot,bye,2 -yes,yeap,original,book,1 -greeting,how's everything?,parrot,greet,4 -yes,correct,original,book,1 -goodbye,i have to run,parrot,bye,2 -no,no?,parrot,cancel,3 -greeting,what's up,original,greet,4 -yes,"yeah, that's right",original,book,1 -goodbye,"later, good luck",lambada,bye,2 -goodbye,bye,original,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -date,today is the date,parrot,avail,0 -goodbye,sayonara,original,bye,2 -yes,absolutely!,original,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -yes,positive,original,book,1 -greeting,aloha,original,greet,4 -yes,yeah yeah,lambada,book,1 -greeting,how is life?,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -how_busy,how busy is kaya's at 5 pm,lambada,avail,0 -yes,i vote yes,original,book,1 -meeting_schedule,when is my meeting with john scheduled to start?,parrot,avail,0 -goodbye,peace,original,bye,2 -yes,"yes, please",parrot,book,1 -date,a year?,parrot,avail,0 -yes,absolutely,original,book,1 -goodbye,sign off,parrot,bye,2 -goodbye,it was pleasant having a conversation with you,original,bye,2 -thank_you,thank you very much,original,bye,2 -goodbye,adios ai,original,bye,2 -greeting,well hi there,original,greet,4 -no,is not true?,parrot,cancel,3 -date,this is the day,parrot,avail,0 -yes,yay,lambada,book,1 -greeting,how're you?,parrot,greet,4 -goodbye,good talk,parrot,bye,2 -no,that's erroneous,parrot,cancel,3 -goodbye,goodbye ai,parrot,bye,2 -greeting,how's my doing?,parrot,greet,4 -goodbye,goodbye then,parrot,bye,2 -no,is my falsehood?,parrot,cancel,3 -no,that's false,original,cancel,3 -yes,TRUE,lambada,book,1 -thank_you,i'm thankful that you helped me out,parrot,bye,2 -date,today what date?,parrot,avail,0 -goodbye,"later, goodbye",lambada,bye,2 -thank_you,thank ya!,original,bye,2 -how_busy,is macy's busy?,parrot,avail,0 -thank_you,thank you,original,bye,2 -yes,yeah that's right,lambada,book,1 -greeting,"hey, ai",original,greet,4 -thank_you,thanks!,original,bye,2 -greeting,how has my day been,lambada,greet,4 -calendar,what's on my agenda tomorrow?,parrot,avail,0 -no,is not true?,parrot,cancel,3 -goodbye,until next time,original,bye,2 -schedule_meeting,can you book a meeting room for 2:00 pm?,lambada,book,1 -greeting,how's life treating you?,parrot,greet,4 -yes,ya,original,book,1 -thank_you,nice,parrot,bye,2 -yes,uh-huh,original,book,1 -reminder_update,just make me remember to brush my teeth,parrot,resched,5 -goodbye,see ya,lambada,bye,2 -date,what is that day?,parrot,avail,0 -greeting,hey it's up,lambada,greet,4 -yes,yeap,original,book,1 -yes,definitely,original,book,1 -yes,i know it is true,parrot,book,1 -schedule_meeting,could you schedule a meeting with steve please?,parrot,book,1 -calendar_update,erase jeff from my calendar,parrot,resched,5 -yes,ya,original,book,1 -greeting,how's idy?,parrot,greet,4 -meeting_schedule,when is my meeting with the invoicing scheduled to begin?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -yes,yup,original,book,1 -goodbye,see ya,lambada,bye,2 -how_busy,will iman be busy around 7pm?,parrot,avail,0 -yes,"yes, that's confirmed for my taxes",lambada,book,1 -yes,that is a yes,original,book,1 -thank_you,awesome thanks,parrot,bye,2 -no,nope,original,cancel,3 -no,not right,parrot,cancel,3 -goodbye,goodbye later,parrot,bye,2 -goodbye,i want to see you later,parrot,bye,2 -yes,all right,original,book,1 -yes,sure,original,book,1 -yes,i'd say yes,parrot,book,1 -no,it's false,parrot,cancel,3 -greeting,hello ai,parrot,greet,4 -how_busy,tell me how busy the restaurant will be between 5 and 7?,parrot,avail,0 -date,is today the day?,parrot,avail,0 -yes,sure,original,book,1 -thank_you,merci beaucoup,original,bye,2 -greeting,"hey, ai",original,greet,4 -yes,yeah,original,book,1 -yes,confirm,original,book,1 -how_busy,how long will the wait be at noon?,parrot,avail,0 -no,nope,original,cancel,3 -thank_you,appreciated,original,bye,2 -greeting,how're you?,parrot,greet,4 -goodbye,tootles,original,bye,2 -goodbye,greetings,parrot,bye,2 -no,no way,original,cancel,3 -cancel_reservation,i need to cancel my reservation in hawaii for next week,parrot,cancel,3 -greeting,how's my treatment?,parrot,greet,4 -thank_you,i appreciate it,original,bye,2 -greeting,i want to know how things have been?,parrot,greet,4 -greeting,good morning,parrot,greet,4 -no,i am saying no,original,cancel,3 -how_busy,how busy will ihop be at 5 pm,lambada,avail,0 -yes,facts,original,book,1 -no,this isn't true,parrot,cancel,3 -goodbye,adios,original,bye,2 -no,FALSE,lambada,cancel,3 -how_busy,how busy is michel at 5 pm,lambada,avail,0 -thank_you,thanks for trying,original,bye,2 -thank_you,thanks very much for your answer,parrot,bye,2 -yes,"yeah, that is true",lambada,book,1 -goodbye,say goodbye,parrot,bye,2 -goodbye,sayonara,original,bye,2 -goodbye,goodbye!,original,bye,2 -goodbye,bye-bye,original,bye,2 -thank_you,the best,parrot,bye,2 -yes,positive,original,book,1 -reminder_update,please remind me,parrot,resched,5 -how_busy,is tilman busy at 5?,parrot,avail,0 -no,negative,original,cancel,3 -yes,"true, most definitely",original,book,1 -yes,good yes,lambada,book,1 -greeting,hi how is everything,original,greet,4 -goodbye,as regards,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -goodbye,thank you for the opportunity to talk,parrot,bye,2 -goodbye,and tell me bye?,parrot,bye,2 -greeting,welcome,parrot,greet,4 -yes,is true,parrot,book,1 -goodbye,goodnight,original,bye,2 -schedule_meeting,i need you to set up a meeting with bob at 2pm,lambada,book,1 -thank_you,really great!,original,bye,2 -no,invalid,original,cancel,3 -goodbye,"goodbye, helpful ai device!",original,bye,2 -greeting,what's happened?,parrot,greet,4 -no,negative sure,parrot,cancel,3 -how_busy,how long until dinner?,parrot,avail,0 -no,what is it that isn't true?,lambada,cancel,3 -how_busy,how busy will outback steak house be at 5,lambada,avail,0 -goodbye,later goodbye,parrot,bye,2 -no,not right now,original,cancel,3 -how_busy,is the restaurant busy at dinner?,lambada,avail,0 -yes,it's true,original,book,1 -greeting,well hello,original,greet,4 -goodbye,sayonara,original,bye,2 -yes,approved,original,book,1 -date,today is the date,parrot,avail,0 -no,no thanks,original,cancel,3 -cancel_reservation,please cancel my booking,parrot,cancel,3 -greeting,hello,original,greet,4 -yes,so it's true,parrot,book,1 -thank_you,really great!,original,bye,2 -no,naw,parrot,cancel,3 -how_busy,how long will i wait at rancho rancho,parrot,avail,0 -yes,absolutely!,original,book,1 -date,what is the date?,original,avail,0 -no,i don't want that,parrot,cancel,3 -greeting,hey what's up?,parrot,greet,4 -greeting,heyo,original,greet,4 -yes,i want to confirm it,parrot,book,1 -thank_you,appreciated,original,bye,2 -yes,"true, most definitely",original,book,1 -goodbye,"that's all, bye",original,bye,2 -thank_you,it's all i need,parrot,bye,2 -greeting,what's happening,original,greet,4 -goodbye,peace,original,bye,2 -goodbye,sayonara,original,bye,2 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -yes,my answer is yes,parrot,book,1 -date,please tell me what the date is for this account,lambada,avail,0 -yes,yes,original,book,1 -goodbye,buhbye,original,bye,2 -date,will it be two days from now?,parrot,avail,0 -yes,yes that's it,original,book,1 -yes,yeap,original,book,1 -yes,yup,original,book,1 -yes,yes sir,original,book,1 -cancel_reservation,i no longer need a table for four at chili's,original,cancel,3 -greeting,well hello,original,greet,4 -goodbye,the talk was nice,lambada,bye,2 -how_busy,how long will the wait time be at chinese restaurant,lambada,avail,0 -goodbye,i'm gone,parrot,bye,2 -yes,perfect,parrot,book,1 -how_busy,how busy is zippy around 12 for lunch,original,avail,0 -goodbye,i'm happy we talked later,parrot,bye,2 -yes,TRUE,lambada,book,1 -calendar,tell me what's on my calendar for tuesday,parrot,avail,0 -calendar,i would like to know what's happening with my calendar,parrot,avail,0 -yes,"yeah, that's true",lambada,book,1 -yes,seems true,parrot,book,1 -yes,accepted,original,book,1 -yes,it's positive,parrot,book,1 -no,false sure,parrot,cancel,3 -no,negating,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -no,that's inaccurate,original,cancel,3 -cancel_reservation,i'm not going to use the reservation i've made,parrot,cancel,3 -how_busy,is immaculate around 6 dinner?,lambada,avail,0 -greeting,how's life,original,greet,4 -no,yes it's false,parrot,cancel,3 -meeting_schedule,can you tell me when my meeting with roger is on?,parrot,avail,0 -no,it is indeed false,lambada,cancel,3 -no,i disagree,parrot,cancel,3 -no,absolutely false,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -yes,yeah,original,book,1 -date,what's the date it'll be?,parrot,avail,0 -greeting,hola,original,greet,4 -no,FALSE,original,cancel,3 -yes,yeah yeah,lambada,book,1 -date,today?,parrot,avail,0 -meeting_schedule,tell me how many meetings with pete i have for today?,original,avail,0 -goodbye,bye!,original,bye,2 -no,absolutely false,parrot,cancel,3 -date,what's the next month?,parrot,avail,0 -yes,accepted,original,book,1 -no,no good,original,cancel,3 -schedule_meeting,are meeting rooms free between 8-3?,original,book,1 -goodbye,catch you later,original,bye,2 -cancel_reservation,i won't use my reservation,parrot,cancel,3 -yes,this is true,lambada,book,1 -calendar,check my calendar for tuesday's appointments,lambada,avail,0 -yes,that is true,original,book,1 -greeting,heller,original,greet,4 -greeting,wassup,original,greet,4 -no,"please, no",original,cancel,3 -goodbye,afterward,parrot,bye,2 -goodbye,im leaving goodbye,parrot,bye,2 -goodbye,my way,parrot,bye,2 -greeting,hey,original,greet,4 -no,certainly not true,parrot,cancel,3 -calendar_update,remove jess'party from my calendar,parrot,resched,5 -greeting,what's new?,parrot,greet,4 -yes,absolutely correct,original,book,1 -yes,"yes, please",parrot,book,1 -yes,good,parrot,book,1 -goodbye,"later, thanks for chatting",original,bye,2 -yes,my answer is yes,parrot,book,1 -yes,you are definitely correct,lambada,book,1 -greeting,hey,original,greet,4 -greeting,how is it going?,parrot,greet,4 -yes,yup,original,book,1 -thank_you,thanks for the response,lambada,bye,2 -thank_you,you're welcome,parrot,bye,2 -date,please date,parrot,avail,0 -how_busy,are chicken dinners busy?,lambada,avail,0 -goodbye,greetings,parrot,bye,2 -no,i don't want that,parrot,cancel,3 -date,what's the day now?,parrot,avail,0 -meeting_schedule,what time do you have to meet peter at?,parrot,avail,0 -yes,agreed,original,book,1 -thank_you,the best,parrot,bye,2 -how_busy,is there a long wait at the italian farm?,parrot,avail,0 -date,tell me the date that will be in 6 days?,lambada,avail,0 -cancel_reservation,just cancel my reservation,lambada,cancel,3 -yes,ok,original,book,1 -greeting,salutation,parrot,greet,4 -greeting,"howdy, what's new",original,greet,4 -thank_you,thank ya!,original,bye,2 -yes,yes sir,original,book,1 -greeting,whats up?,parrot,greet,4 -calendar,let me know what's on my calendar for march 15th,parrot,avail,0 -yes,10-Apr,original,book,1 -how_busy,how busy is pizza hut at 6:30,lambada,avail,0 -schedule_meeting,please schedule a meeting with tom?,parrot,book,1 -no,i have to say it's false,lambada,cancel,3 -greeting,hiya!,original,greet,4 -greeting,"hello, hello, hello",lambada,greet,4 -calendar_update,please remove my yoga class from my calendar for march 21st,parrot,resched,5 -no,that's totally wrong!,original,cancel,3 -goodbye,later!,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,it'd be awful,parrot,cancel,3 -goodbye,good luck,lambada,bye,2 -thank_you,thanks for cooperating,parrot,bye,2 -reminder_update,remind me to get an oil change,original,resched,5 -goodbye,take it easy!,original,bye,2 -no,that's not true,original,cancel,3 -calendar_update,delete the appointment i have scheduled,parrot,resched,5 -goodbye,i was very happy to talk with you,parrot,bye,2 -greeting,how's idy?,parrot,greet,4 -no,nada,original,cancel,3 -greeting,hi,original,greet,4 -goodbye,goodbye,original,bye,2 -no,sorry but not true,parrot,cancel,3 -no,that's inaccurate,original,cancel,3 -yes,obviously,parrot,book,1 -goodbye,for now,parrot,bye,2 -reminder_update,create a reminder,original,resched,5 -no,that's very wrong,parrot,cancel,3 -greeting,what's new,lambada,greet,4 -greeting,whats new,lambada,greet,4 -greeting,hey fellows,parrot,greet,4 -greeting,hi there,original,greet,4 -no,that's inaccurate,original,cancel,3 -no,no?,parrot,cancel,3 -greeting,good morning,parrot,greet,4 -greeting,hiya!,original,greet,4 -no,negating,parrot,cancel,3 -goodbye,great talk,lambada,bye,2 -no,that's overwhelmingly negative,parrot,cancel,3 -yes,positive,parrot,book,1 -yes,yes you are,original,book,1 -greeting,hello how are you doing?,parrot,greet,4 -yes,"yes, that is true",original,book,1 -reminder_update,can you remind me to finish something?,parrot,resched,5 -goodbye,goodbye thank you,parrot,bye,2 -greeting,hello,original,greet,4 -yes,yup,original,book,1 -thank_you,thanks for the response,lambada,bye,2 -yes,affirmitive,original,book,1 -thank_you,again thanks,parrot,bye,2 -no,that's untrue,parrot,cancel,3 -greeting,how does ayi get on?,parrot,greet,4 -no,i'm sorry for the statement,parrot,cancel,3 -greeting,are you all right?,parrot,greet,4 -yes,TRUE,original,book,1 -how_busy,is the wait in this restaurant too long?,parrot,avail,0 -greeting,how's ai doing?,parrot,greet,4 -greeting,welcome,parrot,greet,4 -goodbye,i like our chat,parrot,bye,2 -date,which date is it,lambada,avail,0 -greeting,how's everything,original,greet,4 -greeting,how were you?,parrot,greet,4 -yes,indeed,original,book,1 -yes,so it's checked,parrot,book,1 -no,that's false,original,cancel,3 -cancel_reservation,get the salad cancelled,lambada,cancel,3 -greeting,hey,original,greet,4 -goodbye,peace out,original,bye,2 -greeting,welcome,parrot,greet,4 -yes,ok,original,book,1 -how_busy,how long is the wait for a reservation in the pizza shop?,parrot,avail,0 -yes,sure,original,book,1 -goodbye,adios!,original,bye,2 -how_busy,how long will it be for ios to serve dinner,lambada,avail,0 -no,negative,original,cancel,3 -no,that's untrue,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -yes,certainly,parrot,book,1 -yes,it'd be great,parrot,book,1 -how_busy,how long should i wait before i can eat macaroni grill?,parrot,avail,0 -yes,absolutely,original,book,1 -no,please disagree,lambada,cancel,3 -yes,yeap,original,book,1 -no,naw,original,cancel,3 -no,i didn't mean that,parrot,cancel,3 -greeting,well hello,original,greet,4 -date,what year is this?,parrot,avail,0 -no,no no it's not,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -no,negating,parrot,cancel,3 -calendar_update,i need to set a date for the lab tomorrow,parrot,resched,5 -schedule_meeting,how can i know if i can open a new meeting?,parrot,book,1 -yes,i'd say it's true,parrot,book,1 -thank_you,it's my debt,parrot,bye,2 -yes,that appears true,original,book,1 -date,tell me what's the date?,parrot,avail,0 -thank_you,many thank,original,bye,2 -no,negating,parrot,cancel,3 -greeting,aloha,original,greet,4 -goodbye,sayonara,original,bye,2 -greeting,heyo,original,greet,4 -yes,affirmative,original,book,1 -how_busy,how long will i wait at the outback steakhouse,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -how_busy,how long would the wait at the pizza place be,parrot,avail,0 -yes,oh-huh,parrot,book,1 -greeting,heyo,original,greet,4 -goodbye,later!,original,bye,2 -yes,i guess yes,parrot,book,1 -greeting,hey there fellow,original,greet,4 -greeting,hola,original,greet,4 -yes,"yes, please",parrot,book,1 -goodbye,bye,original,bye,2 -no,negating,parrot,cancel,3 -reminder_update,save it for later,parrot,resched,5 -no,and i'm sorry,parrot,cancel,3 -greeting,how you're treated?,parrot,greet,4 -greeting,and how're you doing,parrot,greet,4 -no,invalid,original,cancel,3 -greeting,hey,original,greet,4 -no,nothing,parrot,cancel,3 -date,give me the date,original,avail,0 -yes,indeed,original,book,1 -greeting,how's my day?,parrot,greet,4 -reminder_update,remember to write later,parrot,resched,5 -goodbye,bye!,original,bye,2 -how_busy,is it crowded at night?,parrot,avail,0 -date,what is the date in 5 days?,original,avail,0 -how_busy,is the mr joes pizza place crowded?,lambada,avail,0 -thank_you,okay thank you,parrot,bye,2 -how_busy,how busy is iman at 6 pm,lambada,avail,0 -no,is that a lie?,parrot,cancel,3 -greeting,tell me what's my current situation?,parrot,greet,4 -how_busy,is the restaurant busy for dinner?,parrot,avail,0 -goodbye,just relax,parrot,bye,2 -reminder_update,is there any way to remind me to pay my bill?,parrot,resched,5 -goodbye,goodbye no problem,parrot,bye,2 -greeting,how's it going my friend,parrot,greet,4 -yes,absolutely,original,book,1 -yes,not false,parrot,book,1 -greeting,welcome,parrot,greet,4 -calendar_update,remove the bachelorette party from my calendar for may 3 2018 ,parrot,resched,5 -how_busy,how long is the wait at chipotle at five?,parrot,avail,0 -no,that's bad,parrot,cancel,3 -reminder_update,please remind me later,original,resched,5 -goodbye,sayonara ,parrot,bye,2 -how_busy,is the restaurant crowded?,parrot,avail,0 -how_busy,what time does it take to wait in the restaurant?,parrot,avail,0 -how_busy,what will the olive garden be like at 6 o'clock in the evening?,parrot,avail,0 -greeting,hi,original,greet,4 -meeting_schedule,what's my meeting schedule today?,parrot,avail,0 -goodbye,goodbye bye,parrot,bye,2 -greeting,whats new?,parrot,greet,4 -goodbye,until next time,original,bye,2 -no,that's very wrong,parrot,cancel,3 -reminder_update,i want a reminder,lambada,resched,5 -how_busy,does it get crowded at night?,parrot,avail,0 -no,it has to be false,parrot,cancel,3 -yes,agreed,original,book,1 -goodbye,thanks goodbye,parrot,bye,2 -thank_you,good job,lambada,bye,2 -no,it's no,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -how_busy,how busy is chili at 7pm?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -no,nope,original,cancel,3 -thank_you,very grateful,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,huh huh,parrot,book,1 -goodbye,i really enjoyed being able to chat with you,parrot,bye,2 -greeting,"hey, ai",original,greet,4 -yes,good yes,lambada,book,1 -yes,ya,original,book,1 -reminder_update,please check the steak,parrot,resched,5 -calendar,what's on the 2nd march calendar?,parrot,avail,0 -goodbye,"thank you for chatting with me, bye",original,bye,2 -goodbye,good bye,original,bye,2 -goodbye,goodbye bye,parrot,bye,2 -yes,accepted,original,book,1 -reminder_update,can you give me a reminder to do something nice in ny?,lambada,resched,5 -goodbye,adios,original,bye,2 -yes,okay,original,book,1 -yes,indeed,original,book,1 -thank_you,i'm glad you did it for me,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -goodbye,adios,original,bye,2 -greeting,hi there,original,greet,4 -greeting,salutations,parrot,greet,4 -calendar,are there any events between may 5 and may 6th?,parrot,avail,0 -thank_you,okay thanks,original,bye,2 -goodbye,"goodbye, helpful ai device!",original,bye,2 -date,is today the day?,parrot,avail,0 -meeting_schedule,do you have any meetings with kate today?,parrot,avail,0 -goodbye,good luck,lambada,bye,2 -no,it's the wrong answer,parrot,cancel,3 -yes,i guess,parrot,book,1 -yes,definitely,original,book,1 -greeting,yo,original,greet,4 -calendar,give me my schedule for march 13,parrot,avail,0 -yes,say positive,parrot,book,1 -goodbye,my way,parrot,bye,2 -yes,definitely yes,parrot,book,1 -goodbye,later,original,bye,2 -yes,yep,original,book,1 -no,absolutely false,parrot,cancel,3 -greeting,heyo,original,greet,4 -how_busy,is this place crowded for dinner?,parrot,avail,0 -yes,TRUE,original,book,1 -goodbye,goodbye for now ai,original,bye,2 -yes,great,original,book,1 -goodbye,please talk soon,parrot,bye,2 -no,that's erroneous,parrot,cancel,3 -greeting,hey there,original,greet,4 -goodbye,adios!,original,bye,2 -greeting,how are you?,parrot,greet,4 -date,today what date?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -yes,ya,original,book,1 -thank_you,well done,parrot,bye,2 -greeting,hi how's it going?,parrot,greet,4 -yes,"yep, that's true",original,book,1 -goodbye,fairwell,original,bye,2 -yes,yay,lambada,book,1 -yes,great,original,book,1 -reminder_update,please remember something,parrot,resched,5 -how_busy,could you tell me how busy the cheesecake factory will be around 7 pm,lambada,avail,0 -thank_you,my sincere gratitude,parrot,bye,2 -greeting,ai how are you feeling,lambada,greet,4 -how_busy,how busy is iman at 5?,parrot,avail,0 -calendar,how does my calendar look on thursday 14th?,parrot,avail,0 -thank_you,thank you,original,bye,2 -meeting_schedule,are there meetings from 1 to 5 pm?,original,avail,0 -goodbye,sayonara,original,bye,2 -greeting,hi,original,greet,4 -goodbye,goodbye!,original,bye,2 -yes,agreed,original,book,1 -goodbye,farewell!,original,bye,2 -calendar,can you check if there are any events on my calendar for march 8th?,parrot,avail,0 -goodbye,i'll go,parrot,bye,2 -greeting,what's my feeling?,parrot,greet,4 -how_busy,what is the average wait time at chili's right now?,lambada,avail,0 -yes,correct,original,book,1 -goodbye,lovely conversation,parrot,bye,2 -no,it's false,parrot,cancel,3 -thank_you,much obliged,original,bye,2 -calendar,is there a date on january 1st?,parrot,avail,0 -goodbye,good talk,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -no,FALSE,lambada,cancel,3 -yes,indeed,original,book,1 -goodbye,i’m leaving-goodbye!,original,bye,2 -goodbye,so glad i can talk to you,parrot,bye,2 -date,what date will it be in 64 days?,parrot,avail,0 -cancel_reservation,i have to cancel my booking,parrot,cancel,3 -goodbye,goodbye soon,lambada,bye,2 -goodbye,peace,original,bye,2 -goodbye,glad we can talk,parrot,bye,2 -date,is it today? what day of the month?,parrot,avail,0 -thank_you,thanks,original,bye,2 -date,date tomorrow?,parrot,avail,0 -thank_you,i'm glad you answered,parrot,bye,2 -greeting,ahoy there,lambada,greet,4 -greeting,what i feel?,parrot,greet,4 -greeting,how's my family?,parrot,greet,4 -reminder_update,what's a reminder,parrot,resched,5 -yes,confirmed,original,book,1 -greeting,hey,original,greet,4 -greeting,how's it going?,parrot,greet,4 -no,"no, that's not correct",lambada,cancel,3 -greeting,what's happening?,parrot,greet,4 -meeting_schedule,are there any meetings scheduled today?,lambada,avail,0 -goodbye,please talk soon,parrot,bye,2 -goodbye,sayonara,original,bye,2 -date,a year?,parrot,avail,0 -yes,perfect,parrot,book,1 -how_busy,how busy is panera around 6 pm?,parrot,avail,0 -greeting,how's life,original,greet,4 -reminder_update,remember to check my mail,parrot,resched,5 -greeting,heyo,original,greet,4 -yes,okay,original,book,1 -how_busy,how long is the wait at tios at 7:30,lambada,avail,0 -no,naw,parrot,cancel,3 -yes,yay,lambada,book,1 -no,not right,parrot,cancel,3 -yes,positive,original,book,1 -thank_you,nice,parrot,bye,2 -calendar,display my calendar,lambada,avail,0 -how_busy,does the olive garden get crowded around five?,parrot,avail,0 -yes,yeap,original,book,1 -no,that would be terrible,lambada,cancel,3 -no,that's totally false,parrot,cancel,3 -no,not happening,original,cancel,3 -greeting,are you doing alright?,original,greet,4 -greeting,heller,original,greet,4 -yes,that's correct,original,book,1 -no,negation,parrot,cancel,3 -how_busy,is the wait long?,parrot,avail,0 -goodbye,cya later,original,bye,2 -goodbye,take a rest,parrot,bye,2 -greeting,"hey, how are you",original,greet,4 -no,that's not right?,parrot,cancel,3 -goodbye,the talk was nice,lambada,bye,2 -no,FALSE,lambada,cancel,3 -no,nada,original,cancel,3 -thank_you,your assistance is appreciated,parrot,bye,2 -greeting,hola,original,greet,4 -goodbye,later,original,bye,2 -goodbye,later!,original,bye,2 -goodbye,bye bye,lambada,bye,2 -how_busy,how long is the wait in the restaurant?,parrot,avail,0 -goodbye,nice to see you,original,bye,2 -greeting,how are you this day,original,greet,4 -greeting,hi,original,greet,4 -cancel_reservation,cancel tonight's dinner reservation,original,cancel,3 -yes,absolutely!,original,book,1 -date,what's the date tomorrow,original,avail,0 -yes,good yes,lambada,book,1 -goodbye,regards,original,bye,2 -no,that's not true,original,cancel,3 -yes,affirmitive,original,book,1 -no,naw,original,cancel,3 -thank_you,thank you!,original,bye,2 -goodbye,as regards,parrot,bye,2 -how_busy,what is the wait time at the chippewa center?,parrot,avail,0 -calendar_update,remove that event from my calendar,lambada,resched,5 -thank_you,appreciate the help,original,bye,2 -cancel_reservation,my reservation must be cancelled,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -goodbye,until next time,original,bye,2 -greeting,ahoy,lambada,greet,4 -yes,absolutely!,original,book,1 -no,FALSE,original,cancel,3 -date,what's the year?,parrot,avail,0 -reminder_update,can i set up a reminder for you?,parrot,resched,5 -goodbye,goodbye,original,bye,2 -no,that's not acceptable,parrot,cancel,3 -yes,facts,original,book,1 -no,i don't want that,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -goodbye,good-bye,parrot,bye,2 -date,what day?,parrot,avail,0 -cancel_reservation,i need to put in a cancellation for the dinner plans tonight,original,cancel,3 -goodbye,i'll go,parrot,bye,2 -thank_you,thanks again!,original,bye,2 -thank_you,thanks please,original,bye,2 -how_busy,will the wait time for food at chinese restaurants be long,lambada,avail,0 -no,negating,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -goodbye,goodbye!,original,bye,2 -how_busy,what time can i expect to be seated in this restaurant at?,parrot,avail,0 -greeting,hey how's it going?,parrot,greet,4 -how_busy,how long will i have to wait if i want to eat cheese cake factory,parrot,avail,0 -no,certainly not true,parrot,cancel,3 -greeting,how's the ayi doing?,parrot,greet,4 -thank_you,you've tried,parrot,bye,2 -yes,ya,original,book,1 -yes,affirmitive,original,book,1 -thank_you,many thanks,original,bye,2 -how_busy,how long will it take for me to be seated at cheese steak house,lambada,avail,0 -goodbye,goodbye,original,bye,2 -date,what happens in three days?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -greeting,how's idy doing,lambada,greet,4 -yes,positive,parrot,book,1 -greeting,hi,original,greet,4 -goodbye,regards,original,bye,2 -thank_you,gracias,original,bye,2 -greeting,hey,original,greet,4 -yes,it's positive,parrot,book,1 -goodbye,enjoy my day goodbye,parrot,bye,2 -greeting,wassup,original,greet,4 -goodbye,the talk was nice,lambada,bye,2 -no,please disagree,lambada,cancel,3 -how_busy,is ihop busy?,parrot,avail,0 -no,that's actually false,parrot,cancel,3 -how_busy,how long do we have to wait at the restaurant?,parrot,avail,0 -schedule_meeting,how does scheduling work?,parrot,book,1 -schedule_meeting,whether i can reserve a meeting room between 12 and 1pm,parrot,book,1 -no,it's negative,parrot,cancel,3 -calendar,tell me what the event will be on march 6th?,parrot,avail,0 -greeting,aloha,original,greet,4 -how_busy,do people come to chili's around 8pm?,parrot,avail,0 -calendar,read back my day for march 4th 2019,original,avail,0 -yes,facts,original,book,1 -calendar,is there an annual physical?,parrot,avail,0 -calendar,tell me what's on saturday?,parrot,avail,0 -greeting,yo,original,greet,4 -reminder_update,maybe a reminder?,parrot,resched,5 -goodbye,fairwell?,parrot,bye,2 -calendar,tell me what's on my calendar for march 14?,parrot,avail,0 -how_busy,how long will the wait be at noon if we go to nagomi,parrot,avail,0 -no,i prefer not,parrot,cancel,3 -goodbye,tata for now,original,bye,2 -date,is today monday?,original,avail,0 -greeting,hi,original,greet,4 -thank_you,nice,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -greeting,aloha,original,greet,4 -goodbye,peace,original,bye,2 -date,in five days?,parrot,avail,0 -date,what day?,parrot,avail,0 -greeting,are you doing good?,lambada,greet,4 -cancel_reservation,cancell my reservation for five at the red robin,parrot,cancel,3 -goodbye,goodbye later,parrot,bye,2 -date,what's my date?,parrot,avail,0 -thank_you,youre a doll,original,bye,2 -meeting_schedule,what meetings are on my calendar?,original,avail,0 -no,i believe it's wrong,parrot,cancel,3 -cancel_reservation,you can cancel my reservation ,parrot,cancel,3 -thank_you,i appreciate that answer!,original,bye,2 -no,negatory,original,cancel,3 -goodbye,later goodbye,parrot,bye,2 -how_busy,how long can i wait in the pizza place?,parrot,avail,0 -yes,good yes,lambada,book,1 -how_busy,how busy is the place at 7 am,lambada,avail,0 -yes,yep,original,book,1 -greeting,i need to know what i'm doing,parrot,greet,4 -yes,correct,original,book,1 -yes,oh yes,original,book,1 -meeting_schedule,when is today's meeting?,lambada,avail,0 -goodbye,cya later,original,bye,2 -yes,confirmed,original,book,1 -calendar_update,how do i remove an event from my calendar?,parrot,resched,5 -no,it's negative,parrot,cancel,3 -thank_you,you answered my question,parrot,bye,2 -yes,definitely,original,book,1 -no,not that,original,cancel,3 -how_busy,what's the wait time?,parrot,avail,0 -no,negation,parrot,cancel,3 -greeting,aloha,original,greet,4 -yes,correct,original,book,1 -greeting,hola!,original,greet,4 -yes,uh huh,original,book,1 -cancel_reservation,what do i have to do to cancel my reservation?,parrot,cancel,3 -yes,that's right,original,book,1 -reminder_update,give the cat a reminder to come home at 9 o'clock at the morning,parrot,resched,5 -goodbye,bye bye!,original,bye,2 -thank_you,thanks again,original,bye,2 -calendar,what do i have to do on january 1th?,parrot,avail,0 -goodbye,really good to talk with you,parrot,bye,2 -goodbye,goodnight,original,bye,2 -date,tell me today's date?,original,avail,0 -goodbye,fairwell,original,bye,2 -greeting,"hello, how are things",original,greet,4 -how_busy,how busy is the cheese cake factory around 7 pm,lambada,avail,0 -no,FALSE,original,cancel,3 -no,negative certainly,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -reminder_update,add a reminder,lambada,resched,5 -yes,correct,original,book,1 -schedule_meeting,i need you to set a meeting with john at 11am,lambada,book,1 -meeting_schedule,please share my schedule of meetings,parrot,avail,0 -yes,affirmitive,original,book,1 -goodbye,i had fun talking to you,parrot,bye,2 -yes,absolutely,original,book,1 -date,what happens in six days,parrot,avail,0 -greeting,hello,original,greet,4 -date,what year is tomorrow?,parrot,avail,0 -greeting,nice day,lambada,greet,4 -calendar_update,delete the event on friday from my calendar,parrot,resched,5 -yes,facts,original,book,1 -thank_you,thank you i appreciate it,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -yes,all right,parrot,book,1 -goodbye,i've got to run now,original,bye,2 -goodbye,and then goodbye,parrot,bye,2 -yes,that's right,original,book,1 -no,you are wrong,original,cancel,3 -goodbye,bye bye,lambada,bye,2 -yes,of course,original,book,1 -no,hell nah,original,cancel,3 -greeting,hello there,original,greet,4 -yes,it's true,original,book,1 -no,FALSE,lambada,cancel,3 -calendar,show me what i have planned for march 12th?,parrot,avail,0 -date,current day,parrot,avail,0 -calendar,what do you have planned for january 19th?,parrot,avail,0 -no,that's a wrong answer,parrot,cancel,3 -goodbye,bye-bye,original,bye,2 -how_busy,you know how many seats are available in the restaurant?,parrot,avail,0 -yes,huh huh,parrot,book,1 -goodbye,i need to go,lambada,bye,2 -cancel_reservation,cancel my reservation for dinner in the red robin,parrot,cancel,3 -yes,yay,lambada,book,1 -greeting,what's happening,original,greet,4 -how_busy,tell me the wait for a meal in chipotle?,parrot,avail,0 -yes,accepted,original,book,1 -calendar,can you check my calendar for events tying to march 11th?,lambada,avail,0 -goodbye,bye!,original,bye,2 -yes,oh-huh,parrot,book,1 -calendar_update,delete events like the wedding of joe from my calendar,parrot,resched,5 -goodbye,regards,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how long does the restaurant take to eat at,lambada,avail,0 -cancel_reservation,get the salad canceled,parrot,cancel,3 -goodbye,i like our conversation,parrot,bye,2 -yes,that's right,original,book,1 -cancel_reservation,you have not to confirm the reservation,parrot,cancel,3 -goodbye,see you later!,original,bye,2 -yes,"yes, that's correct",original,book,1 -greeting,hiya!,original,greet,4 -thank_you,please thank you,lambada,bye,2 -yes,i think you succeeded,parrot,book,1 -thank_you,you made my life easier,parrot,bye,2 -no,you're not right,parrot,cancel,3 -yes,"yep, let's do that",lambada,book,1 -yes,obviously,parrot,book,1 -no,that is not factual,original,cancel,3 -meeting_schedule,do you see any meetings with john in my schedule today?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -schedule_meeting,can you arrange a meeting with tom at 3pm?,parrot,book,1 -thank_you,you're welcome,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -calendar,what's the tuesday calendar?,parrot,avail,0 -no,i'm going to say no,lambada,cancel,3 -thank_you,why thank you?,original,bye,2 -greeting,aloha,original,greet,4 -how_busy,is macy's busy?,parrot,avail,0 -date,what is current day?,parrot,avail,0 -no,the negator,parrot,cancel,3 -calendar_update,i have to make an appointment for tomorrow at 10am,parrot,resched,5 -yes,seems true,parrot,book,1 -thank_you,gracias,original,bye,2 -thank_you,appreciated,original,bye,2 -no,negative,original,cancel,3 -goodbye,goodbye helpful ai device,parrot,bye,2 -no,negative,original,cancel,3 -greeting,whats new,lambada,greet,4 -yes,my answer is yes,parrot,book,1 -no,sure it's wrong,parrot,cancel,3 -date,is tomorrow's date?,parrot,avail,0 -no,hell nah,original,cancel,3 -goodbye,fairwell,original,bye,2 -yes,i'll check it out,parrot,book,1 -yes,accepted,original,book,1 -greeting,whats up,original,greet,4 -yes,yes,original,book,1 -yes,that's the truth,original,book,1 -greeting,ahoy there,lambada,greet,4 -greeting,yo,original,greet,4 -yes,that's all right,parrot,book,1 -yes,certainly true,parrot,book,1 -no,it's indeed false,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -yes,perfect,parrot,book,1 -thank_you,i appreciate the help,original,bye,2 -thank_you,thank you very much for my work,parrot,bye,2 -no,no thank you,original,cancel,3 -no,negative sure,parrot,cancel,3 -yes,yeah,original,book,1 -date,tell me the date,parrot,avail,0 -thank_you,thanks for answering,parrot,bye,2 -greeting,heller,original,greet,4 -date,a year?,parrot,avail,0 -goodbye,until next time!,original,bye,2 -yes,it's logical,parrot,book,1 -thank_you,okay thank you,parrot,bye,2 -goodbye,fairwell,original,bye,2 -goodbye,good conversation,parrot,bye,2 -schedule_meeting,can you please plan a meeting room for 5pm on monday?,lambada,book,1 -schedule_meeting,can you check if meeting rooms are available between 4 and 5?,original,book,1 -greeting,how is my day,original,greet,4 -meeting_schedule,discuss my schedule with me,parrot,avail,0 -yes,"agreed, that's valid",original,book,1 -yes,absolutely correct,original,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -yes,TRUE,original,book,1 -no,naw,original,cancel,3 -greeting,hello ai,parrot,greet,4 -no,so that's no,parrot,cancel,3 -yes,a fact,parrot,book,1 -thank_you,i appreciate your gesture,lambada,bye,2 -date,what's today,original,avail,0 -how_busy,is michel busy at 3?,parrot,avail,0 -thank_you,i appeciate it,parrot,bye,2 -greeting,hello,original,greet,4 -date,what will it be in three days?,lambada,avail,0 -thank_you,appreciate it,original,bye,2 -reminder_update,how about a reminder,original,resched,5 -yes,"yes, that's it",original,book,1 -no,that seems wrong,lambada,cancel,3 -yes,exactly right,original,book,1 -yes,confirmed,original,book,1 -yes,huh huh,parrot,book,1 -thank_you,your efforts don't go unnoticed,original,bye,2 -thank_you,thanks,original,bye,2 -yes,great,original,book,1 -schedule_meeting,can you hook me up for a meeting at 2:00 on wednesday?,lambada,book,1 -greeting,good evening,original,greet,4 -goodbye,see ya!,original,bye,2 -thank_you,it's all i need,parrot,bye,2 -meeting_schedule,wanna meet with roger,parrot,avail,0 -how_busy,how busy would it be at 6 pm?,parrot,avail,0 -yes,huh huh,parrot,book,1 -how_busy,can you tell me about the wait time at olive garden right now?,lambada,avail,0 -greeting,hiya,original,greet,4 -greeting,hello there!,original,greet,4 -calendar,what's on my calendar for easter?,parrot,avail,0 -no,negating,parrot,cancel,3 -greeting,hey how are you feeling?,parrot,greet,4 -date,please tell me what the date is tomorrow,original,avail,0 -how_busy,how long will it take to get a table at cheese cake factory,lambada,avail,0 -goodbye,be careful then,lambada,bye,2 -greeting,hello are you all right?,parrot,greet,4 -yes,and you have it right,parrot,book,1 -yes,right,parrot,book,1 -cancel_reservation,i have to cancel my reservation in umami for tonight,parrot,cancel,3 -thank_you,thanks for doing it,parrot,bye,2 -greeting,heller,original,greet,4 -greeting,hiya!,original,greet,4 -greeting,heller,original,greet,4 -greeting,hello what's up?,parrot,greet,4 -goodbye,signing off,original,bye,2 -calendar,tell me if there is an event called annual physical in my calendar?,original,avail,0 -date,what's the date,original,avail,0 -goodbye,bye!,original,bye,2 -greeting,hola!,original,greet,4 -yes,positive,original,book,1 -goodbye,good-bye,parrot,bye,2 -no,it would be awful,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -no,invalid,original,cancel,3 -no,it'd be awful,parrot,cancel,3 -yes,ya,original,book,1 -date,what year?,parrot,avail,0 -calendar,read my calendar,parrot,avail,0 -goodbye,later goodbye,parrot,bye,2 -thank_you,thanks for answering that,lambada,bye,2 -goodbye,"thanks, bye",original,bye,2 -yes,yes,original,book,1 -goodbye,on the highway,parrot,bye,2 -meeting_schedule,when is the meeting today?,parrot,avail,0 -yes,"yes, that's true",lambada,book,1 -thank_you,the best,parrot,bye,2 -yes,uh-huh,original,book,1 -how_busy,what's the wait time for mac n cheese right now?,parrot,avail,0 -yes,exactly right,original,book,1 -thank_you,okay thank you,parrot,bye,2 -yes,great,original,book,1 -no,this is false,parrot,cancel,3 -reminder_update,i need a reminder set for signing up for the conference,original,resched,5 -no,negative sure,parrot,cancel,3 -no,that's a lie,parrot,cancel,3 -no,negative for sure,original,cancel,3 -schedule_meeting,meeting room availability at 8:00 please,original,book,1 -yes,yay,lambada,book,1 -calendar_update,add a doctor appointment for friday to my calendar,parrot,resched,5 -goodbye,good bye,original,bye,2 -thank_you,i'm thankful,original,bye,2 -greeting,hiya!,original,greet,4 -greeting,ahoy,lambada,greet,4 -goodbye,next time we'll talk,parrot,bye,2 -goodbye,nice chat today,lambada,bye,2 -how_busy,is kaya very busy at 5 pm?,original,avail,0 -goodbye,i want it now,parrot,bye,2 -date,what's today's date,original,avail,0 -no,not really,original,cancel,3 -goodbye,bye!,original,bye,2 -goodbye,later!,original,bye,2 -date,what today?,parrot,avail,0 -thank_you,thanks very much for the answer,parrot,bye,2 -greeting,what's new,lambada,greet,4 -greeting,aloha,original,greet,4 -yes,sure,original,book,1 -greeting,heyo,original,greet,4 -goodbye,bye!,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -greeting,nice day,lambada,greet,4 -how_busy,how much time does it take to get a table in the olive garden?,parrot,avail,0 -goodbye,see you soon,original,bye,2 -greeting,heyo,original,greet,4 -yes,that would be awesome,original,book,1 -goodbye,later thank you for the chat,parrot,bye,2 -reminder_update,please remind me to clean my room,parrot,resched,5 -yes,i think what you just said is true,parrot,book,1 -no,certainly not,original,cancel,3 -goodbye,adios,original,bye,2 -how_busy,how long does it take to get a burger in this restaurant?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -date,today?,parrot,avail,0 -greeting,what's new,lambada,greet,4 -no,FALSE,lambada,cancel,3 -thank_you,please thank you,lambada,bye,2 -yes,facts,original,book,1 -yes,perfect,parrot,book,1 -no,not good,parrot,cancel,3 -no,nothing,parrot,cancel,3 -goodbye,regards,original,bye,2 -yes,"yes, that's correct",original,book,1 -how_busy,how long will chili's wait,parrot,avail,0 -thank_you,you've tried,parrot,bye,2 -yes,oh yes,original,book,1 -date,date tomorrow?,parrot,avail,0 -thank_you,very grateful,parrot,bye,2 -thank_you,thanks for that!,original,bye,2 -how_busy,is there a lot of busyness at jax at 5 pm?,lambada,avail,0 -no,i'll pass,original,cancel,3 -greeting,how you are,original,greet,4 -thank_you,thank ya!,original,bye,2 -goodbye,tootles,original,bye,2 -greeting,"hello, ai",original,greet,4 -thank_you,my thanks,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -calendar_update,please remove all events from my calendar for march,parrot,resched,5 -greeting,wassup,original,greet,4 -greeting,hello ai,parrot,greet,4 -goodbye,sayonara,original,bye,2 -goodbye,for now,parrot,bye,2 -how_busy,can you tell me if there's going to be a long wait for red lobster?,parrot,avail,0 -meeting_schedule,can you tell me if i'm going to have a meeting?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -yes,indeed,original,book,1 -meeting_schedule,the meetings today,parrot,avail,0 -goodbye,great chat goodbye,lambada,bye,2 -thank_you,very grateful,parrot,bye,2 -yes,thats right,original,book,1 -thank_you,so i appreciate it,parrot,bye,2 -reminder_update,remember to check the mail,parrot,resched,5 -greeting,hello there!,original,greet,4 -greeting,hola,original,greet,4 -thank_you,okay thanks,original,bye,2 -no,that's bad,parrot,cancel,3 -no,i don't agree,parrot,cancel,3 -meeting_schedule,list the meetings today?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -yes,do that?,original,book,1 -greeting,hi,original,greet,4 -thank_you,thank you for everything,parrot,bye,2 -no,that's no,parrot,cancel,3 -greeting,what's new here?,parrot,greet,4 -thank_you,thanks a million,original,bye,2 -schedule_meeting,how does a meeting plan work?,parrot,book,1 -calendar_update,please remove the baby shower from my calendar,parrot,resched,5 -goodbye,goodbye,original,bye,2 -schedule_meeting,plan a meeting for me,parrot,book,1 -cancel_reservation,i don't need my reservation anymore,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -yes,okay,original,book,1 -goodbye,farewell!,original,bye,2 -schedule_meeting,i want to find out how to schedule a meeting,parrot,book,1 -no,that's incorrect,original,cancel,3 -date,what today?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -no,FALSE,lambada,cancel,3 -date,today's date is exactly what,parrot,avail,0 -yes,"yeah, that's true",lambada,book,1 -meeting_schedule,when does richard meet me,parrot,avail,0 -no,not that,original,cancel,3 -goodbye,see ya!,original,bye,2 -goodbye,adios!,original,bye,2 -yes,great,original,book,1 -date,today?,parrot,avail,0 -yes,good,parrot,book,1 -yes,10-Apr,original,book,1 -greeting,salutations,parrot,greet,4 -how_busy,if you want a table in the olive garden how long will it take?,parrot,avail,0 -greeting,bonjour,original,greet,4 -no,is my falsehood?,parrot,cancel,3 -greeting,heyo,original,greet,4 -no,no!,original,cancel,3 -yes,"yeah, that's it",lambada,book,1 -meeting_schedule,meetings today,original,avail,0 -reminder_update,make a reminder to pay tonight,parrot,resched,5 -yes,so it works,parrot,book,1 -calendar_update,please add my calendar for the meeting of the staff scheduled for march 1 2019 at 10 am please,parrot,resched,5 -yes,it is a true statement,lambada,book,1 -greeting,heller,original,greet,4 -goodbye,the talk was nice,lambada,bye,2 -date,date please,original,avail,0 -no,that's overwhelmingly negative,parrot,cancel,3 -greeting,how's life,original,greet,4 -how_busy,how busy is panera at 4 pm,lambada,avail,0 -goodbye,goodbye later,parrot,bye,2 -yes,"yes, that's confirmed",original,book,1 -goodbye,"thanks for chatting, later",original,bye,2 -no,nope not it,original,cancel,3 -how_busy,how busy is acquittal at 6 pm,lambada,avail,0 -no,negative,original,cancel,3 -thank_you,thanks again!,original,bye,2 -greeting,aloha,original,greet,4 -thank_you,appreciate it,original,bye,2 -goodbye,it's over,parrot,bye,2 -greeting,"hello, friend",original,greet,4 -meeting_schedule,are there meetings between 9 and 1030 today?,parrot,avail,0 -greeting,how is my day?,parrot,greet,4 -calendar_update,clear my entire calendar for april 1,parrot,resched,5 -greeting,ahoy,lambada,greet,4 -goodbye,buhbye,original,bye,2 -meeting_schedule,when am i getting a meeting with roger?,lambada,avail,0 -goodbye,goodbye to your,lambada,bye,2 -yes,you got it,parrot,book,1 -yes,that's correct,original,book,1 -reminder_update,remind me,original,resched,5 -meeting_schedule,tell me today's scheduled conference from noon onward?,parrot,avail,0 -calendar,"""did i put an item on the calendar called """"my doctor's appointment""""""",lambada,avail,0 -thank_you,i appreciate that answer!,original,bye,2 -no,FALSE,original,cancel,3 -goodbye,goodbye then,parrot,bye,2 -no,negatory?,parrot,cancel,3 -cancel_reservation,cancel my reservation at 730 for morton,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -no,thanks no,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -how_busy,how long will it take to get a table at the olive garden,lambada,avail,0 -thank_you,appreciated,original,bye,2 -goodbye,buhbye,original,bye,2 -goodbye,buhbye,original,bye,2 -greeting,heller,original,greet,4 -yes,facts,original,book,1 -no,i wouldn't like that,parrot,cancel,3 -calendar,- check my calendar for march 19,parrot,avail,0 -meeting_schedule,what's my meeting schedule today,lambada,avail,0 -greeting,hey fellows,parrot,greet,4 -thank_you,"great, thanks!",original,bye,2 -goodbye,adios ai,original,bye,2 -no,it's a no,original,cancel,3 -goodbye,regards,original,bye,2 -goodbye,goodnight,original,bye,2 -thank_you,i appreciate that,original,bye,2 -yes,very true,original,book,1 -goodbye,bye now,original,bye,2 -no,nope,original,cancel,3 -reminder_update,add a reminder to get milk at the store,parrot,resched,5 -yes,indeed,original,book,1 -goodbye,fairwell?,parrot,bye,2 -how_busy,how long will it take to get seated at the cheese cake shop?,parrot,avail,0 -goodbye,chat to me later,parrot,bye,2 -thank_you,gracias,original,bye,2 -schedule_meeting,can you schedule a meeting with steve for five?,parrot,book,1 -goodbye,"nice talk, goodbye",lambada,bye,2 -greeting,hey there,original,greet,4 -goodbye,fairwell,original,bye,2 -thank_you,thanks for the donation,parrot,bye,2 -greeting,what's new?,parrot,greet,4 -greeting,salutations,parrot,greet,4 -yes,certainly,parrot,book,1 -yes,that also makes sense,parrot,book,1 -date,now what's the day?,parrot,avail,0 -goodbye,later thank you for the conversation,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -yes,that's a true statement,lambada,book,1 -thank_you,again thank you,parrot,bye,2 -yes,good,parrot,book,1 -no,this is a lie,parrot,cancel,3 -yes,good yes,lambada,book,1 -yes,approved,original,book,1 -goodbye,im leaving,parrot,bye,2 -goodbye,adios!,original,bye,2 -greeting,are you okay?,original,greet,4 -thank_you,my gratitude,parrot,bye,2 -thank_you,"nice, excellent!",original,bye,2 -cancel_reservation,i need to cancel my reservation for dinner at carnelian lake,lambada,cancel,3 -meeting_schedule,when's the meeting?,parrot,avail,0 -meeting_schedule,when will i meet jane?,parrot,avail,0 -date,what date will be 840 days?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -schedule_meeting,will ya please set up a meeting with omar at 5:00,lambada,book,1 -greeting,i want to know how it's going,lambada,greet,4 -yes,yup,original,book,1 -goodbye,fairwell,original,bye,2 -yes,certainly,parrot,book,1 -calendar_update,remove the date on my calendar for next friday,lambada,resched,5 -greeting,how is the ai feeling,lambada,greet,4 -how_busy,how busy will the cheesecake factory be around 12 noon?,parrot,avail,0 -yes,yes sir,original,book,1 -no,you are wrong,original,cancel,3 -thank_you,thanks!,original,bye,2 -yes,yes,original,book,1 -goodbye,"thanks, bye",original,bye,2 -goodbye,tootles?,parrot,bye,2 -goodbye,goodnight,original,bye,2 -date,is today the day?,parrot,avail,0 -yes,thats right,original,book,1 -thank_you,thank you for my support,parrot,bye,2 -yes,affirmative,original,book,1 -goodbye,farewell!,original,bye,2 -how_busy,is there a waiting time?,parrot,avail,0 -how_busy,has the wait been long?,parrot,avail,0 -reminder_update,set up a reminder to give me the medication for my pet,parrot,resched,5 -greeting,hiya!,original,greet,4 -greeting,heller,original,greet,4 -yes,perfect,parrot,book,1 -no,no it's a no,parrot,cancel,3 -greeting,how you feel?,parrot,greet,4 -thank_you,thanks again,original,bye,2 -greeting,hey,original,greet,4 -no,that's not correct,original,cancel,3 -no,erroneous,parrot,cancel,3 -calendar,do you have any scheduled events for january 15th?,parrot,avail,0 -greeting,good morning ai,parrot,greet,4 -yes,absolutely,original,book,1 -reminder_update,i need a reminder to go get an extra credit card,parrot,resched,5 -yes,you're right,original,book,1 -date,please date,parrot,avail,0 -greeting,yo,original,greet,4 -meeting_schedule,what times are my meetings?,original,avail,0 -date,is it monday?,parrot,avail,0 -thank_you,you've been great,parrot,bye,2 -no,not that,original,cancel,3 -goodbye,say goodbye for now,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -no,the negator,parrot,cancel,3 -meeting_schedule,do you know if i have a meeting with dave?,parrot,avail,0 -yes,that's absolutely true,parrot,book,1 -greeting,hi ai,original,greet,4 -thank_you,thanks!,original,bye,2 -no,hell nah,original,cancel,3 -yes,that's right,original,book,1 -goodbye,a good talk,parrot,bye,2 -no,negatory,original,cancel,3 -yes,that's correct,original,book,1 -yes,okay,original,book,1 -how_busy,what is the maximum wait time at yu-san?,lambada,avail,0 -no,that's actually false,parrot,cancel,3 -date,date tomorrow?,parrot,avail,0 -yes,"that's right, it's true",lambada,book,1 -greeting,aho,parrot,greet,4 -date,what date tomorrow?,parrot,avail,0 -thank_you,thanks for that!,original,bye,2 -date,what will be the date in 200 days?,parrot,avail,0 -date,date please,original,avail,0 -how_busy,how long is the wait at chocolate fountain,lambada,avail,0 -no,not correct,parrot,cancel,3 -schedule_meeting,meeting room needs to be set up for 6 pm on friday,lambada,book,1 -thank_you,thank you?,parrot,bye,2 -goodbye,sayonara,original,bye,2 -how_busy,how busy is the red robin around 7pm?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -how_busy,how many people are attending the restaurant at 8 pm,lambada,avail,0 -goodbye,we chatted well,parrot,bye,2 -greeting,how's my current situation,parrot,greet,4 -goodbye,goodbye,original,bye,2 -goodbye,my friend,parrot,bye,2 -cancel_reservation,uni made a reservation for dinner,parrot,cancel,3 -no,it's a negative,parrot,cancel,3 -meeting_schedule,when do you meet kara?,parrot,avail,0 -yes,yup,original,book,1 -goodbye,good-bye,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -how_busy,how busy is olive garden around 7:30,lambada,avail,0 -goodbye,i liked talking to you later,parrot,bye,2 -greeting,how goes it,original,greet,4 -how_busy,is the mall open till noon?,parrot,avail,0 -goodbye,"later, good luck",lambada,bye,2 -no,say negative,parrot,cancel,3 -goodbye,goodbye ai,parrot,bye,2 -yes,ya,original,book,1 -goodbye,goodbyes,parrot,bye,2 -how_busy,how long will i have to wait before i can go to the restaurant?,parrot,avail,0 -thank_you,oh sweet thanks,original,bye,2 -no,that is erroneous,original,cancel,3 -greeting,ahoy hoy,original,greet,4 -cancel_reservation,just cancel my reservation,lambada,cancel,3 -yes,"yeah, that's it",lambada,book,1 -yes,TRUE,original,book,1 -cancel_reservation,repeal the dinner reservation,original,cancel,3 -calendar_update,"on the 22nd of this month, we need to clear our calendar so we can leave it open for mark to visit",original,resched,5 -yes,huh,parrot,book,1 -yes,positive,parrot,book,1 -goodbye,good talk,parrot,bye,2 -yes,TRUE,original,book,1 -greeting,hey,original,greet,4 -no,don't agree,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -yes,confirm,original,book,1 -schedule_meeting,i would like you to reserve a conference room for noon tomorrow,original,book,1 -reminder_update,make me a reminder to brush my teeth,parrot,resched,5 -yes,TRUE,original,book,1 -no,"please, no",original,cancel,3 -how_busy,how busy is iguanas on the weekends,lambada,avail,0 -no,"no, that's not right",original,cancel,3 -greeting,how's everything?,parrot,greet,4 -greeting,have you felt?,parrot,greet,4 -how_busy,show me how busy ihop will be at 730?,parrot,avail,0 -yes,that would be right,parrot,book,1 -goodbye,glad we talked,parrot,bye,2 -calendar_update,cancell my date with james on 28 march,parrot,resched,5 -goodbye,later!,original,bye,2 -no,"no, it's not",lambada,cancel,3 -goodbye,see ya,lambada,bye,2 -thank_you,you've made my life easier,parrot,bye,2 -thank_you,well done,parrot,bye,2 -goodbye,adios!,original,bye,2 -yes,it's logical,parrot,book,1 -yes,certainly true,parrot,book,1 -how_busy,how long will it take to get a table in a restaurant?,parrot,avail,0 -greeting,wassup,original,greet,4 -how_busy,can you list the average wait times at olive garden? why?,parrot,avail,0 -goodbye,it's over,parrot,bye,2 -meeting_schedule,will you meet ann?,parrot,avail,0 -no,that's false,original,cancel,3 -date,current date,original,avail,0 -no,it's indeed false,parrot,cancel,3 -greeting,"ah-yah, how are things",lambada,greet,4 -goodbye,get there soon,lambada,bye,2 -yes,i think that's right,parrot,book,1 -goodbye,goodbye!,original,bye,2 -no,that's absolutely wrong,parrot,cancel,3 -meeting_schedule,when do you meet ann?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -goodbye,sayonara,original,bye,2 -thank_you,i appeciate it,original,bye,2 -goodbye,regards,original,bye,2 -thank_you,thanks for responding,parrot,bye,2 -date,which day is next,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -thank_you,appreciated,original,bye,2 -thank_you,okay thank you,parrot,bye,2 -yes,yup,original,book,1 -yes,great,original,book,1 -goodbye,fairwell,original,bye,2 -goodbye,will talk to you soon,parrot,bye,2 -schedule_meeting,list the rules for setting up a meeting?,parrot,book,1 -goodbye,see you again soon,original,bye,2 -greeting,salutations!,original,greet,4 -yes,yeah,original,book,1 -no,nope,original,cancel,3 -date,what today?,parrot,avail,0 -no,that's not true,original,cancel,3 -no,negative certainly,parrot,cancel,3 -meeting_schedule,can you tell me the time of my meeting?,parrot,avail,0 -thank_you,thanks for helping me!,original,bye,2 -date,list the words for tomorrow?,parrot,avail,0 -yes,yay,lambada,book,1 -thank_you,thanks!,original,bye,2 -how_busy,what's the average wait time i should expect at the johnny's,lambada,avail,0 -yes,it's positive,parrot,book,1 -no,but it's wrong,parrot,cancel,3 -yes,huh,parrot,book,1 -how_busy,how long will it take to get seated in olive garden for dinner?,parrot,avail,0 -yes,okay,original,book,1 -greeting,what's happened to you?,parrot,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,very true,original,book,1 -thank_you,thanks!,original,bye,2 -greeting,hello bs,parrot,greet,4 -goodbye,sayonara ,parrot,bye,2 -thank_you,a million thanks,parrot,bye,2 -no,so that's no,parrot,cancel,3 -thank_you,thanks!,original,bye,2 -greeting,get up ai,parrot,greet,4 -greeting,salutations,parrot,greet,4 -yes,it's logical,parrot,book,1 -no,i mean no,parrot,cancel,3 -yes,correct,original,book,1 -no,don't like it no,parrot,cancel,3 -goodbye,bye,original,bye,2 -goodbye,buhbye,original,bye,2 -greeting,how's my day been?,parrot,greet,4 -calendar_update,please add final exams to my calendar for may 2nd,parrot,resched,5 -goodbye,take care then,parrot,bye,2 -goodbye,"bye-bye, my friend",lambada,bye,2 -date,date tomorrow,parrot,avail,0 -no,not that,original,cancel,3 -thank_you,"awesome, thanks",original,bye,2 -no,not really,original,cancel,3 -yes,yep,original,book,1 -greeting,whats up?,parrot,greet,4 -goodbye,tootles,original,bye,2 -no,no?,parrot,cancel,3 -how_busy,how long will it take to sit on the red lobster?,parrot,avail,0 -cancel_reservation,i'll have to cancel my reservation tonight,parrot,cancel,3 -date,please share today's date,original,avail,0 -calendar,have you added the bike ride to my calendar?,parrot,avail,0 -no,hell nah,original,cancel,3 -goodbye,bye bye,lambada,bye,2 -yes,affirmitive,original,book,1 -greeting,bonjour,original,greet,4 -goodbye,greetings,parrot,bye,2 -thank_you,so grateful,parrot,bye,2 -thank_you,thanks for the update,lambada,bye,2 -goodbye,regards,original,bye,2 -no,thanks no,parrot,cancel,3 -meeting_schedule,let me know what i have scheduled for today,parrot,avail,0 -no,it's no,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -yes,ya,original,book,1 -yes,thats right,original,book,1 -greeting,good evening,original,greet,4 -goodbye,bye now,original,bye,2 -no,erroneous,parrot,cancel,3 -thank_you,i appreciate your time,lambada,bye,2 -greeting,what's happening?,parrot,greet,4 -yes,indeed,original,book,1 -no,not right?,parrot,cancel,3 -schedule_meeting,i want a meeting room open between 4 and 5 pm,lambada,book,1 -thank_you,many thank,original,bye,2 -no,negative sure,parrot,cancel,3 -yes,affirmative,original,book,1 -greeting,hey hey!,original,greet,4 -yes,certainly,parrot,book,1 -yes,yes that's it,original,book,1 -no,thanks no,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -goodbye,farewell,original,bye,2 -no,that's untrue,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -how_busy,how long should i expect to wait at the cheesecake factory before getting seated,original,avail,0 -goodbye,just relax,parrot,bye,2 -goodbye,i had a pleasure to talk to you,parrot,bye,2 -how_busy,how busy is imanas around 8,lambada,avail,0 -goodbye,good call,parrot,bye,2 -goodbye,goodbye now,parrot,bye,2 -date,please tell me the date?,parrot,avail,0 -yes,correct,original,book,1 -date,list some words for tomorrow?,parrot,avail,0 -no,invalid,original,cancel,3 -greeting,hello what's up?,parrot,greet,4 -yes,it's true for sure,parrot,book,1 -yes,oh-huh,parrot,book,1 -goodbye,it's time for goodbye,parrot,bye,2 -goodbye,good call,parrot,bye,2 -no,negating,parrot,cancel,3 -reminder_update,please set a reminder?,parrot,resched,5 -how_busy,how long is the wait in a chinese restaurant right now?,parrot,avail,0 -no,not that,original,cancel,3 -yes,good,parrot,book,1 -yes,definitely,original,book,1 -greeting,hola!,original,greet,4 -greeting,hola!,original,greet,4 -goodbye,afterward,parrot,bye,2 -yes,all right,parrot,book,1 -no,most definitely false,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -greeting,hi,original,greet,4 -goodbye,farewell!,original,bye,2 -no,don't agree,parrot,cancel,3 -goodbye,i'll leave now,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -greeting,welcome,parrot,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,ya,original,book,1 -goodbye,goodbye,original,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -yes,that is accurate,original,book,1 -yes,you are yes,lambada,book,1 -no,negatory?,parrot,cancel,3 -how_busy,please tell me how long the wait at the cheesecake factory is?,parrot,avail,0 -no,not true,original,cancel,3 -goodbye,see you later,original,bye,2 -reminder_update,"new reminder, please",original,resched,5 -how_busy,there's a wait time for red lobster?,parrot,avail,0 -reminder_update,i need to create a reminder for the dinner,lambada,resched,5 -yes,that's a fact,lambada,book,1 -goodbye,goodbye later,parrot,bye,2 -date,what will the date be after i get married?,lambada,avail,0 -goodbye,buhbye now,lambada,bye,2 -greeting,hey,original,greet,4 -yes,sure,original,book,1 -goodbye,tootles?,parrot,bye,2 -greeting,hola,original,greet,4 -greeting,hola,original,greet,4 -thank_you,you've helped,parrot,bye,2 -yes,i agree,original,book,1 -calendar,can you check what's on my calendar for february 14th?,parrot,avail,0 -yes,TRUE,lambada,book,1 -goodbye,bye!,original,bye,2 -thank_you,i thank you,original,bye,2 -meeting_schedule,are there meetings from 1-5?,parrot,avail,0 -reminder_update,save it for later,parrot,resched,5 -yes,"yes, please",parrot,book,1 -thank_you,very grateful,parrot,bye,2 -schedule_meeting,would you schedule a meeting for me at the new york office,lambada,book,1 -yes,huh,parrot,book,1 -how_busy,is chili busy at 730?,parrot,avail,0 -no,nothing,parrot,cancel,3 -yes,absolutely,original,book,1 -no,you are wrong,original,cancel,3 -how_busy,i want to know how busy denny's is at 5 am,parrot,avail,0 -yes,certainly,parrot,book,1 -greeting,hey,original,greet,4 -yes,that'd be great,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,"howdy, what's new",original,greet,4 -greeting,hey how's life,original,greet,4 -no,yes it's false,parrot,cancel,3 -greeting,"hello, ai",original,greet,4 -cancel_reservation,i have a reservation at pizza hut under the name leia roberts and i want to cancel it,original,cancel,3 -how_busy,how long is the wait at olive garden at 4 pm,lambada,avail,0 -no,thats a negative,original,cancel,3 -calendar,what do you have scheduled for february 12th?,parrot,avail,0 -meeting_schedule,have any meetings between 2 and 3 today?,parrot,avail,0 -greeting,wassup,original,greet,4 -thank_you,appreciated,original,bye,2 -greeting,heller,original,greet,4 -no,no!,original,cancel,3 -no,erroneous,parrot,cancel,3 -goodbye,tootles,original,bye,2 -greeting,hola!,original,greet,4 -greeting,hey it's up,lambada,greet,4 -date,when will it be eight days?,parrot,avail,0 -thank_you,well done,parrot,bye,2 -date,a year?,parrot,avail,0 -goodbye,nice chat today,lambada,bye,2 -thank_you,thankyou,parrot,bye,2 -calendar,what do i have going on for 12/03/2019?,original,avail,0 -yes,positive,parrot,book,1 -how_busy,how busy is ihop?,parrot,avail,0 -date,tell me the date,parrot,avail,0 -greeting,hola,original,greet,4 -no,"no, definitely not",original,cancel,3 -date,which day is next,parrot,avail,0 -thank_you,nice,parrot,bye,2 -greeting,"hey, ai",original,greet,4 -no,"no, it's not",lambada,cancel,3 -goodbye,we'll talk later ai,original,bye,2 -yes,yeah yeah,lambada,book,1 -no,certainly not true,parrot,cancel,3 -no,naw,original,cancel,3 -greeting,aloha,original,greet,4 -goodbye,tootles,original,bye,2 -greeting,bonjour,original,greet,4 -greeting,hello there,original,greet,4 -goodbye,fairwell,original,bye,2 -yes,yeah that's what i want,original,book,1 -thank_you,i'm very grateful for my assistance,parrot,bye,2 -cancel_reservation,can you cancel my reservation for michael at the pub?,lambada,cancel,3 -goodbye,bye bye,lambada,bye,2 -greeting,hi there,original,greet,4 -no,nada,original,cancel,3 -how_busy,how busy does outback get around 7pm,original,avail,0 -calendar_update,discard the party for sally from my calendar,parrot,resched,5 -greeting,how's ai feeling?,parrot,greet,4 -no,FALSE,lambada,cancel,3 -reminder_update,please remember to visit ryan,parrot,resched,5 -yes,very true,original,book,1 -no,certainly false,parrot,cancel,3 -greeting,salutations!,original,greet,4 -meeting_schedule,how many meetings are in my schedule,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,negation,parrot,cancel,3 -date,which date is it?,parrot,avail,0 -greeting,heyo,original,greet,4 -goodbye,goodbye later,parrot,bye,2 -how_busy,is cheesecake factory busy at 9?,lambada,avail,0 -yes,confirmed,original,book,1 -goodbye,i'll leave,parrot,bye,2 -goodbye,was nice talking with you,parrot,bye,2 -no,is a lie?,parrot,cancel,3 -greeting,hey yai,lambada,greet,4 -greeting,yo,original,greet,4 -how_busy,how busy will red robin be at 5 pm?,parrot,avail,0 -greeting,hello siri,original,greet,4 -no,is my falsehood?,parrot,cancel,3 -goodbye,this was a nice conversation,original,bye,2 -date,what's the month and year in 4 days,lambada,avail,0 -yes,"that's right, it's true",lambada,book,1 -no,that's not right,original,cancel,3 -no,erroneous,parrot,cancel,3 -goodbye,later,original,bye,2 -schedule_meeting,please schedule a meeting with emma?,parrot,book,1 -thank_you,thank you for that,lambada,bye,2 -yes,ya,original,book,1 -meeting_schedule,the meetings today,parrot,avail,0 -greeting,salutation,parrot,greet,4 -thank_you,"awesome, thanks",original,bye,2 -how_busy,how long will i have to wait for chili at 7pm?,parrot,avail,0 -thank_you,"oh, thanks",original,bye,2 -yes,uh-huh,original,book,1 -meeting_schedule,how long is the meeting between saturday and sunday,lambada,avail,0 -greeting,hello,original,greet,4 -yes,huh,parrot,book,1 -greeting,hey how's my day going?,parrot,greet,4 -yes,accept,parrot,book,1 -goodbye,wonderful conversation,lambada,bye,2 -yes,absolutely correct,original,book,1 -no,nay,original,cancel,3 -greeting,how's the ai?,parrot,greet,4 -thank_you,gracias,original,bye,2 -how_busy,how busy will the chili grill be at 7pm,parrot,avail,0 -thank_you,you're so much help,parrot,bye,2 -schedule_meeting,i need an agenda,parrot,book,1 -yes,perfect,parrot,book,1 -greeting,hey bs,lambada,greet,4 -goodbye,it's over,parrot,bye,2 -yes,facts,original,book,1 -thank_you,"great, thanks!",original,bye,2 -goodbye,tootles,original,bye,2 -goodbye,glad we can talk,parrot,bye,2 -yes,huh,parrot,book,1 -calendar_update,make sure to add to my calendar the staff meeting for march 1 at 10 am,original,resched,5 -goodbye,goodbyes soon,parrot,bye,2 -yes,facts,original,book,1 -yes,so it works,parrot,book,1 -calendar_update,remove jess'party from my calendar,parrot,resched,5 -no,negatory,original,cancel,3 -yes,ya,original,book,1 -thank_you,good looking out,original,bye,2 -greeting,ahoy hoy,original,greet,4 -no,that's incorrect!,original,cancel,3 -how_busy,how long is the wait at chipotle right now?,parrot,avail,0 -schedule_meeting,do you know if meeting rooms are open for use 1-2?,parrot,book,1 -cancel_reservation,please unreserve that table,original,cancel,3 -no,don't agree,parrot,cancel,3 -no,that is erroneous,original,cancel,3 -meeting_schedule,when is my meeting with kara?,parrot,avail,0 -yes,yup,original,book,1 -no,not right now,original,cancel,3 -yes,affirmitive,original,book,1 -date,which day is next,parrot,avail,0 -thank_you,many thank,original,bye,2 -yes,positive,parrot,book,1 -cancel_reservation,how can i cancel my steakhouse reservation?,parrot,cancel,3 -how_busy,would that place be crowded at six,lambada,avail,0 -yes,confirmed,original,book,1 -goodbye,nice talk,lambada,bye,2 -no,please disagree,lambada,cancel,3 -thank_you,gracias,original,bye,2 -goodbye,lovely conversation,parrot,bye,2 -how_busy,how busy will the restaurant be,lambada,avail,0 -goodbye,glad to talk,parrot,bye,2 -yes,that would be yes,original,book,1 -how_busy,how long will i have to wait in olive garden,parrot,avail,0 -yes,yes i have to do that,lambada,book,1 -goodbye,peace,original,bye,2 -no,no?,parrot,cancel,3 -thank_you,thanks a lot,original,bye,2 -goodbye,im leaving,parrot,bye,2 -no,is it a lie?,parrot,cancel,3 -greeting,hello,original,greet,4 -greeting,hi ai,original,greet,4 -no,that's no way,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -thank_you,"oh, thanks",original,bye,2 -greeting,salutation,parrot,greet,4 -no,negatory?,parrot,cancel,3 -no,please do not agree,parrot,cancel,3 -goodbye,later,original,bye,2 -thank_you,again thanks,parrot,bye,2 -no,this information is false,parrot,cancel,3 -greeting,aho,parrot,greet,4 -greeting,hey there,original,greet,4 -no,FALSE,original,cancel,3 -thank_you,thank you!,original,bye,2 -thank_you,gracias,original,bye,2 -meeting_schedule,is my schedule clear?,parrot,avail,0 -no,no?,parrot,cancel,3 -goodbye,"no problem, goodbye",lambada,bye,2 -greeting,are you good?,original,greet,4 -goodbye,adios,original,bye,2 -greeting,what's happening?,parrot,greet,4 -thank_you,thanks,original,bye,2 -yes,i would say yes,lambada,book,1 -no,no that's not what is true,parrot,cancel,3 -goodbye,later,original,bye,2 -reminder_update,how about a reminder,original,resched,5 -greeting,heyo,original,greet,4 -no,but no way?,parrot,cancel,3 -greeting,tell me how's it going?,parrot,greet,4 -yes,it's true,original,book,1 -no,erroneous,parrot,cancel,3 -greeting,hey there!,original,greet,4 -goodbye,goodbye,original,bye,2 -greeting,hola,original,greet,4 -date,i have to know the date in 256 days,parrot,avail,0 -date,today?,parrot,avail,0 -calendar,do you have any appointments for may 11?,parrot,avail,0 -reminder_update,make a reminder please,parrot,resched,5 -no,that's no,parrot,cancel,3 -greeting,how was my day?,parrot,greet,4 -how_busy,how many people are at chili's around 9 o'clock,parrot,avail,0 -goodbye,buhbye,original,bye,2 -greeting,salutation,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -calendar,display my calendar,lambada,avail,0 -how_busy,how long will it take you to get a table in this restaurant?,parrot,avail,0 -yes,TRUE,original,book,1 -greeting,whats up,original,greet,4 -goodbye,it's over,parrot,bye,2 -goodbye,goodbye ai,parrot,bye,2 -date,what's the date of tomorrow,lambada,avail,0 -no,thats a negative,original,cancel,3 -greeting,heyo,original,greet,4 -no,that's bad,parrot,cancel,3 -yes,indeed,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -meeting_schedule,what's on my schedule today?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -date,what's the date tomorrow,original,avail,0 -no,negatory,original,cancel,3 -goodbye,great talk,lambada,bye,2 -yes,accepted,original,book,1 -thank_you,well done,parrot,bye,2 -no,negatory,original,cancel,3 -yes,please let's do this,parrot,book,1 -goodbye,afterward,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -greeting,good day,original,greet,4 -thank_you,you've been great,parrot,bye,2 -yes,accepted,original,book,1 -yes,i guess yes,parrot,book,1 -thank_you,thanks for my help,original,bye,2 -thank_you,really great!,original,bye,2 -goodbye,later,original,bye,2 -greeting,heller,original,greet,4 -goodbye,goodbyes,parrot,bye,2 -how_busy,what is the busyness like at olive garden at 4:30 pm?,lambada,avail,0 -no,not really,original,cancel,3 -goodbye,bye bye,lambada,bye,2 -yes,i'd say yes,parrot,book,1 -no,that's not right?,parrot,cancel,3 -yes,TRUE,original,book,1 -greeting,hey,original,greet,4 -how_busy,how busy will chili sana at 6:30,lambada,avail,0 -goodbye,goodnight,original,bye,2 -goodbye,buhbye now,lambada,bye,2 -date,what day are we?,parrot,avail,0 -greeting,"hello, how's my day",original,greet,4 -thank_you,thank you so much for my response,parrot,bye,2 -no,negation,parrot,cancel,3 -meeting_schedule,are there meetings between 9 and 10?,parrot,avail,0 -greeting,yo,original,greet,4 -yes,sure thing,original,book,1 -no,negation,parrot,cancel,3 -no,that's not what i want,parrot,cancel,3 -reminder_update,make a reminder for me to look at the house,lambada,resched,5 -goodbye,tootles?,parrot,bye,2 -no,you got that wrong,original,cancel,3 -yes,oh-huh,parrot,book,1 -greeting,hey how's my day?,parrot,greet,4 -goodbye,regards,original,bye,2 -no,the negator,parrot,cancel,3 -yes,confirmed,original,book,1 -no,not at all,original,cancel,3 -no,no!,original,cancel,3 -thank_you,you have my thanks,parrot,bye,2 -thank_you,nice,parrot,bye,2 -greeting,how's otc?,parrot,greet,4 -thank_you,"great, thanks!",original,bye,2 -goodbye,farewell,original,bye,2 -how_busy,is the wait at the chili long?,parrot,avail,0 -yes,affirmitive,original,book,1 -greeting,ahoy there,lambada,greet,4 -greeting,how's everything,original,greet,4 -calendar_update,remove the teeth from my schedule,parrot,resched,5 -greeting,are you good?,original,greet,4 -yes,yes it's true,lambada,book,1 -no,that is wrong,original,cancel,3 -no,please disagree,lambada,cancel,3 -no,that's wrong,original,cancel,3 -goodbye,you're done,parrot,bye,2 -yes,affirmative,original,book,1 -how_busy,can i expect ihop to be busy at 6?,lambada,avail,0 -greeting,salutations,parrot,greet,4 -meeting_schedule,when's my meeting?,parrot,avail,0 -greeting,what do you feel?,parrot,greet,4 -thank_you,thanks!,original,bye,2 -thank_you,thank ya!,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -no,so that's no,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,you're welcome,parrot,bye,2 -thank_you,gracias,original,bye,2 -no,erroneous,parrot,cancel,3 -no,that is untrue,original,cancel,3 -thank_you,good job,lambada,bye,2 -greeting,hi,original,greet,4 -thank_you,thanks for that,original,bye,2 -greeting,hey fellow,parrot,greet,4 -no,naw,parrot,cancel,3 -no,that isn't true,lambada,cancel,3 -goodbye,goodbye now,parrot,bye,2 -yes,ok,original,book,1 -thank_you,you helped me,parrot,bye,2 -no,that's incorrect,original,cancel,3 -yes,sure,original,book,1 -yes,accepted,original,book,1 -no,negatory,original,cancel,3 -no,nothing,parrot,cancel,3 -yes,uh-huh,original,book,1 -no,nay,original,cancel,3 -how_busy,is there a lot of people at chili's around 8pm?,lambada,avail,0 -yes,okay,original,book,1 -no,naw,parrot,cancel,3 -no,"no, that's wrong",original,cancel,3 -goodbye,bye,original,bye,2 -goodbye,farewell,original,bye,2 -yes,right,parrot,book,1 -greeting,whats new?,parrot,greet,4 -how_busy,tell me the time it takes to get into needham's,parrot,avail,0 -no,so that's no,parrot,cancel,3 -yes,is true,parrot,book,1 -yes,accepted,original,book,1 -yes,approved,original,book,1 -how_busy,how long will it take to sit in needham's?,parrot,avail,0 -greeting,hello how's it going,original,greet,4 -yes,perfect,parrot,book,1 -no,i'm saying no,parrot,cancel,3 -yes,10-Apr,original,book,1 -greeting,whats up?,parrot,greet,4 -greeting,"hi, ai",original,greet,4 -yes,it's positive,parrot,book,1 -no,nothing,parrot,cancel,3 -no,the answer is no,original,cancel,3 -how_busy,do you know how long of a wait it will be?,original,avail,0 -no,nada,original,cancel,3 -how_busy,if i go to chili's pizza how long will it take?,parrot,avail,0 -greeting,heller,original,greet,4 -goodbye,regards,original,bye,2 -meeting_schedule,what's my meeting calendar?,parrot,avail,0 -goodbye,adios!,original,bye,2 -greeting,yo,original,greet,4 -meeting_schedule,is the gang getting together this afternoon?,original,avail,0 -how_busy,can i get a fair estimate on how busy the restaurant is at 8pm?,lambada,avail,0 -reminder_update,let me remember,parrot,resched,5 -no,it's false,parrot,cancel,3 -schedule_meeting,please get together with matthew and write it down,parrot,book,1 -yes,positive,parrot,book,1 -thank_you,thank you ai,parrot,bye,2 -goodbye,"good talk, see you later",original,bye,2 -greeting,hi how's everything?,parrot,greet,4 -no,negatory?,parrot,cancel,3 -no,that is overwhelmingly false,original,cancel,3 -yes,definitely,original,book,1 -yes,it's certainly true,parrot,book,1 -no,negative,original,cancel,3 -yes,indeed,original,book,1 -no,nay,original,cancel,3 -reminder_update,can we set a reminder?,parrot,resched,5 -cancel_reservation,would you cancel my reservation for dinner on friday,parrot,cancel,3 -date,what the day?,parrot,avail,0 -greeting,how's that hanging?,parrot,greet,4 -date,what's today?,parrot,avail,0 -yes,is true,parrot,book,1 -calendar,what do i have on my calendar for march 18?,parrot,avail,0 -greeting,"hello, ai",original,greet,4 -greeting,bonjour,original,greet,4 -yes,just right,parrot,book,1 -date,what the day is?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -goodbye,later goodbye,parrot,bye,2 -goodbye,the chat was great,parrot,bye,2 -thank_you,so grateful,parrot,bye,2 -greeting,salutations,parrot,greet,4 -how_busy,how long is the wait time at red lobster,lambada,avail,0 -greeting,i need to know how i'm doing it,parrot,greet,4 -no,invalid,original,cancel,3 -calendar,show me the calendar of events?,parrot,avail,0 -yes,it's certainly true,parrot,book,1 -cancel_reservation,cancel my reservation for the steak house,parrot,cancel,3 -date,let me know what date,parrot,avail,0 -no,no?,parrot,cancel,3 -how_busy,tell me the number of people in the restaurant at 5pm,parrot,avail,0 -greeting,wassup,original,greet,4 -no,erroneous,parrot,cancel,3 -goodbye,good talk,parrot,bye,2 -how_busy,when is rancho crowded?,parrot,avail,0 -how_busy,how busy is red lobster?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -yes,yes that's right,lambada,book,1 -how_busy,how busy will red robin be at noon?,parrot,avail,0 -thank_you,you gave me that,parrot,bye,2 -goodbye,i'll leave now,parrot,bye,2 -calendar_update,add my birthday to my calendar for the next month on the 5th,parrot,resched,5 -cancel_reservation,please cancel my reservation in the loft,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -goodbye,"thanks for chatting, later",original,bye,2 -no,that is wrong,original,cancel,3 -yes,right,parrot,book,1 -cancel_reservation,delete my dinner reservation,parrot,cancel,3 -how_busy,wait more than an hour in the italian restaurant?,parrot,avail,0 -calendar,what's the schedule for tomorrow?,parrot,avail,0 -meeting_schedule,are there any meetings scheduled today with ash?,parrot,avail,0 -no,that's a no,lambada,cancel,3 -greeting,what's happening,original,greet,4 -meeting_schedule,what is my schedule today?,parrot,avail,0 -how_busy,how long will i have to wait in the cheese cake factory before dinner?,parrot,avail,0 -greeting,good day,original,greet,4 -yes,ok,original,book,1 -reminder_update,keep checking the steak?,parrot,resched,5 -no,no please,parrot,cancel,3 -no,that's a negatory,original,cancel,3 -no,ill pass,original,cancel,3 -thank_you,you've been great,parrot,bye,2 -greeting,how's idy?,parrot,greet,4 -yes,correct,original,book,1 -greeting,hola,original,greet,4 -thank_you,thanks very much,parrot,bye,2 -no,invalid,original,cancel,3 -date,current day,parrot,avail,0 -meeting_schedule,when is today's meeting?,lambada,avail,0 -no,that’s actually wrong,original,cancel,3 -how_busy,how many people get a table in mr barto's,parrot,avail,0 -yes,huh huh,parrot,book,1 -yes,do that?,original,book,1 -thank_you,thanks again!,original,bye,2 -greeting,why hello?,original,greet,4 -meeting_schedule,when is this meeting?,parrot,avail,0 -how_busy,how long will the wait be in a pizza restaurant,parrot,avail,0 -goodbye,so i wanted to talk to you again,parrot,bye,2 -no,so that's no,parrot,cancel,3 -goodbye,see ya!,original,bye,2 -calendar_update,"please remove that event from my calendar, thanks",lambada,resched,5 -yes,confirmed,original,book,1 -greeting,salutations,parrot,greet,4 -no,that's a negatory,original,cancel,3 -yes,approved,original,book,1 -goodbye,adios,original,bye,2 -goodbye,my friend,parrot,bye,2 -greeting,what do you feel today?,parrot,greet,4 -greeting,hey there,original,greet,4 -greeting,whats up,original,greet,4 -goodbye,thank you goodbye,original,bye,2 -greeting,hola,original,greet,4 -greeting,hey yai,lambada,greet,4 -no,that is false,original,cancel,3 -thank_you,thanks,original,bye,2 -reminder_update,just a reminder,parrot,resched,5 -thank_you,good job with trying to do well,lambada,bye,2 -goodbye,greetings,parrot,bye,2 -thank_you,i appreciate you doing it,parrot,bye,2 -yes,definitely yes,parrot,book,1 -no,"please, no",original,cancel,3 -no,it's false,parrot,cancel,3 -reminder_update,make a reminder i have to ask about my job,parrot,resched,5 -how_busy,how much wait will it take to get a table at a restaurant,lambada,avail,0 -goodbye,"bye-bye, my friend",lambada,bye,2 -date,today?,parrot,avail,0 -cancel_reservation,i don't need the reservation anymore,original,cancel,3 -goodbye,see ya!,original,bye,2 -calendar,what's my schedule for july 28?,parrot,avail,0 -yes,perfect,parrot,book,1 -meeting_schedule,when is today's meeting?,lambada,avail,0 -yes,i know,parrot,book,1 -yes,so it's checked,parrot,book,1 -goodbye,the talk was nice,lambada,bye,2 -goodbye,good conversation,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -yes,TRUE,original,book,1 -greeting,what is new?,parrot,greet,4 -greeting,hello hello good day,parrot,greet,4 -yes,yeah,original,book,1 -yes,confirm,original,book,1 -date,what will be the day?,parrot,avail,0 -goodbye,later gater,original,bye,2 -yes,"yep, that's right",original,book,1 -date,i need to know what's the date tomorrow?,parrot,avail,0 -yes,10-Apr,original,book,1 -calendar,do you have anything for february 8?,parrot,avail,0 -thank_you,thanks for cooperating,parrot,bye,2 -no,that is a very bad answer,lambada,cancel,3 -calendar,do i have appointments for march 2nd?,parrot,avail,0 -reminder_update,add a reminder,lambada,resched,5 -schedule_meeting,tell me the size of a meeting room?,parrot,book,1 -greeting,hi,original,greet,4 -greeting,hey,original,greet,4 -greeting,hey there!,original,greet,4 -goodbye,adios!,original,bye,2 -no,no?,parrot,cancel,3 -yes,i know it's true,parrot,book,1 -yes,facts,original,book,1 -no,not happening,original,cancel,3 -goodbye,fairwell,original,bye,2 -no,certainly not,original,cancel,3 -cancel_reservation,what's wrong with my reservation at the red robin?,parrot,cancel,3 -no,not right?,parrot,cancel,3 -no,would be a lie,parrot,cancel,3 -no,there is no,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,i'm glad you've helped me,parrot,bye,2 -thank_you,your answer was enjoyable,original,bye,2 -goodbye,goodnight,original,bye,2 -how_busy,i want to know how busy chili's will be at 7:30 pm,lambada,avail,0 -yes,yep,original,book,1 -goodbye,adios,original,bye,2 -goodbye,later,original,bye,2 -no,it's not correct,parrot,cancel,3 -greeting,ahoy,lambada,greet,4 -greeting,how's life?,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -thank_you,i really thank you,original,bye,2 -yes,oh-huh,parrot,book,1 -greeting,hiya!,original,greet,4 -goodbye,bye!,original,bye,2 -greeting,hi how's my life?,parrot,greet,4 -greeting,"hello, anyone there",original,greet,4 -goodbye,the talk was nice,lambada,bye,2 -calendar,if i know what is on my calendar for friday the 1st,parrot,avail,0 -goodbye,buhbye,original,bye,2 -no,i think it's wrong,parrot,cancel,3 -goodbye,"nice talk, talk to you later",original,bye,2 -thank_you,you helped,parrot,bye,2 -how_busy,does the street get crowded around 11am?,parrot,avail,0 -no,"no, that information is wrong",original,cancel,3 -greeting,salutations,parrot,greet,4 -goodbye,catch you around,original,bye,2 -no,that's very negative,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -date,what's my date tomorrow?,parrot,avail,0 -no,negative,original,cancel,3 -yes,not false,parrot,book,1 -no,negatory?,parrot,cancel,3 -yes,yup,original,book,1 -yes,yeah,original,book,1 -greeting,bonjour,original,greet,4 -yes,good,parrot,book,1 -goodbye,"bye-bye, my friend",lambada,bye,2 -no,say negative,parrot,cancel,3 -yes,and you're correct,parrot,book,1 -goodbye,fairwell?,parrot,bye,2 -schedule_meeting,do you know how do i schedule a meeting?,original,book,1 -yes,yup,original,book,1 -goodbye,goodbye!,original,bye,2 -thank_you,thank you for my donation,parrot,bye,2 -greeting,what's my feeling?,parrot,greet,4 -no,it's the wrong answer,parrot,cancel,3 -calendar_update,i need to set a date on my calendar for next friday,parrot,resched,5 -goodbye,goodbyes,parrot,bye,2 -greeting,wanted to say hi,parrot,greet,4 -thank_you,good job,lambada,bye,2 -goodbye,later gator!,original,bye,2 -goodbye,peace,original,bye,2 -thank_you,gracias,original,bye,2 -goodbye,afterward,parrot,bye,2 -no,i'd rather not,parrot,cancel,3 -how_busy,how long will the wait be at cheese cake factory,lambada,avail,0 -goodbye,maybe next time,parrot,bye,2 -calendar_update,please remove an event from my calendar,lambada,resched,5 -no,it's very wrong,parrot,cancel,3 -yes,10-Apr,original,book,1 -yes,i'd say it's true,parrot,book,1 -goodbye,goodbye ai,parrot,bye,2 -greeting,hola,original,greet,4 -thank_you,thank you?,parrot,bye,2 -yes,so it works,parrot,book,1 -greeting,how's life for you?,parrot,greet,4 -yes,you are yes,lambada,book,1 -goodbye,wonderful conversation,lambada,bye,2 -no,it is very much false,original,cancel,3 -yes,positive,parrot,book,1 -yes,affirmative,original,book,1 -how_busy,what's the cheesecake factory like?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -no,negation,parrot,cancel,3 -no,not right,parrot,cancel,3 -no,nay,original,cancel,3 -greeting,what's up,original,greet,4 -thank_you,i appreciate that answer!,original,bye,2 -reminder_update,set reminders for storing the money,parrot,resched,5 -calendar,tell me what's on my calendar for march 31?,lambada,avail,0 -greeting,hey it's up,lambada,greet,4 -date,date please,original,avail,0 -greeting,hey,original,greet,4 -yes,that is right,original,book,1 -how_busy,which time of day is the most busy for a chili dinner?,parrot,avail,0 -no,i'm afraid not,parrot,cancel,3 -schedule_meeting,if i can get a room between 10 and 12,parrot,book,1 -goodbye,please talk soon,parrot,bye,2 -yes,yes you are right,original,book,1 -yes,"correct, that's true",original,book,1 -yes,so it works,parrot,book,1 -greeting,how's otc?,parrot,greet,4 -calendar,what do i have scheduled for march 2?,original,avail,0 -no,no that is wrong,original,cancel,3 -reminder_update,remember to remember this later,parrot,resched,5 -reminder_update,set a reminder for me to request time off during the holidays,parrot,resched,5 -no,it's very wrong,parrot,cancel,3 -no,naw,parrot,cancel,3 -calendar,display my calendar,lambada,avail,0 -greeting,how is it going,original,greet,4 -reminder_update,the cat needs neutering,parrot,resched,5 -no,not so i think,parrot,cancel,3 -how_busy,how busy is that restaurant at 830?,parrot,avail,0 -no,negating,parrot,cancel,3 -greeting,tell me how you are?,lambada,greet,4 -reminder_update,i need you to remind me to give my cat flea medicine,parrot,resched,5 -how_busy,is mr teddy's busy around 12?,lambada,avail,0 -how_busy,how busy will the chilis be at 6 pm,parrot,avail,0 -thank_you,very grateful,parrot,bye,2 -how_busy,can you tell me how busy chipotle will be at 9 tonight?,parrot,avail,0 -goodbye,later gator!,original,bye,2 -goodbye,goodbye,original,bye,2 -thank_you,thanks,original,bye,2 -how_busy,how busy is peanuts around 7?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -greeting,salutations,parrot,greet,4 -date,is it monday?,parrot,avail,0 -greeting,"hello, ai",original,greet,4 -goodbye,but now i'm leaving,parrot,bye,2 -goodbye,nice talk,lambada,bye,2 -goodbye,goodbye to you,original,bye,2 -goodbye,nice talking to you,parrot,bye,2 -goodbye,sign off,parrot,bye,2 -meeting_schedule,what meetings do i have between 9 and 11?,parrot,avail,0 -how_busy,tio is busy at 830?,parrot,avail,0 -reminder_update,new reminder please,lambada,resched,5 -greeting,hello,original,greet,4 -greeting,"hello, hello, hello",lambada,greet,4 -calendar,let me know what's going on march 21,parrot,avail,0 -no,that is wrong,original,cancel,3 -date,which day is next?,parrot,avail,0 -date,what day it today?,original,avail,0 -yes,absolutely,original,book,1 -yes,that seems true,original,book,1 -date,what is the date?,original,avail,0 -how_busy,how busy is teddy bigger burder around 5,original,avail,0 -calendar_update,stop this thing today,parrot,resched,5 -goodbye,cya later,original,bye,2 -goodbye,good-bye,parrot,bye,2 -calendar,check out my calendar,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -no,erroneous,parrot,cancel,3 -no,that's incorrect,original,cancel,3 -how_busy,how busy is a meal at red lobster tonight,lambada,avail,0 -thank_you,"nice, excellent!",original,bye,2 -yes,that is true,original,book,1 -greeting,hey fellows,parrot,greet,4 -goodbye,bye now,original,bye,2 -yes,that's the truth,original,book,1 -date,what's the date of tomorrow?,parrot,avail,0 -yes,thats right,original,book,1 -greeting,heller,original,greet,4 -schedule_meeting,i want to know how to find a new meeting,lambada,book,1 -goodbye,sayonara,original,bye,2 -yes,just right,parrot,book,1 -no,that's incorrect!,original,cancel,3 -no,"no, that is false",lambada,cancel,3 -date,what is month and day?,parrot,avail,0 -goodbye,signing off,original,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -thank_you,i'm thankful,original,bye,2 -thank_you,you've been a big help,original,bye,2 -goodbye,i'll leave,parrot,bye,2 -yes,okay,original,book,1 -no,nope,original,cancel,3 -thank_you,thanks please,original,bye,2 -yes,ok,original,book,1 -date,what's the date,original,avail,0 -goodbye,goodbye ai,parrot,bye,2 -yes,roger that,original,book,1 -goodbye,bye-bye,original,bye,2 -schedule_meeting,how many meeting rooms are available for noon?,parrot,book,1 -yes,that's the truth,original,book,1 -no,i would prefer not,original,cancel,3 -goodbye,goodbye!,original,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -how_busy,can i expect orange isle to be busy around 7:30?,lambada,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,send a goodbye,lambada,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -no,nay,original,cancel,3 -no,not good idea,parrot,cancel,3 -cancel_reservation,could i cancel my reservations,original,cancel,3 -meeting_schedule,what's my schedule today?,parrot,avail,0 -no,"sorry, that is not true",original,cancel,3 -cancel_reservation,i would like to cancel my reservation for nenuco's restaurant to x- tapas,original,cancel,3 -yes,ok,original,book,1 -date,is today the day?,parrot,avail,0 -no,naw,parrot,cancel,3 -goodbye,adios!,original,bye,2 -goodbye,goodbye!,original,bye,2 -meeting_schedule,do any meetings exist between 2 and 5?,lambada,avail,0 -thank_you,much obliged,original,bye,2 -calendar_update,can i make an appointment for my anniversary on 4th of may,parrot,resched,5 -greeting,you good?,parrot,greet,4 -no,i would say no,lambada,cancel,3 -greeting,good morning,parrot,greet,4 -thank_you,thank you kindly,original,bye,2 -no,that's totally wrong!,original,cancel,3 -no,it's very wrong,parrot,cancel,3 -date,describe the day?,parrot,avail,0 -greeting,hey how have you been,parrot,greet,4 -no,it is false,original,cancel,3 -yes,positive,parrot,book,1 -calendar,what's tuesday on my calendar?,parrot,avail,0 -date,today is the date,parrot,avail,0 -greeting,yo,original,greet,4 -goodbye,i'll talk to you later,parrot,bye,2 -goodbye,sayonara,original,bye,2 -calendar_update,make sure that i can't have a party on my calendar,lambada,resched,5 -goodbye,i'm going,parrot,bye,2 -date,date tomorrow?,parrot,avail,0 -goodbye,it was fun talking to you,parrot,bye,2 -goodbye,thanks for the great talk,parrot,bye,2 -greeting,good evening,original,greet,4 -calendar,what is the date on my calendar for my birthday,parrot,avail,0 -how_busy,can you give me an estimate of how busy the restaurant is at 8pm?,parrot,avail,0 -how_busy,how long will it take to get a table at chili's steak house?,parrot,avail,0 -date,what's the date for the month and the week,lambada,avail,0 -thank_you,gracias,original,bye,2 -date,what will be the date of 200 days?,parrot,avail,0 -no,"no, that is invalid",original,cancel,3 -goodbye,peace,original,bye,2 -how_busy,how busy is olive garden at 6,lambada,avail,0 -no,i think that's not correct,parrot,cancel,3 -thank_you,"nice, excellent!",original,bye,2 -no,nada,original,cancel,3 -goodbye,tootles,original,bye,2 -calendar_update,add a family reunion to my calendar for next friday,parrot,resched,5 -goodbye,adios,original,bye,2 -no,"no, that would be false",lambada,cancel,3 -no,negation,parrot,cancel,3 -no,naw,original,cancel,3 -date,"in 10 days, what will be the day's date",lambada,avail,0 -thank_you,i appreciate that you helped me,parrot,bye,2 -no,nay,original,cancel,3 -goodbye,good bye,original,bye,2 -greeting,how's ai doing?,parrot,greet,4 -greeting,hiya!,original,greet,4 -goodbye,bye,original,bye,2 -greeting,ahoy,lambada,greet,4 -goodbye,bye bye,lambada,bye,2 -how_busy,is mr joe's pizza a regular dinner time?,parrot,avail,0 -greeting,hi,original,greet,4 -greeting,aloha,original,greet,4 -no,so that's no,parrot,cancel,3 -goodbye,i'm going,parrot,bye,2 -yes,good yes,lambada,book,1 -no,it is false,original,cancel,3 -date,what date will it be in four days?,lambada,avail,0 -greeting,hello what are you doing,parrot,greet,4 -greeting,hello there!,original,greet,4 -no,nada,original,cancel,3 -yes,yup,original,book,1 -reminder_update,i need to remind myself to do this,lambada,resched,5 -how_busy,is chili busy at 5 pm?,parrot,avail,0 -calendar,can you see my calendar for next tuesday the 17th?,lambada,avail,0 -no,no that's not it,parrot,cancel,3 -goodbye,very nice conversation,parrot,bye,2 -how_busy,how long will i have to wait in tiembe tacoma,parrot,avail,0 -goodbye,adios!,original,bye,2 -no,"nope, that's false",original,cancel,3 -no,i disagree,parrot,cancel,3 -how_busy,how busy is the restaurant at 6 pm,lambada,avail,0 -thank_you,thanks again!,original,bye,2 -no,absolutely false,parrot,cancel,3 -thank_you,i'm grateful,original,bye,2 -calendar_update,please add an event to my calendar for the 1st september,parrot,resched,5 -cancel_reservation,take out my reservation for dinner,parrot,cancel,3 -yes,ok,original,book,1 -no,naw,original,cancel,3 -thank_you,thanks a million,original,bye,2 -no,that's negative,parrot,cancel,3 -schedule_meeting,i'd like to know how to find a new meeting,parrot,book,1 -no,that's not the case,parrot,cancel,3 -reminder_update,keep me in mind,parrot,resched,5 -no,that's bad,parrot,cancel,3 -goodbye,until next time!,original,bye,2 -meeting_schedule,tell me the meeting schedule for the day?,original,avail,0 -calendar,did i set an appointment on my calendar?,parrot,avail,0 -meeting_schedule,are there any meetings between noon and 1?,parrot,avail,0 -no,nothing,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -greeting,heyo,original,greet,4 -greeting,"howdy, what's new",original,greet,4 -schedule_meeting,is there a meeting room available between 4 and 8?,parrot,book,1 -greeting,salutations!,original,greet,4 -no,that's bad,parrot,cancel,3 -goodbye,thanks goodbye,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -thank_you,good job thanks,parrot,bye,2 -goodbye,later,original,bye,2 -calendar,do you have a black friday note?,parrot,avail,0 -no,i don't agree,parrot,cancel,3 -date,what do you think the date will be in 200 days?,parrot,avail,0 -yes,affirmitive,original,book,1 -greeting,well hi there,original,greet,4 -cancel_reservation,how do i cancel a reservation in advance?,parrot,cancel,3 -date,in five days?,parrot,avail,0 -no,that's erroneous,parrot,cancel,3 -cancel_reservation,make sure my reservation at umami with carl is canceled,original,cancel,3 -calendar,please tell me what's on my calendar for march 22nd,parrot,avail,0 -date,in 100 days?,parrot,avail,0 -date,can you tell me what the next day is?,original,avail,0 -thank_you,thank a bunch,original,bye,2 -yes,facts,original,book,1 -greeting,hiya,original,greet,4 -calendar,does the calendar already have easter noted on it?,original,avail,0 -thank_you,my gratitude,parrot,bye,2 -no,i do not agree,lambada,cancel,3 -no,ill pass,original,cancel,3 -goodbye,goodbye later,parrot,bye,2 -thank_you,good job,lambada,bye,2 -yes,affirmitive,original,book,1 -goodbye,thanks bye bye!,original,bye,2 -how_busy,i want to know how busy ruby tuesday will be at around 8:45 pm,original,avail,0 -thank_you,many thank,original,bye,2 -yes,uh-huh,original,book,1 -yes,is true,parrot,book,1 -greeting,how it goes my friend?,parrot,greet,4 -thank_you,i am grateful,lambada,bye,2 -reminder_update,remind me to set the meat out to defrost,original,resched,5 -yes,good,parrot,book,1 -yes,positive,parrot,book,1 -no,that is so false,original,cancel,3 -greeting,bonjour,original,greet,4 -no,nay,original,cancel,3 -meeting_schedule,will there be meetings between 10 and 11 today?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -yes,i think you're right,parrot,book,1 -goodbye,goodbye!,original,bye,2 -no,please no,parrot,cancel,3 -thank_you,your response was good,parrot,bye,2 -greeting,wassup,original,greet,4 -greeting,"hey, what's new",original,greet,4 -schedule_meeting,is it possible to book a meeting room between 10 and 11?,original,book,1 -thank_you,the best,parrot,bye,2 -goodbye,please talk soon,parrot,bye,2 -date,in 100 days?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -greeting,salutations,parrot,greet,4 -yes,perfect,parrot,book,1 -thank_you,my thanks,parrot,bye,2 -calendar_update,write a doctor appointment on my calendar,parrot,resched,5 -no,that's no,parrot,cancel,3 -thank_you,you've given me that,parrot,bye,2 -no,so that's no,parrot,cancel,3 -no,that's untrue,parrot,cancel,3 -thank_you,and i want to thank you for my help,parrot,bye,2 -meeting_schedule,when are we going to meet today?,parrot,avail,0 -thank_you,thank you ai,parrot,bye,2 -date,is it monday?,parrot,avail,0 -no,invalid,original,cancel,3 -thank_you,a million thanks,parrot,bye,2 -date,current date,original,avail,0 -yes,TRUE,original,book,1 -goodbye,farewell,original,bye,2 -reminder_update,what about a reminder,parrot,resched,5 -date,in 7 days?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,indeed,original,book,1 -yes,affirmative,original,book,1 -yes,"yes, that's accurate",original,book,1 -no,i'll pass,original,cancel,3 -yes,sure,original,book,1 -calendar_update,delete events on june 1st,parrot,resched,5 -thank_you,i appeciate it,parrot,bye,2 -no,say negative,parrot,cancel,3 -date,what date is in 30 days?,lambada,avail,0 -yes,indeed,parrot,book,1 -date,today?,parrot,avail,0 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -thank_you,okay thank you,parrot,bye,2 -date,please date,parrot,avail,0 -greeting,heller,original,greet,4 -no,not happening,original,cancel,3 -schedule_meeting,get me a meeting with bill for 5:30pm tomorrow,original,book,1 -calendar_update,leave the june 4 date open on my calendar,parrot,resched,5 -goodbye,afterward,parrot,bye,2 -yes,okay,original,book,1 -yes,yes you are,original,book,1 -greeting,tell me how ai is doing?,parrot,greet,4 -how_busy,how long does it take for a table in chipotle?,parrot,avail,0 -yes,confirmed,original,book,1 -greeting,how's my doing?,parrot,greet,4 -yes,that'd be great,parrot,book,1 -goodbye,buhbye,original,bye,2 -no,negative,original,cancel,3 -goodbye,good bye,original,bye,2 -calendar_update,clear my calendar on february 28th,parrot,resched,5 -greeting,hey,original,greet,4 -cancel_reservation,can you cancel the reservation at black cherries?,parrot,cancel,3 -no,no no thanks,parrot,cancel,3 -no,that is overwhelmingly false,original,cancel,3 -yes,it's definitely positive,parrot,book,1 -date,please show the date,parrot,avail,0 -no,that's not factual,parrot,cancel,3 -no,negating,parrot,cancel,3 -thank_you,and i'm grateful,parrot,bye,2 -yes,"correct, that's true",original,book,1 -goodbye,afterward,parrot,bye,2 -goodbye,goodbye soon,lambada,bye,2 -thank_you,appreciate it,original,bye,2 -thank_you,you do an awesome job,lambada,bye,2 -yes,indeed,parrot,book,1 -greeting,good morning,parrot,greet,4 -goodbye,bye!,original,bye,2 -calendar,is there a date on my calendar for sunday?,parrot,avail,0 -thank_you,you're welcome,parrot,bye,2 -calendar_update,undo the last event on my calendar,original,resched,5 -no,no thanks,original,cancel,3 -thank_you,merci beaucoup,original,bye,2 -yes,a fact,parrot,book,1 -goodbye,see you around,original,bye,2 -goodbye,adios,original,bye,2 -greeting,hello what's up?,parrot,greet,4 -goodbye,im leaving goodbye,parrot,bye,2 -how_busy,how long will the wait be at pee pee's,lambada,avail,0 -greeting,what's going on with you?,parrot,greet,4 -no,so that's no,parrot,cancel,3 -calendar,what's on my schedule for march 7th?,parrot,avail,0 -how_busy,tell me how busy the chili hole is?,parrot,avail,0 -thank_you,thank ya!,original,bye,2 -goodbye,good night,original,bye,2 -yes,"yes, please",parrot,book,1 -yes,that is right,original,book,1 -yes,facts,original,book,1 -reminder_update,remember me to call tomorrow,parrot,resched,5 -yes,yes sir,original,book,1 -no,not correct,parrot,cancel,3 -yes,yeah,original,book,1 -reminder_update,set up a reminder to bring my deposit money to work,lambada,resched,5 -reminder_update,give me a reminder,parrot,resched,5 -no,nada,original,cancel,3 -yes,TRUE,original,book,1 -goodbye,i'm going,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -yes,obviously,parrot,book,1 -no,negative certainly,parrot,cancel,3 -date,what year is this?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -calendar,please tell me what is showing on my calendar for march 25th,lambada,avail,0 -thank_you,good to look at,parrot,bye,2 -yes,ok,original,book,1 -greeting,salutation,parrot,greet,4 -yes,huh,parrot,book,1 -meeting_schedule,can i have a meeting with kim today?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -schedule_meeting,can you set up a meeting with cole for 4pm?,lambada,book,1 -how_busy,how long will it take to get a table at ihop,lambada,avail,0 -no,nay,original,cancel,3 -no,negative definitely,parrot,cancel,3 -date,you have the date?,parrot,avail,0 -goodbye,this was a great conversation,original,bye,2 -how_busy,i want to know how long it takes to open a tequila bar,parrot,avail,0 -calendar_update,can you add this event to my calendar for today?,parrot,resched,5 -greeting,what is new?,parrot,greet,4 -yes,yes,original,book,1 -no,definitely not,original,cancel,3 -goodbye,sign off,parrot,bye,2 -yes,affirmative,original,book,1 -yes,absolutely!,original,book,1 -greeting,aho,parrot,greet,4 -reminder_update,"new reminder, please",original,resched,5 -yes,good,parrot,book,1 -goodbye,regards,original,bye,2 -greeting,hey fellow,parrot,greet,4 -yes,that's a fact,lambada,book,1 -yes,i know this is true,lambada,book,1 -thank_you,you're the best!,original,bye,2 -greeting,how are you doing?,parrot,greet,4 -no,that is wrong,original,cancel,3 -yes,oh-huh,parrot,book,1 -how_busy,how busy is the red robin around five?,parrot,avail,0 -greeting,hey,original,greet,4 -no,nope,original,cancel,3 -calendar_update,please remove fishing from my calendar for soccer,original,resched,5 -greeting,how's life treating you,parrot,greet,4 -how_busy,is ihop busy?,parrot,avail,0 -no,no,lambada,cancel,3 -yes,accepted,original,book,1 -goodbye,tootles?,parrot,bye,2 -yes,uh-huh,original,book,1 -no,that's wrong,original,cancel,3 -date,date tomorrow,parrot,avail,0 -how_busy,ihop around 10 pm,parrot,avail,0 -calendar_update,remove the jess party from my calendar,parrot,resched,5 -goodbye,later,original,bye,2 -goodbye,signing off,original,bye,2 -goodbye,peace,original,bye,2 -how_busy,does the wait time at igor's be long?,lambada,avail,0 -greeting,hey hey!,original,greet,4 -yes,yup,original,book,1 -yes,confirmed,original,book,1 -no,it is not that,lambada,cancel,3 -date,what date is that?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -no,no it's a lie,parrot,cancel,3 -meeting_schedule,what meetings are scheduled today?,lambada,avail,0 -date,date tomorrow?,parrot,avail,0 -thank_you,thank you so much for helping,parrot,bye,2 -cancel_reservation,i want to cancel my reservation for fred at the red robin,parrot,cancel,3 -yes,yes sir,original,book,1 -yes,okay,original,book,1 -yes,absolutely,original,book,1 -goodbye,signing off,original,bye,2 -thank_you,thank you kindly,original,bye,2 -no,no?,parrot,cancel,3 -yes,perfect,parrot,book,1 -no,please no,parrot,cancel,3 -calendar,what is on my calendar for march 2?,parrot,avail,0 -greeting,wassup,original,greet,4 -no,the information is not true,parrot,cancel,3 -date,what happens in six days?,parrot,avail,0 -goodbye,i enjoyed our talk,parrot,bye,2 -yes,my answer to you is yes,parrot,book,1 -greeting,salutations,parrot,greet,4 -thank_you,thanks very much for your answer,parrot,bye,2 -yes,TRUE,lambada,book,1 -no,the negator,parrot,cancel,3 -how_busy,would you say that red lobster's pretty buy at noon,original,avail,0 -greeting,hey,original,greet,4 -how_busy,is imbrosio busy at 6?,parrot,avail,0 -meeting_schedule,what do you think are the meetings today?,parrot,avail,0 -greeting,hey there,original,greet,4 -thank_you,thanks please,original,bye,2 -no,that's very wrong,parrot,cancel,3 -how_busy,do you know how busy the cheese steak house is at 7?,parrot,avail,0 -thank_you,"oh, thanks",original,bye,2 -no,so that's no,parrot,cancel,3 -yes,i know what i get,parrot,book,1 -goodbye,goodnight,original,bye,2 -yes,right,parrot,book,1 -yes,i'll say yes,parrot,book,1 -greeting,hey fellows,parrot,greet,4 -goodbye,until next time!,original,bye,2 -date,today's date is exactly what?,parrot,avail,0 -greeting,hi,original,greet,4 -yes,"yes, please",parrot,book,1 -no,i disagree,parrot,cancel,3 -date,what date is it?,original,avail,0 -how_busy,how long do i have to wait for a table at the red lobster?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -how_busy,how long is the wait time at the italian restaurant,lambada,avail,0 -goodbye,goodbye then,parrot,bye,2 -greeting,hola!,original,greet,4 -greeting,hi ai,original,greet,4 -greeting,yo how is it going?,parrot,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -date,what date do we enter in the future?,parrot,avail,0 -thank_you,i'm glad you did it for me,parrot,bye,2 -no,i believe my claim is incorrect,parrot,cancel,3 -yes,you said i have it,lambada,book,1 -no,nay,original,cancel,3 -no,nay,original,cancel,3 -goodbye,i'm outta here!,original,bye,2 -how_busy,how long will it be at 7:30,lambada,avail,0 -yes,yes you are right,original,book,1 -greeting,welcome,parrot,greet,4 -yes,great,original,book,1 -yes,that would be true,original,book,1 -goodbye,you're done,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -thank_you,nice,parrot,bye,2 -yes,"yep, that's true",original,book,1 -no,it's a no,original,cancel,3 -goodbye,bye bye now,lambada,bye,2 -goodbye,bye-bye,original,bye,2 -thank_you,nice,parrot,bye,2 -yes,perfect,parrot,book,1 -yes,i'd say that's true,parrot,book,1 -date,what's tomorrow's date,original,avail,0 -goodbye,good conversation,parrot,bye,2 -schedule_meeting,can you arrange a meeting with damon for 1?,parrot,book,1 -greeting,hello there ai,original,greet,4 -goodbye,it's over,parrot,bye,2 -calendar_update,i have to add something to my calendar for next tuesday,parrot,resched,5 -date,which day is next,parrot,avail,0 -how_busy,if the lobster is crowded around 5pm check,parrot,avail,0 -no,that's incorrect,original,cancel,3 -goodbye,fairwell?,parrot,bye,2 -goodbye,for now,parrot,bye,2 -thank_you,thank you for the reply,lambada,bye,2 -goodbye,buhbye,original,bye,2 -yes,certainly true,parrot,book,1 -greeting,how is life?,parrot,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,okay,original,book,1 -goodbye,goodbye then,parrot,bye,2 -greeting,aloha,original,greet,4 -how_busy,how long will it take me to be seated at cheese steak house?,parrot,avail,0 -reminder_update,set a reminder,original,resched,5 -greeting,why hello?,original,greet,4 -no,negatory,original,cancel,3 -no,negatory?,parrot,cancel,3 -goodbye,bye,original,bye,2 -thank_you,thank you?,parrot,bye,2 -thank_you,your answer was enjoyable,original,bye,2 -schedule_meeting,can you schedule a time?,parrot,book,1 -how_busy,when is the restaurant the busiest?,parrot,avail,0 -thank_you,thanks so much ai,original,bye,2 -yes,i guess yes,parrot,book,1 -yes,absolutely correct,original,book,1 -how_busy,are chicken dinners busy?,lambada,avail,0 -no,not true i think,parrot,cancel,3 -yes,"yes, i'd really like that alot",original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,yes i am,original,book,1 -no,the information is inaccurate,parrot,cancel,3 -yes,definitely,original,book,1 -yes,of course,original,book,1 -no,nope,original,cancel,3 -goodbye,talk later,original,bye,2 -no,that's not right,original,cancel,3 -goodbye,goodbye ai,parrot,bye,2 -goodbye,signing off,original,bye,2 -yes,affirmitive,original,book,1 -greeting,hey bs,lambada,greet,4 -how_busy,how busy will the red lobster be at 6pm?,parrot,avail,0 -calendar,what's on the calendar for march 2?,parrot,avail,0 -yes,certainly,parrot,book,1 -greeting,whats up?,parrot,greet,4 -no,i am saying no,original,cancel,3 -no,i'll pass,original,cancel,3 -greeting,welcome,parrot,greet,4 -calendar,are there any events in my calendar for march 2nd?,parrot,avail,0 -yes,it's logical,parrot,book,1 -calendar,what's on my calendar for march 18?,parrot,avail,0 -yes,it's logical,parrot,book,1 -goodbye,i'm out,parrot,bye,2 -no,that's a false,lambada,cancel,3 -yes,and you're correct,parrot,book,1 -schedule_meeting,a meeting is needed,parrot,book,1 -yes,ok,original,book,1 -yes,yeah,original,book,1 -thank_you,well done,parrot,bye,2 -yes,TRUE,original,book,1 -goodbye,later good luck,parrot,bye,2 -greeting,welcome,parrot,greet,4 -yes,okay,original,book,1 -goodbye,farewell!,original,bye,2 -yes,that's correct,original,book,1 -no,no that isn't correct,original,cancel,3 -yes,sure,original,book,1 -date,what's today?,parrot,avail,0 -yes,positive,parrot,book,1 -no,that’s actually wrong,original,cancel,3 -no,negative,original,cancel,3 -no,false sure,parrot,cancel,3 -goodbye,i’m leaving-goodbye!,original,bye,2 -cancel_reservation,call off the dinner reservation,original,cancel,3 -thank_you,merci beaucoup,original,bye,2 -thank_you,i'm very grateful,parrot,bye,2 -greeting,what's new,lambada,greet,4 -greeting,you're all right?,parrot,greet,4 -thank_you,thanks so much for everything,parrot,bye,2 -goodbye,good to see you again,parrot,bye,2 -no,that's inaccurate,original,cancel,3 -goodbye,the chat was great,parrot,bye,2 -yes,facts,original,book,1 -greeting,well hello,original,greet,4 -greeting,wassup,original,greet,4 -no,negating,parrot,cancel,3 -no,that isn't true,lambada,cancel,3 -yes,you are yes,lambada,book,1 -thank_you,i owe you,parrot,bye,2 -yes,huh,parrot,book,1 -thank_you,i appreciate your gesture,lambada,bye,2 -how_busy,if i want to get a table at the hotel how long will it take,parrot,avail,0 -no,invalid,original,cancel,3 -goodbye,good-bye,parrot,bye,2 -yes,i know that's true,parrot,book,1 -goodbye,later then,lambada,bye,2 -date,give me the date,original,avail,0 -how_busy,will there be a long wait at the ozone restaurant in the evening?,parrot,avail,0 -thank_you,again thanks,parrot,bye,2 -yes,indeed,original,book,1 -yes,certainly,parrot,book,1 -greeting,hola,original,greet,4 -yes,affirmitive,original,book,1 -yes,you're right,original,book,1 -greeting,heyo,original,greet,4 -yes,correct,original,book,1 -calendar,tell me what's on my calendar for march 15th,parrot,avail,0 -meeting_schedule,are there any meetings with linus?,parrot,avail,0 -thank_you,i'm happy with my response,parrot,bye,2 -yes,definitely,original,book,1 -thank_you,you made me aware,parrot,bye,2 -greeting,hey how are you feeling?,parrot,greet,4 -yes,i'm sure it was done,parrot,book,1 -how_busy,will i have to wait long for a table in the restaurant?,parrot,avail,0 -goodbye,a good conversation,parrot,bye,2 -no,don't agree,parrot,cancel,3 -greeting,hi there,original,greet,4 -goodbye,sayonara,original,bye,2 -thank_you,you've tried,parrot,bye,2 -greeting,whats new,lambada,greet,4 -calendar,are i looking at anything on my calendar for march 2nd?,lambada,avail,0 -greeting,what's new,lambada,greet,4 -greeting,what's new?,parrot,greet,4 -greeting,hiya!,original,greet,4 -how_busy,is there a sitting time in this restaurant?,parrot,avail,0 -thank_you,my thanks,parrot,bye,2 -no,"no, that's incorrect",original,cancel,3 -goodbye,see ya!,original,bye,2 -yes,i'll vote for you,parrot,book,1 -yes,great,original,book,1 -no,but no way?,parrot,cancel,3 -goodbye,and then goodbye,parrot,bye,2 -goodbye,later gator!,original,bye,2 -how_busy,i want to know the number of people that frequent tacoma swans,parrot,avail,0 -no,FALSE,lambada,cancel,3 -greeting,how's everything,original,greet,4 -greeting,yo how's it going,parrot,greet,4 -meeting_schedule,please share my schedule of meetings with me,parrot,avail,0 -thank_you,thanks for the information,parrot,bye,2 -yes,TRUE,original,book,1 -yes,10-Apr,original,book,1 -yes,accept,parrot,book,1 -reminder_update,remember to clean the shower,parrot,resched,5 -cancel_reservation,can you cancel my reservation for steve?,parrot,cancel,3 -yes,right,parrot,book,1 -greeting,hey,original,greet,4 -date,"what is the month, day, hour, and minute in the week?",lambada,avail,0 -no,not good,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -goodbye,farewell,original,bye,2 -date,what's the day now?,parrot,avail,0 -greeting,hiya,original,greet,4 -meeting_schedule,when is my meeting?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -date,what's the next week?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -yes,not false,parrot,book,1 -yes,that's correct,original,book,1 -goodbye,thanks goodbye,parrot,bye,2 -no,that's a negatory,original,cancel,3 -how_busy,show me how long it will take to get a table at the egg salad factory?,parrot,avail,0 -greeting,hi,original,greet,4 -yes,my response is correct,parrot,book,1 -yes,great,original,book,1 -no,invalid,original,cancel,3 -yes,certainly true,parrot,book,1 -thank_you,thanks!,original,bye,2 -no,this is false,parrot,cancel,3 -goodbye,glad we talked,parrot,bye,2 -goodbye,fairwell,original,bye,2 -no,not that,original,cancel,3 -schedule_meeting,tell me if there is a meeting room available at 11am?,lambada,book,1 -goodbye,later,original,bye,2 -how_busy,does a coffee bean work at seven?,parrot,avail,0 -thank_you,you're welcome,parrot,bye,2 -yes,is true,parrot,book,1 -yes,TRUE,lambada,book,1 -goodbye,as regards,parrot,bye,2 -no,nope,original,cancel,3 -calendar_update,write down appointment for my doctor on my calendar,lambada,resched,5 -thank_you,and i thank you,parrot,bye,2 -greeting,hey,original,greet,4 -no,"no, that's incorrect",original,cancel,3 -goodbye,goodbye!,original,bye,2 -goodbye,goodbye no problem,parrot,bye,2 -goodbye,regards,original,bye,2 -yes,oh yeah that is true,lambada,book,1 -greeting,so what's up?,parrot,greet,4 -goodbye,ai goodbye,original,bye,2 -reminder_update,set up a reminder to give the cat her flea medicine,original,resched,5 -goodbye,as regards,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -yes,okay,original,book,1 -no,is not true?,parrot,cancel,3 -how_busy,is mr joe's steakhouse crowded?,parrot,avail,0 -no,not good,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -no,naw,parrot,cancel,3 -thank_you,you made me aware,parrot,bye,2 -yes,accepted,original,book,1 -schedule_meeting,i have trouble scheduling a meeting,parrot,book,1 -greeting,ahoy,lambada,greet,4 -thank_you,you have my sincere gratitude,original,bye,2 -no,FALSE,original,cancel,3 -how_busy,how busy is the yellowstone steak house,lambada,avail,0 -greeting,hows are ya,original,greet,4 -no,yes it's false,parrot,cancel,3 -how_busy,when is red lobster busy?,parrot,avail,0 -yes,we would say yes,lambada,book,1 -thank_you,nice,parrot,bye,2 -date,what month is it today?,lambada,avail,0 -meeting_schedule,do i have to be present for any meeting?,parrot,avail,0 -date,i need information about the date today,parrot,avail,0 -goodbye,i'll have to go,parrot,bye,2 -greeting,what's up,original,greet,4 -how_busy,how long does a macaroni grill take to wait?,parrot,avail,0 -no,no?,parrot,cancel,3 -goodbye,thanks bye bye!,original,bye,2 -date,what day?,parrot,avail,0 -thank_you,you were a big help,parrot,bye,2 -greeting,hiya!,original,greet,4 -greeting,heyo,original,greet,4 -greeting,ahoy,lambada,greet,4 -thank_you,i'd like to say thanks for helping me,lambada,bye,2 -how_busy,tell me the number of people waiting in line at chili's 5 pm?,parrot,avail,0 -yes,i want it,parrot,book,1 -thank_you,thanks for helping out,original,bye,2 -thank_you,you're so much help,parrot,bye,2 -calendar_update,please add my wedding to my calendar for march 5th,parrot,resched,5 -thank_you,okay thank you,parrot,bye,2 -thank_you,you've tried,parrot,bye,2 -no,that's erroneous,parrot,cancel,3 -calendar,tell me what my calendar shows for april 15?,lambada,avail,0 -reminder_update,remind me to bring raincoat tomorrow,lambada,resched,5 -goodbye,good chatting with you,lambada,bye,2 -how_busy,how busy is red lobster around 6?,parrot,avail,0 -goodbye,thanks goodbye,parrot,bye,2 -yes,okay,original,book,1 -date,please tell me the day today,parrot,avail,0 -yes,oh-huh,parrot,book,1 -greeting,i want to know how is things going,lambada,greet,4 -greeting,wassup,original,greet,4 -no,negatory?,parrot,cancel,3 -yes,not false,parrot,book,1 -no,no,lambada,cancel,3 -yes,10-Apr,original,book,1 -greeting,how ya doin,original,greet,4 -cancel_reservation,please cancel my reservation at red lobster for 6,original,cancel,3 -no,naw,original,cancel,3 -reminder_update,can you set a reminder for me?,original,resched,5 -yes,perfect,parrot,book,1 -yes,correct,original,book,1 -yes,good yes,lambada,book,1 -thank_you,again thank you,parrot,bye,2 -date,you have the date?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -yes,"affirmative, go ahead",original,book,1 -goodbye,thank you for the chat,parrot,bye,2 -no,no!,original,cancel,3 -no,it's a negation,parrot,cancel,3 -no,no,lambada,cancel,3 -greeting,wassup,original,greet,4 -date,a year?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -greeting,"hello, ai",original,greet,4 -how_busy,how busy the olive garden is?,parrot,avail,0 -how_busy,how busy is peanut butter at 5pm?,parrot,avail,0 -goodbye,bye!,original,bye,2 -calendar,show me the events on my calendar for april 1?,parrot,avail,0 -yes,uh-huh,original,book,1 -goodbye,afterward,parrot,bye,2 -date,what's the day now??,parrot,avail,0 -greeting,heyo,original,greet,4 -yes,definitely,original,book,1 -greeting,aho,parrot,greet,4 -no,but we don't want it,parrot,cancel,3 -no,that's untrue,parrot,cancel,3 -goodbye,great talk,lambada,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -thank_you,thanks again,original,bye,2 -goodbye,i'll have to go,parrot,bye,2 -goodbye,i have to leave now?,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -no,not happening,original,cancel,3 -how_busy,how long is the wait on friday?,parrot,avail,0 -no,that's not it,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -thank_you,thank you so much for the answer,parrot,bye,2 -goodbye,go easy,parrot,bye,2 -thank_you,thanks for that,original,bye,2 -reminder_update,pay taxes on monday,parrot,resched,5 -greeting,hi,original,greet,4 -how_busy,how long will it take to get a seat at pizzerias,lambada,avail,0 -goodbye,cya later,original,bye,2 -no,false sure,parrot,cancel,3 -yes,that is right,original,book,1 -thank_you,i'm glad you helped,parrot,bye,2 -yes,that checks out,original,book,1 -no,that's not true it's false,parrot,cancel,3 -goodbye,goodbye then,parrot,bye,2 -greeting,good evening,original,greet,4 -no,i don't like that,parrot,cancel,3 -no,please no,parrot,cancel,3 -yes,it makes sense,parrot,book,1 -greeting,how's everything?,parrot,greet,4 -goodbye,", goodbye",lambada,bye,2 -meeting_schedule,how many meetings do i have between 9 and 10 meetings?,parrot,avail,0 -thank_you,you helped,parrot,bye,2 -goodbye,"enjoy my day, goodbye",original,bye,2 -how_busy,how busy this restaurant is at dinner time?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -greeting,yo how yo feelin,lambada,greet,4 -how_busy,is there any wait time at bjs right now??,parrot,avail,0 -goodbye,this conversation was wonderful,parrot,bye,2 -date,which date today?,parrot,avail,0 -calendar,what's in my calendar for march 01?,parrot,avail,0 -how_busy,how long will i wait for a table at tamales?,parrot,avail,0 -greeting,how's idy?,parrot,greet,4 -schedule_meeting,i have to have a meeting today,parrot,book,1 -yes,confirmed,original,book,1 -no,what isn't true?,parrot,cancel,3 -how_busy,can i expect chili's to be crowded before 5?,lambada,avail,0 -calendar_update,please cancel the event on march 15th,parrot,resched,5 -thank_you,well done,parrot,bye,2 -no,nay,original,cancel,3 -how_busy,is mr joes steakhouse crowded?,parrot,avail,0 -no,invalid,original,cancel,3 -goodbye,fairwell,original,bye,2 -thank_you,gracias,original,bye,2 -cancel_reservation,cancel the reservation i made for 8 pm,parrot,cancel,3 -cancel_reservation,cancel that reservation for 8 at barney's,original,cancel,3 -thank_you,the best,parrot,bye,2 -goodbye,farewell,original,bye,2 -no,nothing,parrot,cancel,3 -greeting,hiya,original,greet,4 -no,that is false,original,cancel,3 -how_busy,will the restaurant be busiest in the mornings,lambada,avail,0 -goodbye,i'll go,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -no,that's bad,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -thank_you,thanks for that!,original,bye,2 -yes,agreed,original,book,1 -greeting,how's life,original,greet,4 -yes,"yes, please",original,book,1 -yes,and you're right,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -how_busy,how long will it take to get seated in the clean restaurant?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -goodbye,"bye-bye, my friend",lambada,bye,2 -goodbye,im leaving goodbye,parrot,bye,2 -no,"please, no",original,cancel,3 -no,the negator,parrot,cancel,3 -thank_you,why thank you?,original,bye,2 -greeting,hiya!,original,greet,4 -goodbye,thanks for chatting,lambada,bye,2 -yes,confirmed,original,book,1 -goodbye,later,original,bye,2 -yes,positive,parrot,book,1 -greeting,hey bs,lambada,greet,4 -date,what date today?,parrot,avail,0 -no,that's erroneous,parrot,cancel,3 -yes,correct,original,book,1 -no,negation,parrot,cancel,3 -yes,sure,original,book,1 -greeting,you good?,parrot,greet,4 -yes,of course,original,book,1 -thank_you,thanks for that!,original,bye,2 -yes,i'm sure it's true,parrot,book,1 -yes,"yup, that's true",original,book,1 -greeting,salutation,parrot,greet,4 -no,i think it's not possible it's false,parrot,cancel,3 -reminder_update,i have to remind you please,parrot,resched,5 -yes,accepted,original,book,1 -date,where's the date tomorrow?,parrot,avail,0 -greeting,hi ai,original,greet,4 -goodbye,goodnight,original,bye,2 -thank_you,good job thanks,parrot,bye,2 -goodbye,goodbye soon,lambada,bye,2 -calendar,what's my schedule for march 3?,parrot,avail,0 -goodbye,will leave now,parrot,bye,2 -greeting,bonjour,original,greet,4 -goodbye,greetings,parrot,bye,2 -goodbye,i'm outta here!,original,bye,2 -no,it's false,parrot,cancel,3 -goodbye,later then,lambada,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -thank_you,you've been great,parrot,bye,2 -goodbye,regards,original,bye,2 -no,i believe it's false,parrot,cancel,3 -yes,"yes, ai, that is correct",original,book,1 -no,that's the wrong answer,parrot,cancel,3 -no,indeed it's false,parrot,cancel,3 -no,no,lambada,cancel,3 -calendar_update,please remove an event from the calendar,parrot,resched,5 -date,what today?,parrot,avail,0 -meeting_schedule,when is today's meeting?,lambada,avail,0 -calendar_update,i need to change my calendar for may 29th,parrot,resched,5 -goodbye,the talk was nice,lambada,bye,2 -calendar,let me know if there's a calendar entry for me on 31 march,parrot,avail,0 -greeting,hows are ya,original,greet,4 -yes,say yes,lambada,book,1 -greeting,hello siri,original,greet,4 -yes,yes that's right,lambada,book,1 -how_busy,how busy will i have to be at the pizzeria around 8 o'clock?,parrot,avail,0 -no,no please,parrot,cancel,3 -goodbye,goodbye goodbye,parrot,bye,2 -no,"no, that's wrong",original,cancel,3 -goodbye,i leave now,parrot,bye,2 -no,negative,original,cancel,3 -goodbye,nice talk,lambada,bye,2 -no,no good,original,cancel,3 -goodbye,regards,original,bye,2 -goodbye,adios ai,original,bye,2 -no,definitely not,original,cancel,3 -goodbye,no problem goodbye,parrot,bye,2 -no,so that's no,parrot,cancel,3 -greeting,hiya!,original,greet,4 -no,it's absolutely false,parrot,cancel,3 -yes,so it's real,parrot,book,1 -no,nothing,parrot,cancel,3 -no,that’s incorrect,original,cancel,3 -goodbye,talk later,original,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -date,current date,original,avail,0 -how_busy,how busy is mcdonald's around 7pm,parrot,avail,0 -yes,definitely,original,book,1 -no,FALSE,lambada,cancel,3 -date,what date?,parrot,avail,0 -no,no please,parrot,cancel,3 -yes,yeah,original,book,1 -goodbye,goodbye,original,bye,2 -greeting,how's ai doing?,parrot,greet,4 -goodbye,adios!,original,bye,2 -greeting,how's otc?,parrot,greet,4 -greeting,"hello, friend",original,greet,4 -goodbye,say goodbye,parrot,bye,2 -greeting,how's everything going?,parrot,greet,4 -how_busy,how long will it take before i can eat at the steakhouse?,parrot,avail,0 -yes,certainly,parrot,book,1 -thank_you,gracias,original,bye,2 -yes,TRUE,original,book,1 -yes,you're right,original,book,1 -how_busy,how busy is chili around 7pm?,parrot,avail,0 -goodbye,ill leave now,parrot,bye,2 -meeting_schedule,when do you meet kara?,parrot,avail,0 -thank_you,your assistance is appreciated,parrot,bye,2 -yes,accepted,original,book,1 -yes,"true, most definitely",original,book,1 -thank_you,my gratitude,parrot,bye,2 -reminder_update,remind me to write the dinner,parrot,resched,5 -yes,ya,original,book,1 -yes,sure thing,original,book,1 -greeting,ahoy,lambada,greet,4 -no,that is so false,original,cancel,3 -greeting,hey,original,greet,4 -goodbye,no problem take it easy,parrot,bye,2 -greeting,heller,original,greet,4 -thank_you,thank you?,parrot,bye,2 -goodbye,bye!,original,bye,2 -yes,that's a clear yes,parrot,book,1 -greeting,how's my feeling?,parrot,greet,4 -yes,yay,lambada,book,1 -goodbye,tootles?,parrot,bye,2 -yes,yep,original,book,1 -greeting,"hello, how are things",original,greet,4 -no,negatory,original,cancel,3 -goodbye,i'm leaving now,lambada,bye,2 -no,no way!,original,cancel,3 -greeting,hola!,original,greet,4 -goodbye,goodbye!,original,bye,2 -goodbye,tootles?,parrot,bye,2 -how_busy,how long will the wait be at imanas at 5pm,lambada,avail,0 -no,no way,original,cancel,3 -greeting,"why, hello bandit",original,greet,4 -calendar,when do i have a meeting in december next year?,parrot,avail,0 -calendar,can you tell me what my calendar is for thursday?,parrot,avail,0 -greeting,hola!,original,greet,4 -yes,the answer is yes,original,book,1 -how_busy,can chili be busy around 7pm,parrot,avail,0 -greeting,have you felt?,parrot,greet,4 -thank_you,thanks again!,original,bye,2 -yes,affirmative,original,book,1 -greeting,hola!,original,greet,4 -how_busy,how many people are there at chili at 7 pm?,parrot,avail,0 -no,say negative,parrot,cancel,3 -no,no way,original,cancel,3 -goodbye,come on soon,parrot,bye,2 -yes,"yes, that's right",original,book,1 -goodbye,see ya,original,bye,2 -goodbye,time to say goodbye,parrot,bye,2 -how_busy,will there be a wait for me at chili's,lambada,avail,0 -yes,it's logical,parrot,book,1 -greeting,whats new?,parrot,greet,4 -no,"please, no",original,cancel,3 -yes,"yes, please",original,book,1 -how_busy,is chili busy at 7 pm?,parrot,avail,0 -thank_you,really great!,original,bye,2 -greeting,hola!,original,greet,4 -no,FALSE,lambada,cancel,3 -yes,"yes, please",original,book,1 -yes,accepted,original,book,1 -reminder_update,make a reminder,parrot,resched,5 -goodbye,adios ai,original,bye,2 -greeting,"hey, ai",original,greet,4 -greeting,whats up,original,greet,4 -greeting,how're you?,parrot,greet,4 -cancel_reservation,i would like to cancel my reservations,original,cancel,3 -yes,yup,original,book,1 -meeting_schedule,what meetings do you plan for today?,parrot,avail,0 -yes,very true,original,book,1 -yes,i guess,parrot,book,1 -no,false sure,parrot,cancel,3 -no,hell nah,original,cancel,3 -yes,uh-huh,original,book,1 -goodbye,no problem goodbye,parrot,bye,2 -calendar_update,you can remove the birthday party from my calendar for january 15 2019,parrot,resched,5 -greeting,let me know how things are going?,parrot,greet,4 -greeting,hiya,original,greet,4 -yes,positive,parrot,book,1 -greeting,yo,original,greet,4 -how_busy,this restaurant has a high attendance at dinner?,parrot,avail,0 -no,it's not the right answer,parrot,cancel,3 -goodbye,good luck later,parrot,bye,2 -yes,TRUE,original,book,1 -greeting,aho,parrot,greet,4 -yes,"that's right, it's true",lambada,book,1 -calendar_update,please remove the meeting with laurie from my calendar,parrot,resched,5 -reminder_update,make me remember,parrot,resched,5 -no,not that,original,cancel,3 -yes,yay,lambada,book,1 -goodbye,i like our chat,parrot,bye,2 -goodbye,my way,parrot,bye,2 -date,what date?,parrot,avail,0 -yes,TRUE,original,book,1 -cancel_reservation,the reservation i have isn't needed,parrot,cancel,3 -how_busy,tell me how long it will be at tucson shrimps?,parrot,avail,0 -thank_you,thanks very much,parrot,bye,2 -thank_you,you're a great help,parrot,bye,2 -no,that's inaccurate,original,cancel,3 -thank_you,okay thanks,original,bye,2 -no,i'd rather not,parrot,cancel,3 -yes,yay,lambada,book,1 -no,so that's no,parrot,cancel,3 -yes,that's definitely true,original,book,1 -how_busy,how busy is that restaurant at 8,lambada,avail,0 -date,what's the date for tomorrow?,parrot,avail,0 -goodbye,until next time,original,bye,2 -greeting,hows are ya,original,greet,4 -greeting,how you are?,parrot,greet,4 -date,what's the date today?,parrot,avail,0 -schedule_meeting,reserve my meeting room for 12pm on february 28,parrot,book,1 -no,invalid,original,cancel,3 -greeting,greetings to you,original,greet,4 -goodbye,greetings,parrot,bye,2 -yes,i think you're right,parrot,book,1 -goodbye,good conversation,parrot,bye,2 -goodbye,for now,parrot,bye,2 -yes,yep,original,book,1 -reminder_update,set a reminder,original,resched,5 -meeting_schedule,when's the meeting?,parrot,avail,0 -goodbye,goodbye helpful ai devices,parrot,bye,2 -thank_you,you've helped,parrot,bye,2 -goodbye,bye,original,bye,2 -greeting,how's life for you?,parrot,greet,4 -how_busy,how busy the robinson grill is?,parrot,avail,0 -no,no,lambada,cancel,3 -yes,yeah,original,book,1 -yes,that checks out,original,book,1 -thank_you,well done,parrot,bye,2 -no,i'm afraid not,parrot,cancel,3 -calendar,check my calendar for march 19,parrot,avail,0 -greeting,what's happening?,parrot,greet,4 -how_busy,how busy will the menu at chipotle fries be,lambada,avail,0 -yes,indeed,original,book,1 -yes,good,parrot,book,1 -no,that's totally wrong!,original,cancel,3 -cancel_reservation,get a salad off,parrot,cancel,3 -greeting,how's that hanging?,parrot,greet,4 -goodbye,say goodbye,parrot,bye,2 -yes,i know,parrot,book,1 -thank_you,good to look at,parrot,bye,2 -how_busy,how busy is chili's at 915pm?,parrot,avail,0 -goodbye,regards,original,bye,2 -no,nothing,parrot,cancel,3 -calendar_update,i need buy a birthday gift for sue taken off my calendar it is on monday or tuesday last week,original,resched,5 -goodbye,just relax,parrot,bye,2 -greeting,tell me how it goes?,parrot,greet,4 -calendar_update,put an appointment for tomorrow for the doctors at 9am,lambada,resched,5 -yes,indeed,parrot,book,1 -yes,great,original,book,1 -goodbye,"syonara, ai device!",original,bye,2 -yes,yeah yeah,lambada,book,1 -goodbye,cya later,original,bye,2 -calendar,let me know my calendar for march 2nd,parrot,avail,0 -calendar,if i want to see the calendar for february 24,parrot,avail,0 -yes,positive,original,book,1 -yes,right,parrot,book,1 -date,what date is it tomorrow?,original,avail,0 -greeting,hiya!,original,greet,4 -goodbye,until next time!,original,bye,2 -thank_you,thank you,original,bye,2 -yes,yes please,original,book,1 -greeting,hello there,original,greet,4 -greeting,is everything ok with you?,original,greet,4 -greeting,how's ai doing?,parrot,greet,4 -no,i think it's incorrect,parrot,cancel,3 -how_busy,what's the wait?,parrot,avail,0 -goodbye,lovely conversation,parrot,bye,2 -goodbye,adios!,original,bye,2 -yes,that would be awesome,original,book,1 -thank_you,thank ya!,original,bye,2 -no,that's incorrect,original,cancel,3 -greeting,how are things,original,greet,4 -yes,approved,original,book,1 -how_busy,what is the time to sit at this restaurant?,lambada,avail,0 -calendar,tell me what's on my calendar for march 30?,parrot,avail,0 -no,that is not factual,original,cancel,3 -reminder_update,please give me a reminder,original,resched,5 -yes,agreed,original,book,1 -date,today?,parrot,avail,0 -meeting_schedule,how many meetings between 1:00 and 3:00,lambada,avail,0 -date,what today?,parrot,avail,0 -how_busy,is ihop busy?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -reminder_update,let me be reminded?,parrot,resched,5 -no,negative definitely,parrot,cancel,3 -yes,so it works,parrot,book,1 -yes,definitely confirmed,parrot,book,1 -goodbye,bye-bye,original,bye,2 -date,what day?,parrot,avail,0 -goodbye,later gater,original,bye,2 -goodbye,farewell,original,bye,2 -goodbye,goodbye!,original,bye,2 -yes,absolutely,original,book,1 -no,no that's not right,parrot,cancel,3 -goodbye,have a good day?,original,bye,2 -no,it's a negative,parrot,cancel,3 -calendar,what is on my calendar for next sunday?,parrot,avail,0 -yes,accepted,original,book,1 -goodbye,nice to chat with you,parrot,bye,2 -no,nay,original,cancel,3 -reminder_update,can i set a reminder to you?,parrot,resched,5 -no,no?,parrot,cancel,3 -yes,that statement is true,lambada,book,1 -how_busy,is there waiting time at the olive garden?,parrot,avail,0 -date,what day will it be 373 days from now?,original,avail,0 -thank_you,it pleased me,parrot,bye,2 -greeting,are you good?,original,greet,4 -goodbye,tootles?,parrot,bye,2 -yes,perfect,parrot,book,1 -no,don't agree,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -greeting,hiya!,original,greet,4 -no,absolutely not,original,cancel,3 -thank_you,thankyou,parrot,bye,2 -goodbye,goodnight,original,bye,2 -yes,okay,original,book,1 -date,a year?,parrot,avail,0 -greeting,whats up,original,greet,4 -yes,yes,original,book,1 -yes,TRUE,lambada,book,1 -greeting,hello,original,greet,4 -greeting,whats up?,parrot,greet,4 -greeting,hiya,original,greet,4 -no,that's not correct,original,cancel,3 -thank_you,"i appreciate my help, thank you",original,bye,2 -greeting,hiya,original,greet,4 -yes,that'd be great,parrot,book,1 -reminder_update,remind me to pay taxes,parrot,resched,5 -goodbye,farewell,original,bye,2 -thank_you,thanks,original,bye,2 -calendar,tell me what is tuesday's event on my calendar?,lambada,avail,0 -yes,"agreed, that's valid",original,book,1 -calendar_update,please clear my calendar for may 21st,parrot,resched,5 -yes,good,parrot,book,1 -goodbye,go easy,parrot,bye,2 -goodbye,later,original,bye,2 -date,tell me tomorrow's date?,original,avail,0 -goodbye,see ya,lambada,bye,2 -greeting,whats new,lambada,greet,4 -how_busy,tell me if chili's is busy around 8 am?,lambada,avail,0 -no,that is no,lambada,cancel,3 -goodbye,goodbye thank you,parrot,bye,2 -greeting,whats new?,parrot,greet,4 -calendar,what do i have on my calendar for march 5th?,parrot,avail,0 -meeting_schedule,see what meetings i've planned,parrot,avail,0 -date,what year?,parrot,avail,0 -reminder_update,create a reminder,original,resched,5 -thank_you,nice,parrot,bye,2 -thank_you,okay thanks,original,bye,2 -date,what's the day now??,parrot,avail,0 -yes,yep,original,book,1 -thank_you,you've helped,parrot,bye,2 -goodbye,have fun?,lambada,bye,2 -yes,yup,original,book,1 -how_busy,what's the wait time for a reservation at ilovey's?,parrot,avail,0 -goodbye,good night,original,bye,2 -meeting_schedule,my meeting with alice is scheduled for when,original,avail,0 -calendar,can you tell me what is on my calendar for march 5 2019?,parrot,avail,0 -no,i prefer not,parrot,cancel,3 -goodbye,bye,original,bye,2 -how_busy,wait how long?,parrot,avail,0 -yes,TRUE,original,book,1 -yes,good yes,lambada,book,1 -goodbye,i like our chat,parrot,bye,2 -meeting_schedule,what meetings are today?,lambada,avail,0 -yes,"yes, please",original,book,1 -calendar_update,add meeting with carla to my schedule for july 4th,parrot,resched,5 -schedule_meeting,create a meeting room for 11am,lambada,book,1 -yes,definitely,original,book,1 -yes,"yes, please",parrot,book,1 -goodbye,glad we can talk again,parrot,bye,2 -no,that's false,original,cancel,3 -yes,that would be awesome,original,book,1 -no,absolutely not,original,cancel,3 -schedule_meeting,is there a meeting room between one and two?,parrot,book,1 -date,please date,parrot,avail,0 -thank_you,thanks for coming by,lambada,bye,2 -yes,uh-huh,original,book,1 -goodbye,buhbye,original,bye,2 -cancel_reservation,go ahead and cancel the reservation for four prime ribs,parrot,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -no,no!,original,cancel,3 -goodbye,fairwell?,parrot,bye,2 -no,nada,original,cancel,3 -how_busy,how long will it take me to sit at the mw steakhouse?,parrot,avail,0 -goodbye,no problem just relax,parrot,bye,2 -date,tell me what day?,parrot,avail,0 -greeting,wassup,original,greet,4 -yes,that is accurate,original,book,1 -thank_you,i am grateful,lambada,bye,2 -thank_you,thank you?,parrot,bye,2 -greeting,how is my situation?,parrot,greet,4 -thank_you,i appeciate it,original,bye,2 -goodbye,it's over,parrot,bye,2 -greeting,hello,original,greet,4 -reminder_update,i need a reminder to wash dishes,original,resched,5 -thank_you,many thanks,original,bye,2 -no,certainly not true,parrot,cancel,3 -yes,affirmitive,original,book,1 -date,what year?,parrot,avail,0 -no,invalid,original,cancel,3 -goodbye,"great chat, take it easy",lambada,bye,2 -no,that's false,original,cancel,3 -greeting,whats up?,parrot,greet,4 -goodbye,goodbye no problem,parrot,bye,2 -no,is my false assertion?,parrot,cancel,3 -goodbye,talk to you later!,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -cancel_reservation,can you cancel my reservation at black cherry?,parrot,cancel,3 -yes,agreed,original,book,1 -thank_you,thankyou,parrot,bye,2 -thank_you,you're welcome,parrot,bye,2 -thank_you,you've tried,parrot,bye,2 -thank_you,i sincerely thank you,parrot,bye,2 -no,yes it's false,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -goodbye,i'll go,parrot,bye,2 -date,what's the day now?,parrot,avail,0 -date,what's the date we'll be here?,parrot,avail,0 -yes,thats right,original,book,1 -goodbye,ok good chatting goodbye,original,bye,2 -goodbye,ill leave now,parrot,bye,2 -yes,certainly,parrot,book,1 -reminder_update,create a reminder to wash dishes,parrot,resched,5 -yes,approved,original,book,1 -thank_you,thankyou,parrot,bye,2 -reminder_update,set reminder for tomorrow to eat,original,resched,5 -yes,yeah,original,book,1 -goodbye,afterward,parrot,bye,2 -goodbye,good talk,parrot,bye,2 -greeting,hello,original,greet,4 -greeting,wassup,original,greet,4 -greeting,how's everything?,parrot,greet,4 -how_busy,what time should i wait for caesar's steak house?,parrot,avail,0 -no,that's erroneous,parrot,cancel,3 -reminder_update,can you set an alarm for me to workout?,parrot,resched,5 -goodbye,please talk to me,parrot,bye,2 -goodbye,fairwell,original,bye,2 -no,that is not factual,original,cancel,3 -how_busy,how busy is iman at 7 in the morning?,parrot,avail,0 -date,in five days?,parrot,avail,0 -thank_you,thanks for responding,parrot,bye,2 -yes,good,parrot,book,1 -reminder_update,remind me to do my routine check of the oven,parrot,resched,5 -yes,that's true,original,book,1 -greeting,yo,original,greet,4 -schedule_meeting,can you book a meeting?,lambada,book,1 -calendar_update,make sure i don't have a party on my calendar,parrot,resched,5 -date,what will tomorrow be on our calendar?,parrot,avail,0 -goodbye,just relax,parrot,bye,2 -how_busy,wait how long?,parrot,avail,0 -yes,"yup, that's true",original,book,1 -greeting,hi how's the situation?,parrot,greet,4 -goodbye,later then,lambada,bye,2 -yes,certainly,parrot,book,1 -calendar_update,a date added to my calendar for the week of 14 may,parrot,resched,5 -date,what day?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -yes,confirm,original,book,1 -goodbye,need to catch up,parrot,bye,2 -greeting,"wake up, ai",original,greet,4 -greeting,hi,original,greet,4 -greeting,hey how's it going?,parrot,greet,4 -goodbye,afterward,parrot,bye,2 -goodbye,i need to say goodbye,lambada,bye,2 -thank_you,i'm very grateful,parrot,bye,2 -goodbye,good talk,parrot,bye,2 -greeting,heyo,original,greet,4 -greeting,ahoy,lambada,greet,4 -reminder_update,what about a reminder?,parrot,resched,5 -greeting,nice day,lambada,greet,4 -yes,i want that,parrot,book,1 -thank_you,glad you did it,parrot,bye,2 -schedule_meeting,can you reserve a meeting room from 6:00 to 8:00pm on friday?,lambada,book,1 -no,that's a false statement,lambada,cancel,3 -thank_you,nice,parrot,bye,2 -yes,sure thing,original,book,1 -meeting_schedule,will you meet ann?,parrot,avail,0 -no,sure it's wrong,parrot,cancel,3 -goodbye,later gater,original,bye,2 -how_busy,how busy is macaroni and cheese at 6,lambada,avail,0 -meeting_schedule,what is my meeting schedule today?,parrot,avail,0 -yes,yeah,original,book,1 -no,nothing,parrot,cancel,3 -how_busy,outback steakhouse at 6pm,parrot,avail,0 -goodbye,bye,original,bye,2 -calendar,can you see my calendar for next tuesday?,parrot,avail,0 -date,a year?,parrot,avail,0 -how_busy,tell me the average wait time at a cheese cake factory?,parrot,avail,0 -greeting,how have you been,original,greet,4 -yes,so it's real,parrot,book,1 -no,say negative,parrot,cancel,3 -how_busy,list the wait times for joes pizza?,parrot,avail,0 -no,i'm going to have to say no,lambada,cancel,3 -no,no!,original,cancel,3 -greeting,salutations!,original,greet,4 -no,erroneous,parrot,cancel,3 -goodbye,goodbye then,parrot,bye,2 -how_busy,how busy will the cheesecake factory be at 9:30 pm,lambada,avail,0 -no,"no, that is incorrect",original,cancel,3 -yes,exactly right,original,book,1 -how_busy,how long will it take you to get a table at chipotle?,parrot,avail,0 -greeting,bonjour,original,greet,4 -thank_you,you've helped,parrot,bye,2 -greeting,heller,original,greet,4 -how_busy,chili's busy at 7 pm?,parrot,avail,0 -greeting,hey,original,greet,4 -thank_you,thanks!,original,bye,2 -thank_you,"that'll work, good job!",original,bye,2 -yes,a fact,parrot,book,1 -no,erroneous,parrot,cancel,3 -yes,TRUE,lambada,book,1 -date,you have the date?,parrot,avail,0 -how_busy,what's the average wait time at outback steakhouse?,parrot,avail,0 -greeting,hi,original,greet,4 -yes,10-Apr,original,book,1 -yes,uh-huh,original,book,1 -yes,obviously,parrot,book,1 -date,the date is tomorrow,parrot,avail,0 -goodbye,", goodbye",lambada,bye,2 -thank_you,good job,lambada,bye,2 -goodbye,goodbyes,parrot,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -no,no?,parrot,cancel,3 -how_busy,how long will the wait for a table in one of the top pizza joints be?,parrot,avail,0 -greeting,how've you been,original,greet,4 -thank_you,you've helped,parrot,bye,2 -greeting,hello ai,parrot,greet,4 -cancel_reservation,cancellation of dinner reservations,parrot,cancel,3 -greeting,aloha,original,greet,4 -no,but that's not true?,parrot,cancel,3 -no,that's erroneous,parrot,cancel,3 -thank_you,awesome thank you,parrot,bye,2 -calendar_update,delete dentist from my calendar,original,resched,5 -greeting,good day,original,greet,4 -greeting,hola!,original,greet,4 -goodbye,the conversation with you was very good,parrot,bye,2 -no,nothing good,parrot,cancel,3 -how_busy,how long will it take to be seated at macaroni grill,original,avail,0 -goodbye,fairwell?,parrot,bye,2 -greeting,how is my situation?,parrot,greet,4 -thank_you,i'm happy with my answer,original,bye,2 -meeting_schedule,can you tell me when my meeting with john is?,parrot,avail,0 -how_busy,how busy red robin will be?,parrot,avail,0 -no,that's very negative,parrot,cancel,3 -greeting,wassup,original,greet,4 -meeting_schedule,do you have any meetings planned today?,parrot,avail,0 -yes,definitely yes,parrot,book,1 -no,negatory,original,cancel,3 -no,absolutely not,original,cancel,3 -no,FALSE,original,cancel,3 -greeting,are you doing okay?,original,greet,4 -greeting,wassup,original,greet,4 -goodbye,good call,parrot,bye,2 -meeting_schedule,meetings today,original,avail,0 -goodbye,farewell,original,bye,2 -greeting,welcome,parrot,greet,4 -thank_you,thanks,original,bye,2 -goodbye,the conversation was good,parrot,bye,2 -goodbye,buhbye now,lambada,bye,2 -yes,approved,original,book,1 -greeting,how's idy doing,lambada,greet,4 -goodbye,see ya!,original,bye,2 -no,that’s actually wrong,original,cancel,3 -goodbye,fairwell?,parrot,bye,2 -no,so that's no,parrot,cancel,3 -greeting,"hello, hello, hello",lambada,greet,4 -date,today is what date?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -date,is today monday?,original,avail,0 -greeting,hey fellows,parrot,greet,4 -greeting,ahoy,lambada,greet,4 -greeting,what's going on with you?,parrot,greet,4 -calendar_update,is it possible to remove the cookout from the calendar for june 29th?,parrot,resched,5 -how_busy,how long will there be a wait at olive garden at 5pm,lambada,avail,0 -greeting,aho,parrot,greet,4 -goodbye,thanks for the conversation later,parrot,bye,2 -greeting,"hello, what's up",original,greet,4 -cancel_reservation,the reservation at zepher cancels joe,parrot,cancel,3 -yes,is true,parrot,book,1 -greeting,how's the ai?,parrot,greet,4 -meeting_schedule,please read my meeting schedule,parrot,avail,0 -no,the negator,parrot,cancel,3 -yes,agreed,original,book,1 -yes,it's true,original,book,1 -schedule_meeting,i need a meeting room,parrot,book,1 -thank_you,a million thanks,parrot,bye,2 -greeting,whats up,original,greet,4 -thank_you,you've been a good help,lambada,bye,2 -how_busy,how busy will the olive garden be at 9pm,parrot,avail,0 -thank_you,the best,parrot,bye,2 -greeting,heller,original,greet,4 -goodbye,good call,parrot,bye,2 -date,tell me the date of today?,parrot,avail,0 -no,nada,original,cancel,3 -goodbye,bye!,original,bye,2 -goodbye,sayonara,original,bye,2 -reminder_update,tell me to call my mother tomorrow,parrot,resched,5 -thank_you,i really appreciate it,parrot,bye,2 -thank_you,i really appreciate it,parrot,bye,2 -thank_you,thank you?,parrot,bye,2 -no,that isn't correct,original,cancel,3 -calendar,is there an annual physical?,parrot,avail,0 -no,negatory,original,cancel,3 -yes,confirm,original,book,1 -thank_you,you've been amazing,lambada,bye,2 -yes,that would be true,original,book,1 -how_busy,can you tell me how many people will be seated at this restaurant?,lambada,avail,0 -meeting_schedule,do i have any meetings with dave today?,original,avail,0 -yes,"yes, please",original,book,1 -meeting_schedule,when are my meetings today between noon and 1?,parrot,avail,0 -greeting,how's everything?,parrot,greet,4 -goodbye,goodbyes,parrot,bye,2 -no,thats a negative,original,cancel,3 -thank_you,thanks for coming,parrot,bye,2 -goodbye,goodbye ai,parrot,bye,2 -greeting,whats up,original,greet,4 -greeting,hiya,original,greet,4 -date,tell me the month and day of the next month?,lambada,avail,0 -thank_you,"good job, thanks",lambada,bye,2 -calendar_update,remove wrestlingmania from my calendar for may 7,parrot,resched,5 -thank_you,nice,parrot,bye,2 -greeting,hey what's up?,parrot,greet,4 -date,what happens tomorrow in the calendar?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -meeting_schedule,check my schedule today,parrot,avail,0 -no,that's so false,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -goodbye,good call,parrot,bye,2 -greeting,hey how's it going?,parrot,greet,4 -yes,ya,original,book,1 -thank_you,thanks again!,original,bye,2 -yes,confirmed,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -reminder_update,have i forgotten?,parrot,resched,5 -yes,approved,original,book,1 -greeting,are you well?,original,greet,4 -no,no?,parrot,cancel,3 -thank_you,thanks!,original,bye,2 -greeting,heyo,original,greet,4 -greeting,"hello, ai",original,greet,4 -thank_you,my gratitude,parrot,bye,2 -cancel_reservation,cancel the reservation i made,parrot,cancel,3 -greeting,hi how are you?,parrot,greet,4 -thank_you,you do an awesome job,lambada,bye,2 -yes,yeah,original,book,1 -no,that's false,original,cancel,3 -greeting,hey how ya feeling,lambada,greet,4 -yes,is true,parrot,book,1 -greeting,what's new,lambada,greet,4 -yes,"yeah, that's right",original,book,1 -date,give me the current date,lambada,avail,0 -how_busy,how long is the wait in the restaurant right now,parrot,avail,0 -yes,yup,original,book,1 -goodbye,great conversation,parrot,bye,2 -no,certainly not,original,cancel,3 -no,don't agree,parrot,cancel,3 -no,this is not true,parrot,cancel,3 -yes,confirmed,original,book,1 -greeting,hello,original,greet,4 -goodbye,farewell,original,bye,2 -no,that's certainly false,parrot,cancel,3 -no,naw,parrot,cancel,3 -no,negation,parrot,cancel,3 -yes,accepted,original,book,1 -no,nay,original,cancel,3 -greeting,you good?,parrot,greet,4 -calendar,what's on my calendar for july 28th?,parrot,avail,0 -goodbye,thanks goodbye,parrot,bye,2 -greeting,wassup,original,greet,4 -yes,i'd like to have that done,parrot,book,1 -no,negating,parrot,cancel,3 -yes,yep,original,book,1 -yes,all right,original,book,1 -yes,absolutely,original,book,1 -thank_you,really great!,original,bye,2 -how_busy,is it too long to wait?,parrot,avail,0 -cancel_reservation,can you cancel my reservation at 4 pm in ruth's?,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -date,what's my day?,parrot,avail,0 -goodbye,chat to me later,parrot,bye,2 -reminder_update,set reminder to pay my rent tomorrow at 6pm,lambada,resched,5 -yes,agreed,original,book,1 -meeting_schedule,are i scheduled to have meetings today between 7 and 9?,lambada,avail,0 -yes,certainly,parrot,book,1 -thank_you,thanks for responding,parrot,bye,2 -yes,yup,original,book,1 -greeting,you good?,parrot,greet,4 -goodbye,good night,original,bye,2 -greeting,hello how you doing,lambada,greet,4 -no,that's false,original,cancel,3 -reminder_update,what's a reminder,parrot,resched,5 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,not true,original,cancel,3 -yes,right,parrot,book,1 -reminder_update,please remember something,parrot,resched,5 -thank_you,i'm glad you answered,parrot,bye,2 -thank_you,nice,parrot,bye,2 -no,"please, no",original,cancel,3 -yes,accept,parrot,book,1 -goodbye,goodbye soon,lambada,bye,2 -greeting,yo,original,greet,4 -thank_you,thank you ai,parrot,bye,2 -goodbye,bye bye now,lambada,bye,2 -how_busy,is chili busy around 730?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -reminder_update,remind me to write the food,parrot,resched,5 -goodbye,bye-bye,original,bye,2 -how_busy,what do you think of the crowd at mr joes around 9pm,parrot,avail,0 -no,no that isn't right,original,cancel,3 -no,no!,original,cancel,3 -greeting,good morning,parrot,greet,4 -calendar_update,remove the birthday party this friday from my schedule,original,resched,5 -greeting,how's everything?,parrot,greet,4 -cancel_reservation,cancel my reservation for dinner please,parrot,cancel,3 -greeting,how's my feeling?,parrot,greet,4 -greeting,hello ai,parrot,greet,4 -no,no,lambada,cancel,3 -how_busy,how busy is the steakhouse at midnight,parrot,avail,0 -no,not happening,original,cancel,3 -date,describe the day?,parrot,avail,0 -goodbye,until the next time,parrot,bye,2 -how_busy,please check the wait time at the cheesecake factory,parrot,avail,0 -no,that's no way,parrot,cancel,3 -yes,positive,original,book,1 -no,negating,parrot,cancel,3 -goodbye,"nice talk, goodbye",lambada,bye,2 -thank_you,you've been great,parrot,bye,2 -no,false sure,parrot,cancel,3 -yes,affirmitive,original,book,1 -no,it's so bad,parrot,cancel,3 -yes,TRUE,lambada,book,1 -greeting,well hi there,original,greet,4 -how_busy,is ihop busy?,parrot,avail,0 -thank_you,i want to thank you for your time,parrot,bye,2 -yes,just right,parrot,book,1 -greeting,how's life for you today,lambada,greet,4 -yes,accept,parrot,book,1 -yes,ya,original,book,1 -yes,it is true yes,parrot,book,1 -goodbye,i'll talk with you later,parrot,bye,2 -date,please list my current date?,parrot,avail,0 -yes,yup,original,book,1 -date,what is tomorrow?,parrot,avail,0 -calendar_update,remove jake's birthday on march 22,original,resched,5 -no,but it's false,parrot,cancel,3 -yes,i am sure you are true,lambada,book,1 -reminder_update,i want a reminder,lambada,resched,5 -yes,facts,original,book,1 -yes,yes,original,book,1 -how_busy,what's the wait time for teddy bears at 6 pm?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -how_busy,can you tell me the wait time at chili's pizza?,lambada,avail,0 -date,describe the day?,parrot,avail,0 -yes,definitely,original,book,1 -thank_you,"good job, thanks",lambada,bye,2 -greeting,whats up?,parrot,greet,4 -schedule_meeting,can u help me with a meeting?,parrot,book,1 -yes,okay,original,book,1 -schedule_meeting,show me the best way to schedule a meeting,parrot,book,1 -goodbye,adios!,original,bye,2 -yes,right,parrot,book,1 -yes,affirmitive,original,book,1 -yes,obviously,parrot,book,1 -how_busy,is mexico crowded at night?,parrot,avail,0 -date,describe the day?,parrot,avail,0 -calendar_update,please schedule an event called nadine's baby shower on my calendar,parrot,resched,5 -meeting_schedule,what meetings are scheduled today?,lambada,avail,0 -yes,i know the statement is true,parrot,book,1 -greeting,hello what's up?,parrot,greet,4 -no,that’s not correct,original,cancel,3 -yes,i know,parrot,book,1 -yes,affirmitive,original,book,1 -date,in five days?,parrot,avail,0 -no,no?,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -greeting,how's my day going?,parrot,greet,4 -yes,TRUE,lambada,book,1 -goodbye,nice talk,lambada,bye,2 -no,no no no,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -date,in 5 days what date will it be?,parrot,avail,0 -how_busy,sage's busy at noon?,parrot,avail,0 -greeting,you good?,parrot,greet,4 -goodbye,bye now,original,bye,2 -goodbye,bye,original,bye,2 -no,yes that's false,lambada,cancel,3 -yes,agreed,original,book,1 -yes,affirmitive,original,book,1 -greeting,what's up,original,greet,4 -yes,okay,original,book,1 -goodbye,i'll go,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,i'll say yes,parrot,book,1 -date,current day,parrot,avail,0 -meeting_schedule,what's my meeting schedule today?,parrot,avail,0 -date,please date,parrot,avail,0 -goodbye,great talking with you,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -yes,TRUE,lambada,book,1 -how_busy,should fry be busy around 7 pm?,parrot,avail,0 -greeting,yo,original,greet,4 -thank_you,i'm really thankful,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -yes,perfect,parrot,book,1 -reminder_update,i must set a reminder for myself,parrot,resched,5 -greeting,hello siri,original,greet,4 -goodbye,have fun?,lambada,bye,2 -greeting,bonjour,original,greet,4 -yes,sure thing,original,book,1 -calendar_update,make sure june 5 is on my calendar,parrot,resched,5 -calendar,did i add an item to my calendar for today?,lambada,avail,0 -no,it seems wrong,parrot,cancel,3 -thank_you,thank ya!,original,bye,2 -yes,all right,parrot,book,1 -date,where's tomorrow's date,parrot,avail,0 -thank_you,thanks!,original,bye,2 -yes,ok,original,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,are you okay?,original,greet,4 -goodbye,great talk,lambada,bye,2 -date,what date is it?,original,avail,0 -how_busy,what is the crowd like at red lobster around 830?,parrot,avail,0 -greeting,aloha,original,greet,4 -thank_you,a million thanks,parrot,bye,2 -no,indeed it's false,parrot,cancel,3 -yes,great,original,book,1 -no,that's totally wrong!,original,cancel,3 -meeting_schedule,when is my meeting with dave?,parrot,avail,0 -yes,okay,original,book,1 -yes,all right,original,book,1 -yes,you're right,original,book,1 -cancel_reservation,cancel my reservation for chris,parrot,cancel,3 -no,"please, no",original,cancel,3 -greeting,salutations!,original,greet,4 -date,what date is it?,original,avail,0 -goodbye,good luck,lambada,bye,2 -greeting,salutation,parrot,greet,4 -yes,definitely,original,book,1 -cancel_reservation,annull the reservation i made,parrot,cancel,3 -thank_you,thanks for that answer,original,bye,2 -no,thanks no,parrot,cancel,3 -how_busy,how much busy will chili's be at 5 pm,lambada,avail,0 -goodbye,bye bye!,original,bye,2 -no,negative,original,cancel,3 -goodbye,"thanks, bye",original,bye,2 -goodbye,adios,original,bye,2 -how_busy,how busy is the restaurant before the meal,parrot,avail,0 -greeting,hi,original,greet,4 -how_busy,how busy is the cheesecake factory at 6 pm?,parrot,avail,0 -no,that is very false,lambada,cancel,3 -goodbye,"great talk, thanks",original,bye,2 -greeting,hiya!,original,greet,4 -yes,it seems true,parrot,book,1 -calendar_update,i want to add farm trip to my calendar for friday,original,resched,5 -yes,so it works,parrot,book,1 -greeting,what's happened?,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -how_busy,mcdonald's busy around 9?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -no,that's completely false,original,cancel,3 -calendar,do i have any appointments on my calendar for may 11th?,lambada,avail,0 -yes,TRUE,lambada,book,1 -greeting,how is my day?,parrot,greet,4 -no,it's not correct,parrot,cancel,3 -no,i think it is false,original,cancel,3 -no,that's wrong,original,cancel,3 -thank_you,again thanks,parrot,bye,2 -calendar_update,removing an event scheduled for april 14,parrot,resched,5 -how_busy,how long will i have to wait in an immaculate steakhouse?,parrot,avail,0 -thank_you,i want to thank you ai,parrot,bye,2 -calendar,ask me if my calendar has any appointments for may 15,parrot,avail,0 -yes,definitely,original,book,1 -goodbye,i must say goodbye,original,bye,2 -thank_you,thankyou,parrot,bye,2 -cancel_reservation,make sure my reservation for dinner has been canceled,lambada,cancel,3 -goodbye,thank you for speaking to me,parrot,bye,2 -yes,oh yes,original,book,1 -no,nay,original,cancel,3 -schedule_meeting,i need an appointment for john at 9 am,parrot,book,1 -date,what date?,parrot,avail,0 -yes,ok,original,book,1 -yes,good,parrot,book,1 -goodbye,i leave now,parrot,bye,2 -schedule_meeting,let's schedule a meeting,lambada,book,1 -no,not true,original,cancel,3 -greeting,hello there,original,greet,4 -no,say negative,parrot,cancel,3 -greeting,how is life?,parrot,greet,4 -yes,and you're right,parrot,book,1 -goodbye,i'll leave,parrot,bye,2 -thank_you,appreciated,original,bye,2 -greeting,hola,original,greet,4 -thank_you,thank you for helping,parrot,bye,2 -yes,you're right,original,book,1 -greeting,hola,original,greet,4 -date,describe the day?,parrot,avail,0 -greeting,yo,original,greet,4 -no,no,lambada,cancel,3 -goodbye,goodbye my friend,parrot,bye,2 -how_busy,how long will i have to wait before i can eat macaroni on the grill,parrot,avail,0 -greeting,salutations,parrot,greet,4 -thank_you,much obliged,original,bye,2 -how_busy,how long will the macaroni grill last for dinner?,parrot,avail,0 -no,the information is inaccurate,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -no,it'd be awful,parrot,cancel,3 -greeting,what i feel?,parrot,greet,4 -thank_you,i'm thankful for my help,original,bye,2 -yes,positive,parrot,book,1 -yes,absolutely,original,book,1 -reminder_update,let me remind you of cleaning the bathroom in the morning,parrot,resched,5 -no,nay,original,cancel,3 -goodbye,peace out,original,bye,2 -greeting,hey it's up,lambada,greet,4 -thank_you,you've helped,parrot,bye,2 -goodbye,we had a nice chat,parrot,bye,2 -thank_you,good job,lambada,bye,2 -no,that's no,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -how_busy,how long will i have to wait for tequila bars?,parrot,avail,0 -calendar_update,delete the appointment i scheduled,parrot,resched,5 -goodbye,for now,parrot,bye,2 -no,"no, that isn't right",lambada,cancel,3 -yes,yay,lambada,book,1 -reminder_update,i need to set a reminder to go get an extra credit card,lambada,resched,5 -date,what's the date of that?,parrot,avail,0 -how_busy,please tell me how busy the red robin is at 5pm?,parrot,avail,0 -greeting,bonjour,original,greet,4 -yes,yup,original,book,1 -no,negatory?,parrot,cancel,3 -thank_you,good job,lambada,bye,2 -how_busy,is mcdonalds busy?,parrot,avail,0 -no,negatory?,parrot,cancel,3 -no,i think not,original,cancel,3 -no,so that's no,parrot,cancel,3 -calendar,what's on my calendar for april 15th,parrot,avail,0 -greeting,how's my day going?,parrot,greet,4 -goodbye,goodbye to your,lambada,bye,2 -meeting_schedule,do you have any meetings from 2 to 5 o'clock today?,parrot,avail,0 -greeting,bonjour,original,greet,4 -goodbye,farewell,original,bye,2 -thank_you,very grateful,parrot,bye,2 -greeting,what's happened?,parrot,greet,4 -goodbye,ai goodbye,original,bye,2 -no,naw,original,cancel,3 -no,negatory?,parrot,cancel,3 -goodbye,adios ai,original,bye,2 -yes,affirmitive,original,book,1 -no,nothing,parrot,cancel,3 -yes,sure thing,original,book,1 -goodbye,goodbyes,parrot,bye,2 -greeting,hello what's going on,parrot,greet,4 -goodbye,until next time!,original,bye,2 -yes,very true,original,book,1 -yes,accept,parrot,book,1 -yes,great,original,book,1 -reminder_update,let me know,parrot,resched,5 -goodbye,later goodbye,parrot,bye,2 -thank_you,my gratitude,parrot,bye,2 -calendar_update,please remove lunch with sally that is on my calendar on tuesday the 8th,original,resched,5 -how_busy,are chicken dinners busy?,lambada,avail,0 -goodbye,adios!,original,bye,2 -goodbye,bye my friend,parrot,bye,2 -cancel_reservation,i am not able to make the reservation,parrot,cancel,3 -date,date tomorrow?,parrot,avail,0 -no,nope,original,cancel,3 -goodbye,later good luck,parrot,bye,2 -greeting,hiya!,original,greet,4 -greeting,hello,original,greet,4 -calendar_update,clear my calendar for may 21st,lambada,resched,5 -how_busy,i'd expect the outback steakhouse to be busy around 7pm,parrot,avail,0 -yes,certainly,parrot,book,1 -greeting,ahoy,lambada,greet,4 -how_busy,how busy is chicken soup at 3pm,lambada,avail,0 -how_busy,is michel busy at three?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -goodbye,peace out,original,bye,2 -greeting,whats up,original,greet,4 -no,no way,original,cancel,3 -goodbye,goodbye,original,bye,2 -how_busy,is the wait for dinner too long?,parrot,avail,0 -goodbye,adios ai,original,bye,2 -thank_you,"nice, excellent!",original,bye,2 -date,tell me the date today?,original,avail,0 -goodbye,sayonara,original,bye,2 -greeting,aloha,original,greet,4 -goodbye,i'll see you later,lambada,bye,2 -goodbye,good bye,original,bye,2 -yes,sure,original,book,1 -date,what day?,parrot,avail,0 -thank_you,you did it,parrot,bye,2 -goodbye,goodbye,original,bye,2 -yes,absolutely!,original,book,1 -greeting,good morning ai,parrot,greet,4 -yes,not false,parrot,book,1 -yes,it is definitely affirmative,original,book,1 -thank_you,much obliged,original,bye,2 -greeting,you good?,parrot,greet,4 -goodbye,bye,original,bye,2 -how_busy,how long will i have to wait at olive garden?,parrot,avail,0 -how_busy,is imbrosia busy around 7 o'clock?,parrot,avail,0 -calendar_update,can you remove dinner with jim from my calendar?,parrot,resched,5 -greeting,yo,original,greet,4 -thank_you,good job,lambada,bye,2 -no,you are wrong,original,cancel,3 -how_busy,how long will it take to get a table at moroni's?,parrot,avail,0 -yes,affirmitive,original,book,1 -greeting,please tell me how it's going?,parrot,greet,4 -reminder_update,remind me,original,resched,5 -greeting,so how's everything?,parrot,greet,4 -goodbye,i've got to go,lambada,bye,2 -no,not that,original,cancel,3 -yes,say positive,parrot,book,1 -how_busy,can you tell me how long the wait is at this cheesecake factory?,lambada,avail,0 -thank_you,gracias,original,bye,2 -meeting_schedule,i need to know what meetings i have planned for today,parrot,avail,0 -reminder_update,please remember to clean the floors,parrot,resched,5 -goodbye,say goodbye,parrot,bye,2 -yes,yeap,original,book,1 -goodbye,good to see you later,parrot,bye,2 -thank_you,appreciated,original,bye,2 -goodbye,cya later,original,bye,2 -no,i don't agree,parrot,cancel,3 -how_busy,how busy is chili's around 6pm,lambada,avail,0 -greeting,hey,original,greet,4 -yes,okay,original,book,1 -date,what date today?,parrot,avail,0 -date,tell me the next month?,parrot,avail,0 -yes,i guess you're right,parrot,book,1 -thank_you,so grateful,parrot,bye,2 -yes,absolutely correct,original,book,1 -calendar,what's on my calendar for october 14th,parrot,avail,0 -yes,it's true,original,book,1 -goodbye,sayonara,original,bye,2 -greeting,what's happening,original,greet,4 -goodbye,my way,parrot,bye,2 -no,naw,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,my answer is yes,parrot,book,1 -thank_you,appreciated,original,bye,2 -goodbye,farewell!,original,bye,2 -yes,indeed,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -no,false sure,parrot,cancel,3 -greeting,hola!,original,greet,4 -no,no!,original,cancel,3 -goodbye,good-bye,parrot,bye,2 -no,absolutely not,original,cancel,3 -yes,it is a yes from me,parrot,book,1 -no,what isn't true?,parrot,cancel,3 -yes,sure,original,book,1 -date,what's the date tomorrow?,parrot,avail,0 -greeting,hello siri,original,greet,4 -goodbye,adios,original,bye,2 -yes,"correct, that's true",original,book,1 -meeting_schedule,do you have any meetings with dave today?,parrot,avail,0 -goodbye,just relax,parrot,bye,2 -goodbye,later!,original,bye,2 -goodbye,i must catch up,parrot,bye,2 -yes,great,original,book,1 -thank_you,and i appreciate the gesture,parrot,bye,2 -goodbye,no problem goodbye,parrot,bye,2 -no,it's no,parrot,cancel,3 -goodbye,thanks bye bye!,original,bye,2 -no,that's no,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -goodbye,it was cool talking with you,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -how_busy,how busy will the cheesecake factory be at 930 pm?,parrot,avail,0 -yes,"agreed, that's valid",original,book,1 -greeting,what's new?,parrot,greet,4 -greeting,bonjour,original,greet,4 -thank_you,thanks!,original,bye,2 -no,is that a lie?,parrot,cancel,3 -thank_you,okay thank you,parrot,bye,2 -yes,sure thing,original,book,1 -no,certainly false,parrot,cancel,3 -cancel_reservation,can i cancel my reservation for dinner this friday please?,parrot,cancel,3 -yes,it's logical,parrot,book,1 -no,negation,parrot,cancel,3 -no,nada,original,cancel,3 -yes,yup,original,book,1 -thank_you,that's what i want,parrot,bye,2 -no,negative,original,cancel,3 -no,it's false,parrot,cancel,3 -thank_you,your assistance is appreciated,parrot,bye,2 -greeting,how's my life?,parrot,greet,4 -goodbye,nice talk,lambada,bye,2 -yes,yay,lambada,book,1 -goodbye,great conversation,parrot,bye,2 -calendar_update,delete all calendar entries on march 4,parrot,resched,5 -goodbye,sayonara ,parrot,bye,2 -no,don't agree,parrot,cancel,3 -yes,yep,original,book,1 -no,no?,parrot,cancel,3 -thank_you,thank ya!,original,bye,2 -meeting_schedule,did you schedule any meetings today?,parrot,avail,0 -goodbye,regards,original,bye,2 -no,erroneous,parrot,cancel,3 -no,negative certainly,parrot,cancel,3 -no,that's not going to happen,parrot,cancel,3 -goodbye,later,original,bye,2 -no,negative,original,cancel,3 -greeting,how were you?,parrot,greet,4 -thank_you,thankyou,parrot,bye,2 -no,so that's no,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -greeting,hi,original,greet,4 -goodbye,good conversation,parrot,bye,2 -date,in 15 days what will the date be?,parrot,avail,0 -no,definitely not,original,cancel,3 -greeting,aloha,original,greet,4 -goodbye,later gater,original,bye,2 -yes,positive,parrot,book,1 -yes,yeah yeah,lambada,book,1 -yes,is true,parrot,book,1 -greeting,how's my day?,parrot,greet,4 -no,no!,original,cancel,3 -yes,correct,original,book,1 -no,that's incorrect,original,cancel,3 -how_busy,how much the restaurant will be crowded before dinner?,parrot,avail,0 -thank_you,very grateful,parrot,bye,2 -no,that's untrue,parrot,cancel,3 -no,that isn't right,original,cancel,3 -date,current day,parrot,avail,0 -goodbye,goodbye,original,bye,2 -yes,good,parrot,book,1 -goodbye,good bye my friend,original,bye,2 -goodbye,buhbye,original,bye,2 -date,today?,parrot,avail,0 -how_busy,is the wait at the chocolate fountain long? '',parrot,avail,0 -yes,positive,parrot,book,1 -goodbye,goodbye then,parrot,bye,2 -yes,confirmed,original,book,1 -greeting,heyo,original,greet,4 -thank_you,you've been great,parrot,bye,2 -greeting,how is life?,parrot,greet,4 -no,negating,parrot,cancel,3 -thank_you,thanks for all my help,original,bye,2 -greeting,well hello,original,greet,4 -thank_you,appreciate it,original,bye,2 -yes,it'll be yes,parrot,book,1 -yes,ya,original,book,1 -yes,i agree,original,book,1 -goodbye,later!,original,bye,2 -yes,certainly true,parrot,book,1 -yes,say positive,parrot,book,1 -calendar_update,tell me the best way to remove this appointment?,parrot,resched,5 -greeting,salutation,parrot,greet,4 -no,that's no way,parrot,cancel,3 -no,no this is false,parrot,cancel,3 -goodbye,see ya!,original,bye,2 -greeting,yo how is it going?,parrot,greet,4 -thank_you,i appeciate it,original,bye,2 -yes,ya,original,book,1 -goodbye,i enjoyed our conversation,parrot,bye,2 -yes,positive,original,book,1 -greeting,how's everything?,parrot,greet,4 -goodbye,"bye-bye, my friend",lambada,bye,2 -how_busy,can you tell me how busy chili's at 7?,parrot,avail,0 -how_busy,how busy will olive garden be at 7pm,parrot,avail,0 -no,negative definitely,parrot,cancel,3 -how_busy,how long will it take to get seated at the macaron grill?,parrot,avail,0 -goodbye,im leaving,parrot,bye,2 -date,what's today's date,original,avail,0 -yes,"yes, please",original,book,1 -thank_you,thank you!,original,bye,2 -date,give me a date today,parrot,avail,0 -yes,say positive,parrot,book,1 -yes,all right,original,book,1 -how_busy,tell me how busy the olive garden will be at 6 pm?,parrot,avail,0 -yes,huh huh,parrot,book,1 -meeting_schedule,are there meetings between 5 and 6pm?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -how_busy,how busy is ihop currently,lambada,avail,0 -thank_you,you have been a big help,lambada,bye,2 -greeting,ahoy there,lambada,greet,4 -yes,i guess,parrot,book,1 -thank_you,gracias,original,bye,2 -date,what's it like now?,parrot,avail,0 -greeting,hey bs,lambada,greet,4 -yes,uh-huh,original,book,1 -no,say negative,parrot,cancel,3 -thank_you,i thank you,original,bye,2 -yes,yeah you got it,lambada,book,1 -schedule_meeting,how are meetings scheduled?,parrot,book,1 -yes,huh huh,parrot,book,1 -greeting,hi how's everything going?,parrot,greet,4 -goodbye,farewell!,original,bye,2 -date,what date is that?,parrot,avail,0 -greeting,"hello, ai",original,greet,4 -no,that's negative,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -yes,indeed,original,book,1 -reminder_update,please remind me,parrot,resched,5 -greeting,hi,original,greet,4 -no,negatory,original,cancel,3 -greeting,how is idy?,parrot,greet,4 -reminder_update,remind me something,parrot,resched,5 -reminder_update,please make a reminder,original,resched,5 -greeting,give me the information,parrot,greet,4 -cancel_reservation,now i won't need my reservation anymore,parrot,cancel,3 -reminder_update,remind me to bring out the jacket in two weeks,parrot,resched,5 -yes,uh-huh,original,book,1 -yes,that's right,original,book,1 -no,erroneous,parrot,cancel,3 -thank_you,you helped,parrot,bye,2 -reminder_update,let me know,parrot,resched,5 -yes,uh huh,original,book,1 -how_busy,how busy will iman be at 6 pm,lambada,avail,0 -how_busy,how busy will chili be if i go to 6 pm,parrot,avail,0 -no,invalid,original,cancel,3 -goodbye,bye!,original,bye,2 -goodbye,a good talk,parrot,bye,2 -no,negation,parrot,cancel,3 -yes,not a false statement,parrot,book,1 -greeting,how's ai doing today?,parrot,greet,4 -how_busy,how long will the restaurant be waiting?,parrot,avail,0 -goodbye,my friend,parrot,bye,2 -how_busy,is this restaurant crowded?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -how_busy,how busy is chili at 8 am?,parrot,avail,0 -greeting,why hello?,original,greet,4 -no,is my falsehood?,parrot,cancel,3 -meeting_schedule,what's my schedule for today?,parrot,avail,0 -goodbye,maybe next time,parrot,bye,2 -goodbye,bye,original,bye,2 -how_busy,how busy is macaroni grill?,parrot,avail,0 -date,in seven days?,parrot,avail,0 -greeting,hey,original,greet,4 -thank_you,thank ya!,original,bye,2 -yes,a real statement,parrot,book,1 -meeting_schedule,when is my meeting with steve?,parrot,avail,0 -greeting,how's life,original,greet,4 -goodbye,good-bye,parrot,bye,2 -how_busy,how long is the wait at the pizza factory,lambada,avail,0 -goodbye,bye bye,lambada,bye,2 -greeting,hola!,original,greet,4 -goodbye,", goodbye",lambada,bye,2 -thank_you,thanks!,original,bye,2 -thank_you,thanks for giving me assistance,original,bye,2 -yes,yes please,original,book,1 -goodbye,be careful then,lambada,bye,2 -yes,oh yes,original,book,1 -schedule_meeting,please schedule a meeting with kim at 10 am,original,book,1 -yes,huh,parrot,book,1 -thank_you,thanks,original,bye,2 -goodbye,farewell!,original,bye,2 -yes,of course,original,book,1 -how_busy,it'll take how long to sit at the red lobster,parrot,avail,0 -reminder_update,please remind me later,original,resched,5 -how_busy,is jack's steakhouse usually packed when we're going?,parrot,avail,0 -goodbye,thank you goodbye,original,bye,2 -goodbye,this conversation was good,parrot,bye,2 -no,negation,parrot,cancel,3 -no,no it's not correct,parrot,cancel,3 -reminder_update,remind me something,parrot,resched,5 -no,naw,original,cancel,3 -greeting,aloha,original,greet,4 -date,is today monday?,original,avail,0 -goodbye,goodbye later,parrot,bye,2 -greeting,hey what's up,original,greet,4 -reminder_update,please remind me later on,parrot,resched,5 -yes,approved,original,book,1 -thank_you,thankyou,parrot,bye,2 -goodbye,i'm leaving now,lambada,bye,2 -meeting_schedule,what's on my agenda today?,parrot,avail,0 -meeting_schedule,do i have a meeting on my calendar?,parrot,avail,0 -thank_you,you've given me it,parrot,bye,2 -greeting,how ya been,original,greet,4 -calendar,tell me what's on my calendar for this day?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -thank_you,thanks so much!,original,bye,2 -reminder_update,can you create a reminder?,original,resched,5 -calendar_update,erase my birthday party from my calendar,parrot,resched,5 -yes,yup,original,book,1 -greeting,hello how you doing,lambada,greet,4 -yes,i know that's true,parrot,book,1 -goodbye,good luck tomorrow,lambada,bye,2 -no,false sure,parrot,cancel,3 -goodbye,good bye then,original,bye,2 -no,that's inaccurate,original,cancel,3 -greeting,how it goes?,parrot,greet,4 -date,what today?,parrot,avail,0 -reminder_update,add a reminder,lambada,resched,5 -date,what day will it be in fourteen days?,original,avail,0 -thank_you,"awesome, thanks",original,bye,2 -no,that can't be true?,parrot,cancel,3 -no,negative definitely,parrot,cancel,3 -yes,facts,original,book,1 -no,nada,original,cancel,3 -yes,ya,original,book,1 -no,naw,original,cancel,3 -no,it's absolutely false,parrot,cancel,3 -yes,yup,original,book,1 -yes,it's a fact,parrot,book,1 -no,nope,original,cancel,3 -goodbye,bye,original,bye,2 -no,i mean no,parrot,cancel,3 -no,it's the wrong answer,parrot,cancel,3 -how_busy,do people in tv towns go to ios to eat at ios at 9?,lambada,avail,0 -date,what will be in three days?,parrot,avail,0 -yes,approved,original,book,1 -greeting,are you okay??,parrot,greet,4 -how_busy,how long will the wait time be at steak house,lambada,avail,0 -goodbye,bye!,original,bye,2 -calendar,check my calendar for events,lambada,avail,0 -no,no!,original,cancel,3 -yes,yeah,original,book,1 -thank_you,merci beaucoup,original,bye,2 -yes,yeah yeah,lambada,book,1 -no,not good idea,parrot,cancel,3 -no,we don't want that,parrot,cancel,3 -date,now what day is it,parrot,avail,0 -date,tell me the date it will be 6 days from now?,lambada,avail,0 -greeting,aloha,original,greet,4 -goodbye,bye,original,bye,2 -goodbye,bye bye then,original,bye,2 -yes,oh-huh,parrot,book,1 -cancel_reservation,please cancel my reservation at wine bar,parrot,cancel,3 -yes,okay,original,book,1 -greeting,how's my feeling?,parrot,greet,4 -no,FALSE,lambada,cancel,3 -date,tell me the date today,parrot,avail,0 -greeting,whats new?,parrot,greet,4 -yes,approved,original,book,1 -how_busy,is it full in the morning?,parrot,avail,0 -meeting_schedule,is dan aware of any meetings with me?,parrot,avail,0 -calendar,find events in my calendar,parrot,avail,0 -meeting_schedule,what's on my schedule?,parrot,avail,0 -yes,"true, most definitely",original,book,1 -greeting,"hey, ai",original,greet,4 -yes,obviously,parrot,book,1 -yes,my answer is yes,parrot,book,1 -goodbye,my friend,parrot,bye,2 -no,it's no,parrot,cancel,3 -greeting,good morning,parrot,greet,4 -yes,you are yes,lambada,book,1 -meeting_schedule,what is today's meeting time?,parrot,avail,0 -how_busy,if i go to a cheesecake factory how long will i have to wait,parrot,avail,0 -thank_you,i'm glad you helped,parrot,bye,2 -goodbye,buhbye now,lambada,bye,2 -yes,affirmative,original,book,1 -no,i think it's a false statement,parrot,cancel,3 -greeting,hi,original,greet,4 -no,it seems wrong,parrot,cancel,3 -goodbye,great talk,lambada,bye,2 -yes,definitely,original,book,1 -goodbye,i'm out of here,original,bye,2 -goodbye,adios ai,original,bye,2 -how_busy,i'm waiting for carl jr,parrot,avail,0 -no,negating,parrot,cancel,3 -how_busy,if i want a table in the restaurant how long will it take,parrot,avail,0 -how_busy,how long will the restaurant be before lunch?,parrot,avail,0 -how_busy,does the olive garden get crowded at dinner time? why?,parrot,avail,0 -reminder_update,remind me to put the garbage in the can,parrot,resched,5 -yes,positive,parrot,book,1 -thank_you,thank you kindly,original,bye,2 -calendar_update,delete that event from calendar,original,resched,5 -goodbye,i'm gone,parrot,bye,2 -date,how many days will it be before the next,parrot,avail,0 -greeting,show me what's new,parrot,greet,4 -how_busy,how long will it take to get a table at st jerome's?,parrot,avail,0 -greeting,hey there,original,greet,4 -yes,confirm,original,book,1 -yes,10-Apr,original,book,1 -how_busy,please tell me if it's busy at 6 pm,parrot,avail,0 -yes,affirmative,original,book,1 -how_busy,can i wait at red lobster at 9pm?,parrot,avail,0 -greeting,how's life for you?,parrot,greet,4 -how_busy,how busy are applebees around lunch,parrot,avail,0 -greeting,hiya!,original,greet,4 -no,no longer valid,parrot,cancel,3 -goodbye,just relax,parrot,bye,2 -schedule_meeting,you can book a meeting room for 9am on friday,parrot,book,1 -date,what's my date?,parrot,avail,0 -yes,indeed,original,book,1 -yes,"yes, that's a fact",lambada,book,1 -no,no please,parrot,cancel,3 -yes,that's right,original,book,1 -date,tell me what's the day?,parrot,avail,0 -thank_you,gracias,original,bye,2 -calendar,have i added a doctor appointment to my calendar now?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -yes,definitely,original,book,1 -yes,"yes, please",parrot,book,1 -goodbye,farewell,original,bye,2 -goodbye,bye!,original,bye,2 -thank_you,okay thanks,original,bye,2 -reminder_update,tell me to get rid of the trash in an hour?,parrot,resched,5 -no,no way,original,cancel,3 -thank_you,i'm very grateful,parrot,bye,2 -yes,accept,parrot,book,1 -goodbye,tootles,original,bye,2 -how_busy,the wait at the pizza factory?,parrot,avail,0 -no,not at all,original,cancel,3 -yes,okay,original,book,1 -yes,"yes, please",parrot,book,1 -how_busy,is iman busy at five?,parrot,avail,0 -goodbye,good luck later,parrot,bye,2 -thank_you,really great!,original,bye,2 -greeting,what's happened?,parrot,greet,4 -greeting,salutation,parrot,greet,4 -calendar,are there any events for march 4 2019?,parrot,avail,0 -calendar,i don't remember if i added the fun run to my calendar,parrot,avail,0 -no,that isn't true,lambada,cancel,3 -no,but it's not factual,parrot,cancel,3 -thank_you,you helped,parrot,bye,2 -meeting_schedule,when's my next meeting with roger?,parrot,avail,0 -yes,i can confirm,parrot,book,1 -yes,you're right,original,book,1 -greeting,hello what is happening,lambada,greet,4 -greeting,how is my day,original,greet,4 -no,no?,parrot,cancel,3 -yes,absolutely correct,original,book,1 -goodbye,bye-bye,original,bye,2 -greeting,"hello, ai",original,greet,4 -yes,indeed,original,book,1 -goodbye,goodbyes,parrot,bye,2 -greeting,how's my family going?,parrot,greet,4 -yes,good yes,lambada,book,1 -thank_you,appreciated,original,bye,2 -how_busy,can i wait for a table at chipotle?,parrot,avail,0 -no,that's incorrect!,original,cancel,3 -how_busy,is there a lot of wait time when i go to fenway park?,lambada,avail,0 -goodbye,peace,original,bye,2 -yes,okay,original,book,1 -date,what date?,parrot,avail,0 -schedule_meeting,can i schedule a meeting for 5 pm on friday?,parrot,book,1 -thank_you,okay thank you,parrot,bye,2 -greeting,how's otc?,parrot,greet,4 -how_busy,is the wait at olive garden long around two?,parrot,avail,0 -yes,uh-huh,original,book,1 -greeting,ahoy,lambada,greet,4 -no,negative definitely,parrot,cancel,3 -yes,yup,original,book,1 -how_busy,what's the wait for a table at the red lobster?,parrot,avail,0 -no,certainly not,original,cancel,3 -date,let me know what's the date of tomorrow?,parrot,avail,0 -greeting,how've you been,original,greet,4 -how_busy,will the restaurant fill up,parrot,avail,0 -date,what'll it be tomorrow?,parrot,avail,0 -cancel_reservation,cancel reservation at robin's for 6,lambada,cancel,3 -no,but no way?,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -greeting,how's my family?,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -no,that's totally false,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -yes,ok,original,book,1 -yes,we would say yes,lambada,book,1 -yes,ya,original,book,1 -greeting,how it goes?,parrot,greet,4 -meeting_schedule,what is my schedule?,parrot,avail,0 -no,it's a no,original,cancel,3 -greeting,welcome,parrot,greet,4 -goodbye,great talking with you,parrot,bye,2 -yes,yes please,original,book,1 -goodbye,great conversation,parrot,bye,2 -goodbye,i'll get out of here,parrot,bye,2 -date,when is it going to be in five days?,parrot,avail,0 -no,no way!,original,cancel,3 -no,no way,original,cancel,3 -yes,correct,original,book,1 -no,nope,original,cancel,3 -thank_you,thank you?,parrot,bye,2 -greeting,how's life?,parrot,greet,4 -greeting,heller,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,thanks for my time,parrot,bye,2 -reminder_update,create a reminder for me to drink my water at work,lambada,resched,5 -goodbye,bye bye now,lambada,bye,2 -thank_you,okay thank you,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -yes,certainly,parrot,book,1 -greeting,whats new,lambada,greet,4 -schedule_meeting,please find out if rooms are free from 1 to 2,original,book,1 -thank_you,thankyou,parrot,bye,2 -reminder_update,new reminder please,lambada,resched,5 -calendar_update,schedule an event called nadine's baby shower on my calendar,parrot,resched,5 -thank_you,thanks,original,bye,2 -yes,huh huh,parrot,book,1 -greeting,how's life?,parrot,greet,4 -how_busy,how long will the wait time be at a chinese restaurant?,parrot,avail,0 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -calendar_update,i have an appointment to cancel for march 18,parrot,resched,5 -greeting,aho,parrot,greet,4 -goodbye,be careful then,lambada,bye,2 -cancel_reservation,cancel my dinner reservation,lambada,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,tell me the time to wait for a table at angels wing,parrot,avail,0 -no,that's false,original,cancel,3 -yes,correct,original,book,1 -greeting,hiya,original,greet,4 -goodbye,"great talk, thanks",original,bye,2 -yes,perfect,parrot,book,1 -goodbye,good bye then,original,bye,2 -no,naw,original,cancel,3 -how_busy,i wanna know how busy denny's is at 5 am,original,avail,0 -no,that's totally false,parrot,cancel,3 -date,today?,parrot,avail,0 -yes,ok,original,book,1 -cancel_reservation,call back with a cancellation of the reservation for 4 at the red robin,lambada,cancel,3 -goodbye,bye bye!,original,bye,2 -greeting,hey fellow,parrot,greet,4 -goodbye,sayonara,original,bye,2 -goodbye,this conversation was nice,parrot,bye,2 -yes,is true,parrot,book,1 -goodbye,nice to see you bye,parrot,bye,2 -no,not right,parrot,cancel,3 -greeting,are you okay?,original,greet,4 -schedule_meeting,how can i schedule a meeting with you?,parrot,book,1 -date,in 7 days?,parrot,avail,0 -no,not good,parrot,cancel,3 -goodbye,say goodbye,parrot,bye,2 -calendar_update,i need to cancel my appointment with ira please,lambada,resched,5 -thank_you,i appeciate it,parrot,bye,2 -yes,yeap,original,book,1 -schedule_meeting,i want to find out how i can schedule a meeting,parrot,book,1 -cancel_reservation,can you tell the restaurant to cancel my booking?,parrot,cancel,3 -how_busy,will there be a long line at red lobster around 6pm,lambada,avail,0 -greeting,salutations,parrot,greet,4 -how_busy,how long will it take to get a table at the hotel,lambada,avail,0 -yes,that's a fact,lambada,book,1 -calendar_update,i need to cancel my appointment with the ira please,parrot,resched,5 -yes,definitely,original,book,1 -thank_you,thank ya!,original,bye,2 -no,so that's no,parrot,cancel,3 -greeting,aloha,original,greet,4 -thank_you,thanks for cooperating,parrot,bye,2 -goodbye,come on soon,parrot,bye,2 -goodbye,see ya!,original,bye,2 -no,that's completely false,original,cancel,3 -goodbye,and then goodbye,parrot,bye,2 -yes,perfect,parrot,book,1 -date,date tomorrow?,parrot,avail,0 -thank_you,thank you for the cooperation,parrot,bye,2 -yes,it's logical,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -thank_you,many thank,original,bye,2 -goodbye,good talk,parrot,bye,2 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -yes,positive,parrot,book,1 -yes,affirmative,original,book,1 -reminder_update,will i be able to get a reminder to apply for credit card,lambada,resched,5 -greeting,you good?,parrot,greet,4 -how_busy,how busy is chili at 730?,parrot,avail,0 -greeting,what's happening?,parrot,greet,4 -goodbye,just relax,parrot,bye,2 -no,not right?,parrot,cancel,3 -greeting,wassup,original,greet,4 -greeting,aloha,original,greet,4 -goodbye,goodbyes,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -meeting_schedule,are there meetings between 930 and 1030?,parrot,avail,0 -greeting,tell me how you are doing?,original,greet,4 -thank_you,your answer was enjoyable,original,bye,2 -greeting,hows are ya,original,greet,4 -thank_you,i am thankful,lambada,bye,2 -goodbye,later gator!,original,bye,2 -goodbye,see ya,lambada,bye,2 -yes,it's true,original,book,1 -goodbye,goodbye helpful ai devices,parrot,bye,2 -meeting_schedule,are meetings planned between 3 and 5 today?,parrot,avail,0 -date,date tomorrow?,parrot,avail,0 -yes,that is affirmative,original,book,1 -thank_you,the answer you just gave me i'm grateful,parrot,bye,2 -date,what's the date today?,parrot,avail,0 -greeting,hola!,original,greet,4 -yes,sure thing,original,book,1 -yes,certainly,parrot,book,1 -no,negatory,original,cancel,3 -how_busy,how busy will olive garden be at 8 o'clock in the morning,parrot,avail,0 -greeting,bonjour,original,greet,4 -no,ill pass,original,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how busy will oreo be at 6:00 pm,lambada,avail,0 -cancel_reservation,im not going to need the reservation,lambada,cancel,3 -schedule_meeting,what are the availability of meeting rooms between 8:00 am and 9:00 am?,lambada,book,1 -no,sure it's wrong,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -goodbye,you're done,parrot,bye,2 -goodbye,peace out!,original,bye,2 -no,that's untrue,parrot,cancel,3 -yes,all right,parrot,book,1 -thank_you,nice,parrot,bye,2 -thank_you,thank you for the information,original,bye,2 -meeting_schedule,meetings today,original,avail,0 -goodbye,peace out,original,bye,2 -greeting,hi,original,greet,4 -no,but we don't want it,parrot,cancel,3 -greeting,what's new,lambada,greet,4 -no,that’s incorrect,original,cancel,3 -schedule_meeting,what is the meeting room between 9 and 10?,lambada,book,1 -no,i disagree with this,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -yes,i want it,parrot,book,1 -reminder_update,remind me to do my routine check on the oven,lambada,resched,5 -greeting,hello how's my life?,parrot,greet,4 -thank_you,my gratitude,parrot,bye,2 -goodbye,"goodbye, ai assistant",original,bye,2 -no,no?,parrot,cancel,3 -goodbye,good luck tomorrow,lambada,bye,2 -goodbye,adios!,original,bye,2 -meeting_schedule,do i have any meetings today between 6 and 7?,original,avail,0 -goodbye,bye!,original,bye,2 -no,not true i think,parrot,cancel,3 -thank_you,okay thank you,parrot,bye,2 -thank_you,my thanks,parrot,bye,2 -how_busy,how long does it take to get a table in garlic bread pizza,parrot,avail,0 -greeting,you're all right?,parrot,greet,4 -yes,"yup, that's correct",lambada,book,1 -thank_you,i appreciate it,original,bye,2 -goodbye,bye!,original,bye,2 -goodbye,tootles,original,bye,2 -goodbye,bye-bye,original,bye,2 -goodbye,bye,original,bye,2 -greeting,good evening,original,greet,4 -goodbye,goodbye later,parrot,bye,2 -thank_you,many thank,original,bye,2 -no,invalid,original,cancel,3 -thank_you,appreciated,original,bye,2 -goodbye,buhbye,original,bye,2 -goodbye,bye,original,bye,2 -yes,positive,parrot,book,1 -how_busy,how long can i wait to get a table at nasi lagu,lambada,avail,0 -goodbye,very nice conversation,parrot,bye,2 -greeting,how you feel?,parrot,greet,4 -date,what's it today?,parrot,avail,0 -how_busy,tell me how busy miami marriott will be at 5 pm?,lambada,avail,0 -meeting_schedule,when is my meeting with dave scheduled?,lambada,avail,0 -how_busy,is the wait a long?,lambada,avail,0 -thank_you,thanks very much for your answer,parrot,bye,2 -yes,that's correct,original,book,1 -meeting_schedule,go over my meeting schedule please,parrot,avail,0 -how_busy,is the crackling oven busy at 6 o'clock?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -no,that isn't right,original,cancel,3 -date,today?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -goodbye,i'll go,parrot,bye,2 -calendar_update,i have to add an event on my calendar for the 7th,parrot,resched,5 -no,nope,original,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -thank_you,oh sweet thanks,original,bye,2 -how_busy,can i expect orange isle to be busy around 730?,parrot,avail,0 -greeting,"hi, ai",original,greet,4 -yes,it is true yes,parrot,book,1 -thank_you,i'm grateful for you,parrot,bye,2 -thank_you,i'm grateful,original,bye,2 -greeting,welcome,parrot,greet,4 -cancel_reservation,tell the restaurant i can't?,parrot,cancel,3 -how_busy,how long do you think i'll have to wait for a table at olive garden?,parrot,avail,0 -meeting_schedule,have any meetings between 6 and 7 today?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -thank_you,i want to thank you for the help,parrot,bye,2 -no,say negative,parrot,cancel,3 -yes,i agree,original,book,1 -how_busy,at 5 pm how busy is chili's?,parrot,avail,0 -calendar,check out my calendar,parrot,avail,0 -no,not true,original,cancel,3 -no,don't agree,parrot,cancel,3 -schedule_meeting,are any rooms free from 12 to 1?,original,book,1 -cancel_reservation,i no longer need the reservation for 20 at the ihop,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -no,that's overwhelmingly negative,parrot,cancel,3 -how_busy,how long will i have to wait for the red lobster?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -goodbye,the chat was good,parrot,bye,2 -goodbye,see ya!,original,bye,2 -yes,say positive,parrot,book,1 -thank_you,thankyou,parrot,bye,2 -date,which day in a month is the first day of a month in five days?,parrot,avail,0 -yes,that is correct,original,book,1 -goodbye,goodbye for now,parrot,bye,2 -greeting,hello,original,greet,4 -cancel_reservation,what should i do to cancel my reservation?,lambada,cancel,3 -yes,absolutely!,original,book,1 -reminder_update,i must remind myself about paying taxes,parrot,resched,5 -greeting,welcome,parrot,greet,4 -no,negative,original,cancel,3 -goodbye,get there soon,lambada,bye,2 -no,no thank you,original,cancel,3 -yes,sure,original,book,1 -goodbye,greetings,parrot,bye,2 -greeting,hola,original,greet,4 -date,what today?,parrot,avail,0 -no,no way!,original,cancel,3 -goodbye,afterward,parrot,bye,2 -no,FALSE,lambada,cancel,3 -thank_you,very grateful,parrot,bye,2 -meeting_schedule,is my schedule clear?,parrot,avail,0 -yes,certainly,parrot,book,1 -goodbye,bye,original,bye,2 -cancel_reservation,cancel my reservation for steakhouse,lambada,cancel,3 -reminder_update,remind me to clean up my house today,lambada,resched,5 -yes,yeah yeah,lambada,book,1 -no,that's negative,parrot,cancel,3 -yes,approved,original,book,1 -yes,yes,original,book,1 -greeting,hello,original,greet,4 -thank_you,thanks for my prompt reply,lambada,bye,2 -goodbye,lovely conversation,parrot,bye,2 -goodbye,good night,original,bye,2 -thank_you,you've tried,parrot,bye,2 -goodbye,peace,original,bye,2 -reminder_update,remind me to remind my cat to shut the fridge,parrot,resched,5 -no,FALSE,original,cancel,3 -no,that’s incorrect,original,cancel,3 -thank_you,okay thanks,original,bye,2 -date,what year?,parrot,avail,0 -no,and i say negative,parrot,cancel,3 -goodbye,fairwell,original,bye,2 -yes,seems true,parrot,book,1 -greeting,hiya!,original,greet,4 -goodbye,catch you later,original,bye,2 -yes,right,parrot,book,1 -yes,indeed,original,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -no,FALSE,lambada,cancel,3 -goodbye,farewell!,original,bye,2 -greeting,how does ai feel?,parrot,greet,4 -how_busy,how busy is agricola around 6,lambada,avail,0 -greeting,ahoy hoy,original,greet,4 -no,no way!,original,cancel,3 -meeting_schedule,what's the meeting today?,parrot,avail,0 -greeting,yo,original,greet,4 -goodbye,sayonara,original,bye,2 -greeting,want to know how it goes,parrot,greet,4 -reminder_update,create a reminder,original,resched,5 -no,erroneous,parrot,cancel,3 -goodbye,see you soon,original,bye,2 -yes,is true,parrot,book,1 -goodbye,fairwell?,parrot,bye,2 -thank_you,you did it,parrot,bye,2 -no,naw,parrot,cancel,3 -no,no thanks,original,cancel,3 -yes,yeap,original,book,1 -how_busy,how long will i wait before i go to the cheese cake factory?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -how_busy,how long is the wait at this restaurant?,parrot,avail,0 -thank_you,you've been amazing,lambada,bye,2 -reminder_update,pay taxes on monday,parrot,resched,5 -goodbye,bye-bye,original,bye,2 -how_busy,is the restaurant crowded?,parrot,avail,0 -reminder_update,i'd like to set a reminder about my holiday,lambada,resched,5 -goodbye,fairwell?,parrot,bye,2 -greeting,welcome,parrot,greet,4 -goodbye,"nice talk, goodbye",lambada,bye,2 -no,please disagree,lambada,cancel,3 -reminder_update,create a reminder,original,resched,5 -yes,"true, that was exactly what you said",lambada,book,1 -yes,huh,parrot,book,1 -how_busy,what's the wait time at mac n cheese right now?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -yes,right,parrot,book,1 -no,thanks no,parrot,cancel,3 -greeting,hiya,original,greet,4 -greeting,how's the life?,parrot,greet,4 -goodbye,bye,original,bye,2 -greeting,well hi there,original,greet,4 -no,it's actually false,parrot,cancel,3 -greeting,whats new?,parrot,greet,4 -calendar,tell me what's on my calendar for march 20th?,parrot,avail,0 -greeting,how is the ai doing,original,greet,4 -yes,very true,original,book,1 -schedule_meeting,i want a meeting,parrot,book,1 -thank_you,i wish you were here sooner,parrot,bye,2 -yes,agreed,original,book,1 -calendar,did i put an appointment on my calendar to have an exam?,lambada,avail,0 -goodbye,peace,original,bye,2 -greeting,hey there,original,greet,4 -thank_you,i appreciate the answer,parrot,bye,2 -greeting,yo,original,greet,4 -yes,all right,parrot,book,1 -goodbye,i'm out,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,get there soon,lambada,bye,2 -greeting,hiya!,original,greet,4 -reminder_update,what about a reminder,parrot,resched,5 -thank_you,i appreciate your gesture,lambada,bye,2 -yes,positive,original,book,1 -no,definitely not,original,cancel,3 -greeting,salutations,parrot,greet,4 -thank_you,"nice, excellent!",original,bye,2 -date,let me know what tomorrow's date is,original,avail,0 -no,negative sure,parrot,cancel,3 -no,that's negative,parrot,cancel,3 -calendar_update,make sure i put a date for tomorrow on my calendar,parrot,resched,5 -reminder_update,remind me later,original,resched,5 -how_busy,how busy is red lobster at 6,lambada,avail,0 -how_busy,please tell me about olive garden's typical table?,parrot,avail,0 -no,that's not correct,original,cancel,3 -goodbye,i'm going,parrot,bye,2 -greeting,what's going on,original,greet,4 -yes,yeah yeah,lambada,book,1 -goodbye,good luck,lambada,bye,2 -thank_you,very grateful,parrot,bye,2 -yes,ya,original,book,1 -no,it's a lie,parrot,cancel,3 -yes,great,original,book,1 -greeting,what are you feeling today?,original,greet,4 -goodbye,have fun?,lambada,bye,2 -yes,thats right,original,book,1 -goodbye,"later, goodbye",lambada,bye,2 -no,not good,parrot,cancel,3 -yes,ok,original,book,1 -greeting,heller,original,greet,4 -meeting_schedule,now i'd like to know how many meetings i've got today,parrot,avail,0 -yes,great,original,book,1 -goodbye,"it was a pleasure talking to you, goodbye now",original,bye,2 -thank_you,awesome thank you,parrot,bye,2 -goodbye,nice drive by,lambada,bye,2 -schedule_meeting,can you hook me up with a meeting room on saturday morning at 10am?,original,book,1 -greeting,aloha,original,greet,4 -yes,i guess yes,parrot,book,1 -greeting,aloha,original,greet,4 -yes,i'm going to tell you tes,parrot,book,1 -how_busy,how busy will the tomato garden be around 5pm,parrot,avail,0 -thank_you,your assistance is appreciated,parrot,bye,2 -greeting,hello,original,greet,4 -reminder_update,remind me to pay taxes,parrot,resched,5 -thank_you,i am very grateful,original,bye,2 -no,this is not true,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -date,what's the date tomorrow?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -how_busy,list the wait times for this yogurt place?,parrot,avail,0 -greeting,hello how are things?,parrot,greet,4 -greeting,how you feel?,parrot,greet,4 -no,definitely not,original,cancel,3 -goodbye,greetings,parrot,bye,2 -no,FALSE,lambada,cancel,3 -reminder_update,"new reminder, please",original,resched,5 -greeting,bonjour,original,greet,4 -no,naw,original,cancel,3 -thank_you,it's my debt,parrot,bye,2 -reminder_update,set a reminder of my birthday,parrot,resched,5 -yes,not false,parrot,book,1 -yes,"yes, please",original,book,1 -cancel_reservation,cancel my reservation for franklin at the red robin,parrot,cancel,3 -goodbye,later,original,bye,2 -greeting,hey bs,lambada,greet,4 -goodbye,goodbye!,original,bye,2 -goodbye,later goodbye,parrot,bye,2 -reminder_update,keep checking the steak?,parrot,resched,5 -greeting,good morning ai,parrot,greet,4 -greeting,how ya been,original,greet,4 -yes,great,original,book,1 -no,false for sure,original,cancel,3 -yes,that seems true,original,book,1 -goodbye,goodbye now,parrot,bye,2 -thank_you,thanks for answering,parrot,bye,2 -goodbye,see ya,original,bye,2 -reminder_update,please do not forget,parrot,resched,5 -thank_you,thanks for coming,parrot,bye,2 -greeting,aloha,original,greet,4 -no,negative,original,cancel,3 -greeting,heyo,original,greet,4 -date,please explain today,parrot,avail,0 -no,nothing,parrot,cancel,3 -how_busy,is ihop busy around 7 o'clock in the day?,parrot,avail,0 -goodbye,"later, goodbye",lambada,bye,2 -goodbye,later thanks for the chat,parrot,bye,2 -date,what month and day?,parrot,avail,0 -yes,i guess yes,parrot,book,1 -yes,positive,parrot,book,1 -goodbye,cya later,original,bye,2 -greeting,how're you today?,parrot,greet,4 -goodbye,good conversation,parrot,bye,2 -calendar_update,eliminate all calendar entries on march 7,parrot,resched,5 -how_busy,how busy will the chili grill be at 7 pm,lambada,avail,0 -goodbye,bye bye,lambada,bye,2 -yes,yeah,original,book,1 -no,FALSE,lambada,cancel,3 -date,would you let me know what date it will be in 3 days,original,avail,0 -greeting,hello ai,parrot,greet,4 -goodbye,later goodbye,parrot,bye,2 -thank_you,you've been a great support,parrot,bye,2 -goodbye,goodnight,original,bye,2 -meeting_schedule,did you schedule any meetings today?,parrot,avail,0 -greeting,and how're you doing,parrot,greet,4 -thank_you,you're welcome,parrot,bye,2 -thank_you,appreciated,original,bye,2 -yes,agreed,original,book,1 -greeting,are you feeling okay?,original,greet,4 -date,give me a date for today,parrot,avail,0 -greeting,salutations!,original,greet,4 -how_busy,do i need to plan ahead to be able to be seated at dinner time?,lambada,avail,0 -goodbye,my friend,parrot,bye,2 -calendar,i have something to do on my calendar for march 18th?,parrot,avail,0 -meeting_schedule,are meetings scheduled between 6 and 9 o'clock?,parrot,avail,0 -thank_you,good job,lambada,bye,2 -calendar,bowling on my calendar?,parrot,avail,0 -greeting,heyo,original,greet,4 -greeting,how it goes?,parrot,greet,4 -goodbye,see ya,lambada,bye,2 -goodbye,goodnight,original,bye,2 -thank_you,i appreciate you doing that,original,bye,2 -thank_you,okay thank you,parrot,bye,2 -greeting,hey what's up,original,greet,4 -goodbye,will leave now,parrot,bye,2 -yes,right,parrot,book,1 -thank_you,i thank you,original,bye,2 -thank_you,that's what i want,parrot,bye,2 -yes,affirmitive,original,book,1 -yes,yeah,original,book,1 -goodbye,a good conversation,parrot,bye,2 -thank_you,very grateful,parrot,bye,2 -how_busy,how long would the wait be at golden gate steakhouse,parrot,avail,0 -no,negatory,original,cancel,3 -no,that's completely wrong,parrot,cancel,3 -date,what's today,original,avail,0 -thank_you,you've given me it,parrot,bye,2 -how_busy,how long will the restaurant last for dinner?,parrot,avail,0 -greeting,hey,original,greet,4 -greeting,what's my feeling?,parrot,greet,4 -cancel_reservation,i need my dinner reservation cancelled,parrot,cancel,3 -schedule_meeting,i'd like to know if there are meeting rooms available between 930 and 1130,parrot,book,1 -greeting,so how's it going?,parrot,greet,4 -how_busy,tell me the average wait time for pizza?,parrot,avail,0 -yes,yep,original,book,1 -yes,positive,parrot,book,1 -date,a year?,parrot,avail,0 -reminder_update,remind me of my chores,parrot,resched,5 -greeting,hiya!,original,greet,4 -date,can you tell me the day tomorrow?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -yes,it is a positive answer,parrot,book,1 -no,that's certainly false,parrot,cancel,3 -greeting,what's happening,original,greet,4 -how_busy,is chili busy around 730?,parrot,avail,0 -yes,confirm,original,book,1 -goodbye,later gater,original,bye,2 -yes,not false,parrot,book,1 -how_busy,canadian grill at 6pm?,parrot,avail,0 -thank_you,many thank,original,bye,2 -no,that's no longer valid,parrot,cancel,3 -calendar,is there anything planned for april 30?,parrot,avail,0 -cancel_reservation,cancel dinner reservation tonight,parrot,cancel,3 -thank_you,many thank,original,bye,2 -yes,10-Apr,original,book,1 -no,nope,original,cancel,3 -reminder_update,add me a reminder?,parrot,resched,5 -yes,say positive,parrot,book,1 -cancel_reservation,annull the reservation i made,parrot,cancel,3 -greeting,how's the situation?,parrot,greet,4 -how_busy,how busy is joe's at 9:30 pm,lambada,avail,0 -goodbye,thanks goodbye,parrot,bye,2 -goodbye,see you around,original,bye,2 -thank_you,nice,parrot,bye,2 -no,no?,parrot,cancel,3 -yes,definitely,original,book,1 -meeting_schedule,do you have any meetings with deborah today?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -greeting,hola,original,greet,4 -goodbye,goodbye ai,parrot,bye,2 -goodbye,good see you,lambada,bye,2 -greeting,how was my day?,parrot,greet,4 -greeting,what is going on?,parrot,greet,4 -reminder_update,remind me to remind my cat to close the refrigerator,lambada,resched,5 -yes,that is right,original,book,1 -goodbye,goodnight,original,bye,2 -greeting,salutations!,original,greet,4 -how_busy,how long do i have to wait for noon?,parrot,avail,0 -yes,absolutely,original,book,1 -goodbye,bye now,original,bye,2 -greeting,aho,parrot,greet,4 -yes,positive,original,book,1 -yes,certainly,parrot,book,1 -calendar,what's on my calendar for march 01,original,avail,0 -greeting,bonjour,original,greet,4 -date,tell me the date it will be 2 days from now?,lambada,avail,0 -thank_you,thanks!,original,bye,2 -goodbye,farewell!,original,bye,2 -how_busy,how busy is orchids at 7,original,avail,0 -how_busy,what's the average sitting time in this restaurant?,parrot,avail,0 -date,please date,parrot,avail,0 -calendar_update,add the family reunion to my calendar for next friday,parrot,resched,5 -no,it'd be awful,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -no,absolutely false,parrot,cancel,3 -no,no that's not true,parrot,cancel,3 -yes,confirmed,original,book,1 -no,it's false,parrot,cancel,3 -no,the negator,parrot,cancel,3 -greeting,hola,original,greet,4 -goodbye,farewell!,original,bye,2 -goodbye,tootles,original,bye,2 -greeting,aho,parrot,greet,4 -greeting,salutations!,original,greet,4 -cancel_reservation,the reservation for my friends in red robin is no longer necessary,parrot,cancel,3 -how_busy,can you tell me what the wait time is in this restaurant?,parrot,avail,0 -calendar_update,i'll meet steven on march 5th,parrot,resched,5 -yes,absolutely correct,original,book,1 -goodbye,signing off,original,bye,2 -greeting,how's ayi doing?,parrot,greet,4 -goodbye,goodbye to your,lambada,bye,2 -calendar,what's happening on march 15,parrot,avail,0 -how_busy,what do you think the outback steakhouse will be like between 6 and 9 pm?,parrot,avail,0 -how_busy,how long will i have to wait for a table at applebee's,lambada,avail,0 -goodbye,say goodbye now,parrot,bye,2 -thank_you,thank you for the update,parrot,bye,2 -greeting,hola,original,greet,4 -greeting,nice day,lambada,greet,4 -yes,TRUE,original,book,1 -calendar,let me know what's going on march 21st,parrot,avail,0 -no,erroneous,parrot,cancel,3 -cancel_reservation,can you cancel a reservation?,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -no,it's false,parrot,cancel,3 -yes,all right,parrot,book,1 -meeting_schedule,what meetings are today?,lambada,avail,0 -how_busy,how long will it take to sit in the flying wand?,parrot,avail,0 -no,there is no way in heck that is true,original,cancel,3 -goodbye,later!,original,bye,2 -yes,yeah,original,book,1 -no,certainly false,parrot,cancel,3 -calendar,do i have appointments for april 19th?,parrot,avail,0 -thank_you,your answer pleased me,original,bye,2 -yes,that's the truth,original,book,1 -yes,"yes, that is right",original,book,1 -how_busy,how long will it take to sit in the red lobster restaurant?,parrot,avail,0 -date,what's today?,parrot,avail,0 -yes,we would say yes,lambada,book,1 -goodbye,really great to talk to you,parrot,bye,2 -yes,oh yes,original,book,1 -greeting,"hello, ai",original,greet,4 -no,that's totally false,parrot,cancel,3 -yes,that's true,original,book,1 -yes,ya,original,book,1 -calendar_update,delete the doctor's appointment for saturday,parrot,resched,5 -how_busy,how long will the wait at the olive garden be?,parrot,avail,0 -cancel_reservation,i need you to cancel my reservation for smith at the williams restaurant,parrot,cancel,3 -meeting_schedule,what is in my schedule?,parrot,avail,0 -goodbye,"goodbye, ai assistant",original,bye,2 -greeting,salutations!,original,greet,4 -greeting,hi there,original,greet,4 -yes,good,parrot,book,1 -thank_you,i appreciate the help,original,bye,2 -how_busy,how long will i have to wait for mr joes?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -yes,yay,lambada,book,1 -greeting,hola,original,greet,4 -date,what's next month and day?,parrot,avail,0 -greeting,"hey, what's new",original,greet,4 -date,today?,parrot,avail,0 -greeting,ahoy hoy,original,greet,4 -how_busy,how long is the wait at pizza factory,lambada,avail,0 -reminder_update,remember to call bob,parrot,resched,5 -goodbye,tootles?,parrot,bye,2 -yes,positive,original,book,1 -greeting,"hello, ai",original,greet,4 -cancel_reservation,please get rid of my reservation for friday night in robins,parrot,cancel,3 -greeting,how's my family doing?,parrot,greet,4 -how_busy,can i tell how busy this restaurant is at 6 pm?,lambada,avail,0 -thank_you,thanks for the update,lambada,bye,2 -greeting,hola,original,greet,4 -schedule_meeting,list the available conference rooms between one and two today?,parrot,book,1 -date,please give me a full day and date for today,parrot,avail,0 -greeting,hola,original,greet,4 -no,that's bad,parrot,cancel,3 -yes,sure,original,book,1 -greeting,hey yai,lambada,greet,4 -no,negatory,original,cancel,3 -greeting,good evening,original,greet,4 -date,please tell me the date of tomorrow,parrot,avail,0 -how_busy,do you think outback steakhouse will be busy between 6 and 9?,parrot,avail,0 -greeting,hello there ai,original,greet,4 -date,show me a calendar,original,avail,0 -schedule_meeting,please make a meeting with matthew and can you write it,lambada,book,1 -no,no way,original,cancel,3 -greeting,hello siri,original,greet,4 -no,no it's not good,parrot,cancel,3 -goodbye,take a break,parrot,bye,2 -greeting,hola,original,greet,4 -yes,sure,original,book,1 -yes,good yes,lambada,book,1 -greeting,how's everything?,parrot,greet,4 -no,the answer is false,original,cancel,3 -how_busy,how busy is iman at noon,lambada,avail,0 -date,what's today?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -goodbye,"thanks, bye",original,bye,2 -goodbye,be careful then,lambada,bye,2 -meeting_schedule,please read my schedule,parrot,avail,0 -yes,yes i am,original,book,1 -goodbye,adios!,original,bye,2 -yes,it's logical,parrot,book,1 -yes,confirm,original,book,1 -greeting,salutations!,original,greet,4 -no,i would rather not,lambada,cancel,3 -greeting,how are you doing?,parrot,greet,4 -greeting,how is this going?,parrot,greet,4 -goodbye,goodnight,original,bye,2 -thank_you,appreciated,original,bye,2 -thank_you,i appreciate your gesture,lambada,bye,2 -yes,so it's checked,parrot,book,1 -no,no thanks,original,cancel,3 -yes,oh-huh,parrot,book,1 -meeting_schedule,i need to know if i have any meetings scheduled with mark,lambada,avail,0 -meeting_schedule,meetings today,original,avail,0 -yes,indeed,original,book,1 -greeting,salutations!,original,greet,4 -how_busy,how long will i have to wait to be seated in this restaurant,parrot,avail,0 -reminder_update,remind me to write the letter,parrot,resched,5 -greeting,are you doing good?,lambada,greet,4 -greeting,hello there!,original,greet,4 -no,negating,parrot,cancel,3 -how_busy,is mcdonalds busy?,parrot,avail,0 -how_busy,does the michigan steakhouse have a lot of people at dinnertime?,parrot,avail,0 -calendar,can you tell me what's on my calendar for march 3?,parrot,avail,0 -thank_you,thanks again!,original,bye,2 -thank_you,gracias,original,bye,2 -meeting_schedule,show me how many meetings i have today between noon and one,parrot,avail,0 -yes,oh-huh,parrot,book,1 -no,negation,parrot,cancel,3 -goodbye,we'll talk later ai,original,bye,2 -yes,confirm,original,book,1 -goodbye,tootles?,parrot,bye,2 -greeting,hiya!,original,greet,4 -greeting,hey fellows,parrot,greet,4 -how_busy,how long will it take for a table in olive garden?,parrot,avail,0 -yes,huh,parrot,book,1 -yes,sure,original,book,1 -yes,yes please,original,book,1 -goodbye,i'll leave,parrot,bye,2 -thank_you,good job,lambada,bye,2 -date,what month and day is it today?,parrot,avail,0 -calendar,tell me what's on my calendar for march 25th?,parrot,avail,0 -goodbye,adios,original,bye,2 -goodbye,see ya,lambada,bye,2 -calendar_update,remove dinner at tiffany's from my calendar on march 6th,parrot,resched,5 -goodbye,tootles?,parrot,bye,2 -no,absolutely false,parrot,cancel,3 -greeting,aloha,original,greet,4 -thank_you,thank you please,parrot,bye,2 -greeting,how is my day,original,greet,4 -date,in 9 days?,parrot,avail,0 -greeting,hey,original,greet,4 -no,negatory,original,cancel,3 -no,i think it's not possible,parrot,cancel,3 -goodbye,you're done,parrot,bye,2 -goodbye,i enjoy our chat,lambada,bye,2 -yes,affirmative,original,book,1 -how_busy,how long after 7pm,parrot,avail,0 -how_busy,is a red lobster usually busy at 8pm?,parrot,avail,0 -schedule_meeting,open meeting rooms from 1 pm to 3pm,parrot,book,1 -goodbye,sayonara,original,bye,2 -reminder_update,make a reminder,parrot,resched,5 -greeting,hi ai,original,greet,4 -yes,that's correct,original,book,1 -no,negative sure,parrot,cancel,3 -thank_you,really great!,original,bye,2 -greeting,hello what's going on?,parrot,greet,4 -date,the date is today,parrot,avail,0 -date,what the day is?,parrot,avail,0 -greeting,heyo,original,greet,4 -no,the negator,parrot,cancel,3 -yes,that's correct,original,book,1 -yes,"yes, that is true",original,book,1 -thank_you,thanks,original,bye,2 -greeting,hello siri,original,greet,4 -yes,so it's true,parrot,book,1 -greeting,good to see you,original,greet,4 -goodbye,peace,original,bye,2 -thank_you,your assistance is appreciated,parrot,bye,2 -date,in 100 days?,parrot,avail,0 -reminder_update,make me a reminder to visit ryan,parrot,resched,5 -yes,it's true,original,book,1 -no,i mean no,parrot,cancel,3 -yes,ya,original,book,1 -no,the information is wrong,original,cancel,3 -no,it seems not,original,cancel,3 -goodbye,peace out!,original,bye,2 -reminder_update,remember to make my cat a scratcher,parrot,resched,5 -no,i say negative,original,cancel,3 -no,it's a wrong answer,parrot,cancel,3 -date,what month today?,parrot,avail,0 -yes,indeed,original,book,1 -yes,good,parrot,book,1 -how_busy,what's the maximum wait time at yu-san?,parrot,avail,0 -no,not that,original,cancel,3 -goodbye,goodbye goodbye,parrot,bye,2 -yes,thats right,original,book,1 -no,that's no,parrot,cancel,3 -thank_you,thanks for that answer,original,bye,2 -no,i'll pass,original,cancel,3 -calendar,please tell me what's on my calendar for april 24th,parrot,avail,0 -goodbye,good luck tomorrow,lambada,bye,2 -goodbye,afterward,parrot,bye,2 -no,this is so negative,parrot,cancel,3 -no,nay,original,cancel,3 -meeting_schedule,talk to me about all of my meetings between now and midnight?,parrot,avail,0 -thank_you,thank you for what you did,parrot,bye,2 -calendar,can you tell me what's on my calendar for march 5 2019?,parrot,avail,0 -thank_you,"great, thanks!",original,bye,2 -goodbye,farewell!,original,bye,2 -yes,great,original,book,1 -greeting,hi there,original,greet,4 -yes,huh huh,parrot,book,1 -no,not good,parrot,cancel,3 -no,"i don't like that, no",original,cancel,3 -goodbye,bye bye,lambada,bye,2 -thank_you,"oh, thanks",original,bye,2 -goodbye,you're done,parrot,bye,2 -no,i'd prefer not to answer that question,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -goodbye,the conversation was good,parrot,bye,2 -no,no that's not correct,parrot,cancel,3 -no,negatory,original,cancel,3 -thank_you,thanks a lot,original,bye,2 -no,no?,parrot,cancel,3 -yes,certainly true,parrot,book,1 -no,no!,original,cancel,3 -yes,it's true,original,book,1 -yes,affirmitive,original,book,1 -thank_you,thanks so much!,original,bye,2 -reminder_update,may i be reminded,lambada,resched,5 -yes,"yes, that's affirmative",original,book,1 -no,but it's false,parrot,cancel,3 -no,that's a negatory,original,cancel,3 -greeting,how are you,original,greet,4 -yes,that is true,original,book,1 -how_busy,is the wait time at the restaurant long?,parrot,avail,0 -date,what's the date tomorrow,original,avail,0 -yes,yes sir,original,book,1 -no,that's overwhelmingly negative,parrot,cancel,3 -no,negation,parrot,cancel,3 -thank_you,my gratitude,parrot,bye,2 -reminder_update,remind me to write down the dinner?,parrot,resched,5 -date,in 8 days?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -goodbye,glad we can talk,parrot,bye,2 -no,that's not true,original,cancel,3 -goodbye,bye-bye,original,bye,2 -yes,oh yes,original,book,1 -no,naw,original,cancel,3 -thank_you,appreciate it,original,bye,2 -greeting,how've you been,original,greet,4 -yes,affirmitive,original,book,1 -greeting,what's new here?,parrot,greet,4 -goodbye,good talking to you,lambada,bye,2 -greeting,let me know how you're doing?,parrot,greet,4 -how_busy,how long do i have to wait before going to the restaurant?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -date,what date?,parrot,avail,0 -thank_you,i appreciate you helping me,original,bye,2 -greeting,heller,original,greet,4 -date,what date is that?,parrot,avail,0 -no,no!,original,cancel,3 -no,not that one,original,cancel,3 -how_busy,tell me the wait for a table in an italian restaurant?,parrot,avail,0 -schedule_meeting,i want to meet you on wednesday at 300,parrot,book,1 -goodbye,the chat was great,parrot,bye,2 -goodbye,go easy,parrot,bye,2 -no,no?,parrot,cancel,3 -goodbye,bye-bye,original,bye,2 -date,what's going on today?,parrot,avail,0 -yes,ok,original,book,1 -goodbye,later!,original,bye,2 -calendar,read my calendar,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -no,i don't like that,parrot,cancel,3 -reminder_update,set a reminder for later,original,resched,5 -no,that is incorrect,original,cancel,3 -greeting,hello there!,original,greet,4 -greeting,aho,parrot,greet,4 -goodbye,i'm going,parrot,bye,2 -no,no that isn't correct,original,cancel,3 -no,it's false,parrot,cancel,3 -schedule_meeting,how many rooms are there between 2 and 3?,parrot,book,1 -no,negative sure,parrot,cancel,3 -yes,right,parrot,book,1 -date,what's the current day?,parrot,avail,0 -no,yes the answer is false,parrot,cancel,3 -greeting,how's ai feeling?,parrot,greet,4 -yes,that's a definite yes,original,book,1 -greeting,hello,original,greet,4 -greeting,salutation,parrot,greet,4 -cancel_reservation,please cancel the reservation at the pat's restaurant,parrot,cancel,3 -goodbye,adios!,original,bye,2 -greeting,yo,original,greet,4 -yes,yeap,original,book,1 -goodbye,i'm out,parrot,bye,2 -goodbye,i'd like to see you later,parrot,bye,2 -thank_you,thanks very much for your answer,parrot,bye,2 -no,FALSE,original,cancel,3 -greeting,good day,original,greet,4 -date,what date is tomorrow,parrot,avail,0 -reminder_update,you know something?,parrot,resched,5 -no,that's bad,parrot,cancel,3 -goodbye,i'll be on the way,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -calendar,please read my calendar,parrot,avail,0 -yes,it's positive,parrot,book,1 -no,"no, don't do that",original,cancel,3 -reminder_update,please remember me later,parrot,resched,5 -no,that's incorrect,original,cancel,3 -goodbye,"that's all, bye",original,bye,2 -thank_you,i'm really thankful,parrot,bye,2 -how_busy,how long will i have to wait to sit at the imovie?,parrot,avail,0 -goodbye,great conversation,parrot,bye,2 -no,no?,parrot,cancel,3 -how_busy,how busy is chili's around 5 pm,lambada,avail,0 -no,i'd say no,original,cancel,3 -thank_you,appreciate the assistance,parrot,bye,2 -yes,yes sir,original,book,1 -goodbye,have fun?,lambada,bye,2 -no,this statement is false,parrot,cancel,3 -thank_you,i am very grateful,original,bye,2 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -goodbye,im leaving,parrot,bye,2 -yes,yes,original,book,1 -no,no good,original,cancel,3 -how_busy,if i want to sit at applebee's,parrot,avail,0 -goodbye,glad we talked,parrot,bye,2 -goodbye,see ya,original,bye,2 -goodbye,see ya,lambada,bye,2 -greeting,how's everything?,parrot,greet,4 -thank_you,i'm glad you laughed,parrot,bye,2 -greeting,wassup,original,greet,4 -yes,sure,original,book,1 -goodbye,bye bye,lambada,bye,2 -no,negatory?,parrot,cancel,3 -no,the answer is no,original,cancel,3 -no,is very false,parrot,cancel,3 -reminder_update,add me a reminder?,parrot,resched,5 -goodbye,bye bye,lambada,bye,2 -date,do you have the date?,original,avail,0 -goodbye,i need to catch up,lambada,bye,2 -date,what day?,parrot,avail,0 -greeting,nice day,lambada,greet,4 -greeting,hi,original,greet,4 -reminder_update,please remember something,parrot,resched,5 -yes,my answer is yes,parrot,book,1 -greeting,how's it with you?,parrot,greet,4 -no,no!,original,cancel,3 -date,tell me the date in five days?,parrot,avail,0 -yes,perfect,parrot,book,1 -yes,facts,original,book,1 -goodbye,good bye,original,bye,2 -thank_you,thanks very much for your answer,parrot,bye,2 -thank_you,i'm so very grateful,parrot,bye,2 -thank_you,i appreciate that answer,original,bye,2 -yes,okay,original,book,1 -thank_you,merci beaucoup,original,bye,2 -cancel_reservation,i don't need dinner reservation,parrot,cancel,3 -no,that's incorrect,original,cancel,3 -goodbye,goodbyes,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -goodbye,later!,original,bye,2 -how_busy,how long will i have to wait to eat?,parrot,avail,0 -no,that isn't right,original,cancel,3 -goodbye,fairwell,original,bye,2 -no,false sure,parrot,cancel,3 -calendar,show me the calendar?,parrot,avail,0 -goodbye,bye,original,bye,2 -no,please disagree,lambada,cancel,3 -schedule_meeting,make a meeting for me,parrot,book,1 -goodbye,talk later,original,bye,2 -yes,"affirmative, go ahead",original,book,1 -greeting,whats up,original,greet,4 -schedule_meeting,how do i arrange a meeting?,parrot,book,1 -cancel_reservation,i need you to cancel my reservation for 8 at the pat's,parrot,cancel,3 -goodbye,good bye,original,bye,2 -yes,i vote yes,original,book,1 -greeting,whats up?,parrot,greet,4 -no,that’s incorrect,original,cancel,3 -no,that is no,lambada,cancel,3 -how_busy,how busy is the macaroni grill around 6,parrot,avail,0 -thank_you,my thanks,parrot,bye,2 -reminder_update,new reminder please,lambada,resched,5 -goodbye,goodbye!,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -goodbye,take a break,parrot,bye,2 -how_busy,what's the wait?,parrot,avail,0 -greeting,hey fellows,parrot,greet,4 -no,FALSE,original,cancel,3 -thank_you,good job thanks,parrot,bye,2 -no,nope,original,cancel,3 -no,that's not correct,original,cancel,3 -thank_you,i'm very grateful,parrot,bye,2 -no,definitely not,original,cancel,3 -how_busy,how long would it take to get a table in chili's steak house?,parrot,avail,0 -thank_you,thanks for my answer,parrot,bye,2 -no,the negator,parrot,cancel,3 -goodbye,for now,parrot,bye,2 -schedule_meeting,i need to get a meeting room on friday at 9:00 am,lambada,book,1 -greeting,hola!,original,greet,4 -yes,TRUE,original,book,1 -greeting,how's everything?,parrot,greet,4 -goodbye,bye!,original,bye,2 -yes,confirm,original,book,1 -yes,confirmed,original,book,1 -goodbye,greetings,parrot,bye,2 -greeting,how's the ai?,parrot,greet,4 -no,no good,original,cancel,3 -yes,correct,original,book,1 -calendar,tuesday on my calendar?,parrot,avail,0 -no,i meant no,original,cancel,3 -greeting,hiya,original,greet,4 -goodbye,thanks goodbye,parrot,bye,2 -how_busy,does cheesecake factory typically get busy at 5:00?,lambada,avail,0 -greeting,how's the life?,parrot,greet,4 -thank_you,you're the best!,original,bye,2 -greeting,ai how is my life,parrot,greet,4 -reminder_update,remember to listen to the music on monday,parrot,resched,5 -thank_you,you answered,parrot,bye,2 -no,absolutely not,original,cancel,3 -how_busy,how long is the wait for a table at olive garden right now?,parrot,avail,0 -yes,approved,original,book,1 -how_busy,what's the wait time at olive garden today?,parrot,avail,0 -yes,right,parrot,book,1 -thank_you,okay thank you,parrot,bye,2 -yes,facts,original,book,1 -yes,affirmative,original,book,1 -goodbye,good bye,original,bye,2 -goodbye,adios ai,original,bye,2 -greeting,heller,original,greet,4 -thank_you,i want to say thank you for my time,lambada,bye,2 -no,naw,parrot,cancel,3 -greeting,tell me how it's going for you?,parrot,greet,4 -schedule_meeting,can you arrange a meeting with emma?,parrot,book,1 -cancel_reservation,my dinner reservation is not necessary,parrot,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -meeting_schedule,will you meet ann?,parrot,avail,0 -yes,"yes, that is factual",original,book,1 -yes,"yes, that's right",original,book,1 -yes,TRUE,lambada,book,1 -greeting,hey there,original,greet,4 -no,"no, definitely not",original,cancel,3 -no,false sure,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -no,not true,original,cancel,3 -meeting_schedule,when is my meeting with christian scheduled for?,lambada,avail,0 -greeting,ahoy hoy,original,greet,4 -greeting,salutations!,original,greet,4 -calendar_update,check my calendar for june 5,parrot,resched,5 -calendar,did i set an appointment for the doctor on my schedule?,parrot,avail,0 -thank_you,gracias,original,bye,2 -no,it's definitely a false statement,parrot,cancel,3 -no,nothing,parrot,cancel,3 -no,it seems not,original,cancel,3 -greeting,how are you treated?,parrot,greet,4 -thank_you,my gratitude,parrot,bye,2 -how_busy,can you tell me what the wait is at michel's?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,that's overwhelmingly negative,parrot,cancel,3 -no,certainly false,parrot,cancel,3 -thank_you,my gratitude,parrot,bye,2 -calendar_update,remove the anniversary celebration from my calendar ,parrot,resched,5 -no,negative for sure,original,cancel,3 -date,what date?,parrot,avail,0 -thank_you,really great!,original,bye,2 -greeting,how's this going?,parrot,greet,4 -thank_you,nice,parrot,bye,2 -goodbye,goodbye thank you,parrot,bye,2 -date,what's the day now?,parrot,avail,0 -no,no?,parrot,cancel,3 -thank_you,thanks for trying,original,bye,2 -how_busy,how long is the sitting time in the restaurant,parrot,avail,0 -greeting,hello siri,original,greet,4 -yes,perfect,parrot,book,1 -greeting,hola!,original,greet,4 -no,that's a negatory,original,cancel,3 -no,negative certainly,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -greeting,how's my family?,parrot,greet,4 -yes,yes sir,original,book,1 -yes,agreed,original,book,1 -greeting,hiya,original,greet,4 -yes,let's do it,parrot,book,1 -yes,my answer is yes,parrot,book,1 -goodbye,fairwell?,parrot,bye,2 -no,that is no way,lambada,cancel,3 -date,tell me what day tomorrow?,parrot,avail,0 -yes,that's correct,original,book,1 -goodbye,good luck,lambada,bye,2 -goodbye,the discussion was nice,parrot,bye,2 -no,naw,parrot,cancel,3 -thank_you,thanks,original,bye,2 -goodbye,", goodbye",lambada,bye,2 -greeting,yo,original,greet,4 -goodbye,goodbye,original,bye,2 -greeting,hiya,original,greet,4 -how_busy,ihop around 10 pm,parrot,avail,0 -meeting_schedule,show me the schedule of the meeting today?,parrot,avail,0 -thank_you,many thank,original,bye,2 -greeting,how ya doing,lambada,greet,4 -how_busy,how long will the wait at the cheese cake factory be right now?,parrot,avail,0 -thank_you,your assistance is appreciated,parrot,bye,2 -thank_you,much obliged,original,bye,2 -goodbye,regards,original,bye,2 -yes,i know that it's true,parrot,book,1 -goodbye,good call,parrot,bye,2 -how_busy,how long will i have to wait to get seated at imovie,lambada,avail,0 -thank_you,thank a bunch,original,bye,2 -greeting,hello hello good day,parrot,greet,4 -thank_you,okay thank you,parrot,bye,2 -yes,perfect,parrot,book,1 -yes,yeah you got it,lambada,book,1 -yes,accept,parrot,book,1 -no,that's bad,parrot,cancel,3 -goodbye,i liked our conversation,parrot,bye,2 -how_busy,what's the wait for a table at this restaurant right now,lambada,avail,0 -date,today?,parrot,avail,0 -how_busy,how busy is the cheesecake factory at 7?,parrot,avail,0 -yes,i know,parrot,book,1 -greeting,well hello,original,greet,4 -goodbye,goodbye now,parrot,bye,2 -no,the answer is no,original,cancel,3 -greeting,what's happening?,parrot,greet,4 -thank_you,your help is appreciated,original,bye,2 -goodbye,goodbye bye,parrot,bye,2 -calendar,what do you have scheduled for march 2?,parrot,avail,0 -how_busy,how long will i have to wait to get seated at a chinese restaurant,lambada,avail,0 -calendar,is there anything scheduled for march 7th?,parrot,avail,0 -no,no way!,original,cancel,3 -yes,it is true,original,book,1 -yes,accept,parrot,book,1 -greeting,what's happening?,parrot,greet,4 -yes,positive,parrot,book,1 -cancel_reservation,can i cancel the reservation?,lambada,cancel,3 -no,naw,parrot,cancel,3 -calendar_update,please add the date of feb 5th to my calendar,parrot,resched,5 -greeting,welcome,parrot,greet,4 -date,what's the current day?,parrot,avail,0 -yes,"yup, that's true",original,book,1 -yes,accept,parrot,book,1 -reminder_update,make me a reminder,lambada,resched,5 -how_busy,how long can i wait in the restaurant,parrot,avail,0 -how_busy,what's the wait?,parrot,avail,0 -no,this is a lie,parrot,cancel,3 -thank_you,appreciate it,original,bye,2 -cancel_reservation,i need to cancel my reservation for one in red robin,parrot,cancel,3 -yes,approved,original,book,1 -meeting_schedule,when's the meeting today?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -date,what year is tomorrow?,parrot,avail,0 -meeting_schedule,time of meeting?,parrot,avail,0 -yes,let's do that,parrot,book,1 -thank_you,okay thank you,parrot,bye,2 -goodbye,good talk,parrot,bye,2 -cancel_reservation,cancel my reservation for 730 at morton's,parrot,cancel,3 -yes,yes it's true,lambada,book,1 -goodbye,was nice to see you,parrot,bye,2 -how_busy,around nine is ambrosio busy,parrot,avail,0 -goodbye,bye!,original,bye,2 -greeting,how things go?,parrot,greet,4 -goodbye,sayonara ,parrot,bye,2 -goodbye,"nice talk, goodbye",lambada,bye,2 -yes,accepted,original,book,1 -greeting,how's the ai?,parrot,greet,4 -cancel_reservation,get the salad canceled,parrot,cancel,3 -thank_you,thanks a lot for the answer,original,bye,2 -calendar,you know when i added this meeting to my calendar?,parrot,avail,0 -goodbye,good talk,parrot,bye,2 -greeting,"hello, friend",original,greet,4 -yes,ya,original,book,1 -yes,perfect,parrot,book,1 -thank_you,for that thank you so much,parrot,bye,2 -no,i disagree,parrot,cancel,3 -cancel_reservation,you can cancel my reservation,original,cancel,3 -goodbye,goodbye thank you,parrot,bye,2 -thank_you,your efforts don't go unnoticed,original,bye,2 -yes,definitely,original,book,1 -goodbye,"thanks for chatting, bye",lambada,bye,2 -calendar,read my calendar,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -goodbye,bye bye,lambada,bye,2 -thank_you,"thanks, that's helpful",original,bye,2 -calendar,are there any events happening between march 5 and 8?,parrot,avail,0 -meeting_schedule,i need to know if i have meetings scheduled for today,parrot,avail,0 -goodbye,i’m leaving-goodbye!,original,bye,2 -yes,it'll be yes,parrot,book,1 -no,yes that's false,lambada,cancel,3 -greeting,salutations!,original,greet,4 -yes,say positive,parrot,book,1 -yes,yeah you got it,lambada,book,1 -no,naw,parrot,cancel,3 -no,no,lambada,cancel,3 -cancel_reservation,cancel my reservation for dinner this weekend,parrot,cancel,3 -no,it's overwhelmingly wrong,parrot,cancel,3 -meeting_schedule,are there meetings between 4 and 5?,parrot,avail,0 -how_busy,does the street get crowded at 11 am?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -no,FALSE,lambada,cancel,3 -yes,let's do that,parrot,book,1 -greeting,what's up?,parrot,greet,4 -yes,10-Apr,original,book,1 -no,that is not true,original,cancel,3 -goodbye,later,original,bye,2 -yes,affirmitive,original,book,1 -no,the information is wrong,original,cancel,3 -yes,that's definitely true,original,book,1 -greeting,hola!,original,greet,4 -thank_you,really great!,original,bye,2 -no,thanks no,parrot,cancel,3 -calendar,are there any events on my calendar for january 1?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -no,no good,original,cancel,3 -yes,yeah,original,book,1 -thank_you,thanks for that!,original,bye,2 -how_busy,is mr joe's pizza usually occupied?,parrot,avail,0 -yes,it's a fact,parrot,book,1 -no,FALSE,lambada,cancel,3 -thank_you,nice,parrot,bye,2 -greeting,hey what's going on?,parrot,greet,4 -thank_you,very grateful,parrot,bye,2 -no,no no it's not,parrot,cancel,3 -calendar_update,delete joe's wedding from my calendar,parrot,resched,5 -greeting,are you okay right now?,original,greet,4 -yes,i think it's right,parrot,book,1 -yes,huh,parrot,book,1 -yes,great,original,book,1 -date,what's my day today?,parrot,avail,0 -yes,"yes, that is a fact",original,book,1 -calendar,show me what's on my calendar for valentine's day?,parrot,avail,0 -goodbye,tootles,original,bye,2 -greeting,please tell me what ai is doing?,parrot,greet,4 -thank_you,my gratitude,parrot,bye,2 -yes,is true,parrot,book,1 -greeting,well hello,original,greet,4 -yes,huh huh,parrot,book,1 -no,no thanks,original,cancel,3 -yes,"yes, that is factual",original,book,1 -goodbye,good-bye,parrot,bye,2 -meeting_schedule,when is my meeting with sam?,parrot,avail,0 -calendar,do i have anything scheduled for next week?,parrot,avail,0 -no,not true,original,cancel,3 -thank_you,thanks,original,bye,2 -schedule_meeting,let me know if you can schedule a meeting,parrot,book,1 -yes,and you're correct,parrot,book,1 -yes,sure thing,original,book,1 -calendar_update,can you change the date of the doctor's appointment event in my calendar from april 1st to april 3rd?,parrot,resched,5 -no,naw,original,cancel,3 -yes,TRUE,original,book,1 -no,negatory,original,cancel,3 -thank_you,my gratitude,parrot,bye,2 -goodbye,talk to you later,original,bye,2 -how_busy,how long do i have to wait if i want to go to tom's fries?,parrot,avail,0 -how_busy,can i wait at the red lobster until 9 o'clock?,parrot,avail,0 -schedule_meeting,is there any meeting room available between 8 and 10?,parrot,book,1 -yes,absolutely,original,book,1 -greeting,what is new?,parrot,greet,4 -goodbye,i'm going to talk to you later,parrot,bye,2 -yes,yay,lambada,book,1 -thank_you,appreciated,original,bye,2 -no,most definitely false,parrot,cancel,3 -yes,all right,parrot,book,1 -cancel_reservation,do you have to cancel my reservation for the loft?,parrot,cancel,3 -yes,uh-huh,original,book,1 -schedule_meeting,i have to schedule a meeting with john at 8pm,parrot,book,1 -goodbye,goodbye soon,lambada,bye,2 -no,nope,original,cancel,3 -reminder_update,do not let me forget later,parrot,resched,5 -calendar,what's tuesday in my calendar?,parrot,avail,0 -goodbye,i'll leave now,parrot,bye,2 -thank_you,thanks,original,bye,2 -goodbye,thanks for the talk,lambada,bye,2 -thank_you,i appreciate it,original,bye,2 -greeting,hello how are you,lambada,greet,4 -goodbye,buhbye,original,bye,2 -thank_you,i'm so very grateful,parrot,bye,2 -greeting,ahoy hoy,original,greet,4 -goodbye,peace,original,bye,2 -thank_you,you helped me today,parrot,bye,2 -no,so that's no,parrot,cancel,3 -goodbye,i'm gone,parrot,bye,2 -reminder_update,remember to write a letter,parrot,resched,5 -calendar,is there an anniversary dinner in my calendar?,parrot,avail,0 -no,it's so negative,parrot,cancel,3 -goodbye,cya later,original,bye,2 -calendar,have you added a doctor appointment to my calendar?,parrot,avail,0 -date,what's the year?,parrot,avail,0 -greeting,how's life?,parrot,greet,4 -greeting,hola!,original,greet,4 -no,hell nah,original,cancel,3 -greeting,hey there,original,greet,4 -yes,all right,original,book,1 -goodbye,buhbye now,lambada,bye,2 -goodbye,later,original,bye,2 -greeting,whats up?,parrot,greet,4 -greeting,i want to know how things have been,lambada,greet,4 -greeting,can you tell me how you are today?,parrot,greet,4 -how_busy,how busy is the olive garden at 7pm?,parrot,avail,0 -calendar,what do i know about my calendar for march 21?,lambada,avail,0 -greeting,hey there,original,greet,4 -no,that information is false,lambada,cancel,3 -yes,perfect,parrot,book,1 -goodbye,goodbye now,parrot,bye,2 -date,what day?,parrot,avail,0 -goodbye,good night,original,bye,2 -cancel_reservation,i must cancel my reservation,lambada,cancel,3 -greeting,"hello, good day",lambada,greet,4 -greeting,"hello, ai",original,greet,4 -greeting,how's the ai?,parrot,greet,4 -yes,definitely yes,parrot,book,1 -thank_you,"good job, thanks",lambada,bye,2 -thank_you,thanks!,original,bye,2 -yes,okay,original,book,1 -goodbye,later!,original,bye,2 -greeting,bonjour,original,greet,4 -goodbye,my way,parrot,bye,2 -thank_you,your answer pleased me,original,bye,2 -yes,huh huh,parrot,book,1 -thank_you,thanks again,original,bye,2 -thank_you,thanks for coming,parrot,bye,2 -schedule_meeting,please set up a meeting with bob,parrot,book,1 -yes,yeah,original,book,1 -goodbye,goodbye,original,bye,2 -no,no no no,parrot,cancel,3 -yes,good,parrot,book,1 -goodbye,farewell!,original,bye,2 -yes,confirmed,original,book,1 -goodbye,see ya!,original,bye,2 -how_busy,can you tell me how busy chili's will be at 5?,lambada,avail,0 -yes,sure thing,original,book,1 -yes,so it's true,parrot,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -goodbye,see you around,original,bye,2 -no,yes it's false,parrot,cancel,3 -date,what year is this?,parrot,avail,0 -how_busy,can you tell me how busy chili's is at 6pm?,lambada,avail,0 -date,what's tomorrow's date,original,avail,0 -greeting,what do you feel like?,parrot,greet,4 -no,negative,original,cancel,3 -greeting,ahoy,lambada,greet,4 -no,that isn't true,lambada,cancel,3 -greeting,are you okay now?,parrot,greet,4 -date,what day is today,parrot,avail,0 -yes,TRUE,lambada,book,1 -thank_you,i'm really grateful,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -thank_you,i'm thankful,original,bye,2 -thank_you,your response was good,parrot,bye,2 -yes,let's do that,parrot,book,1 -yes,great,original,book,1 -greeting,hola,original,greet,4 -yes,exactly right,original,book,1 -greeting,yo how yo feelin,lambada,greet,4 -greeting,what's happened?,parrot,greet,4 -how_busy,how do you think i will feel if i go to chili's at 5:30,lambada,avail,0 -thank_you,i owe you,parrot,bye,2 -date,what's the date now,parrot,avail,0 -yes,TRUE,original,book,1 -yes,accept,parrot,book,1 -goodbye,later then,lambada,bye,2 -greeting,hello,original,greet,4 -goodbye,the talk was nice,lambada,bye,2 -yes,that would be great,original,book,1 -no,negative,original,cancel,3 -thank_you,i'm grateful,original,bye,2 -meeting_schedule,what time is it to meet with steven?,parrot,avail,0 -greeting,hello siri,original,greet,4 -thank_you,i'm so very grateful,parrot,bye,2 -schedule_meeting,what is the meeting room size between 2 and 4?,lambada,book,1 -greeting,how ya doin,original,greet,4 -calendar,tell me what's on my calendar for this week,parrot,avail,0 -greeting,yo,original,greet,4 -no,not right so,parrot,cancel,3 -goodbye,peace,original,bye,2 -yes,yeah yeah,lambada,book,1 -thank_you,your answer was enjoyable,original,bye,2 -goodbye,on the road,parrot,bye,2 -no,that's very negative,parrot,cancel,3 -no,no good,original,cancel,3 -greeting,hi,original,greet,4 -how_busy,how long will it take to sit at olive garden?,parrot,avail,0 -goodbye,say goodbye,parrot,bye,2 -goodbye,", goodbye",lambada,bye,2 -yes,ya,original,book,1 -goodbye,later then,lambada,bye,2 -no,that's definitely false,original,cancel,3 -thank_you,thanks again,original,bye,2 -schedule_meeting,how do i create a meeting?,parrot,book,1 -yes,ya,original,book,1 -calendar,display my calendar,lambada,avail,0 -goodbye,it was really awesome to talk to you,original,bye,2 -thank_you,"great, thanks!",original,bye,2 -how_busy,outback steakhouse at 6 pm,parrot,avail,0 -no,it's false,parrot,cancel,3 -meeting_schedule,is mr ceo waiting for me now?,parrot,avail,0 -thank_you,thanks,original,bye,2 -goodbye,farewell,original,bye,2 -yes,TRUE,original,book,1 -no,absolutely false,parrot,cancel,3 -greeting,hello what's happening,parrot,greet,4 -how_busy,can the wait at imesa be long?,parrot,avail,0 -no,negation,parrot,cancel,3 -goodbye,talk to you later,original,bye,2 -how_busy,how busy is georgio at 6,lambada,avail,0 -goodbye,later gater,original,bye,2 -goodbye,i finished talking to you,parrot,bye,2 -goodbye,it was great to have this conversation with you,original,bye,2 -yes,uh-huh,original,book,1 -goodbye,"later, goodbye",lambada,bye,2 -no,false sure,parrot,cancel,3 -goodbye,good conversation,parrot,bye,2 -yes,"correct, that's true",original,book,1 -cancel_reservation,i'm not going to use the reservation i made,parrot,cancel,3 -goodbye,wonderful conversation,lambada,bye,2 -thank_you,thanks for helping me!,original,bye,2 -thank_you,my gratitude,parrot,bye,2 -greeting,how you're treated,parrot,greet,4 -no,that's wrong,original,cancel,3 -yes,oh-huh,parrot,book,1 -goodbye,greetings,parrot,bye,2 -thank_you,i'm so grateful for your help,lambada,bye,2 -greeting,yo,original,greet,4 -schedule_meeting,me and scott will be meeting at 1pm,parrot,book,1 -cancel_reservation,cancell my reservation for dinner at the red robin,parrot,cancel,3 -greeting,wassup,original,greet,4 -goodbye,for now,parrot,bye,2 -thank_you,gracias,original,bye,2 -no,that isn't true,lambada,cancel,3 -schedule_meeting,show me how do i schedule a meeting,original,book,1 -no,it's overwhelmingly negative,parrot,cancel,3 -greeting,hiya!,original,greet,4 -no,that isn't true,lambada,cancel,3 -no,i disagree with this,parrot,cancel,3 -yes,i'm sure it's true,parrot,book,1 -goodbye,say goodbye,parrot,bye,2 -date,what's my date for tomorrow?,parrot,avail,0 -thank_you,thanks for responding,parrot,bye,2 -yes,approved,original,book,1 -reminder_update,i need a reminder to give the dog medicine at ten tonight,parrot,resched,5 -no,don't agree,parrot,cancel,3 -date,give me today's date,original,avail,0 -yes,exactly right,original,book,1 -schedule_meeting,how is the meeting scheduled?,parrot,book,1 -yes,great,original,book,1 -yes,definitely,original,book,1 -no,ill pass,original,cancel,3 -goodbye,bye bye,lambada,bye,2 -thank_you,nice,parrot,bye,2 -no,negating,parrot,cancel,3 -no,it's a negation,parrot,cancel,3 -thank_you,okay thank you,parrot,bye,2 -thank_you,nice,parrot,bye,2 -greeting,how's life going?,parrot,greet,4 -yes,please let's do this,parrot,book,1 -calendar_update,add my work in my calendar,parrot,resched,5 -yes,ok,original,book,1 -thank_you,gracias,original,bye,2 -no,FALSE,original,cancel,3 -date,today is which day of the week?,parrot,avail,0 -no,no it's a no,parrot,cancel,3 -how_busy,how long will it take to make a reservation at a pizza shop?,parrot,avail,0 -date,today?,parrot,avail,0 -goodbye,adios,original,bye,2 -greeting,hola!,original,greet,4 -yes,TRUE,original,book,1 -yes,yup,original,book,1 -goodbye,later thank you for the chat,parrot,bye,2 -thank_you,you did it,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -greeting,hi what's up?,parrot,greet,4 -how_busy,how busy the restaurant is?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -no,that's untrue,parrot,cancel,3 -reminder_update,what's a reminder,parrot,resched,5 -thank_you,thanks for telling me,parrot,bye,2 -no,don't agree,parrot,cancel,3 -yes,positive,original,book,1 -reminder_update,i'd like to be reminded to clean my room,parrot,resched,5 -goodbye,it's over,parrot,bye,2 -calendar,can you check what is currently on my calendar for february 14?,lambada,avail,0 -meeting_schedule,when's my meeting today?,parrot,avail,0 -goodbye,adios,original,bye,2 -yes,accepted,original,book,1 -thank_you,your response was good,parrot,bye,2 -yes,accept,parrot,book,1 -goodbye,a good talk,parrot,bye,2 -goodbye,bye!,original,bye,2 -meeting_schedule,when are my meetings?,parrot,avail,0 -yes,yes,original,book,1 -how_busy,how long after 7pm,parrot,avail,0 -greeting,heller,original,greet,4 -no,you got that wrong,original,cancel,3 -no,that's very wrong,parrot,cancel,3 -no,it's not a fact,parrot,cancel,3 -cancel_reservation,i need to cancel my reservation please,parrot,cancel,3 -thank_you,thanks i appreciate it,parrot,bye,2 -no,certainly not,original,cancel,3 -thank_you,thanks please,original,bye,2 -thank_you,you've helped,parrot,bye,2 -goodbye,i'm out,parrot,bye,2 -how_busy,there's a cheesecake factory,parrot,avail,0 -calendar_update,make sure that the events on my calendar for march 1 2019 are cleared,parrot,resched,5 -yes,i want you to confirm what i'm about to say,parrot,book,1 -goodbye,peace out!,original,bye,2 -date,list the next week?,parrot,avail,0 -yes,i know,parrot,book,1 -schedule_meeting,could you schedule a meeting with john smith at 1 pm tomorrow?,parrot,book,1 -greeting,greetings to you,original,greet,4 -how_busy,can you tell me what the wait is at chipotle?,lambada,avail,0 -yes,i think it's right,parrot,book,1 -how_busy,does it look like there will be a lot of people at the pizza place?,lambada,avail,0 -greeting,hiya!,original,greet,4 -greeting,yo,original,greet,4 -goodbye,goodbye later,parrot,bye,2 -no,i say negative,original,cancel,3 -how_busy,how long does the restaurant take to eat?,parrot,avail,0 -calendar,how do i plan an event for october 14th,parrot,avail,0 -goodbye,regards,original,bye,2 -yes,confirm,original,book,1 -no,it's false,parrot,cancel,3 -yes,positive,parrot,book,1 -date,current date,original,avail,0 -goodbye,good bye,original,bye,2 -cancel_reservation,please cancel my reservation,original,cancel,3 -thank_you,many thanks,original,bye,2 -no,not happening,original,cancel,3 -yes,TRUE,original,book,1 -no,it's a no,original,cancel,3 -yes,let's do that,parrot,book,1 -date,is it six days?,parrot,avail,0 -yes,all right,original,book,1 -calendar_update,erase jeff from my calendar,parrot,resched,5 -yes,oh-huh,parrot,book,1 -greeting,welcome,parrot,greet,4 -no,it's so negative,parrot,cancel,3 -no,no!,original,cancel,3 -no,so that's no,parrot,cancel,3 -yes,that's the truth,original,book,1 -date,what day?,parrot,avail,0 -yes,ok,original,book,1 -reminder_update,please remind me something,parrot,resched,5 -yes,"true, most definitely",original,book,1 -yes,that's correct,original,book,1 -schedule_meeting,i need to schedule a meeting with stanley at 6pm,lambada,book,1 -no,it's my false statement,parrot,cancel,3 -calendar,did you mark the appointment on my calendar?,parrot,avail,0 -goodbye,bye bye then,original,bye,2 -greeting,how's life?,parrot,greet,4 -yes,"yes, please",original,book,1 -goodbye,farewell,original,bye,2 -thank_you,good job helping me,parrot,bye,2 -yes,yeap,original,book,1 -no,naw,parrot,cancel,3 -greeting,hey yai,lambada,greet,4 -yes,say positive,parrot,book,1 -yes,confirm,original,book,1 -how_busy,how long is the wait for a table at the restaurant,lambada,avail,0 -yes,TRUE,lambada,book,1 -date,what date today?,parrot,avail,0 -greeting,hey,original,greet,4 -goodbye,enjoy my day goodbye,parrot,bye,2 -date,tomorrow is the date,parrot,avail,0 -thank_you,thank you,original,bye,2 -greeting,salutation,parrot,greet,4 -no,it would be false,parrot,cancel,3 -thank_you,my sincere gratitude,parrot,bye,2 -no,hell nah,original,cancel,3 -yes,you are correct,original,book,1 -greeting,how you're treated?,parrot,greet,4 -thank_you,okay thank you,parrot,bye,2 -goodbye,thanks for talking,original,bye,2 -goodbye,nice drive by,lambada,bye,2 -cancel_reservation,please cancel my reservation for 6 at the red robin,parrot,cancel,3 -yes,uh-huh,original,book,1 -goodbye,ill leave now,parrot,bye,2 -goodbye,good conversation,parrot,bye,2 -no,is very false,parrot,cancel,3 -no,not true,original,cancel,3 -thank_you,my gratitude,parrot,bye,2 -thank_you,much obliged,original,bye,2 -goodbye,we can talk later,parrot,bye,2 -how_busy,how long will i have to wait before i can eat?,parrot,avail,0 -how_busy,how busy is pizza place at 7,lambada,avail,0 -thank_you,appreciate it,original,bye,2 -date,tell me what day?,parrot,avail,0 -no,hell nah,original,cancel,3 -goodbye,goodbye soon,lambada,bye,2 -reminder_update,remember to feed cat tonight at 6pm,parrot,resched,5 -reminder_update,set a reminder for me to request time off work around the holidays,original,resched,5 -no,FALSE,lambada,cancel,3 -yes,good yes,lambada,book,1 -schedule_meeting,can i meet with steve?,parrot,book,1 -schedule_meeting,during afternoon is there a meeting room to use,original,book,1 -no,it's not the right answer,parrot,cancel,3 -goodbye,im leaving,parrot,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -goodbye,peace,original,bye,2 -greeting,salutations!,original,greet,4 -greeting,how do you feel?,parrot,greet,4 -thank_you,glad you did it,parrot,bye,2 -date,today?,parrot,avail,0 -yes,yep,original,book,1 -date,what year is this?,parrot,avail,0 -no,indeed it's false,parrot,cancel,3 -yes,it seems true,parrot,book,1 -no,naw,original,cancel,3 -how_busy,how busy is yule log at 2pm,lambada,avail,0 -no,that's overwhelmingly negative,parrot,cancel,3 -cancel_reservation,abrogate the dinner reservation,parrot,cancel,3 -greeting,yo,original,greet,4 -yes,confirm,original,book,1 -yes,"yes, please",parrot,book,1 -yes,indeed,original,book,1 -greeting,hey bs,lambada,greet,4 -no,negation,parrot,cancel,3 -yes,TRUE,original,book,1 -goodbye,nice chat today,lambada,bye,2 -yes,ya,original,book,1 -thank_you,thank you for that!,lambada,bye,2 -thank_you,you're welcome,parrot,bye,2 -date,what's the current date?,parrot,avail,0 -yes,that is correct,original,book,1 -meeting_schedule,i'm going to meet john,parrot,avail,0 -thank_you,my sincere gratitude,parrot,bye,2 -no,FALSE,lambada,cancel,3 -no,that's not factual,parrot,cancel,3 -yes,affirmitive,original,book,1 -greeting,what's new here?,parrot,greet,4 -goodbye,", goodbye",lambada,bye,2 -greeting,hello ai,parrot,greet,4 -cancel_reservation,i have to cancel my dinner reservation at the steakhouse,parrot,cancel,3 -no,this is false,parrot,cancel,3 -calendar,show me my calendar for march 12?,parrot,avail,0 -thank_you,you've helped,parrot,bye,2 -meeting_schedule,do you have meetings for today from 5 to 7?,parrot,avail,0 -how_busy,is macy's busy?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -no,that's a no,lambada,cancel,3 -yes,i think you succeeded,parrot,book,1 -yes,yeah,original,book,1 -schedule_meeting,is there a meeting room available between 9 and 10?,parrot,book,1 -goodbye,goodbye!,original,bye,2 -yes,right,parrot,book,1 -greeting,good morning,parrot,greet,4 -how_busy,how long will it be before dinner,lambada,avail,0 -no,that's not true,original,cancel,3 -thank_you,the best,parrot,bye,2 -greeting,how's ayi doing?,parrot,greet,4 -yes,indeed,original,book,1 -greeting,bonjour,original,greet,4 -goodbye,buhbye,original,bye,2 -no,nothing,parrot,cancel,3 -date,current day,parrot,avail,0 -greeting,how's my day going,lambada,greet,4 -how_busy,list the average wait times for a chinese restaurant?,parrot,avail,0 -goodbye,this conversation was great,parrot,bye,2 -goodbye,im leaving,parrot,bye,2 -greeting,how's the world?,parrot,greet,4 -thank_you,thanks for cooperating,parrot,bye,2 -yes,that'd be great,parrot,book,1 -date,if you can give me the date?,parrot,avail,0 -how_busy,what will the olive garden be like at 6 pm?,parrot,avail,0 -cancel_reservation,please cancel my reservation at the barbecue,parrot,cancel,3 -no,that's overwhelmingly negative,parrot,cancel,3 -thank_you,you've helped,parrot,bye,2 -no,that is incorrect,original,cancel,3 -no,please no,parrot,cancel,3 -yes,uh-huh,original,book,1 -no,nope not it,original,cancel,3 -no,please disagree,lambada,cancel,3 -no,that is not correct,original,cancel,3 -greeting,tell me what's going on with you?,parrot,greet,4 -greeting,"wake up, ai",original,greet,4 -thank_you,appreciate it,original,bye,2 -how_busy,will this place be busy around 4 pm,lambada,avail,0 -greeting,you good?,parrot,greet,4 -calendar,tell me what is showing on my calendar for march 20th?,lambada,avail,0 -yes,positive,original,book,1 -yes,"that is true, yes",original,book,1 -no,"no, that's not right",original,cancel,3 -greeting,what's happening?,parrot,greet,4 -yes,"yes, please",parrot,book,1 -yes,positive,original,book,1 -date,current date,original,avail,0 -yes,affirmative,original,book,1 -greeting,what's up?,parrot,greet,4 -calendar_update,i must add something to my calendar for next tuesday,parrot,resched,5 -yes,confirm,original,book,1 -date,what day?,parrot,avail,0 -cancel_reservation,i booked chris at tony's please cancel it,parrot,cancel,3 -yes,so it works,parrot,book,1 -goodbye,see ya,lambada,bye,2 -no,ill pass,original,cancel,3 -how_busy,tell me how busy the rooster is at 8 pm?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -goodbye,goodbye goodbye,parrot,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -no,negatory?,parrot,cancel,3 -no,no it's not right,parrot,cancel,3 -no,nada,original,cancel,3 -no,i think not,original,cancel,3 -yes,huh,parrot,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -how_busy,does olive garden have a long wait before dinner?,lambada,avail,0 -no,so that's no,parrot,cancel,3 -yes,definitely,original,book,1 -goodbye,bye!,original,bye,2 -goodbye,bye bye,lambada,bye,2 -no,so i would say it's a false statement,parrot,cancel,3 -greeting,so what's up?,parrot,greet,4 -goodbye,fairwell,original,bye,2 -goodbye,i'm leaving now,lambada,bye,2 -no,negatory?,parrot,cancel,3 -no,FALSE,original,cancel,3 -how_busy,how busy would this place be at 6 pm?,parrot,avail,0 -goodbye,i leave now,parrot,bye,2 -no,no?,parrot,cancel,3 -goodbye,tootles,original,bye,2 -greeting,hey how's it hanging,original,greet,4 -greeting,yo,original,greet,4 -date,i want to know what the date will be,parrot,avail,0 -yes,uh-huh,original,book,1 -calendar,search my calendar for a birthday party,parrot,avail,0 -greeting,how are things?,parrot,greet,4 -goodbye,tootles,original,bye,2 -no,say negative,parrot,cancel,3 -thank_you,i owe you one!,original,bye,2 -greeting,hey how ya feeling,lambada,greet,4 -no,negating,parrot,cancel,3 -goodbye,bye!,original,bye,2 -goodbye,peace out,original,bye,2 -greeting,let me know how my day is,parrot,greet,4 -yes,confirmed,original,book,1 -thank_you,thanks!,original,bye,2 -meeting_schedule,are there meetings with john?,parrot,avail,0 -yes,absolutely,original,book,1 -no,"that would be ""no",original,cancel,3 -calendar_update,tell me the best way to remove the appointment?,parrot,resched,5 -date,tell me what day it'll be in 24 hours?,parrot,avail,0 -reminder_update,new reminder please,lambada,resched,5 -greeting,hi,original,greet,4 -goodbye,i'll leave,parrot,bye,2 -yes,do that?,original,book,1 -date,what's going on today?,parrot,avail,0 -greeting,"hello, good morning",lambada,greet,4 -goodbye,goodbyes,parrot,bye,2 -goodbye,just relax,parrot,bye,2 -calendar,tell me what events are happening on march 2nd?,lambada,avail,0 -greeting,hiya!,original,greet,4 -thank_you,okay thank you,parrot,bye,2 -how_busy,how long will it take to wait at 5pm,parrot,avail,0 -greeting,how's my treatment?,parrot,greet,4 -how_busy,how busy is the italian place right now?,parrot,avail,0 -yes,10-Apr,original,book,1 -goodbye,be careful then,lambada,bye,2 -yes,positive,parrot,book,1 -goodbye,bye-bye,original,bye,2 -yes,"yes, that's true",lambada,book,1 -yes,yes,original,book,1 -meeting_schedule,please read my schedule,parrot,avail,0 -how_busy,waiting at cheeseburgers?,parrot,avail,0 -no,nope,original,cancel,3 -reminder_update,remind me,original,resched,5 -yes,roger that,original,book,1 -yes,indeed,original,book,1 -yes,10-Apr,original,book,1 -goodbye,nice to see you later,lambada,bye,2 -goodbye,come on soon,parrot,bye,2 -calendar,what's the date in my calendar for my birthday,parrot,avail,0 -greeting,hey what's up,original,greet,4 -yes,10-Apr,original,book,1 -no,naw,parrot,cancel,3 -how_busy,what's the wait?,parrot,avail,0 -no,not right?,parrot,cancel,3 -greeting,what's happened?,parrot,greet,4 -greeting,yo,original,greet,4 -yes,confirm,original,book,1 -calendar,what is the date of my next scheduled dentist appointment?,original,avail,0 -goodbye,fairwell?,parrot,bye,2 -goodbye,tata for now,original,bye,2 -greeting,hiya!,original,greet,4 -goodbye,bye bye,lambada,bye,2 -yes,i guess,parrot,book,1 -reminder_update,maybe a reminder?,parrot,resched,5 -thank_you,you answered my question,parrot,bye,2 -yes,i would say yes,lambada,book,1 -greeting,how things go?,parrot,greet,4 -goodbye,sayonara,original,bye,2 -how_busy,how busy it is at 6?,parrot,avail,0 -thank_you,your answer is good,parrot,bye,2 -meeting_schedule,when will i meet ann?,parrot,avail,0 -greeting,how it goes?,parrot,greet,4 -no,that's erroneous,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -thank_you,thanks please,original,bye,2 -no,no!,original,cancel,3 -yes,definitely,original,book,1 -greeting,what's up?,parrot,greet,4 -no,FALSE,lambada,cancel,3 -greeting,how've you been?,parrot,greet,4 -calendar,are there any events planned for march 4 2019?,parrot,avail,0 -no,that is very false,lambada,cancel,3 -no,that's overwhelmingly negative,parrot,cancel,3 -goodbye,fairwell,original,bye,2 -goodbye,please talk to me,parrot,bye,2 -calendar,do i have something on my calendar for may 3?,parrot,avail,0 -yes,it seems true,parrot,book,1 -yes,that's a definite yes,original,book,1 -yes,that's correct,original,book,1 -greeting,good to see you,original,greet,4 -no,naw,original,cancel,3 -thank_you,thank you for trying it,parrot,bye,2 -greeting,salutation,parrot,greet,4 -no,it's false,parrot,cancel,3 -cancel_reservation,get the salad cancelled,lambada,cancel,3 -goodbye,good bye then,original,bye,2 -greeting,whats new,lambada,greet,4 -yes,"affirmative, go ahead",original,book,1 -yes,just right,parrot,book,1 -date,"what is tomorrow's date, please?",original,avail,0 -yes,that's correct,original,book,1 -no,"no, it's not",lambada,cancel,3 -no,naw,original,cancel,3 -schedule_meeting,can you schedule a meeting for tuesday evening at 6 pm?,parrot,book,1 -thank_you,very grateful,parrot,bye,2 -meeting_schedule,do i have meetings between 10 and 4?,parrot,avail,0 -yes,true is my response,original,book,1 -thank_you,"great, thanks!",original,bye,2 -calendar,do you have anything planned for january 1st?,parrot,avail,0 -no,negative certainly,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -goodbye,so glad you're talking to me,parrot,bye,2 -no,but certainly not,parrot,cancel,3 -no,thanks no,parrot,cancel,3 -goodbye,good talk,parrot,bye,2 -yes,huh huh,parrot,book,1 -yes,i say yes,lambada,book,1 -no,please disagree,lambada,cancel,3 -thank_you,thanks for my help!,original,bye,2 -date,list the next month?,parrot,avail,0 -yes,i am sure that is true,lambada,book,1 -no,naw,original,cancel,3 -goodbye,good bye,original,bye,2 -yes,confirm,original,book,1 -reminder_update,can you remind me?,parrot,resched,5 -yes,yeap,original,book,1 -how_busy,how busy is the cheesecake factory at lunchtime,parrot,avail,0 -goodbye,peace out,original,bye,2 -reminder_update,remind me to clean the garage this week,lambada,resched,5 -date,what's the date tomorrow?,parrot,avail,0 -reminder_update,let me know,parrot,resched,5 -yes,it is a yes from me,parrot,book,1 -greeting,ahoy,lambada,greet,4 -how_busy,how long will the wait be at the pizza restaurant?,parrot,avail,0 -goodbye,good talk,parrot,bye,2 -thank_you,thanks for the assist,original,bye,2 -greeting,salutations!,original,greet,4 -yes,i know,parrot,book,1 -how_busy,what's the crowd like at mr joes around 9pm,lambada,avail,0 -yes,okay,original,book,1 -yes,positive,parrot,book,1 -yes,do that?,original,book,1 -goodbye,bye-bye,original,bye,2 -yes,absolutely correct,original,book,1 -date,today?,parrot,avail,0 -yes,"yes, that's true",lambada,book,1 -greeting,hello bs,parrot,greet,4 -date,what month is today?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -no,say negative,parrot,cancel,3 -goodbye,peace,original,bye,2 -yes,not a lie,parrot,book,1 -date,date please,original,avail,0 -yes,definitely,original,book,1 -goodbye,later,original,bye,2 -goodbye,buhbye,original,bye,2 -date,what date?,parrot,avail,0 -no,no!,original,cancel,3 -yes,i say yes,lambada,book,1 -no,nada,original,cancel,3 -thank_you,my gratitude,parrot,bye,2 -yes,approved,original,book,1 -yes,affirmative,original,book,1 -greeting,salutation,parrot,greet,4 -goodbye,bye bye,lambada,bye,2 -goodbye,bye-bye,original,bye,2 -goodbye,i'll leave,parrot,bye,2 -yes,oh-huh,parrot,book,1 -no,negatory,original,cancel,3 -greeting,wassup,original,greet,4 -no,please disagree,lambada,cancel,3 -thank_you,thanks i appreciate it,parrot,bye,2 -no,FALSE,original,cancel,3 -yes,correct,original,book,1 -no,that is most definitely false,original,cancel,3 -greeting,hello what's up?,parrot,greet,4 -how_busy,what time can i expect to be seated in this place?,parrot,avail,0 -thank_you,my gratitude,parrot,bye,2 -goodbye,", goodbye",lambada,bye,2 -greeting,whats up?,parrot,greet,4 -yes,yay,lambada,book,1 -goodbye,farewell!,original,bye,2 -date,what day?,parrot,avail,0 -how_busy,list the typical wait time at red lobster?,parrot,avail,0 -calendar_update,add to my calendar for february 10th a trip to the zoo,lambada,resched,5 -goodbye,peace,original,bye,2 -thank_you,thank a bunch,original,bye,2 -goodbye,goodbye ai,parrot,bye,2 -meeting_schedule,when i'll meet roger?,parrot,avail,0 -yes,ya,original,book,1 -goodbye,fairwell?,parrot,bye,2 -no,negative,original,cancel,3 -no,not that,original,cancel,3 -thank_you,the help is appreciated,parrot,bye,2 -goodbye,"no problem, goodbye",lambada,bye,2 -yes,i just said it,parrot,book,1 -reminder_update,remind me later,original,resched,5 -greeting,hello,original,greet,4 -goodbye,later goodbye,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -goodbye,see you later,original,bye,2 -no,yes it's false,parrot,cancel,3 -thank_you,thanks for the info,original,bye,2 -greeting,whats up?,parrot,greet,4 -thank_you,my thanks,parrot,bye,2 -yes,accepted,original,book,1 -calendar,please tell me what's on my calendar for march 1?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -yes,uh-huh,original,book,1 -no,not necessarily true,parrot,cancel,3 -no,this is false,parrot,cancel,3 -greeting,hi,original,greet,4 -greeting,aloha,original,greet,4 -goodbye,good luck,lambada,bye,2 -reminder_update,please remember to pay my utility bill,parrot,resched,5 -goodbye,buhbye,original,bye,2 -thank_you,appreciate the assistance,parrot,bye,2 -yes,ok,original,book,1 -yes,yeap,original,book,1 -yes,huh,parrot,book,1 -goodbye,later,original,bye,2 -no,nada,original,cancel,3 -no,FALSE,original,cancel,3 -no,hell nah,original,cancel,3 -how_busy,tell me the number of people in the restaurant at 5pm?,parrot,avail,0 -goodbye,"thanks for chatting, bye",lambada,bye,2 -goodbye,later then,lambada,bye,2 -no,it's very wrong,parrot,cancel,3 -yes,agreed,original,book,1 -no,the information is false,parrot,cancel,3 -reminder_update,please remind me,parrot,resched,5 -goodbye,i'm gone,parrot,bye,2 -no,negatory,original,cancel,3 -yes,TRUE,lambada,book,1 -no,that is not true,original,cancel,3 -date,what year?,parrot,avail,0 -goodbye,catch you around,original,bye,2 -goodbye,great conversation,parrot,bye,2 -how_busy,how long will i have to wait to get a table at olive garden,lambada,avail,0 -goodbye,take care then,parrot,bye,2 -greeting,what's up,original,greet,4 -greeting,how's life treating you?,parrot,greet,4 -calendar,is there an event scheduled for january 1st?,parrot,avail,0 -greeting,heller,original,greet,4 -greeting,heller,original,greet,4 -no,"no, that is not correct",original,cancel,3 -thank_you,thanks a lot,original,bye,2 -no,i believe it's not correct,parrot,cancel,3 -no,sure it's wrong,parrot,cancel,3 -no,this information is false,parrot,cancel,3 -no,negative,original,cancel,3 -date,which date today?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -how_busy,how long is the wait at the chinese restaurant right now?,parrot,avail,0 -no,negative sure,parrot,cancel,3 -calendar,how's it going on friday,parrot,avail,0 -thank_you,appreciated,original,bye,2 -date,what's today?,parrot,avail,0 -yes,yup,original,book,1 -yes,yay,lambada,book,1 -yes,confirmed,original,book,1 -no,nay,original,cancel,3 -goodbye,goodbye soon,lambada,bye,2 -yes,uh-huh,original,book,1 -greeting,what's new?,parrot,greet,4 -thank_you,"nice, excellent!",original,bye,2 -greeting,whats up,original,greet,4 -no,it would be false,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -yes,i say yes,lambada,book,1 -no,nothing good,parrot,cancel,3 -yes,that would be correct,original,book,1 -reminder_update,set a reminder for my birthday,parrot,resched,5 -date,wednesday friday or saturday?,parrot,avail,0 -meeting_schedule,can i meet kim today?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -thank_you,what's a way to thank you?,parrot,bye,2 -thank_you,appreciate the help,original,bye,2 -greeting,need to know how you're doing?,parrot,greet,4 -yes,that's a yes,original,book,1 -no,i think not,original,cancel,3 -thank_you,you helped,parrot,bye,2 -calendar,show me the calendar?,parrot,avail,0 -yes,okay,original,book,1 -yes,i guess,parrot,book,1 -goodbye,i had fun talking to you,parrot,bye,2 -date,what will be the day?,parrot,avail,0 -yes,good,parrot,book,1 -no,naw,parrot,cancel,3 -meeting_schedule,have any meetings with dan?,parrot,avail,0 -goodbye,"goodbye, helpful ai device!",original,bye,2 -greeting,tell me how it's doing?,parrot,greet,4 -yes,and you have it right,parrot,book,1 -greeting,what's happening?,parrot,greet,4 -goodbye,adios ai,original,bye,2 -reminder_update,remind me to call my mother tomorrow,lambada,resched,5 -calendar_update,i must add my wedding to my calendar for 1st march,parrot,resched,5 -date,what year is this?,parrot,avail,0 -how_busy,how many people attend olive garden?,parrot,avail,0 -yes,it'd be great,parrot,book,1 -goodbye,afterward,parrot,bye,2 -goodbye,"great chat, hope to see you soon",lambada,bye,2 -how_busy,how busy is chili around noon?,parrot,avail,0 -greeting,how've you been,original,greet,4 -no,that's very negative,parrot,cancel,3 -how_busy,canadian grill at 6pm?,parrot,avail,0 -date,today?,parrot,avail,0 -how_busy,when is rancho crowded?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -no,invalid,original,cancel,3 -goodbye,goodbye!,original,bye,2 -yes,ya,original,book,1 -reminder_update,remind me to pay taxes on monday,parrot,resched,5 -no,not at all,original,cancel,3 -yes,that appears true,original,book,1 -date,please explain today,parrot,avail,0 -no,that is erroneous,original,cancel,3 -yes,facts,original,book,1 -greeting,how're you?,parrot,greet,4 -thank_you,thanks for the response,lambada,bye,2 -yes,i know,parrot,book,1 -no,not happening,original,cancel,3 -cancel_reservation,please unreserve that table,original,cancel,3 -thank_you,thank ya!,original,bye,2 -yes,agreed,original,book,1 -goodbye,buhbye,original,bye,2 -yes,facts,original,book,1 -goodbye,thanks bye bye!,original,bye,2 -reminder_update,please remember me at a later date,parrot,resched,5 -calendar,check calendar for events,lambada,avail,0 -goodbye,it's time for goodbye,parrot,bye,2 -calendar,can you tell me what my calendar is for thursday 14th?,parrot,avail,0 -calendar,is an annual physical on my calendar?,parrot,avail,0 -schedule_meeting,how are meetings scheduled?,parrot,book,1 -schedule_meeting,i need a room,parrot,book,1 -thank_you,my sincere thanks,parrot,bye,2 -no,invalid,original,cancel,3 -thank_you,awesome thanks,parrot,bye,2 -no,i'd say no,original,cancel,3 -thank_you,"nice, excellent!",original,bye,2 -thank_you,thankyou,parrot,bye,2 -yes,oh-huh,parrot,book,1 -how_busy,tell me how busy the chilis are at 6 pm,parrot,avail,0 -thank_you,i appreciate your time,lambada,bye,2 -schedule_meeting,the meeting has to be scheduled,parrot,book,1 -greeting,how ya doing,lambada,greet,4 -greeting,hola,original,greet,4 -goodbye,goodbye!,original,bye,2 -yes,huh,parrot,book,1 -reminder_update,please do not forget,parrot,resched,5 -goodbye,farewell!,original,bye,2 -schedule_meeting,can you schedule the meeting?,parrot,book,1 -thank_you,thank you for the good job,parrot,bye,2 -yes,ok,original,book,1 -goodbye,it was good chatting,original,bye,2 -no,thanks no,parrot,cancel,3 -no,no it's not correct,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -how_busy,what's the crowded red lobster at lunch?,parrot,avail,0 -greeting,how's my day going?,parrot,greet,4 -yes,approved,original,book,1 -goodbye,sayonara ,parrot,bye,2 -schedule_meeting,a meeting needs to be scheduled and i need to know how to do it,parrot,book,1 -greeting,greetings to you,original,greet,4 -thank_you,i appreciate your gesture,lambada,bye,2 -goodbye,later,original,bye,2 -thank_you,appreciated,original,bye,2 -greeting,hey there fellow,original,greet,4 -goodbye,fairwell,original,bye,2 -yes,confirmed,original,book,1 -thank_you,i really appreciate it,parrot,bye,2 -yes,certainly,parrot,book,1 -cancel_reservation,i need to cancel my reservation for dinner at the outback steakhouse,parrot,cancel,3 -goodbye,"thanks for chatting, see you",lambada,bye,2 -goodbye,it's time to run,parrot,bye,2 -yes,sure,original,book,1 -goodbye,"thanks for chatting, later",original,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -greeting,how's everything,original,greet,4 -greeting,yo,original,greet,4 -date,what year is tomorrow?,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -greeting,"hi, ai",original,greet,4 -yes,yes,original,book,1 -yes,huh huh,parrot,book,1 -greeting,hello how's my life?,parrot,greet,4 -greeting,hey yai,lambada,greet,4 -greeting,are you doing ok?,original,greet,4 -thank_you,i sincerely thank you,parrot,bye,2 -greeting,ahoy hoy,original,greet,4 -goodbye,glad we can talk,parrot,bye,2 -goodbye,nice talk,lambada,bye,2 -goodbye,good chatting with you,lambada,bye,2 -greeting,ahoy hoy,original,greet,4 -greeting,how's life?,parrot,greet,4 -greeting,how's everything?,parrot,greet,4 -yes,that is right,original,book,1 -yes,say positive,parrot,book,1 -yes,yep,original,book,1 -how_busy,list the current wait times at the italian restaurant?,parrot,avail,0 -greeting,hola,original,greet,4 -date,what date in four days?,parrot,avail,0 -thank_you,i sincerely thank you,parrot,bye,2 -meeting_schedule,can you list the time of my meeting with fred?,parrot,avail,0 -how_busy,how long will i have to wait at the phoenix steakhouse,parrot,avail,0 -greeting,what is new?,parrot,greet,4 -goodbye,regards,original,bye,2 -greeting,hi,original,greet,4 -yes,that's correct,original,book,1 -date,current date,original,avail,0 -no,i'd rather not,parrot,cancel,3 -no,naw,original,cancel,3 -calendar,did you add an item to my calendar for today today?,parrot,avail,0 -greeting,how's my family?,parrot,greet,4 -greeting,so how's everything going?,parrot,greet,4 -goodbye,cya later,original,bye,2 -no,that is no,lambada,cancel,3 -no,negatory,original,cancel,3 -calendar_update,can you delete dinner with jim from my calendar?,parrot,resched,5 -date,what's today?,parrot,avail,0 -cancel_reservation,can you cancel my reservation for michael in a pub?,parrot,cancel,3 -how_busy,can you tell me the most popular time in the cheesecake factory?,parrot,avail,0 -goodbye,on the highway,parrot,bye,2 -greeting,all right now?,parrot,greet,4 -yes,oh-huh,parrot,book,1 -yes,obviously,parrot,book,1 -goodbye,later,original,bye,2 -no,FALSE,lambada,cancel,3 -thank_you,your response was good,parrot,bye,2 -yes,indeed,original,book,1 -date,what's my day?,parrot,avail,0 -yes,i vote yes,original,book,1 -goodbye,see ya,lambada,bye,2 -goodbye,goodbye!,original,bye,2 -yes,sure,original,book,1 -no,but no it's not true,parrot,cancel,3 -no,the information is not correct,parrot,cancel,3 -reminder_update,remember to check the mail,parrot,resched,5 -greeting,heyo,original,greet,4 -goodbye,later,original,bye,2 -yes,sure,original,book,1 -greeting,wassup,original,greet,4 -date,can you tell me the date?,original,avail,0 -greeting,aho,parrot,greet,4 -date,please tell me the date?,parrot,avail,0 -no,naw,parrot,cancel,3 -calendar_update,clear my calendar for may 3,parrot,resched,5 -greeting,how's this going?,parrot,greet,4 -reminder_update,remind me something,parrot,resched,5 -greeting,how's my doing?,parrot,greet,4 -thank_you,again thanks,parrot,bye,2 -schedule_meeting,please help me schedule a meeting with john love at 9 am tomorrow,original,book,1 -no,it's a lie,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -greeting,hey hey!,original,greet,4 -yes,huh,parrot,book,1 -yes,not false,parrot,book,1 -yes,all right,parrot,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -schedule_meeting,are meeting rooms available between 11 and 12?,parrot,book,1 -how_busy,how busy will red robin be around 5 o'clock,parrot,avail,0 -how_busy,why is the olive garden so busy at 5?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -date,tell me what day it'll be in 24 hours,parrot,avail,0 -no,negation,parrot,cancel,3 -no,no?,parrot,cancel,3 -yes,"yeah, that's right",original,book,1 -yes,huh,parrot,book,1 -yes,right,parrot,book,1 -calendar,is there a date on my calendar when i have to pay for my surgery?,parrot,avail,0 -yes,affirmitive,original,book,1 -calendar,search my calendar for birthday party,original,avail,0 -goodbye,goodbye to you,original,bye,2 -yes,do that?,original,book,1 -how_busy,can i expect a lot of people at olive garden at 6 o'clock?,parrot,avail,0 -goodbye,bye!,original,bye,2 -schedule_meeting,can you book a meeting with george for 4?,parrot,book,1 -no,"nope, that's false",original,cancel,3 -yes,confirm,original,book,1 -no,that's very wrong,parrot,cancel,3 -how_busy,how long will the wait be at red lobster,lambada,avail,0 -no,negative definitely,parrot,cancel,3 -date,how many days from now,parrot,avail,0 -thank_you,my thanks,parrot,bye,2 -reminder_update,please remind me,parrot,resched,5 -date,if the date is 15 days from now,parrot,avail,0 -greeting,wanted to say hello,parrot,greet,4 -no,that's very false,parrot,cancel,3 -no,nothing,parrot,cancel,3 -how_busy,is the place busy at 3pm?,parrot,avail,0 -no,negating,parrot,cancel,3 -calendar,show me what's on my calendar for march 20?,parrot,avail,0 -goodbye,good bye my friend,original,bye,2 -no,that's no,parrot,cancel,3 -no,invalid,original,cancel,3 -goodbye,adios!,original,bye,2 -yes,10-Apr,original,book,1 -greeting,hello siri,original,greet,4 -yes,TRUE,lambada,book,1 -no,what you've said is wrong?,parrot,cancel,3 -greeting,get up ai,parrot,greet,4 -greeting,heyo,original,greet,4 -goodbye,goodbyes soon,parrot,bye,2 -date,in 9 days?,parrot,avail,0 -greeting,hello,original,greet,4 -calendar,check my calendar,parrot,avail,0 -how_busy,how busy will the olive garden be around 8 o'clock,parrot,avail,0 -calendar,what's the day for march 29?,parrot,avail,0 -goodbye,farewell,original,bye,2 -calendar,tell me what my calendar looks like for march 12?,lambada,avail,0 -thank_you,thanks,original,bye,2 -goodbye,goodbye soon,lambada,bye,2 -greeting,ahoy,lambada,greet,4 -date,what date?,parrot,avail,0 -meeting_schedule,what's my meeting schedule today?,parrot,avail,0 -yes,great,original,book,1 -greeting,how's it going?,parrot,greet,4 -no,invalid,original,cancel,3 -no,hell nah,original,cancel,3 -no,not right,parrot,cancel,3 -yes,yup,original,book,1 -greeting,hi,original,greet,4 -goodbye,ai goodbye,original,bye,2 -yes,approved,original,book,1 -goodbye,buhbye now,lambada,bye,2 -greeting,well hi there,original,greet,4 -yes,yes,original,book,1 -greeting,nice day,lambada,greet,4 -date,i need a date,parrot,avail,0 -greeting,whats new?,parrot,greet,4 -no,negatory,original,cancel,3 -thank_you,your assistance is appreciated,parrot,bye,2 -meeting_schedule,when's my meeting today?,parrot,avail,0 -how_busy,can you tell me how long the wait will be in olive garden at 5pm?,parrot,avail,0 -yes,yeap,original,book,1 -goodbye,adios,original,bye,2 -yes,i believe that's true,original,book,1 -goodbye,bye,original,bye,2 -no,negating,parrot,cancel,3 -greeting,heller,original,greet,4 -calendar_update,set my date for next month at 11 am,parrot,resched,5 -no,that's not correct,original,cancel,3 -yes,that makes sense,lambada,book,1 -thank_you,let me thank you,original,bye,2 -yes,yup,original,book,1 -thank_you,your efforts won't be ignored,parrot,bye,2 -yes,i know,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -thank_you,i'm really grateful,parrot,bye,2 -calendar_update,delete all events on my calendar which have the word girlfriend in them,parrot,resched,5 -calendar_update,write a appointment for tomorrow on my calendar,parrot,resched,5 -no,that's completely wrong,parrot,cancel,3 -greeting,"hey, ai",original,greet,4 -no,that is wrong,original,cancel,3 -goodbye,goodbye to your,lambada,bye,2 -thank_you,much obliged,original,bye,2 -goodbye,farewell,original,bye,2 -no,that's very negative,parrot,cancel,3 -date,current day,parrot,avail,0 -yes,affirmative,original,book,1 -yes,10-Apr,original,book,1 -how_busy,is the area busy during the lunch hour?,parrot,avail,0 -yes,i vote yes,original,book,1 -thank_you,thanks again!,original,bye,2 -no,this is so negative,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -yes,exactly right,original,book,1 -goodbye,adios!,original,bye,2 -cancel_reservation,how can i cancel my reservation at the outback for johnson?,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -goodbye,i'll go,parrot,bye,2 -date,in 8 days?,parrot,avail,0 -no,negating,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -yes,that checks out,original,book,1 -no,negation,parrot,cancel,3 -calendar,do i have anything on my calendar next sunday?,original,avail,0 -yes,good,parrot,book,1 -greeting,how are you today,original,greet,4 -no,no that's a false statement,parrot,cancel,3 -cancel_reservation,cancel my reservation for jimmy in the outback,parrot,cancel,3 -yes,yes that's it,original,book,1 -no,erroneous,parrot,cancel,3 -greeting,hello there ai,original,greet,4 -greeting,i have to know how you're doing,parrot,greet,4 -greeting,how you're treated,parrot,greet,4 -how_busy,how long will it take to get a table in chipotle,parrot,avail,0 -no,"no, it's not",lambada,cancel,3 -date,describe the day?,parrot,avail,0 -goodbye,i'm going,parrot,bye,2 -no,no this is not correct,parrot,cancel,3 -no,that's untrue,parrot,cancel,3 -goodbye,have fun?,lambada,bye,2 -calendar,what's tuesday's calendar?,parrot,avail,0 -greeting,good day,original,greet,4 -goodbye,goodbye soon,lambada,bye,2 -no,negatory,original,cancel,3 -no,please disagree,lambada,cancel,3 -goodbye,buhbye,original,bye,2 -goodbye,catch you around,original,bye,2 -greeting,well hi there,original,greet,4 -thank_you,appreciated,original,bye,2 -no,it seems not,original,cancel,3 -greeting,how's my current situation?,parrot,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,hi ai,original,greet,4 -greeting,welcome,parrot,greet,4 -greeting,hi,original,greet,4 -yes,it's true,original,book,1 -no,say negative,parrot,cancel,3 -greeting,wassup,original,greet,4 -calendar,is there anything on my calendar for march 2?,parrot,avail,0 -no,the negator,parrot,cancel,3 -greeting,what's up with you?,parrot,greet,4 -yes,accepted,original,book,1 -how_busy,how long will i wait if i want to go to the cheese cake factory?,parrot,avail,0 -greeting,good morning,parrot,greet,4 -greeting,hey there!,original,greet,4 -calendar_update,can you get rid of my trip to the zoo from my calendar on march?,parrot,resched,5 -no,no,lambada,cancel,3 -goodbye,good night,original,bye,2 -no,negative,original,cancel,3 -no,i'd prefer not to answer,parrot,cancel,3 -date,today?,parrot,avail,0 -no,certainly not,original,cancel,3 -goodbye,goodbye to yours,parrot,bye,2 -yes,okay,original,book,1 -thank_you,i appreciate it,original,bye,2 -thank_you,okay thank you,parrot,bye,2 -goodbye,nice talk,lambada,bye,2 -date,what's the day now,parrot,avail,0 -no,no it's not correct,parrot,cancel,3 -no,nope,original,cancel,3 -yes,roger that,original,book,1 -yes,that is accurate,original,book,1 -date,what's today's date,original,avail,0 -greeting,hi ai,original,greet,4 -schedule_meeting,help me set up a meeting please,original,book,1 -thank_you,the best,parrot,bye,2 -greeting,i want to know how things are going on,parrot,greet,4 -no,that's incorrect!,original,cancel,3 -no,invalid,original,cancel,3 -thank_you,nice,parrot,bye,2 -thank_you,you're so much help,parrot,bye,2 -goodbye,glad to talk again,parrot,bye,2 -no,negating,parrot,cancel,3 -how_busy,how much wait time is there at chili's,lambada,avail,0 -goodbye,later!,original,bye,2 -goodbye,sign off,parrot,bye,2 -how_busy,please tell me what's a typical table in the olive garden at 8pm?,parrot,avail,0 -schedule_meeting,do you have a room available between 10 and 4?,parrot,book,1 -meeting_schedule,when will i meet jane?,parrot,avail,0 -thank_you,thanks for responding,parrot,bye,2 -how_busy,tell me the time it takes to sit in this steakhouse?,parrot,avail,0 -how_busy,is the cheesecake factory busy?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -greeting,are you good?,original,greet,4 -yes,accepted,original,book,1 -calendar,what is on my calendar for march 2nd?,lambada,avail,0 -yes,you are yes,lambada,book,1 -greeting,hiya,original,greet,4 -thank_you,"oh, thanks",original,bye,2 -how_busy,how long will it take to sit at the octopus?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -goodbye,thanks for talking,original,bye,2 -greeting,hello siri,original,greet,4 -thank_you,i'm grateful,original,bye,2 -yes,sure,original,book,1 -how_busy,is there a long wait at applebee's?,lambada,avail,0 -date,today?,parrot,avail,0 -no,say negative,parrot,cancel,3 -yes,affirmative,original,book,1 -how_busy,how busy will chili's be at 8:00 pm,lambada,avail,0 -thank_you,i love my pay check,parrot,bye,2 -how_busy,how long would it take to wait for chipmunk,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -goodbye,farewell!,original,bye,2 -date,in six days what will be the date?,parrot,avail,0 -no,that's inaccurate,original,cancel,3 -thank_you,nice,parrot,bye,2 -meeting_schedule,when is my meeting with mike scheduled for?,lambada,avail,0 -how_busy,how many diners are there at wine and cheese around noon?,parrot,avail,0 -how_busy,please tell me what it is like in olive garden?,parrot,avail,0 -no,not right,parrot,cancel,3 -reminder_update,i must remind myself to get an extra credit card,parrot,resched,5 -goodbye,regards,original,bye,2 -greeting,heller,original,greet,4 -cancel_reservation,because of the circumstances i don't need my reservation anymore,parrot,cancel,3 -yes,"yes, that is correct",original,book,1 -thank_you,awesome thank you,parrot,bye,2 -yes,yeah,original,book,1 -no,no,lambada,cancel,3 -yes,i say yes,lambada,book,1 -no,the negator,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -goodbye,goodnight,original,bye,2 -meeting_schedule,when is my meeting with joe planned?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -goodbye,goodbye!,original,bye,2 -goodbye,see ya,lambada,bye,2 -meeting_schedule,are there meetings scheduled for today?,original,avail,0 -how_busy,i want to know how busy is the teacher at 11 o'clock,parrot,avail,0 -no,"no, that is not right",original,cancel,3 -goodbye,i'm outta here!,original,bye,2 -thank_you,well done,parrot,bye,2 -no,that is incorrect,original,cancel,3 -yes,good,parrot,book,1 -greeting,hiya,original,greet,4 -no,negative certainly,parrot,cancel,3 -greeting,yo,original,greet,4 -calendar,what is my schedule like for thursday the 14th?,lambada,avail,0 -how_busy,how long will i stand in line at carl jr's,original,avail,0 -yes,correct,original,book,1 -yes,roger that,original,book,1 -yes,affirmitive,original,book,1 -greeting,how were you?,parrot,greet,4 -goodbye,talk later,original,bye,2 -meeting_schedule,when i'll meet roger?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -thank_you,thank you!,original,bye,2 -calendar,check calendar for events,lambada,avail,0 -goodbye,have fun?,lambada,bye,2 -calendar_update,i need an appointment tomorrow for 3,parrot,resched,5 -no,that's actually false,parrot,cancel,3 -yes,okay,original,book,1 -date,show me the date,original,avail,0 -goodbye,later!,original,bye,2 -greeting,hiya!,original,greet,4 -yes,that's true,original,book,1 -yes,"yeah, that's true",lambada,book,1 -no,the negator,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -thank_you,much obliged,original,bye,2 -goodbye,bye bye,lambada,bye,2 -no,not right?,parrot,cancel,3 -yes,facts,original,book,1 -greeting,wassup,original,greet,4 -thank_you,good answer thanks for the answer,parrot,bye,2 -goodbye,later then,lambada,bye,2 -greeting,hiya,original,greet,4 -yes,oh yes,original,book,1 -greeting,hi ai,original,greet,4 -goodbye,peace out,original,bye,2 -no,that's bad,parrot,cancel,3 -yes,yup,original,book,1 -thank_you,very grateful,parrot,bye,2 -greeting,heller,original,greet,4 -no,no,lambada,cancel,3 -no,definitely not,original,cancel,3 -no,FALSE,lambada,cancel,3 -how_busy,is the chili busy at 6 pm?,parrot,avail,0 -how_busy,which place is the most crowded at 8pm?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -yes,absolutely!,original,book,1 -schedule_meeting,please schedule a meeting with john for 12?,parrot,book,1 -no,naw,original,cancel,3 -schedule_meeting,are there meeting rooms available between 8-10?,parrot,book,1 -greeting,ahoy,lambada,greet,4 -date,today?,parrot,avail,0 -yes,i'm telling you this is a true statement,original,book,1 -no,it's negative,parrot,cancel,3 -how_busy,the crowd at red lobster?,parrot,avail,0 -yes,you're right,original,book,1 -yes,approved,original,book,1 -greeting,how it goes?,parrot,greet,4 -greeting,"hello there, good morning",original,greet,4 -goodbye,farewell,original,bye,2 -no,not so i think,parrot,cancel,3 -how_busy,is ihop usually busy between 5 and 6 pm?,parrot,avail,0 -cancel_reservation,can you cancel black cherry reservation?,parrot,cancel,3 -greeting,hiya,original,greet,4 -goodbye,goodbye bye,parrot,bye,2 -yes,very true,original,book,1 -goodbye,im leaving,parrot,bye,2 -goodbye,glad we got to talk again,lambada,bye,2 -thank_you,so i appreciate it,parrot,bye,2 -no,it's actually false,parrot,cancel,3 -thank_you,i'm happy you've helped me,parrot,bye,2 -meeting_schedule,any meetings on the schedule today,original,avail,0 -no,but no way?,parrot,cancel,3 -greeting,heyo,original,greet,4 -no,not happening,original,cancel,3 -greeting,how were you?,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -yes,positive,parrot,book,1 -greeting,heyo,original,greet,4 -goodbye,adios!,original,bye,2 -greeting,bonjour,original,greet,4 -goodbye,", goodbye",lambada,bye,2 -yes,agreed,original,book,1 -goodbye,regards,original,bye,2 -greeting,hows are ya,original,greet,4 -no,no?,parrot,cancel,3 -greeting,how is life?,parrot,greet,4 -date,what the day?,parrot,avail,0 -greeting,hello there,original,greet,4 -cancel_reservation,call my reservation cancelled,parrot,cancel,3 -yes,that's a yes,original,book,1 -goodbye,was nice talking to you,parrot,bye,2 -reminder_update,i need to remind you,parrot,resched,5 -reminder_update,i need you to make a reminder to buy my clothes,lambada,resched,5 -no,certainly not,original,cancel,3 -yes,a fact,parrot,book,1 -yes,definitely,original,book,1 -greeting,hey what's up?,parrot,greet,4 -yes,good,parrot,book,1 -no,i'd rather not answer,parrot,cancel,3 -schedule_meeting,the meeting needs to be scheduled,lambada,book,1 -goodbye,see you soon,original,bye,2 -calendar_update,set my date for next month at 11am,lambada,resched,5 -yes,TRUE,lambada,book,1 -date,what is that day?,parrot,avail,0 -no,the hell it's not true,parrot,cancel,3 -cancel_reservation,please cancel my lunch reservation,lambada,cancel,3 -greeting,hi what's going on,parrot,greet,4 -greeting,bonjour,original,greet,4 -no,erroneous,parrot,cancel,3 -calendar,what's on my calendar for march 17th?,parrot,avail,0 -yes,confirmed,original,book,1 -yes,and you're correct,parrot,book,1 -yes,accept,parrot,book,1 -calendar,is my calendar free next sunday?,original,avail,0 -how_busy,how long will it take to get to the chili?,parrot,avail,0 -no,nope,original,cancel,3 -goodbye,good talk,parrot,bye,2 -calendar,what's my schedule for april 1th?,parrot,avail,0 -yes,definitely,original,book,1 -how_busy,how long will it take for ios to serve the dinner?,parrot,avail,0 -no,naw,parrot,cancel,3 -yes,yeah,original,book,1 -yes,right,parrot,book,1 -greeting,how ife treats you?,parrot,greet,4 -how_busy,can you give me a fair estimate of how busy the restaurant is at 8pm?,parrot,avail,0 -thank_you,merci beaucoup,original,bye,2 -goodbye,a good conversation,parrot,bye,2 -no,no,lambada,cancel,3 -goodbye,goodbye!,original,bye,2 -how_busy,how many people will be at chipotle at 6 pm,lambada,avail,0 -date,in seven days?,parrot,avail,0 -schedule_meeting,please make me a meeting room for 9 am please,parrot,book,1 -goodbye,thank you for talking later,parrot,bye,2 -thank_you,you've helped,parrot,bye,2 -yes,i know,parrot,book,1 -no,it's negative,parrot,cancel,3 -how_busy,why does the restaurant have a busy time at 5 pm,parrot,avail,0 -yes,"yes, that's correct",original,book,1 -thank_you,i appreciate that,original,bye,2 -date,a year?,parrot,avail,0 -greeting,"hello, friend",original,greet,4 -yes,i think that's right,parrot,book,1 -yes,okay,original,book,1 -goodbye,bye-bye,original,bye,2 -yes,perfect,parrot,book,1 -greeting,i want to know how things have been going?,parrot,greet,4 -yes,it's positive,parrot,book,1 -no,please no,parrot,cancel,3 -no,negating,parrot,cancel,3 -how_busy,tell me how long i have to wait for pizza ranch,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -no,absolutely false,parrot,cancel,3 -date,give me a date,parrot,avail,0 -yes,all right,parrot,book,1 -yes,roger that,original,book,1 -yes,that seems true,original,book,1 -reminder_update,set a reminder for my doctor appointment,parrot,resched,5 -calendar,tell me what's on my calendar for march 15?,parrot,avail,0 -date,what will be the date tomorrow? '',parrot,avail,0 -yes,all right,parrot,book,1 -goodbye,i'm gone,parrot,bye,2 -yes,yeap,original,book,1 -no,nada,original,cancel,3 -thank_you,thanks for my help,original,bye,2 -date,what today?,parrot,avail,0 -goodbye,i had a nice chat,parrot,bye,2 -yes,yeah,original,book,1 -goodbye,maybe next time,parrot,bye,2 -yes,perfect,parrot,book,1 -yes,so it's true,parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -meeting_schedule,can you list the schedule of the meetings?,parrot,avail,0 -no,negatory,original,cancel,3 -how_busy,how much of a wait will i have to wait before i make a reservation at the olive garden,lambada,avail,0 -no,nothing,parrot,cancel,3 -how_busy,how long will i wait to have a table at mac n cheese?,parrot,avail,0 -goodbye,"later, goodbye",lambada,bye,2 -goodbye,later,original,bye,2 -goodbye,good-bye,parrot,bye,2 -how_busy,how long will i have to wait for a table at red lobster,lambada,avail,0 -goodbye,"great talk, thanks",original,bye,2 -no,negative,original,cancel,3 -how_busy,how long will i wait before i go to the cheesecake factory?,parrot,avail,0 -yes,positive,original,book,1 -goodbye,i enjoyed the interaction with you,parrot,bye,2 -date,today is what date,original,avail,0 -yes,absolutely!,original,book,1 -cancel_reservation,call my reservation cancelled,parrot,cancel,3 -yes,good yes,lambada,book,1 -no,it's a false statement,parrot,cancel,3 -yes,i guess,parrot,book,1 -how_busy,the chili is busy at 5 pm is it?,parrot,avail,0 -yes,yes,original,book,1 -no,it's overwhelmingly wrong,parrot,cancel,3 -goodbye,peace out,original,bye,2 -greeting,ahoy,lambada,greet,4 -goodbye,bye-bye,original,bye,2 -greeting,heyo,original,greet,4 -date,how many days from now?,parrot,avail,0 -no,thats a negative,original,cancel,3 -greeting,you good?,parrot,greet,4 -how_busy,is tilman's busy at 5?,lambada,avail,0 -no,nothing,parrot,cancel,3 -meeting_schedule,meetings today,original,avail,0 -no,not really,original,cancel,3 -goodbye,tootles,original,bye,2 -how_busy,how busy will olive garden be at 8 o'clock in the morning?,parrot,avail,0 -cancel_reservation,cancellation of reservations for dinner,parrot,cancel,3 -goodbye,go easy,parrot,bye,2 -schedule_meeting,does scheduling a meeting for me help me?,parrot,book,1 -how_busy,how long will it take to be seated at the chipotle steak house?,parrot,avail,0 -greeting,hi how are you?,parrot,greet,4 -yes,perfect,parrot,book,1 -no,it's not necessarily true,parrot,cancel,3 -how_busy,the wait for a table in the restaurant?,parrot,avail,0 -greeting,hiya!,original,greet,4 -no,erroneous,parrot,cancel,3 -no,nada,original,cancel,3 -goodbye,later gater,original,bye,2 -yes,i say yes,lambada,book,1 -how_busy,does this restaurant have a high turnout for dinner?,parrot,avail,0 -goodbye,bye now,original,bye,2 -no,negative definitely,parrot,cancel,3 -thank_you,thanks again!,original,bye,2 -cancel_reservation,can you tell the restaurant i booked to cancel my booking?,parrot,cancel,3 -goodbye,take a break,parrot,bye,2 -no,no,lambada,cancel,3 -calendar,please tell me what's on my calendar for march 3?,parrot,avail,0 -goodbye,tootles,original,bye,2 -how_busy,how long before dinner?,parrot,avail,0 -reminder_update,remind me to sing in my next meeting,parrot,resched,5 -meeting_schedule,what is my schedule?,parrot,avail,0 -how_busy,what time do i have to wait for marinara? i need to know,parrot,avail,0 -greeting,salutations!,original,greet,4 -goodbye,later then,lambada,bye,2 -yes,"that's right, it's true",lambada,book,1 -how_busy,how long is the wait at immaculate garden right now,lambada,avail,0 -yes,all right,parrot,book,1 -no,no?,parrot,cancel,3 -greeting,hello there!,original,greet,4 -no,nothing,parrot,cancel,3 -date,current day,parrot,avail,0 -no,not correct,parrot,cancel,3 -meeting_schedule,what's my schedule for today?,parrot,avail,0 -yes,indeed,original,book,1 -no,absolutely false,parrot,cancel,3 -no,the information is incorrect,parrot,cancel,3 -no,i think it's a lie,parrot,cancel,3 -greeting,aloha,original,greet,4 -yes,correct,original,book,1 -goodbye,bye bye,lambada,bye,2 -goodbye,see ya,lambada,bye,2 -greeting,heller,original,greet,4 -no,"no, that is inaccurate",original,cancel,3 -goodbye,good-bye,parrot,bye,2 -reminder_update,save it for later,parrot,resched,5 -yes,it's true,original,book,1 -greeting,hello bs,parrot,greet,4 -no,that's incorrect,original,cancel,3 -greeting,whats up?,parrot,greet,4 -yes,confirmed,original,book,1 -yes,sure,original,book,1 -greeting,how ife treated you?,parrot,greet,4 -yes,okay,original,book,1 -goodbye,thanks goodbye,parrot,bye,2 -goodbye,good talk,parrot,bye,2 -yes,"true, most definitely",original,book,1 -meeting_schedule,wanna meet roger?,parrot,avail,0 -goodbye,see you later,original,bye,2 -calendar,i can't remember if i added the fun run to my calendar yet; did i,original,avail,0 -yes,is true,parrot,book,1 -no,hell nah,original,cancel,3 -yes,i agree,original,book,1 -thank_you,thanks!,original,bye,2 -goodbye,regards,original,bye,2 -goodbye,i'll go,parrot,bye,2 -no,no thanks,original,cancel,3 -goodbye,greetings,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -thank_you,thank you?,parrot,bye,2 -thank_you,"great, thanks!",original,bye,2 -yes,uh-huh,original,book,1 -goodbye,thank you for the chat,parrot,bye,2 -goodbye,we chatted well,parrot,bye,2 -calendar,let me know what's on my calendar for march 17,lambada,avail,0 -yes,correct,original,book,1 -calendar,have any appointments on my calendar for the 29th?,parrot,avail,0 -how_busy,what time will it take for me to sit down at chili's,parrot,avail,0 -date,please show the date,parrot,avail,0 -goodbye,see you again soon,original,bye,2 -calendar,show me the calendar for march 2?,parrot,avail,0 -greeting,all right now?,parrot,greet,4 -date,what's today?,parrot,avail,0 -no,that's wrong,original,cancel,3 -calendar_update,add an event to my calendar for march 1st,parrot,resched,5 -yes,not false,parrot,book,1 -goodbye,fairwell,original,bye,2 -goodbye,adios!,original,bye,2 -yes,yes,original,book,1 -goodbye,fairwell,original,bye,2 -no,the information is inaccurate,parrot,cancel,3 -goodbye,goodbye goodbye,parrot,bye,2 -yes,is true,parrot,book,1 -greeting,bonjour,original,greet,4 -no,negation,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -date,what'll it be tomorrow?,parrot,avail,0 -how_busy,how long do i have to wait for a table at the cheesecake factory?,parrot,avail,0 -date,what date this month?,parrot,avail,0 -greeting,ahoy there,lambada,greet,4 -thank_you,"thanks, i appreciate it",original,bye,2 -goodbye,i enjoyed our conversation,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -goodbye,goodbye now,parrot,bye,2 -goodbye,catch you around,original,bye,2 -thank_you,i appreciate the assistance,original,bye,2 -how_busy,what's the average wait time at red robin?,parrot,avail,0 -how_busy,how busy do you need to be to get a table in this restaurant?,parrot,avail,0 -greeting,"good morning, what's going on",lambada,greet,4 -goodbye,i'm out,parrot,bye,2 -goodbye,fairwell,original,bye,2 -meeting_schedule,about how many meetings do i have between 9 and ten,lambada,avail,0 -no,that isn't correct,original,cancel,3 -goodbye,the talk was nice,lambada,bye,2 -no,negative,original,cancel,3 -thank_you,thanks!,original,bye,2 -no,no way,original,cancel,3 -no,"no, that's wrong",original,cancel,3 -thank_you,gracias,original,bye,2 -no,negative sure,parrot,cancel,3 -no,that is not correct,original,cancel,3 -thank_you,okay thank you,parrot,bye,2 -yes,this is true,lambada,book,1 -thank_you,why thank you?,original,bye,2 -reminder_update,keep checking the steak?,parrot,resched,5 -how_busy,how long will it take me to get seated in the cheese cake factory,parrot,avail,0 -goodbye,bye,original,bye,2 -yes,correct,original,book,1 -goodbye,farewell!,original,bye,2 -thank_you,so grateful,parrot,bye,2 -calendar_update,cancel event scheduled for this afternoon,original,resched,5 -cancel_reservation,for tonight forget the oyster bar,parrot,cancel,3 -meeting_schedule,meeting today,parrot,avail,0 -how_busy,is geoff's grill busy at 9pm?,parrot,avail,0 -calendar,tell me what's showing on my calendar for april 15?,lambada,avail,0 -yes,facts,original,book,1 -date,what's my tomorrow date?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -goodbye,"i had a pleasure talking to you, see you later",original,bye,2 -yes,ya,original,book,1 -greeting,hola,original,greet,4 -yes,TRUE,original,book,1 -date,if it's six days,parrot,avail,0 -yes,affirmative,original,book,1 -how_busy,does michigan steakhouse have a lot of people at dinner?,parrot,avail,0 -thank_you,oh sweet thanks,original,bye,2 -no,nothing,parrot,cancel,3 -how_busy,how long is the wait for dinner at red lobster,lambada,avail,0 -calendar,do i have my nephew's birthday on november 10?,parrot,avail,0 -greeting,how's life?,parrot,greet,4 -yes,definitely,original,book,1 -greeting,how's life going?,parrot,greet,4 -calendar,can you list the events in my calendar for march 23?,parrot,avail,0 -goodbye,goodbyes soon,parrot,bye,2 -cancel_reservation,cancel my reservation for chris at jp field,parrot,cancel,3 -yes,sure,original,book,1 -goodbye,goodbye!,original,bye,2 -yes,confirm,original,book,1 -how_busy,how long will i have to wait at the red robin before i can take a table?,parrot,avail,0 -yes,affirmative,original,book,1 -yes,absolutely correct,original,book,1 -goodbye,great talk,lambada,bye,2 -yes,agreed,original,book,1 -thank_you,"oh, thanks",original,bye,2 -yes,accepted,original,book,1 -how_busy,what is the wait like at chili's at 6 pm?,lambada,avail,0 -no,so that's no,parrot,cancel,3 -calendar,what do you plan for april 23?,parrot,avail,0 -no,please disagree,lambada,cancel,3 -yes,okay,original,book,1 -greeting,how things go?,parrot,greet,4 -reminder_update,make a reminder,parrot,resched,5 -yes,yes,original,book,1 -yes,you got it,original,book,1 -yes,accepted,original,book,1 -no,no don't do that,parrot,cancel,3 -thank_you,"great, thanks!",original,bye,2 -thank_you,appreciated,original,bye,2 -yes,accept,parrot,book,1 -goodbye,bye!,original,bye,2 -no,that's no,parrot,cancel,3 -yes,yup,original,book,1 -yes,"yes, that's right",original,book,1 -goodbye,tootles,original,bye,2 -no,please disagree,lambada,cancel,3 -no,not really,original,cancel,3 -yes,good yes,lambada,book,1 -calendar,can you check if i have an appointment on my calendar for an exam?,parrot,avail,0 -yes,accept,parrot,book,1 -no,not that,original,cancel,3 -no,oh hell no that would be terrible,parrot,cancel,3 -yes,"correct, that's true",original,book,1 -goodbye,goodbye bye,parrot,bye,2 -goodbye,nice talk,lambada,bye,2 -greeting,how're you?,parrot,greet,4 -how_busy,how busy is chili around 5pm?,parrot,avail,0 -greeting,how were you?,parrot,greet,4 -yes,it's my response to you,parrot,book,1 -goodbye,adios!,original,bye,2 -yes,thats right,original,book,1 -cancel_reservation,can i cancel my reservation please,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -goodbye,later goodbye,parrot,bye,2 -greeting,hey there!,original,greet,4 -reminder_update,remember to write later,parrot,resched,5 -yes,uh-huh,original,book,1 -thank_you,i owe you one,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -yes,affirmative,original,book,1 -no,invalid,original,cancel,3 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -reminder_update,let me remember,parrot,resched,5 -date,please explain today,parrot,avail,0 -how_busy,is ihop busy at 5?,parrot,avail,0 -goodbye,bye bye!,original,bye,2 -goodbye,goodbye then,parrot,bye,2 -thank_you,oh sweet thanks,original,bye,2 -yes,uh huh,original,book,1 -greeting,whats new?,parrot,greet,4 -goodbye,farewell!,original,bye,2 -goodbye,goodnight,original,bye,2 -calendar,what's my calendar for march 1?,parrot,avail,0 -greeting,hi there,original,greet,4 -yes,do that?,original,book,1 -calendar,tell me what's on the calendar for feb 1?,parrot,avail,0 -yes,correct,original,book,1 -how_busy,how busy is the olive garden around dinner,parrot,avail,0 -thank_you,you're a great help,parrot,bye,2 -greeting,wassup,original,greet,4 -how_busy,how long will it take to get a table in buffalo wild wings,parrot,avail,0 -yes,that's absolutely true,parrot,book,1 -schedule_meeting,check meeting rooms available between one and three o'clock in the afternoon,parrot,book,1 -greeting,hi ai,original,greet,4 -yes,definitely,original,book,1 -how_busy,is that restaurant crowded during dinner?,original,avail,0 -no,this isn't true,parrot,cancel,3 -cancel_reservation,cancel my reservation at odeon,lambada,cancel,3 -yes,so it's true,parrot,book,1 -yes,facts,original,book,1 -cancel_reservation,get the salad canceled,parrot,cancel,3 -no,the statement is false,original,cancel,3 -meeting_schedule,when are my meetings?,parrot,avail,0 -how_busy,what's the chance that i'll have a good time if i go to applebee's at 5pm?,parrot,avail,0 -calendar_update,you can remove the field trip from my calendar for march 12 2019,parrot,resched,5 -yes,positive,original,book,1 -greeting,salutations,parrot,greet,4 -thank_you,i appeciate it,parrot,bye,2 -no,i'll pass,original,cancel,3 -calendar,let me know what's scheduled for my calendar for thursday,parrot,avail,0 -thank_you,you've been great,parrot,bye,2 -goodbye,"bye-bye, my friend",lambada,bye,2 -no,negatory,original,cancel,3 -yes,is true,parrot,book,1 -greeting,ahoy,lambada,greet,4 -calendar_update,leave the date of june 4 open on my calendar,original,resched,5 -thank_you,"oh, thanks",original,bye,2 -goodbye,thanks goodbye,parrot,bye,2 -date,what's today,original,avail,0 -no,i'll pass,original,cancel,3 -greeting,hola,original,greet,4 -goodbye,have to go now,parrot,bye,2 -no,nay,original,cancel,3 -no,that's a negation,parrot,cancel,3 -no,nay,original,cancel,3 -thank_you,you helped,parrot,bye,2 -greeting,hey fellows,parrot,greet,4 -goodbye,farewell!,original,bye,2 -how_busy,how long will i have to wait for red lobster,parrot,avail,0 -thank_you,gracias,original,bye,2 -yes,uh-huh,original,book,1 -reminder_update,remind me to change oil,parrot,resched,5 -greeting,good morning,parrot,greet,4 -yes,TRUE,original,book,1 -yes,yeah yeah,lambada,book,1 -no,FALSE,original,cancel,3 -how_busy,can i wait for a table in chipotle?,parrot,avail,0 -how_busy,how long will i have to wait before i'm seated at the cheese cake factory?,parrot,avail,0 -no,negative certainly,parrot,cancel,3 -goodbye,a good conversation,parrot,bye,2 -goodbye,cya later,original,bye,2 -calendar,display my calendar,lambada,avail,0 -yes,"yes, please",parrot,book,1 -yes,that's a fact,lambada,book,1 -goodbye,wait for me later,parrot,bye,2 -thank_you,"great, thanks!",original,bye,2 -thank_you,thanks i appreciate it,parrot,bye,2 -no,that isn't what we want,lambada,cancel,3 -meeting_schedule,is my schedule clear?,parrot,avail,0 -how_busy,how busy is olive garden at 6:00 pm,lambada,avail,0 -date,which date today?,parrot,avail,0 -no,that’s incorrect,original,cancel,3 -no,is my false claim?,parrot,cancel,3 -thank_you,awesome thanks,parrot,bye,2 -goodbye,peace out!,original,bye,2 -greeting,hey hey!,original,greet,4 -no,that’s actually wrong,original,cancel,3 -meeting_schedule,when's my meeting?,parrot,avail,0 -goodbye,it's over,parrot,bye,2 -yes,perfect,parrot,book,1 -goodbye,see you later,original,bye,2 -yes,yeah that's right,lambada,book,1 -greeting,i want to know how you're feeling,lambada,greet,4 -how_busy,there's a wait time at red lobster?,parrot,avail,0 -yes,yes,original,book,1 -yes,so it's checked,parrot,book,1 -yes,i want this to be true,parrot,book,1 -no,hell nah,original,cancel,3 -thank_you,thank you?,parrot,bye,2 -yes,yeap,original,book,1 -no,nada,original,cancel,3 -goodbye,bye bye,lambada,bye,2 -calendar,do you have any events in my calendar for march 3?,parrot,avail,0 -date,what day?,parrot,avail,0 -cancel_reservation,cancel my reservations for joe's at zepher right now?,parrot,cancel,3 -yes,affirmitive,original,book,1 -goodbye,take it easy,lambada,bye,2 -meeting_schedule,what's the time of meeting?,parrot,avail,0 -yes,accept,parrot,book,1 -yes,"that's right, it's true",lambada,book,1 -calendar,do you have anything planned for tuesday?,parrot,avail,0 -meeting_schedule,when do you meet ann?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -how_busy,tell me how long i have to wait at the pizza ranch?,parrot,avail,0 -how_busy,how long will it be before the restaurant will be booked?,parrot,avail,0 -greeting,yo,original,greet,4 -yes,accepted,original,book,1 -no,it's a false,lambada,cancel,3 -thank_you,my thanks,parrot,bye,2 -no,erroneous,parrot,cancel,3 -greeting,hello hello good morning,parrot,greet,4 -yes,that also makes sense,parrot,book,1 -yes,i guess yes,parrot,book,1 -no,nay,original,cancel,3 -greeting,hey hey!,original,greet,4 -date,what day?,parrot,avail,0 -goodbye,will leave now,parrot,bye,2 -greeting,hola,original,greet,4 -greeting,"hey, how's my day",lambada,greet,4 -no,it seems wrong,parrot,cancel,3 -thank_you,many thanks,original,bye,2 -date,when will the date be?,lambada,avail,0 -thank_you,you've given me that,parrot,bye,2 -greeting,hello,original,greet,4 -calendar,what's on my calendar for march 2nd,parrot,avail,0 -how_busy,what's the typical time to sit in this restaurant?,parrot,avail,0 -no,negation,parrot,cancel,3 -no,would be a false statement,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -no,thanks no,parrot,cancel,3 -yes,let's do that,parrot,book,1 -goodbye,sayonara,original,bye,2 -yes,right,parrot,book,1 -yes,yup,original,book,1 -greeting,welcome,parrot,greet,4 -no,it's not correct,parrot,cancel,3 -greeting,is everything ok with you?,original,greet,4 -date,i need the date,parrot,avail,0 -yes,yeap,original,book,1 -yes,it's true,original,book,1 -thank_you,the best,parrot,bye,2 -no,"no, that's not the case",lambada,cancel,3 -cancel_reservation,must cancel my reservation for tonight,parrot,cancel,3 -no,no!,original,cancel,3 -greeting,good evening,original,greet,4 -reminder_update,help me remember to pay taxes,parrot,resched,5 -thank_you,good job helping me,parrot,bye,2 -greeting,hola,original,greet,4 -greeting,hi,original,greet,4 -thank_you,my thanks,parrot,bye,2 -greeting,wassup,original,greet,4 -greeting,hi ai,original,greet,4 -how_busy,how long is the wait at knick-knacks,lambada,avail,0 -date,in two days what date will it be?,parrot,avail,0 -yes,indeed,original,book,1 -greeting,aloha,original,greet,4 -thank_you,i owe you,parrot,bye,2 -how_busy,how busy is the olive garden at dinner,parrot,avail,0 -thank_you,you've helped,parrot,bye,2 -schedule_meeting,can you arrange a meeting with steve?,parrot,book,1 -goodbye,"great chat, talk later",lambada,bye,2 -how_busy,how long will it take to get a table at al jolo?,parrot,avail,0 -goodbye,good talk,parrot,bye,2 -calendar,have you added any events to my calendar for march 10th?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -goodbye,sayonara,original,bye,2 -goodbye,lovely conversation,parrot,bye,2 -no,so that's no,parrot,cancel,3 -greeting,wanted to say hi,parrot,greet,4 -goodbye,good-bye,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -greeting,i'm gonna tell you how it's going,lambada,greet,4 -goodbye,farewell!,original,bye,2 -yes,yup,original,book,1 -thank_you,really great!,original,bye,2 -date,which day will be the date in 10 days?,parrot,avail,0 -schedule_meeting,can i get a meeting room between 10 and 12?,parrot,book,1 -yes,affirmative,original,book,1 -no,that's bad,parrot,cancel,3 -yes,yup,original,book,1 -greeting,heyo,original,greet,4 -date,can you give me a date in 5 days?,parrot,avail,0 -goodbye,please chat to me,parrot,bye,2 -greeting,good evening,original,greet,4 -thank_you,thanks,original,bye,2 -calendar_update,remember to put down that i have an appointment for tomorrow on my calendar,original,resched,5 -no,it is no,original,cancel,3 -date,what day will it be?,parrot,avail,0 -reminder_update,a new reminder,parrot,resched,5 -goodbye,i need to go,lambada,bye,2 -no,ill pass,original,cancel,3 -yes,TRUE,original,book,1 -goodbye,i'll go,parrot,bye,2 -reminder_update,please remember me,parrot,resched,5 -how_busy,what time should i expect to be seated in the restaurant?,parrot,avail,0 -reminder_update,please remember to pay my tax,parrot,resched,5 -no,nope,original,cancel,3 -yes,confirmed,original,book,1 -yes,my answer is yes,parrot,book,1 -yes,is true,parrot,book,1 -goodbye,goodbye bye,parrot,bye,2 -yes,oh-huh,parrot,book,1 -calendar,what events are on my calendar for march 26?,parrot,avail,0 -no,negation,parrot,cancel,3 -no,that’s incorrect,original,cancel,3 -date,what will be the date in 14 days?,parrot,avail,0 -goodbye,see you later!,original,bye,2 -thank_you,youre a doll,original,bye,2 -meeting_schedule,what's my meeting plan?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -no,that's definitely false,original,cancel,3 -yes,accept,parrot,book,1 -no,false for sure,original,cancel,3 -greeting,salutation,parrot,greet,4 -yes,great,original,book,1 -no,that is incorrect,original,cancel,3 -goodbye,see ya,lambada,bye,2 -date,what day?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -no,that's very false,parrot,cancel,3 -meeting_schedule,and if i have meetings with michael i need to know,parrot,avail,0 -yes,that's right,original,book,1 -yes,indeed,original,book,1 -cancel_reservation,my reservation for dinner tonight needs to be cancelled,parrot,cancel,3 -no,negation,parrot,cancel,3 -greeting,how things go?,parrot,greet,4 -calendar,do you have anything on my calendar for next sunday?,parrot,avail,0 -goodbye,nice drive by,lambada,bye,2 -no,nope,original,cancel,3 -goodbye,good-bye,parrot,bye,2 -yes,very true,original,book,1 -goodbye,thanks for the chat,parrot,bye,2 -no,"nope, that's false",original,cancel,3 -thank_you,many thank,original,bye,2 -goodbye,goodbye to your,lambada,bye,2 -calendar_update,put cancel abc on my calendar for march 2,lambada,resched,5 -yes,i guess,parrot,book,1 -goodbye,peace,original,bye,2 -yes,definitely,original,book,1 -no,is my falsehood?,parrot,cancel,3 -greeting,heyo,original,greet,4 -greeting,how is idy?,parrot,greet,4 -calendar,what's my schedule for thursday?,parrot,avail,0 -schedule_meeting,whether i can get a meeting room between 10 and 12,lambada,book,1 -yes,ok,original,book,1 -date,date tomorrow,parrot,avail,0 -greeting,bonjour,original,greet,4 -yes,agreed,original,book,1 -goodbye,farewell!,original,bye,2 -yes,"yes, please",parrot,book,1 -yes,yes,original,book,1 -no,that's a no,lambada,cancel,3 -thank_you,that's what you did,parrot,bye,2 -no,no?,parrot,cancel,3 -greeting,how's life going?,parrot,greet,4 -yes,"yes, please",parrot,book,1 -no,no that's not it,parrot,cancel,3 -thank_you,thank you very much for the assistance,original,bye,2 -no,i disagree,parrot,cancel,3 -greeting,yo,original,greet,4 -greeting,hiya!,original,greet,4 -meeting_schedule,have a meeting today?,parrot,avail,0 -greeting,what's happening to you?,parrot,greet,4 -cancel_reservation,please cancel my reservation at the red lobster restaurant,parrot,cancel,3 -greeting,whats new,lambada,greet,4 -goodbye,just relax,parrot,bye,2 -greeting,hey yai,lambada,greet,4 -goodbye,nice talk,lambada,bye,2 -how_busy,how long will i have to wait for a table in applebee's?,parrot,avail,0 -reminder_update,keep checking the steak?,parrot,resched,5 -goodbye,fairwell?,parrot,bye,2 -thank_you,you're special thanks,parrot,bye,2 -goodbye,we chatted well,parrot,bye,2 -calendar,check my calendar for march 5th,lambada,avail,0 -thank_you,you have made my life so much easier,lambada,bye,2 -no,is a lie?,parrot,cancel,3 -no,naw,original,cancel,3 -yes,definitely yes,parrot,book,1 -how_busy,how busy is the red robin around 6pm?,parrot,avail,0 -goodbye,goodbye bye,parrot,bye,2 -greeting,wassup,original,greet,4 -no,no way!,original,cancel,3 -yes,positive,parrot,book,1 -yes,it's positive,parrot,book,1 -yes,that's a fact,parrot,book,1 -yes,"yes, please",parrot,book,1 -no,that's negative,parrot,cancel,3 -no,no thanks,original,cancel,3 -yes,ok,original,book,1 -thank_you,thanks again,original,bye,2 -yes,you're right,original,book,1 -reminder_update,let me remember,parrot,resched,5 -meeting_schedule,are there any meetings between now and saturday?,lambada,avail,0 -cancel_reservation,cancel my reservation for jimmy at outback,lambada,cancel,3 -yes,yes sir,original,book,1 -no,i dont think it's right,parrot,cancel,3 -greeting,how you're treated?,parrot,greet,4 -greeting,hello good day,parrot,greet,4 -calendar,what's my schedule for march 3rd,lambada,avail,0 -goodbye,peace,original,bye,2 -thank_you,you've been great,parrot,bye,2 -yes,that's right,original,book,1 -no,not correct,parrot,cancel,3 -no,that's wrong,original,cancel,3 -calendar,tell me my calendar for march 01?,parrot,avail,0 -meeting_schedule,what's my schedule today?,parrot,avail,0 -schedule_meeting,i want you to meet at noon,parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,farewell!,original,bye,2 -yes,confirm,original,book,1 -thank_you,"oh, thanks",original,bye,2 -no,i'm afraid not,parrot,cancel,3 -date,what month is today?,parrot,avail,0 -no,not really,original,cancel,3 -thank_you,thanks for that,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -no,the answer isn't correct,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -cancel_reservation,for tonight forget the oyster bar reservations,parrot,cancel,3 -yes,accepted,original,book,1 -date,what's today,original,avail,0 -greeting,hiya,original,greet,4 -thank_you,good looking out,original,bye,2 -no,definitely not,original,cancel,3 -yes,i know,parrot,book,1 -yes,great,original,book,1 -goodbye,goodbye then,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -yes,correct,original,book,1 -goodbye,great conversation thanks for coming,parrot,bye,2 -cancel_reservation,get the salad cancelled,lambada,cancel,3 -greeting,so what's up?,parrot,greet,4 -goodbye,maybe i'll talk to you later,parrot,bye,2 -no,that's a no,lambada,cancel,3 -cancel_reservation,just cancel my reservation in the red robin,parrot,cancel,3 -no,naw,original,cancel,3 -greeting,hi how's everything?,parrot,greet,4 -goodbye,i'm leaving now,lambada,bye,2 -date,what date is today?,original,avail,0 -how_busy,how long will it take to get a table at a cheese cake factory?,parrot,avail,0 -greeting,hi,original,greet,4 -goodbye,on the road,parrot,bye,2 -goodbye,later then,lambada,bye,2 -no,"no, that's a lie",lambada,cancel,3 -goodbye,farewell!,original,bye,2 -thank_you,thank you for my help,original,bye,2 -how_busy,what is the wait time at applebee's?,original,avail,0 -greeting,hey yai,lambada,greet,4 -yes,perfect,parrot,book,1 -goodbye,fairwell,original,bye,2 -no,FALSE,original,cancel,3 -goodbye,i'll leave,parrot,bye,2 -thank_you,thank you?,parrot,bye,2 -no,invalid,original,cancel,3 -how_busy,is olive garden busy? around 9,parrot,avail,0 -no,and i'm sorry,parrot,cancel,3 -no,nada,original,cancel,3 -no,FALSE,lambada,cancel,3 -greeting,salutations,parrot,greet,4 -no,that's a negation,parrot,cancel,3 -greeting,how's idy?,parrot,greet,4 -yes,oh-huh,parrot,book,1 -goodbye,thanks for talking,original,bye,2 -yes,confirm,original,book,1 -no,the answer is a false,parrot,cancel,3 -goodbye,good night,original,bye,2 -date,what's the date of day?,parrot,avail,0 -yes,all right,parrot,book,1 -goodbye,but i wanted to talk to you again,parrot,bye,2 -yes,affirmative,original,book,1 -yes,obviously,parrot,book,1 -thank_you,thanks again!,original,bye,2 -yes,do that?,original,book,1 -yes,yeah,original,book,1 -no,nothing,parrot,cancel,3 -calendar,do you have any plans on my calendar for sunday?,parrot,avail,0 -cancel_reservation,can i cancel my reservation at the restaurant?,parrot,cancel,3 -greeting,how's my day been?,parrot,greet,4 -goodbye,it's time to run,parrot,bye,2 -greeting,heller,original,greet,4 -how_busy,the crowd at red lobster?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -thank_you,gracias,original,bye,2 -schedule_meeting,can you schedule a meeting with john smith at 10 am?,parrot,book,1 -reminder_update,add me a reminder?,parrot,resched,5 -no,please disagree,lambada,cancel,3 -yes,it's positive,parrot,book,1 -yes,facts,original,book,1 -no,thanks no,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -no,that is untrue,original,cancel,3 -how_busy,is the wait in this restaurant long?,parrot,avail,0 -no,false for sure,original,cancel,3 -yes,"yes, that's right",original,book,1 -goodbye,say goodbye,parrot,bye,2 -yes,i want it,parrot,book,1 -cancel_reservation,please delete the reservation for 3 people at outback,original,cancel,3 -greeting,and i'd like to know how you do,parrot,greet,4 -yes,perfect,parrot,book,1 -date,what's my date?,parrot,avail,0 -no,negative certainly,parrot,cancel,3 -date,today what date?,parrot,avail,0 -yes,you are yes,lambada,book,1 -calendar_update,make sure that the events on my calendar for march 1 2019 are clear,parrot,resched,5 -goodbye,goodbye then,parrot,bye,2 -no,so that's no,parrot,cancel,3 -yes,accept,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,how does ai do?,parrot,greet,4 -meeting_schedule,do i have a meeting with kate today?,parrot,avail,0 -yes,yay,lambada,book,1 -greeting,hiya,original,greet,4 -goodbye,goodbye then,parrot,bye,2 -greeting,yo,original,greet,4 -goodbye,tootles,original,bye,2 -goodbye,as regards,parrot,bye,2 -yes,correct,original,book,1 -no,erroneous,parrot,cancel,3 -reminder_update,remind me,original,resched,5 -goodbye,bye-bye,original,bye,2 -yes,approved,original,book,1 -goodbye,bye bye,lambada,bye,2 -no,i'm afraid not,parrot,cancel,3 -how_busy,tell me how busy the olive garden will be at 6 pm,parrot,avail,0 -date,a year?,parrot,avail,0 -greeting,yo,original,greet,4 -no,nada,original,cancel,3 -cancel_reservation,can you cancel my reservation for dinner please?,parrot,cancel,3 -no,i disagree with this,parrot,cancel,3 -thank_you,i appreciate what you did,original,bye,2 -greeting,"hey, what's new",original,greet,4 -no,nada,original,cancel,3 -no,absolutely false,parrot,cancel,3 -goodbye,sayonara ,parrot,bye,2 -greeting,ahoy there,lambada,greet,4 -meeting_schedule,time of meeting?,parrot,avail,0 -goodbye,later then,lambada,bye,2 -meeting_schedule,do i have meetings between 3 and 5 pm?,parrot,avail,0 -greeting,how does ai feel?,parrot,greet,4 -no,negatory,original,cancel,3 -yes,uh-huh,original,book,1 -goodbye,adios ai,original,bye,2 -goodbye,i'm going,parrot,bye,2 -yes,it's a yes from me,parrot,book,1 -thank_you,really great!,original,bye,2 -goodbye,regards,original,bye,2 -greeting,salutation,parrot,greet,4 -no,i think not,original,cancel,3 -how_busy,is the wait at pizza hut long?,original,avail,0 -meeting_schedule,are there any meetings planned between 3 and 5 today?,lambada,avail,0 -no,negative for sure,original,cancel,3 -calendar,what's happening on march 15,parrot,avail,0 -how_busy,how long will it take to get a seat at chili's?,parrot,avail,0 -greeting,"hi, how are you",original,greet,4 -no,that's no,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -how_busy,is a red lobster usually busy around 8 pm?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -greeting,hola,original,greet,4 -no,that's so negative,parrot,cancel,3 -goodbye,peace out!,original,bye,2 -date,what will be the date of the day?,parrot,avail,0 -thank_you,thanks for helping,original,bye,2 -goodbye,regards,original,bye,2 -goodbye,adios,original,bye,2 -greeting,hello bs,parrot,greet,4 -schedule_meeting,list the size of the meeting room?,parrot,book,1 -calendar_update,"make sure all events on my calendar for march 2nd, 2019 are clear",lambada,resched,5 -no,that's a false,lambada,cancel,3 -date,what today?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -goodbye,farewell!,original,bye,2 -how_busy,how busy will red robin be around 5pm,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -greeting,salutation,parrot,greet,4 -no,FALSE,original,cancel,3 -no,it'd be awful,parrot,cancel,3 -greeting,yo how is it going?,parrot,greet,4 -yes,correct,original,book,1 -yes,accepted,original,book,1 -thank_you,thanks,original,bye,2 -thank_you,i'm so grateful for my answer,parrot,bye,2 -goodbye,adios,original,bye,2 -yes,yeap,original,book,1 -goodbye,fairwell?,parrot,bye,2 -yes,yes,original,book,1 -reminder_update,add a reminder to check the mail,lambada,resched,5 -no,not right,parrot,cancel,3 -calendar_update,remove the event from my calendar,lambada,resched,5 -yes,definitely,original,book,1 -date,which day is it now,original,avail,0 -no,i disagree with that,lambada,cancel,3 -no,i don't like that,parrot,cancel,3 -no,that's totally wrong!,original,cancel,3 -no,absolutely not,original,cancel,3 -thank_you,"great, thanks!",original,bye,2 -greeting,whats new,lambada,greet,4 -greeting,hello there,original,greet,4 -goodbye,take a rest,parrot,bye,2 -no,negative definitely,parrot,cancel,3 -calendar,do i have anything on my calendar for march 7th?,lambada,avail,0 -yes,i agree,original,book,1 -date,do you want to know the date?,parrot,avail,0 -greeting,"hey, what's up",original,greet,4 -cancel_reservation,i have to cancel my party reservation at the ranch tonight,parrot,cancel,3 -greeting,how is ai feeling?,parrot,greet,4 -yes,facts,original,book,1 -greeting,yo,original,greet,4 -no,nope it's not true,parrot,cancel,3 -yes,yes,original,book,1 -cancel_reservation,the reservation is not necessary anymore,parrot,cancel,3 -yes,positive,parrot,book,1 -how_busy,how long do we have to wait before we are seated at the cheese cake factory?,parrot,avail,0 -goodbye,nice drive by,lambada,bye,2 -goodbye,i enjoy our conversation,parrot,bye,2 -greeting,"hello, ai",original,greet,4 -thank_you,my gratitude,parrot,bye,2 -no,false sure,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,say positive,parrot,book,1 -yes,oh-huh,parrot,book,1 -goodbye,regards,original,bye,2 -no,i don't like that,parrot,cancel,3 -yes,10-Apr,original,book,1 -yes,i think you've got it,parrot,book,1 -greeting,how's my life today?,parrot,greet,4 -goodbye,buhbye,original,bye,2 -goodbye,i'll see you next time,lambada,bye,2 -no,certainly not,original,cancel,3 -calendar_update,i want my calendar for march 20 2019 cleared,parrot,resched,5 -greeting,salutation,parrot,greet,4 -goodbye,my friend,parrot,bye,2 -calendar,what is on my calendar today?,parrot,avail,0 -yes,of course,original,book,1 -goodbye,bye,original,bye,2 -greeting,hey,original,greet,4 -how_busy,how long will i wait if i want to go to a cheese cake factory,parrot,avail,0 -meeting_schedule,have any meetings scheduled between 4 and 5?,parrot,avail,0 -yes,10-Apr,original,book,1 -yes,it's positive,parrot,book,1 -no,FALSE,original,cancel,3 -goodbye,greetings,parrot,bye,2 -thank_you,thanks,original,bye,2 -reminder_update,make a reminder,parrot,resched,5 -yes,confirmed,original,book,1 -goodbye,bye now,original,bye,2 -thank_you,your response was good,parrot,bye,2 -calendar_update,please clean my calendar,parrot,resched,5 -no,negatory,original,cancel,3 -how_busy,how busy will olive garden be at 7:30 pm,lambada,avail,0 -yes,oh-huh,parrot,book,1 -goodbye,thanks for chatting,lambada,bye,2 -yes,very true,original,book,1 -greeting,hey what's up?,parrot,greet,4 -greeting,salutations,parrot,greet,4 -yes,yeap,original,book,1 -no,that is false,original,cancel,3 -no,that's erroneous,parrot,cancel,3 -goodbye,take it easy!,original,bye,2 -no,that's certainly not the case here,parrot,cancel,3 -greeting,hello good morning,parrot,greet,4 -thank_you,glad that you did it,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -greeting,hola,original,greet,4 -goodbye,have fun?,lambada,bye,2 -schedule_meeting,are meeting rooms available from 11am to 1pm?,parrot,book,1 -goodbye,goodbye goodbye,parrot,bye,2 -no,don't agree,parrot,cancel,3 -yes,ok,original,book,1 -no,it's overwhelmingly wrong,parrot,cancel,3 -calendar,tell me what is on my calendar for march 3?,lambada,avail,0 -no,FALSE,lambada,cancel,3 -yes,indeed,parrot,book,1 -how_busy,don't you know how long it takes to wait in coffee shops?,parrot,avail,0 -no,negative certainly,parrot,cancel,3 -no,invalid,original,cancel,3 -no,erroneous,parrot,cancel,3 -no,no!,original,cancel,3 -no,no thanks,original,cancel,3 -yes,10-Apr,original,book,1 -no,thats a negative,original,cancel,3 -goodbye,regards,original,bye,2 -how_busy,is the wait too long?,parrot,avail,0 -how_busy,i want to know how long i'll wait for the x factor,parrot,avail,0 -yes,i'll say yes,parrot,book,1 -no,don't agree,parrot,cancel,3 -yes,i want that,parrot,book,1 -yes,yeap,original,book,1 -no,naw,original,cancel,3 -goodbye,goodbye,original,bye,2 -greeting,heyo,original,greet,4 -goodbye,tootles,original,bye,2 -goodbye,peace out,original,bye,2 -no,that's not it,parrot,cancel,3 -no,that isn't true,lambada,cancel,3 -no,but certainly not,parrot,cancel,3 -goodbye,i enjoyed our talk,parrot,bye,2 -no,nay,original,cancel,3 -yes,ya,original,book,1 -thank_you,well done,parrot,bye,2 -thank_you,thank you please,parrot,bye,2 -no,don't agree,parrot,cancel,3 -how_busy,tell me the current wait time for reservation at gpc?,parrot,avail,0 -no,i think that's false,original,cancel,3 -goodbye,good-bye,parrot,bye,2 -cancel_reservation,cancel my reservation at olive garden for 5,lambada,cancel,3 -yes,absolutely!,original,book,1 -yes,you are yes,lambada,book,1 -goodbye,regards,original,bye,2 -no,negatory,original,cancel,3 -no,sure it's wrong,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -reminder_update,set a reminder,original,resched,5 -greeting,yo,original,greet,4 -how_busy,could fry be very busy around 7pm?,parrot,avail,0 -greeting,how is this going?,parrot,greet,4 -calendar,what's my schedule for january 14?,parrot,avail,0 -greeting,whats new?,parrot,greet,4 -yes,yes,original,book,1 -no,i'd say no,original,cancel,3 -how_busy,how long before dinner?,parrot,avail,0 -schedule_meeting,are there meeting rooms available between 7 and 8?,lambada,book,1 -reminder_update,can you set a reminder of the meeting?,parrot,resched,5 -goodbye,i'm leaving now,lambada,bye,2 -thank_you,thanks for the update,lambada,bye,2 -no,negative,original,cancel,3 -thank_you,"nice, excellent!",original,bye,2 -goodbye,see you later!,original,bye,2 -thank_you,very grateful,parrot,bye,2 -thank_you,i appreciate the assistance,original,bye,2 -cancel_reservation,must cancel my party reservation at the ranch tonight,parrot,cancel,3 -no,invalid,original,cancel,3 -yes,my response is correct,parrot,book,1 -greeting,hello,original,greet,4 -meeting_schedule,meetings today,original,avail,0 -thank_you,my gratitude,parrot,bye,2 -goodbye,bye!,original,bye,2 -how_busy,is it busy in italy?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -date,what will be tomorrow?,parrot,avail,0 -thank_you,i'm happy you've helped me,parrot,bye,2 -yes,my answer to you is correct,parrot,book,1 -yes,TRUE,lambada,book,1 -yes,TRUE,original,book,1 -how_busy,how long does it take to wait in olive garden?,parrot,avail,0 -goodbye,catch you later,original,bye,2 -no,FALSE,lambada,cancel,3 -greeting,salutation,parrot,greet,4 -greeting,how's this going?,parrot,greet,4 -date,date tomorrow,parrot,avail,0 -cancel_reservation,there's no need to confirm my reservation,parrot,cancel,3 -yes,accept,parrot,book,1 -greeting,hello,original,greet,4 -greeting,"hello, good morning",lambada,greet,4 -greeting,how is idy?,parrot,greet,4 -greeting,hello there,original,greet,4 -greeting,are you okay??,parrot,greet,4 -thank_you,i'm thankful,original,bye,2 -thank_you,thanks for trying,original,bye,2 -greeting,welcome,parrot,greet,4 -no,i think that's false,original,cancel,3 -thank_you,thank you,original,bye,2 -cancel_reservation,are there any ways to cancel the reservation?,parrot,cancel,3 -greeting,aloha,original,greet,4 -yes,that is affirmative,original,book,1 -greeting,why hello?,original,greet,4 -no,i don't want that,parrot,cancel,3 -how_busy,how many people will be seated at the restaurant at 7 pm,parrot,avail,0 -yes,positive,parrot,book,1 -how_busy,how long is the restaurant sitting?,parrot,avail,0 -no,but that's not true?,parrot,cancel,3 -greeting,are you okay??,parrot,greet,4 -no,what isn't true?,parrot,cancel,3 -goodbye,later!,original,bye,2 -no,this isn't true,parrot,cancel,3 -goodbye,take it easy,lambada,bye,2 -meeting_schedule,what time is it to meet with fred?,parrot,avail,0 -no,that's the wrong answer,parrot,cancel,3 -no,it's actually false,parrot,cancel,3 -how_busy,how long will i have to wait before i can eat macaroni grill,parrot,avail,0 -goodbye,for now,parrot,bye,2 -no,negating,parrot,cancel,3 -no,what isn't true?,parrot,cancel,3 -yes,say yes,lambada,book,1 -calendar,tell me what's on my calendar for the 28th of march,parrot,avail,0 -goodbye,peace,original,bye,2 -no,would be a lie,parrot,cancel,3 -meeting_schedule,meet every one of my meetings today,lambada,avail,0 -greeting,hiya,original,greet,4 -thank_you,thank you,original,bye,2 -date,what's the date now?,parrot,avail,0 -greeting,hey how are you,lambada,greet,4 -no,not good,parrot,cancel,3 -greeting,hey,original,greet,4 -reminder_update,remind me to change the oil,parrot,resched,5 -thank_you,gracias,original,bye,2 -cancel_reservation,i need to cancel my reservation in tostada,parrot,cancel,3 -goodbye,i have to go but it was nice talking again!,original,bye,2 -date,what day?,parrot,avail,0 -no,but it's not true,parrot,cancel,3 -yes,accepted,original,book,1 -thank_you,thank you for the assistance,lambada,bye,2 -calendar,how many events are planned for march 15th,parrot,avail,0 -greeting,what's new?,parrot,greet,4 -no,no!,original,cancel,3 -calendar,tell me my calendar for march 19?,parrot,avail,0 -no,it's a negation,parrot,cancel,3 -calendar_update,add to my calendar for february 10 a trip to the zoo,parrot,resched,5 -goodbye,fairwell,original,bye,2 -greeting,"hi, ai",original,greet,4 -thank_you,i really appreciate my help,parrot,bye,2 -cancel_reservation,can you cancel the reservation at the restaurant? if so how?,parrot,cancel,3 -greeting,hi,original,greet,4 -thank_you,you've been great,parrot,bye,2 -date,what's the current date?,parrot,avail,0 -how_busy,can you tell me how busy ihop is at 6 pm,parrot,avail,0 -goodbye,i'll go,parrot,bye,2 -yes,it's positive,parrot,book,1 -date,what day will it be in twenty-one days?,parrot,avail,0 -calendar,is there a date on my calendar next sunday?,parrot,avail,0 -no,i would say no,lambada,cancel,3 -greeting,hello what's up?,parrot,greet,4 -no,but that's not factual,parrot,cancel,3 -greeting,are you okay??,parrot,greet,4 -no,nothing good,parrot,cancel,3 -how_busy,tell me how long i have to wait to go to arizona steakhouse?,lambada,avail,0 -no,most definitely false,parrot,cancel,3 -thank_you,you know i appreciate my answer,parrot,bye,2 -schedule_meeting,can you schedule a meeting room for 5pm on friday night?,parrot,book,1 -date,i would like to know what today's date is,original,avail,0 -thank_you,thanks for trying,original,bye,2 -how_busy,will the steakhouse be busy at 730?,parrot,avail,0 -how_busy,how long would the wait at the restaurant be,original,avail,0 -how_busy,ambrosio is busy around nine,parrot,avail,0 -schedule_meeting,i need a meeting room on saturday at 10am,parrot,book,1 -no,not right,parrot,cancel,3 -yes,say yes,lambada,book,1 -thank_you,your answer was enjoyable,original,bye,2 -no,no thanks,original,cancel,3 -yes,i'll vote for you,parrot,book,1 -yes,yay,lambada,book,1 -no,erroneous,parrot,cancel,3 -yes,uh-huh,original,book,1 -greeting,hello,original,greet,4 -calendar,check my calendar for my 30th birthday party,parrot,avail,0 -date,what year?,parrot,avail,0 -yes,certainly,parrot,book,1 -greeting,you good?,parrot,greet,4 -meeting_schedule,meetings today,original,avail,0 -greeting,what's new here?,parrot,greet,4 -yes,positive,parrot,book,1 -calendar,what's on my calendar for january next year,parrot,avail,0 -greeting,wassup,original,greet,4 -thank_you,so grateful,parrot,bye,2 -meeting_schedule,do you have meetings from 2 to 5?,parrot,avail,0 -yes,yeah,original,book,1 -no,is a lie?,parrot,cancel,3 -no,it's not correct,parrot,cancel,3 -yes,facts,original,book,1 -yes,accept,parrot,book,1 -yes,that's right,original,book,1 -no,would be a lie,parrot,cancel,3 -no,negating,parrot,cancel,3 -goodbye,i've got to go,lambada,bye,2 -greeting,ahoy hoy,original,greet,4 -goodbye,bye now,original,bye,2 -thank_you,i appreciate that,original,bye,2 -reminder_update,are you able to remind me?,parrot,resched,5 -no,nay,original,cancel,3 -greeting,what i feel?,parrot,greet,4 -goodbye,nice talk,lambada,bye,2 -greeting,hey there!,original,greet,4 -greeting,hows it going,lambada,greet,4 -greeting,hiya!,original,greet,4 -goodbye,i had fun speaking with you,original,bye,2 -yes,yeah yeah,lambada,book,1 -calendar_update,add family reunion to my calendar for next friday,lambada,resched,5 -calendar,check the calendar for events,parrot,avail,0 -thank_you,so grateful,parrot,bye,2 -goodbye,regards,original,bye,2 -how_busy,is macy's busy around 7?,parrot,avail,0 -yes,TRUE,original,book,1 -goodbye,afterward,parrot,bye,2 -no,it's overwhelmingly wrong,parrot,cancel,3 -yes,accepted,original,book,1 -how_busy,how busy is the red lobster at 6?,parrot,avail,0 -no,"please, no",original,cancel,3 -goodbye,later goodbye,parrot,bye,2 -yes,affirmative,original,book,1 -goodbye,bye now,original,bye,2 -greeting,and how's it going?,parrot,greet,4 -greeting,hey,original,greet,4 -goodbye,goodbye now,parrot,bye,2 -thank_you,nice,parrot,bye,2 -yes,all right,parrot,book,1 -greeting,hey how are you,lambada,greet,4 -how_busy,how long is the wait if i want to be in the tamara steakhouse,parrot,avail,0 -how_busy,can you list the average wait times for olive garden?,parrot,avail,0 -how_busy,is ihop currently busy?,parrot,avail,0 -yes,thats right,original,book,1 -yes,that is true,lambada,book,1 -yes,roger that,original,book,1 -greeting,heller,original,greet,4 -yes,that also makes sense,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,whats up?,parrot,greet,4 -reminder_update,a new reminder,parrot,resched,5 -no,nothing,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -thank_you,good job,lambada,bye,2 -yes,oh-huh,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -no,no,lambada,cancel,3 -no,so that's no,parrot,cancel,3 -date,what's the date?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -goodbye,peace,original,bye,2 -how_busy,how long is the wait in red lobster right now?,parrot,avail,0 -thank_you,you've helped,parrot,bye,2 -how_busy,tell me the average wait time at the outback steakhouse?,parrot,avail,0 -no,that's not factual,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -greeting,heller,original,greet,4 -yes,correct,original,book,1 -no,definitely not,original,cancel,3 -greeting,so how's everything?,parrot,greet,4 -greeting,hola,original,greet,4 -yes,yay,lambada,book,1 -goodbye,greetings,parrot,bye,2 -yes,okay,original,book,1 -yes,yeah,original,book,1 -reminder_update,remind me to do laundry,parrot,resched,5 -calendar,show me the calendar for next sunday,parrot,avail,0 -yes,good,parrot,book,1 -date,what's the year?,parrot,avail,0 -goodbye,the chat was good,parrot,bye,2 -greeting,good day,original,greet,4 -how_busy,how busy will chili's be around 8,lambada,avail,0 -calendar,display my calendar,lambada,avail,0 -goodbye,you're done,parrot,bye,2 -schedule_meeting,is it possible to meet steve in the office?,parrot,book,1 -how_busy,the wait at the olive garden?,parrot,avail,0 -greeting,hi how are you?,parrot,greet,4 -calendar_update,i'll be meeting steven on march 5th,parrot,resched,5 -date,tell me what date tomorrow is?,lambada,avail,0 -no,no please,parrot,cancel,3 -goodbye,"later, goodbye",lambada,bye,2 -goodbye,later then,lambada,bye,2 -no,i disagree,parrot,cancel,3 -meeting_schedule,what's on my meeting schedule today?,parrot,avail,0 -greeting,hey,original,greet,4 -no,i'll pass,original,cancel,3 -goodbye,fairwell,original,bye,2 -thank_you,thanks for my support,parrot,bye,2 -thank_you,thanks again!,original,bye,2 -greeting,heller,original,greet,4 -meeting_schedule,please tell me when my meeting with john will be,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -no,i think it's a bad idea,parrot,cancel,3 -greeting,how's life,original,greet,4 -how_busy,how long will it be for a table at flannigans,lambada,avail,0 -no,FALSE,original,cancel,3 -greeting,hola!,original,greet,4 -no,i'd prefer not to answer that,lambada,cancel,3 -greeting,how is this going?,parrot,greet,4 -reminder_update,please feed the cat tonight at 6pm,parrot,resched,5 -yes,ya,original,book,1 -no,nada,original,cancel,3 -greeting,hello,original,greet,4 -how_busy,how busy is olive garden at 7,lambada,avail,0 -how_busy,how long is the line at olive garden around 6pm,lambada,avail,0 -how_busy,how long has the wait been at olive garden right now,lambada,avail,0 -greeting,hey yai,lambada,greet,4 -thank_you,thank you,original,bye,2 -yes,positive,original,book,1 -no,naw,original,cancel,3 -yes,it's positive,parrot,book,1 -thank_you,the help is appreciated,parrot,bye,2 -yes,affirmitive,original,book,1 -no,not happening,original,cancel,3 -date,in five days?,parrot,avail,0 -thank_you,gracias,original,bye,2 -yes,but i think you have it,parrot,book,1 -schedule_meeting,check meeting rooms available between one and three o'clock in the evening,parrot,book,1 -yes,yeah yeah,lambada,book,1 -greeting,what's happening,original,greet,4 -no,i meant no,original,cancel,3 -thank_you,well done,parrot,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -goodbye,have to run,parrot,bye,2 -cancel_reservation,discard my dinner reservation,parrot,cancel,3 -yes,accept,parrot,book,1 -no,it seems wrong,parrot,cancel,3 -no,that's inaccurate,original,cancel,3 -greeting,what's new here?,parrot,greet,4 -meeting_schedule,when do you meet peter?,parrot,avail,0 -yes,absolutely!,original,book,1 -no,nothing good,parrot,cancel,3 -yes,confirmed,original,book,1 -how_busy,how long will the wait time be at tamales,lambada,avail,0 -yes,TRUE,original,book,1 -thank_you,appreciated,original,bye,2 -yes,not a lie,parrot,book,1 -calendar,what do i have on my calendar for march 29th?,lambada,avail,0 -greeting,heller,original,greet,4 -no,FALSE,original,cancel,3 -thank_you,well done,parrot,bye,2 -greeting,how're you?,parrot,greet,4 -how_busy,what is the wait time for a table at olive garden?,lambada,avail,0 -yes,accept,parrot,book,1 -greeting,how goes it,original,greet,4 -greeting,yo,original,greet,4 -goodbye,thank you for this conversation,parrot,bye,2 -yes,of course,original,book,1 -no,nope,original,cancel,3 -schedule_meeting,how do you create a meeting?,parrot,book,1 -greeting,heller,original,greet,4 -thank_you,nice,parrot,bye,2 -greeting,what i feel?,parrot,greet,4 -yes,definitely,original,book,1 -greeting,hello ai,parrot,greet,4 -greeting,hiya!,original,greet,4 -thank_you,you've been great,parrot,bye,2 -greeting,hello ai,parrot,greet,4 -yes,exactly right,original,book,1 -yes,positive,parrot,book,1 -no,nada,original,cancel,3 -thank_you,you have my gratitude,original,bye,2 -greeting,how's everything with you?,parrot,greet,4 -greeting,welcome,parrot,greet,4 -goodbye,good-bye,parrot,bye,2 -goodbye,goodbyes soon,parrot,bye,2 -date,in 100 days?,parrot,avail,0 -greeting,hey fellow,parrot,greet,4 -cancel_reservation,my reservation is no longer necessary,parrot,cancel,3 -no,the information is wrong,original,cancel,3 -thank_you,thank you for my response,lambada,bye,2 -yes,certainly,parrot,book,1 -thank_you,thanks for that answer,original,bye,2 -yes,i want it,parrot,book,1 -goodbye,have fun?,lambada,bye,2 -goodbye,adios!,original,bye,2 -greeting,so how's everything?,parrot,greet,4 -yes,absolutely!,original,book,1 -greeting,hey how have you been?,parrot,greet,4 -goodbye,say goodbye,parrot,bye,2 -reminder_update,will i be able to get a reminder to apply for credit card?,parrot,resched,5 -date,what's the date,original,avail,0 -how_busy,how busy will the golden corral be at 730 tonight,parrot,avail,0 -no,what are you saying that isn't true?,parrot,cancel,3 -yes,yes,original,book,1 -goodbye,peace out,original,bye,2 -yes,oh-huh,parrot,book,1 -schedule_meeting,please schedule a meeting with tom?,parrot,book,1 -thank_you,okay thank you,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -calendar,do i have any calendar entries for march 8?,parrot,avail,0 -date,what day is it?,original,avail,0 -yes,positive,original,book,1 -goodbye,goodbye then,parrot,bye,2 -yes,yes please,original,book,1 -how_busy,how long is a table at the restaurant?,parrot,avail,0 -date,what's today?,parrot,avail,0 -calendar,please see my calendar,parrot,avail,0 -date,in 8 days?,parrot,avail,0 -meeting_schedule,what meetings are today?,lambada,avail,0 -goodbye,buhbye,original,bye,2 -goodbye,need to catch up,parrot,bye,2 -greeting,how's everything?,parrot,greet,4 -date,today's date is exactly what?,parrot,avail,0 -yes,uh-huh,original,book,1 -goodbye,my way,parrot,bye,2 -yes,yes sir,original,book,1 -yes,accepted,original,book,1 -yes,absolutely,original,book,1 -yes,i'm going to tell you tes,parrot,book,1 -yes,facts,original,book,1 -meeting_schedule,when is my next meeting with dave?,parrot,avail,0 -yes,exactly right,original,book,1 -no,it's a no,original,cancel,3 -yes,obviously,parrot,book,1 -thank_you,appreciate the help,original,bye,2 -greeting,how's it going my friend?,parrot,greet,4 -no,that isn't correct,original,cancel,3 -thank_you,nice,parrot,bye,2 -thank_you,i'm happy you've helped me,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -greeting,how you're treated,parrot,greet,4 -yes,a true statement,parrot,book,1 -how_busy,is ihop busy?,parrot,avail,0 -date,what's today?,parrot,avail,0 -goodbye,later!,original,bye,2 -goodbye,i enjoyed our talk,parrot,bye,2 -no,not true,original,cancel,3 -meeting_schedule,when are we gonna meet?,parrot,avail,0 -greeting,how's idy?,parrot,greet,4 -yes,accept,parrot,book,1 -calendar,tell me what i'm planning for march 19th?,parrot,avail,0 -thank_you,thank you?,parrot,bye,2 -no,FALSE,original,cancel,3 -greeting,aloha,original,greet,4 -goodbye,goodbye,original,bye,2 -how_busy,how long will the wait be at the red robins,parrot,avail,0 -yes,uh-huh,original,book,1 -goodbye,as regards,parrot,bye,2 -yes,yes,original,book,1 -goodbye,good talk,parrot,bye,2 -calendar_update,please remove this event from my calendar?,parrot,resched,5 -greeting,hola,original,greet,4 -yes,that is affirmative,original,book,1 -goodbye,goodnight,original,bye,2 -greeting,yo,original,greet,4 -greeting,how is my day?,parrot,greet,4 -thank_you,thanks so much,original,bye,2 -yes,we would say yes,lambada,book,1 -how_busy,how busy will you be at 9pm?,parrot,avail,0 -goodbye,adios,original,bye,2 -greeting,hello how are things?,parrot,greet,4 -greeting,welcome,parrot,greet,4 -no,the information is false,parrot,cancel,3 -goodbye,nice drive by,lambada,bye,2 -greeting,hey hey!,original,greet,4 -yes,accepted,original,book,1 -goodbye,tootles?,parrot,bye,2 -date,today?,parrot,avail,0 -no,no,lambada,cancel,3 -yes,positive,parrot,book,1 -thank_you,i'm happy you've helped me,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,absolutely!,original,book,1 -thank_you,much obliged,original,bye,2 -greeting,hiya!,original,greet,4 -no,no,lambada,cancel,3 -how_busy,what is the wait at this restaurant?,lambada,avail,0 -yes,right,parrot,book,1 -greeting,hello ai,parrot,greet,4 -date,date tomorrow?,parrot,avail,0 -no,"no, that's incorrect",original,cancel,3 -no,that is untrue,original,cancel,3 -reminder_update,come on please,parrot,resched,5 -goodbye,farewell!,original,bye,2 -no,no longer valid,parrot,cancel,3 -calendar,what was the day on my calendar for the first day of school?,parrot,avail,0 -greeting,hi how's everything?,parrot,greet,4 -greeting,what's happening,original,greet,4 -thank_you,"nice, excellent!",original,bye,2 -thank_you,thanks,original,bye,2 -yes,positive,original,book,1 -greeting,hey there,original,greet,4 -reminder_update,please remind me again,parrot,resched,5 -greeting,good evening,original,greet,4 -goodbye,come on soon,parrot,bye,2 -yes,absolutely,original,book,1 -cancel_reservation,delete my dinner reservation,parrot,cancel,3 -goodbye,bye,original,bye,2 -greeting,how's otc?,parrot,greet,4 -goodbye,goodbye,original,bye,2 -thank_you,thankyou,parrot,bye,2 -yes,TRUE,lambada,book,1 -schedule_meeting,can you schedule me a meeting with you?,parrot,book,1 -yes,accepted,original,book,1 -date,what's today,original,avail,0 -how_busy,what time would i have to wait to get a table at dibruno's?,parrot,avail,0 -goodbye,i must run now,parrot,bye,2 -how_busy,it'll take how long to get a table in the restaurant,parrot,avail,0 -goodbye,i'll go,parrot,bye,2 -reminder_update,remember me to call a friend tomorrow,parrot,resched,5 -cancel_reservation,i have to cancel my reservation after all please,parrot,cancel,3 -reminder_update,make me remember,parrot,resched,5 -no,ill pass,original,cancel,3 -yes,yes it's true,lambada,book,1 -how_busy,what's the wait like at olive garden around 6 pm,lambada,avail,0 -goodbye,tootles?,parrot,bye,2 -reminder_update,a new reminder,parrot,resched,5 -no,i'll say no,parrot,cancel,3 -yes,"yep, that's correct",lambada,book,1 -greeting,heller,original,greet,4 -greeting,why hello?,original,greet,4 -date,"what's the date tomorrow, please",original,avail,0 -goodbye,tootles?,parrot,bye,2 -yes,do that?,original,book,1 -goodbye,the talk was nice,lambada,bye,2 -no,nay,original,cancel,3 -yes,definitely,original,book,1 -yes,very true,original,book,1 -yes,it'd be great,parrot,book,1 -schedule_meeting,can you help me to create a meeting for me?,parrot,book,1 -no,thanks no,parrot,cancel,3 -date,which date today?,parrot,avail,0 -no,thats a negative,original,cancel,3 -goodbye,regards,original,bye,2 -no,naw,original,cancel,3 -yes,indeed,original,book,1 -date,date tomorrow,parrot,avail,0 -greeting,heller,original,greet,4 -goodbye,goodbye ai,parrot,bye,2 -greeting,how's life?,parrot,greet,4 -goodbye,"great talk, thanks",original,bye,2 -thank_you,thank you!,original,bye,2 -no,not that one,original,cancel,3 -greeting,hi how's everything?,parrot,greet,4 -reminder_update,remind me to take care of flowers,parrot,resched,5 -no,negative,original,cancel,3 -calendar,are there points on my calendar for the annual membership dues?,parrot,avail,0 -how_busy,ihop around 10 pm,parrot,avail,0 -no,that's erroneous,parrot,cancel,3 -thank_you,thank you kindly,original,bye,2 -greeting,hiya,original,greet,4 -goodbye,goodbye thank you,parrot,bye,2 -yes,roger that,original,book,1 -yes,"yes, that's true",lambada,book,1 -no,negation,parrot,cancel,3 -yes,"yes, that is factual",original,book,1 -calendar,if i have an appointment on 17 march let me know,parrot,avail,0 -schedule_meeting,can you tell me if there's a meeting room available at 11 o'clock?,parrot,book,1 -yes,i want to confirm it,parrot,book,1 -goodbye,buhbye,original,bye,2 -yes,i agree,original,book,1 -thank_you,for my help i'm very thankful,parrot,bye,2 -no,it's a false,lambada,cancel,3 -no,that would be no,lambada,cancel,3 -how_busy,list the current wait times in an italian restaurant?,parrot,avail,0 -yes,accept,parrot,book,1 -date,i need to know tomorrow's date,original,avail,0 -no,that's incorrect,original,cancel,3 -how_busy,"at four, how much business does georgio have",original,avail,0 -goodbye,bye bye!,original,bye,2 -greeting,good to see you,original,greet,4 -goodbye,tootles,original,bye,2 -how_busy,how long is the restaurant at 12 noon?,parrot,avail,0 -goodbye,great chat goodbye,lambada,bye,2 -yes,confirm,original,book,1 -goodbye,bye-bye,original,bye,2 -thank_you,good job helping me,parrot,bye,2 -meeting_schedule,when's my meeting?,parrot,avail,0 -greeting,hello,original,greet,4 -yes,definitely,original,book,1 -cancel_reservation,cancel my reservations for joe's at zepher right now,original,cancel,3 -no,it would be awful,parrot,cancel,3 -greeting,how're you?,parrot,greet,4 -thank_you,you were so kind to do that,original,bye,2 -greeting,hey there,original,greet,4 -meeting_schedule,meetings today,original,avail,0 -greeting,aloha,original,greet,4 -cancel_reservation,cancel the reservation at olive garden for tommy,original,cancel,3 -greeting,hello,original,greet,4 -no,that's not always true,parrot,cancel,3 -greeting,bonjour,original,greet,4 -greeting,hi there,original,greet,4 -no,naw,original,cancel,3 -thank_you,and thank you for my help,parrot,bye,2 -greeting,how's the life?,parrot,greet,4 -no,it's false,parrot,cancel,3 -thank_you,thank you for that!,lambada,bye,2 -goodbye,lovely conversation,parrot,bye,2 -yes,good yes,lambada,book,1 -how_busy,how busy will red robin be around noon?,parrot,avail,0 -yes,i'm going to tell you tes,parrot,book,1 -date,in five days?,parrot,avail,0 -greeting,are you okay?,original,greet,4 -yes,i'm going to tell you tes,parrot,book,1 -greeting,aho,parrot,greet,4 -goodbye,no problem just relax,parrot,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -how_busy,how long will it take to get a table in chipotle?,parrot,avail,0 -how_busy,has the wait been long?,parrot,avail,0 -goodbye,please talk soon,parrot,bye,2 -greeting,hiya,original,greet,4 -yes,yes,original,book,1 -thank_you,thanks,original,bye,2 -yes,absolutely!,original,book,1 -no,this is my reply,parrot,cancel,3 -thank_you,thanks,original,bye,2 -greeting,hey fellows,parrot,greet,4 -thank_you,thank you ai,parrot,bye,2 -yes,indeed,original,book,1 -yes,yeah yeah,lambada,book,1 -goodbye,goodbye goodbye,parrot,bye,2 -date,date tomorrow,parrot,avail,0 -greeting,show me how you feel about it,parrot,greet,4 -goodbye,see ya,lambada,bye,2 -goodbye,it was nice to talk it out with you,original,bye,2 -goodbye,sign off,parrot,bye,2 -no,that's no,parrot,cancel,3 -meeting_schedule,meeting today,parrot,avail,0 -goodbye,good luck,lambada,bye,2 -yes,sure,original,book,1 -thank_you,thankyou,parrot,bye,2 -thank_you,i appreciate your gesture,lambada,bye,2 -yes,that's true,original,book,1 -how_busy,how long is the line in the restaurant before we leave,parrot,avail,0 -how_busy,how long will it take before i can get a table at chili's?,parrot,avail,0 -goodbye,goodbyes soon,parrot,bye,2 -how_busy,please tell me how busy the cheesecake factory is at 11?,parrot,avail,0 -no,it's a false statement,parrot,cancel,3 -goodbye,fairwell,original,bye,2 -yes,i agree,original,book,1 -greeting,aho,parrot,greet,4 -greeting,hola!,original,greet,4 -goodbye,fairwell,original,bye,2 -greeting,how's idy?,parrot,greet,4 -yes,ya,original,book,1 -yes,it is a yes from me,parrot,book,1 -greeting,hows it going,lambada,greet,4 -goodbye,regards,original,bye,2 -goodbye,bye,original,bye,2 -thank_you,you answered,parrot,bye,2 -yes,confirmed,original,book,1 -thank_you,appreciated,original,bye,2 -meeting_schedule,is there any meetings today?,parrot,avail,0 -reminder_update,remind me,original,resched,5 -goodbye,fairwell,original,bye,2 -no,the wrong answer,parrot,cancel,3 -goodbye,i'm gone,parrot,bye,2 -no,absolutely not,original,cancel,3 -yes,just right,parrot,book,1 -yes,i think that's right,parrot,book,1 -greeting,hola!,original,greet,4 -how_busy,how busy is ihop at 6 pm,lambada,avail,0 -greeting,aloha,original,greet,4 -how_busy,is sage busy at noon?,parrot,avail,0 -yes,thats right,original,book,1 -greeting,how is idy?,parrot,greet,4 -goodbye,it's over,parrot,bye,2 -thank_you,appreciate the help,original,bye,2 -how_busy,can you tell me the wait times for a table at the cheesecake factory?,lambada,avail,0 -goodbye,good conversation,parrot,bye,2 -goodbye,peace out,original,bye,2 -no,no!,original,cancel,3 -yes,huh,parrot,book,1 -greeting,well hello,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -no,definitely not,original,cancel,3 -thank_you,youre a doll,original,bye,2 -no,this statement is false,parrot,cancel,3 -yes,sure,original,book,1 -yes,yes you are right,original,book,1 -goodbye,good call,parrot,bye,2 -date,what's the current day?,parrot,avail,0 -thank_you,and i thank you,parrot,bye,2 -thank_you,thanks please,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -no,"that's no, that is false",lambada,cancel,3 -calendar_update,remove the june 7 event symphony from my calendar,parrot,resched,5 -no,that's not correct,original,cancel,3 -yes,that's correct,original,book,1 -thank_you,you have my gratitude,original,bye,2 -goodbye,adios,original,bye,2 -cancel_reservation,please cancel my booking,parrot,cancel,3 -calendar_update,cancel a dinner i planned for my calendar,parrot,resched,5 -greeting,salutation,parrot,greet,4 -yes,that's what i'm going to tell you,lambada,book,1 -greeting,whats up?,parrot,greet,4 -reminder_update,remind me something,parrot,resched,5 -greeting,what are you feeling today?,original,greet,4 -cancel_reservation,make sure my reservation at outback for joe,lambada,cancel,3 -thank_you,i'm glad you helped,parrot,bye,2 -goodbye,goodbye soon,lambada,bye,2 -reminder_update,remind me to do this in awhile,original,resched,5 -goodbye,tootles?,parrot,bye,2 -greeting,hello what's up?,parrot,greet,4 -greeting,hi there,original,greet,4 -goodbye,go easy,parrot,bye,2 -yes,confirmed,original,book,1 -how_busy,how long before dinner,parrot,avail,0 -no,nope,original,cancel,3 -thank_you,appreciated,original,bye,2 -reminder_update,i'd like a reminder,parrot,resched,5 -yes,positive,original,book,1 -goodbye,sign off,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,are the restaurants full when you're having dinner?,parrot,avail,0 -date,what date in 10 days?,parrot,avail,0 -how_busy,how busy is iman at 7 in the morning,lambada,avail,0 -yes,positive,parrot,book,1 -no,so that's no,parrot,cancel,3 -goodbye,adios,original,bye,2 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -yes,all right,original,book,1 -calendar_update,add a doctor appointment to the calendar for friday,parrot,resched,5 -greeting,aho,parrot,greet,4 -goodbye,later!,original,bye,2 -thank_you,i'm grateful,original,bye,2 -yes,good,parrot,book,1 -how_busy,is the restaurant busy during the night?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -meeting_schedule,tell me when today's meeting is supposed to take place,parrot,avail,0 -greeting,tell me how you've been?,original,greet,4 -no,that's a negatory,original,cancel,3 -greeting,how's my current situation?,parrot,greet,4 -date,what's going to happen next?,parrot,avail,0 -yes,yes,original,book,1 -greeting,how's the situation?,parrot,greet,4 -no,"no, that would be a no",lambada,cancel,3 -goodbye,later!,original,bye,2 -thank_you,you've given me it,parrot,bye,2 -yes,great,original,book,1 -goodbye,it's over,parrot,bye,2 -goodbye,goodbye to your,lambada,bye,2 -goodbye,fairwell?,parrot,bye,2 -goodbye,sign off,parrot,bye,2 -goodbye,i need to go now,original,bye,2 -yes,TRUE,original,book,1 -no,negation,parrot,cancel,3 -calendar,show me my calendar?,parrot,avail,0 -no,naw,original,cancel,3 -no,negating,parrot,cancel,3 -goodbye,we'll talk later ai,original,bye,2 -goodbye,good conversation,parrot,bye,2 -greeting,salutation,parrot,greet,4 -yes,confirmed,original,book,1 -no,not happening,original,cancel,3 -yes,i just said that,parrot,book,1 -how_busy,how long will it take for me to get a reservation at pizza outlet,lambada,avail,0 -no,i must say no,original,cancel,3 -greeting,whats new?,parrot,greet,4 -calendar_update,i'll be meeting steven on march 5,parrot,resched,5 -thank_you,i'm glad you did it for me,parrot,bye,2 -no,that is so false,original,cancel,3 -how_busy,how long will the wait be at chili's around 5pm,lambada,avail,0 -yes,ok,original,book,1 -no,false sure,parrot,cancel,3 -yes,absolutely,original,book,1 -how_busy,can you tell me the current wait time in the restaurant,parrot,avail,0 -yes,very true,original,book,1 -date,what date?,parrot,avail,0 -no,that's erroneous,parrot,cancel,3 -thank_you,thank you?,parrot,bye,2 -no,this statement is false,parrot,cancel,3 -reminder_update,you know something?,parrot,resched,5 -reminder_update,remember the meeting tomorrow,parrot,resched,5 -goodbye,tootles,original,bye,2 -yes,that's the truth,original,book,1 -thank_you,thanks,original,bye,2 -thank_you,you helped,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -yes,absolutely,original,book,1 -yes,positive,parrot,book,1 -yes,all right,original,book,1 -no,i prefer not,parrot,cancel,3 -yes,that's correct,original,book,1 -yes,approved,original,book,1 -greeting,how goes it,original,greet,4 -yes,confirm,original,book,1 -greeting,how're you doing,original,greet,4 -greeting,wake up ai,parrot,greet,4 -thank_you,i'm grateful for helping me,parrot,bye,2 -goodbye,signing off,original,bye,2 -calendar,please read my calendar,parrot,avail,0 -no,i'd say no,original,cancel,3 -yes,it's positive,parrot,book,1 -greeting,hola!,original,greet,4 -thank_you,okay thanks,original,bye,2 -yes,sure,original,book,1 -how_busy,tell me how busy the chili's is at 6 pm?,lambada,avail,0 -reminder_update,remind me to do this in a while,parrot,resched,5 -no,it's no,parrot,cancel,3 -reminder_update,remind me of exercise,parrot,resched,5 -yes,good yes,lambada,book,1 -thank_you,i'm glad you laughed,parrot,bye,2 -yes,oh-huh,parrot,book,1 -no,that's a false,lambada,cancel,3 -greeting,"hi, ai",original,greet,4 -how_busy,how busy will this place get at 8:00 pm,lambada,avail,0 -yes,i'm going to tell you tes,parrot,book,1 -goodbye,farewell,original,bye,2 -cancel_reservation,cancellation of reservations for dinner,parrot,cancel,3 -thank_you,thanks very much,parrot,bye,2 -yes,accept,parrot,book,1 -no,it's no,parrot,cancel,3 -how_busy,do you know how long it will be at chris' place?,parrot,avail,0 -schedule_meeting,can you schedule a meeting for tuesday evening at 6pm?,parrot,book,1 -yes,certainly,parrot,book,1 -greeting,what do you think of acii?,parrot,greet,4 -greeting,hola!,original,greet,4 -no,that's so false,parrot,cancel,3 -yes,that's true,original,book,1 -greeting,hi,original,greet,4 -date,what's the date 32 days from now,original,avail,0 -goodbye,goodbyes,parrot,bye,2 -date,which date is it?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,hello good day,parrot,greet,4 -goodbye,fairwell,original,bye,2 -yes,"yes, please",parrot,book,1 -greeting,how you feel?,parrot,greet,4 -no,that is erroneous,original,cancel,3 -greeting,hiya,original,greet,4 -no,that's so wrong,parrot,cancel,3 -no,it's a wrong answer,parrot,cancel,3 -date,in 9 days?,parrot,avail,0 -schedule_meeting,can i have a meeting room between 10 and 12?,parrot,book,1 -yes,is true,parrot,book,1 -greeting,hey,original,greet,4 -goodbye,sayonara ,parrot,bye,2 -greeting,hi,original,greet,4 -no,no way!,original,cancel,3 -date,what month today?,parrot,avail,0 -no,there is no,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -greeting,what's happened?,parrot,greet,4 -no,that's totally wrong!,original,cancel,3 -no,this is not true,parrot,cancel,3 -how_busy,how busy is the red lobster at five?,parrot,avail,0 -how_busy,how long will it be to be seated at olive garden,lambada,avail,0 -schedule_meeting,reserve a meeting room for friday 5pm,parrot,book,1 -calendar_update,remove the may 11 event called baby shower from my calendar,original,resched,5 -thank_you,thanks!,original,bye,2 -date,what's today,original,avail,0 -reminder_update,remind me,original,resched,5 -goodbye,i'm out,parrot,bye,2 -yes,certainly,parrot,book,1 -how_busy,how much time does it take to wait for a table at red lobster?,parrot,avail,0 -greeting,"hey, what's new",original,greet,4 -goodbye,for now,parrot,bye,2 -goodbye,i must say goodbye,original,bye,2 -goodbye,goodbye,original,bye,2 -greeting,welcome,parrot,greet,4 -yes,yes sir,original,book,1 -how_busy,what time do you have to wait for arizona steakhouse?,parrot,avail,0 -goodbye,peace out,original,bye,2 -yes,say positive,parrot,book,1 -no,absolutely false,parrot,cancel,3 -goodbye,thanks goodbye,parrot,bye,2 -yes,sure,original,book,1 -greeting,good morning ai,parrot,greet,4 -goodbye,i'm out,parrot,bye,2 -goodbye,come on soon,parrot,bye,2 -goodbye,thanks goodbye,parrot,bye,2 -no,i'll pass,original,cancel,3 -yes,"yes, that's correct",original,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,how's this going?,parrot,greet,4 -yes,so it's true,parrot,book,1 -yes,roger that,original,book,1 -how_busy,i want a table at texas roadhouse how long will it be?,parrot,avail,0 -yes,yeah,original,book,1 -thank_you,thanks for responding,parrot,bye,2 -how_busy,how long will i wait at olive garden,lambada,avail,0 -thank_you,thanks very much for your answer,parrot,bye,2 -yes,TRUE,lambada,book,1 -thank_you,okay thank you,parrot,bye,2 -thank_you,my thanks,parrot,bye,2 -no,certainly not true,parrot,cancel,3 -no,that's a no,lambada,cancel,3 -goodbye,fairwell?,parrot,bye,2 -no,is very false,parrot,cancel,3 -yes,facts,original,book,1 -greeting,aloha,original,greet,4 -greeting,how are you?,parrot,greet,4 -no,i say negative,original,cancel,3 -goodbye,goodbye,original,bye,2 -no,no?,parrot,cancel,3 -no,it's a negation,parrot,cancel,3 -goodbye,", goodbye",lambada,bye,2 -how_busy,how long will the wait in an italian restaurant be?,parrot,avail,0 -goodbye,please talk to me,parrot,bye,2 -thank_you,thanks for my assistance,parrot,bye,2 -goodbye,goodbyes soon,parrot,bye,2 -yes,this is true,lambada,book,1 -yes,great,original,book,1 -goodbye,i'm gone,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -yes,right,parrot,book,1 -no,it's false,parrot,cancel,3 -yes,i'm going to tell you tes,parrot,book,1 -no,nope,original,cancel,3 -greeting,good evening,original,greet,4 -date,can you tell me the details of my dates?,parrot,avail,0 -goodbye,lovely conversation,parrot,bye,2 -calendar,check my calendar please,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -yes,indeed,parrot,book,1 -no,that's no way,parrot,cancel,3 -yes,yes sir,original,book,1 -meeting_schedule,are there meetings between 2 and 3?,parrot,avail,0 -yes,facts,original,book,1 -goodbye,goodbye bye,parrot,bye,2 -goodbye,goodbye,original,bye,2 -greeting,hello siri,original,greet,4 -yes,that checks out,original,book,1 -calendar,do you have an annual physical on my calendar?,parrot,avail,0 -how_busy,how much time will it take to get a table in olive garden,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -yes,yeap,original,book,1 -how_busy,how long will the chili wait?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -yes,oh-huh,parrot,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -cancel_reservation,i want to cancel my reservation please,parrot,cancel,3 -cancel_reservation,please cancel my booking,parrot,cancel,3 -goodbye,have fun?,lambada,bye,2 -goodbye,goodbye helpful ai devices,parrot,bye,2 -calendar_update,eliminate the trip to scotland from my calendar on 1 march,parrot,resched,5 -date,what's the date of today?,parrot,avail,0 -calendar_update,create a calendar reminder for march 6,lambada,resched,5 -date,what year is tomorrow,parrot,avail,0 -yes,"agreed, that's valid",original,book,1 -yes,approved,original,book,1 -thank_you,i owe you,parrot,bye,2 -date,what date is today?,original,avail,0 -yes,TRUE,lambada,book,1 -greeting,hey what's up,original,greet,4 -reminder_update,make me a reminder to pay taxes?,parrot,resched,5 -reminder_update,please remember me,parrot,resched,5 -calendar_update,delete all events on my calendar with the word girlfriend in them,parrot,resched,5 -no,that's so wrong,parrot,cancel,3 -date,please explain today,parrot,avail,0 -date,is today monday?,original,avail,0 -goodbye,goodbye goodbye,parrot,bye,2 -goodbye,farewell,original,bye,2 -yes,my answer is yes,parrot,book,1 -date,date tomorrow,parrot,avail,0 -no,no,lambada,cancel,3 -no,so that's no,parrot,cancel,3 -yes,that is true,lambada,book,1 -goodbye,i'll see you around,lambada,bye,2 -cancel_reservation,cancel my party reservation for brad at the longhorn,parrot,cancel,3 -greeting,aloha,original,greet,4 -no,hell nah,original,cancel,3 -thank_you,thanks so much,original,bye,2 -goodbye,adios!,original,bye,2 -goodbye,fairwell,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -thank_you,well done,parrot,bye,2 -yes,yes sir,original,book,1 -greeting,hi,original,greet,4 -how_busy,don't you know how busy outback steakhouse tends to be at 7pm?,parrot,avail,0 -goodbye,bye now,original,bye,2 -greeting,salutation,parrot,greet,4 -greeting,and how are you treated?,parrot,greet,4 -reminder_update,keep an eye on the music on monday,parrot,resched,5 -no,not that,original,cancel,3 -goodbye,"later, goodbye",lambada,bye,2 -yes,okay,original,book,1 -yes,oh-huh,parrot,book,1 -schedule_meeting,can you please set up a meeting room for 5:00 on monday?,lambada,book,1 -greeting,wassup,original,greet,4 -yes,that is right,original,book,1 -yes,huh,parrot,book,1 -meeting_schedule,what are the meetings today?,parrot,avail,0 -thank_you,okay thanks,original,bye,2 -schedule_meeting,please schedule a meeting,parrot,book,1 -greeting,hey what's up?,parrot,greet,4 -no,negation,parrot,cancel,3 -thank_you,that's what you did,parrot,bye,2 -greeting,hello siri,original,greet,4 -greeting,welcome,parrot,greet,4 -thank_you,much obliged,original,bye,2 -how_busy,what's the wait at macaroni grill,original,avail,0 -calendar,list some things i have on my calendar for march 1?,parrot,avail,0 -no,but not right now,parrot,cancel,3 -goodbye,"enjoy my day, bye",lambada,bye,2 -greeting,hi there,original,greet,4 -thank_you,thank ya!,original,bye,2 -greeting,aloha,original,greet,4 -yes,definitely,original,book,1 -no,no!,original,cancel,3 -goodbye,goodbye to yours,parrot,bye,2 -goodbye,the time to say goodbye?,parrot,bye,2 -date,tell me the current month and year,parrot,avail,0 -greeting,bonjour,original,greet,4 -date,what day?,parrot,avail,0 -yes,that's correct,original,book,1 -yes,positive,original,book,1 -goodbye,it was nice to catch up with you,original,bye,2 -greeting,how goes it,original,greet,4 -no,please disagree,lambada,cancel,3 -yes,oh-huh,parrot,book,1 -thank_you,thank you ai,parrot,bye,2 -date,what year?,parrot,avail,0 -no,i'd prefer not to,parrot,cancel,3 -yes,10-Apr,original,book,1 -greeting,what's happened?,parrot,greet,4 -how_busy,does red lobster have people around?,parrot,avail,0 -yes,agreed,original,book,1 -yes,accept,parrot,book,1 -greeting,what's my feeling today?,parrot,greet,4 -cancel_reservation,delete my dinner reservation,parrot,cancel,3 -thank_you,gracias,original,bye,2 -greeting,hey,original,greet,4 -thank_you,thank you very much for that,parrot,bye,2 -yes,exactly right,original,book,1 -goodbye,good-bye,parrot,bye,2 -no,no!,original,cancel,3 -thank_you,you helped,parrot,bye,2 -no,negatory,original,cancel,3 -greeting,whats new,lambada,greet,4 -goodbye,goodbye,original,bye,2 -yes,ya,original,book,1 -greeting,why hello?,original,greet,4 -goodbye,my friend,parrot,bye,2 -no,that is not correct,original,cancel,3 -reminder_update,i need to remember,parrot,resched,5 -thank_you,you've helped,parrot,bye,2 -yes,yes please,original,book,1 -no,that's so wrong,parrot,cancel,3 -meeting_schedule,when is my meeting with christian planned?,parrot,avail,0 -greeting,hello there,original,greet,4 -goodbye,later gator!,original,bye,2 -yes,yeah yeah,lambada,book,1 -how_busy,how busy will red lobster be at noon?,parrot,avail,0 -yes,a fact,parrot,book,1 -yes,oh-huh,parrot,book,1 -date,what year is it tomorrow?,parrot,avail,0 -greeting,"hello, good morning",lambada,greet,4 -goodbye,just relax,parrot,bye,2 -goodbye,later goodbye,parrot,bye,2 -goodbye,wait for me later,parrot,bye,2 -thank_you,appreciate the support,parrot,bye,2 -no,that's so false,parrot,cancel,3 -greeting,how's life,original,greet,4 -greeting,whats new,lambada,greet,4 -date,in 8 days?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -greeting,hi there alexa,original,greet,4 -yes,i think you have it,lambada,book,1 -no,nothing,parrot,cancel,3 -greeting,hey fellows,parrot,greet,4 -greeting,how's idy?,parrot,greet,4 -cancel_reservation,please cancel the table i reserved for tonight,parrot,cancel,3 -thank_you,you're welcome,parrot,bye,2 -no,would be a lie,parrot,cancel,3 -reminder_update,add a reminder,lambada,resched,5 -yes,that is right,original,book,1 -goodbye,was a pleasure talking with you,parrot,bye,2 -calendar,please read my schedule for april 30,parrot,avail,0 -no,FALSE,original,cancel,3 -no,that's false,original,cancel,3 -yes,affirmitive,original,book,1 -yes,yeah,original,book,1 -greeting,hey hey!,original,greet,4 -greeting,hey fellows,parrot,greet,4 -yes,i have to say yes,parrot,book,1 -yes,yeap,original,book,1 -greeting,how's everything,original,greet,4 -no,no,lambada,cancel,3 -no,that's inaccurate,original,cancel,3 -no,negating,parrot,cancel,3 -cancel_reservation,call the restaurant and cancel my reservation,original,cancel,3 -thank_you,i appreciate your answer,parrot,bye,2 -greeting,salutations!,original,greet,4 -date,today?,parrot,avail,0 -thank_you,i'm glad you did it for me,parrot,bye,2 -meeting_schedule,is the meeting with lisa today?,original,avail,0 -how_busy,i'd like to know how busy ihop is at 8pm,parrot,avail,0 -yes,"correct, that's true",original,book,1 -thank_you,many thank,original,bye,2 -no,FALSE,lambada,cancel,3 -cancel_reservation,cancel my reservation at red robin for joe,lambada,cancel,3 -goodbye,farewell!,original,bye,2 -thank_you,you've tried,parrot,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -no,negatory,original,cancel,3 -no,that's incorrect!,original,cancel,3 -goodbye,tata for now,original,bye,2 -greeting,ahoy there,lambada,greet,4 -goodbye,the talk was nice,lambada,bye,2 -greeting,heyo,original,greet,4 -no,don't like it no,parrot,cancel,3 -date,in three days,parrot,avail,0 -greeting,hey what's going on?,parrot,greet,4 -greeting,how's this going?,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -greeting,nice day,lambada,greet,4 -greeting,what's happened?,parrot,greet,4 -calendar_update,add events to my calendar,parrot,resched,5 -date,would you please tell me my current date,lambada,avail,0 -cancel_reservation,can you cancel my reservation on tuesday for chris at stella maria?,parrot,cancel,3 -date,what will the date be in 100 days?,lambada,avail,0 -no,FALSE,lambada,cancel,3 -no,i would say that the statement is certainly false,parrot,cancel,3 -thank_you,i'm very thankful,parrot,bye,2 -yes,good,parrot,book,1 -how_busy,what time do you have to wait for arizona steak house?,parrot,avail,0 -greeting,how're you?,parrot,greet,4 -goodbye,later goodbye,parrot,bye,2 -meeting_schedule,tell me how many meetings i have between noon and 5pm?,lambada,avail,0 -no,please no,parrot,cancel,3 -date,what's the date?,parrot,avail,0 -goodbye,goodbye now,parrot,bye,2 -greeting,welcome,parrot,greet,4 -no,don't like that,parrot,cancel,3 -thank_you,thanks!,original,bye,2 -goodbye,bye!,original,bye,2 -calendar,if my annual health insurance plan has any dates on it can you check it out?,parrot,avail,0 -yes,okay,original,book,1 -goodbye,good luck,lambada,bye,2 -how_busy,what's the wait at iman's,lambada,avail,0 -calendar,tell me what my calendar looks like for march 2nd,parrot,avail,0 -no,that isn't correct,original,cancel,3 -greeting,how are you?,parrot,greet,4 -thank_you,thanks please,original,bye,2 -how_busy,how busy will iman's be around 7 pm,lambada,avail,0 -meeting_schedule,when is my meeting with mark scheduled? '',parrot,avail,0 -greeting,how's the situation?,parrot,greet,4 -date,tell me the date,parrot,avail,0 -no,"no, definitely not",original,cancel,3 -no,that's a lie,parrot,cancel,3 -thank_you,i'm glad you helped me,lambada,bye,2 -greeting,hi how are you today?,parrot,greet,4 -how_busy,can you tell me how busy it will be at 730?,parrot,avail,0 -yes,accepted,original,book,1 -thank_you,thanks!,original,bye,2 -date,what date is it now?,lambada,avail,0 -yes,indeed,original,book,1 -how_busy,how long is the wait at applebee's tonight,original,avail,0 -greeting,good evening,original,greet,4 -greeting,salutations!,original,greet,4 -how_busy,if i want a table at olive garden how long will it take,parrot,avail,0 -how_busy,tell me the time to wait before getting into the red robins?,parrot,avail,0 -yes,yup,original,book,1 -goodbye,goodbye,original,bye,2 -yes,good,parrot,book,1 -yes,you got it,parrot,book,1 -yes,sure,original,book,1 -greeting,whats up?,parrot,greet,4 -greeting,how's my treatment?,parrot,greet,4 -no,say negative,parrot,cancel,3 -yes,obviously,parrot,book,1 -date,what's the date now?,parrot,avail,0 -date,tell me the year?,parrot,avail,0 -yes,yep,original,book,1 -how_busy,how busy is the chili's at 5:30 pm,lambada,avail,0 -goodbye,greetings,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -no,that's not right?,parrot,cancel,3 -meeting_schedule,when will i meet john?,parrot,avail,0 -goodbye,goodbye my friend,parrot,bye,2 -yes,"yeah, that is true",lambada,book,1 -no,that's absolutely wrong,parrot,cancel,3 -thank_you,thanks again!,original,bye,2 -no,nay,original,cancel,3 -how_busy,can i expect to see a lot of waits at imo's at 3 pm?,lambada,avail,0 -how_busy,for dinner how busy is chili?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -calendar_update,can you add exercise to my calendar today?,parrot,resched,5 -meeting_schedule,when are my meetings scheduled between noon and one?,parrot,avail,0 -how_busy,how much time will it take to get a table in the olive garden?,parrot,avail,0 -goodbye,great talk,lambada,bye,2 -goodbye,bye now,original,bye,2 -schedule_meeting,whether i can reserve a meeting room between 12 and 1 pm,parrot,book,1 -greeting,salutations,parrot,greet,4 -calendar_update,the staff meeting on march 1 at 10:00 am needs to be added to my calendar,original,resched,5 -greeting,"hello, friend",original,greet,4 -greeting,salutation,parrot,greet,4 -greeting,hey there,original,greet,4 -goodbye,adios!,original,bye,2 -how_busy,how busy is the cheesesteak at 7:00,lambada,avail,0 -cancel_reservation,can you cancel my reservation for ida at red lobster?,lambada,cancel,3 -goodbye,"great talk, thanks",original,bye,2 -greeting,salutations,parrot,greet,4 -greeting,what's new?,parrot,greet,4 -reminder_update,remind me to clean up my house,parrot,resched,5 -no,it's a false,lambada,cancel,3 -goodbye,buhbye,original,bye,2 -how_busy,how busy will the lunch at red robin be at 6,parrot,avail,0 -calendar,tell me what the event is on march 6th,parrot,avail,0 -greeting,salutations,parrot,greet,4 -yes,let's do that,parrot,book,1 -how_busy,ihop around 10 pm,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -no,no?,parrot,cancel,3 -greeting,"hello, how are you",original,greet,4 -yes,confirm,original,book,1 -greeting,what's going on,original,greet,4 -no,"please, no",original,cancel,3 -greeting,how is life?,parrot,greet,4 -yes,oh yes,original,book,1 -no,that's totally wrong!,original,cancel,3 -greeting,hello ai,parrot,greet,4 -no,invalid,original,cancel,3 -date,date tomorrow?,parrot,avail,0 -greeting,"hello, good day",lambada,greet,4 -date,i need to know what's the date,parrot,avail,0 -goodbye,sayonara,original,bye,2 -no,no way,original,cancel,3 -date,what month of year is it?,parrot,avail,0 -greeting,aho,parrot,greet,4 -yes,confirmed,original,book,1 -date,current date,original,avail,0 -no,is my falsehood?,parrot,cancel,3 -thank_you,thanks a million,original,bye,2 -yes,yeah,original,book,1 -goodbye,my way,parrot,bye,2 -no,negating,parrot,cancel,3 -no,negative,original,cancel,3 -goodbye,adios!,original,bye,2 -no,that's incorrect!,original,cancel,3 -schedule_meeting,can you arrange a meeting with matt for 3?,parrot,book,1 -yes,do that?,original,book,1 -goodbye,farewell!,original,bye,2 -calendar_update,remove dinner with john on friday,parrot,resched,5 -no,nothing,parrot,cancel,3 -greeting,greetings to you,original,greet,4 -thank_you,okay thank you,parrot,bye,2 -yes,definitely,original,book,1 -thank_you,gracias,original,bye,2 -cancel_reservation,can i cancel my reservation at 4pm at ruth's?,parrot,cancel,3 -how_busy,how busy is the cheese cake factory around 5pm,lambada,avail,0 -goodbye,good-bye,parrot,bye,2 -yes,i guess,parrot,book,1 -date,what date today?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -yes,ya,original,book,1 -greeting,hello good morning,parrot,greet,4 -calendar,what's my schedule for april 3rd?,parrot,avail,0 -how_busy,how long would the wait at golden gate steakhouse be?,parrot,avail,0 -goodbye,"syonara, ai device!",original,bye,2 -greeting,welcome,parrot,greet,4 -thank_you,thankyou,parrot,bye,2 -yes,accept,parrot,book,1 -thank_you,okay thank you,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -yes,i'm going to tell you tes,parrot,book,1 -how_busy,how long will i have to wait in chili's?,parrot,avail,0 -greeting,heyo,original,greet,4 -goodbye,goodbye!,original,bye,2 -how_busy,how long will it take to eat at the chai plant,parrot,avail,0 -schedule_meeting,how can i schedule a meeting?,parrot,book,1 -greeting,what's new,lambada,greet,4 -goodbye,adios,original,bye,2 -thank_you,merci beaucoup,original,bye,2 -reminder_update,not to forget to call my mother,parrot,resched,5 -greeting,why hello?,original,greet,4 -greeting,good day,original,greet,4 -yes,agreed,original,book,1 -goodbye,regards,original,bye,2 -yes,yes you are correct,original,book,1 -no,is my false assertion?,parrot,cancel,3 -no,negation,parrot,cancel,3 -greeting,ahoy there,lambada,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -goodbye,adios!,original,bye,2 -goodbye,later,original,bye,2 -how_busy,tell me the time to wait in the cheesecake factory before getting seated?,parrot,avail,0 -schedule_meeting,how many people can attend a meeting?,parrot,book,1 -no,most definitely false,parrot,cancel,3 -greeting,how's the life?,parrot,greet,4 -meeting_schedule,wanna meet with roger,parrot,avail,0 -goodbye,it was a pleasure to talk to you,lambada,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,i think you're right,parrot,book,1 -goodbye,goodbye,original,bye,2 -goodbye,for now,parrot,bye,2 -thank_you,your assistance is appreciated,parrot,bye,2 -greeting,how's life,original,greet,4 -cancel_reservation,abandon the reservation for dinner,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -date,what's my date today?,parrot,avail,0 -yes,yes,original,book,1 -goodbye,"thanks for the talk, bye",lambada,bye,2 -no,"please, no",original,cancel,3 -goodbye,good talking to you,lambada,bye,2 -meeting_schedule,can you list the meetings i have scheduled today for?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -greeting,what is new?,parrot,greet,4 -no,i think it's not possible,parrot,cancel,3 -no,FALSE,original,cancel,3 -calendar,pull up my calendar and tell me what i'm planning for march 30th,parrot,avail,0 -yes,confirm,original,book,1 -greeting,so how's everything?,parrot,greet,4 -meeting_schedule,is my meeting with the boss today?,lambada,avail,0 -thank_you,you've tried,parrot,bye,2 -yes,yes it's true,lambada,book,1 -no,invalid,original,cancel,3 -greeting,hiya,original,greet,4 -no,negating,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -no,that's absolutely false,parrot,cancel,3 -no,that isn't right,original,cancel,3 -no,that's absolutely false,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -thank_you,thank you!,original,bye,2 -meeting_schedule,do you know if i'm meeting dave today?,parrot,avail,0 -no,absolutely false,parrot,cancel,3 -yes,right,parrot,book,1 -yes,yay,lambada,book,1 -goodbye,"great talk, take it easy",original,bye,2 -date,you have the date?,parrot,avail,0 -schedule_meeting,is there a room available between 11 and 12 hours?,parrot,book,1 -no,hell nah,original,cancel,3 -goodbye,fairwell,original,bye,2 -goodbye,adios!,original,bye,2 -thank_you,thanks!,original,bye,2 -how_busy,are the restaurants full when you're eating dinner?,parrot,avail,0 -no,negatory?,parrot,cancel,3 -yes,positive,parrot,book,1 -greeting,wassup,original,greet,4 -thank_you,gracias,original,bye,2 -yes,facts,original,book,1 -greeting,hey,original,greet,4 -greeting,whats up?,parrot,greet,4 -thank_you,appreciate the assistance,parrot,bye,2 -thank_you,the best,parrot,bye,2 -how_busy,wait at the chocolate fountain long?,parrot,avail,0 -thank_you,thanks for responding,parrot,bye,2 -goodbye,catch you around,original,bye,2 -yes,and you're correct,parrot,book,1 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -calendar,let me know if there is any scheduled events for march 15th,lambada,avail,0 -yes,correct,original,book,1 -thank_you,gracias,original,bye,2 -yes,absolutely,original,book,1 -schedule_meeting,it must be set up for 6 pm on friday,parrot,book,1 -goodbye,as regards,parrot,bye,2 -yes,thats right,original,book,1 -thank_you,you answered,parrot,bye,2 -yes,definitely,original,book,1 -no,not happening,original,cancel,3 -greeting,hola,original,greet,4 -greeting,whats up?,parrot,greet,4 -reminder_update,remember to remind me later,parrot,resched,5 -greeting,how are you treated,lambada,greet,4 -goodbye,take it easy,lambada,bye,2 -yes,i'll say yes,parrot,book,1 -yes,absolutely!,original,book,1 -thank_you,nice,parrot,bye,2 -goodbye,great chat goodbye,lambada,bye,2 -date,in 7 days?,parrot,avail,0 -thank_you,thank you?,parrot,bye,2 -thank_you,many thank,original,bye,2 -how_busy,how busy is san tamu at 5 pm,lambada,avail,0 -no,invalid,original,cancel,3 -meeting_schedule,when's the meeting?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -greeting,hiya,original,greet,4 -no,i mean no,parrot,cancel,3 -goodbye,tootles,original,bye,2 -yes,exactly right,original,book,1 -yes,what's the truth of this,lambada,book,1 -thank_you,thanks again!,original,bye,2 -yes,"yup, that's true",original,book,1 -schedule_meeting,please schedule a meeting with debby,parrot,book,1 -yes,i think it's true,original,book,1 -no,it is no,original,cancel,3 -thank_you,well done,parrot,bye,2 -how_busy,how long will i wait at outback steakhouse,lambada,avail,0 -goodbye,buhbye now,lambada,bye,2 -thank_you,thanks!,original,bye,2 -date,what date will it be in the next week?,lambada,avail,0 -goodbye,tootles?,parrot,bye,2 -no,that's incorrect!,original,cancel,3 -no,naw,original,cancel,3 -yes,i believe it is true,parrot,book,1 -no,no,lambada,cancel,3 -greeting,hey how's life,original,greet,4 -thank_you,again thank you,parrot,bye,2 -goodbye,sayonara,original,bye,2 -how_busy,tell me how long it will be at tucson shrimp today?,parrot,avail,0 -date,what's the date now?,parrot,avail,0 -date,give me a date today?,parrot,avail,0 -greeting,bonjour,original,greet,4 -thank_you,good job,lambada,bye,2 -greeting,ahoy hoy,original,greet,4 -no,this statement is false,parrot,cancel,3 -thank_you,okay thank you,parrot,bye,2 -date,show me a calendar,original,avail,0 -yes,affirmative,original,book,1 -yes,accept,parrot,book,1 -thank_you,"good job, thanks",lambada,bye,2 -yes,"yes, that's true",lambada,book,1 -yes,TRUE,lambada,book,1 -thank_you,thanks for helping,original,bye,2 -yes,yeah yeah,lambada,book,1 -no,FALSE,lambada,cancel,3 -goodbye,good bye,original,bye,2 -no,i'd rather not answer,parrot,cancel,3 -no,that's not acceptable,parrot,cancel,3 -how_busy,how long is the wait at chipotle tonight?,parrot,avail,0 -date,please tell me the day?,parrot,avail,0 -goodbye,adios!,original,bye,2 -goodbye,cya later,original,bye,2 -greeting,hey how's ot,lambada,greet,4 -yes,affirmative,original,book,1 -calendar,if you want to see the calendar for february 24,parrot,avail,0 -greeting,how's the life?,parrot,greet,4 -no,so that's no,parrot,cancel,3 -greeting,hello there,original,greet,4 -greeting,how is the ai feeling,lambada,greet,4 -thank_you,thankyou,parrot,bye,2 -greeting,how is my day,original,greet,4 -yes,yes,original,book,1 -goodbye,regards,original,bye,2 -how_busy,how busy is applebees around lunch,lambada,avail,0 -how_busy,what is the wait time for a seat at i-go?,lambada,avail,0 -calendar,what's happening on may 3rd,original,avail,0 -goodbye,talk later,original,bye,2 -yes,it's true,original,book,1 -greeting,hello hello good morning,parrot,greet,4 -yes,i think you succeeded,parrot,book,1 -yes,accept,parrot,book,1 -how_busy,how long will it take to sit at chipotle steakhouse,parrot,avail,0 -no,i believe it's incorrect,lambada,cancel,3 -goodbye,afterward,parrot,bye,2 -yes,perfect,parrot,book,1 -yes,good,parrot,book,1 -date,current date,original,avail,0 -no,that's absolutely false,parrot,cancel,3 -no,"no, that's a lie",lambada,cancel,3 -goodbye,goodbye!,original,bye,2 -date,today?,parrot,avail,0 -no,naw,original,cancel,3 -thank_you,i'm thankful for my support,parrot,bye,2 -yes,"yes, that's true",lambada,book,1 -no,not true i think,parrot,cancel,3 -yes,is true,parrot,book,1 -no,"please, no",original,cancel,3 -greeting,salutations!,original,greet,4 -date,today?,parrot,avail,0 -thank_you,thanks for telling me,parrot,bye,2 -yes,good,parrot,book,1 -goodbye,buhbye,original,bye,2 -calendar,do you have appointments for march 2nd?,parrot,avail,0 -greeting,how is my situation?,parrot,greet,4 -how_busy,how long will i have to wait before i go to chili's,lambada,avail,0 -yes,yep,original,book,1 -no,it's a negation,parrot,cancel,3 -thank_you,i really thank you,original,bye,2 -yes,affirmative,original,book,1 -meeting_schedule,when is my meeting with jack for?,original,avail,0 -meeting_schedule,when are my meetings today?,lambada,avail,0 -goodbye,glad to talk,parrot,bye,2 -goodbye,buhbye now,lambada,bye,2 -yes,uh-huh,original,book,1 -thank_you,your answer impressed me,parrot,bye,2 -calendar,what's the tuesday calendar like?,parrot,avail,0 -no,negatory,original,cancel,3 -no,negating,parrot,cancel,3 -yes,"yes, that's it",original,book,1 -yes,a fact,parrot,book,1 -greeting,heyo,original,greet,4 -date,what's my date?,parrot,avail,0 -cancel_reservation,thank you for cancelling my oyster bar reservation,parrot,cancel,3 -yes,"yeah, that's true",lambada,book,1 -greeting,welcome,parrot,greet,4 -goodbye,buhbye,original,bye,2 -no,not correct,parrot,cancel,3 -date,tell me what the day is,parrot,avail,0 -calendar,read my calendar events,original,avail,0 -no,yes that's false,lambada,cancel,3 -yes,confirmed,original,book,1 -yes,do that?,original,book,1 -no,but it's false,parrot,cancel,3 -greeting,how you are,original,greet,4 -schedule_meeting,please arrange a meeting with john at 5pm,parrot,book,1 -greeting,"hello, ai",original,greet,4 -how_busy,when is rancho crowded?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -yes,oh yes,original,book,1 -yes,"yeah, that's it",lambada,book,1 -yes,okay,original,book,1 -goodbye,later gater,original,bye,2 -yes,huh,parrot,book,1 -yes,indeed,original,book,1 -yes,so it's true,parrot,book,1 -calendar,what's on my calendar for february 8th?,parrot,avail,0 -thank_you,you helped,parrot,bye,2 -no,negatory?,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -greeting,heyo,original,greet,4 -yes,yeah yeah,lambada,book,1 -schedule_meeting,i have to set up a meeting with john at 11 am,parrot,book,1 -calendar_update,remove events like the wedding of joe from my calendar,parrot,resched,5 -how_busy,will there be a lot of table available for mr joe's at 5,lambada,avail,0 -thank_you,youre a doll,original,bye,2 -yes,indeed,original,book,1 -yes,agreed,original,book,1 -yes,uh-huh,original,book,1 -how_busy,what's the wait time at macy's,lambada,avail,0 -goodbye,peace,original,bye,2 -calendar_update,please add my calendar for the meeting of the staff scheduled for march 1 2019 at 10 am please,parrot,resched,5 -date,now what's the day?,parrot,avail,0 -no,that's not right?,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -reminder_update,new reminder please,lambada,resched,5 -greeting,hola,original,greet,4 -no,no please,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -yes,absolutely!,original,book,1 -thank_you,merci beaucoup,original,bye,2 -thank_you,the best,parrot,bye,2 -thank_you,i appreciate it,original,bye,2 -thank_you,thanks for that response,original,bye,2 -goodbye,was nice to be able to talk with you,parrot,bye,2 -yes,i guess,parrot,book,1 -goodbye,goodbye,original,bye,2 -no,FALSE,original,cancel,3 -meeting_schedule,are there meetings for today?,parrot,avail,0 -greeting,heyo,original,greet,4 -greeting,how's it going?,parrot,greet,4 -thank_you,you answered,parrot,bye,2 -no,absolutely false,parrot,cancel,3 -goodbye,regards,original,bye,2 -goodbye,bye,original,bye,2 -goodbye,"no problem, goodbye",lambada,bye,2 -yes,indeed,original,book,1 -no,that's bad,parrot,cancel,3 -goodbye,good bye,original,bye,2 -greeting,hello,original,greet,4 -goodbye,"enjoy my day, bye",lambada,bye,2 -cancel_reservation,just cancel my reservation,lambada,cancel,3 -yes,my answer is yes,parrot,book,1 -no,that's untrue,parrot,cancel,3 -no,no no no,parrot,cancel,3 -calendar_update,put my final exams on the 9th from my calendar,lambada,resched,5 -reminder_update,make a reminder to pay my utilities,lambada,resched,5 -no,is my false assertion?,parrot,cancel,3 -no,certainly false,parrot,cancel,3 -yes,ok,original,book,1 -yes,facts,original,book,1 -yes,sure,original,book,1 -greeting,hiya!,original,greet,4 -no,erroneous,parrot,cancel,3 -yes,say positive,parrot,book,1 -yes,yup,original,book,1 -goodbye,later then,lambada,bye,2 -no,it's a no,original,cancel,3 -date,what's the date in 10 days,lambada,avail,0 -greeting,how are things?,parrot,greet,4 -no,that's wrong,original,cancel,3 -reminder_update,i have to get rid of the trash in an hour,parrot,resched,5 -goodbye,thanks for the talk take care,parrot,bye,2 -meeting_schedule,do you have any meetings with kim today?,parrot,avail,0 -yes,it's true,original,book,1 -no,i'd say no,original,cancel,3 -goodbye,goodbyes soon,parrot,bye,2 -thank_you,i appeciate it,parrot,bye,2 -greeting,salutation,parrot,greet,4 -thank_you,"oh, thanks",original,bye,2 -no,no?,parrot,cancel,3 -date,tell me what's the date for tomorrow,parrot,avail,0 -no,nay,original,cancel,3 -goodbye,bye!,original,bye,2 -goodbye,good see you,lambada,bye,2 -yes,huh,parrot,book,1 -no,negatory?,parrot,cancel,3 -thank_you,merci beaucoup,original,bye,2 -goodbye,goodbye for now,parrot,bye,2 -goodbye,good luck,lambada,bye,2 -no,that's certainly false,parrot,cancel,3 -yes,just right,parrot,book,1 -goodbye,talk to me later,parrot,bye,2 -thank_you,thanks!,original,bye,2 -no,negatory,original,cancel,3 -yes,oh-huh,parrot,book,1 -date,please tell me what's the date of tomorrow?,parrot,avail,0 -greeting,aho,parrot,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,sure,original,book,1 -schedule_meeting,schedule a meeting for me in ossining?,parrot,book,1 -no,no!,original,cancel,3 -date,do you know the date?,parrot,avail,0 -goodbye,later!,original,bye,2 -reminder_update,remind me later,original,resched,5 -goodbye,good conversation,parrot,bye,2 -goodbye,farewell!,original,bye,2 -cancel_reservation,at dinner i don't need a table,parrot,cancel,3 -greeting,how is it with you,lambada,greet,4 -goodbye,greetings,parrot,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -greeting,hi how are you doing,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -yes,positive,parrot,book,1 -how_busy,how long will the wait be at the red lobster at 5pm,parrot,avail,0 -thank_you,i'm grateful,original,bye,2 -calendar_update,clear my calendar for tomorrow,original,resched,5 -yes,roger that,original,book,1 -goodbye,i’m leaving-goodbye!,original,bye,2 -goodbye,thanks goodbye,parrot,bye,2 -how_busy,what is the wait like at olive garden?,lambada,avail,0 -cancel_reservation,can you tell the restaurant to cancel my reservation for dinner?,parrot,cancel,3 -thank_you,thanks,original,bye,2 -meeting_schedule,the meetings today,parrot,avail,0 -no,not right,parrot,cancel,3 -greeting,what's happening to you?,parrot,greet,4 -greeting,hello there ai,original,greet,4 -meeting_schedule,when are my meetings?,parrot,avail,0 -goodbye,later then,lambada,bye,2 -no,that is wrong,original,cancel,3 -yes,yeap,original,book,1 -how_busy,how long will it be to be seated at macaroni grill,lambada,avail,0 -yes,affirmitive,original,book,1 -greeting,how's everything,original,greet,4 -goodbye,go easy,parrot,bye,2 -how_busy,does this place get crowded at night?,parrot,avail,0 -date,give me a date,parrot,avail,0 -yes,uh-huh,original,book,1 -no,"no, that is fake",original,cancel,3 -goodbye,bye,original,bye,2 -greeting,hello there,original,greet,4 -meeting_schedule,when's the meeting today?,parrot,avail,0 -thank_you,i appeciate it,original,bye,2 -how_busy,tell me how long it will take to get a table at the red lobster restaurant?,parrot,avail,0 -cancel_reservation,i've got to cancel my reservations,parrot,cancel,3 -thank_you,thanks a lot,original,bye,2 -goodbye,sayonara,original,bye,2 -goodbye,goodnight,original,bye,2 -goodbye,i must run now,parrot,bye,2 -greeting,what is new?,parrot,greet,4 -reminder_update,is it possible to set a reminder to put clothes in the dryer?,parrot,resched,5 -thank_you,you've been amazing,lambada,bye,2 -thank_you,thank you!,original,bye,2 -greeting,how're you?,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -yes,i know,parrot,book,1 -thank_you,thanks for the update,lambada,bye,2 -yes,say positive,parrot,book,1 -yes,yeah,original,book,1 -thank_you,appreciate the help,original,bye,2 -greeting,hey what's up?,parrot,greet,4 -yes,yay,lambada,book,1 -thank_you,i want to thank you for your time,parrot,bye,2 -thank_you,again thank you,parrot,bye,2 -no,negative for sure,original,cancel,3 -calendar,give me an update on my schedule for march 1st,lambada,avail,0 -date,in 9 days?,parrot,avail,0 -reminder_update,remind me,original,resched,5 -thank_you,my gratitude,parrot,bye,2 -yes,yeap,original,book,1 -thank_you,"thanks, that's helpful",original,bye,2 -how_busy,how busy is mishawaka,lambada,avail,0 -goodbye,peace,original,bye,2 -how_busy,how busy is the cheese cake factory around 7pm,parrot,avail,0 -date,what day?,parrot,avail,0 -yes,i would say it's true,parrot,book,1 -no,not really,original,cancel,3 -thank_you,i'm really thankful,parrot,bye,2 -goodbye,i enjoyed our talk,parrot,bye,2 -goodbye,farewell,original,bye,2 -greeting,do you feel about acii?,parrot,greet,4 -no,"no, that's incorrect",original,cancel,3 -greeting,how's ai feeling?,parrot,greet,4 -goodbye,bye!,original,bye,2 -date,what'll it be tomorrow?,parrot,avail,0 -greeting,hey,original,greet,4 -date,what day is that?,parrot,avail,0 -yes,accepted,original,book,1 -greeting,"hello, ai",original,greet,4 -thank_you,nice,parrot,bye,2 -no,not true,original,cancel,3 -thank_you,thankyou,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -yes,say yes,lambada,book,1 -goodbye,bye now,original,bye,2 -thank_you,thank you for my meeting,lambada,bye,2 -how_busy,is there a burger or burger joint that tends to get busy between 6:30 and 7:30?,lambada,avail,0 -thank_you,okay thank you,parrot,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -how_busy,what's the best time to eat in olive garden?,parrot,avail,0 -no,that's bad,parrot,cancel,3 -goodbye,ill see you around,original,bye,2 -yes,it is true,original,book,1 -yes,positive,parrot,book,1 -schedule_meeting,reserve a meeting room for thursday at 3pm,lambada,book,1 -greeting,hey how's ot,lambada,greet,4 -goodbye,bye,original,bye,2 -calendar,please tell me what's on my calendar for march 25th,parrot,avail,0 -cancel_reservation,cancel my dinner reservation,lambada,cancel,3 -no,that's bad,parrot,cancel,3 -no,that's incorrect!,original,cancel,3 -no,that's wrong,original,cancel,3 -date,please date,parrot,avail,0 -goodbye,later!,original,bye,2 -reminder_update,please remind me to take out the garbage,parrot,resched,5 -thank_you,again thanks,parrot,bye,2 -how_busy,how busy is red lobster?,parrot,avail,0 -goodbye,the conversation was great,parrot,bye,2 -goodbye,great conversation,parrot,bye,2 -calendar_update,can you schedule an event called the nadine's baby shower on my calendar?,parrot,resched,5 -no,that's wrong,original,cancel,3 -goodbye,goodbye,original,bye,2 -no,absolutely not,original,cancel,3 -greeting,hello how's my life?,parrot,greet,4 -reminder_update,let me remember,parrot,resched,5 -no,that can't be true?,parrot,cancel,3 -date,what day?,parrot,avail,0 -no,i'll pass,original,cancel,3 -greeting,"hello, how are things",original,greet,4 -greeting,yo,original,greet,4 -yes,definitely yes,parrot,book,1 -no,i'm saying no,parrot,cancel,3 -reminder_update,have i forgotten?,parrot,resched,5 -meeting_schedule,time for today's meeting?,parrot,avail,0 -thank_you,i owe you one!,original,bye,2 -no,nope that's not true,parrot,cancel,3 -how_busy,please tell me how long the wait at olive garden is?,parrot,avail,0 -date,please date,parrot,avail,0 -no,i'm going to say no,lambada,cancel,3 -no,i believe it's false,parrot,cancel,3 -no,certainly not,original,cancel,3 -goodbye,tootles,original,bye,2 -yes,agreed,original,book,1 -no,not good,parrot,cancel,3 -thank_you,many thanks,original,bye,2 -yes,that's absolutely true,parrot,book,1 -no,no,lambada,cancel,3 -yes,certainly,parrot,book,1 -thank_you,thank you,original,bye,2 -yes,sure,original,book,1 -goodbye,later then,lambada,bye,2 -goodbye,see ya,original,bye,2 -goodbye,later gater,original,bye,2 -greeting,nice day,lambada,greet,4 -yes,huh,parrot,book,1 -greeting,hello,original,greet,4 -greeting,hiya,original,greet,4 -yes,is true,parrot,book,1 -greeting,welcome,parrot,greet,4 -meeting_schedule,are there meetings between 6 and 7 today?,parrot,avail,0 -calendar,tell me what's on my calendar for april 15th?,parrot,avail,0 -no,no!,original,cancel,3 -greeting,good morning,parrot,greet,4 -thank_you,many thanks,original,bye,2 -no,"nope, no this is false",lambada,cancel,3 -how_busy,check how busy the chili is at 10 o'clock in the morning,parrot,avail,0 -greeting,welcome,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -thank_you,"good job, thanks",lambada,bye,2 -thank_you,you're welcome,parrot,bye,2 -yes,sure,original,book,1 -date,i would like to know the date for tomorrow,parrot,avail,0 -no,no please,parrot,cancel,3 -goodbye,my way,parrot,bye,2 -calendar,tell me what my calendar looks like for march 23rd,parrot,avail,0 -no,erroneous,parrot,cancel,3 -goodbye,peace,original,bye,2 -thank_you,you've been great,parrot,bye,2 -date,please date,parrot,avail,0 -calendar_update,take off my dinner plans today,parrot,resched,5 -greeting,ahoy,lambada,greet,4 -cancel_reservation,can you cancel the reservation in the restaurant?,parrot,cancel,3 -yes,"yes, that's true",lambada,book,1 -goodbye,goodbye,original,bye,2 -how_busy,how long is the wait for tee time,lambada,avail,0 -greeting,aho,parrot,greet,4 -thank_you,glad you did it,parrot,bye,2 -calendar_update,delete all events on friday from my calendar ,parrot,resched,5 -goodbye,tootles,original,bye,2 -reminder_update,not to let me forget to do it later,parrot,resched,5 -thank_you,good job helping me,parrot,bye,2 -greeting,hello good day,parrot,greet,4 -cancel_reservation,if you can cancel my reservation for the lake at 9pm,parrot,cancel,3 -no,no?,parrot,cancel,3 -schedule_meeting,how do i book a meeting with you?,parrot,book,1 -reminder_update,give me a reminder when my car payment is due,parrot,resched,5 -how_busy,will i get a seat at chili at 5pm,lambada,avail,0 -goodbye,regards,original,bye,2 -yes,confirmed,original,book,1 -calendar,what's on january 1st?,parrot,avail,0 -greeting,hi,original,greet,4 -thank_you,thanks for helping me,original,bye,2 -meeting_schedule,when are my meetings?,parrot,avail,0 -yes,accept,parrot,book,1 -yes,confirmed,original,book,1 -thank_you,thank you,original,bye,2 -how_busy,in olive garden how long does it take to wait?,parrot,avail,0 -calendar,tell me what's in my calendar for november 6th?,parrot,avail,0 -greeting,salutations!,original,greet,4 -date,today?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -yes,absolutely,original,book,1 -thank_you,very grateful,parrot,bye,2 -no,erroneous,parrot,cancel,3 -no,that is actually false,original,cancel,3 -cancel_reservation,can you cancel my dinner reservation tomorrow?,parrot,cancel,3 -goodbye,adios,original,bye,2 -greeting,"hey, ai",original,greet,4 -goodbye,goodbye ai,parrot,bye,2 -greeting,are you doing good?,lambada,greet,4 -goodbye,bye now,original,bye,2 -thank_you,okay thank you,parrot,bye,2 -no,absolutely false,parrot,cancel,3 -yes,sure,original,book,1 -no,no way!,original,cancel,3 -goodbye,buhbye,original,bye,2 -cancel_reservation,i no longer need my reservation with carl in umami,parrot,cancel,3 -goodbye,fairwell,original,bye,2 -goodbye,i've enjoyed talking to you,parrot,bye,2 -goodbye,a good conversation,parrot,bye,2 -goodbye,regards,original,bye,2 -greeting,how's it going in the city,parrot,greet,4 -greeting,ahoy there,lambada,greet,4 -goodbye,goodbyes,parrot,bye,2 -yes,it's positive,parrot,book,1 -yes,yay,lambada,book,1 -yes,yup,original,book,1 -yes,sure,original,book,1 -goodbye,"thanks for chatting, bye",lambada,bye,2 -no,negative definitely,parrot,cancel,3 -meeting_schedule,what's my meeting plan?,parrot,avail,0 -goodbye,lovely conversation,parrot,bye,2 -no,that's untrue,parrot,cancel,3 -schedule_meeting,i'm going to need a meeting room on thursday at noon,lambada,book,1 -schedule_meeting,can you please schedule a meeting for tuesday evening at 6 pm?,lambada,book,1 -meeting_schedule,the meetings today,parrot,avail,0 -no,"no, that's a lie",lambada,cancel,3 -greeting,hey how's life,original,greet,4 -greeting,"hey, what's new",original,greet,4 -yes,yeap,original,book,1 -how_busy,what time do i have to wait for marinara?,parrot,avail,0 -thank_you,your assistance is appreciated,parrot,bye,2 -no,no that's not it,parrot,cancel,3 -meeting_schedule,are there meetings between 930 and 1030 today?,parrot,avail,0 -no,negating,parrot,cancel,3 -yes,right,parrot,book,1 -goodbye,bye-bye,original,bye,2 -no,certainly false,parrot,cancel,3 -goodbye,take it easy!,original,bye,2 -no,that's not true,original,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -thank_you,well done,parrot,bye,2 -yes,i think you got it,parrot,book,1 -thank_you,the best,parrot,bye,2 -cancel_reservation,remove my reservation for the dinner,parrot,cancel,3 -thank_you,thank you for the donation,lambada,bye,2 -reminder_update,i just put steaks on the grill remind me to check them at the right time,original,resched,5 -thank_you,gracias,original,bye,2 -no,nothing,parrot,cancel,3 -yes,that's correct,original,book,1 -yes,right,parrot,book,1 -no,that's actually false,parrot,cancel,3 -greeting,hello,original,greet,4 -how_busy,how busy is ihop?,parrot,avail,0 -yes,that checks out,original,book,1 -goodbye,nice talking to you,parrot,bye,2 -no,it's completely false,parrot,cancel,3 -date,what's the year?,parrot,avail,0 -how_busy,tell me how busy cheesecake factory will be around 6pm?,lambada,avail,0 -greeting,hello siri,original,greet,4 -goodbye,tootles,original,bye,2 -yes,not a lie,parrot,book,1 -goodbye,ai goodbye,original,bye,2 -goodbye,have a nice day?,lambada,bye,2 -no,nothing,parrot,cancel,3 -yes,positive,original,book,1 -no,nothing,parrot,cancel,3 -yes,obviously,parrot,book,1 -yes,"yes, please",parrot,book,1 -goodbye,i'll go,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -how_busy,i want to know how long the wait will be in olive garden at 5pm,parrot,avail,0 -goodbye,give me a talk soon,parrot,bye,2 -yes,yeap,original,book,1 -no,say negative,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -yes,"yes, that's correct",original,book,1 -how_busy,how busy is the restaurant around lunch time?,parrot,avail,0 -yes,of course,original,book,1 -greeting,have you been good??,parrot,greet,4 -no,it's not right,parrot,cancel,3 -greeting,hey bs,lambada,greet,4 -thank_you,"oh, thanks",original,bye,2 -greeting,how's my family going?,parrot,greet,4 -how_busy,tell me how busy mr joe is at 9 o'clock?,parrot,avail,0 -no,not right,parrot,cancel,3 -no,nope that's not it,original,cancel,3 -greeting,hiya!,original,greet,4 -no,no,lambada,cancel,3 -goodbye,later then,lambada,bye,2 -reminder_update,remind me,original,resched,5 -thank_you,many thanks,original,bye,2 -yes,indeed,original,book,1 -how_busy,how long will i have to wait before going to chili's?,parrot,avail,0 -greeting,good morning,parrot,greet,4 -yes,yeap,original,book,1 -greeting,hi,original,greet,4 -greeting,whats up?,parrot,greet,4 -no,that's false,original,cancel,3 -meeting_schedule,will you meet ann?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -greeting,wassup,original,greet,4 -yes,confirm,original,book,1 -goodbye,buhbye now,lambada,bye,2 -goodbye,later gater,original,bye,2 -yes,very true,original,book,1 -schedule_meeting,tell me if there's a meeting room available at 11 am,parrot,book,1 -greeting,hey hey!,original,greet,4 -goodbye,i'm leaving,parrot,bye,2 -how_busy,does cheese cake have a long wait at the restaurant?,lambada,avail,0 -date,when will it be?,parrot,avail,0 -reminder_update,remind me to write the food,parrot,resched,5 -date,how many days will it be before the next day?,parrot,avail,0 -thank_you,you're welcome,parrot,bye,2 -goodbye,goodbye,original,bye,2 -calendar_update,show the best ways to get rid of this incident?,parrot,resched,5 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,you good?,parrot,greet,4 -yes,right,parrot,book,1 -yes,certainly true,parrot,book,1 -goodbye,regards,original,bye,2 -no,nada,original,cancel,3 -no,that's a negatory,original,cancel,3 -yes,confirmed,original,book,1 -greeting,well hello,original,greet,4 -greeting,what's new,lambada,greet,4 -no,negative,original,cancel,3 -date,what year?,parrot,avail,0 -yes,approved,original,book,1 -no,nay,original,cancel,3 -date,what the day is?,parrot,avail,0 -date,what date is today?,original,avail,0 -thank_you,thanks!,original,bye,2 -greeting,what's happened?,parrot,greet,4 -thank_you,gracias,original,bye,2 -how_busy,how long will it take to sit in ihop,parrot,avail,0 -yes,yup,original,book,1 -meeting_schedule,tell me today's scheduled conference from noon onwards?,parrot,avail,0 -date,what day?,parrot,avail,0 -yes,it's indeed true,original,book,1 -thank_you,"awesome, thanks",original,bye,2 -yes,yes i can say yes,lambada,book,1 -greeting,bonjour,original,greet,4 -how_busy,is the restaurant crowded around 7pm?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -how_busy,how long will the line at chili's be around 7pm,parrot,avail,0 -calendar,what is happening on 15 march,parrot,avail,0 -cancel_reservation,cancel the reservation i made for 8pm at black rock,parrot,cancel,3 -yes,yay,lambada,book,1 -goodbye,later,original,bye,2 -meeting_schedule,give me the schedule of my meetings?,parrot,avail,0 -calendar_update,i have an appointment i have to cancel for march 18,parrot,resched,5 -thank_you,"great, thanks!",original,bye,2 -greeting,whats up?,parrot,greet,4 -calendar,is january 1st in my calendar?,parrot,avail,0 -thank_you,i appreciate your time,lambada,bye,2 -thank_you,you helped,parrot,bye,2 -yes,"correct, that's true",original,book,1 -greeting,bonjour,original,greet,4 -how_busy,how busy is the tequila bar at 1pm?,parrot,avail,0 -yes,yeap,original,book,1 -goodbye,sayonara,original,bye,2 -thank_you,appreciated,original,bye,2 -yes,absolutely,original,book,1 -yes,the answer is yes,original,book,1 -goodbye,bye bye,lambada,bye,2 -goodbye,nice chat today,lambada,bye,2 -no,nay,original,cancel,3 -goodbye,goodbyes,parrot,bye,2 -goodbye,go easy,parrot,bye,2 -greeting,hello bs,parrot,greet,4 -greeting,hey there,original,greet,4 -no,this is not true it's false,parrot,cancel,3 -how_busy,it'll take how long to dine at the chai plant,parrot,avail,0 -yes,"yup, that's true",original,book,1 -thank_you,thank you for my response,lambada,bye,2 -no,thats a negative,original,cancel,3 -date,list the next month?,parrot,avail,0 -no,not right now,original,cancel,3 -goodbye,talk to you soon,parrot,bye,2 -no,don't like that,parrot,cancel,3 -goodbye,for now,parrot,bye,2 -thank_you,thanks for trying,original,bye,2 -greeting,hola,original,greet,4 -goodbye,later gator!,original,bye,2 -greeting,hello,original,greet,4 -greeting,hola,original,greet,4 -goodbye,good luck,lambada,bye,2 -no,it seems wrong,parrot,cancel,3 -greeting,hello,original,greet,4 -yes,that's right,original,book,1 -goodbye,goodbye ai,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -calendar,read my calendar,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -yes,accept,parrot,book,1 -no,not good,parrot,cancel,3 -no,negative,original,cancel,3 -yes,yeah yeah,lambada,book,1 -thank_you,appreciated,original,bye,2 -date,which date is next?,parrot,avail,0 -thank_you,you're welcome,parrot,bye,2 -date,what's today?,parrot,avail,0 -reminder_update,remind me to take my medicine,lambada,resched,5 -date,i need to know the date please,parrot,avail,0 -yes,"yes, please",original,book,1 -goodbye,regards,original,bye,2 -greeting,hello good day,parrot,greet,4 -date,calender says tomorrow is,original,avail,0 -goodbye,"later, goodbye",lambada,bye,2 -greeting,how've you been?,parrot,greet,4 -no,not happening,original,cancel,3 -goodbye,you're done,parrot,bye,2 -greeting,good morning,parrot,greet,4 -goodbye,bye,original,bye,2 -date,please give me a schedule,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -yes,approved,original,book,1 -greeting,"hello, good day",lambada,greet,4 -yes,"yes, that's correct",original,book,1 -greeting,hello there!,original,greet,4 -no,so that's no,parrot,cancel,3 -how_busy,how long will the wait for an ohio dinner at red lobster,parrot,avail,0 -goodbye,fairwell,original,bye,2 -yes,yup,original,book,1 -goodbye,good speaking to you,original,bye,2 -how_busy,how busy is the orchids at 7?,parrot,avail,0 -no,the statement is false,original,cancel,3 -no,naw,parrot,cancel,3 -how_busy,how long will it take me to sit at the red lobster?,parrot,avail,0 -calendar,do you have any events on my calendar for march 23rd?,parrot,avail,0 -calendar,display my calendar,lambada,avail,0 -yes,okay,original,book,1 -yes,okay,original,book,1 -yes,agreed,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,certainly,parrot,book,1 -greeting,ahoy,lambada,greet,4 -no,that's incorrect,original,cancel,3 -yes,it's true,original,book,1 -thank_you,"oh, thanks",original,bye,2 -no,invalid,original,cancel,3 -greeting,aloha,original,greet,4 -schedule_meeting,tell me how i can schedule a meeting?,original,book,1 -yes,it's positive,parrot,book,1 -goodbye,tootles,original,bye,2 -goodbye,bye,original,bye,2 -how_busy,how long will the wait for a table in one of the best pizza joints be?,parrot,avail,0 -no,no?,parrot,cancel,3 -yes,good yes,lambada,book,1 -greeting,yo,original,greet,4 -cancel_reservation,can you cancel the reservation at scallop bar?,parrot,cancel,3 -goodbye,bye-bye,original,bye,2 -yes,huh,parrot,book,1 -goodbye,fairwell?,parrot,bye,2 -meeting_schedule,what's my schedule today?,parrot,avail,0 -goodbye,later!,original,bye,2 -no,i would rather not,lambada,cancel,3 -goodbye,bye,original,bye,2 -thank_you,thank you,original,bye,2 -thank_you,i'm glad you laughed,parrot,bye,2 -how_busy,can i expect to be busy at 6?,parrot,avail,0 -goodbye,have fun?,lambada,bye,2 -date,current day,parrot,avail,0 -no,negative,original,cancel,3 -date,can you tell me the details of my date,parrot,avail,0 -greeting,hello there ai,original,greet,4 -date,current date,original,avail,0 -yes,good yes,lambada,book,1 -goodbye,for now,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -yes,affirmative,original,book,1 -date,list the words for tomorrow?,parrot,avail,0 -yes,yup,original,book,1 -greeting,how it goes?,parrot,greet,4 -no,no?,parrot,cancel,3 -yes,that is right,original,book,1 -cancel_reservation,how do i cancel a steakhouse reservation?,parrot,cancel,3 -goodbye,later gator!,original,bye,2 -goodbye,later!,original,bye,2 -yes,approved,original,book,1 -meeting_schedule,i want to know when my meeting is with dan,parrot,avail,0 -no,no!,original,cancel,3 -thank_you,appreciated,original,bye,2 -cancel_reservation,cancel my reservation for dinner this friday please,parrot,cancel,3 -goodbye,i'd like to talk to you again,parrot,bye,2 -calendar_update,please add an event to my calendar for september 1,parrot,resched,5 -yes,yay,lambada,book,1 -how_busy,how busy will the olive garden be at 7 pm,parrot,avail,0 -yes,great,original,book,1 -goodbye,i'll be gone,parrot,bye,2 -thank_you,thanks,original,bye,2 -date,current day,parrot,avail,0 -yes,seems true,parrot,book,1 -no,no please,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -yes,that'd be great,parrot,book,1 -goodbye,i'm going,parrot,bye,2 -thank_you,thank you for helping,parrot,bye,2 -reminder_update,remind me later,original,resched,5 -no,you got that wrong,original,cancel,3 -reminder_update,remember the meeting tomorrow,parrot,resched,5 -greeting,hello bs,parrot,greet,4 -yes,certainly,parrot,book,1 -goodbye,nice to see you bye,parrot,bye,2 -date,today?,parrot,avail,0 -yes,yes,original,book,1 -goodbye,i enjoy our chat,lambada,bye,2 -goodbye,fairwell?,parrot,bye,2 -no,ill pass,original,cancel,3 -meeting_schedule,check my schedule for today,parrot,avail,0 -greeting,salutations!,original,greet,4 -no,hell nah,original,cancel,3 -greeting,all right with you?,parrot,greet,4 -how_busy,how busy will iman be at 6 pm?,parrot,avail,0 -greeting,"wake up, ai",original,greet,4 -calendar,what do you have planned for february 12th?,parrot,avail,0 -yes,all right,original,book,1 -greeting,give me the details,parrot,greet,4 -calendar_update,remove the june 7 event called the symphony from my calendar,parrot,resched,5 -goodbye,my friend,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -thank_you,thanks for the assist,original,bye,2 -date,i need to know the date of today?,parrot,avail,0 -yes,approved,original,book,1 -yes,affirmitive,original,book,1 -meeting_schedule,tell me the meeting schdule please?,original,avail,0 -yes,yeah yeah,lambada,book,1 -goodbye,afterward,parrot,bye,2 -yes,"yes, that is accurate",original,book,1 -no,not right so,parrot,cancel,3 -how_busy,is the immaculate house busy at 10 pm?,lambada,avail,0 -greeting,please tell me how you were?,parrot,greet,4 -thank_you,i appeciate it,original,bye,2 -greeting,welcome,parrot,greet,4 -goodbye,tootles,original,bye,2 -yes,yes,original,book,1 -no,please no,parrot,cancel,3 -no,not good,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -goodbye,sayonara,original,bye,2 -thank_you,nice,parrot,bye,2 -greeting,salutations,parrot,greet,4 -no,"please, no",original,cancel,3 -thank_you,appreciate the support,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -no,it's so bad,parrot,cancel,3 -yes,absolutely!,original,book,1 -goodbye,i'll go,parrot,bye,2 -yes,"yes, that's what i want",original,book,1 -date,today?,parrot,avail,0 -yes,great,original,book,1 -greeting,aho,parrot,greet,4 -schedule_meeting,can you schedule a meeting with katie at 11am?,parrot,book,1 -no,that's negative,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -goodbye,buhbye,original,bye,2 -no,it seems like a no,lambada,cancel,3 -no,that's wrong,original,cancel,3 -yes,uh huh,original,book,1 -yes,truthful is my answer,lambada,book,1 -how_busy,how busy is georgios around 11,lambada,avail,0 -goodbye,go easy,parrot,bye,2 -cancel_reservation,i booked at the pizza hut under the name of leia roberts and i want to cancel this reservation,parrot,cancel,3 -goodbye,goodbye ai,parrot,bye,2 -thank_you,you're welcome,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -reminder_update,remember to feed cat tonight at 6 pm,parrot,resched,5 -greeting,hi,original,greet,4 -no,that isn't correct,original,cancel,3 -goodbye,adios,original,bye,2 -no,i think it's false,parrot,cancel,3 -greeting,how's everything,original,greet,4 -how_busy,how busy is that olive garden?,parrot,avail,0 -yes,positive,original,book,1 -thank_you,i really appreciate it,parrot,bye,2 -thank_you,that's all i need,parrot,bye,2 -greeting,yo,original,greet,4 -no,that’s incorrect,original,cancel,3 -thank_you,oh sweet thanks,original,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -yes,obviously,parrot,book,1 -greeting,what's up,original,greet,4 -greeting,how's it hanging,original,greet,4 -yes,yep,original,book,1 -thank_you,thank you,original,bye,2 -thank_you,thanks for the information,parrot,bye,2 -goodbye,good call,parrot,bye,2 -how_busy,how busy is jiro at noon?,parrot,avail,0 -yes,it'll be yes,parrot,book,1 -how_busy,tell me the wait time at the cheese cake factory?,parrot,avail,0 -greeting,hello,original,greet,4 -greeting,hey there!,original,greet,4 -date,is the date?,parrot,avail,0 -goodbye,later then,lambada,bye,2 -no,no,lambada,cancel,3 -yes,great,original,book,1 -how_busy,is ihop busy around 6pm?,lambada,avail,0 -goodbye,sayonara,original,bye,2 -greeting,how are things,original,greet,4 -greeting,is everything okay today?,parrot,greet,4 -yes,"yes, that is right",original,book,1 -schedule_meeting,a meeting is needed,parrot,book,1 -no,no please,parrot,cancel,3 -no,naw,original,cancel,3 -cancel_reservation,at dinner i don't need the table,parrot,cancel,3 -no,no please,parrot,cancel,3 -yes,accept,parrot,book,1 -how_busy,how busy will chili be at 6pm,parrot,avail,0 -yes,definitely,original,book,1 -yes,yes please,original,book,1 -goodbye,goodbye!,original,bye,2 -how_busy,tell me how busy the olive garden is,parrot,avail,0 -calendar_update,remove jess's party from my calendar,original,resched,5 -goodbye,bye bye!,original,bye,2 -date,what the day?,parrot,avail,0 -thank_you,good job,lambada,bye,2 -goodbye,have fun?,lambada,bye,2 -thank_you,a million thanks,parrot,bye,2 -how_busy,how busy is olive garden at 5:00,lambada,avail,0 -greeting,whats new,lambada,greet,4 -thank_you,good job,lambada,bye,2 -yes,sure thing,original,book,1 -greeting,hello ai,parrot,greet,4 -no,FALSE,lambada,cancel,3 -no,no that's not correct,parrot,cancel,3 -greeting,how's idy?,parrot,greet,4 -yes,"yeah, that's right",original,book,1 -yes,facts,original,book,1 -calendar,i want my schedule for march 2nd,parrot,avail,0 -yes,ok,original,book,1 -how_busy,how long can i expect to wait for a table in the restaurant,parrot,avail,0 -yes,oh-huh,parrot,book,1 -thank_you,thanks again,original,bye,2 -thank_you,special thanks to you ,parrot,bye,2 -no,is a lie?,parrot,cancel,3 -greeting,hola!,original,greet,4 -how_busy,how many people will be in the restaurant at 5pm?,parrot,avail,0 -how_busy,tell me the time to wait in a chinese restaurant?,parrot,avail,0 -goodbye,the conversation was very enjoyable,parrot,bye,2 -how_busy,how busy is a traditional chinese restaurant right now?,parrot,avail,0 -goodbye,goodbye soon,lambada,bye,2 -yes,ya,original,book,1 -calendar,what do you have on my calendar today?,parrot,avail,0 -how_busy,how busy is georgia at 12?,parrot,avail,0 -yes,agreed,original,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -thank_you,thank you?,parrot,bye,2 -greeting,hello what's going on,parrot,greet,4 -meeting_schedule,have meetings between 10 and 11 today?,parrot,avail,0 -thank_you,i want to thank you for my help,lambada,bye,2 -goodbye,goodbye then,parrot,bye,2 -thank_you,the best,parrot,bye,2 -greeting,how's it going right now?,parrot,greet,4 -yes,all right,original,book,1 -no,that's not correct,original,cancel,3 -goodbye,sayonara,original,bye,2 -yes,yes,original,book,1 -greeting,whats up?,parrot,greet,4 -goodbye,for now,parrot,bye,2 -no,nope that's not right,parrot,cancel,3 -calendar,do you have anything on my calendar for april 15th?,parrot,avail,0 -thank_you,merci beaucoup,original,bye,2 -thank_you,thank you for doing it i appreciate it,parrot,bye,2 -no,negating,parrot,cancel,3 -greeting,how's everything?,parrot,greet,4 -no,that's completely false,original,cancel,3 -yes,"yep, that's correct",lambada,book,1 -yes,it's true that's what you said,parrot,book,1 -thank_you,thanks for answering,parrot,bye,2 -thank_you,appreciated,original,bye,2 -thank_you,my thanks,parrot,bye,2 -no,that’s incorrect,original,cancel,3 -thank_you,your help is appreciated,original,bye,2 -calendar_update,stop this thing today,parrot,resched,5 -goodbye,enjoy my day goodbye,parrot,bye,2 -yes,i guess,parrot,book,1 -calendar,check my calendar,parrot,avail,0 -yes,"yes, please",original,book,1 -meeting_schedule,how many meetings do i have between 10 and 3?,parrot,avail,0 -greeting,hello bs,parrot,greet,4 -how_busy,is cheesecake factory busy at 7 am?,lambada,avail,0 -greeting,hows are ya,original,greet,4 -goodbye,"great talk, thanks",original,bye,2 -date,what date?,parrot,avail,0 -greeting,how is life?,parrot,greet,4 -no,not correct,parrot,cancel,3 -no,it's no,parrot,cancel,3 -goodbye,tootles,original,bye,2 -goodbye,very nice conversation,parrot,bye,2 -no,negative,original,cancel,3 -no,not good,parrot,cancel,3 -no,nope,original,cancel,3 -calendar,tell me what's on my calendar for march 21st?,parrot,avail,0 -greeting,hey hey!,original,greet,4 -thank_you,thanks!,original,bye,2 -goodbye,the hell i'm out,parrot,bye,2 -date,is the date?,parrot,avail,0 -no,no?,parrot,cancel,3 -thank_you,you've been great,parrot,bye,2 -greeting,hiya,original,greet,4 -thank_you,your assistance is appreciated,parrot,bye,2 -yes,affirmative,original,book,1 -goodbye,great chat goodbye,lambada,bye,2 -yes,correct,original,book,1 -yes,"yeah, i want to know that's right",lambada,book,1 -goodbye,goodnight,original,bye,2 -how_busy,how busy will dr joe be at 5?,parrot,avail,0 -meeting_schedule,when is my meeting with robin?,parrot,avail,0 -greeting,whats new,lambada,greet,4 -calendar,what's on my calendar for august 7?,parrot,avail,0 -cancel_reservation,i booked chris at tony's please cancel it,parrot,cancel,3 -goodbye,good bye,original,bye,2 -greeting,yo,original,greet,4 -yes,that is a fact,original,book,1 -how_busy,how busy is zippys around 10,lambada,avail,0 -goodbye,good night,original,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -yes,so it's true,parrot,book,1 -no,negating,parrot,cancel,3 -reminder_update,please remind me again,parrot,resched,5 -calendar_update,can you add exercise to my calendar?,parrot,resched,5 -how_busy,is olive garden busy at lunch?,lambada,avail,0 -yes,oh-huh,parrot,book,1 -goodbye,regards,original,bye,2 -greeting,heller,original,greet,4 -yes,it's a fact,parrot,book,1 -yes,roger that,original,book,1 -greeting,"hello, ai",original,greet,4 -yes,confirmed,original,book,1 -how_busy,how long will the wait at the red lobster last?,parrot,avail,0 -meeting_schedule,is my meeting scheduled?,parrot,avail,0 -goodbye,regards,original,bye,2 -date,current day,parrot,avail,0 -calendar_update,remove my date with liz from my calendar on april 1,parrot,resched,5 -how_busy,can you tell me how busy it is at 6?,parrot,avail,0 -reminder_update,make a reminder to book a flight to the usa,parrot,resched,5 -goodbye,greetings,parrot,bye,2 -greeting,bonjour,original,greet,4 -goodbye,goodbye,original,bye,2 -no,and i say negative,parrot,cancel,3 -how_busy,wait for red lobster?,parrot,avail,0 -greeting,hello there,original,greet,4 -goodbye,afterward,parrot,bye,2 -no,the wrong answer,parrot,cancel,3 -no,say negative,parrot,cancel,3 -reminder_update,i need to remind you,parrot,resched,5 -yes,say positive,parrot,book,1 -yes,yeah yeah,lambada,book,1 -goodbye,this was a great conversation,original,bye,2 -goodbye,greetings,parrot,bye,2 -how_busy,can you tell me how busy a red lobster is at 6?,parrot,avail,0 -greeting,nice day,lambada,greet,4 -date,calender says tomorrow is,original,avail,0 -goodbye,i’m leaving-goodbye!,original,bye,2 -how_busy,would you know how busy chili's is at 7 pm,lambada,avail,0 -yes,that makes sense,lambada,book,1 -how_busy,how busy red robin will be?,parrot,avail,0 -yes,huh,parrot,book,1 -greeting,hi there,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,i want it,parrot,book,1 -no,invalid,original,cancel,3 -no,absolutely false,parrot,cancel,3 -no,naw,parrot,cancel,3 -goodbye,see ya!,original,bye,2 -date,what's the day now,parrot,avail,0 -no,i'm afraid not,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -greeting,how's life going?,parrot,greet,4 -goodbye,goodbye now,parrot,bye,2 -thank_you,merci beaucoup,original,bye,2 -yes,obviously,parrot,book,1 -no,that's absolutely false,parrot,cancel,3 -greeting,hey it's up,lambada,greet,4 -date,date tomorrow?,parrot,avail,0 -calendar,tell me what's on the agenda?,lambada,avail,0 -meeting_schedule,do i have any meetings on my calendar today?,original,avail,0 -goodbye,goodbye ai,parrot,bye,2 -no,FALSE,original,cancel,3 -meeting_schedule,is a meeting with ruth on my schedule today?,original,avail,0 -meeting_schedule,what meetings do i have today between noon and one?,original,avail,0 -greeting,how're you?,parrot,greet,4 -greeting,how's ai doing today?,parrot,greet,4 -no,no it's not good,parrot,cancel,3 -how_busy,show me the wait times at the restaurant?,parrot,avail,0 -yes,"yep, that's correct",lambada,book,1 -cancel_reservation,i no longer want my reservation for 5 at the loft cancel it please,original,cancel,3 -no,not that,original,cancel,3 -no,no thank you,original,cancel,3 -date,a year?,parrot,avail,0 -cancel_reservation,please cancel the reservation at zephers for me and joe right now,parrot,cancel,3 -goodbye,good speaking to you,original,bye,2 -no,that is no longer valid,lambada,cancel,3 -greeting,what's my feeling?,parrot,greet,4 -reminder_update,create a reminder,original,resched,5 -date,what's today?,parrot,avail,0 -no,hell nah,original,cancel,3 -how_busy,tell me how busy regina is?,parrot,avail,0 -greeting,"hello, friend",original,greet,4 -no,FALSE,original,cancel,3 -goodbye,goodbye to you,original,bye,2 -goodbye,later then,lambada,bye,2 -calendar,is there a black friday note on the calendar?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,is imbrosia busy at 7?,parrot,avail,0 -no,certainly not,original,cancel,3 -greeting,how's my doing?,parrot,greet,4 -yes,affirmitive,original,book,1 -reminder_update,add a note,parrot,resched,5 -no,nothing,parrot,cancel,3 -greeting,hello how are you,lambada,greet,4 -yes,affirmitive,original,book,1 -yes,accept,parrot,book,1 -date,what day?,parrot,avail,0 -no,not good idea,parrot,cancel,3 -greeting,how's my feeling?,parrot,greet,4 -greeting,hi,original,greet,4 -how_busy,is the restaurant crowded between 7 and 8 pm?,lambada,avail,0 -date,date tomorrow?,parrot,avail,0 -no,negatory,original,cancel,3 -how_busy,the coffee shop is usually busy?,parrot,avail,0 -how_busy,how long is the wait in the chinese restaurant right now?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -no,the negator,parrot,cancel,3 -how_busy,how long can i wait at the pizza shop?,parrot,avail,0 -calendar,is bowling on my calendar now?,parrot,avail,0 -date,what's the next month?,parrot,avail,0 -yes,very true,original,book,1 -date,what today?,parrot,avail,0 -no,nada,original,cancel,3 -date,i need a date,parrot,avail,0 -no,negative,original,cancel,3 -greeting,good morning,parrot,greet,4 -goodbye,adios,original,bye,2 -goodbye,sayonara,original,bye,2 -greeting,bonjour,original,greet,4 -greeting,what's new here?,parrot,greet,4 -yes,certainly true,parrot,book,1 -goodbye,good speaking to you,original,bye,2 -no,negative,original,cancel,3 -thank_you,merci beaucoup,original,bye,2 -goodbye,as regards,parrot,bye,2 -thank_you,"awesome, thanks",original,bye,2 -greeting,nice day,lambada,greet,4 -yes,right,parrot,book,1 -yes,"yes, that's right",original,book,1 -no,false sure,parrot,cancel,3 -how_busy,how busy is the cheesecake factory,lambada,avail,0 -calendar,what's on my calendar for 1st march?,parrot,avail,0 -goodbye,i'll go,parrot,bye,2 -goodbye,this conversation was good,parrot,bye,2 -schedule_meeting,what number of people can go to meetings,parrot,book,1 -date,can you give me a date for today?,parrot,avail,0 -cancel_reservation,i don't need to make a reservation anymore,parrot,cancel,3 -date,what's the day now?,parrot,avail,0 -greeting,hello what's happening,parrot,greet,4 -goodbye,sign off,parrot,bye,2 -yes,yeap,original,book,1 -date,what will the day be?,lambada,avail,0 -how_busy,how long will the wait be at this pizza shop?,parrot,avail,0 -yes,just right,parrot,book,1 -goodbye,and then goodbye,parrot,bye,2 -how_busy,what are the chances that i will be able to eat at a regular restaurant at 6:00 pm?,lambada,avail,0 -greeting,you good?,parrot,greet,4 -meeting_schedule,do i have many meetings between 2 and 4?,parrot,avail,0 -goodbye,tata for now,original,bye,2 -greeting,how're you?,parrot,greet,4 -yes,correct,original,book,1 -thank_you,thanks!,original,bye,2 -greeting,how ife treated you?,parrot,greet,4 -yes,positive,parrot,book,1 -goodbye,later thanks for talking,parrot,bye,2 -calendar,check my calendar for me please,parrot,avail,0 -goodbye,regards,original,bye,2 -no,you can't make it true,parrot,cancel,3 -no,what isn't true?,parrot,cancel,3 -yes,oh yes,original,book,1 -yes,that's absolutely true,parrot,book,1 -greeting,what am i feeling now?,parrot,greet,4 -no,it's very wrong,parrot,cancel,3 -yes,a fact,parrot,book,1 -no,negatory,original,cancel,3 -no,nope that's not true,parrot,cancel,3 -greeting,heyo,original,greet,4 -reminder_update,i need to remember,parrot,resched,5 -yes,approved,original,book,1 -date,what the day is?,parrot,avail,0 -no,not happening,original,cancel,3 -yes,certainly,parrot,book,1 -goodbye,greetings,parrot,bye,2 -how_busy,how busy is red robin around 7 pm,lambada,avail,0 -yes,ok,original,book,1 -goodbye,it was a pleasure talking to you,original,bye,2 -yes,right,parrot,book,1 -no,nothing,parrot,cancel,3 -no,not really,original,cancel,3 -how_busy,wait time in a restaurant,parrot,avail,0 -thank_you,thank you for the information,original,bye,2 -date,what day are we?,parrot,avail,0 -no,nothing,parrot,cancel,3 -no,nothing,parrot,cancel,3 -yes,obviously,parrot,book,1 -cancel_reservation,just cancel my reservation,lambada,cancel,3 -greeting,ahoy,lambada,greet,4 -greeting,good morning,parrot,greet,4 -how_busy,is ian busy around five?,parrot,avail,0 -no,is my false statement?,parrot,cancel,3 -goodbye,adios!,original,bye,2 -how_busy,how busy is the restaurant around 10am,lambada,avail,0 -no,invalid,original,cancel,3 -yes,all right,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -calendar_update,remove dinner with john on friday,parrot,resched,5 -thank_you,and i'd like to thank you,parrot,bye,2 -goodbye,adios ai,original,bye,2 -no,negative for sure,original,cancel,3 -reminder_update,can you set a reminder for the current time to tommorow?,parrot,resched,5 -date,a year?,parrot,avail,0 -no,no!,original,cancel,3 -yes,10-Apr,original,book,1 -no,negatory,original,cancel,3 -greeting,salutations!,original,greet,4 -reminder_update,how about a reminder,original,resched,5 -calendar_update,please add some events to my calendar,parrot,resched,5 -no,no way!,original,cancel,3 -how_busy,how busy is ihop currently?,parrot,avail,0 -greeting,do you feel?,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -goodbye,maybe i'll have to talk to you later,parrot,bye,2 -greeting,hiya!,original,greet,4 -greeting,how's ai doing?,parrot,greet,4 -thank_you,i owe you one,original,bye,2 -yes,"yes, that's affirmative",original,book,1 -goodbye,bye,original,bye,2 -reminder_update,give me a reminder to take my meds?,parrot,resched,5 -yes,it's true yes,parrot,book,1 -goodbye,nice talk,lambada,bye,2 -goodbye,good talk,parrot,bye,2 -greeting,hey what's up?,parrot,greet,4 -yes,"correct, that's true",original,book,1 -yes,"yes, please",parrot,book,1 -yes,exactly right,original,book,1 -greeting,hi there,original,greet,4 -greeting,salutation,parrot,greet,4 -yes,10-Apr,original,book,1 -yes,TRUE,original,book,1 -how_busy,the wait at the olive garden?,parrot,avail,0 -no,thanks no,parrot,cancel,3 -calendar,search my calendar for birthdays,parrot,avail,0 -no,invalid,original,cancel,3 -how_busy,how long will i have to wait at the restaurant,lambada,avail,0 -yes,it's logical,parrot,book,1 -yes,it's logical,parrot,book,1 -greeting,how's my feeling?,parrot,greet,4 -goodbye,give me a chat soon,lambada,bye,2 -no,nope,original,cancel,3 -no,FALSE,original,cancel,3 -thank_you,your assistance is appreciated,parrot,bye,2 -no,nope,original,cancel,3 -how_busy,how busy is chili around 7pm,parrot,avail,0 -yes,TRUE,lambada,book,1 -no,negatory?,parrot,cancel,3 -meeting_schedule,have you had any meetings with jason today?,parrot,avail,0 -no,FALSE,original,cancel,3 -yes,it's true,original,book,1 -greeting,"hey, ai",original,greet,4 -yes,facts,original,book,1 -greeting,well hello,original,greet,4 -no,no,lambada,cancel,3 -how_busy,please tell me what it is like in olive garden right now,parrot,avail,0 -how_busy,how long do i have to wait for mr joes?,parrot,avail,0 -reminder_update,i need you to remind me,parrot,resched,5 -calendar,let me read all my appointments on 15,parrot,avail,0 -no,but it's not true,parrot,cancel,3 -schedule_meeting,can i meet with steve?,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -yes,confirm,original,book,1 -no,that's incorrect,original,cancel,3 -yes,indeed,original,book,1 -yes,that's right,original,book,1 -yes,approved,original,book,1 -how_busy,can i expect the wait to be long at chocolate fountains?,lambada,avail,0 -cancel_reservation,please cancel my reservation for lunch,parrot,cancel,3 -no,no!,original,cancel,3 -yes,ok,original,book,1 -yes,"true, most definitely",original,book,1 -no,i disagree,parrot,cancel,3 -calendar,is the friday marathon on my calendar?,parrot,avail,0 -yes,perfect,parrot,book,1 -yes,i'm sure it's true,parrot,book,1 -no,negation,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -thank_you,"great, thanks!",original,bye,2 -calendar_update,delete events on june 1,lambada,resched,5 -how_busy,how busy will the restaurant be at 8pm,parrot,avail,0 -greeting,hey hey!,original,greet,4 -how_busy,do you know how busy it is at chili's at 5pm?,parrot,avail,0 -greeting,"wake up, ai",original,greet,4 -thank_you,appreciated,original,bye,2 -greeting,whats up?,parrot,greet,4 -date,what's today?,parrot,avail,0 -how_busy,how long will it be to sit in olive garden?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -goodbye,bye bye,lambada,bye,2 -calendar,bowling on my calendar?,parrot,avail,0 -greeting,you good?,parrot,greet,4 -no,most definitely false,parrot,cancel,3 -no,"no, that's wrong",original,cancel,3 -no,negatory,original,cancel,3 -cancel_reservation,i have to cancel my reservation for rob at red robin,parrot,cancel,3 -thank_you,awesome thanks,parrot,bye,2 -greeting,hey bs,lambada,greet,4 -thank_you,my thanks,parrot,bye,2 -thank_you,i appreciate the assistance,original,bye,2 -schedule_meeting,a meeting with tom for tomorrow 530,parrot,book,1 -greeting,heller,original,greet,4 -goodbye,bye,original,bye,2 -calendar,i want to check my calendar for saturday,parrot,avail,0 -yes,"yes, please",parrot,book,1 -thank_you,i appeciate it,parrot,bye,2 -goodbye,peace,original,bye,2 -goodbye,im leaving,parrot,bye,2 -no,FALSE,lambada,cancel,3 -greeting,hola,original,greet,4 -no,negating,parrot,cancel,3 -yes,i guess,parrot,book,1 -how_busy,i want to know how busy ihop is at 8 pm,lambada,avail,0 -yes,facts,original,book,1 -goodbye,see ya,lambada,bye,2 -greeting,whats new?,parrot,greet,4 -thank_you,many thank,original,bye,2 -no,negating,parrot,cancel,3 -greeting,hiya!,original,greet,4 -no,it seems not,original,cancel,3 -yes,correct,original,book,1 -date,tell me the day?,parrot,avail,0 -how_busy,how long can i wait at chili's?,parrot,avail,0 -how_busy,how busy is wonka pizza at 5:30,lambada,avail,0 -thank_you,i'm grateful,original,bye,2 -how_busy,what will it take to sit in chipotle?,parrot,avail,0 -goodbye,"thanks, bye",original,bye,2 -greeting,nice day,lambada,greet,4 -no,negating,parrot,cancel,3 -schedule_meeting,set up a meeting,parrot,book,1 -how_busy,tell me the average wait time in a cheese cake factory?,parrot,avail,0 -greeting,you good?,parrot,greet,4 -thank_you,good answer thanks for the response,parrot,bye,2 -no,that is untrue,original,cancel,3 -yes,agreed,original,book,1 -greeting,aloha,original,greet,4 -how_busy,how long before dinner?,parrot,avail,0 -greeting,wassup,original,greet,4 -no,thats a negative,original,cancel,3 -no,invalid,original,cancel,3 -thank_you,the best,parrot,bye,2 -greeting,why hello?,original,greet,4 -greeting,what do you think about acii?,parrot,greet,4 -no,that's a false,lambada,cancel,3 -goodbye,peace out!,original,bye,2 -calendar,what's on january 1st?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -date,what do you think will be the date in 100 days?,parrot,avail,0 -schedule_meeting,can you schedule a meeting with scott at 9 am?,parrot,book,1 -how_busy,can i expect to see a lot of people at olive garden at 6?,lambada,avail,0 -meeting_schedule,what if i have a meeting today,parrot,avail,0 -how_busy,is applebee busy around 1130?,parrot,avail,0 -no,definitely not,original,cancel,3 -goodbye,see ya,original,bye,2 -yes,"yes, please",original,book,1 -goodbye,bye-bye,original,bye,2 -greeting,how's idy?,parrot,greet,4 -no,the answer is no,original,cancel,3 -meeting_schedule,when's my meeting with bob?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -goodbye,regards,original,bye,2 -meeting_schedule,when's my meeting?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -thank_you,thanks again!,original,bye,2 -how_busy,is the restaurant always packed between dinner and breakfast?,lambada,avail,0 -yes,a real statement,parrot,book,1 -thank_you,i'm thankful,original,bye,2 -no,sure it's wrong,parrot,cancel,3 -goodbye,"enjoy my day, goodbye",original,bye,2 -how_busy,how busy is chili's around 11 pm,lambada,avail,0 -thank_you,you've helped,parrot,bye,2 -thank_you,thanks very much,parrot,bye,2 -greeting,hiya!,original,greet,4 -greeting,how are things going,original,greet,4 -goodbye,farewell,original,bye,2 -no,so that's no,parrot,cancel,3 -how_busy,when will i wait for chipotle?,parrot,avail,0 -no,no good,original,cancel,3 -goodbye,tootles?,parrot,bye,2 -no,no way,original,cancel,3 -greeting,what's new,lambada,greet,4 -no,it's so negative,parrot,cancel,3 -goodbye,catch you later,original,bye,2 -no,negatory,original,cancel,3 -greeting,tell me how's it going?,parrot,greet,4 -goodbye,fairwell,original,bye,2 -greeting,hola!,original,greet,4 -reminder_update,what about a reminder,parrot,resched,5 -greeting,how's everything,original,greet,4 -goodbye,lovely conversation,parrot,bye,2 -calendar,give me my calendar for march 13th,parrot,avail,0 -goodbye,thanks bye bye!,original,bye,2 -greeting,hello bs,parrot,greet,4 -no,thanks no,parrot,cancel,3 -how_busy,how long is the wait at italian food,lambada,avail,0 -yes,that's true,original,book,1 -no,no?,parrot,cancel,3 -no,"no, it's not",lambada,cancel,3 -goodbye,will leave now,parrot,bye,2 -thank_you,thanks for coming,parrot,bye,2 -meeting_schedule,did you schedule any meetings today?,parrot,avail,0 -yes,correct,lambada,book,1 -calendar,what do i have planned for tomorrow?,original,avail,0 -greeting,"hey, what's new",original,greet,4 -date,what's the date of that?,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -greeting,why hello?,original,greet,4 -greeting,hows the ai doing today,lambada,greet,4 -yes,that's absolutely true,parrot,book,1 -date,what today?,parrot,avail,0 -yes,is true,parrot,book,1 -no,not necessarily true,parrot,cancel,3 -how_busy,what's the wait time to be seated at a restaurant,lambada,avail,0 -goodbye,cya later,original,bye,2 -no,absolutely not,original,cancel,3 -thank_you,i appreciate your time,lambada,bye,2 -no,that's inaccurate,original,cancel,3 -greeting,how things go?,parrot,greet,4 -greeting,how do you feel?,parrot,greet,4 -yes,yes,original,book,1 -goodbye,peace,original,bye,2 -no,"no, it is not true",lambada,cancel,3 -yes,absolutely,original,book,1 -greeting,nice day,lambada,greet,4 -date,what's today,original,avail,0 -yes,let's do that,parrot,book,1 -no,so that's no,parrot,cancel,3 -no,no please,parrot,cancel,3 -no,that's a lie,parrot,cancel,3 -cancel_reservation,i need to cancel my reservation at phoenix,lambada,cancel,3 -goodbye,bye now,original,bye,2 -greeting,"hey, what's new",original,greet,4 -yes,definitely,original,book,1 -yes,say positive,parrot,book,1 -how_busy,how long do i have to wait before i get a table in the restaurant?,parrot,avail,0 -greeting,how's ai doing?,parrot,greet,4 -cancel_reservation,you want to cancel my reservation?,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -thank_you,you've tried,parrot,bye,2 -greeting,what's new?,parrot,greet,4 -calendar,have i scheduled anything on march 2nd?,parrot,avail,0 -goodbye,goodbye ai,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -greeting,hey it's up,lambada,greet,4 -how_busy,how busy is chili's at 5 o'clock?,parrot,avail,0 -yes,absolutely,original,book,1 -schedule_meeting,would you schedule a meeting with carrie and lisa please,original,book,1 -no,i meant nothing,parrot,cancel,3 -no,that's overwhelmingly negative,parrot,cancel,3 -date,tell me the date of 200 days?,parrot,avail,0 -calendar_update,remove event from calendar,lambada,resched,5 -calendar,what do i have going on for 1212?,parrot,avail,0 -greeting,hiya,original,greet,4 -no,no it's not right,parrot,cancel,3 -yes,"yeah, that's right",original,book,1 -calendar,tell me what my calendar looks like on 1st march?,parrot,avail,0 -no,that's false,original,cancel,3 -date,date tomorrow,parrot,avail,0 -thank_you,awesome thank you,parrot,bye,2 -yes,absolutely,original,book,1 -no,negating,parrot,cancel,3 -calendar,list the events scheduled for april 15th?,parrot,avail,0 -goodbye,"thanks, bye",original,bye,2 -how_busy,is the restaurant crowded?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -thank_you,appreciated,original,bye,2 -goodbye,go easy,parrot,bye,2 -meeting_schedule,what's the time for the meeting?,parrot,avail,0 -no,naw,original,cancel,3 -thank_you,you've been amazing,lambada,bye,2 -reminder_update,let me be reminded,parrot,resched,5 -cancel_reservation,get rid of my reservation at the steakhouse please,lambada,cancel,3 -date,date tomorrow?,parrot,avail,0 -goodbye,as regards,parrot,bye,2 -goodbye,sayonara ,parrot,bye,2 -reminder_update,i need to pay my rent can you set me a reminder?,parrot,resched,5 -no,it's very wrong,parrot,cancel,3 -no,invalid,original,cancel,3 -no,there is no,parrot,cancel,3 -no,that's false,original,cancel,3 -greeting,heyo,original,greet,4 -yes,agreed,original,book,1 -thank_you,many thank,original,bye,2 -greeting,hello hello good morning,parrot,greet,4 -goodbye,sign off,parrot,bye,2 -yes,that would be yes,original,book,1 -calendar,what's my schedule for tomorrow?,parrot,avail,0 -yes,TRUE,lambada,book,1 -thank_you,i'm glad you did it for me,parrot,bye,2 -no,that's inaccurate,original,cancel,3 -yes,uh-huh,original,book,1 -how_busy,how long is the wait to be seated at red lobsters,lambada,avail,0 -yes,all right,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -reminder_update,set a reminder for the workout tomorrow at noon,parrot,resched,5 -yes,it is a yes from me,parrot,book,1 -yes,yes that's right,lambada,book,1 -greeting,hi how's it going?,parrot,greet,4 -goodbye,afterward,parrot,bye,2 -goodbye,tootles,original,bye,2 -no,naw,original,cancel,3 -goodbye,regards,original,bye,2 -yes,certainly,parrot,book,1 -how_busy,does mr joes pizza usually have a long wait?,original,avail,0 -goodbye,thank you for the great talk,parrot,bye,2 -goodbye,bye,original,bye,2 -thank_you,gracias,original,bye,2 -goodbye,adios ai,original,bye,2 -yes,positive,original,book,1 -yes,affirmitive,original,book,1 -no,that's incorrect,original,cancel,3 -greeting,hello,original,greet,4 -thank_you,merci beaucoup,original,bye,2 -no,no that's wrong,original,cancel,3 -no,invalid,original,cancel,3 -yes,indeed,parrot,book,1 -yes,affirmitive,original,book,1 -goodbye,"nice talk, goodbye",lambada,bye,2 -goodbye,goodbye bye,parrot,bye,2 -goodbye,i'm glad we talked later,lambada,bye,2 -greeting,hey hey!,original,greet,4 -no,no!,original,cancel,3 -calendar,have any scheduled events in my calendar?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -goodbye,buhbye,original,bye,2 -no,invalid,original,cancel,3 -yes,facts,original,book,1 -goodbye,"that's all, bye",original,bye,2 -no,so that's no,parrot,cancel,3 -yes,facts,original,book,1 -yes,that is totally true,original,book,1 -how_busy,can you tell me how long the wait is at olive garden?,lambada,avail,0 -goodbye,adios,original,bye,2 -no,FALSE,original,cancel,3 -no,that's very negative,parrot,cancel,3 -greeting,hey,original,greet,4 -goodbye,great talk,lambada,bye,2 -thank_you,thanks!,original,bye,2 -no,nothing,parrot,cancel,3 -goodbye,bye-bye,original,bye,2 -no,i disagree,parrot,cancel,3 -cancel_reservation,make a cancellation of the reservation,parrot,cancel,3 -greeting,how's my day going,lambada,greet,4 -thank_you,i appreciate your answer,parrot,bye,2 -no,negating,parrot,cancel,3 -goodbye,later!,original,bye,2 -schedule_meeting,i need a room,parrot,book,1 -date,please list my current date,parrot,avail,0 -meeting_schedule,meeting today,parrot,avail,0 -greeting,hi what's up?,parrot,greet,4 -yes,TRUE,lambada,book,1 -yes,huh huh,parrot,book,1 -thank_you,"great, thanks!",original,bye,2 -thank_you,i want to thank you for your time,parrot,bye,2 -goodbye,i'm gone,parrot,bye,2 -yes,yes that's right,lambada,book,1 -no,it's not correct,parrot,cancel,3 -calendar,read my calendar,parrot,avail,0 -goodbye,for now,parrot,bye,2 -goodbye,peace,original,bye,2 -date,what's my date tomorrow?,parrot,avail,0 -goodbye,later!,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -date,what's my date?,parrot,avail,0 -calendar,can you see whether i have an event called amy's surprise party on my calendar?,original,avail,0 -yes,absolutely!,original,book,1 -no,naw,parrot,cancel,3 -goodbye,bye!,original,bye,2 -no,this is false,parrot,cancel,3 -no,it's a very bad answer,parrot,cancel,3 -meeting_schedule,let me hear all the meetings for today,parrot,avail,0 -goodbye,have to run,parrot,bye,2 -date,please tell me what the date is today,parrot,avail,0 -goodbye,farewell,original,bye,2 -greeting,good day,original,greet,4 -yes,thats right,original,book,1 -thank_you,much obliged,original,bye,2 -greeting,wassup,original,greet,4 -yes,say yes,lambada,book,1 -yes,great,original,book,1 -no,no good,original,cancel,3 -greeting,hi,original,greet,4 -yes,perfect,parrot,book,1 -no,i'll say no,parrot,cancel,3 -cancel_reservation,my dinner reservation will not be needed,parrot,cancel,3 -yes,TRUE,original,book,1 -greeting,all right with you?,parrot,greet,4 -cancel_reservation,can you cancel my reservation for 6pm?,parrot,cancel,3 -no,hell nah,original,cancel,3 -thank_you,gracias,original,bye,2 -thank_you,i appeciate it,original,bye,2 -greeting,ahoy,lambada,greet,4 -date,will it be 10 days?,parrot,avail,0 -date,what year is tomorrow,parrot,avail,0 -how_busy,is the wait long?,parrot,avail,0 -yes,that's true,original,book,1 -how_busy,can i wait for a table in ihop?,parrot,avail,0 -meeting_schedule,are there any meetings with dan today?,parrot,avail,0 -no,no,lambada,cancel,3 -yes,it's positive,parrot,book,1 -no,i'm afraid not,parrot,cancel,3 -yes,yes sir,original,book,1 -thank_you,you answered,parrot,bye,2 -no,that's inaccurate,original,cancel,3 -greeting,how is idy?,parrot,greet,4 -thank_you,i appeciate it,parrot,bye,2 -yes,i want it,parrot,book,1 -goodbye,sayonara,original,bye,2 -date,please show the date,parrot,avail,0 -no,FALSE,lambada,cancel,3 -goodbye,later,original,bye,2 -greeting,how life treats you?,parrot,greet,4 -greeting,how've you been,original,greet,4 -no,certainly false,parrot,cancel,3 -greeting,ahoy hoy,original,greet,4 -date,where's tomorrow's date,parrot,avail,0 -thank_you,good job helping me,parrot,bye,2 -thank_you,appreciated,original,bye,2 -greeting,ahoy,lambada,greet,4 -goodbye,bye-bye,original,bye,2 -no,it's actually false,parrot,cancel,3 -greeting,wassup,original,greet,4 -schedule_meeting,would you set me up for a meeting,lambada,book,1 -reminder_update,i'd like to remind myself to eat at work,parrot,resched,5 -cancel_reservation,get the salad cancelled,lambada,cancel,3 -yes,perfect,parrot,book,1 -greeting,whats up?,parrot,greet,4 -goodbye,send a goodbye,lambada,bye,2 -thank_you,i'm grateful,original,bye,2 -date,today?,parrot,avail,0 -yes,sure,original,book,1 -yes,accept,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,hola!,original,greet,4 -goodbye,later!,original,bye,2 -greeting,what's new?,parrot,greet,4 -goodbye,good night,original,bye,2 -how_busy,wait for the red lobster?,parrot,avail,0 -no,negative,original,cancel,3 -goodbye,later gater,original,bye,2 -yes,"yes, please",parrot,book,1 -no,it's my false statement,parrot,cancel,3 -thank_you,good job on that,lambada,bye,2 -yes,absolutely!,original,book,1 -greeting,"hi, ai",original,greet,4 -yes,let's do it,parrot,book,1 -calendar_update,please remove dinner with june at the ranch from my calendar for may 14th?,parrot,resched,5 -date,today?,parrot,avail,0 -greeting,hey what's up?,parrot,greet,4 -greeting,how's everything?,parrot,greet,4 -goodbye,i have to go but it was a nice chat,lambada,bye,2 -no,naw,original,cancel,3 -thank_you,i'm so very grateful,parrot,bye,2 -calendar,please check my calendar for saturday,parrot,avail,0 -greeting,hey there,original,greet,4 -meeting_schedule,what's the meeting today?,parrot,avail,0 -date,in five days?,parrot,avail,0 -calendar,what do you have planned for april 23rd?,parrot,avail,0 -yes,i think you're right,parrot,book,1 -date,is today the day?,parrot,avail,0 -greeting,yo,original,greet,4 -goodbye,goodbye to your,lambada,bye,2 -yes,great,original,book,1 -date,what day?,parrot,avail,0 -date,what's my day?,parrot,avail,0 -greeting,ahoy hoy,original,greet,4 -greeting,hi how are you doing?,parrot,greet,4 -calendar,can you check my calendar for a repair appointment?,parrot,avail,0 -calendar,i want my schedule for march 2th,parrot,avail,0 -thank_you,please thank you for my actions,parrot,bye,2 -calendar,can you tell me what's on my calendar for march 8?,parrot,avail,0 -greeting,"hi there, how's it going",lambada,greet,4 -goodbye,", goodbye",lambada,bye,2 -calendar_update,clear my calendar for march 7th,parrot,resched,5 -yes,certainly true,parrot,book,1 -yes,yep,original,book,1 -thank_you,appreciated,original,bye,2 -yes,it's positive,parrot,book,1 -goodbye,wonderful conversation,lambada,bye,2 -thank_you,okay thank you,parrot,bye,2 -cancel_reservation,call my reservation cancelled,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -date,what is today?,original,avail,0 -cancel_reservation,the reservation i made,parrot,cancel,3 -greeting,hey it's up,lambada,greet,4 -greeting,what's happened?,parrot,greet,4 -how_busy,is the wait too long?,parrot,avail,0 -yes,10-Apr,original,book,1 -how_busy,if i want to sit at the tamara steakhouse how long is the wait?,parrot,avail,0 -yes,absolutely!,original,book,1 -greeting,hey what's up?,parrot,greet,4 -goodbye,goodbye soon,lambada,bye,2 -reminder_update,you can remind me,parrot,resched,5 -goodbye,i'll have to go later,parrot,bye,2 -yes,it's definitely positive,parrot,book,1 -no,no it's not,parrot,cancel,3 -how_busy,how long is the wait at the olive garden right now,lambada,avail,0 -cancel_reservation,please let my reservation for saturday at my favorite restaurant expires,parrot,cancel,3 -no,no that's not true,parrot,cancel,3 -greeting,hola,original,greet,4 -yes,yeah,original,book,1 -meeting_schedule,when's my meeting with daddy?,parrot,avail,0 -goodbye,i need to go,lambada,bye,2 -thank_you,appreciated,original,bye,2 -thank_you,"awesome, thanks",original,bye,2 -greeting,hi,original,greet,4 -thank_you,you helped,parrot,bye,2 -how_busy,is the restaurant busy at lunch?,parrot,avail,0 -no,it's actually false,parrot,cancel,3 -schedule_meeting,i want the room open between 4 and 5 pm,parrot,book,1 -reminder_update,remind me to put onion on the grill,parrot,resched,5 -no,that's no,parrot,cancel,3 -greeting,bonjour,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -date,what is today's date?,original,avail,0 -no,not correct,parrot,cancel,3 -schedule_meeting,put in a meeting in the blue room on friday?,parrot,book,1 -yes,obviously,parrot,book,1 -no,no good,original,cancel,3 -greeting,how did you feel?,parrot,greet,4 -no,that's a negative,original,cancel,3 -thank_you,thank a bunch,original,bye,2 -thank_you,nice,parrot,bye,2 -greeting,how's life,original,greet,4 -goodbye,signing off,original,bye,2 -cancel_reservation,cancellation of 6 reservations at red robin,parrot,cancel,3 -goodbye,talk later,original,bye,2 -no,naw,original,cancel,3 -no,so that's no,parrot,cancel,3 -date,is today monday?,original,avail,0 -thank_you,you were a good help,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -reminder_update,keep setting reminders for the storage of money,parrot,resched,5 -yes,approved,original,book,1 -how_busy,can you wait in chili's at 8pm?,parrot,avail,0 -goodbye,good conversation,parrot,bye,2 -no,not good,parrot,cancel,3 -how_busy,there's a cheesecake factory,parrot,avail,0 -goodbye,my friend,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -greeting,wassup,original,greet,4 -yes,positive,parrot,book,1 -greeting,heyo,original,greet,4 -how_busy,how busy is the steakhouse around midnight?,parrot,avail,0 -no,it's no,parrot,cancel,3 -greeting,aho,parrot,greet,4 -calendar,did i put a repair date in my calendar?,parrot,avail,0 -yes,roger that,original,book,1 -how_busy,is the restaurant busy during lunchtime?,parrot,avail,0 -goodbye,a good talk,parrot,bye,2 -no,i must say no,original,cancel,3 -calendar,what's on my calendar for march 7,parrot,avail,0 -no,not true,original,cancel,3 -no,there is no,parrot,cancel,3 -reminder_update,i would like to be reminded,original,resched,5 -calendar,can you check something on my calendar for my repair?,parrot,avail,0 -yes,it makes sense,parrot,book,1 -meeting_schedule,are there any meetings with kelly?,parrot,avail,0 -yes,correct,original,book,1 -how_busy,how long will a macaroni grill be for dinner?,parrot,avail,0 -no,naw,parrot,cancel,3 -how_busy,does chili have people sitting between 5 and 7?,parrot,avail,0 -goodbye,ok good chatting goodbye,original,bye,2 -yes,thats right,original,book,1 -no,no!,original,cancel,3 -yes,sure thing,original,book,1 -thank_you,"thanks, that's helpful",original,bye,2 -greeting,how's this going?,parrot,greet,4 -reminder_update,you can remind me,parrot,resched,5 -yes,absolutely!,original,book,1 -no,that's the wrong answer,parrot,cancel,3 -yes,yup,original,book,1 -yes,good,parrot,book,1 -yes,is true,parrot,book,1 -reminder_update,set the reminder for 2 pm to feed the cat,parrot,resched,5 -greeting,hello how's the situation?,parrot,greet,4 -meeting_schedule,do you have meetings from 1 to 4 today?,parrot,avail,0 -greeting,hello there,original,greet,4 -greeting,hola!,original,greet,4 -yes,certainly,parrot,book,1 -goodbye,tootles,original,bye,2 -meeting_schedule,meetings today,original,avail,0 -greeting,ahoy there,lambada,greet,4 -greeting,whats up?,parrot,greet,4 -thank_you,okay thanks,original,bye,2 -yes,huh,parrot,book,1 -thank_you,thanks for the cooperation,parrot,bye,2 -greeting,hey,original,greet,4 -date,in 7 days?,parrot,avail,0 -yes,accept,parrot,book,1 -yes,yay,lambada,book,1 -goodbye,i'm out of here,original,bye,2 -goodbye,cya later,original,bye,2 -greeting,how are you?,parrot,greet,4 -date,what's today,original,avail,0 -goodbye,fairwell?,parrot,bye,2 -greeting,so how's everything going?,parrot,greet,4 -meeting_schedule,what are the scheduled meetings today?,parrot,avail,0 -thank_you,your answer was pleasant,parrot,bye,2 -no,say negative,parrot,cancel,3 -no,invalid,original,cancel,3 -date,give me the date today,original,avail,0 -how_busy,how busy is olive garden between 12 and 5,lambada,avail,0 -thank_you,nice,parrot,bye,2 -no,but not right now,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,that’s not correct,original,cancel,3 -no,that's a wrong answer,parrot,cancel,3 -goodbye,farewell!,original,bye,2 -date,what's the date of 25 days?,parrot,avail,0 -greeting,what's up,original,greet,4 -yes,great,original,book,1 -no,it has to be false,parrot,cancel,3 -greeting,whats up,original,greet,4 -yes,TRUE,original,book,1 -goodbye,bye bye now,lambada,bye,2 -yes,TRUE,original,book,1 -reminder_update,add a note,parrot,resched,5 -no,"nope, that's false",original,cancel,3 -how_busy,how long do i have to wait if i want to go to the cheesecake factory,parrot,avail,0 -meeting_schedule,what do i have going on between 9 and 10?,original,avail,0 -thank_you,thank you so much,original,bye,2 -date,what date is today?,original,avail,0 -no,that's a wrong answer?,parrot,cancel,3 -greeting,hello bs,parrot,greet,4 -yes,yep,original,book,1 -how_busy,list the available seats in this restaurant?,parrot,avail,0 -no,nada,original,cancel,3 -how_busy,i want to know how busy rubin's will be around 8pm,parrot,avail,0 -greeting,how's my day been?,parrot,greet,4 -greeting,yo,original,greet,4 -how_busy,how long will it take to get a table at the cheese cake factory?,parrot,avail,0 -yes,TRUE,lambada,book,1 -no,it's false,parrot,cancel,3 -greeting,what's happening,original,greet,4 -cancel_reservation,please unreserve that table,original,cancel,3 -date,tell me the date today,parrot,avail,0 -yes,i want that,parrot,book,1 -date,in five days?,parrot,avail,0 -cancel_reservation,can i cancel my reservation at 4 pm at ruth's?,parrot,cancel,3 -date,current date,original,avail,0 -greeting,hi,original,greet,4 -yes,confirm,original,book,1 -goodbye,good-bye,parrot,bye,2 -how_busy,what does a red lobster get for 7pm?,parrot,avail,0 -greeting,hola!,original,greet,4 -cancel_reservation,the reservation i made,parrot,cancel,3 -thank_you,thanks again!,original,bye,2 -meeting_schedule,what meetings do i have today between noon and 1?,parrot,avail,0 -how_busy,i need to know the wait time at italian food,lambada,avail,0 -greeting,whats up?,parrot,greet,4 -no,it's not true,parrot,cancel,3 -yes,very true,original,book,1 -calendar,what do i have planned for march 2nd on the calendar?,parrot,avail,0 -no,FALSE,original,cancel,3 -date,in three days,parrot,avail,0 -greeting,hiya,original,greet,4 -no,the information is wrong,original,cancel,3 -goodbye,goodbye,original,bye,2 -yes,affirmitive,original,book,1 -meeting_schedule,have to find time for all the meetings on my schedule,parrot,avail,0 -goodbye,goodbye my friend,parrot,bye,2 -meeting_schedule,what time is my meeting with fred scheduled for?,original,avail,0 -calendar,tell me what's on my calendar for march 21st,parrot,avail,0 -goodbye,goodbye soon,lambada,bye,2 -thank_you,thankyou,parrot,bye,2 -goodbye,take a break,parrot,bye,2 -greeting,how's idy doing?,parrot,greet,4 -yes,that's a yes,original,book,1 -greeting,hiya,original,greet,4 -greeting,heyo,original,greet,4 -thank_you,my thanks,parrot,bye,2 -no,it's a negative,parrot,cancel,3 -no,that's erroneous,parrot,cancel,3 -date,what's the day of the week?,parrot,avail,0 -yes,i'm sure it was done,parrot,book,1 -goodbye,buhbye,original,bye,2 -no,erroneous,parrot,cancel,3 -meeting_schedule,what's the schedule of the meeting?,parrot,avail,0 -greeting,salutations!,original,greet,4 -goodbye,goodnight,original,bye,2 -goodbye,i'm leaving now,lambada,bye,2 -goodbye,go easy,parrot,bye,2 -goodbye,bye!,original,bye,2 -thank_you,good job,lambada,bye,2 -greeting,salutation,parrot,greet,4 -goodbye,sayonara,original,bye,2 -yes,it's indeed true,original,book,1 -no,that's negative,parrot,cancel,3 -greeting,hey,original,greet,4 -goodbye,will leave now,parrot,bye,2 -goodbye,goodnight,original,bye,2 -how_busy,tell me how busy the red robin is at 7pm,parrot,avail,0 -date,today?,parrot,avail,0 -yes,yay,lambada,book,1 -no,not true i think,parrot,cancel,3 -thank_you,you helped,parrot,bye,2 -meeting_schedule,are there any meetings that are scheduled for today?,parrot,avail,0 -yes,affirmative,original,book,1 -thank_you,thank you very much for my answer,parrot,bye,2 -yes,yes that's correct,original,book,1 -calendar,do you have any active events on march 4th?,parrot,avail,0 -calendar_update,remove jeff's birthday from my calendar on may 12th,parrot,resched,5 -reminder_update,create a reminder,original,resched,5 -goodbye,very nice conversation,parrot,bye,2 -no,negative,original,cancel,3 -yes,say yes,lambada,book,1 -no,it's negative,parrot,cancel,3 -goodbye,good talk,parrot,bye,2 -thank_you,thanks for this information,lambada,bye,2 -yes,accept,parrot,book,1 -goodbye,i need to go,lambada,bye,2 -no,no no no,parrot,cancel,3 -greeting,and how's it going,parrot,greet,4 -meeting_schedule,what is today's meeting and what date,parrot,avail,0 -calendar,list some things i have on my calendar for march 01?,parrot,avail,0 -yes,yes,original,book,1 -thank_you,much obliged,original,bye,2 -greeting,"hello, ai",original,greet,4 -schedule_meeting,get me a meeting room between 1 and 2pm,lambada,book,1 -no,nope,original,cancel,3 -cancel_reservation,cancel the dinner reservation tonight,parrot,cancel,3 -thank_you,you helped,parrot,bye,2 -goodbye,nice chat today,lambada,bye,2 -greeting,hey,original,greet,4 -no,negating,parrot,cancel,3 -date,where is tomorrow's date,lambada,avail,0 -greeting,hey bs,lambada,greet,4 -thank_you,thank you?,parrot,bye,2 -date,what day tomorrow and what month?,parrot,avail,0 -no,no thanks,original,cancel,3 -goodbye,goodbye!,original,bye,2 -how_busy,how long is the wait at chuck's?,parrot,avail,0 -greeting,good day,original,greet,4 -goodbye,", goodbye",lambada,bye,2 -thank_you,and you're doing well,parrot,bye,2 -schedule_meeting,are there meeting rooms available between 9-11?,lambada,book,1 -no,this is my reply,parrot,cancel,3 -yes,affirmitive,original,book,1 -how_busy,canadian grill at 6pm?,parrot,avail,0 -yes,accepted,original,book,1 -date,in eight days?,parrot,avail,0 -goodbye,later,original,bye,2 -yes,confirmed,original,book,1 -how_busy,is the red lobster usually busy around 8pm?,parrot,avail,0 -meeting_schedule,meeting today,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -yes,yes that's correct,original,book,1 -greeting,hey,original,greet,4 -goodbye,goodbye soon,lambada,bye,2 -no,that isn't right,original,cancel,3 -greeting,how are things,original,greet,4 -greeting,how's this going?,parrot,greet,4 -no,nay,original,cancel,3 -yes,you're right,original,book,1 -yes,positive,original,book,1 -goodbye,goodbye helpful ai devices,parrot,bye,2 -goodbye,farewell,original,bye,2 -goodbye,adios,original,bye,2 -yes,yeap,original,book,1 -yes,absolutely,original,book,1 -calendar_update,remove this event from my calendar,lambada,resched,5 -date,current date,original,avail,0 -thank_you,thanks very much for your answer,parrot,bye,2 -greeting,hi how's my life?,parrot,greet,4 -date,is it monday?,parrot,avail,0 -yes,of course,original,book,1 -goodbye,fairwell,original,bye,2 -cancel_reservation,i don't actually need my reservation anymore,parrot,cancel,3 -thank_you,your efforts don't go unnoticed,original,bye,2 -how_busy,if i want to know how busy the olive garden is at 6pm,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,the wait time at the italian restaurant?,parrot,avail,0 -no,nothing good,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -how_busy,can i wait at the macaroni grill for so long?,parrot,avail,0 -goodbye,im leaving,parrot,bye,2 -no,negatory,original,cancel,3 -goodbye,nice talk,lambada,bye,2 -greeting,aho,parrot,greet,4 -no,naw,original,cancel,3 -greeting,welcome,parrot,greet,4 -greeting,how you are,original,greet,4 -date,what month today?,parrot,avail,0 -goodbye,good night,original,bye,2 -thank_you,appreciated,original,bye,2 -goodbye,peace,original,bye,2 -greeting,hiya,original,greet,4 -no,it's a no,original,cancel,3 -no,not correct,parrot,cancel,3 -calendar,tell me the current calendar?,parrot,avail,0 -yes,it's indeed true,original,book,1 -cancel_reservation,my reservation for tonight needs to be cancelled,parrot,cancel,3 -no,negative,original,cancel,3 -no,negative definitely,parrot,cancel,3 -greeting,what's happening?,parrot,greet,4 -no,false sure,parrot,cancel,3 -thank_you,thanks!,original,bye,2 -greeting,"ai, how are you feeling",original,greet,4 -goodbye,fairwell,original,bye,2 -greeting,hola,original,greet,4 -goodbye,later,original,bye,2 -schedule_meeting,check if a meeting room is available between 4 and 5,parrot,book,1 -no,"no, that's wrong",original,cancel,3 -greeting,how you are?,parrot,greet,4 -goodbye,farewell!,original,bye,2 -yes,roger that,original,book,1 -yes,yeah yeah,lambada,book,1 -no,nada,original,cancel,3 -goodbye,ai goodbye,original,bye,2 -no,no!,original,cancel,3 -goodbye,great talk,lambada,bye,2 -date,tell me the current month and year?,parrot,avail,0 -yes,let's do it,parrot,book,1 -thank_you,thanks please,original,bye,2 -no,nada,original,cancel,3 -date,in five days?,parrot,avail,0 -yes,TRUE,original,book,1 -yes,good,parrot,book,1 -greeting,how's my family?,parrot,greet,4 -no,nope,original,cancel,3 -yes,absolutely!,original,book,1 -greeting,welcome,parrot,greet,4 -yes,correct,original,book,1 -greeting,hey it's up,lambada,greet,4 -yes,i think you're right,parrot,book,1 -greeting,yo how is this going?,parrot,greet,4 -how_busy,how busy is iman at 8?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -date,today?,parrot,avail,0 -greeting,how's everything,original,greet,4 -date,what's my date tomorrow?,parrot,avail,0 -calendar_update,eliminate the trip to scotland from my calendar on march 1st,parrot,resched,5 -yes,all right,original,book,1 -goodbye,goodbyes,parrot,bye,2 -no,no thanks,original,cancel,3 -greeting,hola!,original,greet,4 -no,is it a lie?,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -no,it's negative,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -yes,obviously,parrot,book,1 -goodbye,bye now,original,bye,2 -yes,yup,original,book,1 -greeting,heyo,original,greet,4 -yes,uh-huh,original,book,1 -reminder_update,you have to remind me,parrot,resched,5 -yes,the statement is true,original,book,1 -cancel_reservation,can i cancel my reservation?,lambada,cancel,3 -goodbye,goodbye!,original,bye,2 -how_busy,how long is the wait at chipotle?,parrot,avail,0 -date,could you tell me today's date,original,avail,0 -greeting,"hello, what's up",original,greet,4 -how_busy,please give me an idea how busy the robinson grill is,parrot,avail,0 -greeting,hello there!,original,greet,4 -goodbye,send a goodbye,lambada,bye,2 -greeting,salutation,parrot,greet,4 -calendar,if i have any events on my calendar for saturday please let me know,parrot,avail,0 -goodbye,please talk soon,parrot,bye,2 -yes,definitely yes,parrot,book,1 -thank_you,thank you for answering that,original,bye,2 -thank_you,very grateful,parrot,bye,2 -reminder_update,remember to give the cat fleas medicine,parrot,resched,5 -how_busy,"around nine, is ambrosio busy",original,avail,0 -goodbye,buhbye,original,bye,2 -yes,indeed,parrot,book,1 -calendar,"the 21st, what is on my calendar",original,avail,0 -no,erroneous,parrot,cancel,3 -schedule_meeting,i need help with setting a meeting,parrot,book,1 -no,no thanks,original,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -greeting,hello what's happening,parrot,greet,4 -schedule_meeting,is the meeting room between noon and 2?,parrot,book,1 -thank_you,thanks!,original,bye,2 -no,not at all,original,cancel,3 -no,that's totally wrong,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -how_busy,does the cheesecake factory have people around?,parrot,avail,0 -meeting_schedule,what meetings are today?,lambada,avail,0 -goodbye,go easy,parrot,bye,2 -calendar,how's it going on friday?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -date,what's the date we'll be there?,parrot,avail,0 -cancel_reservation,cancel my reservation with brad at the longhorn,parrot,cancel,3 -no,no thank you,original,cancel,3 -greeting,hello what's happening,parrot,greet,4 -thank_you,i'm happy with my response,parrot,bye,2 -greeting,how's everything going?,parrot,greet,4 -greeting,how's my feeling?,parrot,greet,4 -cancel_reservation,could you please cancel my reservation for 5 at red robin,original,cancel,3 -schedule_meeting,set a meeting for noon wednesday,parrot,book,1 -thank_you,so grateful,parrot,bye,2 -greeting,hello ai,parrot,greet,4 -cancel_reservation,please cancel my reservation in the resort,parrot,cancel,3 -thank_you,your answer is appreciated,original,bye,2 -thank_you,thanks again!,original,bye,2 -goodbye,i really enjoyed talking with you,lambada,bye,2 -goodbye,thanks for talking,original,bye,2 -goodbye,farewell!,original,bye,2 -greeting,well how's the situation?,parrot,greet,4 -greeting,what's new,lambada,greet,4 -yes,TRUE,original,book,1 -yes,affirmative,original,book,1 -date,please give me the day today,parrot,avail,0 -reminder_update,remind me,original,resched,5 -goodbye,farewell,original,bye,2 -yes,ok,original,book,1 -greeting,how's life?,parrot,greet,4 -greeting,how are you treated?,parrot,greet,4 -greeting,all right with you?,parrot,greet,4 -goodbye,on the highway,parrot,bye,2 -date,is today monday?,original,avail,0 -goodbye,"great chat, talk later",lambada,bye,2 -date,what the day?,parrot,avail,0 -yes,let's do it,parrot,book,1 -yes,affirmative,original,book,1 -date,is it monday?,parrot,avail,0 -schedule_meeting,is there a meeting room between 2 and 4?,parrot,book,1 -no,nada,original,cancel,3 -yes,yes that is true,lambada,book,1 -no,negation,parrot,cancel,3 -greeting,aho,parrot,greet,4 -thank_you,"great, thanks!",original,bye,2 -date,tell me tomorrow's date?,original,avail,0 -yes,uh-huh,original,book,1 -goodbye,lovely conversation,parrot,bye,2 -goodbye,please chat to me,parrot,bye,2 -no,erroneous,parrot,cancel,3 -thank_you,you're so much help,parrot,bye,2 -greeting,how is this going?,parrot,greet,4 -no,nay,original,cancel,3 -greeting,hiya,original,greet,4 -no,it seems not,original,cancel,3 -cancel_reservation,get rid of my reservation at chez francois for jennifer,original,cancel,3 -thank_you,i appreciate that,original,bye,2 -reminder_update,maybe a reminder?,parrot,resched,5 -reminder_update,save it for later,parrot,resched,5 -yes,i'll say yes,parrot,book,1 -meeting_schedule,what's the meeting today?,parrot,avail,0 -date,date please,original,avail,0 -thank_you,you made me aware,parrot,bye,2 -no,not true,original,cancel,3 -greeting,hi there alexa,original,greet,4 -thank_you,thanks for answering that,lambada,bye,2 -yes,that makes sense,lambada,book,1 -greeting,hola!,original,greet,4 -thank_you,thank you,original,bye,2 -no,definitely not,original,cancel,3 -reminder_update,add me a reminder?,parrot,resched,5 -no,not correct,parrot,cancel,3 -calendar,please check my calendar for march 4 2019 please,parrot,avail,0 -goodbye,thanks goodbye,parrot,bye,2 -schedule_meeting,are meeting rooms open between 10 and 11 am?,parrot,book,1 -yes,absolutely,original,book,1 -how_busy,how long will the wait be for a t-shirt recut at mcdonald's,lambada,avail,0 -thank_you,i'm really grateful,parrot,bye,2 -date,what day?,parrot,avail,0 -date,what's the date in two months,lambada,avail,0 -goodbye,goodnight,original,bye,2 -goodbye,ai goodbye,original,bye,2 -no,but it's wrong,parrot,cancel,3 -how_busy,how busy will cheesecake factory be around 7pm,lambada,avail,0 -date,a year?,parrot,avail,0 -thank_you,good job,lambada,bye,2 -yes,it's positive,parrot,book,1 -calendar,do i have anything scheduled on my calendar for next tuesday?,original,avail,0 -goodbye,peace out!,original,bye,2 -no,no,lambada,cancel,3 -how_busy,how long will the wait time at olive garden be?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -no,yes it's false,parrot,cancel,3 -goodbye,see ya,original,bye,2 -greeting,ahoy,lambada,greet,4 -cancel_reservation,i need to cancel my reservation for dinner in carnelian lake,parrot,cancel,3 -reminder_update,please remind me of something?,parrot,resched,5 -goodbye,bye bye,lambada,bye,2 -date,what's my date today?,parrot,avail,0 -thank_you,thank you for making my life easier,parrot,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -greeting,how is ai feeling?,parrot,greet,4 -no,that's erroneous,parrot,cancel,3 -how_busy,is the chili's usually crowded around 6pm?,lambada,avail,0 -yes,definitely,original,book,1 -how_busy,how much time will the restaurant be open for,parrot,avail,0 -thank_you,thank you for my time and effort,parrot,bye,2 -yes,TRUE,original,book,1 -no,thanks no,parrot,cancel,3 -yes,TRUE,lambada,book,1 -goodbye,goodbye,original,bye,2 -no,no!,original,cancel,3 -no,invalid,original,cancel,3 -goodbye,"no problem, goodbye",lambada,bye,2 -thank_you,oh sweet thanks,original,bye,2 -no,nada,original,cancel,3 -yes,that's right,original,book,1 -thank_you,thanks for coming,parrot,bye,2 -reminder_update,remember to bring raincoat tomorrow,parrot,resched,5 -goodbye,good-bye,parrot,bye,2 -no,yes that's false,lambada,cancel,3 -greeting,welcome,parrot,greet,4 -goodbye,goodbyes,parrot,bye,2 -calendar,what is on my calendar for easter?,parrot,avail,0 -thank_you,a million thanks,parrot,bye,2 -goodbye,but until the next time,parrot,bye,2 -yes,positive,original,book,1 -thank_you,thank you for trying,parrot,bye,2 -yes,certainly true,parrot,book,1 -goodbye,enjoy my day goodbye,parrot,bye,2 -thank_you,very grateful,parrot,bye,2 -date,what is that day?,parrot,avail,0 -calendar,can you check my calendar on saturday?,lambada,avail,0 -no,i'm sorry it's not,parrot,cancel,3 -yes,"yeah, that's it",lambada,book,1 -yes,you got it,original,book,1 -how_busy,i want to know how busy denny's is at 5 o'clock,parrot,avail,0 -no,nay,original,cancel,3 -how_busy,how long is the wait at olive garden currently,lambada,avail,0 -greeting,"hi, how's it going",lambada,greet,4 -greeting,hey hey!,original,greet,4 -yes,positive,parrot,book,1 -meeting_schedule,when do you meet roger?,parrot,avail,0 -reminder_update,to be a professional photographer,parrot,resched,5 -goodbye,adios,original,bye,2 -no,that's actually false,parrot,cancel,3 -yes,thats right,original,book,1 -no,no,lambada,cancel,3 -thank_you,your assistance is appreciated,parrot,bye,2 -yes,that appears true,original,book,1 -thank_you,you've been great,parrot,bye,2 -cancel_reservation,i have to cancel my reservation for dinner,parrot,cancel,3 -yes,approved,original,book,1 -goodbye,i'm leaving,parrot,bye,2 -greeting,salutations,parrot,greet,4 -how_busy,how busy will the olive garden be around 8pm,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -reminder_update,remember to remind me later,parrot,resched,5 -yes,huh,parrot,book,1 -goodbye,farewell,original,bye,2 -no,negating,parrot,cancel,3 -how_busy,i want to know how busy ruby will be at around 845 pm,parrot,avail,0 -thank_you,appreciated,original,bye,2 -yes,perfect,parrot,book,1 -greeting,hola!,original,greet,4 -no,you are wrong,original,cancel,3 -no,yes that's false,lambada,cancel,3 -schedule_meeting,what can i do to create a meeting?,lambada,book,1 -goodbye,i'd like to see you later,parrot,bye,2 -greeting,how is my day going,lambada,greet,4 -thank_you,i'm grateful,original,bye,2 -yes,"yep, that's correct",lambada,book,1 -goodbye,this conversation was pleasant,parrot,bye,2 -yes,okay,original,book,1 -no,no good,original,cancel,3 -yes,right,parrot,book,1 -goodbye,we chatted well,parrot,bye,2 -no,nope that's not right,parrot,cancel,3 -no,FALSE,original,cancel,3 -yes,accept,parrot,book,1 -calendar,did i set the 10th as my doctor's appointment?,parrot,avail,0 -no,certainly false,parrot,cancel,3 -yes,yes please,original,book,1 -goodbye,until next time!,original,bye,2 -how_busy,is tio's busy at 8:30?,lambada,avail,0 -schedule_meeting,i want a meeting,parrot,book,1 -meeting_schedule,how many meetings will i have between 2 and 5?,parrot,avail,0 -how_busy,what's the wait time?,parrot,avail,0 -goodbye,glad i got to talk with you,parrot,bye,2 -yes,accepted,original,book,1 -cancel_reservation,can you undo the reservation?,original,cancel,3 -thank_you,you answered my question,parrot,bye,2 -thank_you,nice,parrot,bye,2 -how_busy,how long will i wait for red lobster,parrot,avail,0 -no,no!,original,cancel,3 -no,thanks no,parrot,cancel,3 -no,definitely not,original,cancel,3 -yes,huh,parrot,book,1 -no,that's absolutely wrong,parrot,cancel,3 -yes,yeah that's right,lambada,book,1 -yes,absolutely,original,book,1 -calendar,what do i have on my calendar for march 10th?,lambada,avail,0 -how_busy,what is the current wait time at macy's?,lambada,avail,0 -yes,correct,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,that would be incorrect,lambada,cancel,3 -reminder_update,just a reminder,parrot,resched,5 -goodbye,good luck,lambada,bye,2 -yes,affirmitive,original,book,1 -greeting,why hello?,original,greet,4 -how_busy,how long will i have to wait in chili's at 7pm,parrot,avail,0 -yes,positive,parrot,book,1 -greeting,how's it going now?,parrot,greet,4 -greeting,so how's everything?,parrot,greet,4 -meeting_schedule,is there a meeting between 5 and 6pm?,parrot,avail,0 -schedule_meeting,please help me find a meeting?,parrot,book,1 -greeting,hello ai,parrot,greet,4 -thank_you,i am grateful,lambada,bye,2 -greeting,are you well?,original,greet,4 -schedule_meeting,please schedule a meeting with jason,parrot,book,1 -yes,can we please?,original,book,1 -yes,yeah yeah,lambada,book,1 -thank_you,thank you for making my life easier,parrot,bye,2 -no,so that's no,parrot,cancel,3 -greeting,wassup,original,greet,4 -thank_you,my thanks,parrot,bye,2 -greeting,good morning,parrot,greet,4 -goodbye,glad we could talk,parrot,bye,2 -goodbye,good bye then,original,bye,2 -no,FALSE,original,cancel,3 -goodbye,the talk was nice,lambada,bye,2 -how_busy,is ihop busy around 6pm?,lambada,avail,0 -yes,TRUE,original,book,1 -thank_you,good to look at,parrot,bye,2 -thank_you,you're so much help,parrot,bye,2 -greeting,hello,original,greet,4 -thank_you,appreciated,original,bye,2 -greeting,hey yai,lambada,greet,4 -goodbye,thank you for chatting with me,parrot,bye,2 -goodbye,my way,parrot,bye,2 -yes,"yep, that's correct",lambada,book,1 -thank_you,okay thank you,parrot,bye,2 -yes,good,parrot,book,1 -greeting,whats up?,parrot,greet,4 -yes,agreed,original,book,1 -greeting,how's everything?,parrot,greet,4 -goodbye,have fun?,lambada,bye,2 -yes,true is my response,original,book,1 -date,current day,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -yes,yes that's it,original,book,1 -greeting,how ya been,original,greet,4 -yes,true is my response,original,book,1 -greeting,how it goes?,parrot,greet,4 -yes,ok,original,book,1 -how_busy,how busy is imanas?,parrot,avail,0 -calendar_update,clear my calendar for friday,lambada,resched,5 -calendar,check my calendar for the 30th birthday party,parrot,avail,0 -goodbye,later,original,bye,2 -how_busy,will there be a lot of people at this restaurant before 6 am,lambada,avail,0 -date,what day will it be in 14 days?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -yes,roger that,original,book,1 -calendar,what's the schedule for march 5th?,parrot,avail,0 -greeting,how are you,original,greet,4 -goodbye,on the highway,parrot,bye,2 -no,i'll pass,original,cancel,3 -no,FALSE,lambada,cancel,3 -no,so that's no,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -how_busy,is red lobster busy at 6pm?,original,avail,0 -goodbye,bye bye,lambada,bye,2 -greeting,"wake up, ai",original,greet,4 -no,negatory?,parrot,cancel,3 -yes,all right,parrot,book,1 -thank_you,my gratitude,parrot,bye,2 -calendar,when will be my doctor's appointment?,parrot,avail,0 -no,negative,original,cancel,3 -yes,certainly,parrot,book,1 -goodbye,later,original,bye,2 -yes,huh,parrot,book,1 -no,that's inaccurate,original,cancel,3 -date,what is tomorrow?,parrot,avail,0 -goodbye,thanks for the conversation,parrot,bye,2 -goodbye,goodbye ai,parrot,bye,2 -goodbye,will leave now,parrot,bye,2 -date,do you have the date today?,lambada,avail,0 -greeting,and how's it going?,parrot,greet,4 -no,nope,original,cancel,3 -thank_you,thanks,original,bye,2 -goodbye,i have to go,parrot,bye,2 -no,naw,parrot,cancel,3 -goodbye,i'll go,parrot,bye,2 -yes,definitely,original,book,1 -goodbye,peace out!,original,bye,2 -meeting_schedule,are there meetings between now and saturday?,parrot,avail,0 -calendar,tell me what is showing on my calendar for march 14th?,lambada,avail,0 -reminder_update,give me a reminder,parrot,resched,5 -goodbye,fairwell?,parrot,bye,2 -thank_you,you’re the best thanks so much!,original,bye,2 -no,no that is not right,original,cancel,3 -goodbye,adios,original,bye,2 -thank_you,thank you please,parrot,bye,2 -greeting,how's the ai?,parrot,greet,4 -how_busy,does michigan steakhouse have people at dinner?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -how_busy,how busy will the avocado steakhouse be at 730,parrot,avail,0 -thank_you,i'm thankful for you,parrot,bye,2 -goodbye,farewell!,original,bye,2 -goodbye,", goodbye",lambada,bye,2 -yes,yes please,original,book,1 -goodbye,the talk was nice,lambada,bye,2 -calendar,is there an event called amy's surprise party on the calendar?,parrot,avail,0 -greeting,hey,original,greet,4 -reminder_update,make a reminder please,parrot,resched,5 -greeting,what's going on,original,greet,4 -how_busy,how many hours will the restaurant be open?,parrot,avail,0 -goodbye,goodbye now,parrot,bye,2 -no,and it's very false,parrot,cancel,3 -greeting,all right now?,parrot,greet,4 -greeting,aloha,original,greet,4 -yes,correct,original,book,1 -greeting,"hey, how are you doing",lambada,greet,4 -no,sure it's wrong,parrot,cancel,3 -calendar,can you let me know if i have any events on my calendar for saturday?,parrot,avail,0 -date,what date will it be 6 days from now?,original,avail,0 -yes,i'm going to tell you tes,parrot,book,1 -goodbye,bye now,original,bye,2 -goodbye,farewell,original,bye,2 -no,that is so false,original,cancel,3 -yes,positive,original,book,1 -goodbye,nice talk,lambada,bye,2 -yes,confirmed,original,book,1 -yes,i guess,parrot,book,1 -greeting,how's idy doing?,parrot,greet,4 -greeting,how you're treated,parrot,greet,4 -yes,yes that's right,lambada,book,1 -greeting,how's everything?,parrot,greet,4 -yes,yay,lambada,book,1 -greeting,yo,original,greet,4 -greeting,aho,parrot,greet,4 -yes,good,parrot,book,1 -greeting,hola!,original,greet,4 -goodbye,farewell!,original,bye,2 -greeting,whats up,original,greet,4 -no,not true,original,cancel,3 -goodbye,"thanks for chatting, bye",lambada,bye,2 -calendar,what's on my calendar for march 1st?,parrot,avail,0 -yes,i can confirm,parrot,book,1 -yes,say positive,parrot,book,1 -thank_you,thanks again!,original,bye,2 -date,can you tell me the month day or the year of the year?,parrot,avail,0 -greeting,what's happened?,parrot,greet,4 -cancel_reservation,cancel the dinner reservation i made okay,parrot,cancel,3 -no,that's a negation,parrot,cancel,3 -yes,that statement was correct,original,book,1 -yes,ok,original,book,1 -how_busy,how much traffic do they get at dinner time?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -how_busy,how busy is the chili dog at 830pm?,parrot,avail,0 -no,no!,original,cancel,3 -yes,accepted,original,book,1 -goodbye,thank you for talking with me today,parrot,bye,2 -thank_you,many thank,original,bye,2 -no,that's absolutely wrong,parrot,cancel,3 -date,what the day is?,parrot,avail,0 -no,not right now,original,cancel,3 -goodbye,bye!,original,bye,2 -yes,huh,parrot,book,1 -greeting,what's up?,parrot,greet,4 -how_busy,how busy is jiro at noon,parrot,avail,0 -goodbye,i'm leaving,parrot,bye,2 -thank_you,many thank,original,bye,2 -no,not that,original,cancel,3 -goodbye,catch you later,original,bye,2 -no,absolutely false,parrot,cancel,3 -greeting,hi what's going on,parrot,greet,4 -greeting,how ya been,original,greet,4 -no,in hell it's not true,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -how_busy,how busy is chump pans around 12,lambada,avail,0 -date,what date?,parrot,avail,0 -goodbye,good bye,original,bye,2 -how_busy,how busy is a cheesecake factory at 730?,parrot,avail,0 -yes,right,parrot,book,1 -yes,huh,parrot,book,1 -no,that's incorrect!,original,cancel,3 -goodbye,peace,original,bye,2 -yes,yeah yeah,lambada,book,1 -greeting,aloha,original,greet,4 -calendar_update,remove dinner party from my schedule,parrot,resched,5 -no,that is no,lambada,cancel,3 -goodbye,you can talk later,parrot,bye,2 -greeting,what's up,original,greet,4 -goodbye,adios!,original,bye,2 -no,that's a lie,parrot,cancel,3 -thank_you,"thanks, i appreciate it",original,bye,2 -thank_you,nice,parrot,bye,2 -meeting_schedule,do you know when nick meets me today?,parrot,avail,0 -goodbye,good night,original,bye,2 -thank_you,thanks please,original,bye,2 -no,and i'm sorry,parrot,cancel,3 -greeting,hello,original,greet,4 -no,false for sure,original,cancel,3 -greeting,what's my feeling today?,parrot,greet,4 -how_busy,tell me the number of people at the restaurant at 5pm,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -yes,affirmitive,original,book,1 -goodbye,farewell,original,bye,2 -yes,indeed,original,book,1 -no,absolutely not,original,cancel,3 -yes,i'm going to tell you tes,parrot,book,1 -calendar,when is my doctor's appointment?,parrot,avail,0 -calendar,please check my calendar for march 17th,parrot,avail,0 -how_busy,how many times will i be able to get a table at the restaurant,lambada,avail,0 -greeting,how you're treated?,parrot,greet,4 -date,in eight days?,parrot,avail,0 -goodbye,i have to leave,parrot,bye,2 -goodbye,great conversation,parrot,bye,2 -yes,ya,original,book,1 -thank_you,thanks for the help,original,bye,2 -how_busy,can you tell me how busy the restaurant is at 5pm?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -yes,absolutely,original,book,1 -thank_you,thank you,original,bye,2 -greeting,well hello,original,greet,4 -yes,you got it,parrot,book,1 -no,invalid,original,cancel,3 -greeting,how's life treating you,parrot,greet,4 -no,that is erroneous,original,cancel,3 -how_busy,can i wait for a table at red lobster?,parrot,avail,0 -yes,good,parrot,book,1 -yes,good,parrot,book,1 -goodbye,bye bye now,lambada,bye,2 -how_busy,can you tell me how busy red lobster is at 5:30?,lambada,avail,0 -goodbye,talk later,original,bye,2 -no,no no no,parrot,cancel,3 -calendar,tell me what's on my calendar for march 18th?,parrot,avail,0 -date,what's the current date?,parrot,avail,0 -no,negation,parrot,cancel,3 -goodbye,bye,original,bye,2 -yes,"yes, please",parrot,book,1 -greeting,what's happened?,parrot,greet,4 -calendar_update,remove the june 12 event sasha's wedding from my calendar,parrot,resched,5 -no,that's absolutely false,parrot,cancel,3 -thank_you,thank you for the job,parrot,bye,2 -yes,yeap,original,book,1 -yes,definitely yes,parrot,book,1 -no,FALSE,lambada,cancel,3 -greeting,hello ai,parrot,greet,4 -no,the statement is completely wrong,parrot,cancel,3 -greeting,hi what's up,original,greet,4 -greeting,how are you treated?,parrot,greet,4 -goodbye,you're done,parrot,bye,2 -goodbye,cya later,original,bye,2 -schedule_meeting,can you schedule a meeting with steve at the company?,parrot,book,1 -goodbye,lovely conversation,parrot,bye,2 -goodbye,regards,original,bye,2 -date,what's today?,parrot,avail,0 -reminder_update,i have to remind myself,parrot,resched,5 -yes,yep,original,book,1 -cancel_reservation,please cancel my reservation in the grill,parrot,cancel,3 -no,nada,original,cancel,3 -date,tomorrow is the date,parrot,avail,0 -yes,oh-huh,parrot,book,1 -reminder_update,may i be reminded?,parrot,resched,5 -goodbye,sayonara,original,bye,2 -yes,it's positive,parrot,book,1 -thank_you,thanks for coming,parrot,bye,2 -greeting,aloha,original,greet,4 -goodbye,farewell!,original,bye,2 -yes,is true,parrot,book,1 -yes,uh-huh,original,book,1 -how_busy,what time does oklahoma county farmer's market have a long wait?,lambada,avail,0 -meeting_schedule,when will i meet with ann?,parrot,avail,0 -goodbye,my way,parrot,bye,2 -yes,that is correct,original,book,1 -yes,yup,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how long would i have to wait to be seated in alamo pizza,parrot,avail,0 -goodbye,wonderful conversation,lambada,bye,2 -yes,accepted,original,book,1 -greeting,"hello, friend",original,greet,4 -no,that's absolutely false,parrot,cancel,3 -goodbye,adios,original,bye,2 -no,but that's not factual,parrot,cancel,3 -how_busy,should i expect a busy day at olive garden at five,parrot,avail,0 -greeting,what's happening?,parrot,greet,4 -goodbye,nice talk,lambada,bye,2 -greeting,yo,original,greet,4 -yes,oh-huh,parrot,book,1 -thank_you,much obliged,original,bye,2 -no,the wrong answer,parrot,cancel,3 -no,negative,original,cancel,3 -no,naw,parrot,cancel,3 -calendar,what day did you put on my calendar for the first day of school?,parrot,avail,0 -date,today is the date,parrot,avail,0 -no,no it's not,parrot,cancel,3 -thank_you,thanks for this information,lambada,bye,2 -goodbye,buhbye,original,bye,2 -thank_you,thanks again,original,bye,2 -yes,let's do it,parrot,book,1 -meeting_schedule,are there any meetings from noon to 3:00 pm?,lambada,avail,0 -yes,all right,original,book,1 -goodbye,adios!,original,bye,2 -calendar,if you want to see the calendar for february 24th,parrot,avail,0 -yes,i know it's true,parrot,book,1 -greeting,how were you?,parrot,greet,4 -cancel_reservation,call my reservation cancelled,parrot,cancel,3 -greeting,hiya,original,greet,4 -no,this information is false,parrot,cancel,3 -thank_you,thanks for that!,original,bye,2 -goodbye,thank you for chatting later,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -thank_you,awesome thanks,parrot,bye,2 -no,it's overwhelmingly wrong,parrot,cancel,3 -yes,i'm sure it was done,parrot,book,1 -greeting,"hey, ai",original,greet,4 -date,what day is that?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -greeting,wake up ai,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -goodbye,just relax,parrot,bye,2 -no,nay,original,cancel,3 -no,it is not that,lambada,cancel,3 -goodbye,"goodbye, helpful ai device!",original,bye,2 -no,no please,parrot,cancel,3 -how_busy,how long does it take to get a seat in the restaurant,parrot,avail,0 -yes,yes,original,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,hello what's going on?,parrot,greet,4 -greeting,hello siri,original,greet,4 -date,you know the date?,parrot,avail,0 -goodbye,bye!,original,bye,2 -goodbye,see ya later,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -goodbye,"i enjoyed our talk, goodbye",original,bye,2 -yes,yay,lambada,book,1 -thank_you,thank you for my answer,lambada,bye,2 -greeting,hola,original,greet,4 -greeting,hi there,original,greet,4 -thank_you,the best,parrot,bye,2 -yes,just right,parrot,book,1 -meeting_schedule,tell me if i have meetings today,parrot,avail,0 -yes,obviously,parrot,book,1 -goodbye,peace,original,bye,2 -no,false sure,parrot,cancel,3 -how_busy,how long does the restaurant wait before you get seated,parrot,avail,0 -reminder_update,set reminder to feed cat at 3:30,lambada,resched,5 -thank_you,thanks again,original,bye,2 -goodbye,tootles,original,bye,2 -greeting,hello,original,greet,4 -goodbye,bye!,original,bye,2 -yes,confirm,original,book,1 -yes,"yes, please",parrot,book,1 -calendar,i have something to do on wednesday?,parrot,avail,0 -no,nothing,parrot,cancel,3 -reminder_update,set a reminder to pay my taxes,original,resched,5 -thank_you,thank you please,parrot,bye,2 -yes,accept,parrot,book,1 -goodbye,see ya,lambada,bye,2 -date,give me the date,original,avail,0 -no,no!,original,cancel,3 -reminder_update,can you send me a reminder to apply for a credit card for me?,parrot,resched,5 -yes,yay,lambada,book,1 -greeting,salutations!,original,greet,4 -yes,right,parrot,book,1 -date,what's the date?,parrot,avail,0 -no,ill pass,original,cancel,3 -no,no,lambada,cancel,3 -no,no?,parrot,cancel,3 -yes,perfect,parrot,book,1 -how_busy,how many people are expected to be at olive garden at 8:00,lambada,avail,0 -no,naw,original,cancel,3 -no,"please, no",original,cancel,3 -schedule_meeting,can you schedule a meeting with carrie and lisa,parrot,book,1 -goodbye,buhbye,original,bye,2 -greeting,hola!,original,greet,4 -no,no don't do that!,original,cancel,3 -yes,affirmative,original,book,1 -how_busy,how busy is the cheese cake factory at 7am?,parrot,avail,0 -how_busy,check to see how long i'd wait if i went to the outback steakhouse,parrot,avail,0 -how_busy,is the crackling oven working at 6?,parrot,avail,0 -no,that's incorrect!,original,cancel,3 -yes,facts,original,book,1 -yes,accepted,original,book,1 -greeting,hola!,original,greet,4 -yes,that statement was correct,original,book,1 -yes,yep,original,book,1 -yes,yeah,original,book,1 -goodbye,regards,original,bye,2 -no,FALSE,original,cancel,3 -thank_you,i can not thank you enough,original,bye,2 -goodbye,regards,original,bye,2 -reminder_update,please remember something,parrot,resched,5 -how_busy,let me know how busy the teacher at 11 o'clock is,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -goodbye,great talking to you,parrot,bye,2 -thank_you,thanks!,original,bye,2 -meeting_schedule,tell me how many meetings i have with pete for today,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -thank_you,again thanks,parrot,bye,2 -greeting,hello,original,greet,4 -yes,TRUE,original,book,1 -yes,yeah,original,book,1 -greeting,how ife treats you?,parrot,greet,4 -yes,okay,original,book,1 -no,i don't agree,parrot,cancel,3 -cancel_reservation,cancel my reservation with carl in umami,parrot,cancel,3 -date,what's today?,parrot,avail,0 -thank_you,again thanks,parrot,bye,2 -thank_you,good job,lambada,bye,2 -goodbye,buhbye,original,bye,2 -how_busy,can you tell me how busy this italian restaurant is at 5:30 pm?,lambada,avail,0 -no,not right?,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -goodbye,see ya,lambada,bye,2 -no,it's a negative,parrot,cancel,3 -thank_you,okay thanks,original,bye,2 -cancel_reservation,tonight i won't go to dinner,parrot,cancel,3 -no,sorry but not true,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -no,don't agree,parrot,cancel,3 -yes,huh,parrot,book,1 -how_busy,how long is the wait at macaroni grill,original,avail,0 -thank_you,i appreciate you doing that,original,bye,2 -goodbye,my way,parrot,bye,2 -no,not correct,parrot,cancel,3 -no,nay,original,cancel,3 -no,that's incorrect,original,cancel,3 -goodbye,see ya!,original,bye,2 -yes,oh-huh,parrot,book,1 -yes,a fact,parrot,book,1 -yes,positive,original,book,1 -no,you're not right,parrot,cancel,3 -thank_you,thank you for making my life easier,parrot,bye,2 -yes,yes,original,book,1 -date,current day,parrot,avail,0 -no,i must say no,original,cancel,3 -goodbye,later!,original,bye,2 -greeting,wassup,original,greet,4 -how_busy,what's the best time to have a burger without a line?,parrot,avail,0 -no,i'd rather not,parrot,cancel,3 -yes,that's correct,original,book,1 -thank_you,nice,parrot,bye,2 -yes,yes,original,book,1 -yes,definitely yes,parrot,book,1 -greeting,hola,original,greet,4 -yes,so it's checked,parrot,book,1 -how_busy,how busy is macaroni grill at 8pm,lambada,avail,0 -yes,absolutely!,original,book,1 -how_busy,how long does the wait time for a table at red lobster,lambada,avail,0 -yes,that appears true,original,book,1 -goodbye,enjoy my day goodbye,parrot,bye,2 -goodbye,get there soon,lambada,bye,2 -no,no that's not it,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -goodbye,thanks for talking,original,bye,2 -thank_you,thanks for responding,parrot,bye,2 -thank_you,thanks please,original,bye,2 -goodbye,"nice talk, goodbye",lambada,bye,2 -calendar,what's the schedule for march 5?,parrot,avail,0 -yes,it's logical,parrot,book,1 -greeting,nice day,lambada,greet,4 -thank_you,thank you for my time,original,bye,2 -yes,all right,parrot,book,1 -no,no,lambada,cancel,3 -thank_you,nice,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -yes,TRUE,original,book,1 -thank_you,thanks!,original,bye,2 -no,nope,original,cancel,3 -yes,oh-huh,parrot,book,1 -yes,"yes, please",original,book,1 -yes,affirmative,original,book,1 -goodbye,tootles,original,bye,2 -cancel_reservation,i need to cancel my reservation for dinner at outback steakhouse,lambada,cancel,3 -reminder_update,please remember me,parrot,resched,5 -date,what is a month and day in 54 days?,parrot,avail,0 -no,that would be false,original,cancel,3 -date,in 8 days what will it be?,parrot,avail,0 -yes,yay,lambada,book,1 -schedule_meeting,can you sign me up for an meeting in the blue room at 9am?,lambada,book,1 -goodbye,regards,original,bye,2 -greeting,good morning,parrot,greet,4 -greeting,what's up,original,greet,4 -no,i disagree,parrot,cancel,3 -goodbye,peace out,original,bye,2 -thank_you,thanks,original,bye,2 -yes,you got it,parrot,book,1 -greeting,hello,original,greet,4 -greeting,whats up?,parrot,greet,4 -goodbye,goodbyes,parrot,bye,2 -date,i need information about today's date and time,parrot,avail,0 -no,negating,parrot,cancel,3 -how_busy,is the friday's full after 4?,original,avail,0 -greeting,yo,original,greet,4 -how_busy,how long will it take to get a table at buffalo wings?,parrot,avail,0 -goodbye,sign off,parrot,bye,2 -greeting,"hello, good morning",lambada,greet,4 -greeting,"wake up, ai",original,greet,4 -meeting_schedule,i need to know when i'll meet with robert,parrot,avail,0 -no,negative certainly,parrot,cancel,3 -how_busy,tell me if this restaurant is busy at 6 pm,parrot,avail,0 -yes,i know what i get,parrot,book,1 -greeting,hi,original,greet,4 -how_busy,how long will it take to be seated at red lobster,lambada,avail,0 -thank_you,thanks very much for your answer,parrot,bye,2 -yes,yep,original,book,1 -greeting,how've you been feeling,original,greet,4 -yes,positive,parrot,book,1 -yes,"yes, please",parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -no,but that's certainly not true,parrot,cancel,3 -thank_you,i owe you,parrot,bye,2 -how_busy,how busy is the outback steakhouse at 730?,parrot,avail,0 -goodbye,goodbye bye,parrot,bye,2 -how_busy,when will the restaurant be the busiest?,parrot,avail,0 -how_busy,tell me how busy denny's is at 5:30 pm?,lambada,avail,0 -yes,affirmitive,original,book,1 -goodbye,i've got to run now,original,bye,2 -yes,we would say yes,lambada,book,1 -date,what's today?,parrot,avail,0 -greeting,aloha,original,greet,4 -thank_you,thanks for telling me,parrot,bye,2 -no,it is no,original,cancel,3 -greeting,hiya!,original,greet,4 -yes,perfect,parrot,book,1 -date,current date,original,avail,0 -goodbye,peace out!,original,bye,2 -no,nada,original,cancel,3 -greeting,"hello, hello, hello",lambada,greet,4 -how_busy,how busy is red robin at noon,lambada,avail,0 -yes,that's correct,original,book,1 -greeting,are you doing ok?,original,greet,4 -how_busy,does the italian restaurant usually have long queues?,parrot,avail,0 -yes,certainly,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -date,which day is next?,parrot,avail,0 -yes,very true,original,book,1 -how_busy,how long until i can eat chic fil a,parrot,avail,0 -goodbye,peace out!,original,bye,2 -goodbye,see ya,original,bye,2 -greeting,how's the ayi?,parrot,greet,4 -greeting,what's happened?,parrot,greet,4 -date,in five days?,parrot,avail,0 -thank_you,thanks for the info,original,bye,2 -no,that's very negative,parrot,cancel,3 -how_busy,chili's busy around 730?,parrot,avail,0 -yes,positive,original,book,1 -no,erroneous,parrot,cancel,3 -greeting,"hey, ai",original,greet,4 -calendar_update,go ahead and cancel the appointment scheduled yesterday,parrot,resched,5 -meeting_schedule,is there a meeting with sam?,parrot,avail,0 -greeting,what i feel?,parrot,greet,4 -yes,definitely yes,parrot,book,1 -calendar,can you tell me if i have appointments for march 17?,parrot,avail,0 -no,it'd be awful,parrot,cancel,3 -goodbye,was nice to catch you,parrot,bye,2 -no,FALSE,lambada,cancel,3 -how_busy,at 6 o'clock can i see a lot of people at olive garden?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -no,"no, that is invalid",original,cancel,3 -thank_you,again thanks,parrot,bye,2 -calendar_update,remove dinner parties from january 14,lambada,resched,5 -goodbye,until next time!,original,bye,2 -no,it's so bad,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -reminder_update,please remind me to do my resume,parrot,resched,5 -goodbye,im leaving,parrot,bye,2 -reminder_update,please make a reminder,original,resched,5 -no,thanks no,parrot,cancel,3 -date,this is the day,parrot,avail,0 -yes,of course,original,book,1 -thank_you,gracias,original,bye,2 -yes,correct,original,book,1 -no,that's untrue,parrot,cancel,3 -greeting,what's up,original,greet,4 -goodbye,farewell!,original,bye,2 -no,it's a lie,parrot,cancel,3 -greeting,good morning,parrot,greet,4 -no,nay,original,cancel,3 -thank_you,your efforts won't be forgotten,parrot,bye,2 -cancel_reservation,repeal the dinner reservation,original,cancel,3 -greeting,how is idy?,parrot,greet,4 -meeting_schedule,are there any meetings between 3 and 5 today?,parrot,avail,0 -yes,10-Apr,original,book,1 -no,not good,parrot,cancel,3 -greeting,hey,original,greet,4 -greeting,hey,original,greet,4 -no,negation,parrot,cancel,3 -yes,agreed,original,book,1 -goodbye,later gator!,original,bye,2 -greeting,salutation,parrot,greet,4 -schedule_meeting,put a meeting on my schedule with pam for 3:00pm on february 11th,original,book,1 -thank_you,thank ya!,original,bye,2 -no,that's completely false,original,cancel,3 -greeting,how's life in my neighborhood?,parrot,greet,4 -date,today?,parrot,avail,0 -meeting_schedule,do i have to be at any meetings today?,original,avail,0 -calendar,tell me what's on my calendar for march 31st,parrot,avail,0 -goodbye,talk later,original,bye,2 -goodbye,goodnight,original,bye,2 -yes,accept,parrot,book,1 -goodbye,tootles,original,bye,2 -goodbye,adios,original,bye,2 -greeting,how's ife treating you,original,greet,4 -how_busy,is she busy around 5pm?,parrot,avail,0 -meeting_schedule,is my meeting with my boss today?,parrot,avail,0 -goodbye,i have to leave now?,parrot,bye,2 -yes,yeap,original,book,1 -goodbye,sign off,parrot,bye,2 -yes,definitely,original,book,1 -yes,sure thing,original,book,1 -date,give me a date,parrot,avail,0 -thank_you,thanks for that!,original,bye,2 -no,no way!,original,cancel,3 -yes,"yup, that's true",original,book,1 -yes,that's a yes,original,book,1 -thank_you,thank you for making my life easier,parrot,bye,2 -yes,correct,original,book,1 -yes,accepted,original,book,1 -cancel_reservation,i won't need the reservation,parrot,cancel,3 -goodbye,cya later,original,bye,2 -date,list the next month?,parrot,avail,0 -yes,just right,parrot,book,1 -greeting,how's life?,parrot,greet,4 -yes,all right,parrot,book,1 -thank_you,thanks so much,original,bye,2 -cancel_reservation,cancel my reservation for chris,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -greeting,hi there alexa,original,greet,4 -goodbye,a good talk,parrot,bye,2 -greeting,heller,original,greet,4 -yes,absolutely,original,book,1 -yes,"yep, that's right",original,book,1 -how_busy,wait more than an hour at the italian place?,parrot,avail,0 -goodbye,bye,original,bye,2 -meeting_schedule,do meetings with jimmy go between 5 and 10?,parrot,avail,0 -cancel_reservation,i have to cancel my reservation for sam in umami,parrot,cancel,3 -reminder_update,add a reminder to make me go grocery shopping,parrot,resched,5 -date,date please,original,avail,0 -no,not that one,original,cancel,3 -thank_you,i thank you,original,bye,2 -calendar_update,get rid of this event this afternoon,lambada,resched,5 -goodbye,see ya later,original,bye,2 -date,let me know which day is next,parrot,avail,0 -goodbye,talk later,original,bye,2 -how_busy,how long will the wait be for a t-shirt recut at mcdonald's?,parrot,avail,0 -greeting,hello bs,parrot,greet,4 -calendar,please read my calendar,parrot,avail,0 -greeting,heyo,original,greet,4 -yes,yeah,original,book,1 -yes,is true,parrot,book,1 -cancel_reservation,cancel my reservation for 4 at red robin,original,cancel,3 -no,no that's a lie,parrot,cancel,3 -thank_you,thank you for my reply,parrot,bye,2 -greeting,welcome,parrot,greet,4 -no,negative sure,parrot,cancel,3 -no,negative,original,cancel,3 -date,what's the date?,parrot,avail,0 -yes,confirm,original,book,1 -yes,yes,original,book,1 -greeting,hi,original,greet,4 -goodbye,adios,original,bye,2 -greeting,do you feel?,parrot,greet,4 -meeting_schedule,what's my meeting calendar?,parrot,avail,0 -how_busy,if i go to a cheese cake factory how long will i have to wait,parrot,avail,0 -yes,oh-huh,parrot,book,1 -goodbye,farewell,original,bye,2 -greeting,ahoy there,lambada,greet,4 -how_busy,how busy is the imanas place at 6,lambada,avail,0 -no,no!,original,cancel,3 -greeting,hey fellow,parrot,greet,4 -goodbye,have fun?,lambada,bye,2 -no,FALSE,lambada,cancel,3 -calendar_update,add a wedding to my calendar on march 1,parrot,resched,5 -yes,absolutely,original,book,1 -goodbye,thanks for talking,original,bye,2 -no,ill pass,original,cancel,3 -greeting,hey there!,original,greet,4 -thank_you,thanks,original,bye,2 -goodbye,good luck,lambada,bye,2 -reminder_update,i have to take out the garbage in an hour,parrot,resched,5 -goodbye,later goodbye,parrot,bye,2 -how_busy,how long will the wait at buffalo wild wings be?,parrot,avail,0 -goodbye,talk to me later,parrot,bye,2 -greeting,how's my family going?,parrot,greet,4 -reminder_update,please remember something,parrot,resched,5 -yes,huh,parrot,book,1 -no,i'd rather not answer,parrot,cancel,3 -how_busy,how long will it take to be seated at the grocer,lambada,avail,0 -greeting,what i feel?,parrot,greet,4 -greeting,how's life,original,greet,4 -date,i would like to know what the date is for tomorrow,lambada,avail,0 -yes,yes,original,book,1 -goodbye,"later, goodbye",lambada,bye,2 -goodbye,good luck,lambada,bye,2 -date,which day will it be in five days,parrot,avail,0 -greeting,how's everything,original,greet,4 -reminder_update,set a reminder for later,original,resched,5 -greeting,how were you?,parrot,greet,4 -goodbye,fairwell,original,bye,2 -goodbye,goodbyes soon,parrot,bye,2 -goodbye,farewell!,original,bye,2 -yes,is true,parrot,book,1 -goodbye,bye-bye,original,bye,2 -no,nope,original,cancel,3 -goodbye,goodbye to yours,parrot,bye,2 -no,no that's not true,parrot,cancel,3 -reminder_update,add a reminder,lambada,resched,5 -no,that can't be true?,parrot,cancel,3 -date,what day?,parrot,avail,0 -thank_you,i'm glad you laughed,parrot,bye,2 -how_busy,how busy will chili be at 5 pm?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -date,what is tomorrow's date?,original,avail,0 -meeting_schedule,wanna meet roger?,parrot,avail,0 -yes,TRUE,original,book,1 -thank_you,i'm happy with the answer,parrot,bye,2 -thank_you,my thanks,parrot,bye,2 -greeting,hello good morning,parrot,greet,4 -reminder_update,please remember something,parrot,resched,5 -thank_you,"that'll work, good job!",original,bye,2 -no,that's not necessarily true,lambada,cancel,3 -no,i disagree,parrot,cancel,3 -no,nada,original,cancel,3 -greeting,hola!,original,greet,4 -schedule_meeting,is there a free room from 12 to 1?,parrot,book,1 -yes,affirmative,original,book,1 -yes,great,original,book,1 -no,nada,original,cancel,3 -date,today?,parrot,avail,0 -how_busy,how busy will chili be at 5 pm,parrot,avail,0 -meeting_schedule,when is my meeting with sam planned?,parrot,avail,0 -goodbye,i loved talking to you,parrot,bye,2 -goodbye,talk later,original,bye,2 -greeting,how's this going?,parrot,greet,4 -no,absolutely not,original,cancel,3 -thank_you,thanks again!,original,bye,2 -thank_you,you've been great,parrot,bye,2 -no,i meant no,original,cancel,3 -no,nothing,parrot,cancel,3 -thank_you,special thanks to you,original,bye,2 -no,no good,original,cancel,3 -meeting_schedule,when is my meeting with frank planned?,parrot,avail,0 -date,what is today?,original,avail,0 -yes,yeap,original,book,1 -how_busy,please tell me about olive garden's typical table at 8pm?,parrot,avail,0 -no,"no, that'd be my response",lambada,cancel,3 -reminder_update,make me remember to buy groceries,parrot,resched,5 -greeting,how's everything,original,greet,4 -yes,i'm going to tell you tes,parrot,book,1 -calendar,tell me what's going on on march 6th,parrot,avail,0 -no,FALSE,lambada,cancel,3 -goodbye,fairwell,original,bye,2 -no,it's negative,parrot,cancel,3 -no,not right,parrot,cancel,3 -how_busy,how long will i have to wait for a burger at 8?,parrot,avail,0 -how_busy,is the restaurant at 2pm crowded?,parrot,avail,0 -thank_you,my thanks,parrot,bye,2 -greeting,hey fellows,parrot,greet,4 -thank_you,i'm very grateful,parrot,bye,2 -greeting,salutation,parrot,greet,4 -calendar,what's going on the next day of march,parrot,avail,0 -thank_you,i owe you,parrot,bye,2 -how_busy,how busy is the cheesesteak at 7 o'clock,parrot,avail,0 -cancel_reservation,i have to cancel my reservation in tostada,parrot,cancel,3 -yes,ya,original,book,1 -yes,yeap,original,book,1 -no,that's not right,original,cancel,3 -yes,certainly,parrot,book,1 -yes,"affirmative, go ahead",original,book,1 -goodbye,goodbye soon,lambada,bye,2 -no,it's negative,parrot,cancel,3 -calendar,tell me what's going on on sunday,parrot,avail,0 -greeting,salutation,parrot,greet,4 -greeting,hello what is happening,lambada,greet,4 -goodbye,good call,parrot,bye,2 -date,what is that day?,parrot,avail,0 -date,date please,original,avail,0 -how_busy,how busy chili's will be at 11 o'clock in the evening?,parrot,avail,0 -thank_you,good job with assisting me,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -greeting,how's the ayi doing?,parrot,greet,4 -greeting,you good?,parrot,greet,4 -reminder_update,set reminders for storing the money,parrot,resched,5 -yes,absolutely,original,book,1 -greeting,bonjour,original,greet,4 -yes,sure thing,original,book,1 -no,not happening,original,cancel,3 -greeting,hello ai,parrot,greet,4 -goodbye,great conversation,parrot,bye,2 -no,that's so wrong,parrot,cancel,3 -calendar_update,please remove the appointment i scheduled for monday,parrot,resched,5 -yes,affirmitive,original,book,1 -meeting_schedule,do we meet today?,parrot,avail,0 -schedule_meeting,how do i submit a new meeting request?,parrot,book,1 -greeting,how's it hanging?,parrot,greet,4 -calendar,show me my calendar?,parrot,avail,0 -calendar_update,take work off my calendar for may 7,parrot,resched,5 -yes,yeah yeah,lambada,book,1 -thank_you,"nice, excellent!",original,bye,2 -no,negatory?,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -no,that's incorrect!,original,cancel,3 -cancel_reservation,can you cancel my reservation for chris at smith and wollensky tonight?,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -how_busy,how long will i have to wait for a table in tamales,parrot,avail,0 -goodbye,sayonara ,parrot,bye,2 -goodbye,maybe next time,parrot,bye,2 -no,but certainly not,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -greeting,salutation,parrot,greet,4 -yes,certainly true,parrot,book,1 -thank_you,you did it,parrot,bye,2 -yes,correct,original,book,1 -goodbye,goodbye to you,original,bye,2 -yes,huh huh,parrot,book,1 -greeting,what i feel?,parrot,greet,4 -greeting,"hello, how are you",original,greet,4 -reminder_update,give me a reminder to do something nice in ny?,parrot,resched,5 -goodbye,next time we'll talk,parrot,bye,2 -yes,ya,original,book,1 -date,what date is it?,original,avail,0 -reminder_update,add a reminder to bring the checkbook,lambada,resched,5 -goodbye,have to go,parrot,bye,2 -greeting,how's my doing?,parrot,greet,4 -no,negative,original,cancel,3 -goodbye,afterward,parrot,bye,2 -greeting,how've you been?,parrot,greet,4 -goodbye,peace,original,bye,2 -goodbye,"nice talk, goodbye",lambada,bye,2 -no,it turns out that's not true,parrot,cancel,3 -goodbye,ill leave now,parrot,bye,2 -yes,that's correct,original,book,1 -goodbye,adios,original,bye,2 -date,i'd like to know what the date is today,parrot,avail,0 -goodbye,glad we talked,parrot,bye,2 -greeting,hiya!,original,greet,4 -greeting,salutations,parrot,greet,4 -thank_you,my thanks,parrot,bye,2 -thank_you,appreciated,original,bye,2 -how_busy,how long will i have to wait at ihop,lambada,avail,0 -yes,that's the truth,original,book,1 -calendar_update,i want you to cancel the event on 15 april,parrot,resched,5 -how_busy,can you tell me what the wait is right now at cracker barrel?,parrot,avail,0 -no,negatory?,parrot,cancel,3 -no,that is not the case,original,cancel,3 -goodbye,good luck,lambada,bye,2 -no,that seems wrong,lambada,cancel,3 -no,no no it's not,parrot,cancel,3 -no,that's totally wrong!,original,cancel,3 -greeting,yo,original,greet,4 -yes,obviously,parrot,book,1 -schedule_meeting,make sure i have a meeting room for 9am on friday,parrot,book,1 -goodbye,goodbye later,parrot,bye,2 -greeting,salutations,parrot,greet,4 -greeting,how is life?,parrot,greet,4 -greeting,salutations!,original,greet,4 -no,i think not,original,cancel,3 -date,"what's the current date, month and year",original,avail,0 -goodbye,say goodbye for now,parrot,bye,2 -no,not really,original,cancel,3 -no,so that's no,parrot,cancel,3 -no,no that's wrong,original,cancel,3 -greeting,"howdy, what's new",original,greet,4 -yes,approved,original,book,1 -greeting,salutations,parrot,greet,4 -schedule_meeting,need a meeting room,parrot,book,1 -no,it's a lie,parrot,cancel,3 -how_busy,what will the olive garden be like at 10 o'clock?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -greeting,how've you been feeling,original,greet,4 -no,nope,original,cancel,3 -goodbye,bye my friend,parrot,bye,2 -goodbye,goodbye ai,parrot,bye,2 -yes,yeah,original,book,1 -greeting,"wake up, ai",original,greet,4 -goodbye,see ya,original,bye,2 -greeting,salutations!,original,greet,4 -no,negatory?,parrot,cancel,3 -no,what is it that is not true?,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -greeting,hey hey!,original,greet,4 -goodbye,bye bye,lambada,bye,2 -calendar_update,lunch with deb today at noon,parrot,resched,5 -meeting_schedule,what's my day's schedule?,parrot,avail,0 -thank_you,well done,parrot,bye,2 -greeting,how's idy?,parrot,greet,4 -greeting,what's happening?,parrot,greet,4 -how_busy,will there be a long wait for a table at potato salad,lambada,avail,0 -yes,huh,parrot,book,1 -greeting,you good?,parrot,greet,4 -greeting,salutations,parrot,greet,4 -yes,positive,parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,ahoy hoy,original,greet,4 -calendar_update,eliminate the event scheduled for tuesday,parrot,resched,5 -goodbye,see ya,original,bye,2 -greeting,"hey, ai",original,greet,4 -yes,yeap,original,book,1 -no,the negator,parrot,cancel,3 -thank_you,i'm grateful for you,parrot,bye,2 -greeting,how's it going?,parrot,greet,4 -goodbye,peace out,original,bye,2 -calendar_update,remove lunch with steve on friday please,parrot,resched,5 -calendar,please help me find my schedule for january 4th,parrot,avail,0 -no,no!,original,cancel,3 -date,can you tell me what the date is?,parrot,avail,0 -no,that's incorrect!,original,cancel,3 -goodbye,im leaving goodbye,parrot,bye,2 -goodbye,thanks bye bye!,original,bye,2 -greeting,aho,parrot,greet,4 -thank_you,thanks please,original,bye,2 -calendar,let's know what's on my calendar for march 15,parrot,avail,0 -no,it's overwhelmingly wrong,parrot,cancel,3 -yes,great,original,book,1 -goodbye,later goodbye,parrot,bye,2 -yes,oh yes,original,book,1 -greeting,how's that hanging?,parrot,greet,4 -goodbye,goodbyes,parrot,bye,2 -greeting,aloha,original,greet,4 -date,describe the day?,parrot,avail,0 -greeting,good day,original,greet,4 -how_busy,are french bakers busy around 11 o'clock in the evening?,parrot,avail,0 -date,what's today's date,original,avail,0 -thank_you,thank you!,original,bye,2 -goodbye,later,original,bye,2 -goodbye,will leave now,parrot,bye,2 -meeting_schedule,please read my schedule,parrot,avail,0 -goodbye,farewell,original,bye,2 -yes,yep,original,book,1 -no,don't agree,parrot,cancel,3 -yes,good,parrot,book,1 -greeting,ahoy,lambada,greet,4 -thank_you,thanks,original,bye,2 -yes,that's right,original,book,1 -goodbye,goodbye,original,bye,2 -goodbye,see ya,lambada,bye,2 -goodbye,goodbye,original,bye,2 -no,invalid,original,cancel,3 -meeting_schedule,when is my next meeting with mike scheduled for?,parrot,avail,0 -greeting,how's idy?,parrot,greet,4 -greeting,have you felt?,parrot,greet,4 -how_busy,is tilman's busy at 5?,lambada,avail,0 -date,what's the date now?,parrot,avail,0 -reminder_update,you know something?,parrot,resched,5 -yes,absolutely,original,book,1 -yes,indeed,parrot,book,1 -how_busy,how busy is the chocolate fountain around 10?,parrot,avail,0 -no,not right now,original,cancel,3 -greeting,aloha,original,greet,4 -greeting,hi there,original,greet,4 -no,please no,parrot,cancel,3 -thank_you,thanks very much,parrot,bye,2 -schedule_meeting,could you schedule a meeting for today?,parrot,book,1 -greeting,you're all right?,parrot,greet,4 -meeting_schedule,what meetings do i have scheduled today?,original,avail,0 -calendar,bowling on my calendar?,parrot,avail,0 -greeting,how've you been,original,greet,4 -greeting,how are things?,parrot,greet,4 -goodbye,good luck,lambada,bye,2 -no,i'll say no,parrot,cancel,3 -no,nope that's not right,parrot,cancel,3 -goodbye,farewell,original,bye,2 -cancel_reservation,the reservation for 20 at ihop is no longer required,parrot,cancel,3 -how_busy,how busy will the macaroni grill be at 5 pm,parrot,avail,0 -thank_you,i have to thank you for your time,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -goodbye,bye!,original,bye,2 -meeting_schedule,do you have any meetings today?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,"that's all, bye",original,bye,2 -how_busy,is the restaurant busy at lunchtime?,original,avail,0 -cancel_reservation,"cancel my reservation for dinner this saturday, please",original,cancel,3 -goodbye,go easy,parrot,bye,2 -yes,facts,original,book,1 -no,i'll pass,original,cancel,3 -yes,that's a fact,parrot,book,1 -how_busy,how long do i have to wait if i want to sit at macadamia?,parrot,avail,0 -how_busy,what is the best time to go to get a burger without a line?,original,avail,0 -thank_you,i appreciate that,original,bye,2 -thank_you,appreciated,original,bye,2 -cancel_reservation,i need you to cancel my reservation for five at red robin,parrot,cancel,3 -greeting,hey fellows,parrot,greet,4 -greeting,good evening,original,greet,4 -cancel_reservation,i don't want my reservation anymore,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -no,not right now,original,cancel,3 -thank_you,youre a doll,original,bye,2 -cancel_reservation,take away my reservation at 4pm please,parrot,cancel,3 -no,that's incorrect,original,cancel,3 -reminder_update,a reminder to wash the shower,parrot,resched,5 -date,what's my date tomorrow?,parrot,avail,0 -thank_you,okay thanks,original,bye,2 -yes,it's certainly true,parrot,book,1 -greeting,salutations,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -reminder_update,set reminder for 2 pm to feed the cat,lambada,resched,5 -thank_you,you've been great,parrot,bye,2 -yes,approved,original,book,1 -greeting,what's happened?,parrot,greet,4 -no,"no, definitely not",original,cancel,3 -greeting,heyo,original,greet,4 -no,i wouldn't like that,parrot,cancel,3 -yes,is true,parrot,book,1 -yes,confirmed,original,book,1 -how_busy,can you tell me how busy ihop is at 7:00?,lambada,avail,0 -goodbye,good-bye,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -yes,accepted,original,book,1 -goodbye,"bye-bye, my friend",lambada,bye,2 -no,negatory,original,cancel,3 -greeting,why hello?,original,greet,4 -goodbye,buhbye,original,bye,2 -thank_you,okay thank you,parrot,bye,2 -schedule_meeting,i have to know how to find a new meeting,parrot,book,1 -no,negative sure,parrot,cancel,3 -greeting,what's going on,original,greet,4 -goodbye,farewell!,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,i don't think it's appropriate,parrot,cancel,3 -yes,yes,original,book,1 -date,what's the date today,original,avail,0 -yes,obviously,parrot,book,1 -date,can you tell me what the date will be in 2 days?,parrot,avail,0 -thank_you,i appreciate what you did,original,bye,2 -yes,i guess,parrot,book,1 -goodbye,see ya!,original,bye,2 -yes,yeah you got it,lambada,book,1 -meeting_schedule,what is today's meeting hour?,parrot,avail,0 -yes,confirm,original,book,1 -goodbye,"goodbye, ai assistant",original,bye,2 -meeting_schedule,when's my meeting?,parrot,avail,0 -greeting,"hey, what's new",original,greet,4 -yes,exactly right,original,book,1 -cancel_reservation,i have to cancel my reservation for 2 at franklin's grill,parrot,cancel,3 -greeting,how're you?,parrot,greet,4 -greeting,get up ai,parrot,greet,4 -reminder_update,set a reminder to pay the bill,lambada,resched,5 -reminder_update,the next time it rains remind me to close the windows,parrot,resched,5 -yes,yeap,original,book,1 -reminder_update,set a reminder for me,original,resched,5 -yes,yup,original,book,1 -goodbye,peace out!,original,bye,2 -yes,exactly right,original,book,1 -yes,yeah,original,book,1 -goodbye,i'm saying goodbye now,original,bye,2 -no,i'll say no,parrot,cancel,3 -thank_you,please thank you,lambada,bye,2 -no,absolutely not,original,cancel,3 -thank_you,and i'm grateful,parrot,bye,2 -yes,it's true,original,book,1 -how_busy,how busy is toby at 11 o'clock?,parrot,avail,0 -yes,absolutely!,original,book,1 -goodbye,i enjoyed our goodbye talk,parrot,bye,2 -how_busy,what if there's a long wait in the cheese cake factory?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -yes,yup,original,book,1 -goodbye,i'm out,parrot,bye,2 -no,naw,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -yes,it'd be great,parrot,book,1 -how_busy,tell me the wait for a seat at the cheesecake factory?,parrot,avail,0 -greeting,bonjour,original,greet,4 -no,negation,parrot,cancel,3 -yes,let's do it,parrot,book,1 -goodbye,goodbye,original,bye,2 -calendar,tell me what my calendar looks like for march 13?,lambada,avail,0 -goodbye,later then,lambada,bye,2 -no,it's a negation,parrot,cancel,3 -meeting_schedule,what meetings are scheduled for today?,original,avail,0 -greeting,how are things with you,original,greet,4 -yes,facts,original,book,1 -thank_you,i have to thank you for your time,parrot,bye,2 -calendar,tell me what's on my calendar for march 12?,parrot,avail,0 -how_busy,do you know how busy chili's is at 7:30?,lambada,avail,0 -calendar,please tell me what's on my calendar for march 14th,parrot,avail,0 -greeting,yo,original,greet,4 -how_busy,how long is the restaurant usually crowded,parrot,avail,0 -goodbye,later gater,original,bye,2 -calendar_update,can you delete this event from my calendar?,parrot,resched,5 -goodbye,good conversation,parrot,bye,2 -calendar_update,leave the appointment i scheduled for friday off,lambada,resched,5 -greeting,how're you?,parrot,greet,4 -yes,positive,parrot,book,1 -meeting_schedule,what is my schedule?,parrot,avail,0 -yes,"correct, that's true",original,book,1 -greeting,hi what's going on?,parrot,greet,4 -yes,sure,original,book,1 -yes,TRUE,lambada,book,1 -goodbye,peace out!,original,bye,2 -yes,correct,original,book,1 -thank_you,my thanks,parrot,bye,2 -greeting,why hello?,original,greet,4 -schedule_meeting,"i need meeting rooms between 9:00 am and 11:00 am, are there any available",original,book,1 -thank_you,i'm thankful,original,bye,2 -yes,that's correct,original,book,1 -greeting,how's everything,original,greet,4 -thank_you,i appeciate it,parrot,bye,2 -goodbye,goodbye ai,parrot,bye,2 -greeting,how are you,original,greet,4 -thank_you,I owe you one,parrot,bye,2 -goodbye,bye!,original,bye,2 -goodbye,afterward,parrot,bye,2 -no,don't agree,parrot,cancel,3 -calendar,do you have any events on my calendar for march 2nd?,parrot,avail,0 -yes,"yup, that's true",original,book,1 -calendar_update,cancel the event scheduled for thursday,lambada,resched,5 -meeting_schedule,have a meeting today?,parrot,avail,0 -no,that's negative,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -thank_you,thanks for the update,lambada,bye,2 -greeting,hello bs,parrot,greet,4 -yes,it's a fact,parrot,book,1 -goodbye,afterward,parrot,bye,2 -no,it's not right,parrot,cancel,3 -date,date tomorrow,parrot,avail,0 -how_busy,what's the most busy time to go to chili's at dinner,lambada,avail,0 -goodbye,bye,original,bye,2 -goodbye,goodbye,original,bye,2 -how_busy,how long is the wait time in this restaurant,parrot,avail,0 -no,that is erroneous,original,cancel,3 -reminder_update,remember to call bob,parrot,resched,5 -thank_you,you've been great,parrot,bye,2 -goodbye,i'm leaving,parrot,bye,2 -yes,TRUE,original,book,1 -yes,you're right,original,book,1 -goodbye,great talk,lambada,bye,2 -greeting,heller,original,greet,4 -greeting,hello there,original,greet,4 -no,no that's a false statement,parrot,cancel,3 -greeting,hiya!,original,greet,4 -how_busy,does this restaurant have a high wait for a table at 8:30?,lambada,avail,0 -greeting,whats up?,parrot,greet,4 -yes,right,parrot,book,1 -date,what is today?,original,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,aho,parrot,greet,4 -date,list the current days?,parrot,avail,0 -greeting,yo,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -no,naw,original,cancel,3 -date,i need to know today's date please,original,avail,0 -goodbye,i'm leaving,parrot,bye,2 -greeting,salutations!,original,greet,4 -yes,that seems true,original,book,1 -calendar,can you tell me what is currently on my calendar for march 3?,lambada,avail,0 -goodbye,tootles,original,bye,2 -no,that isn't right,original,cancel,3 -how_busy,how long is the restaurant line before we go,original,avail,0 -calendar_update,make sure the trip to the summit is clear in my calendar,parrot,resched,5 -thank_you,nice,parrot,bye,2 -thank_you,i appreciate your answer,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -no,but no way?,parrot,cancel,3 -reminder_update,remember to check the mailbox,parrot,resched,5 -goodbye,greetings,parrot,bye,2 -yes,that's correct,original,book,1 -cancel_reservation,cancel my reservation for 3 at carlos jr,original,cancel,3 -no,that can't be true?,parrot,cancel,3 -greeting,how's life,original,greet,4 -greeting,salutation,parrot,greet,4 -greeting,what's new?,parrot,greet,4 -yes,accept,parrot,book,1 -how_busy,tell me how busy the olive garden is at 6 am?,lambada,avail,0 -greeting,how's life,original,greet,4 -calendar,check my calendar,parrot,avail,0 -greeting,how's everything,original,greet,4 -meeting_schedule,how many gatherings between 2 and 3 are available?,parrot,avail,0 -yes,ya,original,book,1 -reminder_update,please remind me to do it,parrot,resched,5 -greeting,hey how's it hanging,original,greet,4 -no,i would prefer not,original,cancel,3 -yes,ya,original,book,1 -date,where's the date tomorrow?,parrot,avail,0 -goodbye,good bye,original,bye,2 -yes,TRUE,lambada,book,1 -date,tell me the date this month,parrot,avail,0 -thank_you,so grateful,parrot,bye,2 -greeting,salutations!,original,greet,4 -goodbye,i have to go now,lambada,bye,2 -yes,i'll check that out,parrot,book,1 -no,that's incorrect!,original,cancel,3 -thank_you,thankyou,parrot,bye,2 -thank_you,thanks!,original,bye,2 -date,do you know what the date is in three months?,parrot,avail,0 -thank_you,thank ya!,original,bye,2 -greeting,wassup,original,greet,4 -greeting,how's the ayi?,parrot,greet,4 -date,date please,original,avail,0 -goodbye,buhbye,original,bye,2 -greeting,hey there!,original,greet,4 -greeting,what's happening?,parrot,greet,4 -yes,certainly,parrot,book,1 -yes,that would be correct,original,book,1 -goodbye,wonderful conversation,lambada,bye,2 -yes,it's true,original,book,1 -no,certainly false,parrot,cancel,3 -greeting,heyo,original,greet,4 -yes,perfect,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -yes,yeap,original,book,1 -thank_you,thanks for trying,original,bye,2 -goodbye,"later, good luck",lambada,bye,2 -no,that's erroneous,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -yes,you got it,parrot,book,1 -no,"no, it's not",lambada,cancel,3 -yes,yeap,original,book,1 -greeting,hiya,original,greet,4 -greeting,good evening,original,greet,4 -no,erroneous,parrot,cancel,3 -date,in 100 days?,parrot,avail,0 -how_busy,tell me how busy the macaroni grill will be around 8pm?,parrot,avail,0 -yes,thats right,original,book,1 -how_busy,how busy is the restaurant before dinner,lambada,avail,0 -reminder_update,new reminder please,lambada,resched,5 -thank_you,good job with trying to accomplish something,lambada,bye,2 -yes,"yes, this is true",original,book,1 -yes,obviously,parrot,book,1 -reminder_update,can you tell me something?,parrot,resched,5 -yes,TRUE,lambada,book,1 -yes,certainly,parrot,book,1 -yes,indeed,original,book,1 -greeting,what's up?,parrot,greet,4 -no,no way!,original,cancel,3 -greeting,how ya been,original,greet,4 -goodbye,im leaving goodbye,parrot,bye,2 -greeting,how's my day been?,parrot,greet,4 -goodbye,later,original,bye,2 -greeting,heyo,original,greet,4 -thank_you,you helped me out,parrot,bye,2 -goodbye,farewell!,original,bye,2 -thank_you,thank ya!,original,bye,2 -no,it's a negation,parrot,cancel,3 -goodbye,later gator!,original,bye,2 -thank_you,gracias,original,bye,2 -no,no way!,original,cancel,3 -goodbye,regards,original,bye,2 -yes,confirmed,original,book,1 -yes,huh huh,parrot,book,1 -thank_you,awesome thanks,parrot,bye,2 -greeting,how's everything,original,greet,4 -yes,approved,original,book,1 -goodbye,a good talk,parrot,bye,2 -meeting_schedule,what's my scheduled meeting today?,parrot,avail,0 -cancel_reservation,discard my dinner reservation,parrot,cancel,3 -thank_you,much obliged,original,bye,2 -date,is it monday?,parrot,avail,0 -yes,that's right,original,book,1 -yes,exactly right,original,book,1 -yes,yay,lambada,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -calendar,"what've i got set for friday, the 13th, of next year",original,avail,0 -no,i don't want that,parrot,cancel,3 -yes,that's true,original,book,1 -no,FALSE,original,cancel,3 -goodbye,i'll leave,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -yes,ok,original,book,1 -meeting_schedule,what's my schedule for today?,parrot,avail,0 -thank_you,i'm thankful,original,bye,2 -yes,it's logical,parrot,book,1 -reminder_update,i have to set up a reminder for myself,parrot,resched,5 -no,nothing,parrot,cancel,3 -no,nada,original,cancel,3 -how_busy,wait for red lobster?,parrot,avail,0 -goodbye,later then,lambada,bye,2 -thank_you,"awesome, thanks",original,bye,2 -no,that’s not correct,original,cancel,3 -greeting,what's happening?,parrot,greet,4 -goodbye,maybe next time,parrot,bye,2 -greeting,bonjour,original,greet,4 -goodbye,buhbye,original,bye,2 -yes,agreed,original,book,1 -meeting_schedule,what's my meeting plan?,parrot,avail,0 -greeting,hello ai,parrot,greet,4 -yes,yay,lambada,book,1 -yes,oh-huh,parrot,book,1 -yes,yeah,original,book,1 -greeting,hello what's up?,parrot,greet,4 -goodbye,goodnight,original,bye,2 -date,what's the date?,parrot,avail,0 -thank_you,thanks a million,original,bye,2 -goodbye,signing off,original,bye,2 -goodbye,tootles?,parrot,bye,2 -no,no no no,parrot,cancel,3 -yes,yep,original,book,1 -thank_you,you've tried,parrot,bye,2 -date,list the next week?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -greeting,hey bs,lambada,greet,4 -thank_you,"nice, excellent!",original,bye,2 -yes,perfect,parrot,book,1 -yes,yeah yeah,lambada,book,1 -how_busy,how much to wait before dining in the jack in the box at 4 pm,original,avail,0 -goodbye,i've got to go,lambada,bye,2 -no,"no, that is invalid",original,cancel,3 -meeting_schedule,check the time of the meeting scheduled today,parrot,avail,0 -yes,sure thing,original,book,1 -goodbye,it's over,parrot,bye,2 -calendar_update,please add lunch and catch up with lisa on friday to my calendar,original,resched,5 -yes,yeah,original,book,1 -how_busy,how busy will the mac and cheese be at 5pm?,parrot,avail,0 -no,i'll pass,original,cancel,3 -no,negating,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -goodbye,good-bye,parrot,bye,2 -schedule_meeting,book a meeting room for 9am on tuesday,parrot,book,1 -greeting,tell me how you feel?,lambada,greet,4 -yes,TRUE,original,book,1 -no,that's no way,parrot,cancel,3 -date,what date this month?,parrot,avail,0 -no,not that,original,cancel,3 -goodbye,be careful then,lambada,bye,2 -greeting,"hello, what's up",original,greet,4 -date,what's my day?,parrot,avail,0 -thank_you,the best,parrot,bye,2 -yes,yep,original,book,1 -greeting,hi what's up,original,greet,4 -reminder_update,may i be reminded?,parrot,resched,5 -greeting,aho,parrot,greet,4 -greeting,hello how're you doing?,parrot,greet,4 -greeting,wassup,original,greet,4 -no,not necessarily true,parrot,cancel,3 -no,no?,parrot,cancel,3 -goodbye,have a good day?,original,bye,2 -greeting,salutations,parrot,greet,4 -yes,my answer is yes,parrot,book,1 -reminder_update,add a reminder to me?,parrot,resched,5 -how_busy,how long will i have to wait before being seated in the cheese cake factory?,parrot,avail,0 -schedule_meeting,can you help me with a meeting?,lambada,book,1 -no,that's wrong,original,cancel,3 -date,i need information about today's date,lambada,avail,0 -no,it is no,original,cancel,3 -reminder_update,can you remind me to pay my rent?,parrot,resched,5 -greeting,hey how's it going?,parrot,greet,4 -no,no!,original,cancel,3 -calendar_update,please add the final exams to my calendar for may 2,parrot,resched,5 -greeting,whats up?,parrot,greet,4 -thank_you,i'm grateful,original,bye,2 -reminder_update,new reminder please,lambada,resched,5 -yes,i say yes,lambada,book,1 -date,what date?,parrot,avail,0 -greeting,how's life going?,parrot,greet,4 -meeting_schedule,when is homer's meeting?,parrot,avail,0 -greeting,how's everything?,parrot,greet,4 -no,"no, definitely not",original,cancel,3 -goodbye,goodbye ai,parrot,bye,2 -calendar_update,please scrape my 1st meeting from my calendar,parrot,resched,5 -no,no!,original,cancel,3 -schedule_meeting,please help me figure out how to arrange a meeting,parrot,book,1 -calendar,tell me what's on my calendar for march 31st?,lambada,avail,0 -no,that's totally wrong!,original,cancel,3 -yes,facts,original,book,1 -meeting_schedule,when is my meeting with infrastructure?,original,avail,0 -date,what date?,parrot,avail,0 -no,that's erroneous,parrot,cancel,3 -goodbye,it was good to talk to you today,original,bye,2 -yes,10-Apr,original,book,1 -no,no no thanks,parrot,cancel,3 -schedule_meeting,i want to schedule a meeting with steve in the office,parrot,book,1 -yes,yup,original,book,1 -goodbye,adios!,original,bye,2 -yes,TRUE,lambada,book,1 -no,"no, that's incorrect",original,cancel,3 -thank_you,thanks,original,bye,2 -schedule_meeting,is it possible to meet james at the office?,parrot,book,1 -how_busy,can i know how long the wait is at the red lobster restaurant?,parrot,avail,0 -yes,accept,parrot,book,1 -yes,right,parrot,book,1 -greeting,what's new?,parrot,greet,4 -date,what month is today?,parrot,avail,0 -greeting,how are things going with you?,parrot,greet,4 -greeting,"wake up, ai",original,greet,4 -calendar,check my calendar for events,lambada,avail,0 -no,that's false,original,cancel,3 -calendar,tell me my calendar events?,lambada,avail,0 -how_busy,how busy will iroquois be at 10am?,parrot,avail,0 -goodbye,farewell,original,bye,2 -calendar,check my calendar,parrot,avail,0 -no,nothing good,parrot,cancel,3 -yes,that'd be great,parrot,book,1 -greeting,what's new?,parrot,greet,4 -yes,it's certainly true,parrot,book,1 -how_busy,how long is the wait at tumultor,lambada,avail,0 -goodbye,farewell!,original,bye,2 -no,say negative,parrot,cancel,3 -no,no?,parrot,cancel,3 -thank_you,you helped me today,parrot,bye,2 -date,this is the day,parrot,avail,0 -how_busy,don't expect much activity at red lobster around 10 am?,parrot,avail,0 -greeting,how ya doin,original,greet,4 -how_busy,how long will i wait before i get to go to the cheese cake factory,lambada,avail,0 -greeting,hey,original,greet,4 -schedule_meeting,can you schedule me a meeting?,parrot,book,1 -no,hell nah,original,cancel,3 -greeting,how's my family?,parrot,greet,4 -schedule_meeting,i need you to arrange a meeting with bob at 2 pm,parrot,book,1 -goodbye,i'm out of this,parrot,bye,2 -thank_you,you helped,parrot,bye,2 -goodbye,i want it now,parrot,bye,2 -goodbye,im leaving goodbye,parrot,bye,2 -goodbye,farewell,original,bye,2 -yes,of course,original,book,1 -date,what month today?,parrot,avail,0 -thank_you,thank you for my help,original,bye,2 -date,date tomorrow?,parrot,avail,0 -meeting_schedule,is my meeting with dave planned?,parrot,avail,0 -yes,accepted,original,book,1 -date,what's the date of today?,parrot,avail,0 -goodbye,was fun seeing you,parrot,bye,2 -greeting,salutations!,original,greet,4 -yes,huh,parrot,book,1 -greeting,hello,original,greet,4 -no,nothing,parrot,cancel,3 -thank_you,it's my debt,parrot,bye,2 -no,that is actually false,original,cancel,3 -how_busy,is tio busy at 830?,parrot,avail,0 -no,nope,original,cancel,3 -calendar_update,what happens if the event is cancelled on may 17?,parrot,resched,5 -yes,yeah,original,book,1 -no,this is false,parrot,cancel,3 -thank_you,many thank,original,bye,2 -goodbye,sign off,parrot,bye,2 -greeting,hi what's going on?,parrot,greet,4 -yes,great,original,book,1 -thank_you,thank you for my assistance,original,bye,2 -yes,i guess,parrot,book,1 -no,nope,original,cancel,3 -how_busy,please tell me what the wait at olive garden is like?,parrot,avail,0 -goodbye,i'm outta here!,original,bye,2 -thank_you,okay thank you,parrot,bye,2 -yes,you are correct,original,book,1 -no,no,lambada,cancel,3 -no,absolutely not,original,cancel,3 -yes,it's definitely positive,parrot,book,1 -yes,that's correct,original,book,1 -yes,positive,parrot,book,1 -calendar,display my calendar,lambada,avail,0 -yes,huh,parrot,book,1 -how_busy,how busy is dinner at kimchi roasters,lambada,avail,0 -greeting,hi how's everything?,parrot,greet,4 -date,in 100 days?,parrot,avail,0 -how_busy,is the wait at the chocolate fountain long?,parrot,avail,0 -date,do you know what's the current date?,parrot,avail,0 -yes,"yes, this is true",original,book,1 -yes,absolutely,original,book,1 -thank_you,thanks for responding,parrot,bye,2 -yes,good,parrot,book,1 -schedule_meeting,can you tell me the maximum of hours that can be held for a meeting?,lambada,book,1 -greeting,what's new,lambada,greet,4 -goodbye,as regards,parrot,bye,2 -greeting,"hello, ai",original,greet,4 -greeting,yo,original,greet,4 -yes,i'm sure that's true,parrot,book,1 -schedule_meeting,can you schedule a meeting?,lambada,book,1 -date,a year?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -greeting,what's up?,parrot,greet,4 -goodbye,bye!,original,bye,2 -reminder_update,remind me something,parrot,resched,5 -goodbye,buhbye,original,bye,2 -thank_you,thank you,original,bye,2 -thank_you,thank you for my response,lambada,bye,2 -greeting,whats up?,parrot,greet,4 -yes,positive,original,book,1 -yes,facts,original,book,1 -thank_you,thanks for the info,original,bye,2 -no,no?,parrot,cancel,3 -goodbye,we chatted well,parrot,bye,2 -goodbye,adios ai,original,bye,2 -no,not true i think,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -schedule_meeting,see if you can schedule a meeting with don southerland tomorrow at noon,original,book,1 -goodbye,i've got to go out,parrot,bye,2 -calendar,i have something to do on my calendar for march 18th,parrot,avail,0 -reminder_update,set up a new reminder to alert me when it's time to get rid of the trash,parrot,resched,5 -greeting,hey how's my day going,parrot,greet,4 -thank_you,thankyou,parrot,bye,2 -date,is today a date?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -greeting,how's idy doing?,parrot,greet,4 -how_busy,how much time will it take to get a table in chili's,parrot,avail,0 -yes,yeah,original,book,1 -no,absolutely false,parrot,cancel,3 -yes,yup,original,book,1 -greeting,hiya,original,greet,4 -yes,definitely,original,book,1 -yes,i'll say yes,parrot,book,1 -thank_you,"great, thanks!",original,bye,2 -how_busy,how busy are applebees at 6 pm?,parrot,avail,0 -yes,yeap,original,book,1 -how_busy,is red lobster busy at noon?,parrot,avail,0 -no,not good,parrot,cancel,3 -thank_you,thank you again,parrot,bye,2 -yes,oh-huh,parrot,book,1 -yes,definitely,original,book,1 -date,please let me know the date today,parrot,avail,0 -yes,right,parrot,book,1 -yes,let's do that,parrot,book,1 -greeting,welcome,parrot,greet,4 -greeting,salutations!,original,greet,4 -date,what day are we?,parrot,avail,0 -no,i meant no,original,cancel,3 -schedule_meeting,i have to schedule a meeting with ken for 9am,parrot,book,1 -yes,definitely,original,book,1 -no,negatory?,parrot,cancel,3 -goodbye,regards,original,bye,2 -no,negation,parrot,cancel,3 -goodbye,see ya,original,bye,2 -thank_you,you're a big help,parrot,bye,2 -yes,huh huh,parrot,book,1 -no,it's not right,parrot,cancel,3 -greeting,whats up,original,greet,4 -greeting,what's up?,parrot,greet,4 -goodbye,goodbye,original,bye,2 -goodbye,see ya,original,bye,2 -greeting,why hello?,original,greet,4 -goodbye,a good conversation,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -date,what's today's date,original,avail,0 -date,is it monday wednesday wednesday friday?,parrot,avail,0 -goodbye,just relax,parrot,bye,2 -no,not true,original,cancel,3 -greeting,hi what's up?,parrot,greet,4 -meeting_schedule,do i have meetings with deborah today?,lambada,avail,0 -no,i'd rather not answer that,parrot,cancel,3 -yes,absolutely,original,book,1 -greeting,whats new?,parrot,greet,4 -no,invalid,original,cancel,3 -goodbye,"no problem, goodbye",lambada,bye,2 -goodbye,adios!,original,bye,2 -calendar_update,please clear my calendar,original,resched,5 -no,is a lie?,parrot,cancel,3 -how_busy,how busy is iman's at 8,lambada,avail,0 -greeting,aloha,original,greet,4 -greeting,how're you today?,parrot,greet,4 -date,i'd like to know the day tomorrow,parrot,avail,0 -goodbye,thanks goodbye,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -greeting,how's my treatment?,parrot,greet,4 -no,don't like that,parrot,cancel,3 -no,certainly not,original,cancel,3 -yes,accept,parrot,book,1 -thank_you,"good job, thanks",lambada,bye,2 -goodbye,say goodbye,parrot,bye,2 -goodbye,peace,original,bye,2 -no,so that's no,parrot,cancel,3 -goodbye,farewell,original,bye,2 -thank_you,your assistance is appreciated,parrot,bye,2 -goodbye,goodbye,original,bye,2 -no,negatory,original,cancel,3 -goodbye,"later, goodbye",lambada,bye,2 -no,negating,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -greeting,"howdy, what's new",original,greet,4 -yes,indeed,parrot,book,1 -yes,huh,parrot,book,1 -schedule_meeting,the meeting has to be scheduled,parrot,book,1 -yes,accept,parrot,book,1 -thank_you,thank ya!,original,bye,2 -yes,oh yeah that is true,lambada,book,1 -how_busy,wait time for a table at the chipotle bar?,parrot,avail,0 -yes,ya,original,book,1 -no,it's a negation,parrot,cancel,3 -yes,all right,original,book,1 -reminder_update,add a reminder to pay my bill,parrot,resched,5 -thank_you,thankyou,parrot,bye,2 -meeting_schedule,when do i have to go to the meetings today?,parrot,avail,0 -goodbye,great chat goodbye,lambada,bye,2 -greeting,hows it going,lambada,greet,4 -no,say negative,parrot,cancel,3 -date,what the day?,parrot,avail,0 -thank_you,i appreciate it,original,bye,2 -no,invalid,original,cancel,3 -no,not right?,parrot,cancel,3 -how_busy,how long does it take to get a table at the outback steakhouse?,parrot,avail,0 -yes,i guess yes,parrot,book,1 -date,please tell me what's the date tomorrow?,parrot,avail,0 -goodbye,a good conversation,parrot,bye,2 -goodbye,bye!,original,bye,2 -yes,yeah yeah,lambada,book,1 -yes,yay,lambada,book,1 -goodbye,fairwell?,parrot,bye,2 -greeting,"hey, ai",original,greet,4 -yes,say yes,lambada,book,1 -reminder_update,remind me to pay taxes,parrot,resched,5 -date,what's next month and day?,parrot,avail,0 -calendar,have you added an event to my calendar for april 1st?,parrot,avail,0 -thank_you,good answer thanks for the response,parrot,bye,2 -no,no way!,original,cancel,3 -cancel_reservation,can you cancel my reservation on tuesday for chris in stella maris?,parrot,cancel,3 -yes,that's true,original,book,1 -yes,oh-huh,parrot,book,1 -schedule_meeting,are meeting rooms available between 8 and 10?,parrot,book,1 -yes,great,original,book,1 -no,but it's totally wrong,parrot,cancel,3 -yes,certainly,parrot,book,1 -date,what year?,parrot,avail,0 -calendar,what's on january 1st?,parrot,avail,0 -no,negating,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -no,it's a negative,parrot,cancel,3 -goodbye,peace out,original,bye,2 -goodbye,bye bye,lambada,bye,2 -greeting,salutations!,original,greet,4 -yes,positive,parrot,book,1 -no,that is not right,original,cancel,3 -date,tell me today's date?,original,avail,0 -greeting,how's it going,lambada,greet,4 -thank_you,i appreciate the assistance,original,bye,2 -thank_you,really great!,original,bye,2 -no,so that's no,parrot,cancel,3 -how_busy,how busy will chili's be around 5 pm,lambada,avail,0 -yes,affirmitive,original,book,1 -goodbye,later gator!,original,bye,2 -yes,accept,parrot,book,1 -date,tell me what day tomorrow?,parrot,avail,0 -goodbye,peace out!,original,bye,2 -calendar_update,delete everything from my calendar,parrot,resched,5 -goodbye,was nice to talk with you,parrot,bye,2 -greeting,salutations,parrot,greet,4 -thank_you,thanks,original,bye,2 -goodbye,glad to talk,parrot,bye,2 -no,not correct,parrot,cancel,3 -thank_you,and i thank you,parrot,bye,2 -thank_you,gracias,original,bye,2 -calendar,have any appointments on my calendar for may 11?,parrot,avail,0 -date,say what day it will be?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -reminder_update,maybe a reminder?,parrot,resched,5 -thank_you,"awesome, thanks",original,bye,2 -thank_you,you gave me that,parrot,bye,2 -yes,accept,parrot,book,1 -goodbye,greetings,parrot,bye,2 -goodbye,regards,original,bye,2 -no,no!,original,cancel,3 -date,tell me the date in three days,parrot,avail,0 -greeting,hiya!,original,greet,4 -how_busy,how long does it take to wait for a table at the pizza fountain?,parrot,avail,0 -calendar,my calendar has something for january 1?,parrot,avail,0 -date,what year?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -thank_you,thanks for answering,parrot,bye,2 -no,not true,original,cancel,3 -no,negation,parrot,cancel,3 -goodbye,we'll talk later ai,original,bye,2 -reminder_update,remind me later,original,resched,5 -thank_you,you've been great,parrot,bye,2 -no,nay,original,cancel,3 -yes,indeed,original,book,1 -how_busy,does the restaraunt have a busy night at 5:30?,lambada,avail,0 -yes,agreed,original,book,1 -goodbye,later,original,bye,2 -goodbye,sign off,parrot,bye,2 -calendar_update,take work off my calendar for may 7th,parrot,resched,5 -goodbye,goodnight,original,bye,2 -greeting,whats new?,parrot,greet,4 -goodbye,afterward,parrot,bye,2 -calendar,show me what's on my calendar for thursday the 1st?,parrot,avail,0 -yes,sure thing,original,book,1 -no,this isn't true,parrot,cancel,3 -goodbye,thank you for speaking with me,parrot,bye,2 -date,date please,original,avail,0 -yes,i agree,original,book,1 -meeting_schedule,do you have any meetings with suzan today?,parrot,avail,0 -yes,absolutely,original,book,1 -no,no that's wrong,original,cancel,3 -yes,i think it's correct,parrot,book,1 -greeting,hello,original,greet,4 -goodbye,", goodbye",lambada,bye,2 -greeting,hello bs,parrot,greet,4 -goodbye,it's over,parrot,bye,2 -yes,huh,parrot,book,1 -no,that is very false,lambada,cancel,3 -how_busy,why is this place so busy for lunch?,parrot,avail,0 -yes,seems true,parrot,book,1 -calendar,do you have appointments for april 19th?,parrot,avail,0 -goodbye,good conversation,parrot,bye,2 -thank_you,i'm thankful,original,bye,2 -goodbye,bye!,original,bye,2 -thank_you,the best,parrot,bye,2 -greeting,hey how's my day?,parrot,greet,4 -yes,you got it,parrot,book,1 -thank_you,good job,lambada,bye,2 -yes,not false,parrot,book,1 -greeting,so how's everything?,parrot,greet,4 -goodbye,bye bye,lambada,bye,2 -meeting_schedule,when do i have to meet today?,parrot,avail,0 -calendar_update,i have an appointment tomorrow on my calendar,parrot,resched,5 -goodbye,regards,original,bye,2 -greeting,hola,original,greet,4 -goodbye,tootles?,parrot,bye,2 -meeting_schedule,what's the meeting schedule,lambada,avail,0 -no,is very false,parrot,cancel,3 -no,nay,original,cancel,3 -yes,it's positive,parrot,book,1 -thank_you,gracias,original,bye,2 -no,that is a very bad answer,lambada,cancel,3 -calendar_update,take work from my calendar for may 7th,original,resched,5 -greeting,whats up?,parrot,greet,4 -yes,perfect,parrot,book,1 -goodbye,greetings,parrot,bye,2 -yes,absolutely,original,book,1 -how_busy,can you tell me how long the wait is at the olive garden?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -meeting_schedule,are there meetings from 1 to 4?,parrot,avail,0 -greeting,hello,original,greet,4 -greeting,nice day,lambada,greet,4 -yes,approved,original,book,1 -yes,not false,parrot,book,1 -goodbye,i'll go,parrot,bye,2 -yes,"yes, that's accurate",original,book,1 -no,i'll pass,original,cancel,3 -reminder_update,what's a reminder,parrot,resched,5 -goodbye,i'm gone,parrot,bye,2 -goodbye,lovely conversation,parrot,bye,2 -yes,positive,original,book,1 -greeting,heller,original,greet,4 -meeting_schedule,when is my meeting with john scheduled to begin?,parrot,avail,0 -thank_you,thank you ai,parrot,bye,2 -greeting,is everything going okay?,original,greet,4 -greeting,how's it hanging?,parrot,greet,4 -no,that's inaccurate,original,cancel,3 -how_busy,how long is the wait for red lobster right now?,parrot,avail,0 -cancel_reservation,cancel the reservation for dinner,lambada,cancel,3 -yes,confirmed,original,book,1 -goodbye,good-bye,parrot,bye,2 -how_busy,how busy is ihop?,parrot,avail,0 -yes,huh huh,parrot,book,1 -yes,yeah,original,book,1 -yes,i think you're right,parrot,book,1 -greeting,"hey, how's it going",original,greet,4 -greeting,yo,original,greet,4 -greeting,welcome,parrot,greet,4 -greeting,how've you been,original,greet,4 -no,not right?,parrot,cancel,3 -goodbye,peace,original,bye,2 -goodbye,later thanks for talking,parrot,bye,2 -goodbye,no problem just relax,parrot,bye,2 -no,negative definitely,parrot,cancel,3 -date,list the name of the date?,parrot,avail,0 -reminder_update,please remember to visit ryan,parrot,resched,5 -goodbye,bye,original,bye,2 -yes,indeed,original,book,1 -thank_you,much obliged,original,bye,2 -yes,10-Apr,original,book,1 -calendar_update,i want to put a wedding on my calendar for tomorrow,lambada,resched,5 -goodbye,fairwell,original,bye,2 -no,not correct,parrot,cancel,3 -schedule_meeting,i need to set up a meeting with tom at 6pm,parrot,book,1 -yes,"yes, this is true",original,book,1 -no,and no it's not true,parrot,cancel,3 -date,the date is today,parrot,avail,0 -date,do you know the current date?,parrot,avail,0 -no,that's incorrect,original,cancel,3 -date,in seven days?,parrot,avail,0 -goodbye,signing off,original,bye,2 -date,what date?,parrot,avail,0 -date,what's today,original,avail,0 -reminder_update,is there any way to remind me to pay the bills?,parrot,resched,5 -calendar,what do i have planned for february 12th?,parrot,avail,0 -no,FALSE,original,cancel,3 -calendar_update,delete the event scheduled for tuesday,lambada,resched,5 -date,what's the day today,original,avail,0 -thank_you,nice,parrot,bye,2 -greeting,how's the situation?,parrot,greet,4 -greeting,heller,original,greet,4 -how_busy,how busy the cheesecake factory is at 11,parrot,avail,0 -greeting,how is ai feeling?,parrot,greet,4 -thank_you,thankyou,parrot,bye,2 -calendar_update,"you can remove the wedding from my calendar for march 12, 2019",original,resched,5 -how_busy,tell me what's the wait time at the cheese cake factory?,parrot,avail,0 -goodbye,tootles,original,bye,2 -goodbye,sayonara,original,bye,2 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -greeting,give me the details,parrot,greet,4 -thank_you,so grateful,parrot,bye,2 -yes,indeed,original,book,1 -thank_you,thanks please,original,bye,2 -yes,yep,original,book,1 -no,"no, it's not",lambada,cancel,3 -no,invalid,original,cancel,3 -goodbye,see ya,lambada,bye,2 -yes,i think it's right,parrot,book,1 -thank_you,i'm thankful,original,bye,2 -reminder_update,make a reminder,parrot,resched,5 -no,"please, no",original,cancel,3 -thank_you,i'm glad you did it for me,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -thank_you,i appeciate it,original,bye,2 -goodbye,nice drive by,lambada,bye,2 -yes,is true,parrot,book,1 -goodbye,it was great to get to talk to you,lambada,bye,2 -meeting_schedule,when is my next meeting?,parrot,avail,0 -calendar_update,delete events on 1 june,parrot,resched,5 -reminder_update,set a reminder to go dress shopping,original,resched,5 -no,nada,original,cancel,3 -yes,absolutely,original,book,1 -how_busy,how busy is mc donald at 8 am?,parrot,avail,0 -thank_you,for that thank you,parrot,bye,2 -no,nothing,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -goodbye,goodbye now,parrot,bye,2 -greeting,hey bs,lambada,greet,4 -goodbye,"no problem, goodbye",lambada,bye,2 -no,the negator,parrot,cancel,3 -meeting_schedule,what is my meeting calendar?,parrot,avail,0 -yes,perfect,parrot,book,1 -no,it's not correct,parrot,cancel,3 -how_busy,is macy's busy?,parrot,avail,0 -goodbye,adios!,original,bye,2 -yes,my answer is yes,parrot,book,1 -cancel_reservation,please unreserve that table,original,cancel,3 -greeting,bonjour,original,greet,4 -greeting,how's ai doing?,parrot,greet,4 -no,it's negative,parrot,cancel,3 -yes,good yes,lambada,book,1 -goodbye,i'm leaving,parrot,bye,2 -how_busy,is the wait at the cheesecake factory busy at 11?,parrot,avail,0 -goodbye,sign off,parrot,bye,2 -goodbye,later!,original,bye,2 -no,no good,original,cancel,3 -how_busy,do people come to chili around 8pm?,parrot,avail,0 -how_busy,please tell me how crowded it is in the red lobster,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -greeting,how is everything?,parrot,greet,4 -yes,perfect,parrot,book,1 -calendar,tell me what's on my calendar for april 17th,parrot,avail,0 -thank_you,appreciate the assistance,parrot,bye,2 -calendar,what do you have on my calendar for 1st march?,parrot,avail,0 -how_busy,does the grocer have a lot of busy people around the noon hour?,parrot,avail,0 -yes,great,original,book,1 -how_busy,is mr joes steakhouse crowded?,parrot,avail,0 -thank_you,i owe you,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -meeting_schedule,when is today's meeting?,lambada,avail,0 -calendar_update,get rid of the gym appointment on april 23rd,lambada,resched,5 -goodbye,good chatting with you,lambada,bye,2 -no,no good,original,cancel,3 -greeting,hey there,original,greet,4 -how_busy,how long will the wait be at chinese house at 5pm,lambada,avail,0 -greeting,hello,original,greet,4 -yes,of course,original,book,1 -goodbye,see you later,original,bye,2 -greeting,bonjour,original,greet,4 -goodbye,my way,parrot,bye,2 -greeting,hiya!,original,greet,4 -yes,absolutely!,original,book,1 -yes,positive,original,book,1 -yes,uh-huh,original,book,1 -goodbye,see ya,lambada,bye,2 -thank_you,awesome thanks,parrot,bye,2 -no,thanks no,parrot,cancel,3 -goodbye,"syonara, ai device!",original,bye,2 -greeting,hello,original,greet,4 -thank_you,you've been great,parrot,bye,2 -greeting,"why, hello bandit",original,greet,4 -no,naw,original,cancel,3 -no,is my false statement?,parrot,cancel,3 -no,it's negative,parrot,cancel,3 -yes,indeed,parrot,book,1 -no,i must say no,original,cancel,3 -goodbye,regards,original,bye,2 -yes,yes is my answer,original,book,1 -thank_you,well done,parrot,bye,2 -yes,sure thing,original,book,1 -goodbye,later,original,bye,2 -yes,positive,original,book,1 -goodbye,goodbyes,parrot,bye,2 -date,give me the date for tomorrow,parrot,avail,0 -date,what date will it be 14 days from now?,lambada,avail,0 -goodbye,im leaving goodbye,parrot,bye,2 -yes,yes,original,book,1 -greeting,bonjour,original,greet,4 -how_busy,how busy is the olive garden around dinner time?,parrot,avail,0 -thank_you,thank you please,parrot,bye,2 -goodbye,i'm leaving,parrot,bye,2 -yes,it's logical,parrot,book,1 -how_busy,how busy is zebra around 5 pm,lambada,avail,0 -how_busy,is iman busy around five?,lambada,avail,0 -thank_you,again thank you,parrot,bye,2 -thank_you,okay thank you,parrot,bye,2 -no,no that's not right,parrot,cancel,3 -yes,correct,original,book,1 -no,it's indeed false,parrot,cancel,3 -greeting,hola!,original,greet,4 -greeting,"hey, ai",original,greet,4 -calendar_update,i have to make an appointment tomorrow for 10am,parrot,resched,5 -thank_you,thanks for cooperating,parrot,bye,2 -thank_you,thank you?,parrot,bye,2 -yes,it'll be yes,parrot,book,1 -greeting,whats up?,parrot,greet,4 -thank_you,well done,parrot,bye,2 -no,i'm saying no,parrot,cancel,3 -no,not right?,parrot,cancel,3 -yes,yeah,original,book,1 -yes,i know that's true,parrot,book,1 -greeting,heller,original,greet,4 -reminder_update,i need to send flowers for my mom on mother's day,parrot,resched,5 -no,certainly not,original,cancel,3 -yes,ok,original,book,1 -how_busy,how long will the wait at mc ericks be?,parrot,avail,0 -cancel_reservation,cancel tonight's dinner reservation,original,cancel,3 -greeting,heller,original,greet,4 -goodbye,later,original,bye,2 -date,in 9 days?,parrot,avail,0 -yes,"yes, please",original,book,1 -how_busy,what's the wait like?,parrot,avail,0 -thank_you,the best,parrot,bye,2 -greeting,hello bs,parrot,greet,4 -goodbye,bye bye!,original,bye,2 -goodbye,i'll have to go for it later,lambada,bye,2 -greeting,well hello,original,greet,4 -no,but i think it's a bad idea,parrot,cancel,3 -yes,i believe that's true,original,book,1 -yes,yay,lambada,book,1 -greeting,hello how's it going,original,greet,4 -reminder_update,please remember me,parrot,resched,5 -thank_you,appreciate it,original,bye,2 -greeting,whats new?,parrot,greet,4 -thank_you,you answered,parrot,bye,2 -meeting_schedule,what meetings are on my schedule for today?,lambada,avail,0 -no,it's a lie,parrot,cancel,3 -date,what is tomorrow?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -schedule_meeting,please make me a meeting room for 9 am,lambada,book,1 -no,negative,original,cancel,3 -goodbye,tootles,original,bye,2 -greeting,whats up?,parrot,greet,4 -yes,definitely yes,parrot,book,1 -goodbye,bye,original,bye,2 -thank_you,i appreciate the answer,parrot,bye,2 -how_busy,what is it like to wait in olive garden now?,parrot,avail,0 -yes,my answer is yes,parrot,book,1 -no,so it's not possible,parrot,cancel,3 -no,that is untrue,original,cancel,3 -thank_you,really great!,original,bye,2 -date,what month is today?,parrot,avail,0 -yes,definitely,original,book,1 -cancel_reservation,annul the reservation i created,original,cancel,3 -reminder_update,let me know,parrot,resched,5 -reminder_update,have i forgotten?,parrot,resched,5 -meeting_schedule,the meetings today,parrot,avail,0 -no,it's a no,original,cancel,3 -thank_you,nice,parrot,bye,2 -greeting,are you well?,original,greet,4 -yes,yes that's right,lambada,book,1 -how_busy,how long will it take to get a table in this restaurant?,parrot,avail,0 -goodbye,this conversation was pleasant,parrot,bye,2 -goodbye,goodbye bye,parrot,bye,2 -calendar,look in my calendar for any upcoming appointments,lambada,avail,0 -thank_you,thanks!,original,bye,2 -date,i need to know what date it'll be tomorrow,parrot,avail,0 -thank_you,really great!,original,bye,2 -how_busy,how long is the wait at chipotle,original,avail,0 -no,the statement is completely false,parrot,cancel,3 -greeting,hello there!,original,greet,4 -greeting,yo how's it going,parrot,greet,4 -goodbye,i enjoyed our talk,parrot,bye,2 -date,a year?,parrot,avail,0 -how_busy,what's the wait time at this restaurant,lambada,avail,0 -how_busy,can i wait at chili's?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -schedule_meeting,do you know if the meeting rooms are open?,parrot,book,1 -yes,of course,original,book,1 -greeting,ahoy,lambada,greet,4 -goodbye,farewell to you,lambada,bye,2 -no,nothing,parrot,cancel,3 -greeting,"hello, friend",original,greet,4 -date,what's today,original,avail,0 -goodbye,on the highway,parrot,bye,2 -no,not good idea,parrot,cancel,3 -yes,yes sir,original,book,1 -thank_you,i thank you,original,bye,2 -goodbye,"nice talk, goodbye",lambada,bye,2 -thank_you,okay thank you,parrot,bye,2 -thank_you,youre a doll,original,bye,2 -how_busy,is ihop busy around 6?,lambada,avail,0 -greeting,aho,parrot,greet,4 -yes,i'd have to say yes,parrot,book,1 -meeting_schedule,what's on my schedule?,parrot,avail,0 -yes,confirm,original,book,1 -goodbye,farewell!,original,bye,2 -greeting,whats up,original,greet,4 -no,and i'm sorry,parrot,cancel,3 -no,i don't think that's correct,lambada,cancel,3 -meeting_schedule,have any meetings scheduled with ashley?,parrot,avail,0 -greeting,hola!,original,greet,4 -no,no!,original,cancel,3 -goodbye,bye-bye,original,bye,2 -goodbye,as regards,parrot,bye,2 -greeting,"hey, ai",original,greet,4 -calendar_update,leave the date of june 4 open in my calendar,parrot,resched,5 -no,is not true?,parrot,cancel,3 -thank_you,thanks for my response,original,bye,2 -no,that's not right,original,cancel,3 -yes,yes that's it,original,book,1 -date,a year?,parrot,avail,0 -calendar_update,can you change the date of the doctor's appointment event in my calendar from april 1 to april 3rd?,original,resched,5 -goodbye,i really enjoyed our goodbye,parrot,bye,2 -yes,i'm sure it's true,parrot,book,1 -no,"please, no",original,cancel,3 -date,what's the date of tomorrow,lambada,avail,0 -yes,positive,original,book,1 -goodbye,fairwell,original,bye,2 -how_busy,list the typical wait times for mr joes pizza?,parrot,avail,0 -yes,TRUE,lambada,book,1 -greeting,how is idy?,parrot,greet,4 -thank_you,okay thank you,parrot,bye,2 -goodbye,bye!,original,bye,2 -goodbye,i'll leave now,parrot,bye,2 -date,what date?,parrot,avail,0 -greeting,how's everything with you?,parrot,greet,4 -yes,it's true,original,book,1 -yes,say yes,lambada,book,1 -how_busy,how long will it take to sit at ihop?,parrot,avail,0 -how_busy,how long will it take to get a table at the restaurant?,parrot,avail,0 -goodbye,adios!,original,bye,2 -yes,okay,original,book,1 -no,so that's no,parrot,cancel,3 -goodbye,good seeing you,original,bye,2 -yes,do that?,original,book,1 -calendar,check out my calendar,parrot,avail,0 -no,no way!,original,cancel,3 -no,it's no,parrot,cancel,3 -no,no good,original,cancel,3 -meeting_schedule,meeting today,parrot,avail,0 -reminder_update,a reminder to wish my mom happy birthday,parrot,resched,5 -goodbye,bye,original,bye,2 -how_busy,how many minutes will it take to wait for lunch in chipotle?,parrot,avail,0 -yes,affirmative,original,book,1 -no,invalid,original,cancel,3 -no,the negator,parrot,cancel,3 -yes,that seems true,original,book,1 -thank_you,very grateful,parrot,bye,2 -yes,yup,original,book,1 -greeting,heller,original,greet,4 -greeting,aho,parrot,greet,4 -greeting,hey,original,greet,4 -greeting,what's happening?,parrot,greet,4 -cancel_reservation,no longer need for reservation,parrot,cancel,3 -goodbye,my way,parrot,bye,2 -no,"that's right, that is incorrect",lambada,cancel,3 -yes,it appears true,parrot,book,1 -goodbye,signing off,original,bye,2 -greeting,what do i feel?,parrot,greet,4 -greeting,are you okay?,original,greet,4 -yes,very true,original,book,1 -goodbye,sayonara,original,bye,2 -yes,absolutely,original,book,1 -greeting,hey how's it going,original,greet,4 -thank_you,thanks,original,bye,2 -reminder_update,please remember me,parrot,resched,5 -greeting,hey it's up,lambada,greet,4 -yes,that is correct,original,book,1 -no,that is no way,lambada,cancel,3 -yes,roger that,original,book,1 -goodbye,goodbye!,original,bye,2 -no,that's untrue,parrot,cancel,3 -greeting,salutations!,original,greet,4 -yes,right,parrot,book,1 -thank_you,thanks for this information,lambada,bye,2 -goodbye,i'm gonna talk to you later,lambada,bye,2 -thank_you,you're a good help,parrot,bye,2 -date,tell me what tomorrow's date will be?,lambada,avail,0 -greeting,whats up?,parrot,greet,4 -yes,huh,parrot,book,1 -greeting,all right now?,parrot,greet,4 -goodbye,see ya,lambada,bye,2 -greeting,ahoy there,lambada,greet,4 -thank_you,"oh, thanks",original,bye,2 -yes,confirm,original,book,1 -greeting,how're you?,parrot,greet,4 -reminder_update,set a reminder for 2pm to feed the cat,parrot,resched,5 -no,and it's very false,parrot,cancel,3 -no,nada,original,cancel,3 -yes,it appears true,parrot,book,1 -yes,correct,original,book,1 -reminder_update,i'd like a reminder,parrot,resched,5 -thank_you,thanks for that response,original,bye,2 -calendar_update,i must clear a date on my calendar for next friday,parrot,resched,5 -greeting,yo,original,greet,4 -date,a year?,parrot,avail,0 -goodbye,i'm going to the highway,parrot,bye,2 -goodbye,adios!,original,bye,2 -yes,i want to be 100% accurate,lambada,book,1 -greeting,welcome,parrot,greet,4 -yes,uh huh,original,book,1 -meeting_schedule,when does richard meet me?,parrot,avail,0 -goodbye,"goodbye, ai assistant",original,bye,2 -greeting,how's that hanging?,parrot,greet,4 -greeting,how are things,original,greet,4 -goodbye,tootles,original,bye,2 -thank_you,thanks,original,bye,2 -greeting,whats up?,parrot,greet,4 -yes,it's logical,parrot,book,1 -no,i prefer not,parrot,cancel,3 -goodbye,ai goodbye,original,bye,2 -goodbye,farewell!,original,bye,2 -date,in 14 days?,parrot,avail,0 -no,that's incorrect,original,cancel,3 -no,that's a lie,parrot,cancel,3 -no,that'd be a no,original,cancel,3 -date,what is tomorrow?,parrot,avail,0 -calendar_update,remove an event from my calendar for march 4th,parrot,resched,5 -meeting_schedule,please tell me my schedule of meetings,parrot,avail,0 -greeting,bonjour,original,greet,4 -no,not right so,parrot,cancel,3 -yes,"yes, that is factual",original,book,1 -cancel_reservation,i need my reservation to be cancelled for nugget to xiomara's restaurant,original,cancel,3 -greeting,hola,original,greet,4 -greeting,hello there!,original,greet,4 -yes,TRUE,lambada,book,1 -no,FALSE,original,cancel,3 -no,that's false,original,cancel,3 -no,i disagree,parrot,cancel,3 -goodbye,see ya later,original,bye,2 -greeting,hi,original,greet,4 -no,FALSE,lambada,cancel,3 -date,what's the current date of,parrot,avail,0 -date,what's tomorrow's date,original,avail,0 -greeting,salutations,parrot,greet,4 -date,can you tell me what date it will be in 2 days?,parrot,avail,0 -yes,it's logical,parrot,book,1 -date,today?,parrot,avail,0 -thank_you,you've been great,parrot,bye,2 -no,no good,original,cancel,3 -no,that's bad,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -date,date tomorrow?,parrot,avail,0 -goodbye,i'll leave,parrot,bye,2 -thank_you,nice,parrot,bye,2 -greeting,hola!,original,greet,4 -no,the negator,parrot,cancel,3 -goodbye,good talk,parrot,bye,2 -greeting,hello,original,greet,4 -goodbye,see you later,original,bye,2 -no,that's completely wrong,parrot,cancel,3 -date,what year?,parrot,avail,0 -thank_you,thanks for coming by,lambada,bye,2 -thank_you,well done,parrot,bye,2 -date,what day will it be?,parrot,avail,0 -how_busy,how busy is ihop?,parrot,avail,0 -how_busy,how busy is ipoh at 5:00 pm,lambada,avail,0 -greeting,yo,original,greet,4 -thank_you,thanks i appreciate it,parrot,bye,2 -yes,confirm,original,book,1 -date,what year?,parrot,avail,0 -reminder_update,i have to remind myself,parrot,resched,5 -greeting,hiya!,original,greet,4 -reminder_update,keep the reminder of the bread,parrot,resched,5 -greeting,"hey there, how are you today",original,greet,4 -greeting,heller,original,greet,4 -greeting,are you all right?,parrot,greet,4 -date,what's tomorrow on the calender,original,avail,0 -date,date please,original,avail,0 -greeting,do you feel?,parrot,greet,4 -date,date tomorrow?,parrot,avail,0 -yes,exactly right,original,book,1 -yes,yes sir,original,book,1 -yes,ya,original,book,1 -goodbye,regards,original,bye,2 -how_busy,how long will i have to wait at red lobster at 7 pm,lambada,avail,0 -how_busy,are ihop busy between 9 and 10pm?,lambada,avail,0 -thank_you,i want you to thank me,lambada,bye,2 -greeting,bonjour,original,greet,4 -date,date tomorrow?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -how_busy,how long will the wait be at mcdonald's?,parrot,avail,0 -yes,i agree,original,book,1 -thank_you,many thank,original,bye,2 -meeting_schedule,discuss my schedule with me,parrot,avail,0 -thank_you,thanks,original,bye,2 -goodbye,buhbye,original,bye,2 -calendar,what do you have on my calendar for march 10?,parrot,avail,0 -date,can you tell me what date it will be in two days?,parrot,avail,0 -date,please date,parrot,avail,0 -yes,definitely yes,parrot,book,1 -greeting,how's life treating you?,parrot,greet,4 -thank_you,again thanks,parrot,bye,2 -no,it's not always true,parrot,cancel,3 -no,no way,original,cancel,3 -cancel_reservation,i don't need my reservation you can cancel it,parrot,cancel,3 -greeting,yo,original,greet,4 -yes,correct,original,book,1 -schedule_meeting,i'd like to meet with john at 10 am,parrot,book,1 -calendar,see my calendar for events,parrot,avail,0 -thank_you,you've been great,parrot,bye,2 -yes,agreed,original,book,1 -greeting,are you doing okay?,original,greet,4 -thank_you,i am grateful,lambada,bye,2 -yes,that's definitely true,original,book,1 -no,is a lie?,parrot,cancel,3 -greeting,hey bs,lambada,greet,4 -meeting_schedule,do i have a meeting with paul?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -reminder_update,please remind me something,parrot,resched,5 -greeting,good morning ai,parrot,greet,4 -reminder_update,please check the steak,parrot,resched,5 -calendar_update,add my spa appointment on 12th to my calendar,parrot,resched,5 -no,certainly not,original,cancel,3 -yes,very true,original,book,1 -greeting,hiya,original,greet,4 -yes,approved,original,book,1 -yes,uh huh,original,book,1 -goodbye,greetings,parrot,bye,2 -meeting_schedule,when's my meeting?,parrot,avail,0 -calendar_update,make sure i have everything off my calendar,lambada,resched,5 -meeting_schedule,meeting today,parrot,avail,0 -schedule_meeting,what meeting rooms are available between 5 and 6 pm?,parrot,book,1 -yes,indeed,original,book,1 -goodbye,bye,original,bye,2 -how_busy,how long can i wait to be seated at the pizza fountain,lambada,avail,0 -yes,"yeah, that's true",lambada,book,1 -greeting,and what's up?,parrot,greet,4 -yes,im sure you're right,parrot,book,1 -cancel_reservation,call off the dinner reservation,original,cancel,3 -no,nothing,parrot,cancel,3 -date,what's today?,parrot,avail,0 -thank_you,okay thanks,original,bye,2 -schedule_meeting,i need to meet with an agenda,lambada,book,1 -greeting,hey hey!,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,great talking to you,parrot,bye,2 -date,what date today?,parrot,avail,0 -yes,that's correct,original,book,1 -how_busy,what time do i have to wait to eat in marinara?,parrot,avail,0 -how_busy,how busy is mishawaka,lambada,avail,0 -yes,all right,original,book,1 -how_busy,how long would i be waitin at the t hamster wheel,lambada,avail,0 -goodbye,fairwell?,parrot,bye,2 -thank_you,again thanks,parrot,bye,2 -no,the negator,parrot,cancel,3 -calendar,did i put an item on my calendar to get the dog neutered?,lambada,avail,0 -no,that's negative,parrot,cancel,3 -no,nada,original,cancel,3 -goodbye,peace,original,bye,2 -how_busy,will there be an extra wait time at my restaurant,lambada,avail,0 -yes,is true,parrot,book,1 -yes,and you're correct,parrot,book,1 -how_busy,what is the current wait time at red lobster?,lambada,avail,0 -goodbye,good-bye,parrot,bye,2 -goodbye,enjoy my day goodbye,parrot,bye,2 -no,i say negative,original,cancel,3 -greeting,how's life?,parrot,greet,4 -yes,i believe that's true,original,book,1 -yes,good yes,lambada,book,1 -goodbye,i'm glad we can talk later,parrot,bye,2 -no,that is untrue,original,cancel,3 -thank_you,thanks,original,bye,2 -no,nothing,parrot,cancel,3 -schedule_meeting,can you schedule a meeting with steve in the office?,parrot,book,1 -how_busy,how long will it take to eat red lobster?,parrot,avail,0 -goodbye,farewell,original,bye,2 -greeting,heller,original,greet,4 -no,nada,original,cancel,3 -how_busy,how long will i have to wait if i want to eat at cheese cake factory,lambada,avail,0 -how_busy,how long will it take to wait at noon?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -goodbye,it's over,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -yes,perfect,parrot,book,1 -cancel_reservation,i won't need the reservation anymore,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -yes,i say yes,lambada,book,1 -yes,approved,original,book,1 -goodbye,great talk with you,lambada,bye,2 -no,that's bad,parrot,cancel,3 -meeting_schedule,can you tell me when my meeting with roger is set?,parrot,avail,0 -greeting,it's good to hear what's going on,parrot,greet,4 -thank_you,okay thank you,parrot,bye,2 -how_busy,how long do we have to wait before we are seated in the cheese cake factory?,parrot,avail,0 -yes,a true statement,parrot,book,1 -yes,confirmed,original,book,1 -calendar_update,go ahead and cancel the appointment that was scheduled yesterday,lambada,resched,5 -yes,TRUE,lambada,book,1 -date,what is tomorrow?,parrot,avail,0 -greeting,"hello, how are you",original,greet,4 -meeting_schedule,tell me if i have a meeting today?,parrot,avail,0 -no,that's incorrect,original,cancel,3 -no,what is not true?,parrot,cancel,3 -thank_you,gracias,original,bye,2 -no,not correct,parrot,cancel,3 -no,not that,original,cancel,3 -yes,indeed,parrot,book,1 -goodbye,farewell!,original,bye,2 -greeting,heyo,original,greet,4 -greeting,yo,original,greet,4 -reminder_update,set a reminder for me to call my brother at 8 pm,original,resched,5 -how_busy,how long will chili's wait,parrot,avail,0 -yes,10-Apr,original,book,1 -no,no,lambada,cancel,3 -greeting,i need to know how the ai is doing,lambada,greet,4 -goodbye,fairwell?,parrot,bye,2 -how_busy,list the wait times for this yogurt?,parrot,avail,0 -goodbye,later,original,bye,2 -date,what year is tomorrow,parrot,avail,0 -yes,it's a fact,parrot,book,1 -yes,yay,lambada,book,1 -goodbye,greetings,parrot,bye,2 -yes,definitely,original,book,1 -no,you're not right,parrot,cancel,3 -goodbye,goodbye later,parrot,bye,2 -no,the answer is false,original,cancel,3 -no,yes that's false,lambada,cancel,3 -meeting_schedule,when's the meeting with kara?,parrot,avail,0 -greeting,"hi, ai",original,greet,4 -greeting,bonjour,original,greet,4 -goodbye,sign off,parrot,bye,2 -no,absolutely false,parrot,cancel,3 -goodbye,we'll talk later ai,original,bye,2 -meeting_schedule,wanna meet with roger?,parrot,avail,0 -goodbye,peace,original,bye,2 -yes,"agreed, that's valid",original,book,1 -how_busy,how long will it take me to sit at cheese steak house?,parrot,avail,0 -goodbye,sayonara ,parrot,bye,2 -date,today what date?,parrot,avail,0 -goodbye,later then,lambada,bye,2 -meeting_schedule,will i have any meetings today from 9-11?,parrot,avail,0 -goodbye,good call,parrot,bye,2 -no,that’s incorrect,original,cancel,3 -greeting,good evening,original,greet,4 -greeting,nice day,lambada,greet,4 -schedule_meeting,can you schedule a meeting with bob for 10am?,parrot,book,1 -meeting_schedule,when's the meeting with kara,parrot,avail,0 -no,negation,parrot,cancel,3 -yes,yeap,original,book,1 -thank_you,you made me aware,parrot,bye,2 -yes,TRUE,original,book,1 -thank_you,please thank you,lambada,bye,2 -goodbye,good bye,original,bye,2 -no,nay,original,cancel,3 -greeting,hello how are you,lambada,greet,4 -no,it's false,parrot,cancel,3 -yes,seems true,parrot,book,1 -no,it's very false,parrot,cancel,3 -date,will the date be 100 days from now on?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -greeting,hi ai,original,greet,4 -thank_you,thanks so much,original,bye,2 -yes,ok,original,book,1 -no,that's bad,parrot,cancel,3 -greeting,what's happened?,parrot,greet,4 -goodbye,cya later,original,bye,2 -goodbye,goodbye bye,parrot,bye,2 -greeting,hola,original,greet,4 -yes,absolutely!,original,book,1 -thank_you,thanks!,original,bye,2 -no,please no,parrot,cancel,3 -yes,"yeah, that's it",lambada,book,1 -thank_you,appreciated,original,bye,2 -how_busy,how long do you think i'll have to wait for a table in olive garden?,parrot,avail,0 -no,but that's not factual,parrot,cancel,3 -thank_you,good looking out,original,bye,2 -thank_you,i appreciate your answer,parrot,bye,2 -yes,uh-huh,original,book,1 -goodbye,it was good chatting,original,bye,2 -how_busy,how long can i expect to wait at the macaroni grill,lambada,avail,0 -how_busy,what's the wait time for ihop cheese?,parrot,avail,0 -no,that's not right?,parrot,cancel,3 -how_busy,is the wait long at olive garden around 2?,lambada,avail,0 -no,invalid,original,cancel,3 -meeting_schedule,wanna meet with roger?,parrot,avail,0 -goodbye,i'm going,parrot,bye,2 -date,what's the date tomorrow? '',parrot,avail,0 -greeting,what's happening?,parrot,greet,4 -greeting,hey there!,original,greet,4 -date,please show the date,parrot,avail,0 -date,what is the month and day today?,lambada,avail,0 -greeting,"hello, how are things",original,greet,4 -goodbye,fairwell,original,bye,2 -goodbye,send a goodbye,lambada,bye,2 -thank_you,you answered,parrot,bye,2 -how_busy,tell me the time to wait if i want a table at chili's?,parrot,avail,0 -greeting,how're you?,parrot,greet,4 -greeting,hello hello good day,parrot,greet,4 -reminder_update,set a reminder to set the alarm at 8pm,parrot,resched,5 -goodbye,adios,original,bye,2 -yes,i am willing to say yes,lambada,book,1 -yes,positive,parrot,book,1 -how_busy,please tell me how busy it is in the olive garden at 5 pm?,parrot,avail,0 -greeting,how's life,original,greet,4 -goodbye,bye!,original,bye,2 -yes,yes sir,original,book,1 -yes,accepted,original,book,1 -goodbye,goodbyes,parrot,bye,2 -greeting,how's my family?,parrot,greet,4 -no,please no,parrot,cancel,3 -calendar,please check my calendar,parrot,avail,0 -yes,affirmitive,original,book,1 -goodbye,talk to me soon,parrot,bye,2 -schedule_meeting,set up a meeting,parrot,book,1 -yes,i'll say yes,parrot,book,1 -no,it is false,original,cancel,3 -goodbye,enjoy my day goodbye,parrot,bye,2 -goodbye,goodbye,original,bye,2 -calendar,show me if i added an event in my calendar?,parrot,avail,0 -date,do you know what the date will be in three months?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -goodbye,farewell!,original,bye,2 -yes,i'll say yes,parrot,book,1 -meeting_schedule,is there a meeting for today?,parrot,avail,0 -yes,just right,parrot,book,1 -date,he's got the date,parrot,avail,0 -meeting_schedule,are there any scheduled meetings with ash today?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -calendar_update,please take my final exams off my calendar for may 3rd,parrot,resched,5 -yes,oh yes,original,book,1 -cancel_reservation,can i cancel my reservation?,lambada,cancel,3 -no,that's a negatory,original,cancel,3 -how_busy,tell me the time it's going to be?,parrot,avail,0 -greeting,how's my current situation,parrot,greet,4 -greeting,whats up,original,greet,4 -no,you're not right,parrot,cancel,3 -yes,i think it's right,parrot,book,1 -date,tell me what day of the week it's,parrot,avail,0 -yes,that's right,original,book,1 -greeting,salutations,parrot,greet,4 -thank_you,so grateful,parrot,bye,2 -greeting,hello how's the situation going,parrot,greet,4 -no,definitely not,original,cancel,3 -no,not necessarily true,parrot,cancel,3 -thank_you,a million thanks,parrot,bye,2 -thank_you,very grateful,parrot,bye,2 -no,no,lambada,cancel,3 -yes,confirm,original,book,1 -goodbye,bye my friend,parrot,bye,2 -greeting,"hello, ai",original,greet,4 -yes,uh-huh,original,book,1 -greeting,whats up?,parrot,greet,4 -yes,confirm,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -date,date tomorrow,parrot,avail,0 -greeting,hi what's up,original,greet,4 -yes,affirmitive,original,book,1 -goodbye,goodnight,original,bye,2 -cancel_reservation,i want to cancel my booking,parrot,cancel,3 -no,nope that's not right,parrot,cancel,3 -goodbye,goodbye soon,lambada,bye,2 -no,ill pass,original,cancel,3 -greeting,hello there,original,greet,4 -meeting_schedule,is lisa going to meet with you today?,parrot,avail,0 -yes,i'll say yes,parrot,book,1 -how_busy,how busy will the chili's be at 7pm,lambada,avail,0 -date,in 9 days?,parrot,avail,0 -greeting,whats new?,parrot,greet,4 -yes,"yes, please",original,book,1 -greeting,how's idy doing?,parrot,greet,4 -yes,that's true,original,book,1 -cancel_reservation,abandon the reservation for dinner,parrot,cancel,3 -thank_you,good looking out,original,bye,2 -date,what's the date?,parrot,avail,0 -yes,i guess yes,parrot,book,1 -goodbye,goodbye!,original,bye,2 -how_busy,how long will the wait be if i go to chipotle steakhouse,lambada,avail,0 -thank_you,your response was good,parrot,bye,2 -greeting,how was my day?,parrot,greet,4 -no,that's absolutely wrong,parrot,cancel,3 -cancel_reservation,don't want to cancel my reservation for thursday?,parrot,cancel,3 -greeting,how life treats you?,parrot,greet,4 -meeting_schedule,what are meetings today?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -yes,"yes, please",parrot,book,1 -date,what date?,parrot,avail,0 -date,i'd like to know what's the date today,parrot,avail,0 -goodbye,very nice conversation,parrot,bye,2 -date,what's it like now?,parrot,avail,0 -how_busy,how long do i have to wait if i want to go to the red lobster?,parrot,avail,0 -no,FALSE,original,cancel,3 -no,no good,original,cancel,3 -no,not that,original,cancel,3 -date,in 10 days?,parrot,avail,0 -reminder_update,remember to work out at the gym,parrot,resched,5 -greeting,how are things?,parrot,greet,4 -greeting,how's the life in my city?,parrot,greet,4 -how_busy,list the typical wait times at this restaurant?,parrot,avail,0 -greeting,wassup,original,greet,4 -greeting,"hey, ai",original,greet,4 -greeting,how's life?,parrot,greet,4 -no,so that's no,parrot,cancel,3 -thank_you,thanks please,original,bye,2 -meeting_schedule,is i supposed to have a meeting today between 7 and 9?,parrot,avail,0 -meeting_schedule,talk to me about my meetings between now and midnight,parrot,avail,0 -schedule_meeting,please explain how i can schedule a meeting?,parrot,book,1 -yes,it's logical,parrot,book,1 -thank_you,thanks for answering,parrot,bye,2 -greeting,what's happening to you?,parrot,greet,4 -no,it's false,parrot,cancel,3 -greeting,how's ayi doing?,parrot,greet,4 -thank_you,again thank you,parrot,bye,2 -yes,correct,original,book,1 -greeting,how you're treated?,parrot,greet,4 -greeting,how's the life?,parrot,greet,4 -yes,perfect,parrot,book,1 -yes,please confirm this is true,parrot,book,1 -goodbye,great conversation,parrot,bye,2 -greeting,hello good morning,parrot,greet,4 -greeting,ahoy,lambada,greet,4 -yes,yeah,original,book,1 -yes,accepted,original,book,1 -how_busy,how long do i have to wait at the pizza factory?,parrot,avail,0 -greeting,how's my family?,parrot,greet,4 -goodbye,see you around,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -goodbye,goodnight,original,bye,2 -yes,a fact,parrot,book,1 -greeting,you good?,parrot,greet,4 -greeting,hola,original,greet,4 -date,if it's six days,parrot,avail,0 -thank_you,thanks,original,bye,2 -goodbye,take it easy!,original,bye,2 -greeting,heller,original,greet,4 -how_busy,waiting for chocolate chip cookies?,parrot,avail,0 -thank_you,please thank you,lambada,bye,2 -thank_you,you're welcome,parrot,bye,2 -date,what date will it be in 6 days?,parrot,avail,0 -thank_you,thanks so much!,original,bye,2 -yes,obviously,parrot,book,1 -thank_you,much obliged,original,bye,2 -thank_you,i'm grateful,original,bye,2 -yes,accepted,original,book,1 -yes,affirmative,original,book,1 -goodbye,great talking to you,parrot,bye,2 -yes,it's logical,parrot,book,1 -goodbye,bye my friend,parrot,bye,2 -yes,right,parrot,book,1 -reminder_update,make me remember,parrot,resched,5 -yes,yeah that's right,lambada,book,1 -yes,great,original,book,1 -goodbye,goodbye bye,parrot,bye,2 -yes,yes please,original,book,1 -calendar,are there any events between march 5 and 8?,parrot,avail,0 -yes,yep,original,book,1 -how_busy,how busy is the restaurant around dinnertime,parrot,avail,0 -goodbye,see you soon,original,bye,2 -no,invalid,original,cancel,3 -greeting,"wake up, ai",original,greet,4 -no,i'm afraid not,parrot,cancel,3 -yes,thats right,original,book,1 -reminder_update,remind me to take my vitamins,parrot,resched,5 -greeting,welcome,parrot,greet,4 -goodbye,take it easy!,original,bye,2 -date,what's today,original,avail,0 -greeting,how you're treated,parrot,greet,4 -greeting,how's my current situation?,parrot,greet,4 -goodbye,bye-bye,original,bye,2 -yes,great,original,book,1 -goodbye,but now i'm leaving,parrot,bye,2 -thank_you,your assistance is appreciated,parrot,bye,2 -goodbye,no problem goodbye,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -goodbye,bye,original,bye,2 -no,no!,original,cancel,3 -yes,of course,original,book,1 -date,what day is it going to be in twenty-one?,parrot,avail,0 -yes,you're right,original,book,1 -greeting,i'll tell you how it goes,parrot,greet,4 -thank_you,i am excited about my assistance,lambada,bye,2 -greeting,how are you?,parrot,greet,4 -thank_you,the best,parrot,bye,2 -no,not at all,original,cancel,3 -greeting,"hello, good morning",lambada,greet,4 -no,nay,original,cancel,3 -greeting,whats up?,parrot,greet,4 -no,not true,original,cancel,3 -greeting,why hello?,original,greet,4 -yes,affirmitive,original,book,1 -greeting,hola,original,greet,4 -date,what's the current date?,parrot,avail,0 -yes,accepted,original,book,1 -schedule_meeting,are any rooms free from 12:00 to 1:00?,lambada,book,1 -goodbye,good call,parrot,bye,2 -greeting,how's everything,original,greet,4 -yes,that's the truth,original,book,1 -greeting,how's my treatment?,parrot,greet,4 -greeting,how're you doing,original,greet,4 -greeting,hey fellow,parrot,greet,4 -goodbye,great talk,lambada,bye,2 -how_busy,can you tell me if there's a long wait at the cheese cake factory?,lambada,avail,0 -goodbye,catch you around,original,bye,2 -greeting,ahoy,lambada,greet,4 -yes,agreed,original,book,1 -greeting,hello how are you doing,lambada,greet,4 -date,what today?,parrot,avail,0 -reminder_update,a new reminder,parrot,resched,5 -how_busy,wait time at macaroni grill?,parrot,avail,0 -meeting_schedule,do i have any meetings with susie today?,lambada,avail,0 -greeting,hiya,original,greet,4 -goodbye,tootles?,parrot,bye,2 -yes,confirm,original,book,1 -goodbye,farewell!,original,bye,2 -how_busy,what's the wait time at this pizza factory?,parrot,avail,0 -thank_you,thank you again,parrot,bye,2 -goodbye,tootles,original,bye,2 -yes,and you're correct,parrot,book,1 -how_busy,how long until dinner?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -no,nay,original,cancel,3 -calendar_update,remove a doctor appointment from my calendar,parrot,resched,5 -no,nada,original,cancel,3 -date,what happens tomorrow in the calendar?,parrot,avail,0 -goodbye,farewell,original,bye,2 -yes,yeah,original,book,1 -yes,uh-huh,original,book,1 -no,invalid,original,cancel,3 -goodbye,i’m leaving-goodbye!,original,bye,2 -yes,definitely yes,parrot,book,1 -yes,all right,original,book,1 -thank_you,you've tried,parrot,bye,2 -no,definitely not,original,cancel,3 -yes,approved,original,book,1 -yes,i'd say yes,parrot,book,1 -no,not that one,original,cancel,3 -goodbye,bye now,original,bye,2 -goodbye,greetings,parrot,bye,2 -no,it is no,original,cancel,3 -how_busy,how busy will the browns be at 4 pm,parrot,avail,0 -cancel_reservation,i need to cancel the reservation for tonight's meal,parrot,cancel,3 -cancel_reservation,i want you to cancel the dinner reservation for williams at the palace tonight,parrot,cancel,3 -goodbye,good bye,original,bye,2 -yes,"yes, please",parrot,book,1 -no,no good,original,cancel,3 -reminder_update,make a reminder to take vitamins,parrot,resched,5 -goodbye,peace,original,bye,2 -no,is a lie?,parrot,cancel,3 -greeting,wassup,original,greet,4 -thank_you,i'm thankful,original,bye,2 -date,which date are we entering in the future,lambada,avail,0 -thank_you,thanks please,original,bye,2 -reminder_update,remember to remember later,parrot,resched,5 -no,that's wrong,original,cancel,3 -no,that's absolutely false,parrot,cancel,3 -schedule_meeting,can you please schedule a meeting with katie at 11 am?,lambada,book,1 -thank_you,appreciated,original,bye,2 -thank_you,the best,parrot,bye,2 -reminder_update,please remember me,parrot,resched,5 -greeting,"hi, ai",original,greet,4 -greeting,"good morning, ai",original,greet,4 -no,that's not it,parrot,cancel,3 -yes,sure thing,original,book,1 -goodbye,"i enjoyed our talk, goodbye",original,bye,2 -no,nothing,parrot,cancel,3 -goodbye,ill leave now,parrot,bye,2 -goodbye,bye!,original,bye,2 -goodbye,it was good talking to you,parrot,bye,2 -no,not right so,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -no,that's very wrong,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -goodbye,bye!,original,bye,2 -schedule_meeting,please schedule a meeting?,parrot,book,1 -schedule_meeting,please set up a meeting with tom at 5pm,parrot,book,1 -yes,confirm,original,book,1 -yes,great,original,book,1 -greeting,hello how's my life?,parrot,greet,4 -goodbye,goodbyes,parrot,bye,2 -date,what is the day?,original,avail,0 -how_busy,when is the restaurant most busy around 11 am?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -yes,that is correct,original,book,1 -yes,perfect,parrot,book,1 -meeting_schedule,do you have any meetings with mark today?,parrot,avail,0 -greeting,wassup,original,greet,4 -how_busy,chili's busy around 730?,parrot,avail,0 -yes,ok,original,book,1 -no,that's no,parrot,cancel,3 -how_busy,how long will it take to get seated at iman's?,parrot,avail,0 -goodbye,adios,original,bye,2 -no,that's incorrect,original,cancel,3 -greeting,hello bs,parrot,greet,4 -greeting,hey hey!,original,greet,4 -no,"sorry, that is not true",original,cancel,3 -greeting,hi,original,greet,4 -yes,uh-huh,original,book,1 -yes,very true,original,book,1 -calendar_update,how can i add a veterinarian appointment on march 1st?,parrot,resched,5 -greeting,aho,parrot,greet,4 -yes,TRUE,lambada,book,1 -goodbye,get there soon,lambada,bye,2 -greeting,heyo,original,greet,4 -date,where is tomorrow's date,lambada,avail,0 -how_busy,how long should i wait to eat macaroni grill?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -yes,correct,original,book,1 -thank_you,"awesome, thanks",original,bye,2 -thank_you,good job helping me,parrot,bye,2 -goodbye,"see you later, alligator",original,bye,2 -yes,so i want it to be true,parrot,book,1 -meeting_schedule,do i have any meetings between 11 am and 4 pm?,lambada,avail,0 -yes,you are correct,original,book,1 -date,what's the day now??,parrot,avail,0 -yes,a fact,parrot,book,1 -no,FALSE,lambada,cancel,3 -yes,obviously,parrot,book,1 -yes,approved,original,book,1 -calendar_update,delete party i had with sir april 14th from my calendar,lambada,resched,5 -goodbye,my way,parrot,bye,2 -cancel_reservation,end my reservation with carl at umami,original,cancel,3 -no,negative,original,cancel,3 -greeting,how's my day going?,parrot,greet,4 -yes,"yes, that is factual",original,book,1 -goodbye,goodbye now,parrot,bye,2 -no,but that's not true,parrot,cancel,3 -greeting,hello how's it going,original,greet,4 -goodbye,", goodbye",lambada,bye,2 -goodbye,sayonara,original,bye,2 -yes,yes,original,book,1 -goodbye,take it easy,lambada,bye,2 -yes,yup,original,book,1 -thank_you,okay thanks,original,bye,2 -yes,confirm,original,book,1 -yes,"yes, please",parrot,book,1 -goodbye,see ya,lambada,bye,2 -thank_you,it's all i need,parrot,bye,2 -calendar,i need my calendar,parrot,avail,0 -how_busy,how long can i wait to be at the fountain?,parrot,avail,0 -how_busy,how long would the wait be at the golden gate steakhouse,parrot,avail,0 -yes,certainly,parrot,book,1 -goodbye,"bye-bye, my friend",lambada,bye,2 -goodbye,i'm out,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -no,nothing good,parrot,cancel,3 -yes,yeah,original,book,1 -yes,facts,original,book,1 -greeting,salutations!,original,greet,4 -no,is my falsehood?,parrot,cancel,3 -greeting,hey fellow,parrot,greet,4 -greeting,ahoy,lambada,greet,4 -yes,is true,parrot,book,1 -no,invalid,original,cancel,3 -how_busy,list the wait times for the red robins?,parrot,avail,0 -no,nada,original,cancel,3 -schedule_meeting,the meeting should be scheduled,lambada,book,1 -reminder_update,can i set a reminder for you?,parrot,resched,5 -no,naw,parrot,cancel,3 -reminder_update,make a reminder,parrot,resched,5 -yes,what you said is accurate?,lambada,book,1 -how_busy,how long does it take to get a table at garlic bread pizza,lambada,avail,0 -goodbye,say goodbye,parrot,bye,2 -thank_you,good job,lambada,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,sure,original,book,1 -no,that's not correct,original,cancel,3 -reminder_update,just a reminder,parrot,resched,5 -yes,of course,original,book,1 -goodbye,this conversation was wonderful,parrot,bye,2 -yes,do that?,original,book,1 -thank_you,i need to thank you,original,bye,2 -greeting,heyo,original,greet,4 -goodbye,buhbye,original,bye,2 -greeting,how are things?,parrot,greet,4 -goodbye,my friend,parrot,bye,2 -how_busy,how long is the wait at the cheese cake factory,lambada,avail,0 -thank_you,appreciated,original,bye,2 -goodbye,goodbye bye,parrot,bye,2 -yes,positive,original,book,1 -yes,okay,original,book,1 -goodbye,fairwell?,parrot,bye,2 -yes,ya,original,book,1 -meeting_schedule,i need to know if i have meetings for today,parrot,avail,0 -goodbye,buhbye,original,bye,2 -no,that's so wrong,parrot,cancel,3 -how_busy,how long will the wait be at the chili's,lambada,avail,0 -greeting,hola,original,greet,4 -goodbye,buhbye,original,bye,2 -greeting,"hello, anyone there",original,greet,4 -reminder_update,remind me what i have to do?,parrot,resched,5 -date,today?,parrot,avail,0 -greeting,wassup,original,greet,4 -greeting,aloha,original,greet,4 -yes,perfect,parrot,book,1 -thank_you,you've been great,parrot,bye,2 -calendar_update,i need friday on my calendar,parrot,resched,5 -yes,positive,original,book,1 -thank_you,nice,parrot,bye,2 -calendar,what's on my calendar for august 7,parrot,avail,0 -meeting_schedule,what is today's meeting hour?,parrot,avail,0 -date,in 8 days?,parrot,avail,0 -meeting_schedule,wanna meet roger?,parrot,avail,0 -how_busy,how crowded is this restaurant?,parrot,avail,0 -yes,yes,original,book,1 -goodbye,goodbye to yours,parrot,bye,2 -no,no?,parrot,cancel,3 -no,nope,original,cancel,3 -thank_you,good looking out,original,bye,2 -greeting,hello what's happening,parrot,greet,4 -yes,great,original,book,1 -greeting,well hello,original,greet,4 -reminder_update,remind me later,original,resched,5 -no,no?,parrot,cancel,3 -yes,yay,lambada,book,1 -no,definitely not,original,cancel,3 -yes,so it's true,parrot,book,1 -no,negatory,original,cancel,3 -yes,right,parrot,book,1 -how_busy,how long will i have to wait for a steak?,parrot,avail,0 -yes,uh huh,original,book,1 -yes,obviously,parrot,book,1 -meeting_schedule,is my meeting scheduled?,parrot,avail,0 -no,negative,original,cancel,3 -yes,i'll say yes,parrot,book,1 -reminder_update,please add a reminder,lambada,resched,5 -meeting_schedule,when's my meeting?,parrot,avail,0 -date,today?,parrot,avail,0 -yes,i want that,parrot,book,1 -no,absolutely false,parrot,cancel,3 -no,nothing,parrot,cancel,3 -yes,exactly right,original,book,1 -goodbye,goodbye goodbye,parrot,bye,2 -thank_you,appreciated,original,bye,2 -goodbye,sayonara ,parrot,bye,2 -how_busy,what number of people are waiting at chili's around 9pm?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -no,that's a negative,original,cancel,3 -yes,yep,original,book,1 -no,negative sure,parrot,cancel,3 -yes,yup,original,book,1 -yes,obviously,parrot,book,1 -greeting,how's it going,lambada,greet,4 -no,it's negative,parrot,cancel,3 -no,that's false,original,cancel,3 -greeting,whats new,lambada,greet,4 -reminder_update,add a reminder,lambada,resched,5 -reminder_update,remind me to do something,original,resched,5 -thank_you,thanks,original,bye,2 -yes,i just said it,parrot,book,1 -goodbye,fairwell,original,bye,2 -goodbye,see ya,lambada,bye,2 -greeting,whats up?,parrot,greet,4 -yes,i guess,parrot,book,1 -date,date tomorrow?,parrot,avail,0 -yes,that is true,lambada,book,1 -no,certainly false,parrot,cancel,3 -yes,TRUE,original,book,1 -greeting,hiya,original,greet,4 -goodbye,i must say goodbye,original,bye,2 -yes,definitely yes,parrot,book,1 -greeting,"wake up, ai",original,greet,4 -yes,you're right,original,book,1 -goodbye,i'm out,parrot,bye,2 -goodbye,thank you goodbye,original,bye,2 -yes,huh huh,parrot,book,1 -no,absolutely false,parrot,cancel,3 -goodbye,and then goodbye,parrot,bye,2 -date,what day?,parrot,avail,0 -goodbye,im leaving,parrot,bye,2 -goodbye,goodbye to your,lambada,bye,2 -schedule_meeting,get me a meeting room for 9 am friday,parrot,book,1 -yes,okay,original,book,1 -goodbye,good call,parrot,bye,2 -yes,thats right,original,book,1 -yes,exactly right,original,book,1 -calendar,can you check my calendar for the 17th for the?,lambada,avail,0 -yes,i think you're right,parrot,book,1 -thank_you,thanks for that!,original,bye,2 -yes,huh,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -yes,good,parrot,book,1 -no,it's no,parrot,cancel,3 -thank_you,thanks again,original,bye,2 -thank_you,thanks,original,bye,2 -yes,agreed,original,book,1 -date,today?,parrot,avail,0 -greeting,whats new,lambada,greet,4 -no,nope,original,cancel,3 -thank_you,thank you for the good job,parrot,bye,2 -thank_you,thanks,original,bye,2 -no,that would be no,lambada,cancel,3 -no,certainly false,parrot,cancel,3 -goodbye,cya later,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,is it crowded at night?,parrot,avail,0 -yes,great,original,book,1 -no,that's bad,parrot,cancel,3 -how_busy,what's the wait time for mac and cheese right now?,parrot,avail,0 -greeting,are you well?,original,greet,4 -calendar,i have a date on my calendar for march 2,parrot,avail,0 -yes,positive,parrot,book,1 -greeting,what i feel?,parrot,greet,4 -greeting,bonjour,original,greet,4 -yes,perfect,parrot,book,1 -schedule_meeting,can you schedule a meeting with katie at 11 am,parrot,book,1 -thank_you,thanks,original,bye,2 -greeting,aho,parrot,greet,4 -greeting,what's new,lambada,greet,4 -thank_you,so i appreciate it,parrot,bye,2 -calendar,what do you need to know about the march date on my calendar?,parrot,avail,0 -greeting,how you're doing?,parrot,greet,4 -goodbye,bye-bye,original,bye,2 -date,what's today,original,avail,0 -goodbye,farewell,original,bye,2 -greeting,how is ife treating you,parrot,greet,4 -thank_you,i'm happy for my help,parrot,bye,2 -thank_you,really great!,original,bye,2 -how_busy,how long is the wait at chinese restaurant right now,lambada,avail,0 -goodbye,later gator!,original,bye,2 -yes,can we please?,original,book,1 -yes,yes that's it,original,book,1 -yes,facts,original,book,1 -thank_you,"awesome, thanks",original,bye,2 -greeting,hiya,original,greet,4 -reminder_update,just a reminder,parrot,resched,5 -greeting,what's new,lambada,greet,4 -how_busy,how long is the wait for a table at olive garden?,parrot,avail,0 -goodbye,sayonara ,parrot,bye,2 -how_busy,how long does it take to wait for a table at the fountain?,parrot,avail,0 -no,not right so,parrot,cancel,3 -no,i meant no,original,cancel,3 -yes,"yes, please",parrot,book,1 -greeting,hey,original,greet,4 -calendar_update,i need to add iep meeting to my calendar on april 15th,original,resched,5 -no,that's incorrect,original,cancel,3 -no,that would be false,original,cancel,3 -thank_you,thanks for that,original,bye,2 -goodbye,later!,original,bye,2 -yes,say yes,lambada,book,1 -yes,i say yes,lambada,book,1 -goodbye,farewell,original,bye,2 -yes,positive,original,book,1 -goodbye,tootles?,parrot,bye,2 -thank_you,did you do a good job?,parrot,bye,2 -date,what's the date tomorrow,original,avail,0 -yes,this is true,lambada,book,1 -yes,okay,original,book,1 -greeting,hello how're you doing?,parrot,greet,4 -yes,i'll check it out,parrot,book,1 -yes,yes,original,book,1 -no,negation,parrot,cancel,3 -how_busy,how many people go to the restaurant before dinner,lambada,avail,0 -calendar_update,remove the anniversary dinner from my calendar on april 5th,parrot,resched,5 -thank_you,i'm grateful,original,bye,2 -calendar,can you tell me anything about march 29th?,parrot,avail,0 -no,that's not factual,parrot,cancel,3 -thank_you,i'm very thankful,parrot,bye,2 -thank_you,nice,parrot,bye,2 -goodbye,sayonara,original,bye,2 -yes,definitely,original,book,1 -thank_you,appreciate the support,parrot,bye,2 -goodbye,signing off,original,bye,2 -greeting,hey,original,greet,4 -yes,so it works,parrot,book,1 -goodbye,it's time for goodbye,parrot,bye,2 -schedule_meeting,can you book a meeting room for friday at 9:00 am?,original,book,1 -thank_you,well done,parrot,bye,2 -greeting,hiya!,original,greet,4 -greeting,ahoy hoy,original,greet,4 -greeting,how're you?,parrot,greet,4 -how_busy,how long will i have to wait if we want to go to the cheesecake factory,lambada,avail,0 -greeting,have you felt?,parrot,greet,4 -no,please no,parrot,cancel,3 -thank_you,appreciate the assistance,parrot,bye,2 -no,that is untrue,original,cancel,3 -schedule_meeting,can you schedule a meeting for 3 pm wednesday?,parrot,book,1 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -meeting_schedule,when do i have a meeting?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -yes,good,parrot,book,1 -thank_you,"awesome, thanks",original,bye,2 -thank_you,my thanks,parrot,bye,2 -greeting,"hello, friend",original,greet,4 -how_busy,how busy will iman be at 6 am,lambada,avail,0 -how_busy,how long will it take me to sit in the red lobster restaurant?,parrot,avail,0 -no,it is false,original,cancel,3 -goodbye,i'm going,parrot,bye,2 -goodbye,farewell!,original,bye,2 -no,i didn't mean that,parrot,cancel,3 -date,what year?,parrot,avail,0 -goodbye,bye!,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -no,nope,original,cancel,3 -no,no good,original,cancel,3 -goodbye,bye-bye,original,bye,2 -goodbye,make sure you get some rest now,lambada,bye,2 -yes,affirmative,original,book,1 -greeting,what's happening?,parrot,greet,4 -goodbye,see ya,lambada,bye,2 -greeting,aho,parrot,greet,4 -yes,so it's true,parrot,book,1 -goodbye,goodbye,original,bye,2 -how_busy,how much does red lobster get at 7pm,lambada,avail,0 -goodbye,good-bye,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -goodbye,later!,original,bye,2 -how_busy,how busy is olive garden at 6pm,lambada,avail,0 -thank_you,"thanks, that's helpful",original,bye,2 -goodbye,farewell!,original,bye,2 -goodbye,bye!,original,bye,2 -no,the information is incorrect,parrot,cancel,3 -thank_you,thanks for all the help,parrot,bye,2 -greeting,how was my day?,parrot,greet,4 -goodbye,peace,original,bye,2 -greeting,how are you treated,lambada,greet,4 -yes,TRUE,lambada,book,1 -yes,correct,original,book,1 -yes,ok,original,book,1 -reminder_update,add a reminder to wash my dishes,parrot,resched,5 -cancel_reservation,please cancel my reservation at red lobster,lambada,cancel,3 -meeting_schedule,meetings today,original,avail,0 -thank_you,good job,lambada,bye,2 -cancel_reservation,i need to cancel my dinner reservation at the steakhouse,lambada,cancel,3 -greeting,how's my treatment?,parrot,greet,4 -reminder_update,set reminder for 2 pm to clean kitchen,lambada,resched,5 -thank_you,thankyou,parrot,bye,2 -greeting,hi what's up?,parrot,greet,4 -greeting,good morning ai,parrot,greet,4 -goodbye,goodbye then,parrot,bye,2 -thank_you,again thanks,parrot,bye,2 -thank_you,appreciated,original,bye,2 -calendar,give me an update on my schedule for march 1,parrot,avail,0 -no,no thanks,original,cancel,3 -date,today is what date?,parrot,avail,0 -no,that's a wrong answer,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -calendar,what's my schedule for october 14th?,parrot,avail,0 -date,after eight days what day will it be,parrot,avail,0 -yes,agreed,original,book,1 -yes,10-Apr,original,book,1 -greeting,salutations!,original,greet,4 -thank_you,thanks so much!,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,thanks!,original,bye,2 -thank_you,thankyou,parrot,bye,2 -greeting,hiya,original,greet,4 -no,nope,original,cancel,3 -goodbye,goodnight,original,bye,2 -goodbye,greetings,parrot,bye,2 -yes,TRUE,original,book,1 -greeting,"hello, what's up",original,greet,4 -cancel_reservation,please cancel my reservation for tim at jb's,original,cancel,3 -thank_you,thanks for the information,parrot,bye,2 -greeting,hey,original,greet,4 -thank_you,it pleased me,parrot,bye,2 -no,nay,original,cancel,3 -greeting,salutations,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -yes,okay,original,book,1 -yes,TRUE,original,book,1 -yes,i'm sure it's true,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -yes,great,original,book,1 -greeting,how is ayi doing?,parrot,greet,4 -goodbye,adios!,original,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -goodbye,cya later,original,bye,2 -greeting,how's otc?,parrot,greet,4 -yes,accepted,original,book,1 -greeting,"hello, friend",original,greet,4 -reminder_update,remind me to go to the bathroom?,parrot,resched,5 -yes,ya,original,book,1 -no,no good,original,cancel,3 -yes,that's right,original,book,1 -calendar,please check my calendar for march 31st,parrot,avail,0 -goodbye,goodbye,original,bye,2 -no,nothing good,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -yes,uh-huh,original,book,1 -yes,agreed,original,book,1 -goodbye,have fun?,lambada,bye,2 -greeting,hello good morning,parrot,greet,4 -goodbye,afterward,parrot,bye,2 -goodbye,signing off,original,bye,2 -no,negating,parrot,cancel,3 -thank_you,i appreciate it,original,bye,2 -no,that's incorrect,original,cancel,3 -calendar_update,on 22 of this month we need to clear our calendar so we can leave it open for mark to visit,parrot,resched,5 -greeting,how's this going?,parrot,greet,4 -yes,good,parrot,book,1 -reminder_update,remind me to call the vet tomorrow,original,resched,5 -greeting,heyo,original,greet,4 -thank_you,i sincerely thank you,parrot,bye,2 -how_busy,how long will i have to wait for a table in tamale?,parrot,avail,0 -how_busy,how long is the sitting time in the restaurant?,parrot,avail,0 -yes,yep,original,book,1 -reminder_update,let me know,parrot,resched,5 -no,that's totally wrong,parrot,cancel,3 -no,that's overwhelmingly negative,parrot,cancel,3 -no,it's overwhelmingly negative,parrot,cancel,3 -thank_you,thanks for coming,parrot,bye,2 -date,what today?,parrot,avail,0 -how_busy,how busy is the restaurant now?,parrot,avail,0 -yes,please confirm that it's true,parrot,book,1 -how_busy,when will it take to get a table at chili's?,parrot,avail,0 -how_busy,i want to know the number of people who visit tacoma swans,parrot,avail,0 -how_busy,is there a wait time at the olive garden?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -thank_you,okay thank you,parrot,bye,2 -no,is that a lie,parrot,cancel,3 -yes,ya,original,book,1 -date,please let me know what the date is,parrot,avail,0 -calendar_update,delete this event from my calendar,parrot,resched,5 -how_busy,do you know how busy it is?,parrot,avail,0 -yes,that's right,original,book,1 -greeting,heyo,original,greet,4 -date,in 9 days?,parrot,avail,0 -how_busy,how busy the olive garden restaurant is at 7 pm?,parrot,avail,0 -schedule_meeting,i'd like to have a meeting,parrot,book,1 -thank_you,thank you for my payment,parrot,bye,2 -no,erroneous,parrot,cancel,3 -no,i'd rather not,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -no,negating,parrot,cancel,3 -how_busy,how long does it take to get a table in garlic bread pizza?,parrot,avail,0 -no,yes it's false,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -how_busy,there's a cheesecake factory,parrot,avail,0 -calendar,give me my schedule for march 13th,lambada,avail,0 -schedule_meeting,i need help with setting a meeting,parrot,book,1 -how_busy,if i want a table at the hotel how long will it take me?,parrot,avail,0 -goodbye,glad we could talk,parrot,bye,2 -yes,confirm,original,book,1 -no,hell nah,original,cancel,3 -thank_you,appreciate it,original,bye,2 -yes,indeed,original,book,1 -meeting_schedule,what is my meeting today?,lambada,avail,0 -how_busy,which place is the busiest at 8pm,parrot,avail,0 -goodbye,great talk with you,lambada,bye,2 -goodbye,catch you around,original,bye,2 -greeting,what am i feeling?,lambada,greet,4 -goodbye,tootles?,parrot,bye,2 -meeting_schedule,what's my meeting plan?,parrot,avail,0 -no,that's a false,lambada,cancel,3 -greeting,hi,original,greet,4 -schedule_meeting,set up a meeting,parrot,book,1 -greeting,salutations!,original,greet,4 -date,date tomorrow,parrot,avail,0 -yes,"yes, that's affirmative",original,book,1 -yes,confirmed,original,book,1 -thank_you,thank you again,parrot,bye,2 -yes,10-Apr,original,book,1 -greeting,hey,original,greet,4 -schedule_meeting,are there meeting rooms available between 11 and 12?,parrot,book,1 -date,what today?,parrot,avail,0 -no,FALSE,original,cancel,3 -how_busy,are cool people at the bar at 9:00 pm?,original,avail,0 -thank_you,thanks please,original,bye,2 -goodbye,"i enjoyed talking to you, bye",original,bye,2 -calendar,please check my calendar for an event called the physical?,parrot,avail,0 -yes,positive,parrot,book,1 -how_busy,if you want a table at american steak house how long will it take,parrot,avail,0 -meeting_schedule,check my schedule today,parrot,avail,0 -yes,and you're right,parrot,book,1 -date,today is what date?,parrot,avail,0 -greeting,"hello, friend",original,greet,4 -yes,uh huh,original,book,1 -goodbye,fairwell?,parrot,bye,2 -greeting,how things go?,parrot,greet,4 -no,so that's no,parrot,cancel,3 -goodbye,nice talking to you,parrot,bye,2 -yes,indeed,original,book,1 -no,"yea, that is wrong",lambada,cancel,3 -goodbye,greetings,parrot,bye,2 -cancel_reservation,scrap that dinner reservation,original,cancel,3 -date,is today the date?,lambada,avail,0 -greeting,heller,original,greet,4 -reminder_update,make me remember,parrot,resched,5 -thank_you,gracias,original,bye,2 -goodbye,just relax,parrot,bye,2 -yes,so it's true,parrot,book,1 -yes,ya,original,book,1 -greeting,what's happened?,parrot,greet,4 -goodbye,the conversation was nice,parrot,bye,2 -calendar,what's on my schedule for april 15th,lambada,avail,0 -greeting,heyo,original,greet,4 -yes,uh-huh,original,book,1 -no,that's negative,parrot,cancel,3 -how_busy,how long will it take to sit at chipotle steakhouse?,parrot,avail,0 -cancel_reservation,cancellation of dinner reservation please,parrot,cancel,3 -goodbye,my way,parrot,bye,2 -goodbye,buhbye,original,bye,2 -no,that's not it,parrot,cancel,3 -no,no!,original,cancel,3 -goodbye,sign off,parrot,bye,2 -yes,oh-huh,parrot,book,1 -yes,confirmed,original,book,1 -yes,sure,original,book,1 -goodbye,good-bye,parrot,bye,2 -yes,"yes, please",parrot,book,1 -greeting,good morning,parrot,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -how_busy,how busy is the olive garden at five?,parrot,avail,0 -no,definitely not,original,cancel,3 -no,negatory?,parrot,cancel,3 -yes,definitely,original,book,1 -cancel_reservation,i don't need my reservation,parrot,cancel,3 -thank_you,i'm thankful,original,bye,2 -greeting,why hello?,original,greet,4 -goodbye,adios!,original,bye,2 -no,negatory?,parrot,cancel,3 -yes,positive,original,book,1 -greeting,hi how's it going?,parrot,greet,4 -no,that would be no,lambada,cancel,3 -no,it'd be awful,parrot,cancel,3 -goodbye,peace,original,bye,2 -thank_you,really great!,original,bye,2 -yes,yeah,original,book,1 -no,say negative,parrot,cancel,3 -yes,that is true,original,book,1 -goodbye,tootles?,parrot,bye,2 -goodbye,lovely conversation,parrot,bye,2 -greeting,hello i'd like to know how you're doing,parrot,greet,4 -greeting,greetings to you,original,greet,4 -greeting,how things go?,parrot,greet,4 -greeting,whats up?,parrot,greet,4 -yes,positive,original,book,1 -thank_you,you answered my questions,parrot,bye,2 -greeting,hola!,original,greet,4 -goodbye,greetings,parrot,bye,2 -yes,yes,original,book,1 -goodbye,i really enjoyed our goodbye,parrot,bye,2 -greeting,whats new,lambada,greet,4 -no,nada,original,cancel,3 -how_busy,do you know how busy the outback steakhouse will be at 5pm?,parrot,avail,0 -how_busy,tell me the time to wait for the pizza bakery?,parrot,avail,0 -yes,of course,original,book,1 -thank_you,thanks for the payment,parrot,bye,2 -greeting,"hello, friend",original,greet,4 -goodbye,goodbye helpful ai devices,parrot,bye,2 -goodbye,"thank you for the chat, goodbye",original,bye,2 -no,that's negative,parrot,cancel,3 -date,in seven days?,parrot,avail,0 -greeting,how is the ayi getting on,lambada,greet,4 -no,you're not right,parrot,cancel,3 -greeting,heller,original,greet,4 -goodbye,it's good to talk again,parrot,bye,2 -how_busy,can you tell me how busy red robin's is at 6pm?,lambada,avail,0 -no,i'll have to say no,parrot,cancel,3 -thank_you,thanks,original,bye,2 -date,give me what the date is tomorrow,parrot,avail,0 -greeting,aloha,original,greet,4 -goodbye,see ya,lambada,bye,2 -yes,yup,original,book,1 -yes,is true,parrot,book,1 -yes,agreed,original,book,1 -thank_you,i really thank you,original,bye,2 -thank_you,thanks again!,original,bye,2 -greeting,yo,original,greet,4 -calendar,please see my calendar,parrot,avail,0 -yes,oh-huh,parrot,book,1 -cancel_reservation,are there any ways to cancel my reservation?,parrot,cancel,3 -no,that is erroneous,original,cancel,3 -calendar,tell me what's on my calendar for march 1st,parrot,avail,0 -calendar,what do i have for january 14th?,parrot,avail,0 -how_busy,how busy is the mac and cheese restaurant at 6:30,lambada,avail,0 -greeting,ahoy,lambada,greet,4 -no,not right?,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -yes,that's right,original,book,1 -goodbye,the talk was nice,lambada,bye,2 -greeting,how's it going with you?,parrot,greet,4 -no,FALSE,lambada,cancel,3 -yes,that's all right,parrot,book,1 -greeting,welcome,parrot,greet,4 -goodbye,"nice talk, next time",lambada,bye,2 -meeting_schedule,is there a meeting on my calendar today?,parrot,avail,0 -thank_you,you're special thanks,parrot,bye,2 -date,i need a date,parrot,avail,0 -thank_you,thanks again!,original,bye,2 -greeting,how's the situation?,parrot,greet,4 -greeting,yo,original,greet,4 -thank_you,and i appreciate my time,parrot,bye,2 -calendar_update,on 22 of this month we need to clear our calendar so we can leave it open for mark to visit,parrot,resched,5 -calendar_update,proceed and cancel the appointment i scheduled for monday,parrot,resched,5 -greeting,yo,original,greet,4 -no,i'd rather not answer that,parrot,cancel,3 -reminder_update,give me a reminder to deposit my paycheck,parrot,resched,5 -yes,i say yes,lambada,book,1 -how_busy,how busy is this cheesecake factory?,parrot,avail,0 -date,is it monday?,parrot,avail,0 -no,not true,original,cancel,3 -goodbye,bye,original,bye,2 -no,naw,original,cancel,3 -yes,"yep, that's true",original,book,1 -thank_you,thanks for the payment,parrot,bye,2 -thank_you,your answer was good,original,bye,2 -how_busy,how long is the restaurant wait before being seated,lambada,avail,0 -thank_you,i'm grateful,original,bye,2 -calendar_update,take my lunch plans off of the calendar for march 13th,parrot,resched,5 -goodbye,ai goodbye,original,bye,2 -no,that's very negative,parrot,cancel,3 -greeting,what's happening?,parrot,greet,4 -goodbye,see you around,original,bye,2 -goodbye,good luck,lambada,bye,2 -yes,absolutely,original,book,1 -yes,it makes sense,parrot,book,1 -yes,oh-huh,parrot,book,1 -yes,i'd say yes,parrot,book,1 -no,that's erroneous,parrot,cancel,3 -date,what month today?,parrot,avail,0 -how_busy,how long before dinner?,parrot,avail,0 -yes,affirmative,original,book,1 -goodbye,take care then,parrot,bye,2 -date,what's my date tomorrow?,parrot,avail,0 -yes,ok,original,book,1 -thank_you,"nice, excellent!",original,bye,2 -thank_you,thanks!,original,bye,2 -no,naw,parrot,cancel,3 -goodbye,goodbye later,parrot,bye,2 -no,do not change to false?,lambada,cancel,3 -no,that isn't right,original,cancel,3 -greeting,hiya,original,greet,4 -greeting,how's the life?,parrot,greet,4 -meeting_schedule,do i have meetings between 3 and 5 today?,parrot,avail,0 -no,negating,parrot,cancel,3 -meeting_schedule,when is my appointment with dr robin scheduled for?,parrot,avail,0 -no,negating,parrot,cancel,3 -date,what date is it?,original,avail,0 -yes,exactly right,original,book,1 -no,negatory,original,cancel,3 -no,it's certainly a false claim,parrot,cancel,3 -goodbye,i'm saying goodbye now,original,bye,2 -greeting,hey how's it going?,parrot,greet,4 -yes,it's certainly true,parrot,book,1 -goodbye,goodbye no problem,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -how_busy,how long will i wait for a table in tamales?,parrot,avail,0 -thank_you,please thank you,lambada,bye,2 -how_busy,how busy is chili around 11pm,parrot,avail,0 -calendar,can you tell me how the date on my calendar looks on thursday the 14th?,lambada,avail,0 -no,no good,original,cancel,3 -yes,uh-huh,original,book,1 -no,naw,parrot,cancel,3 -reminder_update,add a note,parrot,resched,5 -no,negative definitely,parrot,cancel,3 -meeting_schedule,do i meet joan today?,parrot,avail,0 -calendar_update,is it possible to remove this cookout from the calendar for june 29th?,parrot,resched,5 -no,erroneous,parrot,cancel,3 -yes,accept,parrot,book,1 -yes,affirmative,original,book,1 -greeting,why hello?,original,greet,4 -greeting,good evening,original,greet,4 -goodbye,talk to you later!,original,bye,2 -no,i'm saying no,parrot,cancel,3 -calendar,please tell me what's going to happen on sunday?,parrot,avail,0 -greeting,hi,original,greet,4 -no,nope,original,cancel,3 -goodbye,nice drive by,lambada,bye,2 -calendar,what do i have scheduled for march 2th?,parrot,avail,0 -how_busy,how long will it take before i can eat at friday's steakhouse,lambada,avail,0 -goodbye,peace out,original,bye,2 -calendar,tell me what's on my calendar for march 8?,parrot,avail,0 -goodbye,peace,original,bye,2 -greeting,whats up?,parrot,greet,4 -no,that's inaccurate,original,cancel,3 -goodbye,sayonara,original,bye,2 -yes,you got it,parrot,book,1 -date,what day?,parrot,avail,0 -no,no?,parrot,cancel,3 -no,the negator,parrot,cancel,3 -no,it's false,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -greeting,how's everything,original,greet,4 -no,no this is false,parrot,cancel,3 -how_busy,show me the wait times in chili's?,parrot,avail,0 -no,the negator,parrot,cancel,3 -yes,facts,original,book,1 -no,but it's false,parrot,cancel,3 -how_busy,how long is a wait for me at the restaurant,lambada,avail,0 -yes,perfect,parrot,book,1 -greeting,hola!,original,greet,4 -goodbye,tootles,original,bye,2 -thank_you,gracias,original,bye,2 -date,today?,parrot,avail,0 -no,FALSE,original,cancel,3 -no,please no,parrot,cancel,3 -goodbye,great to talk with you,parrot,bye,2 -no,don't agree,parrot,cancel,3 -greeting,good day,original,greet,4 -goodbye,"that's all, bye",original,bye,2 -no,i would say no,lambada,cancel,3 -no,no it's not true,parrot,cancel,3 -yes,i want to make sure it's true '',parrot,book,1 -no,no,lambada,cancel,3 -no,that's completely false,original,cancel,3 -no,no way,original,cancel,3 -greeting,"wake up, ai",original,greet,4 -cancel_reservation,call my reservation canceled,lambada,cancel,3 -yes,yep,original,book,1 -goodbye,fairwell?,parrot,bye,2 -goodbye,thank you goodbye,original,bye,2 -goodbye,sign off,parrot,bye,2 -greeting,"hey, ai",original,greet,4 -greeting,hey,original,greet,4 -greeting,"hi, ai",original,greet,4 -yes,good yes,lambada,book,1 -greeting,"hello, friend",original,greet,4 -goodbye,buhbye,original,bye,2 -yes,that's a fact,lambada,book,1 -goodbye,for now,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -date,tell me the date i need to go next?,parrot,avail,0 -yes,a real statement,parrot,book,1 -goodbye,good talk,parrot,bye,2 -greeting,what is going on?,parrot,greet,4 -cancel_reservation,please cancel the dinner reservation tonight,parrot,cancel,3 -no,naw,parrot,cancel,3 -greeting,how're you?,parrot,greet,4 -yes,facts,original,book,1 -goodbye,tootles,original,bye,2 -no,it's a false,lambada,cancel,3 -goodbye,peace out,original,bye,2 -no,that’s incorrect,original,cancel,3 -yes,that's a yes,original,book,1 -greeting,tell me how are you?,original,greet,4 -thank_you,thanks a million,original,bye,2 -goodbye,farewell!,original,bye,2 -yes,huh huh,parrot,book,1 -thank_you,i appeciate it,parrot,bye,2 -thank_you,appreciated,original,bye,2 -no,most definitely false,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -goodbye,lovely conversation,parrot,bye,2 -greeting,hello,original,greet,4 -yes,i'm going to tell you tes,parrot,book,1 -no,that would be terrible,lambada,cancel,3 -yes,yay,lambada,book,1 -date,which date today?,parrot,avail,0 -yes,uh-huh,original,book,1 -calendar,what are my appointments on thursday?,parrot,avail,0 -how_busy,how busy will macaroni grill be at 5 pm,lambada,avail,0 -greeting,how are things,original,greet,4 -yes,i believe that's true,original,book,1 -calendar_update,can you clear my calendar for the 1st?,parrot,resched,5 -thank_you,gracias,original,bye,2 -greeting,what's happened?,parrot,greet,4 -how_busy,how long is the wait in the restaurant before dinner,parrot,avail,0 -yes,it seems true,parrot,book,1 -greeting,hey,original,greet,4 -greeting,what's going on,original,greet,4 -goodbye,nice talk,lambada,bye,2 -yes,"yes, you got it",original,book,1 -yes,confirmed,original,book,1 -how_busy,what time will it take for me to sit in chili's restaurant?,parrot,avail,0 -thank_you,thanks,original,bye,2 -no,so that's no,parrot,cancel,3 -greeting,aho,parrot,greet,4 -yes,truthful is my answer,lambada,book,1 -thank_you,"good job, thanks",lambada,bye,2 -how_busy,in a chinese restaurant how long do i have to wait?,parrot,avail,0 -yes,do that?,original,book,1 -thank_you,okay thank you,parrot,bye,2 -greeting,whats new?,parrot,greet,4 -greeting,ahoy,lambada,greet,4 -yes,oh-huh,parrot,book,1 -no,is not true?,parrot,cancel,3 -no,nada,original,cancel,3 -greeting,please tell me how ai's going?,parrot,greet,4 -thank_you,i owe you,parrot,bye,2 -no,naw,parrot,cancel,3 -greeting,hola,original,greet,4 -goodbye,we'll talk later ai,original,bye,2 -goodbye,bye,original,bye,2 -date,if i want to know the date of today,parrot,avail,0 -thank_you,you've been great,parrot,bye,2 -yes,sure thing,original,book,1 -no,no!,original,cancel,3 -thank_you,i'm so grateful for your help,lambada,bye,2 -yes,positive,original,book,1 -calendar_update,march 3rd needs to be cleared on my calendar,original,resched,5 -goodbye,tootles?,parrot,bye,2 -no,indeed it's false,parrot,cancel,3 -thank_you,thanks for answering,parrot,bye,2 -yes,yeap,original,book,1 -thank_you,a million thanks,parrot,bye,2 -greeting,whats new,lambada,greet,4 -how_busy,is the chili busy at 9?,parrot,avail,0 -no,negatory?,parrot,cancel,3 -reminder_update,save it for later,parrot,resched,5 -greeting,what's up?,parrot,greet,4 -goodbye,later!,original,bye,2 -yes,yes,original,book,1 -yes,yup,original,book,1 -meeting_schedule,do any meetings with jimmy go on between 5 and 10?,lambada,avail,0 -no,no?,parrot,cancel,3 -greeting,what's happening?,parrot,greet,4 -yes,certainly,parrot,book,1 -reminder_update,add a note,parrot,resched,5 -no,so that's no,parrot,cancel,3 -goodbye,fairwell,original,bye,2 -date,what year?,parrot,avail,0 -thank_you,you've tried,parrot,bye,2 -no,negative definitely,parrot,cancel,3 -goodbye,i leave now,parrot,bye,2 -yes,you are correct,original,book,1 -thank_you,thank you for helping,parrot,bye,2 -meeting_schedule,are there meetings between 4 and 7 o'clock today?,parrot,avail,0 -yes,it's definitely positive,parrot,book,1 -calendar_update,can you add this event to my calendar for this friday?,lambada,resched,5 -no,negative definitely,parrot,cancel,3 -yes,approved,original,book,1 -greeting,hiya!,original,greet,4 -thank_you,thanks again,original,bye,2 -calendar,what's tuesday in my calendar?,parrot,avail,0 -goodbye,always nice to talk to you,original,bye,2 -yes,positive,parrot,book,1 -thank_you,nice,parrot,bye,2 -no,no?,parrot,cancel,3 -yes,i'll vote for you,parrot,book,1 -no,hell nah,original,cancel,3 -calendar,what's tuesday in my calendar?,parrot,avail,0 -no,naw,parrot,cancel,3 -greeting,good day,original,greet,4 -yes,correct,original,book,1 -thank_you,thanks for helping,original,bye,2 -goodbye,take a rest,parrot,bye,2 -calendar,please see my calendar,parrot,avail,0 -meeting_schedule,do you have any meetings?,parrot,avail,0 -yes,yes,original,book,1 -greeting,how ife treated you?,parrot,greet,4 -no,the negator,parrot,cancel,3 -thank_you,thank you ever so much for that!,original,bye,2 -goodbye,bye bye,lambada,bye,2 -greeting,hey,original,greet,4 -yes,sure thing,original,book,1 -date,is tomorrow's date?,parrot,avail,0 -greeting,good day,original,greet,4 -thank_you,appreciated,original,bye,2 -no,it's a false,lambada,cancel,3 -thank_you,i appreciate your consideration,lambada,bye,2 -how_busy,is there a line at chili's around 8pm?,lambada,avail,0 -date,and what's the day?,parrot,avail,0 -yes,it seems true,parrot,book,1 -greeting,how's everything?,parrot,greet,4 -thank_you,thank you again,parrot,bye,2 -yes,accepted,original,book,1 -goodbye,nice talk,lambada,bye,2 -greeting,i want to know how you feel,parrot,greet,4 -greeting,what's happened?,parrot,greet,4 -yes,TRUE,original,book,1 -yes,huh huh,parrot,book,1 -reminder_update,remind yourself to bring a book to work tomorrow,parrot,resched,5 -greeting,hello,original,greet,4 -goodbye,greetings,parrot,bye,2 -goodbye,later,original,bye,2 -yes,so it's true,parrot,book,1 -yes,so it's true,parrot,book,1 -yes,confirm,original,book,1 -greeting,hello siri,original,greet,4 -yes,so it's true,parrot,book,1 -no,negating,parrot,cancel,3 -yes,"yes, that's true",lambada,book,1 -yes,that's right,original,book,1 -yes,perfect,parrot,book,1 -yes,you're right,original,book,1 -thank_you,thank you for answering that,original,bye,2 -thank_you,i thank you,original,bye,2 -greeting,"hey, how's my day going",lambada,greet,4 -goodbye,"great talk, thanks",original,bye,2 -greeting,how's it going,lambada,greet,4 -thank_you,gracias,original,bye,2 -thank_you,thank you for trying,parrot,bye,2 -thank_you,appreciate it,original,bye,2 -yes,yes sir,original,book,1 -how_busy,chili's busy around 730?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -goodbye,"syonara, ai device!",original,bye,2 -goodbye,i'll have to go,parrot,bye,2 -greeting,how things go?,parrot,greet,4 -no,the answer is no,original,cancel,3 -greeting,hola!,original,greet,4 -goodbye,peace,original,bye,2 -thank_you,thanks a lot,original,bye,2 -no,that's no way,parrot,cancel,3 -no,negative,original,cancel,3 -goodbye,tootles,original,bye,2 -goodbye,sayonara,original,bye,2 -cancel_reservation,scrap the dinner reservation,parrot,cancel,3 -goodbye,fairwell,original,bye,2 -meeting_schedule,have any meetings scheduled for today?,parrot,avail,0 -no,negation,parrot,cancel,3 -greeting,what's happened?,parrot,greet,4 -yes,yeah,original,book,1 -no,absolutely false,parrot,cancel,3 -yes,that's right,original,book,1 -thank_you,thanks,original,bye,2 -date,what date?,parrot,avail,0 -thank_you,i appreciate your consideration,lambada,bye,2 -yes,is true,parrot,book,1 -calendar,what's going on may 4?,parrot,avail,0 -greeting,hello hello good day,parrot,greet,4 -greeting,hola!,original,greet,4 -goodbye,adios!,original,bye,2 -goodbye,signing off,original,bye,2 -calendar,what's my schedule for april 1st 2019?,parrot,avail,0 -cancel_reservation,my reservation for dinner needs to be canceled,original,cancel,3 -thank_you,"great, thanks!",original,bye,2 -greeting,whats up?,parrot,greet,4 -goodbye,later!,original,bye,2 -goodbye,goodbye now,parrot,bye,2 -calendar,what do i have on friday night?,parrot,avail,0 -no,thanks no,parrot,cancel,3 -how_busy,how busy is mcdonald's at lunch,lambada,avail,0 -goodbye,later goodbye,parrot,bye,2 -thank_you,gracias,original,bye,2 -greeting,yo,original,greet,4 -no,is it a lie,parrot,cancel,3 -thank_you,i really thank you,original,bye,2 -no,i'm sorry it's not,parrot,cancel,3 -calendar,what items do i have on my calendar for easter?,original,avail,0 -yes,"yes, that's true",lambada,book,1 -reminder_update,remind me,original,resched,5 -yes,i know that's true,parrot,book,1 -goodbye,have a good day?,original,bye,2 -how_busy,tell me the time to wait at alamo pizza,parrot,avail,0 -cancel_reservation,i don't need dinner reservation,parrot,cancel,3 -thank_you,"nice, excellent!",original,bye,2 -yes,do that?,original,book,1 -greeting,ahoy,lambada,greet,4 -goodbye,adios ai,original,bye,2 -cancel_reservation,my reservation for nugget tom dallas needs to be cancelled,parrot,cancel,3 -schedule_meeting,i'd like to schedule a meeting room from 1:00 pm until 2:00 pm,original,book,1 -greeting,ahoy hoy,original,greet,4 -yes,great,original,book,1 -no,absolutely false,parrot,cancel,3 -goodbye,tootles,original,bye,2 -goodbye,later,original,bye,2 -goodbye,later!,original,bye,2 -how_busy,if i want a table in chipotle how long will it take,parrot,avail,0 -calendar,did i set a date on my calendar for my doctor's appointment?,parrot,avail,0 -yes,"yes, that's it",original,book,1 -greeting,hello,original,greet,4 -yes,sure thing,original,book,1 -goodbye,my friend,parrot,bye,2 -calendar_update,please add an item to my calendar that i have to clean the kitchen on thursday,parrot,resched,5 -no,that's not acceptable,parrot,cancel,3 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -no,definitely not,original,cancel,3 -yes,very true,original,book,1 -calendar,please tell me what's in my calendar for friday?,parrot,avail,0 -date,i need information about the date of today,parrot,avail,0 -no,no way,original,cancel,3 -thank_you,good job,lambada,bye,2 -yes,absolutely!,original,book,1 -reminder_update,set reminder pay taxes on monday,original,resched,5 -no,that isn't true,lambada,cancel,3 -yes,certainly,parrot,book,1 -greeting,heller,original,greet,4 -yes,obviously,parrot,book,1 -goodbye,adios,original,bye,2 -thank_you,thanks!,original,bye,2 -no,absolutely false,parrot,cancel,3 -greeting,bonjour,original,greet,4 -calendar_update,i have to remove this event from my calendar,parrot,resched,5 -no,i would prefer not,original,cancel,3 -yes,good,parrot,book,1 -greeting,yo,original,greet,4 -no,negation,parrot,cancel,3 -how_busy,what's the typical wait in the italian restaurant right now?,parrot,avail,0 -thank_you,you've been great,parrot,bye,2 -no,nope,original,cancel,3 -greeting,whats new,lambada,greet,4 -thank_you,a million thanks,parrot,bye,2 -no,no it's not correct,parrot,cancel,3 -date,what's the date,original,avail,0 -no,not good,parrot,cancel,3 -goodbye,nice talking to you,parrot,bye,2 -greeting,well hello,original,greet,4 -goodbye,later goodbye,parrot,bye,2 -date,a year?,parrot,avail,0 -no,nothing,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -meeting_schedule,what is today's meeting time?,parrot,avail,0 -no,nada,original,cancel,3 -greeting,hi,original,greet,4 -yes,yes that's right,lambada,book,1 -greeting,hey fellows,parrot,greet,4 -yes,okay,original,book,1 -how_busy,sage is busy at noon?,parrot,avail,0 -schedule_meeting,how do i know if i can open a new meeting?,parrot,book,1 -yes,approved,original,book,1 -calendar,check out my calendar,parrot,avail,0 -yes,right,parrot,book,1 -greeting,what's happened?,parrot,greet,4 -greeting,hi what's up?,parrot,greet,4 -greeting,"hello, anyone there",original,greet,4 -no,nay,original,cancel,3 -yes,absolutely!,original,book,1 -no,please disagree,lambada,cancel,3 -meeting_schedule,show me the hours of my meetings?,parrot,avail,0 -yes,obviously,parrot,book,1 -yes,i want it,parrot,book,1 -no,thanks no,parrot,cancel,3 -reminder_update,create a reminder please,parrot,resched,5 -how_busy,how long will i have to wait in olive gardens?,parrot,avail,0 -no,that's inaccurate,original,cancel,3 -yes,TRUE,original,book,1 -no,it's no,parrot,cancel,3 -yes,TRUE,lambada,book,1 -calendar_update,please get rid of my prom event from 25 march,parrot,resched,5 -no,negatory?,parrot,cancel,3 -calendar_update,set my birthday on the 15th from now on,lambada,resched,5 -greeting,what's up,original,greet,4 -meeting_schedule,what time is my meeting with the marketing scheduled?,parrot,avail,0 -no,that's so wrong,parrot,cancel,3 -goodbye,chat with me later,lambada,bye,2 -greeting,hiya!,original,greet,4 -yes,perfect,parrot,book,1 -no,this statement is false,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -yes,facts,original,book,1 -reminder_update,make me remember about my vacation,parrot,resched,5 -no,this is so negative,parrot,cancel,3 -no,nothing,parrot,cancel,3 -schedule_meeting,i'd like to pencil in a meeting with seth at 11am,original,book,1 -greeting,wassup,original,greet,4 -yes,confirmed,original,book,1 -greeting,so how's everything going?,parrot,greet,4 -goodbye,a good talk,parrot,bye,2 -how_busy,when should i wait for a table at ihop right now,parrot,avail,0 -date,what would be tomorrow's date?,parrot,avail,0 -yes,confirmed,original,book,1 -calendar,what is on my calendar for march 18th?,parrot,avail,0 -goodbye,adios,original,bye,2 -no,it's false,parrot,cancel,3 -goodbye,goodbye now,parrot,bye,2 -goodbye,farewell!,original,bye,2 -thank_you,merci beaucoup,original,bye,2 -goodbye,bye!,original,bye,2 -greeting,hey,original,greet,4 -date,date tomorrow?,parrot,avail,0 -yes,certainly,parrot,book,1 -goodbye,but it was nice to talk about it again,parrot,bye,2 -thank_you,thanks a million,original,bye,2 -schedule_meeting,please meet kate at 8 am?,parrot,book,1 -reminder_update,set a reminder to pay taxes tomorrow,lambada,resched,5 -goodbye,goodbyes,parrot,bye,2 -greeting,how's the life in my neighborhood?,parrot,greet,4 -thank_you,thankyou,parrot,bye,2 -yes,"yes, please",parrot,book,1 -calendar,what is on my calendar for march 14th?,parrot,avail,0 -reminder_update,i would like to set up a reminder for my hair appointment,parrot,resched,5 -no,please disagree,lambada,cancel,3 -yes,correct,original,book,1 -no,but i'd say it's a lie,parrot,cancel,3 -no,not correct,parrot,cancel,3 -no,negatory,original,cancel,3 -goodbye,my way,parrot,bye,2 -yes,yup,original,book,1 -how_busy,can i wait for red lobster at 7 pm,parrot,avail,0 -no,negatory,original,cancel,3 -goodbye,nice to see you,original,bye,2 -how_busy,list the wait times for joe's pizza?,parrot,avail,0 -yes,facts,original,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,are you okay now?,parrot,greet,4 -goodbye,very nice conversation,parrot,bye,2 -goodbye,see you soon,original,bye,2 -how_busy,how busy is the restaurant around lunch,parrot,avail,0 -calendar,what's going on on the 2nd march calendars?,parrot,avail,0 -greeting,how was my day?,parrot,greet,4 -no,i don't agree,parrot,cancel,3 -no,certainly false,parrot,cancel,3 -no,no,lambada,cancel,3 -greeting,good day,original,greet,4 -goodbye,goodbye for now,parrot,bye,2 -no,negating,parrot,cancel,3 -no,this is my reply,parrot,cancel,3 -yes,that's true,original,book,1 -date,is today a date?,parrot,avail,0 -yes,facts,original,book,1 -date,current date,original,avail,0 -yes,yes sir,original,book,1 -goodbye,goodnight,original,bye,2 -greeting,aho,parrot,greet,4 -thank_you,nice,parrot,bye,2 -how_busy,how long will i wait for a table in red lobster,parrot,avail,0 -how_busy,what is the wait time at chipotle tonight?,lambada,avail,0 -meeting_schedule,time of meeting?,parrot,avail,0 -yes,accept,parrot,book,1 -goodbye,goodbye now,parrot,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -no,naw,original,cancel,3 -no,please no,parrot,cancel,3 -goodbye,my friend,parrot,bye,2 -goodbye,i'm going to leave,parrot,bye,2 -how_busy,how long will it take to eat olive garden,parrot,avail,0 -date,show me a calendar,original,avail,0 -yes,certainly,parrot,book,1 -greeting,hello there,original,greet,4 -thank_you,okay thank you,parrot,bye,2 -no,that's untrue,parrot,cancel,3 -thank_you,my sincere thanks,parrot,bye,2 -greeting,yo,original,greet,4 -greeting,nice day,lambada,greet,4 -goodbye,later gater,original,bye,2 -yes,that's true,original,book,1 -goodbye,the pleasure was speaking with you,parrot,bye,2 -no,nada,original,cancel,3 -reminder_update,make a reminder for me to do my resume,original,resched,5 -how_busy,is michel busy at 9 o'clock?,parrot,avail,0 -date,in four days what date will it be?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -goodbye,have fun?,lambada,bye,2 -thank_you,thankyou,parrot,bye,2 -goodbye,i'm going,parrot,bye,2 -greeting,good morning,parrot,greet,4 -greeting,what's happened?,parrot,greet,4 -how_busy,how long will it be in red lobster?,parrot,avail,0 -date,tell me the date,parrot,avail,0 -yes,all right,original,book,1 -yes,okay,original,book,1 -reminder_update,remember to bring the checkbook,parrot,resched,5 -greeting,hiya!,original,greet,4 -how_busy,in a chinese house how long does it take to get seated,parrot,avail,0 -yes,a fact,parrot,book,1 -no,it's a negative,parrot,cancel,3 -greeting,bonjour,original,greet,4 -yes,that would be yes,original,book,1 -reminder_update,let me know,parrot,resched,5 -greeting,hey there!,original,greet,4 -goodbye,what a pleasure talking to you,parrot,bye,2 -yes,accepted,original,book,1 -yes,that's a definite yes,original,book,1 -yes,"yup, that's true",original,book,1 -greeting,whats up?,parrot,greet,4 -goodbye,fairwell?,parrot,bye,2 -yes,absolutely correct,original,book,1 -date,what's the current date of,parrot,avail,0 -no,that's overwhelmingly negative,parrot,cancel,3 -greeting,hey,original,greet,4 -greeting,how's ai doing?,parrot,greet,4 -greeting,hola,original,greet,4 -no,naw,original,cancel,3 -goodbye,bye bye,lambada,bye,2 -cancel_reservation,cancel dinner reservation tonight,parrot,cancel,3 -no,that is overwhelmingly negative,lambada,cancel,3 -goodbye,ill leave now,parrot,bye,2 -schedule_meeting,do you know if meeting rooms are open to use 1-2?,original,book,1 -goodbye,peace,original,bye,2 -cancel_reservation,can you cancel the reservation i have at 4 pm at ruth's?,original,cancel,3 -yes,yes i am,original,book,1 -goodbye,"later, goodbye",lambada,bye,2 -goodbye,adios,original,bye,2 -how_busy,is olive garden busy at lunch?,lambada,avail,0 -yes,yes,original,book,1 -how_busy,tell me the time it takes to get into needham's restaurant,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -yes,10-Apr,original,book,1 -goodbye,give me a chat soon,lambada,bye,2 -thank_you,"nice, excellent!",original,bye,2 -meeting_schedule,meetings today,original,avail,0 -yes,it's true,original,book,1 -thank_you,thank you i appreciate it,parrot,bye,2 -how_busy,can you tell me how busy this restaurant is at this time?,lambada,avail,0 -yes,oh-huh,parrot,book,1 -yes,confirm,original,book,1 -goodbye,goodnight,original,bye,2 -goodbye,my friend,parrot,bye,2 -date,what's the date in 10 days,lambada,avail,0 -yes,yep,original,book,1 -goodbye,talk later,original,bye,2 -greeting,what's happening?,parrot,greet,4 -thank_you,thank you for the vacation,parrot,bye,2 -goodbye,bye!,original,bye,2 -no,no that's not right,parrot,cancel,3 -goodbye,sayonara ,parrot,bye,2 -greeting,"hello, how are you",original,greet,4 -no,no it's not correct,parrot,cancel,3 -goodbye,farewell!,original,bye,2 -no,not happening,original,cancel,3 -meeting_schedule,what's my plan today?,parrot,avail,0 -no,i would rather not,lambada,cancel,3 -calendar,do you have any events planned for march 3?,parrot,avail,0 -yes,positive,original,book,1 -yes,yeah yeah,lambada,book,1 -thank_you,appreciated,original,bye,2 -goodbye,i'm going,parrot,bye,2 -date,please give me today's date,original,avail,0 -thank_you,much obliged,original,bye,2 -reminder_update,remind me,original,resched,5 -no,naw,parrot,cancel,3 -how_busy,find out how busy the olive garden is,parrot,avail,0 -yes,uh-huh,original,book,1 -greeting,what i feel?,parrot,greet,4 -yes,yeah,original,book,1 -goodbye,good-bye,parrot,bye,2 -greeting,how is ai feeling?,parrot,greet,4 -no,no?,parrot,cancel,3 -no,i'm afraid not,parrot,cancel,3 -no,negating,parrot,cancel,3 -greeting,hola,original,greet,4 -goodbye,afterward,parrot,bye,2 -goodbye,peace,original,bye,2 -goodbye,as regards,parrot,bye,2 -date,in what year is tomorrow?,parrot,avail,0 -meeting_schedule,please tell me what meetings you plan to attend today?,parrot,avail,0 -yes,definitely,original,book,1 -meeting_schedule,do meetings with jimmy last between 5 and 10?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -greeting,welcome,parrot,greet,4 -greeting,get up ai,parrot,greet,4 -greeting,how've you been feeling,original,greet,4 -no,not really,original,cancel,3 -goodbye,good speaking to you,original,bye,2 -how_busy,is macy's busy?,parrot,avail,0 -no,is my false assertion?,parrot,cancel,3 -goodbye,i leave now,parrot,bye,2 -reminder_update,please remind me to do this later,original,resched,5 -how_busy,tell me the wait time at chili's right now?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -thank_you,i appeciate it,parrot,bye,2 -greeting,hi how're things going,lambada,greet,4 -date,today?,parrot,avail,0 -no,definitely not,original,cancel,3 -how_busy,outback steakhouse at 7 pm,parrot,avail,0 -thank_you,that's what you did,parrot,bye,2 -no,nope,original,cancel,3 -goodbye,see you later!,original,bye,2 -yes,that's true,original,book,1 -no,i don't answer this question,parrot,cancel,3 -goodbye,see ya later,original,bye,2 -how_busy,when will i have to wait before i make a reservation in the olive garden?,parrot,avail,0 -no,that is false,original,cancel,3 -how_busy,how long does it take to get seated in this steak house?,parrot,avail,0 -meeting_schedule,what date is today's meeting?,lambada,avail,0 -greeting,how's everything,original,greet,4 -thank_you,okay thanks,original,bye,2 -how_busy,is ihop busy?,parrot,avail,0 -reminder_update,remember to bring a checkbook,parrot,resched,5 -yes,say positive,parrot,book,1 -goodbye,see ya,lambada,bye,2 -goodbye,please talk soon,parrot,bye,2 -thank_you,i'm grateful for your help,lambada,bye,2 -goodbye,regards,original,bye,2 -no,that is overwhelmingly wrong,lambada,cancel,3 -goodbye,bye,original,bye,2 -yes,TRUE,original,book,1 -greeting,hiya!,original,greet,4 -thank_you,you helped,parrot,bye,2 -thank_you,you've been amazing,lambada,bye,2 -no,the information is not true,parrot,cancel,3 -greeting,how's the ayi?,parrot,greet,4 -yes,that is correct,original,book,1 -no,that's completely wrong,parrot,cancel,3 -no,it's false,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -goodbye,sign off,parrot,bye,2 -yes,affirmative,original,book,1 -thank_you,thanks again!,original,bye,2 -greeting,how you feel?,parrot,greet,4 -yes,sure,original,book,1 -date,in three days,parrot,avail,0 -reminder_update,"create a reminder, please",lambada,resched,5 -goodbye,cya later,original,bye,2 -goodbye,thank you for my conversation,parrot,bye,2 -thank_you,and i thank you,parrot,bye,2 -no,naw,parrot,cancel,3 -how_busy,find out how busy the cheesecake factory is at 5:30,lambada,avail,0 -yes,just right,parrot,book,1 -yes,absolutely!,original,book,1 -yes,that's right,original,book,1 -yes,let's do it,parrot,book,1 -greeting,well hello,original,greet,4 -date,today?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -no,naw,parrot,cancel,3 -goodbye,will leave now,parrot,bye,2 -no,no,lambada,cancel,3 -thank_you,thanks for what you do,parrot,bye,2 -calendar,what's on the next day of march,lambada,avail,0 -goodbye,regards,original,bye,2 -date,a year?,parrot,avail,0 -goodbye,adios!,original,bye,2 -no,negating,parrot,cancel,3 -how_busy,how long does a pizza shop wait to serve you dinner,parrot,avail,0 -thank_you,nice,parrot,bye,2 -date,what year?,parrot,avail,0 -thank_you,thanks please,original,bye,2 -goodbye,goodbye!,original,bye,2 -goodbye,later goodbye,parrot,bye,2 -goodbye,was nice to catch up with you,parrot,bye,2 -thank_you,thank you kindly,original,bye,2 -date,current day,parrot,avail,0 -goodbye,goodnight,original,bye,2 -no,that's actually false,parrot,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -greeting,how you're treated,parrot,greet,4 -date,a year?,parrot,avail,0 -thank_you,i'm thankful,original,bye,2 -thank_you,"that'll work, good job!",original,bye,2 -reminder_update,remind me,original,resched,5 -reminder_update,remind me to wash my clothes,parrot,resched,5 -no,negative,original,cancel,3 -yes,"yes, that's correct",original,book,1 -meeting_schedule,list the meetings on my calendar today?,parrot,avail,0 -greeting,wassup,original,greet,4 -thank_you,thanks for the response,lambada,bye,2 -calendar,have any appointments scheduled for march 22?,parrot,avail,0 -goodbye,good see you,lambada,bye,2 -yes,huh huh,parrot,book,1 -goodbye,regards,original,bye,2 -no,negating,parrot,cancel,3 -yes,i agree,original,book,1 -reminder_update,i'd like to remind you to bring the plants in tonight,parrot,resched,5 -goodbye,great talk,lambada,bye,2 -goodbye,goodbye!,original,bye,2 -greeting,what's happening,original,greet,4 -goodbye,buhbye,original,bye,2 -goodbye,bye-bye,original,bye,2 -how_busy,how much time will it take to get a table in the olive garden,parrot,avail,0 -no,nada,original,cancel,3 -goodbye,sayonara,original,bye,2 -yes,yes,original,book,1 -goodbye,great talk,lambada,bye,2 -goodbye,i finished talking to you,parrot,bye,2 -yes,ok,original,book,1 -yes,accept,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -greeting,hiya!,original,greet,4 -schedule_meeting,i need a meeting scheduled with jane at 9am,lambada,book,1 -date,tell me what the current date is?,lambada,avail,0 -no,no good,original,cancel,3 -no,that is very false,lambada,cancel,3 -how_busy,what is the wait time at red lobster right now?,lambada,avail,0 -thank_you,thanks for letting me know,original,bye,2 -how_busy,how long is the wait at mcdonald's today?,parrot,avail,0 -date,describe the day?,parrot,avail,0 -goodbye,"great talk, have a good day",lambada,bye,2 -goodbye,for now,parrot,bye,2 -goodbye,goodbye now,parrot,bye,2 -no,certainly not,original,cancel,3 -yes,definitely,original,book,1 -goodbye,take it easy,lambada,bye,2 -goodbye,later gator!,original,bye,2 -no,"no, that is not right",original,cancel,3 -thank_you,i am thankful for you helping me,lambada,bye,2 -no,that's no,parrot,cancel,3 -yes,huh,parrot,book,1 -thank_you,you've been great,parrot,bye,2 -goodbye,take a rest,parrot,bye,2 -how_busy,waiting at macaroni grill?,parrot,avail,0 -no,i believe it's wrong,parrot,cancel,3 -yes,seems true,parrot,book,1 -calendar,what's happening on my calendar for march 12th,parrot,avail,0 -greeting,hey,original,greet,4 -date,let me know what's the date?,parrot,avail,0 -yes,perfect,parrot,book,1 -calendar_update,add my wedding to my calendar for 7 march,parrot,resched,5 -yes,TRUE,lambada,book,1 -greeting,whats up?,parrot,greet,4 -greeting,how's ayi doing?,parrot,greet,4 -yes,oh yes,original,book,1 -yes,agreed,original,book,1 -goodbye,great conversation,parrot,bye,2 -greeting,you're all right?,parrot,greet,4 -yes,"yes, please",parrot,book,1 -greeting,hello what's going on,parrot,greet,4 -goodbye,goodbye for now,parrot,bye,2 -how_busy,how busy will golden corral be at 7:30 tonight,original,avail,0 -no,no way,original,cancel,3 -date,current date,original,avail,0 -how_busy,does ihop have much business around 6?,lambada,avail,0 -goodbye,tata for now,original,bye,2 -reminder_update,remind me to take medicine,parrot,resched,5 -no,that isn't the right answer,original,cancel,3 -goodbye,thanks for chatting,lambada,bye,2 -how_busy,what's the wait time at applebee's?,parrot,avail,0 -yes,i'm going to tell you tes,parrot,book,1 -goodbye,say goodbye now,parrot,bye,2 -no,nothing,parrot,cancel,3 -greeting,hey hey!,original,greet,4 -greeting,hola!,original,greet,4 -no,it's false,parrot,cancel,3 -yes,"yeah, that's it",lambada,book,1 -goodbye,cya later,original,bye,2 -greeting,salutation,parrot,greet,4 -yes,good,parrot,book,1 -greeting,hey,original,greet,4 -no,nothing,parrot,cancel,3 -no,false sure,parrot,cancel,3 -no,that's a no,lambada,cancel,3 -meeting_schedule,when is homer's meeting?,parrot,avail,0 -meeting_schedule,when is my next meeting with joe?,parrot,avail,0 -goodbye,i'm leaving,parrot,bye,2 -goodbye,farewell,original,bye,2 -yes,yeah that's right,lambada,book,1 -greeting,hi how are things going?,parrot,greet,4 -greeting,ahoy,lambada,greet,4 -greeting,what's up,original,greet,4 -yes,great,original,book,1 -reminder_update,"new reminder, please",original,resched,5 -yes,positive,original,book,1 -yes,affirmative,original,book,1 -greeting,hello bs,parrot,greet,4 -thank_you,"thanks, that's helpful",original,bye,2 -thank_you,my sincere thanks,parrot,bye,2 -goodbye,later,original,bye,2 -yes,TRUE,original,book,1 -greeting,how are you doing?,parrot,greet,4 -goodbye,my friend,parrot,bye,2 -date,what's the date today?,parrot,avail,0 -thank_you,thanks for coming by,lambada,bye,2 -calendar,are there any events in my calendar for the 23rd march?,parrot,avail,0 -greeting,have you felt?,parrot,greet,4 -yes,so it's checked,parrot,book,1 -goodbye,goodbye helpful ai devices,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -reminder_update,add a reminder,lambada,resched,5 -no,no thanks,original,cancel,3 -goodbye,later!,original,bye,2 -schedule_meeting,please arrange a meeting with john at 6pm,parrot,book,1 -calendar,display my calendar,lambada,avail,0 -yes,great,original,book,1 -yes,perfect,parrot,book,1 -yes,right,parrot,book,1 -greeting,whats up?,parrot,greet,4 -greeting,ahoy,lambada,greet,4 -yes,agreed,original,book,1 -thank_you,appreciate the assistance,parrot,bye,2 -no,indeed it's false,parrot,cancel,3 -goodbye,bye,original,bye,2 -yes,you are correct,original,book,1 -goodbye,nice talking to you,parrot,bye,2 -thank_you,"awesome, thanks",original,bye,2 -goodbye,bye,original,bye,2 -no,FALSE,lambada,cancel,3 -greeting,are you doing ok?,original,greet,4 -no,FALSE,original,cancel,3 -date,what a day is it?,parrot,avail,0 -calendar,let me know what's showing on my calendar for march 15,lambada,avail,0 -thank_you,gracias,original,bye,2 -date,what's today,original,avail,0 -reminder_update,let me be reminded,parrot,resched,5 -how_busy,how long will i wait for a table at the red lobster restaurant,parrot,avail,0 -calendar_update,i want you to cancel the event on march 14th,parrot,resched,5 -no,it's indeed false,parrot,cancel,3 -greeting,how were you?,parrot,greet,4 -greeting,"hey, ai",original,greet,4 -goodbye,farewell!,original,bye,2 -goodbye,send a goodbye,lambada,bye,2 -how_busy,how busy will the restaurant be at 8 pm,lambada,avail,0 -reminder_update,"new reminder, please",original,resched,5 -reminder_update,don't let me forget to check the steak?,original,resched,5 -thank_you,appreciate it,original,bye,2 -no,invalid,original,cancel,3 -how_busy,how busy is the cafe at 7:00,original,avail,0 -date,what day?,parrot,avail,0 -thank_you,well done,parrot,bye,2 -yes,positive,original,book,1 -greeting,ahoy,lambada,greet,4 -greeting,hi how are you?,parrot,greet,4 -no,is a lie?,parrot,cancel,3 -yes,it's a fact,parrot,book,1 -yes,yeap,original,book,1 -calendar,is event on my calendar?,original,avail,0 -no,that's wrong,original,cancel,3 -how_busy,how long will the restaurant be for dinner?,parrot,avail,0 -greeting,hey yai,lambada,greet,4 -goodbye,good-bye,parrot,bye,2 -greeting,"hey, what's new",original,greet,4 -no,"no, that would be a no",lambada,cancel,3 -goodbye,a good talk,parrot,bye,2 -yes,oh-huh,parrot,book,1 -goodbye,good night,original,bye,2 -greeting,heller,original,greet,4 -date,what is the current day?,original,avail,0 -no,so that's no,parrot,cancel,3 -date,he's got the date,parrot,avail,0 -goodbye,i've got to go,lambada,bye,2 -yes,agreed,original,book,1 -date,in 100 days?,parrot,avail,0 -yes,yup,original,book,1 -thank_you,gracias,original,bye,2 -how_busy,when is chili busy?,parrot,avail,0 -calendar,is there an annual physical on my calendar?,parrot,avail,0 -goodbye,that will be all have a nice day!,original,bye,2 -greeting,how's my day?,parrot,greet,4 -no,"no, that would be wrong",lambada,cancel,3 -date,what's the current date?,parrot,avail,0 -yes,yes,original,book,1 -no,so that's no,parrot,cancel,3 -yes,okay,original,book,1 -yes,correct,original,book,1 -goodbye,until next time!,original,bye,2 -yes,indeed,parrot,book,1 -goodbye,bye bye!,original,bye,2 -schedule_meeting,let's schedule a meeting,lambada,book,1 -goodbye,no problem goodbye,parrot,bye,2 -no,so that's no,parrot,cancel,3 -thank_you,my gratitude,parrot,bye,2 -yes,this is true,lambada,book,1 -greeting,how's life?,parrot,greet,4 -goodbye,bye-bye,original,bye,2 -thank_you,thankyou,parrot,bye,2 -no,that is not the case,original,cancel,3 -goodbye,later,original,bye,2 -goodbye,sayonara ,parrot,bye,2 -goodbye,send a goodbye,lambada,bye,2 -greeting,hola,original,greet,4 -no,definitely not,original,cancel,3 -reminder_update,make a reminder to change my clothes,lambada,resched,5 -yes,certainly,parrot,book,1 -yes,okay,original,book,1 -greeting,salutation,parrot,greet,4 -yes,confirm,original,book,1 -yes,facts,original,book,1 -no,no way!,original,cancel,3 -greeting,hello there ai,original,greet,4 -no,thats a negative,original,cancel,3 -schedule_meeting,i need a meeting room for noon,lambada,book,1 -goodbye,adios!,original,bye,2 -greeting,aloha,original,greet,4 -greeting,whats up?,parrot,greet,4 -yes,"yes, please",parrot,book,1 -how_busy,let me know how busy denny's at 5 am,parrot,avail,0 -no,negatory?,parrot,cancel,3 -greeting,how's otc?,parrot,greet,4 -no,invalid,original,cancel,3 -goodbye,sayonara,original,bye,2 -thank_you,good job,lambada,bye,2 -goodbye,adios,original,bye,2 -goodbye,the discussion was nice,parrot,bye,2 -no,it's very wrong,parrot,cancel,3 -goodbye,and tell me bye?,parrot,bye,2 -goodbye,i have to leave now?,parrot,bye,2 -thank_you,thank you for all my help,parrot,bye,2 -reminder_update,remind me of the flowers,parrot,resched,5 -yes,so it's true,parrot,book,1 -greeting,hey how's ot,lambada,greet,4 -goodbye,have a nice day?,lambada,bye,2 -goodbye,nice talk,lambada,bye,2 -thank_you,thank you for trying it,parrot,bye,2 -no,thanks no,parrot,cancel,3 -calendar,what's on my schedule for july 28th,lambada,avail,0 -greeting,aloha,original,greet,4 -yes,yeap,original,book,1 -no,yes it's false,parrot,cancel,3 -date,what date?,parrot,avail,0 -yes,huh,parrot,book,1 -reminder_update,make a reminder,parrot,resched,5 -no,negation,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -goodbye,thank you for talking,parrot,bye,2 -no,"no, it's not",lambada,cancel,3 -yes,yup,original,book,1 -goodbye,goodbye!,original,bye,2 -yes,certainly true,parrot,book,1 -how_busy,does the wait time at olive garden usually take long?,parrot,avail,0 -yes,TRUE,lambada,book,1 -thank_you,thanks so much for the help,parrot,bye,2 -yes,TRUE,original,book,1 -date,what will be the date in two days?,parrot,avail,0 -yes,accepted,original,book,1 -greeting,ahoy there,lambada,greet,4 -greeting,heller,original,greet,4 -yes,it seems true,parrot,book,1 -no,invalid,original,cancel,3 -greeting,wassup,original,greet,4 -how_busy,how long will it take to get a table at the chili's?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -goodbye,adios,original,bye,2 -how_busy,tell me the current wait time at the restaurant?,lambada,avail,0 -greeting,bonjour,original,greet,4 -yes,i'm willing to say yes,parrot,book,1 -greeting,hola,original,greet,4 -thank_you,i'm so grateful,parrot,bye,2 -yes,definitely yes,parrot,book,1 -meeting_schedule,can you tell me what type of meetings i'm going to attend between noon and 3pm?,parrot,avail,0 -reminder_update,may i be reminded,lambada,resched,5 -greeting,heyo,original,greet,4 -goodbye,peace out!,original,bye,2 -date,where's tomorrow's date,parrot,avail,0 -thank_you,thanks for the payment,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -goodbye,have fun?,lambada,bye,2 -greeting,salutations,parrot,greet,4 -thank_you,very grateful,parrot,bye,2 -how_busy,how busy is ihop?,parrot,avail,0 -calendar,what's i have to do on january 1st?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -reminder_update,remind me,original,resched,5 -yes,"yep, that's correct",lambada,book,1 -yes,right,parrot,book,1 -how_busy,how busy will chili's be around 7pm,lambada,avail,0 -how_busy,are chicken dinners busy?,lambada,avail,0 -goodbye,goodbye no problem,parrot,bye,2 -greeting,heyo,original,greet,4 -goodbye,farewell,original,bye,2 -goodbye,bye bye,lambada,bye,2 -no,no please,parrot,cancel,3 -goodbye,i had a good time with you,parrot,bye,2 -no,no,lambada,cancel,3 -how_busy,wait how long?,parrot,avail,0 -calendar,show me the restaurants on my calendar for march 8th?,parrot,avail,0 -meeting_schedule,let me know what i have scheduled for today?,parrot,avail,0 -yes,yeap,original,book,1 -how_busy,tell me how busy red robin is at 5 pm?,original,avail,0 -reminder_update,remember to pay taxes on monday,parrot,resched,5 -yes,sure,original,book,1 -greeting,how are things going,original,greet,4 -schedule_meeting,let me know if i can arrange a meeting,parrot,book,1 -date,is it a monday wednesday wednesday wednesday?,parrot,avail,0 -no,no it's not,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -greeting,salutation,parrot,greet,4 -no,nay,original,cancel,3 -calendar,can you see what's on my calendar for march 2?,parrot,avail,0 -greeting,hiya!,original,greet,4 -greeting,ahoy,lambada,greet,4 -meeting_schedule,what are the scheduled meetings for today?,parrot,avail,0 -goodbye,cya later,original,bye,2 -no,i don't agree,parrot,cancel,3 -greeting,how's idy doing?,parrot,greet,4 -yes,great,original,book,1 -greeting,hello,original,greet,4 -yes,yes that's correct,original,book,1 -yes,huh huh,parrot,book,1 -yes,obviously,parrot,book,1 -goodbye,peace out!,original,bye,2 -goodbye,see ya,lambada,bye,2 -how_busy,is ihop busy?,parrot,avail,0 -greeting,aho,parrot,greet,4 -no,no that's not it?,parrot,cancel,3 -yes,all right,original,book,1 -calendar_update,remove the date of my dentist appointment from my calendar,lambada,resched,5 -calendar,tell me what appointments are on my calendar for march 10th?,lambada,avail,0 -yes,ya,original,book,1 -no,but it's wrong,parrot,cancel,3 -yes,i'm going to tell you tes,parrot,book,1 -yes,it's positive,parrot,book,1 -greeting,how is ai doing?,parrot,greet,4 -how_busy,do you have a better idea about how busy to expect at red lobster around 5:30?,lambada,avail,0 -cancel_reservation,i have to cancel my reservation for 2 at the franklin's grille,parrot,cancel,3 -calendar_update,i have to remove an event from my calendar,parrot,resched,5 -reminder_update,i'd like to make a reminder to give my boss the paycheck,parrot,resched,5 -goodbye,farewell!,original,bye,2 -yes,say yes,lambada,book,1 -how_busy,how busy will the chili be at 7 pm?,parrot,avail,0 -date,what date?,parrot,avail,0 -yes,TRUE,lambada,book,1 -goodbye,i enjoyed our conversation,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -no,not true,original,cancel,3 -how_busy,what's the average wait time at the outback steakhouse?,parrot,avail,0 -yes,i just said that,parrot,book,1 -greeting,hey what's up?,parrot,greet,4 -no,no way!,original,cancel,3 -thank_you,good looking out,original,bye,2 -date,current date,original,avail,0 -no,absolutely false,parrot,cancel,3 -yes,i want you to confirm what i'm saying is true,parrot,book,1 -goodbye,greetings,parrot,bye,2 -yes,uh-huh,original,book,1 -goodbye,"later, goodbye",lambada,bye,2 -date,today?,parrot,avail,0 -how_busy,wait time at macaroni grill?,parrot,avail,0 -greeting,good day,original,greet,4 -no,thanks no,parrot,cancel,3 -how_busy,how many people are expected to be at the immaculate steakhouse?,parrot,avail,0 -yes,yay,lambada,book,1 -goodbye,later then,lambada,bye,2 -meeting_schedule,when's my meeting?,parrot,avail,0 -yes,"yes, that happens to be correct",original,book,1 -date,what date?,parrot,avail,0 -no,that's not right,original,cancel,3 -greeting,hows are ya,original,greet,4 -meeting_schedule,what's on my schedule today?,parrot,avail,0 -goodbye,thanks goodbye,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -no,that would be wrong,lambada,cancel,3 -meeting_schedule,what time is my meeting with fred planned?,parrot,avail,0 -yes,it's certainly positive,parrot,book,1 -no,i disagree,parrot,cancel,3 -no,but that's not true,parrot,cancel,3 -no,that's a huge mistake,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -reminder_update,remind me,original,resched,5 -goodbye,good conversation,parrot,bye,2 -no,is it a lie?,parrot,cancel,3 -goodbye,fairwell,original,bye,2 -no,no!,original,cancel,3 -thank_you,you've tried,parrot,bye,2 -thank_you,thanks,original,bye,2 -cancel_reservation,i'm having to cancel my reservation,parrot,cancel,3 -no,no,lambada,cancel,3 -yes,right,parrot,book,1 -yes,so it's true,parrot,book,1 -greeting,how ya doin,original,greet,4 -no,negatory?,parrot,cancel,3 -schedule_meeting,how do i schedule meetings?,parrot,book,1 -how_busy,is this restaurant crowded?,parrot,avail,0 -yes,affirmitive,original,book,1 -yes,this is a true statement,original,book,1 -no,no?,parrot,cancel,3 -greeting,are you good?,original,greet,4 -thank_you,thanks for all my help,original,bye,2 -yes,you are correct,original,book,1 -yes,it's a fact,parrot,book,1 -goodbye,sign off,parrot,bye,2 -thank_you,i'm thankful,original,bye,2 -greeting,heyo,original,greet,4 -goodbye,goodbye now,parrot,bye,2 -date,today is what date,original,avail,0 -how_busy,how long does it take to sit at the red lobsters?,parrot,avail,0 -greeting,hi,original,greet,4 -no,yes that's false,lambada,cancel,3 -calendar,is my meeting with frank in my calendar?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -no,that isn't correct,original,cancel,3 -no,that is false,original,cancel,3 -schedule_meeting,is there meeting room available between 7 and 8?,parrot,book,1 -how_busy,does the macaroni grill have a wait?,parrot,avail,0 -no,not that,original,cancel,3 -greeting,tell me how it goes in irvine,parrot,greet,4 -meeting_schedule,when's the meeting?,parrot,avail,0 -yes,i know that it's true,parrot,book,1 -reminder_update,make a reminder please,parrot,resched,5 -how_busy,is tio's busy at 8:30?,lambada,avail,0 -meeting_schedule,when is homer's meeting?,parrot,avail,0 -yes,uh huh,original,book,1 -greeting,how's everything,original,greet,4 -goodbye,later!,original,bye,2 -thank_you,i want to thank you for letting me know,parrot,bye,2 -goodbye,peace,original,bye,2 -goodbye,my friend,parrot,bye,2 -yes,"yeah, that's right",original,book,1 -meeting_schedule,when's the meeting today?,parrot,avail,0 -how_busy,please let me know if there's a wait at this restaurant right now,parrot,avail,0 -greeting,"why, hello bandit",original,greet,4 -yes,certainly true,parrot,book,1 -yes,indeed,parrot,book,1 -goodbye,later!,original,bye,2 -yes,absolutely!,original,book,1 -yes,ok,original,book,1 -yes,ok,original,book,1 -no,the negator,parrot,cancel,3 -how_busy,how busy is the chipotle grill,lambada,avail,0 -yes,do that?,original,book,1 -thank_you,"great, thanks!",original,bye,2 -yes,yeah yeah,lambada,book,1 -yes,good,parrot,book,1 -goodbye,good luck later,parrot,bye,2 -greeting,wake up ai,parrot,greet,4 -calendar_update,lunch with deb today at noon,parrot,resched,5 -goodbye,will we talk about tomorrow?,parrot,bye,2 -thank_you,i'm thankful,original,bye,2 -no,not really,original,cancel,3 -yes,yay,lambada,book,1 -greeting,hey there,original,greet,4 -goodbye,greetings,parrot,bye,2 -no,invalid,original,cancel,3 -yes,positive,parrot,book,1 -date,what's the month and day 5 days from now,lambada,avail,0 -yes,yeah,original,book,1 -goodbye,later then,lambada,bye,2 -calendar,read my calendar,parrot,avail,0 -cancel_reservation,can i cancel my reservation for the red robin at 4 o'clock?,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -goodbye,bye,original,bye,2 -yes,it is true,original,book,1 -no,no?,parrot,cancel,3 -goodbye,it's over,parrot,bye,2 -goodbye,get there soon,lambada,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -greeting,hiya!,original,greet,4 -yes,very true,original,book,1 -no,the hell it's not true,parrot,cancel,3 -how_busy,get a good estimate of how busy cheesecake factory is at 9 pm,lambada,avail,0 -goodbye,later,original,bye,2 -goodbye,farewell,original,bye,2 -date,tell me the date today?,original,avail,0 -goodbye,later good luck,parrot,bye,2 -cancel_reservation,can i cancel my reservation for dinner this weekend please,parrot,cancel,3 -goodbye,wonderful conversation,lambada,bye,2 -meeting_schedule,can you tell me whether i am going to be called for a meeting?,lambada,avail,0 -greeting,what's happened?,parrot,greet,4 -goodbye,later gater,original,bye,2 -yes,okay,original,book,1 -greeting,hey fellows,parrot,greet,4 -cancel_reservation,please cancel my reservation for larry at red robin,lambada,cancel,3 -no,negatory,original,cancel,3 -date,which day is next?,parrot,avail,0 -goodbye,bye,original,bye,2 -schedule_meeting,can you please set up a meeting for 3:00 on wednesday?,original,book,1 -greeting,hiya!,original,greet,4 -greeting,how's my day been?,parrot,greet,4 -goodbye,"nice talk, goodbye",lambada,bye,2 -greeting,whats new?,parrot,greet,4 -no,negative definitely,parrot,cancel,3 -date,what will the date be in 12 days?,lambada,avail,0 -goodbye,afterward,parrot,bye,2 -goodbye,tootles,original,bye,2 -date,if the date is 15 days from today,parrot,avail,0 -greeting,you good?,parrot,greet,4 -reminder_update,please remember me later,parrot,resched,5 -calendar,know what's on my calendar for march 15th?,parrot,avail,0 -no,FALSE,original,cancel,3 -yes,yes,original,book,1 -thank_you,thank you for the answer,original,bye,2 -yes,absolutely!,original,book,1 -thank_you,thank you?,parrot,bye,2 -yes,that's true,original,book,1 -greeting,whats new,lambada,greet,4 -greeting,how's everything,original,greet,4 -greeting,hey what's up?,parrot,greet,4 -greeting,bonjour,original,greet,4 -goodbye,farewell!,original,bye,2 -greeting,whats new?,parrot,greet,4 -no,it would be wrong,parrot,cancel,3 -greeting,hi how's everything?,parrot,greet,4 -date,today?,parrot,avail,0 -no,negative definitely,parrot,cancel,3 -goodbye,say goodbye now,parrot,bye,2 -thank_you,"good job, thanks",lambada,bye,2 -date,what's tomorrow's date,original,avail,0 -greeting,give me the details,parrot,greet,4 -goodbye,adios!,original,bye,2 -date,please date,parrot,avail,0 -thank_you,thanks again!,original,bye,2 -no,i didn't mean that,parrot,cancel,3 -yes,i want that,parrot,book,1 -yes,right,parrot,book,1 -greeting,hello good morning,parrot,greet,4 -goodbye,later gater,original,bye,2 -yes,huh,parrot,book,1 -greeting,salutations,parrot,greet,4 -goodbye,bye,original,bye,2 -thank_you,thanks again!,original,bye,2 -how_busy,what's the wait time at the restaurant,lambada,avail,0 -date,in seven days?,parrot,avail,0 -greeting,"howdy, what's new",original,greet,4 -meeting_schedule,what meetings do you have on my agenda?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -how_busy,how busy is mcdonald's at lunch time?,parrot,avail,0 -thank_you,and i thank you,parrot,bye,2 -greeting,salutations!,original,greet,4 -date,what's the date,original,avail,0 -greeting,aloha,original,greet,4 -thank_you,thank you,original,bye,2 -thank_you,you've been great,parrot,bye,2 -thank_you,many thank,original,bye,2 -cancel_reservation,i need to cancel my reservation for new york to xai varanda,original,cancel,3 -goodbye,say goodbye,parrot,bye,2 -greeting,heller,original,greet,4 -goodbye,adios!,original,bye,2 -goodbye,farewell,original,bye,2 -greeting,hey,original,greet,4 -yes,certainly true,parrot,book,1 -calendar_update,but i have a meeting for tomorrow on my calendar,parrot,resched,5 -how_busy,can i know how long it takes to open tequila bar?,parrot,avail,0 -calendar_update,must add a farm trip to my calendar for friday,parrot,resched,5 -goodbye,goodbye to yours,parrot,bye,2 -thank_you,i'm grateful,original,bye,2 -greeting,ahoy,lambada,greet,4 -thank_you,you helped me today,parrot,bye,2 -yes,yep,original,book,1 -greeting,how ya doing,lambada,greet,4 -calendar_update,remove anniversary dinner from my calendar on april 5th,parrot,resched,5 -yes,right,parrot,book,1 -meeting_schedule,list some of the meetings that are on my agenda?,parrot,avail,0 -reminder_update,new reminder please,lambada,resched,5 -goodbye,sayonara,original,bye,2 -how_busy,the wait at olive garden for dinner?,parrot,avail,0 -goodbye,i like our conversation,parrot,bye,2 -date,can you tell me what's going to happen next?,parrot,avail,0 -goodbye,good bye for now,parrot,bye,2 -yes,correct,original,book,1 -no,erroneous,parrot,cancel,3 -greeting,aho,parrot,greet,4 -yes,accepted,original,book,1 -how_busy,how busy is red robin right now?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -yes,affirmative,original,book,1 -greeting,bonjour,original,greet,4 -goodbye,goodbye bye,parrot,bye,2 -goodbye,lovely conversation,parrot,bye,2 -yes,affirmitive,original,book,1 -no,i don't answer this question,parrot,cancel,3 -how_busy,how busy is iman at five?,parrot,avail,0 -no,not good,parrot,cancel,3 -goodbye,the talk was nice,lambada,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,negatory,original,cancel,3 -no,negative sure,parrot,cancel,3 -no,negation,parrot,cancel,3 -no,the information is incorrect,parrot,cancel,3 -yes,affirmitive,original,book,1 -yes,i want to know what the truth is,lambada,book,1 -meeting_schedule,when do i have a meeting?,parrot,avail,0 -how_busy,which place is the busiest at 8pm?,parrot,avail,0 -no,no way,original,cancel,3 -yes,absolutely,original,book,1 -thank_you,you're a great help,parrot,bye,2 -goodbye,goodbye,original,bye,2 -yes,"yep, that's right",original,book,1 -goodbye,it was great to be able to chat with you,parrot,bye,2 -thank_you,i am grateful,lambada,bye,2 -thank_you,your answer pleased me,original,bye,2 -date,in 14 days?,parrot,avail,0 -yes,certainly,parrot,book,1 -thank_you,you've tried,parrot,bye,2 -no,no,lambada,cancel,3 -goodbye,maybe next time,parrot,bye,2 -yes,"correct, that's true",original,book,1 -greeting,hiya!,original,greet,4 -yes,confirmed,original,book,1 -meeting_schedule,meetings today,original,avail,0 -no,i don't answer that question,parrot,cancel,3 -thank_you,thank you!,original,bye,2 -thank_you,"oh, thanks",original,bye,2 -greeting,hey,original,greet,4 -schedule_meeting,how are meetings scheduled?,parrot,book,1 -goodbye,will leave now,parrot,bye,2 -calendar,tell me what's on my calendar for thursday the 1st?,parrot,avail,0 -greeting,hello what's up?,parrot,greet,4 -how_busy,tell me mr joes pizza average wait time?,original,avail,0 -goodbye,bye,original,bye,2 -no,it's not correct,parrot,cancel,3 -greeting,hola,original,greet,4 -calendar,does my calendar show anything for thursday 14th?,parrot,avail,0 -greeting,wassup,original,greet,4 -goodbye,my friend,parrot,bye,2 -how_busy,tell me the time to wait if you want to go to golden corral?,parrot,avail,0 -greeting,hiya,original,greet,4 -yes,right,parrot,book,1 -greeting,how's my life going?,parrot,greet,4 -greeting,hello siri,original,greet,4 -greeting,whats up?,parrot,greet,4 -calendar,i would like to know what's going on with my calendar,parrot,avail,0 -cancel_reservation,please cancel my reservation at the restaurant,lambada,cancel,3 -yes,yup,original,book,1 -no,negating,parrot,cancel,3 -yes,yeah,original,book,1 -how_busy,what's the wait like?,parrot,avail,0 -thank_you,thanks please,original,bye,2 -greeting,how you are,original,greet,4 -thank_you,gracias,original,bye,2 -how_busy,how long will i have to wait for dining at red lobster,lambada,avail,0 -yes,obviously,parrot,book,1 -calendar_update,i must remove an event from my calendar,parrot,resched,5 -yes,yeah yeah,lambada,book,1 -yes,yep,original,book,1 -greeting,how you are?,parrot,greet,4 -yes,ya,original,book,1 -no,that is wrong,original,cancel,3 -schedule_meeting,is it possible to schedule a meeting with mark at noon?,parrot,book,1 -greeting,yo,original,greet,4 -date,what day it today?,original,avail,0 -goodbye,sayonara,original,bye,2 -yes,it's certainly true,parrot,book,1 -yes,yeah,original,book,1 -yes,okay,original,book,1 -greeting,you good?,parrot,greet,4 -goodbye,the time to say goodbye?,parrot,bye,2 -goodbye,goodbye now,parrot,bye,2 -greeting,hiya,original,greet,4 -goodbye,afterward,parrot,bye,2 -meeting_schedule,please inform me if i have a meeting today,parrot,avail,0 -thank_you,gracias,original,bye,2 -no,it's a negation,parrot,cancel,3 -calendar_update,say no to my plans for november,lambada,resched,5 -goodbye,farewell!,original,bye,2 -calendar,tell me what my calendar looks like on march 14th?,parrot,avail,0 -no,FALSE,original,cancel,3 -no,"no, definitely not",original,cancel,3 -meeting_schedule,is there any meetings today?,parrot,avail,0 -meeting_schedule,have any meetings between 8 and 9 today?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -yes,all right,original,book,1 -goodbye,bye-bye,original,bye,2 -yes,accept,parrot,book,1 -how_busy,what's waiting for a table in this restaurant right now?,parrot,avail,0 -no,absolutely false,parrot,cancel,3 -thank_you,i'm very thankful,parrot,bye,2 -thank_you,thank you ai,parrot,bye,2 -reminder_update,let me be reminded?,parrot,resched,5 -yes,yup,original,book,1 -goodbye,peace,original,bye,2 -yes,huh huh,parrot,book,1 -greeting,whats new,lambada,greet,4 -how_busy,how busy is georgio at 12?,parrot,avail,0 -no,negatory,original,cancel,3 -no,it's a mistake,parrot,cancel,3 -no,no?,parrot,cancel,3 -thank_you,thanks very much,parrot,bye,2 -goodbye,lovely conversation,parrot,bye,2 -no,no way!,original,cancel,3 -greeting,ahoy there,lambada,greet,4 -greeting,how is ayi doing?,parrot,greet,4 -greeting,salutation,parrot,greet,4 -meeting_schedule,discuss my meeting schedule with me,lambada,avail,0 -goodbye,thanks goodbye,parrot,bye,2 -meeting_schedule,do i have any meetings planned for today?,original,avail,0 -no,sure it's wrong,parrot,cancel,3 -no,that's not correct,original,cancel,3 -yes,accepted,original,book,1 -goodbye,buhbye,original,bye,2 -yes,good,parrot,book,1 -goodbye,sayonara,original,bye,2 -no,this information is not true,parrot,cancel,3 -goodbye,goodbye for now,parrot,bye,2 -yes,facts,original,book,1 -goodbye,thank you for my assistance goodbye,parrot,bye,2 -how_busy,how long will it take me to sit down at the red lobster table?,parrot,avail,0 -goodbye,goodbye no problem,parrot,bye,2 -goodbye,nice talk,lambada,bye,2 -goodbye,later goodbye,parrot,bye,2 -greeting,aloha,original,greet,4 -date,please tell me the date of tomorrow?,parrot,avail,0 -no,no way,original,cancel,3 -goodbye,good see you,lambada,bye,2 -goodbye,im leaving,parrot,bye,2 -calendar,what do you have on my calendar for february 8th?,parrot,avail,0 -no,nothing good,parrot,cancel,3 -greeting,hi,original,greet,4 -no,not happening,original,cancel,3 -yes,facts,original,book,1 -thank_you,it's all i need,parrot,bye,2 -no,nope,original,cancel,3 -how_busy,how long will it take to get a table at the red lobster?,parrot,avail,0 -no,no?,parrot,cancel,3 -greeting,yo,original,greet,4 -no,no?,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -yes,right,parrot,book,1 -thank_you,i'm grateful to you,original,bye,2 -no,negation,parrot,cancel,3 -reminder_update,please remind me later on,parrot,resched,5 -no,false for sure,original,cancel,3 -goodbye,later,original,bye,2 -greeting,well hello,original,greet,4 -greeting,are you doing well?,original,greet,4 -goodbye,afterward,parrot,bye,2 -greeting,how's it hanging?,parrot,greet,4 -how_busy,is the area busy during lunch hours?,lambada,avail,0 -goodbye,later gator!,original,bye,2 -yes,i would say yes,lambada,book,1 -goodbye,bye,original,bye,2 -no,that's no,parrot,cancel,3 -no,i must say no,original,cancel,3 -goodbye,talk later,original,bye,2 -goodbye,afterward,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -cancel_reservation,my reservation for nudist in houston must be cancelled,parrot,cancel,3 -greeting,"hello, friend",original,greet,4 -yes,agreed,original,book,1 -how_busy,how busy is ziggy around dinner,parrot,avail,0 -yes,a fact,parrot,book,1 -calendar,do i have anything planned for march 2?,parrot,avail,0 -reminder_update,set up a reminder for 6pm for the meeting,parrot,resched,5 -schedule_meeting,i need a room,parrot,book,1 -no,that's overwhelmingly negative,parrot,cancel,3 -greeting,how's idy doing?,parrot,greet,4 -yes,"yes, that is true",original,book,1 -schedule_meeting,can you schedule a meeting with bob for 10 am?,lambada,book,1 -how_busy,tell me if this restaurant is busy at 6 o'clock?,parrot,avail,0 -no,that's incorrect,original,cancel,3 -goodbye,on the highway,parrot,bye,2 -greeting,salutations!,original,greet,4 -greeting,hi ai,original,greet,4 -no,"no, that's not correct",lambada,cancel,3 -goodbye,maybe next time,parrot,bye,2 -no,FALSE,lambada,cancel,3 -thank_you,thanks,original,bye,2 -how_busy,how busy is imanas right now?,parrot,avail,0 -thank_you,"nice, excellent!",original,bye,2 -goodbye,good call,parrot,bye,2 -calendar,let me know what is scheduled for my calendar for thursday,lambada,avail,0 -greeting,hey,original,greet,4 -how_busy,when is red lobster busy?,parrot,avail,0 -goodbye,"that's all, bye",original,bye,2 -schedule_meeting,i need to know how i can have a meeting,parrot,book,1 -reminder_update,remind me to wash my clothes,parrot,resched,5 -goodbye,fairwell,original,bye,2 -no,that’s actually wrong,original,cancel,3 -goodbye,i’m leaving-goodbye!,original,bye,2 -greeting,wassup,original,greet,4 -no,it's so negative,parrot,cancel,3 -meeting_schedule,meeting today,parrot,avail,0 -how_busy,don't you know how busy outback steakhouse is at 7pm?,parrot,avail,0 -goodbye,peace out!,original,bye,2 -thank_you,you've helped,parrot,bye,2 -yes,a true statement,parrot,book,1 -yes,yup,original,book,1 -meeting_schedule,what is today's meeting time?,parrot,avail,0 -calendar,what's in my calendar for today?,parrot,avail,0 -no,we don't want that,parrot,cancel,3 -greeting,good day,original,greet,4 -meeting_schedule,is my schedule clear?,parrot,avail,0 -no,not good,parrot,cancel,3 -yes,absolutely!,original,book,1 -calendar,do you have any scheduled events in my calendar for january 15th?,parrot,avail,0 -no,this is not true,parrot,cancel,3 -goodbye,go easy,parrot,bye,2 -no,the negator,parrot,cancel,3 -greeting,hola!,original,greet,4 -thank_you,you've helped,parrot,bye,2 -thank_you,nice,parrot,bye,2 -thank_you,thanks again!,original,bye,2 -greeting,"wake up, ai",original,greet,4 -thank_you,thanks!,original,bye,2 -reminder_update,please remind me to give me a deposit for pet food,parrot,resched,5 -calendar,did i put something on my calendar to get my car repaired?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -yes,that's a fact,parrot,book,1 -yes,accepted,original,book,1 -yes,facts,original,book,1 -goodbye,later!,original,bye,2 -greeting,salutations,parrot,greet,4 -yes,say yes,lambada,book,1 -goodbye,adios!,original,bye,2 -goodbye,goodnight,original,bye,2 -how_busy,how long will i have to wait to get a table in angel wings?,parrot,avail,0 -yes,absolutely!,original,book,1 -goodbye,the talk was nice,lambada,bye,2 -goodbye,farewell,original,bye,2 -goodbye,sayonara ,parrot,bye,2 -yes,right,parrot,book,1 -cancel_reservation,cancel my reservation for dinner this saturday,original,cancel,3 -goodbye,i have to leave ai,parrot,bye,2 -reminder_update,keep checking the steak?,parrot,resched,5 -no,that's totally wrong,parrot,cancel,3 -yes,i want to make sure this is true,parrot,book,1 -how_busy,is jack's steakhouse usually packed?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -yes,certainly,parrot,book,1 -goodbye,fairwell,original,bye,2 -no,say negative,parrot,cancel,3 -yes,"yup, that's correct",lambada,book,1 -goodbye,sayonara ,parrot,bye,2 -date,what year is it?,original,avail,0 -how_busy,how long can i wait at this restaurant?,parrot,avail,0 -no,no,lambada,cancel,3 -thank_you,nice,parrot,bye,2 -thank_you,gracias,original,bye,2 -goodbye,will leave now,parrot,bye,2 -yes,sure thing,original,book,1 -schedule_meeting,do you have a meeting room on wednesday 10pm?,parrot,book,1 -goodbye,farewell!,original,bye,2 -goodbye,have fun?,lambada,bye,2 -goodbye,im leaving goodbye,parrot,bye,2 -greeting,nice day,lambada,greet,4 -goodbye,bye-bye,original,bye,2 -date,list the date for tomorrow?,parrot,avail,0 -no,no no thanks,parrot,cancel,3 -yes,yup,original,book,1 -date,what the day?,parrot,avail,0 -how_busy,is ozone restaurant expected to have a long wait at 5 pm?,lambada,avail,0 -yes,sure thing,original,book,1 -schedule_meeting,please help me schedule a meeting,parrot,book,1 -greeting,hey there fellow,original,greet,4 -date,date tomorrow,parrot,avail,0 -schedule_meeting,are there meeting rooms between 10 and 4?,parrot,book,1 -goodbye,bye for now,original,bye,2 -thank_you,"oh, thanks",original,bye,2 -no,"nope, that's false",original,cancel,3 -yes,yeah yeah,lambada,book,1 -thank_you,why thank you?,original,bye,2 -no,no,lambada,cancel,3 -greeting,hola,original,greet,4 -goodbye,buhbye,original,bye,2 -no,negating,parrot,cancel,3 -reminder_update,keep checking the steak,parrot,resched,5 -goodbye,my way,parrot,bye,2 -thank_you,your answer was enjoyable,original,bye,2 -greeting,aloha,original,greet,4 -yes,10-Apr,original,book,1 -yes,ok,original,book,1 -no,that's not correct,original,cancel,3 -greeting,hello,original,greet,4 -greeting,"hello, ai",original,greet,4 -greeting,hola,original,greet,4 -no,no thanks,original,cancel,3 -no,nay,original,cancel,3 -greeting,aho,parrot,greet,4 -no,no?,parrot,cancel,3 -no,negating,parrot,cancel,3 -schedule_meeting,how does scheduling a meeting help me?,parrot,book,1 -goodbye,good call,parrot,bye,2 -goodbye,say goodbye,parrot,bye,2 -how_busy,is mr joes pizza available for a seating arrangement?,parrot,avail,0 -how_busy,what's the wait time for a table in this restaurant?,parrot,avail,0 -thank_you,you're welcome,parrot,bye,2 -no,thats a negative,original,cancel,3 -greeting,you good?,parrot,greet,4 -no,not right?,parrot,cancel,3 -greeting,heller,original,greet,4 -goodbye,on the highway,parrot,bye,2 -thank_you,appreciate it,original,bye,2 -goodbye,the talk was nice,lambada,bye,2 -calendar,what is on my schedule for the day of march 5th?,original,avail,0 -greeting,what's happening?,parrot,greet,4 -no,that's bad,parrot,cancel,3 -reminder_update,can you set a reminder for the current time tommorow?,original,resched,5 -goodbye,say goodbye,parrot,bye,2 -yes,yes,original,book,1 -calendar,tell me what's going on on march 22nd,parrot,avail,0 -no,nay,original,cancel,3 -how_busy,how many people are there at chili's at 7 pm,lambada,avail,0 -thank_you,it's much easier with you,parrot,bye,2 -date,what year?,parrot,avail,0 -goodbye,later goodbye,parrot,bye,2 -how_busy,what's the time at this restaurant?,parrot,avail,0 -yes,10-Apr,original,book,1 -no,that's so negative,parrot,cancel,3 -goodbye,later!,original,bye,2 -goodbye,good luck tomorrow,lambada,bye,2 -no,"no, definitely not",original,cancel,3 -calendar_update,delete the party for sally from my calendar,parrot,resched,5 -yes,that is correct,original,book,1 -thank_you,thanks for my cooperation,original,bye,2 -no,FALSE,lambada,cancel,3 -yes,"yes, please",parrot,book,1 -how_busy,when will the restaurant be busy?,parrot,avail,0 -goodbye,bye,original,bye,2 -date,would you let me know the date for today?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -thank_you,thank you kindly,original,bye,2 -reminder_update,set a reminder to set the alarm at 8 pm,lambada,resched,5 -date,what's the date of 25 days?,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -no,don't like that,parrot,cancel,3 -greeting,yo,original,greet,4 -calendar_update,if you want to remove the date of play from my calendar for february 18 2019,parrot,resched,5 -meeting_schedule,when's the meeting with kara,parrot,avail,0 -cancel_reservation,would you cancel my reservation for dinner at dinner on friday,lambada,cancel,3 -thank_you,thanks,original,bye,2 -yes,i want it,parrot,book,1 -greeting,how is life?,parrot,greet,4 -greeting,hiya,original,greet,4 -no,it's a negative,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -thank_you,my gratitude,parrot,bye,2 -greeting,is everything okay today?,parrot,greet,4 -greeting,good evening,original,greet,4 -yes,yes that is right,original,book,1 -thank_you,thanks please,original,bye,2 -how_busy,i need to know about how much time i'd have to wait to get a table at dibruno's,original,avail,0 -date,i need a date,parrot,avail,0 -greeting,how's otc?,parrot,greet,4 -date,today?,parrot,avail,0 -no,no that's not true,parrot,cancel,3 -no,FALSE,original,cancel,3 -thank_you,thanks very much,parrot,bye,2 -goodbye,i'll see you around,lambada,bye,2 -greeting,"hello, how are you doing",original,greet,4 -yes,that's definitely true,original,book,1 -how_busy,how long will it take for me to get a table at st jerome?,parrot,avail,0 -date,current date,original,avail,0 -goodbye,im leaving,parrot,bye,2 -yes,accepted,original,book,1 -yes,it's certainly positive,parrot,book,1 -no,i'd rather not,parrot,cancel,3 -no,false sure,parrot,cancel,3 -goodbye,nice seeing you bye,original,bye,2 -yes,confirmed,original,book,1 -yes,yes,original,book,1 -goodbye,see ya,lambada,bye,2 -goodbye,i'm glad we got along,parrot,bye,2 -no,naw,original,cancel,3 -meeting_schedule,when do you have a meeting today?,parrot,avail,0 -greeting,whats up,original,greet,4 -schedule_meeting,i have to meet with an agenda,parrot,book,1 -goodbye,i leave now,parrot,bye,2 -calendar,tell me what my calendar looks like on march 2nd,parrot,avail,0 -greeting,how's everything?,parrot,greet,4 -greeting,how's it with you?,parrot,greet,4 -thank_you,thank you for what you said,parrot,bye,2 -goodbye,glad to talk,parrot,bye,2 -goodbye,bye,original,bye,2 -how_busy,how long will the wait be at chili's,lambada,avail,0 -how_busy,please tell me how long the wait at this cheesecake factory is?,parrot,avail,0 -goodbye,say goodbye now,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -greeting,how's everything going?,parrot,greet,4 -date,what's today?,parrot,avail,0 -yes,seems true,parrot,book,1 -greeting,heller,original,greet,4 -goodbye,i'll leave,parrot,bye,2 -greeting,hi how's it going?,parrot,greet,4 -yes,accepted,original,book,1 -goodbye,goodnight,original,bye,2 -cancel_reservation,i have to cancel my reservation for dinner tonight,lambada,cancel,3 -date,today?,parrot,avail,0 -greeting,salutations!,original,greet,4 -yes,i'm going to tell you tes,parrot,book,1 -no,invalid,original,cancel,3 -calendar_update,please remove the anniversary party from my calendar,parrot,resched,5 -thank_you,nice,parrot,bye,2 -reminder_update,can you remind me?,parrot,resched,5 -thank_you,many thank,original,bye,2 -greeting,ahoy there,lambada,greet,4 -yes,"yes, please",original,book,1 -reminder_update,can you remember to pay taxes?,parrot,resched,5 -no,that's a negative,original,cancel,3 -how_busy,how busy will black bean be around 11 o'clock?,parrot,avail,0 -calendar,check my calendar,parrot,avail,0 -meeting_schedule,when's my meeting with richard,original,avail,0 -goodbye,say goodbye now,parrot,bye,2 -cancel_reservation,just cancel my reservation at the red robin,lambada,cancel,3 -thank_you,i appreciate it,original,bye,2 -yes,accept,parrot,book,1 -no,that's completely wrong,parrot,cancel,3 -yes,do that?,original,book,1 -reminder_update,make a reminder of my makeup,parrot,resched,5 -thank_you,your assistance is appreciated,parrot,bye,2 -greeting,you good?,parrot,greet,4 -thank_you,thanks again!,original,bye,2 -yes,definitely,original,book,1 -calendar_update,eliminate dinner at tiffany's from my calendar on 6 march,parrot,resched,5 -greeting,how's life?,parrot,greet,4 -no,no no thanks,parrot,cancel,3 -calendar,what's on my calendar for valentine's day?,parrot,avail,0 -reminder_update,please remind me of this,parrot,resched,5 -goodbye,thank you for the chance to talk,parrot,bye,2 -yes,i think that's correct,parrot,book,1 -yes,i guess,parrot,book,1 -greeting,how's my family doing?,parrot,greet,4 -yes,definitely,original,book,1 -no,no that isn't correct,original,cancel,3 -how_busy,will the tomato garden be busy at 5pm?,parrot,avail,0 -no,that's actually false,parrot,cancel,3 -yes,great,original,book,1 -thank_you,you're a great help,parrot,bye,2 -how_busy,wait how long?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -schedule_meeting,i need you to meet with john at 11am,parrot,book,1 -greeting,how did you feel?,parrot,greet,4 -how_busy,list the wait times at the chipotle grills?,parrot,avail,0 -how_busy,how long before dinner macaroni and cheese,parrot,avail,0 -schedule_meeting,need to know how to arrange a meeting,parrot,book,1 -yes,i'm going to tell you tes,parrot,book,1 -yes,is true,parrot,book,1 -calendar_update,remove steve's birthday party from my calendar,lambada,resched,5 -goodbye,buhbye,original,bye,2 -yes,"yep, that's right",original,book,1 -meeting_schedule,when should i meet jane?,parrot,avail,0 -greeting,hiya!,original,greet,4 -no,"no, you are wrong",original,cancel,3 -greeting,"hello, how are you",original,greet,4 -no,that's not right?,parrot,cancel,3 -calendar_update,write a appointment for next week on my calendar,parrot,resched,5 -yes,that's a fact,parrot,book,1 -no,no good,original,cancel,3 -greeting,ahoy,lambada,greet,4 -goodbye,nice conversation today,parrot,bye,2 -greeting,heyo,original,greet,4 -goodbye,good-bye,parrot,bye,2 -reminder_update,make me a reminder that tommorow is trash day,original,resched,5 -goodbye,sayonara,original,bye,2 -thank_you,you have done well,lambada,bye,2 -no,so that's no,parrot,cancel,3 -yes,confirmed,original,book,1 -yes,sure,original,book,1 -goodbye,i need to go,lambada,bye,2 -no,don't agree,parrot,cancel,3 -greeting,what's new?,parrot,greet,4 -yes,i believe that's true,original,book,1 -cancel_reservation,take away my reservation at 4 pm at the steakhouse please,parrot,cancel,3 -no,not that,original,cancel,3 -goodbye,later,original,bye,2 -thank_you,really great!,original,bye,2 -yes,ok,original,book,1 -reminder_update,make a reminder to wash my dishes,parrot,resched,5 -no,"no, that's not the case",lambada,cancel,3 -date,current day,parrot,avail,0 -no,i'm afraid not,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -reminder_update,how about a reminder,original,resched,5 -no,negative,original,cancel,3 -no,negation,parrot,cancel,3 -no,not that,original,cancel,3 -no,no this is not correct,parrot,cancel,3 -yes,seems true,parrot,book,1 -greeting,wassup,original,greet,4 -yes,yes sir,original,book,1 -thank_you,and i appreciate my gesture,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -yes,absolutely,original,book,1 -how_busy,why is the restaurant so busy at 5 pm?,parrot,avail,0 -no,no no no,parrot,cancel,3 -yes,great,original,book,1 -greeting,hello there!,original,greet,4 -calendar,know what's on my calendar for march 2?,parrot,avail,0 -how_busy,how busy is the red lobster around six?,parrot,avail,0 -yes,positive,parrot,book,1 -no,so that's no,parrot,cancel,3 -goodbye,hello i've been talking to you lately,parrot,bye,2 -date,today what date?,parrot,avail,0 -meeting_schedule,what time do i have to meet the accountant?,parrot,avail,0 -goodbye,i'm glad we got along well,parrot,bye,2 -date,tell me what the day of the week is?,lambada,avail,0 -calendar,21st what's on my calendar?,parrot,avail,0 -yes,uh huh,original,book,1 -greeting,how is life?,parrot,greet,4 -goodbye,goodbye thank you,parrot,bye,2 -no,it's not right,parrot,cancel,3 -yes,yes sir,original,book,1 -thank_you,you've been great,parrot,bye,2 -goodbye,as regards,parrot,bye,2 -greeting,and what's up?,parrot,greet,4 -yes,very true,original,book,1 -how_busy,will brown bear be busy at 10 o'clock?,parrot,avail,0 -yes,yes,original,book,1 -calendar,please tell me what is on my calendar for march 31st?,parrot,avail,0 -goodbye,bye,original,bye,2 -goodbye,my friend,parrot,bye,2 -yes,good yes,lambada,book,1 -no,naw,parrot,cancel,3 -no,no,lambada,cancel,3 -yes,yeah,original,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,i have to know how my day goes,parrot,greet,4 -how_busy,can you tell me how busy iroquois is at 5 pm?,lambada,avail,0 -greeting,how's life going?,parrot,greet,4 -greeting,salutations,parrot,greet,4 -greeting,hey yai,lambada,greet,4 -no,nothing,parrot,cancel,3 -no,naw,parrot,cancel,3 -meeting_schedule,are there meetings between 5 and 6 o'clock?,parrot,avail,0 -greeting,salutations!,original,greet,4 -thank_you,many thanks,original,bye,2 -goodbye,thanks for chatting,lambada,bye,2 -calendar,can you tell me if i have any appointments set for march 17th?,lambada,avail,0 -thank_you,gracias,original,bye,2 -reminder_update,add a reminder,lambada,resched,5 -greeting,aloha,original,greet,4 -yes,i want you to know it's true,parrot,book,1 -yes,TRUE,lambada,book,1 -thank_you,thanks so much!,original,bye,2 -no,invalid,original,cancel,3 -yes,affirmative,original,book,1 -thank_you,you've helped,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -thank_you,merci beaucoup,original,bye,2 -how_busy,does the restaurant get crowded during lunch?,lambada,avail,0 -yes,that is right,original,book,1 -goodbye,tootles?,parrot,bye,2 -no,that's incorrect,original,cancel,3 -yes,confirmed,original,book,1 -no,nothing,parrot,cancel,3 -thank_you,awesome thanks,parrot,bye,2 -goodbye,take it easy!,original,bye,2 -how_busy,is the red lobster busy at 6pm?,parrot,avail,0 -yes,"yep, that's right",original,book,1 -meeting_schedule,what meetings do i have on my agenda today?,original,avail,0 -thank_you,you're welcome,parrot,bye,2 -yes,"yep, let's do that",lambada,book,1 -calendar,i have something to do on 2nd?,parrot,avail,0 -yes,it seems true,parrot,book,1 -thank_you,you've tried,parrot,bye,2 -date,date please,original,avail,0 -goodbye,bye bye,lambada,bye,2 -yes,obviously,parrot,book,1 -yes,definitely,original,book,1 -date,in three days,parrot,avail,0 -date,what day will it be in 21 days?,parrot,avail,0 -greeting,"hello, ai",original,greet,4 -thank_you,very grateful,parrot,bye,2 -reminder_update,give me a reminder,parrot,resched,5 -thank_you,i'm glad you helped,parrot,bye,2 -yes,positive,parrot,book,1 -yes,that's correct,original,book,1 -no,FALSE,original,cancel,3 -calendar,do i have a birthday party on my calendar?,parrot,avail,0 -goodbye,later!,original,bye,2 -yes,yes that's correct,original,book,1 -greeting,how are you?,parrot,greet,4 -goodbye,i'm leaving now,lambada,bye,2 -greeting,how is everything going?,parrot,greet,4 -goodbye,later gator!,original,bye,2 -calendar,if you can show me my calendar,parrot,avail,0 -reminder_update,may i be reminded,lambada,resched,5 -greeting,hello,original,greet,4 -goodbye,goodbyes soon,parrot,bye,2 -yes,approved,original,book,1 -date,what's my day?,parrot,avail,0 -how_busy,how long will it take for the ios to serve dinner?,parrot,avail,0 -no,no it's a no,parrot,cancel,3 -yes,so it's true,parrot,book,1 -goodbye,bye!,original,bye,2 -thank_you,appreciated,original,bye,2 -no,that's not it,parrot,cancel,3 -reminder_update,remind me of exercise,parrot,resched,5 -calendar_update,i have to set my appointment for tomorrow on my calendar,parrot,resched,5 -greeting,bonjour,original,greet,4 -how_busy,how busy is macy's right now,lambada,avail,0 -yes,ok,original,book,1 -thank_you,thankyou,parrot,bye,2 -no,FALSE,original,cancel,3 -greeting,welcome,parrot,greet,4 -date,in 14 days?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -thank_you,you're welcome,parrot,bye,2 -no,that’s incorrect,original,cancel,3 -greeting,ahoy hoy,original,greet,4 -yes,my answer is yes,parrot,book,1 -no,nay,original,cancel,3 -how_busy,tell me the time to wait for the red robin at 6pm?,parrot,avail,0 -yes,yup,original,book,1 -no,that is not right,original,cancel,3 -greeting,what's happening?,parrot,greet,4 -thank_you,thanks for that information,lambada,bye,2 -no,that’s actually wrong,original,cancel,3 -reminder_update,set reminder to pay taxes on friday,lambada,resched,5 -date,please date,parrot,avail,0 -date,is it monday?,parrot,avail,0 -yes,yes that's it,original,book,1 -yes,confirmed,original,book,1 -yes,huh,parrot,book,1 -greeting,"yo, hows it going",original,greet,4 -yes,confirm,original,book,1 -greeting,wassup,original,greet,4 -schedule_meeting,please set a meeting for noon,parrot,book,1 -no,it's overwhelmingly wrong,parrot,cancel,3 -goodbye,tootles,original,bye,2 -greeting,wassup,original,greet,4 -yes,it is a true,original,book,1 -no,negatory,original,cancel,3 -yes,"yes, please",original,book,1 -cancel_reservation,you can cancel my reservation for 5 in the loft please,parrot,cancel,3 -no,thats a negative,original,cancel,3 -date,i need the entire date for today,parrot,avail,0 -cancel_reservation,i need to cancel my reservation for tonight's meal,parrot,cancel,3 -yes,10-Apr,original,book,1 -yes,a fact,parrot,book,1 -greeting,hello there ai,original,greet,4 -how_busy,i'd like to know how busy the cheesecake factory is at 830,parrot,avail,0 -greeting,how's life,original,greet,4 -greeting,how's my feeling?,parrot,greet,4 -how_busy,is macy's busy?,parrot,avail,0 -how_busy,tell me how busy you can expect red lobsters at 10pm?,parrot,avail,0 -yes,absolutely,original,book,1 -schedule_meeting,can you schedule a meeting with carrie and lisa?,parrot,book,1 -yes,exactly right,original,book,1 -yes,confirmed,original,book,1 -calendar,read my calendar events,original,avail,0 -goodbye,bye bye,lambada,bye,2 -goodbye,buhbye,original,bye,2 -no,negative sure,parrot,cancel,3 -thank_you,i really thank you,original,bye,2 -goodbye,glad i got to talk to you,lambada,bye,2 -yes,great,original,book,1 -goodbye,regards,original,bye,2 -greeting,whats up?,parrot,greet,4 -goodbye,good see you,lambada,bye,2 -yes,that seems true,original,book,1 -meeting_schedule,what's the meeting today?,parrot,avail,0 -reminder_update,create a reminder for me to send flowers to my mother for mother's day,parrot,resched,5 -no,negatory,original,cancel,3 -thank_you,thank you!,original,bye,2 -thank_you,gracias,original,bye,2 -no,invalid,original,cancel,3 -how_busy,how long would it take to get a table at chili's steak house?,parrot,avail,0 -thank_you,merci beaucoup,original,bye,2 -yes,"yes, please",original,book,1 -goodbye,farewell to you,lambada,bye,2 -date,which date today?,parrot,avail,0 -calendar,tell me what's on my calendar for may 3rd,parrot,avail,0 -goodbye,sayonara,original,bye,2 -yes,yes sir,original,book,1 -goodbye,later,original,bye,2 -yes,my answer is yes,parrot,book,1 -greeting,what's up with you,original,greet,4 -calendar,show me the calendar?,parrot,avail,0 -meeting_schedule,are there any meetings between 2 and 5 o'clock?,parrot,avail,0 -no,would be no?,parrot,cancel,3 -yes,i think you got it,parrot,book,1 -goodbye,maybe i'll see you next time,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,"hi, ai",original,greet,4 -yes,"yes, that's right",original,book,1 -yes,yep,original,book,1 -goodbye,i'll see you later,lambada,bye,2 -greeting,how's life,original,greet,4 -goodbye,later thanks for the conversation,parrot,bye,2 -no,that's negative,parrot,cancel,3 -yes,that's true,original,book,1 -thank_you,i appreciate that answer,original,bye,2 -yes,can we please?,original,book,1 -thank_you,i'm happy with my answer,original,bye,2 -thank_you,i thank you,original,bye,2 -date,current day,parrot,avail,0 -reminder_update,please make a new note,parrot,resched,5 -goodbye,good night,original,bye,2 -greeting,hey,original,greet,4 -goodbye,for now,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -greeting,what's my opinion about acii,parrot,greet,4 -no,FALSE,lambada,cancel,3 -how_busy,how busy is chipotle joe at 9 pm,lambada,avail,0 -goodbye,greetings,parrot,bye,2 -no,no good,original,cancel,3 -calendar,please read my calendar,parrot,avail,0 -how_busy,if i'm sitting in a departmental room how long will i have to wait for,parrot,avail,0 -goodbye,farewell!,original,bye,2 -no,naw,original,cancel,3 -goodbye,say goodbye now,parrot,bye,2 -thank_you,thank you,original,bye,2 -how_busy,how long will i have to wait before i go to the restaurant,lambada,avail,0 -yes,"yes, that's confirmed",original,book,1 -goodbye,buhbye,original,bye,2 -greeting,how are things?,parrot,greet,4 -greeting,how is life?,parrot,greet,4 -date,is today the day?,parrot,avail,0 -reminder_update,remind me to clean up,parrot,resched,5 -yes,"agreed, that's valid",original,book,1 -no,nothing,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -thank_you,thanks for answering that,lambada,bye,2 -greeting,"hello, ai",original,greet,4 -thank_you,"thanks, that's helpful",original,bye,2 -thank_you,gracias,original,bye,2 -date,what day?,parrot,avail,0 -greeting,how's life,original,greet,4 -greeting,heller,original,greet,4 -how_busy,are ihops really packed around 9 pm?,lambada,avail,0 -how_busy,are the restaurants full when you're at dinner?,parrot,avail,0 -goodbye,goodbye my friend,parrot,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -goodbye,peace,original,bye,2 -no,the negator,parrot,cancel,3 -thank_you,thanks again,original,bye,2 -yes,yay,lambada,book,1 -date,in 8 days?,parrot,avail,0 -calendar,search my calendar for birthday,original,avail,0 -schedule_meeting,is it possible to schedule a meeting with scott at 6pm?,parrot,book,1 -how_busy,is rancho busy? around 9am,parrot,avail,0 -how_busy,in a chinese restaurant how long will i have to wait for my seat?,parrot,avail,0 -reminder_update,new reminder please,lambada,resched,5 -goodbye,no problem just relax,parrot,bye,2 -yes,certainly,parrot,book,1 -calendar_update,delete the appointment i've scheduled,parrot,resched,5 -no,nada,original,cancel,3 -greeting,hello there ai,original,greet,4 -cancel_reservation,my reservation needs to be cancelled,lambada,cancel,3 -yes,good,parrot,book,1 -cancel_reservation,now i don't want my reservation,parrot,cancel,3 -goodbye,lovely conversation,parrot,bye,2 -yes,obviously,parrot,book,1 -greeting,why hello?,original,greet,4 -cancel_reservation,can you cancel my reservation for michael?,parrot,cancel,3 -goodbye,"great talk, thanks",original,bye,2 -date,please date,parrot,avail,0 -no,negative,original,cancel,3 -cancel_reservation,proceed and close the reservation,parrot,cancel,3 -thank_you,again thanks,parrot,bye,2 -yes,"correct, that's true",original,book,1 -schedule_meeting,how do you schedule a meeting for me,lambada,book,1 -greeting,whats up?,parrot,greet,4 -date,calender says tomorrow is,original,avail,0 -yes,ok,original,book,1 -thank_you,thank you!,original,bye,2 -no,naw,original,cancel,3 -goodbye,just relax,parrot,bye,2 -goodbye,great talk,lambada,bye,2 -no,the information is inaccurate,parrot,cancel,3 -yes,facts,original,book,1 -no,yes it's false,parrot,cancel,3 -reminder_update,i need to set a reminder to go to the post office,original,resched,5 -thank_you,gracias,original,bye,2 -how_busy,is iman busy around five?,lambada,avail,0 -greeting,do you feel?,parrot,greet,4 -schedule_meeting,i'll need a meeting room at 9am on tuesday,parrot,book,1 -reminder_update,can you send me a reminder to pay rent?,parrot,resched,5 -yes,indeed,original,book,1 -yes,approved,original,book,1 -greeting,wassup,original,greet,4 -greeting,bonjour,original,greet,4 -greeting,hey hey!,original,greet,4 -calendar_update,make sure my calendar for march 13th is active,lambada,resched,5 -cancel_reservation,is it possible to cancel my reservation at red robin?,lambada,cancel,3 -calendar,check my calendar for tuesday appointments,parrot,avail,0 -yes,absolutely!,original,book,1 -yes,affirmitive,original,book,1 -goodbye,i'll be gone,parrot,bye,2 -no,negatory?,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -date,can you remember the date?,parrot,avail,0 -calendar,can you tell me what's on my calendar for march 19?,parrot,avail,0 -thank_you,thanks very much for your answer,parrot,bye,2 -no,that's bad,parrot,cancel,3 -thank_you,thank you!,original,bye,2 -how_busy,is the mexican place crowded during the night?,parrot,avail,0 -yes,agreed,original,book,1 -no,definitely not,original,cancel,3 -cancel_reservation,cancel the dinner reservation tonight,parrot,cancel,3 -thank_you,youre a doll,original,bye,2 -reminder_update,set a reminder to wash the dishes,lambada,resched,5 -yes,certainly,parrot,book,1 -greeting,salutations,parrot,greet,4 -goodbye,bye bye,lambada,bye,2 -how_busy,is that place busy at dinner time?,parrot,avail,0 -how_busy,how busy is applebees at lunch?,parrot,avail,0 -calendar,tell me what is currently on my calendar for march 7th?,lambada,avail,0 -greeting,heller,original,greet,4 -no,it's indeed false,parrot,cancel,3 -goodbye,good bye,original,bye,2 -no,no?,parrot,cancel,3 -greeting,hello how's the situation?,parrot,greet,4 -greeting,salutations,parrot,greet,4 -greeting,heller,original,greet,4 -yes,i have to say yes to that,parrot,book,1 -how_busy,how busy is chili around 7pm,parrot,avail,0 -yes,thats right,original,book,1 -no,that's erroneous,parrot,cancel,3 -date,what's today,original,avail,0 -no,no please,parrot,cancel,3 -greeting,what's going on,original,greet,4 -goodbye,i’ll be leaving now,original,bye,2 -meeting_schedule,are any meetings booked for today?,original,avail,0 -no,negative,original,cancel,3 -goodbye,bye!,original,bye,2 -goodbye,goodbyes soon,parrot,bye,2 -thank_you,thanks,original,bye,2 -no,not that,original,cancel,3 -how_busy,how long will it take to get a table at chili's?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -calendar,tell me what's on the calendar for february 1?,parrot,avail,0 -yes,obviously,parrot,book,1 -yes,indeed,parrot,book,1 -thank_you,i just want to thank you for my help,parrot,bye,2 -goodbye,say goodbye now,parrot,bye,2 -thank_you,you helped,parrot,bye,2 -yes,uh-huh,original,book,1 -reminder_update,remind me to pay my cable bill today,parrot,resched,5 -how_busy,how busy will chili be at 5pm?,parrot,avail,0 -goodbye,i'm going,parrot,bye,2 -no,it's a mistake,parrot,cancel,3 -greeting,what's happening?,parrot,greet,4 -goodbye,bye bye,lambada,bye,2 -date,what will be the date in 25 days?,parrot,avail,0 -how_busy,what's the wait?,parrot,avail,0 -how_busy,wait in the restaurant?,parrot,avail,0 -yes,confirmed,original,book,1 -no,please no,parrot,cancel,3 -no,yes it's false,parrot,cancel,3 -goodbye,tootles,original,bye,2 -no,it's false,parrot,cancel,3 -no,i'll pass,original,cancel,3 -yes,correct,original,book,1 -date,what is the day?,original,avail,0 -thank_you,i owe you one,original,bye,2 -thank_you,thanks!,original,bye,2 -no,please disagree,lambada,cancel,3 -thank_you,my sincere gratitude,parrot,bye,2 -thank_you,thank you please,parrot,bye,2 -no,nay,original,cancel,3 -schedule_meeting,how are meetings scheduled?,parrot,book,1 -meeting_schedule,when is my meeting with robin scheduled for?,lambada,avail,0 -calendar,is bowling on my calendar?,original,avail,0 -goodbye,i'll take care of it,parrot,bye,2 -schedule_meeting,make an appointment for me,parrot,book,1 -greeting,hola!,original,greet,4 -greeting,hiya!,original,greet,4 -yes,confirmed,original,book,1 -how_busy,tell me how busy miami marriott will be at 5pm?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -no,hell nah,original,cancel,3 -yes,exactly right,original,book,1 -yes,correct,original,book,1 -goodbye,good-bye,parrot,bye,2 -cancel_reservation,cancel my dinner reservation,lambada,cancel,3 -goodbye,goodbye,original,bye,2 -no,negative definitely,parrot,cancel,3 -goodbye,very nice conversation,parrot,bye,2 -date,current day,parrot,avail,0 -greeting,heller,original,greet,4 -how_busy,how long do you expect to wait for a table at olive garden,lambada,avail,0 -meeting_schedule,what are meetings today?,parrot,avail,0 -greeting,how ya been,original,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -yes,correct,original,book,1 -thank_you,"nice, excellent!",original,bye,2 -goodbye,fairwell?,parrot,bye,2 -goodbye,farewell!,original,bye,2 -calendar,'check my calendar for saturday,parrot,avail,0 -thank_you,i'm so very grateful,parrot,bye,2 -date,list the current days?,parrot,avail,0 -greeting,"hello, friend",original,greet,4 -schedule_meeting,can you have a meeting room for 12 o'clock?,parrot,book,1 -goodbye,", goodbye",lambada,bye,2 -thank_you,merci beaucoup,original,bye,2 -greeting,hiya,original,greet,4 -goodbye,later!,original,bye,2 -no,i'm sorry it isn't,lambada,cancel,3 -how_busy,how busy chili's will be at 11 o'clock?,parrot,avail,0 -greeting,bonjour,original,greet,4 -yes,huh,parrot,book,1 -goodbye,farewell,original,bye,2 -greeting,how's life,original,greet,4 -goodbye,"later, goodbye",lambada,bye,2 -how_busy,how busy will this place be at 8pm,parrot,avail,0 -greeting,hi what's going on,parrot,greet,4 -greeting,i have to know how i'm doing,parrot,greet,4 -goodbye,later!,original,bye,2 -how_busy,can you tell me what the wait is like right now at cracker barrel?,original,avail,0 -goodbye,goodbyes,parrot,bye,2 -no,negatory,original,cancel,3 -goodbye,bye bye,lambada,bye,2 -thank_you,okay thanks,original,bye,2 -greeting,welcome,parrot,greet,4 -thank_you,your response is appreciated,parrot,bye,2 -thank_you,thanks for that!,original,bye,2 -goodbye,goodbye,original,bye,2 -thank_you,thanks for responding,parrot,bye,2 -cancel_reservation,please cancel my booking,parrot,cancel,3 -yes,yeah,original,book,1 -no,negation,parrot,cancel,3 -how_busy,what time do i have to wait for arizona steakhouse?,parrot,avail,0 -schedule_meeting,can you reserve a meeting room for 6pm on wednesday?,lambada,book,1 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -thank_you,the best,parrot,bye,2 -greeting,aloha,original,greet,4 -date,month and day in four days?,parrot,avail,0 -goodbye,im leaving goodbye,parrot,bye,2 -date,in 9 days?,parrot,avail,0 -greeting,i want to know how the ai is doing,lambada,greet,4 -yes,absolutely!,original,book,1 -how_busy,is the mall open at noon?,lambada,avail,0 -greeting,hiya,original,greet,4 -goodbye,later,original,bye,2 -goodbye,"nice talk, goodbye",lambada,bye,2 -meeting_schedule,is there any meeting today?,parrot,avail,0 -goodbye,i enjoyed our talk,parrot,bye,2 -greeting,aho,parrot,greet,4 -yes,i guess,parrot,book,1 -greeting,good evening,original,greet,4 -no,there is no,parrot,cancel,3 -thank_you,you're welcome,parrot,bye,2 -date,what's my date tomorrow?,parrot,avail,0 -yes,"yes, that's confirmed",original,book,1 -thank_you,much obliged,original,bye,2 -yes,that statement was correct,original,book,1 -calendar,i have what to do on wednesday,original,avail,0 -yes,good,parrot,book,1 -thank_you,good job,lambada,bye,2 -how_busy,how long is the wait to get into obmi at 4:30,lambada,avail,0 -how_busy,can you tell me what the wait times are in this restaurant?,parrot,avail,0 -goodbye,it's over,parrot,bye,2 -greeting,"hello, friend",original,greet,4 -thank_you,nice,parrot,bye,2 -greeting,heller,original,greet,4 -yes,ok,original,book,1 -yes,i'm sure this was done,parrot,book,1 -greeting,hey fellows,parrot,greet,4 -greeting,hey,original,greet,4 -no,no no no,parrot,cancel,3 -greeting,how is life?,parrot,greet,4 -no,invalid,original,cancel,3 -yes,TRUE,original,book,1 -goodbye,i have to leave,parrot,bye,2 -goodbye,buhbye now,lambada,bye,2 -goodbye,great conversation,parrot,bye,2 -no,i would prefer not,original,cancel,3 -goodbye,see ya,lambada,bye,2 -no,i would say that is a false statement,lambada,cancel,3 -thank_you,"good job, thanks",lambada,bye,2 -greeting,wassup,original,greet,4 -meeting_schedule,please show me my meeting schedule,lambada,avail,0 -thank_you,appreciated,original,bye,2 -yes,that's right,original,book,1 -thank_you,thanks for doing it,parrot,bye,2 -no,it's a negative,parrot,cancel,3 -yes,it's certainly positive,parrot,book,1 -goodbye,buhbye,original,bye,2 -greeting,bonjour,original,greet,4 -no,nope,original,cancel,3 -yes,affirmitive,original,book,1 -calendar,what's tuesday's calendar?,parrot,avail,0 -no,i meant no,original,cancel,3 -no,that's totally false,parrot,cancel,3 -yes,i want it,parrot,book,1 -no,FALSE,original,cancel,3 -yes,do that?,original,book,1 -date,in 8 days?,parrot,avail,0 -date,i need to know what the date is,lambada,avail,0 -greeting,hey there,original,greet,4 -schedule_meeting,i want to meet you in the blue room,parrot,book,1 -yes,of course,original,book,1 -yes,i'm going to tell you tes,parrot,book,1 -no,negation,parrot,cancel,3 -yes,huh,parrot,book,1 -date,what's my tomorrow date?,parrot,avail,0 -yes,is true,parrot,book,1 -yes,yeah,original,book,1 -yes,just right,parrot,book,1 -greeting,welcome,parrot,greet,4 -goodbye,goodbye soon,lambada,bye,2 -how_busy,is ihop busy around 7am?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -goodbye,later goodbye,parrot,bye,2 -no,not good,parrot,cancel,3 -greeting,how are things,original,greet,4 -schedule_meeting,i want to know if there is a meeting room available at 8,parrot,book,1 -greeting,hola,original,greet,4 -greeting,welcome,parrot,greet,4 -no,not right?,parrot,cancel,3 -date,in eight days?,parrot,avail,0 -reminder_update,give me a reminder,parrot,resched,5 -greeting,how's everything?,parrot,greet,4 -how_busy,what's the crowd at olive garden at 7pm?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -goodbye,later then,lambada,bye,2 -thank_you,so glad you did it,parrot,bye,2 -date,what today?,parrot,avail,0 -yes,approved,original,book,1 -yes,is true,parrot,book,1 -yes,TRUE,original,book,1 -how_busy,how long will chili's wait?,parrot,avail,0 -thank_you,gracias,original,bye,2 -goodbye,tootles,original,bye,2 -thank_you,appreciated,original,bye,2 -no,FALSE,lambada,cancel,3 -goodbye,later!,original,bye,2 -no,it's no,parrot,cancel,3 -goodbye,you're done,parrot,bye,2 -yes,approved,original,book,1 -goodbye,goodnight,original,bye,2 -greeting,hi there,original,greet,4 -yes,approved,original,book,1 -schedule_meeting,you know if there are meeting rooms available between 1 and 4?,parrot,book,1 -greeting,what do i feel?,parrot,greet,4 -thank_you,appreciated,original,bye,2 -date,please share today's date,original,avail,0 -yes,absolutely!,original,book,1 -goodbye,bye bye!,original,bye,2 -goodbye,fairwell,original,bye,2 -yes,yep,original,book,1 -how_busy,how busy is the chicken nuggets at 5:30 pm,lambada,avail,0 -goodbye,you're done,parrot,bye,2 -meeting_schedule,do i have any meetings coming up today?,original,avail,0 -goodbye,buhbye,original,bye,2 -schedule_meeting,how is a meeting planned?,parrot,book,1 -goodbye,buhbye,original,bye,2 -yes,absolutely!,original,book,1 -calendar,please tell me what is on my calendar for march 25th?,parrot,avail,0 -yes,good,parrot,book,1 -greeting,ahoy,lambada,greet,4 -yes,confirm,original,book,1 -thank_you,thankyou,parrot,bye,2 -no,FALSE,original,cancel,3 -reminder_update,what about a reminder,parrot,resched,5 -yes,huh huh,parrot,book,1 -goodbye,as regards,parrot,bye,2 -greeting,hey,original,greet,4 -date,when will it be in ten days?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -greeting,i want to know what you're doing,parrot,greet,4 -goodbye,i’m leaving-goodbye!,original,bye,2 -no,negating,parrot,cancel,3 -no,no,lambada,cancel,3 -date,is today a date?,parrot,avail,0 -greeting,aloha,original,greet,4 -goodbye,catch you around,original,bye,2 -cancel_reservation,i'd like to cancel the party of 7 we reserved at the olive garden,original,cancel,3 -yes,so it's true,parrot,book,1 -thank_you,thanks so much,original,bye,2 -no,i'd prefer not to,parrot,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -goodbye,later,original,bye,2 -meeting_schedule,what's my plan today?,parrot,avail,0 -how_busy,can you tell me how long the wait is in this cheesecake factory?,parrot,avail,0 -greeting,whats new,lambada,greet,4 -no,it is no,original,cancel,3 -yes,obviously,parrot,book,1 -greeting,good evening,original,greet,4 -how_busy,ihop around 10 pm,parrot,avail,0 -greeting,hello ai,parrot,greet,4 -goodbye,say goodbye,parrot,bye,2 -goodbye,goodbyes soon,parrot,bye,2 -no,naw,original,cancel,3 -no,no way!,original,cancel,3 -greeting,hows are ya,original,greet,4 -greeting,bonjour,original,greet,4 -date,if it's six days,parrot,avail,0 -thank_you,thanks so much for my reply,parrot,bye,2 -no,so that's no,parrot,cancel,3 -thank_you,i appreciate you responding to this question,lambada,bye,2 -no,that's a no,lambada,cancel,3 -how_busy,how busy is chili's around 5pm,lambada,avail,0 -yes,that makes sense,lambada,book,1 -thank_you,thanks for my answer,parrot,bye,2 -yes,i believe it's true,lambada,book,1 -goodbye,"goodbye, ai assistant",original,bye,2 -date,please date,parrot,avail,0 -greeting,what's happened?,parrot,greet,4 -goodbye,see ya,lambada,bye,2 -yes,correct,original,book,1 -no,that's no,parrot,cancel,3 -greeting,how's it hanging,original,greet,4 -date,please date,parrot,avail,0 -goodbye,"nice talk, goodbye",lambada,bye,2 -cancel_reservation,can you cancel my reservation for dinner tomorrow?,original,cancel,3 -reminder_update,remind me on friday to call my mother,parrot,resched,5 -thank_you,really great!,original,bye,2 -yes,accept,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -thank_you,"good job, thanks",lambada,bye,2 -how_busy,how busy is red robin now?,parrot,avail,0 -calendar_update,stop this event today,parrot,resched,5 -no,naw,original,cancel,3 -date,what today?,parrot,avail,0 -yes,yes,original,book,1 -yes,say yes,lambada,book,1 -goodbye,go easy,parrot,bye,2 -no,don't agree,parrot,cancel,3 -yes,not false,parrot,book,1 -goodbye,i'm glad i got to talk to you,original,bye,2 -schedule_meeting,can you help me with the meeting?,parrot,book,1 -meeting_schedule,how long is the meeting between tuesday and friday?,parrot,avail,0 -schedule_meeting,how can i book a meeting room for 6pm on wednesday?,parrot,book,1 -greeting,ahoy,lambada,greet,4 -date,what is the description of the day?,lambada,avail,0 -date,what's the day today?,parrot,avail,0 -calendar,can you tell me how many days i have in my calendar for tomorrow?,parrot,avail,0 -calendar_update,take cancel abc on my calendar on tuesday,lambada,resched,5 -yes,sure,original,book,1 -yes,okay,original,book,1 -cancel_reservation,i need to cancel my party reservation at the ranch for tonight,lambada,cancel,3 -greeting,how things go?,parrot,greet,4 -no,that is not correct,original,cancel,3 -yes,that's right,original,book,1 -no,but no way?,parrot,cancel,3 -greeting,hi,original,greet,4 -goodbye,adios,original,bye,2 -goodbye,peace out!,original,bye,2 -thank_you,i sincerely thank you for that,parrot,bye,2 -thank_you,you're welcome,parrot,bye,2 -goodbye,take a rest,parrot,bye,2 -yes,ya,original,book,1 -yes,ya,original,book,1 -no,nay,original,cancel,3 -how_busy,what is the wait time for teddy bears at 6 pm?,lambada,avail,0 -greeting,hola,original,greet,4 -reminder_update,make me remember to wash my hair,parrot,resched,5 -yes,and you're correct,parrot,book,1 -no,it's negative,parrot,cancel,3 -greeting,what do i feel like?,parrot,greet,4 -how_busy,how long until i can eat macaroni grill,parrot,avail,0 -thank_you,so grateful,parrot,bye,2 -yes,accept,parrot,book,1 -greeting,how're you?,parrot,greet,4 -greeting,hello how are things going?,parrot,greet,4 -greeting,how's the situation?,parrot,greet,4 -yes,yes,original,book,1 -thank_you,"good job, thanks",lambada,bye,2 -goodbye,bye!,original,bye,2 -how_busy,how long does the restaurant wait before you get a seat?,parrot,avail,0 -schedule_meeting,please schedule a meeting,parrot,book,1 -yes,yes sir,original,book,1 -how_busy,what's the average crowd at chili's around 5,lambada,avail,0 -thank_you,thanks again!,original,bye,2 -yes,"yes, please",parrot,book,1 -date,what month is it today??,parrot,avail,0 -yes,good,parrot,book,1 -calendar,what's on my calendar for friday?,parrot,avail,0 -no,"no, you are wrong",original,cancel,3 -yes,"true, most definitely",original,book,1 -no,negation,parrot,cancel,3 -goodbye,peace,original,bye,2 -greeting,heyo,original,greet,4 -greeting,how's life,original,greet,4 -no,that's very wrong,parrot,cancel,3 -yes,correct,original,book,1 -yes,roger that,original,book,1 -how_busy,is the restaurant crowded between 7 and 8pm?,parrot,avail,0 -thank_you,thank you for answering,parrot,bye,2 -no,erroneous,parrot,cancel,3 -no,invalid,original,cancel,3 -goodbye,fairwell,original,bye,2 -no,nay,original,cancel,3 -no,not correct,parrot,cancel,3 -yes,and you're right,parrot,book,1 -calendar,tell me what my calendar looks like for april 13,parrot,avail,0 -calendar_update,take the date off of my calendar,parrot,resched,5 -goodbye,goodbye ai,parrot,bye,2 -no,no it's not correct,parrot,cancel,3 -goodbye,later!,original,bye,2 -no,is not true?,parrot,cancel,3 -yes,ya,original,book,1 -yes,uh-huh,original,book,1 -yes,yup,original,book,1 -no,absolutely false,parrot,cancel,3 -goodbye,i'm out,parrot,bye,2 -no,it's negative,parrot,cancel,3 -goodbye,bye-bye,original,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -yes,right,parrot,book,1 -no,not true,original,cancel,3 -no,not necessarily true,parrot,cancel,3 -calendar,what's happening on march 15,parrot,avail,0 -goodbye,good night,original,bye,2 -no,it's completely false,parrot,cancel,3 -goodbye,a good talk,parrot,bye,2 -goodbye,as regards,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -yes,a fact,parrot,book,1 -no,that is untrue,original,cancel,3 -goodbye,afterward,parrot,bye,2 -no,i don't agree,parrot,cancel,3 -no,no!,original,cancel,3 -yes,affirmative,original,book,1 -date,can you remind me of the date?,original,avail,0 -reminder_update,add a reminder,lambada,resched,5 -greeting,how is idy?,parrot,greet,4 -goodbye,get there soon,lambada,bye,2 -yes,obviously,parrot,book,1 -how_busy,does the grocer have a lot of busy people around noon?,lambada,avail,0 -reminder_update,come on please,parrot,resched,5 -yes,10-Apr,original,book,1 -yes,that appears true,original,book,1 -calendar,have i added the bike ride to my calendar yet?,parrot,avail,0 -cancel_reservation,please unreserve that table,original,cancel,3 -no,that's false,original,cancel,3 -goodbye,buhbye,original,bye,2 -yes,TRUE,lambada,book,1 -cancel_reservation,don't want to have my reservation cancelled for thursday?,lambada,cancel,3 -yes,accepted,original,book,1 -reminder_update,what's a reminder,parrot,resched,5 -date,today?,parrot,avail,0 -greeting,aho,parrot,greet,4 -no,no,lambada,cancel,3 -date,today?,parrot,avail,0 -date,what date is that?,parrot,avail,0 -date,what date tomorrow?,parrot,avail,0 -yes,perfect,parrot,book,1 -thank_you,you did a good job,lambada,bye,2 -no,negatory?,parrot,cancel,3 -date,tell me what day it's,parrot,avail,0 -how_busy,tell me the time it takes to be seated in the restaurant,parrot,avail,0 -yes,oh-huh,parrot,book,1 -how_busy,how long is the wait at ihop currently,lambada,avail,0 -goodbye,the chat was good,parrot,bye,2 -meeting_schedule,am i scheduled for any gathering today?,parrot,avail,0 -no,that is no way,lambada,cancel,3 -thank_you,and you're doing well,parrot,bye,2 -no,it's a negation,parrot,cancel,3 -goodbye,later gater,original,bye,2 -greeting,hey there!,original,greet,4 -thank_you,thanks for trying,original,bye,2 -yes,uh-huh,original,book,1 -meeting_schedule,are there meetings between 1 and 3?,parrot,avail,0 -schedule_meeting,how is a meeting scheduled,original,book,1 -goodbye,goodbye bye,parrot,bye,2 -meeting_schedule,what's the time for today?,parrot,avail,0 -yes,agreed,original,book,1 -thank_you,i'd like to thank you,parrot,bye,2 -no,this is so negative,parrot,cancel,3 -no,that's certainly not the case,parrot,cancel,3 -greeting,hola!,original,greet,4 -goodbye,talk to me later,parrot,bye,2 -how_busy,how long before i can eat macaroni grill,parrot,avail,0 -no,that's not what i want!,original,cancel,3 -date,'what is the date today',parrot,avail,0 -yes,oh-huh,parrot,book,1 -no,not true,original,cancel,3 -yes,good,parrot,book,1 -greeting,aloha,original,greet,4 -yes,oh-huh,parrot,book,1 -yes,sure thing,original,book,1 -yes,right,parrot,book,1 -cancel_reservation,cancellation of dinner reservations,parrot,cancel,3 -how_busy,how busy is mishawaka,lambada,avail,0 -cancel_reservation,scrap that dinner reservation,original,cancel,3 -no,"no, that's incorrect",original,cancel,3 -how_busy,which place in town is the most busy right now?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -greeting,bonjour,original,greet,4 -greeting,whats up?,parrot,greet,4 -calendar_update,i want to add this event to my calendar for today,parrot,resched,5 -greeting,how's everything?,parrot,greet,4 -greeting,aho,parrot,greet,4 -how_busy,how much time is the restaurant open between 5 and 7,lambada,avail,0 -goodbye,good luck,lambada,bye,2 -reminder_update,remind me to put the garbage into the can,lambada,resched,5 -goodbye,bye-bye,original,bye,2 -how_busy,what's the wait time for a table in a restaurant?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -date,in 100 days?,parrot,avail,0 -calendar_update,please take off my calendar on saturday the 6th birthday of john,parrot,resched,5 -yes,yep,original,book,1 -thank_you,thanks for my assistance,parrot,bye,2 -no,no!,original,cancel,3 -meeting_schedule,are there meetings today between noon and 1?,parrot,avail,0 -goodbye,i'm outta here!,original,bye,2 -how_busy,is imbrosia busy around 7?,lambada,avail,0 -goodbye,come on soon,parrot,bye,2 -thank_you,your answer is appreciated,original,bye,2 -yes,certainly,parrot,book,1 -meeting_schedule,is lisa meeting you today?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -goodbye,a good talk,parrot,bye,2 -greeting,how are you doing today,lambada,greet,4 -date,tell me the date of the last 30 days?,parrot,avail,0 -date,what's the next week?,parrot,avail,0 -greeting,hello,original,greet,4 -meeting_schedule,what if i have a meeting today?,parrot,avail,0 -meeting_schedule,how many meetings will i have today?,parrot,avail,0 -calendar_update,i no longer need to go to the zoo on the 8th of this month,original,resched,5 -no,i'll pass,original,cancel,3 -no,nothing,parrot,cancel,3 -meeting_schedule,are there meetings for today?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -no,that's bad,parrot,cancel,3 -calendar,let me know what's happening on march 21st,parrot,avail,0 -no,i think it's false,parrot,cancel,3 -schedule_meeting,explain how to schedule a meeting?,parrot,book,1 -no,certainly false,parrot,cancel,3 -no,most definitely false,parrot,cancel,3 -date,on what day will it be in 373 days?,parrot,avail,0 -how_busy,what is the best time to eat at olive garden?,lambada,avail,0 -no,that's wrong,original,cancel,3 -goodbye,fairwell?,parrot,bye,2 -yes,positive,parrot,book,1 -no,no please,parrot,cancel,3 -reminder_update,please remind me to take care of my car,parrot,resched,5 -how_busy,what's the wait time for tomato salads?,parrot,avail,0 -how_busy,can you tell me how many seats are there in this restaurant?,parrot,avail,0 -yes,i want to confirm the truth,lambada,book,1 -thank_you,thanks!,original,bye,2 -goodbye,we'll talk later ai,original,bye,2 -no,is that a lie?,parrot,cancel,3 -yes,TRUE,lambada,book,1 -reminder_update,please remind me later,original,resched,5 -schedule_meeting,can you arrange a meeting?,parrot,book,1 -no,no don't do that!,original,cancel,3 -no,no?,parrot,cancel,3 -date,describe the day?,parrot,avail,0 -no,that's totally false,parrot,cancel,3 -no,that's actually a lie,parrot,cancel,3 -calendar,check what is on my calendar for tuesday,lambada,avail,0 -goodbye,adios!,original,bye,2 -no,that seems wrong,lambada,cancel,3 -greeting,how's it going,lambada,greet,4 -goodbye,peace,original,bye,2 -date,when is it going to be seven days?,parrot,avail,0 -yes,definitely yes,parrot,book,1 -reminder_update,create a reminder,original,resched,5 -goodbye,it was a pleasure to talk to you goodbye now,parrot,bye,2 -goodbye,peace,original,bye,2 -goodbye,afterward,parrot,bye,2 -thank_you,thanks very much,parrot,bye,2 -how_busy,what's the wait time at mac 'n cheese right now?,parrot,avail,0 -yes,TRUE,original,book,1 -no,i don't think it's correct,parrot,cancel,3 -goodbye,goodbye ai,parrot,bye,2 -no,negative,original,cancel,3 -greeting,what's new,lambada,greet,4 -no,i don't think it is true,parrot,cancel,3 -meeting_schedule,tell me if i have any meetings today,parrot,avail,0 -reminder_update,save it for later,parrot,resched,5 -thank_you,gracias,original,bye,2 -reminder_update,can i have a reminder set up?,original,resched,5 -cancel_reservation,tell the restaurant that i have to cancel my reservation?,parrot,cancel,3 -goodbye,we chatted well,parrot,bye,2 -greeting,good morning ai,parrot,greet,4 -how_busy,how busy is red robin?,parrot,avail,0 -how_busy,how long will i have to wait for tiembe in tacoma,parrot,avail,0 -goodbye,i'm out of here,original,bye,2 -calendar_update,create a reminder calendar for march 6,parrot,resched,5 -greeting,you're all right?,parrot,greet,4 -greeting,hey hey!,original,greet,4 -yes,correct,original,book,1 -calendar,do i have anything scheduled for thursday the 14th?,original,avail,0 -greeting,is everything okay today?,parrot,greet,4 -goodbye,signing off,original,bye,2 -date,describe the day?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -yes,"yep, that's right",original,book,1 -greeting,hi ai,original,greet,4 -thank_you,thank ya!,original,bye,2 -no,nope,original,cancel,3 -meeting_schedule,meetings today,original,avail,0 -reminder_update,may i be reminded,lambada,resched,5 -no,nothing,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -no,that isn't true,lambada,cancel,3 -yes,yeah,original,book,1 -goodbye,come on soon,parrot,bye,2 -yes,all right,original,book,1 -how_busy,how much time will it take to get a table in chili's?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -no,naw,original,cancel,3 -date,what's today's date,original,avail,0 -goodbye,until next time!,original,bye,2 -no,but it's false,parrot,cancel,3 -date,please tell me the date for tomorrow,parrot,avail,0 -goodbye,peace,original,bye,2 -no,negating,parrot,cancel,3 -yes,i guess,parrot,book,1 -goodbye,take it easy,lambada,bye,2 -thank_you,merci beaucoup,original,bye,2 -thank_you,gracias,original,bye,2 -greeting,aloha,original,greet,4 -how_busy,how long will it take to wait for a table in tomato soup?,parrot,avail,0 -meeting_schedule,how many meetings do i have between noon and one?,parrot,avail,0 -yes,it's positive,parrot,book,1 -thank_you,thank ya!,original,bye,2 -thank_you,appreciated,original,bye,2 -thank_you,thank you i appreciate my help,parrot,bye,2 -schedule_meeting,explain how to schedule a meeting,parrot,book,1 -yes,oh-huh,parrot,book,1 -no,FALSE,lambada,cancel,3 -goodbye,see ya,lambada,bye,2 -date,current day,parrot,avail,0 -no,so that's no,parrot,cancel,3 -greeting,hola,original,greet,4 -how_busy,what's the average wait time for a chinese restaurant,lambada,avail,0 -goodbye,regards,original,bye,2 -goodbye,buhbye,original,bye,2 -no,that would be false,original,cancel,3 -greeting,how are you?,parrot,greet,4 -how_busy,can you tell me how busy the red lobster is at 6?,parrot,avail,0 -greeting,hi how's it going,lambada,greet,4 -date,what date this month?,parrot,avail,0 -greeting,hey fellows,parrot,greet,4 -how_busy,do you know how long the wait is at the coffee shops?,parrot,avail,0 -yes,absolutely,original,book,1 -goodbye,adios,original,bye,2 -goodbye,bye bye!,original,bye,2 -no,but that's not true,parrot,cancel,3 -yes,definitely,original,book,1 -greeting,aloha,original,greet,4 -greeting,hiya!,original,greet,4 -yes,"yup, that is true",lambada,book,1 -yes,indeed,original,book,1 -yes,that is a fact,original,book,1 -no,i'm sorry it isn't,lambada,cancel,3 -yes,i believe that is true,lambada,book,1 -goodbye,i'm leaving,parrot,bye,2 -yes,"yes, that's affirmative",original,book,1 -goodbye,talk later,original,bye,2 -yes,yeah yeah,lambada,book,1 -greeting,how's my day?,parrot,greet,4 -greeting,are you well?,original,greet,4 -yes,indeed,original,book,1 -goodbye,"thanks, bye",original,bye,2 -goodbye,see ya,original,bye,2 -no,no!,original,cancel,3 -greeting,wanted to say hello,parrot,greet,4 -how_busy,how long will the wait be at the red lobster?,parrot,avail,0 -goodbye,great talking to you,parrot,bye,2 -date,what's the day now??,parrot,avail,0 -goodbye,i want it now,parrot,bye,2 -date,is today monday?,original,avail,0 -greeting,hiya,original,greet,4 -thank_you,i'm very grateful,parrot,bye,2 -thank_you,thank you for my assistance,original,bye,2 -greeting,"hey, how's it going",original,greet,4 -yes,good,parrot,book,1 -goodbye,nice talk,lambada,bye,2 -reminder_update,i want to remind you of this,parrot,resched,5 -no,FALSE,original,cancel,3 -yes,good,parrot,book,1 -greeting,good evening,original,greet,4 -yes,positive,parrot,book,1 -goodbye,take a break,parrot,bye,2 -greeting,how've you been,original,greet,4 -thank_you,merci beaucoup,original,bye,2 -goodbye,bye bye!,original,bye,2 -yes,is true,parrot,book,1 -no,that's erroneous,parrot,cancel,3 -goodbye,farewell,original,bye,2 -calendar_update,take my dinner plans off of my calendar today,parrot,resched,5 -yes,accepted,original,book,1 -how_busy,how long has the wait been in the italian restaurant?,parrot,avail,0 -yes,i know,parrot,book,1 -schedule_meeting,make sure i get a meeting room for 9am on friday,original,book,1 -goodbye,farewell!,original,bye,2 -greeting,hey there!,original,greet,4 -no,negatory?,parrot,cancel,3 -thank_you,you're welcome,parrot,bye,2 -goodbye,nice drive by,lambada,bye,2 -goodbye,bye!,original,bye,2 -yes,facts,original,book,1 -schedule_meeting,please book a meeting room for 9am on sunday,parrot,book,1 -goodbye,go easy,parrot,bye,2 -no,so that's no,parrot,cancel,3 -date,date tomorrow?,parrot,avail,0 -goodbye,later!,original,bye,2 -greeting,hola!,original,greet,4 -goodbye,greetings,parrot,bye,2 -calendar,please tell me what may 1 will be like according to the calendar?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -no,negative,original,cancel,3 -calendar_update,take the next event off my calendar,lambada,resched,5 -goodbye,regards,original,bye,2 -thank_you,you're welcome,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -thank_you,i am grateful,lambada,bye,2 -greeting,yo,original,greet,4 -thank_you,you're welcome,parrot,bye,2 -greeting,hello,original,greet,4 -goodbye,good talk,parrot,bye,2 -meeting_schedule,when's my meeting?,parrot,avail,0 -no,absolutely false,parrot,cancel,3 -no,that's not the answer,parrot,cancel,3 -greeting,how's everything,original,greet,4 -goodbye,thanks for talking with me,lambada,bye,2 -date,date tomorrow,parrot,avail,0 -yes,absolutely correct,original,book,1 -goodbye,tootles,original,bye,2 -no,invalid,original,cancel,3 -thank_you,did you do well?,parrot,bye,2 -no,it's a false,lambada,cancel,3 -goodbye,later goodbye,parrot,bye,2 -goodbye,bye my friend,parrot,bye,2 -goodbye,i'm out,parrot,bye,2 -thank_you,you helped,parrot,bye,2 -how_busy,is chili's busy at 7:00 pm?,lambada,avail,0 -date,what date is that?,parrot,avail,0 -yes,indeed,original,book,1 -thank_you,thank you for trying it,parrot,bye,2 -no,what isn't true?,parrot,cancel,3 -no,certainly not,original,cancel,3 -no,negative,original,cancel,3 -thank_you,i'm really thankful,parrot,bye,2 -no,no this is false,parrot,cancel,3 -yes,and you're right,parrot,book,1 -calendar,do i have any events on my calendar for march 3?,lambada,avail,0 -no,false for sure,original,cancel,3 -goodbye,later!,original,bye,2 -calendar,what's my schedule like for thursday the 14th,original,avail,0 -yes,yay,lambada,book,1 -greeting,what's happened?,parrot,greet,4 -no,that is wrong,original,cancel,3 -no,that is incorrect,original,cancel,3 -no,nothing,parrot,cancel,3 -no,no way,original,cancel,3 -goodbye,goodbye!,original,bye,2 -no,i don't think that's true,lambada,cancel,3 -goodbye,peace,original,bye,2 -yes,affirmative,original,book,1 -goodbye,later,original,bye,2 -yes,okay,original,book,1 -thank_you,thank you for that response,original,bye,2 -yes,sure,original,book,1 -schedule_meeting,make me a schedule for my meeting with jim at 3 pm,parrot,book,1 -greeting,how's that hanging?,parrot,greet,4 -yes,agreed,original,book,1 -yes,so it works,parrot,book,1 -reminder_update,remember to call bob tomorrow,parrot,resched,5 -greeting,give me the information,parrot,greet,4 -how_busy,how busy is igor at 8 pm?,parrot,avail,0 -yes,so it's true,parrot,book,1 -goodbye,farewell!,original,bye,2 -yes,not false,parrot,book,1 -greeting,whats up?,parrot,greet,4 -calendar,what is tuesday in my calendar?,parrot,avail,0 -reminder_update,make a reminder i need to ask about my job?,parrot,resched,5 -thank_you,thank you for answering,parrot,bye,2 -goodbye,fairwell,original,bye,2 -greeting,whats new,lambada,greet,4 -how_busy,how busy is the restaurant around 10am?,parrot,avail,0 -goodbye,goodbye ai,parrot,bye,2 -no,that's not factual,parrot,cancel,3 -thank_you,good job on that,lambada,bye,2 -how_busy,tell me the time to wait in the cheesecake factory?,parrot,avail,0 -yes,approved,original,book,1 -meeting_schedule,do you know about my meeting with lorrie?,parrot,avail,0 -greeting,how's idy?,parrot,greet,4 -no,that's not factual,parrot,cancel,3 -no,that is actually false,original,cancel,3 -yes,you got it,parrot,book,1 -no,negation,parrot,cancel,3 -thank_you,my gratitude,parrot,bye,2 -no,is very false,parrot,cancel,3 -no,that's not correct,original,cancel,3 -reminder_update,i need you to remind me to give the cat fleas medicine,parrot,resched,5 -thank_you,i'm glad you laughed,parrot,bye,2 -yes,huh huh,parrot,book,1 -date,date please,original,avail,0 -no,"please, no",original,cancel,3 -greeting,how's life?,parrot,greet,4 -greeting,how's life?,parrot,greet,4 -greeting,"hi, how are you",original,greet,4 -calendar_update,delete dentist from my calendar,original,resched,5 -how_busy,what's the wait time in chipotle?,parrot,avail,0 -yes,okay,original,book,1 -schedule_meeting,i need you to set up a meeting with john at 11 am,parrot,book,1 -yes,sure,original,book,1 -thank_you,thank ya!,original,bye,2 -goodbye,good bye,original,bye,2 -yes,yeah yeah,lambada,book,1 -thank_you,it pleased me,parrot,bye,2 -no,yes it's false,parrot,cancel,3 -goodbye,come on soon,parrot,bye,2 -reminder_update,reminder of the gas bill,parrot,resched,5 -thank_you,thank you,original,bye,2 -yes,not false,parrot,book,1 -date,which day is next,parrot,avail,0 -yes,ok,original,book,1 -no,naw,original,cancel,3 -goodbye,i need to catch up,lambada,bye,2 -no,yes it's false,parrot,cancel,3 -greeting,you good?,parrot,greet,4 -no,it's false,parrot,cancel,3 -yes,all right,parrot,book,1 -yes,very true,original,book,1 -yes,"yes, that is true",original,book,1 -greeting,salutation,parrot,greet,4 -no,naw,original,cancel,3 -how_busy,how busy does the outback get around 7pm?,parrot,avail,0 -schedule_meeting,how do i schedule a meeting?,parrot,book,1 -yes,a true statement,parrot,book,1 -goodbye,goodbye now,parrot,bye,2 -thank_you,thanks again,original,bye,2 -greeting,bonjour,original,greet,4 -date,date tomorrow,parrot,avail,0 -how_busy,how many people are around the red lobster?,parrot,avail,0 -meeting_schedule,when is my invoicing meeting?,parrot,avail,0 -greeting,how's everything,original,greet,4 -greeting,how are things?,parrot,greet,4 -greeting,hello how's it going,original,greet,4 -how_busy,how busy is macaroni around 830?,parrot,avail,0 -date,what's my date tomorrow?,parrot,avail,0 -goodbye,"thanks, bye",original,bye,2 -thank_you,"nice, excellent!",original,bye,2 -greeting,what i feel?,parrot,greet,4 -no,that's a negatory,original,cancel,3 -how_busy,how long can i expect to wait for a table at the macaroni grill,parrot,avail,0 -yes,that's correct,original,book,1 -no,negating,parrot,cancel,3 -goodbye,regards,original,bye,2 -no,not that,original,cancel,3 -reminder_update,you know something?,parrot,resched,5 -greeting,ahoy,lambada,greet,4 -greeting,how is everything?,parrot,greet,4 -yes,that is really true,lambada,book,1 -no,that's bad,parrot,cancel,3 -no,that isn't right,original,cancel,3 -thank_you,i'm thankful,original,bye,2 -date,today?,parrot,avail,0 -yes,that is affirmative,original,book,1 -goodbye,good night,original,bye,2 -how_busy,is ihop busy at 9?,parrot,avail,0 -no,negation,parrot,cancel,3 -greeting,hola!,original,greet,4 -date,please date,parrot,avail,0 -how_busy,list the average wait time at chili's right now?,parrot,avail,0 -goodbye,im leaving,parrot,bye,2 -goodbye,sayonara,original,bye,2 -no,invalid,original,cancel,3 -goodbye,goodbye,original,bye,2 -goodbye,it was nice to chat,original,bye,2 -greeting,hey yai,lambada,greet,4 -thank_you,well done,parrot,bye,2 -yes,uh-huh,original,book,1 -yes,that would be right,parrot,book,1 -greeting,how does ai do?,parrot,greet,4 -no,"no, that's wrong",original,cancel,3 -thank_you,your assistance is appreciated,parrot,bye,2 -yes,the truth is true,lambada,book,1 -reminder_update,add a reminder,lambada,resched,5 -yes,obviously,parrot,book,1 -no,naw,original,cancel,3 -reminder_update,remember to write later,parrot,resched,5 -reminder_update,please remember something,parrot,resched,5 -yes,confirm,original,book,1 -how_busy,how many people will be sitting in the restaurant at 6,parrot,avail,0 -yes,yes,original,book,1 -yes,that's right,original,book,1 -yes,positive,original,book,1 -goodbye,"this was a nice chat, goodbye",original,bye,2 -schedule_meeting,i want to meet you in the blue room on friday?,parrot,book,1 -greeting,hiya,original,greet,4 -goodbye,have fun?,lambada,bye,2 -date,which date today?,parrot,avail,0 -goodbye,sayonara ,parrot,bye,2 -no,that is not a good sign,lambada,cancel,3 -reminder_update,please add a reminder on the list?,parrot,resched,5 -greeting,welcome,parrot,greet,4 -thank_you,thank you again,parrot,bye,2 -goodbye,goodbye later,parrot,bye,2 -yes,facts,original,book,1 -greeting,ahoy,lambada,greet,4 -no,nada,original,cancel,3 -greeting,how's everything,original,greet,4 -no,that's incorrect,original,cancel,3 -goodbye,i'm gone,parrot,bye,2 -thank_you,thanks for my cooperation,original,bye,2 -no,nada,original,cancel,3 -calendar,what's in the book for april 30th,parrot,avail,0 -no,nay,original,cancel,3 -meeting_schedule,list the meetings on my calendar?,parrot,avail,0 -how_busy,how long will the wait be for dinner at tandoor?,parrot,avail,0 -goodbye,later,original,bye,2 -how_busy,how busy is my kitchen today?,parrot,avail,0 -goodbye,good night,original,bye,2 -no,it is not that,lambada,cancel,3 -no,no don't do that!,original,cancel,3 -yes,certainly,parrot,book,1 -goodbye,good bye then,original,bye,2 -goodbye,later,original,bye,2 -yes,confirmed,original,book,1 -goodbye,the talk was nice,lambada,bye,2 -how_busy,is iman busy at 6 pm?,parrot,avail,0 -how_busy,is the wait at the chocolate fountain too long?,parrot,avail,0 -no,don't like that,parrot,cancel,3 -how_busy,how long should i wait in the cheesecake factory before getting seated?,parrot,avail,0 -reminder_update,"new reminder, please",original,resched,5 -yes,uh-huh,original,book,1 -thank_you,i'm happy you've helped me,parrot,bye,2 -cancel_reservation,please cancel my reservation for ed at eat well,lambada,cancel,3 -yes,"yes, that's a fact",lambada,book,1 -goodbye,adios!,original,bye,2 -no,erroneous,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -greeting,hi how are you,original,greet,4 -no,not good,parrot,cancel,3 -no,not correct,parrot,cancel,3 -meeting_schedule,are any meetings booked today?,parrot,avail,0 -how_busy,how long will it take to get a seat at chili's,parrot,avail,0 -no,that's not necessarily true,lambada,cancel,3 -greeting,whats new?,parrot,greet,4 -no,no,lambada,cancel,3 -greeting,heller,original,greet,4 -calendar,did you add something to my calendar for today?,parrot,avail,0 -no,i meant no,original,cancel,3 -greeting,how's it hanging?,parrot,greet,4 -yes,that is accurate,original,book,1 -greeting,hiya!,original,greet,4 -yes,yeah yeah,lambada,book,1 -cancel_reservation,please cancel my reservation for dinner tonight,lambada,cancel,3 -goodbye,goodbyes,parrot,bye,2 -meeting_schedule,can u tell me the date and time of my meeting with stacy?,lambada,avail,0 -thank_you,i'm really thankful,parrot,bye,2 -yes,facts,original,book,1 -greeting,wassup,original,greet,4 -yes,let's do that,parrot,book,1 -yes,good,parrot,book,1 -goodbye,good night,original,bye,2 -how_busy,is chili busy at 9?,parrot,avail,0 -yes,accepted,original,book,1 -greeting,what's going on,original,greet,4 -no,that's definitely false,original,cancel,3 -meeting_schedule,do you need to schedule a meeting with kim?,parrot,avail,0 -thank_you,you've tried,parrot,bye,2 -goodbye,see you around,original,bye,2 -calendar_update,please get rid of my prom event from march 25,lambada,resched,5 -how_busy,how busy is the red robin around 6pm,parrot,avail,0 -yes,definitely,original,book,1 -no,that's no,parrot,cancel,3 -yes,yep,original,book,1 -date,please tell me the date,parrot,avail,0 -greeting,bonjour,original,greet,4 -yes,you're right,original,book,1 -goodbye,later goodbye,parrot,bye,2 -greeting,"hey, how's it going",original,greet,4 -reminder_update,set up a reminder to give me my pet's medication,lambada,resched,5 -greeting,whats up?,parrot,greet,4 -no,that's a negation,parrot,cancel,3 -yes,facts,original,book,1 -calendar,what's the tuesday calendar?,parrot,avail,0 -greeting,yo,original,greet,4 -cancel_reservation,scrap the dinner reservation,parrot,cancel,3 -yes,yup,original,book,1 -yes,sure,original,book,1 -thank_you,much obliged,original,bye,2 -no,it's very false,parrot,cancel,3 -no,negative certainly,parrot,cancel,3 -goodbye,"later, good luck",lambada,bye,2 -how_busy,tell me the time to wait for a table at angel wings?,parrot,avail,0 -no,no please,parrot,cancel,3 -yes,perfect,parrot,book,1 -yes,affirmative,original,book,1 -greeting,hi,original,greet,4 -greeting,so how is everything,original,greet,4 -goodbye,peace,original,bye,2 -goodbye,good talk,parrot,bye,2 -no,no it's not,parrot,cancel,3 -thank_you,again thanks,parrot,bye,2 -date,this is the day,parrot,avail,0 -goodbye,glad to talk again,parrot,bye,2 -greeting,can you tell me what's going on?,parrot,greet,4 -thank_you,you're welcome,parrot,bye,2 -date,what will tomorrow be on the calendar?,original,avail,0 -thank_you,and i'm grateful,parrot,bye,2 -yes,you got it,original,book,1 -thank_you,special thanks to you ,parrot,bye,2 -no,that's erroneous,parrot,cancel,3 -yes,all right,parrot,book,1 -yes,that appears true,original,book,1 -greeting,aloha,original,greet,4 -yes,it's certainly true,parrot,book,1 -no,is my false claim?,parrot,cancel,3 -greeting,"hey, how are you",original,greet,4 -goodbye,good-bye,parrot,bye,2 -thank_you,your assistance is appreciated,parrot,bye,2 -no,FALSE,lambada,cancel,3 -thank_you,i am very grateful,original,bye,2 -yes,it is true yes,parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -greeting,hello there,original,greet,4 -date,which date today?,parrot,avail,0 -how_busy,how long will i wait at the rancho rancho,parrot,avail,0 -goodbye,im leaving,parrot,bye,2 -greeting,what's up?,parrot,greet,4 -date,list the current days?,parrot,avail,0 -no,no?,parrot,cancel,3 -goodbye,adios!,original,bye,2 -no,that's no way,parrot,cancel,3 -no,nothing good,parrot,cancel,3 -yes,i know,parrot,book,1 -yes,correct,original,book,1 -goodbye,later gater,original,bye,2 -greeting,you good?,parrot,greet,4 -goodbye,bye now,original,bye,2 -date,what date will tomorrow have?,lambada,avail,0 -how_busy,does olive garden have a lot of seats at 8pm?,parrot,avail,0 -goodbye,good bye,original,bye,2 -goodbye,lovely conversation,parrot,bye,2 -no,no,lambada,cancel,3 -calendar_update,i have to add my doctor appointment to my calendar for the first time,parrot,resched,5 -greeting,"hello, good day",lambada,greet,4 -meeting_schedule,check my schedule today,parrot,avail,0 -no,hell nah,original,cancel,3 -cancel_reservation,i need to cancel my reservation for tonight,lambada,cancel,3 -date,you know what date it will be in 2 days?,parrot,avail,0 -goodbye,thanks goodbye,parrot,bye,2 -no,no thanks,original,cancel,3 -yes,yep,original,book,1 -thank_you,very grateful,parrot,bye,2 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -yes,10-Apr,original,book,1 -greeting,hey,original,greet,4 -no,please no,parrot,cancel,3 -greeting,good evening,original,greet,4 -thank_you,"great, thanks!",original,bye,2 -yes,accept,parrot,book,1 -greeting,hey there!,original,greet,4 -reminder_update,set reminder for tomorrow to eat,original,resched,5 -yes,definitely,original,book,1 -no,and i say negative,parrot,cancel,3 -no,no?,parrot,cancel,3 -goodbye,goodbye soon,lambada,bye,2 -reminder_update,remind me later,original,resched,5 -no,no it's not correct,parrot,cancel,3 -goodbye,i've got to go,lambada,bye,2 -goodbye,great talk,lambada,bye,2 -no,that's untrue,parrot,cancel,3 -yes,confirm,original,book,1 -greeting,salutations!,original,greet,4 -no,certainly false,parrot,cancel,3 -thank_you,my gratitude,parrot,bye,2 -how_busy,is there a waiting time for tee time?,parrot,avail,0 -yes,yep,original,book,1 -goodbye,bye,original,bye,2 -goodbye,tootles?,parrot,bye,2 -greeting,hello,original,greet,4 -yes,affirmative,original,book,1 -thank_you,i'm glad you helped,parrot,bye,2 -schedule_meeting,can you plan a meeting room for 5pm on monday evening?,parrot,book,1 -date,what is it today?,lambada,avail,0 -goodbye,sayonara,original,bye,2 -yes,i'll say yes,parrot,book,1 -yes,perfect,parrot,book,1 -goodbye,adios!,original,bye,2 -no,negating,parrot,cancel,3 -goodbye,i have to get going,original,bye,2 -yes,huh,parrot,book,1 -yes,perfect,parrot,book,1 -date,would you like to know the date for tomorrow?,parrot,avail,0 -no,no?,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -greeting,what's happening,original,greet,4 -goodbye,see ya!,original,bye,2 -date,what year?,parrot,avail,0 -date,what day are we?,parrot,avail,0 -calendar_update,make a calendar for tomorrow,parrot,resched,5 -greeting,wassup,original,greet,4 -goodbye,afterward,parrot,bye,2 -reminder_update,set a reminder for the movie,original,resched,5 -goodbye,afterward,parrot,bye,2 -how_busy,how busy is mcdonalds?,parrot,avail,0 -greeting,whats new?,parrot,greet,4 -yes,perfect,parrot,book,1 -thank_you,much obliged,original,bye,2 -no,negative certainly,parrot,cancel,3 -greeting,how are you today,original,greet,4 -thank_you,much obliged,original,bye,2 -yes,very true,original,book,1 -no,negative,original,cancel,3 -no,the wrong answer,parrot,cancel,3 -greeting,how ya been,original,greet,4 -date,what's the year?,parrot,avail,0 -no,absolutely not,original,cancel,3 -date,what year is tomorrow?,parrot,avail,0 -yes,facts,original,book,1 -goodbye,fairwell?,parrot,bye,2 -greeting,bonjour,original,greet,4 -no,it's a mistake,parrot,cancel,3 -goodbye,send a goodbye,lambada,bye,2 -goodbye,sayonara,original,bye,2 -how_busy,how long does it take to get a table at red lobster,lambada,avail,0 -how_busy,tell me the typical time to eat red lobster,parrot,avail,0 -how_busy,can i wait in the restaurant?,parrot,avail,0 -goodbye,goodbyes soon,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,and you're correct,parrot,book,1 -reminder_update,i need a reminder of how to take care of the garden,lambada,resched,5 -yes,positive,original,book,1 -goodbye,goodbye then,parrot,bye,2 -greeting,hello bs,parrot,greet,4 -calendar_update,"make sure events on my calendar for march 8th, 2019 are cleared",lambada,resched,5 -greeting,how you're treated,parrot,greet,4 -no,it's indeed false,parrot,cancel,3 -goodbye,tootles,original,bye,2 -no,false for sure,original,cancel,3 -greeting,hello there,original,greet,4 -no,not happening,original,cancel,3 -yes,affirmitive,original,book,1 -thank_you,your response is appreciated,parrot,bye,2 -calendar,tell me what is showing on my calendar for the 17th of march?,original,avail,0 -date,today what date?,parrot,avail,0 -how_busy,how long do i have to wait for the pizza maker?,parrot,avail,0 -no,not that,original,cancel,3 -yes,this is true,lambada,book,1 -goodbye,it was great to talk with you,parrot,bye,2 -no,i mean no,parrot,cancel,3 -no,negation,parrot,cancel,3 -no,that's not acceptable,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -how_busy,would you say that outback steakhouse is busy at 10 pm,lambada,avail,0 -no,negative,original,cancel,3 -thank_you,appreciate the support,parrot,bye,2 -date,a year?,parrot,avail,0 -goodbye,bye bye!,original,bye,2 -no,negative certainly,parrot,cancel,3 -how_busy,how busy is a typical pizza restaurant at 12pm?,parrot,avail,0 -date,what is tomorrow?,parrot,avail,0 -thank_you,thanks for giving me so much information,parrot,bye,2 -goodbye,i need to go later,lambada,bye,2 -reminder_update,can you add a reminder to my list of reminders?,parrot,resched,5 -greeting,hey there!,original,greet,4 -greeting,"hi, ai",original,greet,4 -thank_you,okay thanks,original,bye,2 -thank_you,i appreciate your gesture,lambada,bye,2 -thank_you,appreciated,original,bye,2 -yes,i would say yes,lambada,book,1 -goodbye,later!,original,bye,2 -yes,correct,original,book,1 -schedule_meeting,how do i submit a meeting request?,parrot,book,1 -no,that's a very bad answer,parrot,cancel,3 -goodbye,later goodbye,parrot,bye,2 -greeting,hello how are you,lambada,greet,4 -goodbye,the talk was nice,lambada,bye,2 -yes,yay,lambada,book,1 -date,and what's the day?,parrot,avail,0 -goodbye,tootles,original,bye,2 -date,what is the day of tomorrow?,lambada,avail,0 -yes,you got it,original,book,1 -no,this is so negative,parrot,cancel,3 -thank_you,thanks,original,bye,2 -yes,accept,parrot,book,1 -no,i'm sorry it's not,parrot,cancel,3 -goodbye,farewell to you,lambada,bye,2 -yes,obviously,parrot,book,1 -yes,"yes, please",original,book,1 -goodbye,sign off,parrot,bye,2 -greeting,wake up ai,parrot,greet,4 -greeting,"wake up, ai",original,greet,4 -thank_you,appreciate the assistance,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -meeting_schedule,when's the meeting?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -how_busy,"for toby's, is it busy around six",original,avail,0 -goodbye,bye!,original,bye,2 -greeting,why hello?,original,greet,4 -yes,so it's true,parrot,book,1 -cancel_reservation,cancellation of dinner reservation tonight,parrot,cancel,3 -goodbye,so i'll talk with you soon,parrot,bye,2 -yes,sure,original,book,1 -goodbye,bye!,original,bye,2 -no,no no it's not,parrot,cancel,3 -schedule_meeting,how many hours a meeting can last?,parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -date,tell me the date?,original,avail,0 -greeting,yo,original,greet,4 -goodbye,greetings,parrot,bye,2 -how_busy,how long does the wait at chili's be at 5pm?,parrot,avail,0 -greeting,bonjour,original,greet,4 -goodbye,farewell!,original,bye,2 -greeting,hey hey!,original,greet,4 -yes,"true, most definitely",original,book,1 -how_busy,is this restaurant crowded at dinner?,parrot,avail,0 -date,date tomorrow?,parrot,avail,0 -how_busy,tell me the time to wait for a table at the restaurant?,parrot,avail,0 -schedule_meeting,can you help me to find a meeting?,parrot,book,1 -greeting,how's life?,parrot,greet,4 -greeting,how is life?,parrot,greet,4 -thank_you,good looking out,original,bye,2 -cancel_reservation,i don't need a reservation,parrot,cancel,3 -yes,very true,original,book,1 -goodbye,i'm leaving,parrot,bye,2 -greeting,what's new,lambada,greet,4 -goodbye,have fun?,lambada,bye,2 -greeting,how it goes?,parrot,greet,4 -how_busy,what is the wait time at greengrocers?,lambada,avail,0 -no,no longer valid,parrot,cancel,3 -date,what's today,original,avail,0 -greeting,salutations,parrot,greet,4 -yes,accept,parrot,book,1 -how_busy,what's the crowd at red lobster around 830?,parrot,avail,0 -goodbye,peace out!,original,bye,2 -calendar_update,please add my calendar for the meeting of the staff scheduled for march 1 2019 at 10 am please,parrot,resched,5 -how_busy,what is the wait time at the imagos right now?,lambada,avail,0 -goodbye,goodbyes,parrot,bye,2 -no,would be a lie,parrot,cancel,3 -meeting_schedule,wanna meet with roger?,parrot,avail,0 -calendar,what will happen in my schedule for march 12th?,parrot,avail,0 -how_busy,is mcdonalds busy?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -goodbye,later!,original,bye,2 -no,i think it is false,original,cancel,3 -calendar_update,please remove the appointment of pat from my calendar,parrot,resched,5 -goodbye,later,original,bye,2 -date,what is the date next week?,lambada,avail,0 -yes,sure thing,original,book,1 -thank_you,thanks,original,bye,2 -greeting,get up ai,parrot,greet,4 -no,negatory?,parrot,cancel,3 -no,negative sure,parrot,cancel,3 -no,naw,original,cancel,3 -yes,confirm,original,book,1 -thank_you,i'm thankful,original,bye,2 -schedule_meeting,i have trouble scheduling a meeting,parrot,book,1 -cancel_reservation,repeal the dinner reservation,original,cancel,3 -greeting,give me the information,parrot,greet,4 -greeting,"hey, ai",original,greet,4 -greeting,how've you been,original,greet,4 -reminder_update,i would like you to remind me to do something,original,resched,5 -yes,i'll tell you this is a true statement,parrot,book,1 -date,what day is that?,parrot,avail,0 -how_busy,are red lobster guys really busy around 11pm?,lambada,avail,0 -date,current date,original,avail,0 -meeting_schedule,are there meetings from one to five?,parrot,avail,0 -greeting,what's happened?,parrot,greet,4 -no,no!,original,cancel,3 -goodbye,i leave now,parrot,bye,2 -no,negatory,original,cancel,3 -how_busy,how busy is jiro at 12?,parrot,avail,0 -calendar,what's on my calendar for march 2nd?,parrot,avail,0 -greeting,hey,original,greet,4 -yes,yay,lambada,book,1 -thank_you,i owe you,parrot,bye,2 -how_busy,how long do you expect to wait for a table at the olive garden?,parrot,avail,0 -goodbye,signing off,original,bye,2 -thank_you,thank you for making my life easier,parrot,bye,2 -yes,so it's true,parrot,book,1 -yes,of course,original,book,1 -thank_you,appreciate the support,parrot,bye,2 -yes,absolutely correct,original,book,1 -goodbye,fairwell,original,bye,2 -yes,sure,original,book,1 -no,nope,original,cancel,3 -no,FALSE,original,cancel,3 -yes,correct,original,book,1 -yes,i know what i'm getting,parrot,book,1 -yes,it's logical,parrot,book,1 -goodbye,adios!,original,bye,2 -reminder_update,could you make me a reminder to do the floors,original,resched,5 -yes,i agree,original,book,1 -yes,"yes, please",parrot,book,1 -date,now what's it like now?,parrot,avail,0 -date,is today monday?,original,avail,0 -greeting,hey how's my day?,parrot,greet,4 -goodbye,later,original,bye,2 -goodbye,the talk was nice,lambada,bye,2 -goodbye,goodbye to yours,parrot,bye,2 -goodbye,you can talk later,parrot,bye,2 -greeting,hows it going,lambada,greet,4 -thank_you,thankyou,parrot,bye,2 -yes,all right,parrot,book,1 -reminder_update,remind me to exercise,original,resched,5 -goodbye,goodbye now,parrot,bye,2 -yes,"yes, please",parrot,book,1 -goodbye,later gator!,original,bye,2 -no,certainly false,parrot,cancel,3 -goodbye,say goodbye,parrot,bye,2 -yes,yes,original,book,1 -greeting,salutations!,original,greet,4 -yes,you're right,original,book,1 -yes,yep,original,book,1 -goodbye,goodbyes,parrot,bye,2 -thank_you,good job thanks,parrot,bye,2 -no,i'd say no,original,cancel,3 -goodbye,nice talk,lambada,bye,2 -no,that's actually false,parrot,cancel,3 -goodbye,you're done,parrot,bye,2 -greeting,how is idy?,parrot,greet,4 -greeting,what's happening,original,greet,4 -schedule_meeting,i need help with setting a meeting,parrot,book,1 -no,no?,parrot,cancel,3 -thank_you,you've given me that,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -greeting,want to know what's going on,parrot,greet,4 -how_busy,how busy is the traditional chinese restaurant right now?,parrot,avail,0 -yes,yay,lambada,book,1 -date,in 14 days?,parrot,avail,0 -reminder_update,let me know,parrot,resched,5 -greeting,hi what's up,original,greet,4 -no,it's false,parrot,cancel,3 -yes,great,original,book,1 -greeting,good evening,original,greet,4 -thank_you,thanks for that!,original,bye,2 -greeting,hello good day,parrot,greet,4 -date,today?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -reminder_update,a new reminder please,parrot,resched,5 -goodbye,tootles,original,bye,2 -how_busy,tell me the average wait time at olive garden right now?,parrot,avail,0 -greeting,salutations!,original,greet,4 -greeting,salutations!,original,greet,4 -no,not true,original,cancel,3 -no,that's actually a lie,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -calendar,i have something to do on 2nd march?,parrot,avail,0 -no,no,lambada,cancel,3 -date,please explain today,parrot,avail,0 -greeting,what's new?,parrot,greet,4 -no,that's a lie,parrot,cancel,3 -no,FALSE,original,cancel,3 -thank_you,glad you helped me,parrot,bye,2 -thank_you,my sincere thanks,parrot,bye,2 -yes,it's true for sure,parrot,book,1 -yes,agreed,original,book,1 -no,FALSE,original,cancel,3 -schedule_meeting,i need to set up a meeting with jane for 3pm,lambada,book,1 -no,that's certainly false,parrot,cancel,3 -greeting,hello,original,greet,4 -greeting,what's up,original,greet,4 -how_busy,is ihop busy around 5 o'clock?,parrot,avail,0 -yes,just right,parrot,book,1 -no,that's not always true,parrot,cancel,3 -no,no,lambada,cancel,3 -yes,confirmed,original,book,1 -how_busy,tell me how busy the olive garden will be at 6pm?,parrot,avail,0 -no,negatory?,parrot,cancel,3 -date,in seven days?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -greeting,aloha,original,greet,4 -greeting,well hello,original,greet,4 -meeting_schedule,when is my meeting with roger?,original,avail,0 -calendar,what's on my calendar for march 20th,original,avail,0 -calendar_update,add a doctor appointment to my calendar for friday,parrot,resched,5 -no,FALSE,original,cancel,3 -goodbye,later goodbye,parrot,bye,2 -reminder_update,remember to write later,parrot,resched,5 -thank_you,thanks for the response,lambada,bye,2 -greeting,nice day,lambada,greet,4 -yes,positive,original,book,1 -yes,good yes,lambada,book,1 -yes,"yes, please",parrot,book,1 -schedule_meeting,i need you to schedule a meeting with bob brown at noon the day after tomorrow,original,book,1 -date,what will the day be? '',parrot,avail,0 -how_busy,how long will it take to get buffalo wild wings?,parrot,avail,0 -yes,right,parrot,book,1 -schedule_meeting,need a meeting room on friday at 2pm,parrot,book,1 -greeting,how is my day,original,greet,4 -thank_you,thankyou,parrot,bye,2 -yes,perfect,parrot,book,1 -greeting,have you been good?,original,greet,4 -yes,yep,original,book,1 -no,erroneous,parrot,cancel,3 -date,a year?,parrot,avail,0 diff --git a/data/processed/val.csv b/data/processed/val.csv deleted file mode 100644 index ad1d7a0..0000000 --- a/data/processed/val.csv +++ /dev/null @@ -1,14646 +0,0 @@ -intent,user_utterance,origin,new_intent,label -yes,facts,original,book,1 -yes,yep,original,book,1 -yes,positive,original,book,1 -yes,perfect,parrot,book,1 -thank_you,i appreciate your time,lambada,bye,2 -greeting,welcome,parrot,greet,4 -greeting,what's happened?,parrot,greet,4 -schedule_meeting,can you schedule a meeting with jessica in the office please?,parrot,book,1 -how_busy,how long will the wait time at ihop be?,parrot,avail,0 -meeting_schedule,when is my invoicing meeting?,parrot,avail,0 -yes,10-Apr,original,book,1 -yes,agreed,original,book,1 -greeting,hiya,original,greet,4 -date,date tomorrow?,parrot,avail,0 -thank_you,good job,lambada,bye,2 -goodbye,great talk,lambada,bye,2 -no,invalid,original,cancel,3 -greeting,how's life?,parrot,greet,4 -no,"please, no",original,cancel,3 -greeting,"hello, hello, hello",lambada,greet,4 -goodbye,see you around,original,bye,2 -no,negatory,original,cancel,3 -no,there is no,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -how_busy,how long would i have to wait in the restaurant? '',parrot,avail,0 -no,naw,original,cancel,3 -greeting,hi,original,greet,4 -goodbye,good-bye,parrot,bye,2 -date,what date will it be 10 days from now?,lambada,avail,0 -no,no longer valid,parrot,cancel,3 -reminder_update,add a reminder,lambada,resched,5 -date,in eight days?,parrot,avail,0 -goodbye,adios!,original,bye,2 -yes,ya,original,book,1 -thank_you,thanks please,original,bye,2 -yes,i know,parrot,book,1 -no,FALSE,lambada,cancel,3 -no,that is false,original,cancel,3 -no,the information is not correct?,parrot,cancel,3 -greeting,good day,original,greet,4 -greeting,how are you treated?,parrot,greet,4 -yes,indeed,original,book,1 -goodbye,goodbye thank you,parrot,bye,2 -date,today?,parrot,avail,0 -no,nay,original,cancel,3 -meeting_schedule,share my meeting schedule with me,original,avail,0 -no,FALSE,lambada,cancel,3 -schedule_meeting,make a reservation for 730,parrot,book,1 -greeting,so what's up?,parrot,greet,4 -cancel_reservation,cancel my reservation for the dinner,parrot,cancel,3 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -date,in eight days?,parrot,avail,0 -greeting,what's happening?,parrot,greet,4 -goodbye,i will be talking about tomorrow,lambada,bye,2 -goodbye,adios!,original,bye,2 -date,what today?,parrot,avail,0 -date,if it's six days,parrot,avail,0 -goodbye,great talk,lambada,bye,2 -date,please date,parrot,avail,0 -no,it's actually false,parrot,cancel,3 -how_busy,how busy is joe's grill at 5:00 pm,lambada,avail,0 -yes,10-Apr,original,book,1 -yes,a fact,parrot,book,1 -goodbye,adios!,original,bye,2 -goodbye,ai goodbye,original,bye,2 -goodbye,later,original,bye,2 -yes,i'm sure this was done,parrot,book,1 -thank_you,you've been amazing,lambada,bye,2 -how_busy,what time is it to eat red lobster?,parrot,avail,0 -greeting,what is new?,parrot,greet,4 -cancel_reservation,i need to cancel my table at margaritas for friday,parrot,cancel,3 -no,that's a no,lambada,cancel,3 -how_busy,tell me the time it will take me to get a seat in the chinese restaurant?,parrot,avail,0 -yes,definitely yes,parrot,book,1 -goodbye,later then,lambada,bye,2 -date,is it monday?,parrot,avail,0 -yes,i know it's a true statement,parrot,book,1 -date,where is tomorrow's date,lambada,avail,0 -no,that's incorrect!,original,cancel,3 -date,calender says tomorrow is,original,avail,0 -yes,absolutely!,original,book,1 -greeting,hey fellows,parrot,greet,4 -no,nothing good,parrot,cancel,3 -thank_you,i appreciate it,original,bye,2 -greeting,"wake up, ai",original,greet,4 -goodbye,farewell,original,bye,2 -greeting,are you good?,original,greet,4 -reminder_update,remind me to give my cat flea medicine,parrot,resched,5 -yes,"yes, please",parrot,book,1 -no,please disagree,lambada,cancel,3 -greeting,you good?,parrot,greet,4 -goodbye,bye!,original,bye,2 -thank_you,thank you so very much,original,bye,2 -date,list the next month?,parrot,avail,0 -schedule_meeting,i'll need a meeting room on tuesday at 9 o'clock in the morning,parrot,book,1 -schedule_meeting,set up a meeting,parrot,book,1 -how_busy,how long do i have to wait for a table at chipotle,lambada,avail,0 -greeting,whats up?,parrot,greet,4 -no,but that's totally wrong,parrot,cancel,3 -greeting,good evening,original,greet,4 -yes,affirmitive,original,book,1 -thank_you,glad you did it,parrot,bye,2 -thank_you,the best,parrot,bye,2 -yes,say yes,lambada,book,1 -schedule_meeting,are any rooms available between 11 am and 12 pm?,lambada,book,1 -goodbye,adios!,original,bye,2 -goodbye,peace,original,bye,2 -goodbye,my way,parrot,bye,2 -greeting,bonjour,original,greet,4 -thank_you,appreciated,original,bye,2 -yes,absolutely!,original,book,1 -yes,that would be correct,original,book,1 -no,please disagree,lambada,cancel,3 -calendar_update,delete the party i had with sir april 14 from my calendar,parrot,resched,5 -goodbye,farewell,original,bye,2 -no,that's incorrect!,original,cancel,3 -thank_you,thanks for my response,original,bye,2 -thank_you,appreciate the help,original,bye,2 -yes,definitely,original,book,1 -cancel_reservation,cancellation of dinner reservation,parrot,cancel,3 -no,negation,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -yes,ok,original,book,1 -reminder_update,i need to remember,parrot,resched,5 -goodbye,see ya,lambada,bye,2 -yes,perfect,parrot,book,1 -yes,confirm,original,book,1 -yes,correct,original,book,1 -yes,i just said that,parrot,book,1 -greeting,yo,original,greet,4 -no,that's a wrong answer,parrot,cancel,3 -date,a year?,parrot,avail,0 -no,invalid,original,cancel,3 -yes,i want it,parrot,book,1 -reminder_update,please remind me later,original,resched,5 -greeting,salutation,parrot,greet,4 -goodbye,bye,original,bye,2 -yes,i think that's correct,parrot,book,1 -how_busy,how long can i expect olive garden to be busy at dinner,lambada,avail,0 -date,what day are we?,parrot,avail,0 -date,date tomorrow?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -no,not right?,parrot,cancel,3 -thank_you,thank you ai,parrot,bye,2 -goodbye,i like our conversation,parrot,bye,2 -yes,ya,original,book,1 -no,it's very wrong,parrot,cancel,3 -date,what's the current day?,parrot,avail,0 -date,what date tomorrow?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -yes,"agreed, that's valid",original,book,1 -yes,certainly true,parrot,book,1 -no,that's very wrong,parrot,cancel,3 -goodbye,great chat goodbye,lambada,bye,2 -no,the information is incorrect,parrot,cancel,3 -calendar_update,you can remove the wedding from my calendar for march 12 2019 ,parrot,resched,5 -how_busy,what is the wait time at red robins?,lambada,avail,0 -goodbye,"later, goodbye",lambada,bye,2 -schedule_meeting,i need to schedule a meeting with john at 8pm,lambada,book,1 -yes,facts,original,book,1 -greeting,yo,original,greet,4 -goodbye,send a goodbye,lambada,bye,2 -yes,indeed,original,book,1 -yes,all right,original,book,1 -no,negative,original,cancel,3 -how_busy,can i expect the chilis to be crowded before 5?,parrot,avail,0 -no,it's my false statement,parrot,cancel,3 -greeting,hello,original,greet,4 -how_busy,tell me the average wait time at johnny's?,parrot,avail,0 -reminder_update,i need a reminder to do something,parrot,resched,5 -no,that's a false statement,lambada,cancel,3 -yes,good,parrot,book,1 -calendar,know what's on my calendar for march 2nd?,parrot,avail,0 -thank_you,thanks i appreciate it,parrot,bye,2 -schedule_meeting,i want to schedule a meeting with daniel,lambada,book,1 -goodbye,goodnight,original,bye,2 -how_busy,how long will the wait be on black friday?,parrot,avail,0 -yes,accept,parrot,book,1 -greeting,hey it's up,lambada,greet,4 -thank_you,thank you again,parrot,bye,2 -yes,right,parrot,book,1 -yes,perfect,parrot,book,1 -yes,perfect,parrot,book,1 -yes,affirmitive,original,book,1 -no,i don't agree,parrot,cancel,3 -no,i would prefer not,original,cancel,3 -goodbye,i'll go,parrot,bye,2 -date,what is the date tomorrow?,original,avail,0 -thank_you,gracias,original,bye,2 -how_busy,is this restaurant open at night?,parrot,avail,0 -greeting,hi how're things going,lambada,greet,4 -yes,very true,original,book,1 -no,nothing,parrot,cancel,3 -goodbye,later,original,bye,2 -no,that would be no,lambada,cancel,3 -greeting,salutation,parrot,greet,4 -date,what's it like now?,parrot,avail,0 -greeting,"howdy, what's new",original,greet,4 -cancel_reservation,can you cancel my reservation at the red robin for steve?,parrot,cancel,3 -yes,i can confirm,parrot,book,1 -date,i need to know tomorrow,parrot,avail,0 -yes,is true,parrot,book,1 -cancel_reservation,can i cancel my reservation?,lambada,cancel,3 -meeting_schedule,meeting today,parrot,avail,0 -greeting,what's new,lambada,greet,4 -goodbye,bye!,original,bye,2 -no,i'm not going to say yes,parrot,cancel,3 -how_busy,how busy will the olive garden be around 12 noon,parrot,avail,0 -calendar_update,write down appointment for tomorrow on my calendar,original,resched,5 -thank_you,you give me a lot of gratitude,parrot,bye,2 -goodbye,later thanks for talking,parrot,bye,2 -meeting_schedule,tell me when my meeting is scheduled with roger?,original,avail,0 -how_busy,how busy will it get at 6 pm,lambada,avail,0 -no,i do not agree,lambada,cancel,3 -no,naw,original,cancel,3 -goodbye,im leaving,parrot,bye,2 -yes,"yes, please",original,book,1 -greeting,heyo,original,greet,4 -thank_you,thank you kindly,original,bye,2 -reminder_update,"new reminder, please",original,resched,5 -yes,that is right,original,book,1 -no,it's the wrong answer,parrot,cancel,3 -calendar_update,please remove this anniversary from my calendar,parrot,resched,5 -goodbye,take it easy!,original,bye,2 -greeting,whats up?,parrot,greet,4 -yes,TRUE,lambada,book,1 -date,tell me what the date is 9 days from now?,lambada,avail,0 -goodbye,goodnight,original,bye,2 -date,date tomorrow?,parrot,avail,0 -yes,absolutely,original,book,1 -yes,yes please,original,book,1 -greeting,hi how's my life?,parrot,greet,4 -yes,that's correct,original,book,1 -greeting,hi ai,original,greet,4 -goodbye,see ya,lambada,bye,2 -thank_you,thanks for cooperating,parrot,bye,2 -how_busy,how long will it take to get a burger at this restaurant,lambada,avail,0 -goodbye,great talk,lambada,bye,2 -greeting,"hello, how's my day",original,greet,4 -greeting,how's life treating you?,parrot,greet,4 -no,FALSE,original,cancel,3 -date,a year?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -calendar,show me the current activities in my calendar?,parrot,avail,0 -date,is tomorrow's date?,parrot,avail,0 -no,naw,original,cancel,3 -goodbye,regards,original,bye,2 -goodbye,bye,original,bye,2 -goodbye,buhbye,original,bye,2 -goodbye,i leave now,parrot,bye,2 -thank_you,thanks!,original,bye,2 -meeting_schedule,do i have meetings between 3 and 5 pm today?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -no,nothing,parrot,cancel,3 -greeting,good morning,parrot,greet,4 -greeting,aloha,original,greet,4 -how_busy,tell me the time for a chipotle table?,parrot,avail,0 -date,what's today,original,avail,0 -goodbye,farewell,original,bye,2 -yes,definitely,original,book,1 -no,invalid,original,cancel,3 -goodbye,i'm leaving,parrot,bye,2 -greeting,wassup,original,greet,4 -yes,confirm,original,book,1 -no,negatory,original,cancel,3 -greeting,hey,original,greet,4 -goodbye,say goodbye,parrot,bye,2 -date,today?,parrot,avail,0 -calendar,show me what my calendar looks like for april 13?,parrot,avail,0 -thank_you,thanks again,original,bye,2 -greeting,heller,original,greet,4 -greeting,heyo,original,greet,4 -goodbye,as regards,parrot,bye,2 -goodbye,tootles,original,bye,2 -no,that's no,parrot,cancel,3 -no,"no, definitely not",original,cancel,3 -no,nope that's not it,original,cancel,3 -goodbye,peace,original,bye,2 -thank_you,again thanks,parrot,bye,2 -goodbye,farewell to you,lambada,bye,2 -no,don't agree,parrot,cancel,3 -no,not good,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -how_busy,how long the restaurant will be after noon?,parrot,avail,0 -greeting,heller,original,greet,4 -how_busy,list the wait times at the red lobster?,parrot,avail,0 -how_busy,how long will it take to be seated at chipotle steakhouse,lambada,avail,0 -goodbye,i'm going,parrot,bye,2 -greeting,how are you,original,greet,4 -thank_you,you're welcome,parrot,bye,2 -no,nada,original,cancel,3 -thank_you,you've helped,parrot,bye,2 -goodbye,say goodbye,parrot,bye,2 -date,what's the day now?,parrot,avail,0 -meeting_schedule,please tell me what you plan for today,parrot,avail,0 -date,what date this month?,parrot,avail,0 -yes,huh huh,parrot,book,1 -greeting,how goes it,original,greet,4 -greeting,heyo,original,greet,4 -how_busy,there's a cheesecake factory,parrot,avail,0 -no,nothing,parrot,cancel,3 -date,please date,parrot,avail,0 -thank_you,thanks for helping me!,original,bye,2 -how_busy,is this restaurant crowded at dinner time?,parrot,avail,0 -thank_you,i'm happy you've helped me,parrot,bye,2 -how_busy,how busy will the ti-noodle be around 6pm?,parrot,avail,0 -no,invalid,original,cancel,3 -how_busy,is the wait at maceos regular?,parrot,avail,0 -thank_you,merci beaucoup,original,bye,2 -no,no?,parrot,cancel,3 -greeting,ahoy,lambada,greet,4 -yes,ok,original,book,1 -yes,oh-huh,parrot,book,1 -greeting,aloha,original,greet,4 -yes,that's true,original,book,1 -thank_you,you answered,parrot,bye,2 -greeting,how you are?,parrot,greet,4 -date,what year is it?,original,avail,0 -cancel_reservation,can i cancel my reservation for franklin at red robin?,parrot,cancel,3 -greeting,hey,original,greet,4 -yes,is true,parrot,book,1 -how_busy,how long will i have to wait to be seated at the red lobster,parrot,avail,0 -reminder_update,remind me of the steak,parrot,resched,5 -yes,obviously,parrot,book,1 -yes,yes that's right,lambada,book,1 -how_busy,i want to know how busy the chili's are between 5 and 9,parrot,avail,0 -yes,right,parrot,book,1 -schedule_meeting,a meeting is needed,parrot,book,1 -yes,right,parrot,book,1 -date,what day?,parrot,avail,0 -yes,certainly,parrot,book,1 -goodbye,later goodbye,parrot,bye,2 -no,that's a wrong answer?,parrot,cancel,3 -greeting,ahoy hoy,original,greet,4 -no,i say negative,original,cancel,3 -schedule_meeting,show me the best way to schedule a meeting?,parrot,book,1 -greeting,ahoy,lambada,greet,4 -thank_you,thanks!,original,bye,2 -date,what date?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -thank_you,i'm grateful,original,bye,2 -yes,that is true,lambada,book,1 -yes,TRUE,lambada,book,1 -how_busy,how long is the wait for a table at red robin,lambada,avail,0 -no,thanks no,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,it is a yes from me,parrot,book,1 -cancel_reservation,there's no need to confirm my reservation,parrot,cancel,3 -how_busy,how many people attend the restaurant at 8 pm?,parrot,avail,0 -reminder_update,i need a reminder to alert me to wish my mom a happy birthday,original,resched,5 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -date,in five days?,parrot,avail,0 -date,what's my date today?,parrot,avail,0 -thank_you,i owe you,parrot,bye,2 -no,what is not true?,parrot,cancel,3 -yes,accept,parrot,book,1 -no,negative sure,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -yes,correct,original,book,1 -no,don't like that,parrot,cancel,3 -yes,a fact,parrot,book,1 -thank_you,okay thanks,original,bye,2 -yes,facts,original,book,1 -yes,10-Apr,original,book,1 -date,what day?,parrot,avail,0 -reminder_update,set a reminder,original,resched,5 -no,FALSE,lambada,cancel,3 -goodbye,until next time,original,bye,2 -date,what's the year?,parrot,avail,0 -no,FALSE,original,cancel,3 -yes,say yes,lambada,book,1 -how_busy,how long will i have to wait to get a table in olive garden?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -greeting,how goes it,original,greet,4 -yes,indeed,original,book,1 -no,negatory?,parrot,cancel,3 -yes,confirmed,original,book,1 -goodbye,adios,original,bye,2 -goodbye,goodbye ai,parrot,bye,2 -no,negation,parrot,cancel,3 -goodbye,good bye,original,bye,2 -no,it would be wrong,parrot,cancel,3 -thank_you,very grateful,parrot,bye,2 -no,but certainly not,parrot,cancel,3 -no,no that's wrong,original,cancel,3 -greeting,"hello, hello, hello",lambada,greet,4 -schedule_meeting,are there any meeting rooms available at 8 am?,lambada,book,1 -calendar,what's my schedule for march 2?,parrot,avail,0 -reminder_update,i have to take out the trash please remind me,parrot,resched,5 -goodbye,nice conversation today,parrot,bye,2 -no,that is incorrect,original,cancel,3 -yes,ok,original,book,1 -greeting,how's my day been?,parrot,greet,4 -how_busy,how busy is the red lobster around 6?,parrot,avail,0 -thank_you,you've helped,parrot,bye,2 -thank_you,again thanks,parrot,bye,2 -no,absolutely not,original,cancel,3 -goodbye,later!,original,bye,2 -greeting,hows it going,lambada,greet,4 -yes,not false,parrot,book,1 -greeting,ahoy there,lambada,greet,4 -meeting_schedule,when is my meeting with mike?,parrot,avail,0 -yes,TRUE,original,book,1 -goodbye,i like our chat,parrot,bye,2 -calendar_update,you can delete sam's birthday from my calendar on march 14th,lambada,resched,5 -no,negative,original,cancel,3 -no,"no, definitely not",original,cancel,3 -thank_you,this answer was very helpful,parrot,bye,2 -calendar_update,you can remove the dinner party from my calendar for january 21 2019,parrot,resched,5 -yes,correct,lambada,book,1 -yes,i vote yes,original,book,1 -date,a year?,parrot,avail,0 -goodbye,great conversation,parrot,bye,2 -thank_you,you did it for me,parrot,bye,2 -yes,ya,original,book,1 -goodbye,i’m leaving-goodbye!,original,bye,2 -goodbye,goodbye,original,bye,2 -thank_you,thanks,original,bye,2 -greeting,ahoy,lambada,greet,4 -goodbye,fairwell,original,bye,2 -greeting,hello,original,greet,4 -thank_you,thanks!,original,bye,2 -yes,yeah yeah,lambada,book,1 -goodbye,goodbye!,original,bye,2 -yes,positive,parrot,book,1 -goodbye,goodnight,original,bye,2 -yes,that's true,original,book,1 -yes,i think that's correct,parrot,book,1 -thank_you,you've been great,parrot,bye,2 -yes,say yes,lambada,book,1 -goodbye,bye-bye,original,bye,2 -goodbye,signing off,original,bye,2 -goodbye,a good conversation,parrot,bye,2 -meeting_schedule,tell me the time of my meeting?,parrot,avail,0 -yes,confirmed,original,book,1 -yes,right,parrot,book,1 -calendar_update,take my dinner plans for tomorrow off of my calendar,lambada,resched,5 -yes,yay,lambada,book,1 -yes,good yes,lambada,book,1 -thank_you,thanks for the payment,parrot,bye,2 -no,ill pass,original,cancel,3 -how_busy,if i wait in line at carl jr's,parrot,avail,0 -greeting,how's my life?,parrot,greet,4 -greeting,salutations,parrot,greet,4 -no,nada,original,cancel,3 -greeting,how you're treated,parrot,greet,4 -no,that's a no,lambada,cancel,3 -no,thanks no,parrot,cancel,3 -no,i disagree with this,parrot,cancel,3 -reminder_update,please remember me,parrot,resched,5 -yes,"yes, that's right",original,book,1 -calendar_update,remove the baby shower event from my calendar on 11 may,parrot,resched,5 -goodbye,later thanks for the chat,parrot,bye,2 -goodbye,it was enjoyable to chat with you,original,bye,2 -goodbye,greetings,parrot,bye,2 -yes,accepted,original,book,1 -no,negatory?,parrot,cancel,3 -calendar_update,go ahead and remove the scheduled event in the calendar,parrot,resched,5 -how_busy,what is the crowd at red lobster around 830?,parrot,avail,0 -yes,yeap,original,book,1 -no,that information is false,lambada,cancel,3 -yes,yes that's correct,original,book,1 -thank_you,"nice, excellent!",original,bye,2 -greeting,so how's it going?,parrot,greet,4 -no,that's a negation,parrot,cancel,3 -how_busy,how long will i be wait at red lobster,lambada,avail,0 -thank_you,you're welcome,parrot,bye,2 -thank_you,again thanks,parrot,bye,2 -how_busy,is applebee busy around 1130?,parrot,avail,0 -no,please disagree,lambada,cancel,3 -greeting,aho,parrot,greet,4 -schedule_meeting,how can you schedule a meeting,lambada,book,1 -date,today?,parrot,avail,0 -yes,accepted,original,book,1 -yes,okay,original,book,1 -thank_you,you've helped,parrot,bye,2 -how_busy,can you tell me how busy the olive garden is at 7 pm,parrot,avail,0 -goodbye,talk later,original,bye,2 -yes,ya,original,book,1 -greeting,heller,original,greet,4 -goodbye,adios,original,bye,2 -meeting_schedule,can you tell me what time i meet sarah today?,parrot,avail,0 -greeting,good evening,original,greet,4 -goodbye,goodbye,original,bye,2 -no,it seems wrong,parrot,cancel,3 -yes,accept,parrot,book,1 -goodbye,later then,lambada,bye,2 -thank_you,for the help i'm grateful,parrot,bye,2 -date,what's the day now??,parrot,avail,0 -thank_you,i thank you,original,bye,2 -thank_you,i'm happy you've helped me,parrot,bye,2 -meeting_schedule,what are my meetings today?,parrot,avail,0 -reminder_update,remind me to write the food down,parrot,resched,5 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,great talk thanks for coming,parrot,bye,2 -greeting,what's new here?,parrot,greet,4 -yes,obviously,parrot,book,1 -greeting,how's idy?,parrot,greet,4 -goodbye,bye,original,bye,2 -calendar,please tell me what's on my calendar for march 21?,parrot,avail,0 -yes,yes,original,book,1 -date,would you like to know the date of tomorrow?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -goodbye,i'm going,parrot,bye,2 -reminder_update,make a reminder,parrot,resched,5 -yes,it is true,original,book,1 -no,that is wrong,original,cancel,3 -date,what's today?,parrot,avail,0 -calendar_update,i have an appointment for tomorrow on my calendar,parrot,resched,5 -goodbye,greetings,parrot,bye,2 -yes,ya,original,book,1 -no,no?,parrot,cancel,3 -thank_you,i'm grateful,original,bye,2 -how_busy,how long is the wait for a reservation at the pizza shop?,parrot,avail,0 -greeting,salutations!,original,greet,4 -no,is not true?,parrot,cancel,3 -goodbye,bye-bye,original,bye,2 -goodbye,"goodbye, ai assistant",original,bye,2 -yes,accept,parrot,book,1 -schedule_meeting,can you arrange a meeting for 3 00 on wednesday?,parrot,book,1 -date,what's today?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -greeting,wassup,original,greet,4 -no,no,lambada,cancel,3 -goodbye,later then,lambada,bye,2 -date,what's the date,original,avail,0 -goodbye,will leave now,parrot,bye,2 -goodbye,regards,original,bye,2 -yes,accepted,original,book,1 -no,that's not right?,parrot,cancel,3 -yes,affirmative,original,book,1 -thank_you,really great!,original,bye,2 -greeting,hiya,original,greet,4 -calendar_update,how can i get rid of this event?,parrot,resched,5 -greeting,aloha,original,greet,4 -greeting,"hello, friend",original,greet,4 -greeting,hiya!,original,greet,4 -no,so that's no,parrot,cancel,3 -how_busy,when is the restaurant the busiest?,parrot,avail,0 -how_busy,what time can i expect to be in this restaurant?,parrot,avail,0 -no,that's negative,parrot,cancel,3 -greeting,hey yai,lambada,greet,4 -greeting,salutation,parrot,greet,4 -yes,so it's true,parrot,book,1 -thank_you,well done,parrot,bye,2 -yes,that's true,original,book,1 -goodbye,"thanks, bye",original,bye,2 -yes,yeap,original,book,1 -yes,sure,original,book,1 -yes,yes,original,book,1 -goodbye,sayonara,original,bye,2 -greeting,bonjour,original,greet,4 -thank_you,again thanks,parrot,bye,2 -how_busy,how busy is the macaroni grill?,parrot,avail,0 -greeting,how's life?,parrot,greet,4 -goodbye,thank you for talking,parrot,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -how_busy,how long will it take to sit on the macaroni grill?,parrot,avail,0 -thank_you,thanks for the response,lambada,bye,2 -goodbye,have fun?,lambada,bye,2 -greeting,how's everything?,parrot,greet,4 -no,negation,parrot,cancel,3 -goodbye,goodbye to your,lambada,bye,2 -greeting,how's the life?,parrot,greet,4 -greeting,how's it going?,parrot,greet,4 -goodbye,farewell,original,bye,2 -thank_you,thanks,original,bye,2 -goodbye,later then,lambada,bye,2 -reminder_update,set up a reminder to pay my cell phone bill on the 30th,lambada,resched,5 -yes,approved,original,book,1 -date,he's got the date,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -goodbye,the evening was good and i'm ready to go,parrot,bye,2 -how_busy,tell me if chili's around 8 am?,parrot,avail,0 -schedule_meeting,set up a meeting,parrot,book,1 -yes,roger that,original,book,1 -how_busy,how long will it take to get a table in chili's?,parrot,avail,0 -yes,"yes, that is true",original,book,1 -date,what's my day today?,parrot,avail,0 -goodbye,later!,original,bye,2 -yes,"that is true, yes",original,book,1 -goodbye,good-bye,parrot,bye,2 -yes,that would be correct,original,book,1 -reminder_update,can you set a reminder for the current time in tommorow?,parrot,resched,5 -thank_you,appreciate it,original,bye,2 -thank_you,i appreciate your assistance,parrot,bye,2 -how_busy,can you tell me how busy the red robin's is at 6pm?,parrot,avail,0 -greeting,how's the situation?,parrot,greet,4 -goodbye,i'm leaving,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -meeting_schedule,can you tell me about our meeting?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -goodbye,i had a nice chat,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -goodbye,my way,parrot,bye,2 -thank_you,you've been great,parrot,bye,2 -yes,my answer is yes,parrot,book,1 -thank_you,the best,parrot,bye,2 -no,yes that's false,lambada,cancel,3 -meeting_schedule,when i'll meet roger?,parrot,avail,0 -greeting,"hi, how's it going",lambada,greet,4 -no,i wouldn't like that,parrot,cancel,3 -thank_you,thanks a lot,original,bye,2 -yes,good,parrot,book,1 -date,current date,original,avail,0 -yes,indeed,original,book,1 -no,nada,original,cancel,3 -thank_you,thank you please,parrot,bye,2 -date,what date is that?,parrot,avail,0 -goodbye,tata for now,original,bye,2 -goodbye,sayonara,original,bye,2 -no,not correct,parrot,cancel,3 -no,is my false statement?,parrot,cancel,3 -thank_you,i'm so grateful,parrot,bye,2 -schedule_meeting,can you book me a meeting?,parrot,book,1 -cancel_reservation,are we supposed to cancel our reservations at our table?,parrot,cancel,3 -greeting,how's it going,lambada,greet,4 -no,no,lambada,cancel,3 -goodbye,goodnight,original,bye,2 -goodbye,afterward,parrot,bye,2 -calendar,is the marathon added to my calendar?,parrot,avail,0 -greeting,aloha,original,greet,4 -schedule_meeting,need a meeting room,parrot,book,1 -goodbye,good conversation,parrot,bye,2 -cancel_reservation,please cancel my reservation for tonight's dinner,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -how_busy,is mcdonalds busy?,parrot,avail,0 -greeting,hola!,original,greet,4 -no,no?,parrot,cancel,3 -greeting,hello bs,parrot,greet,4 -thank_you,i'm grateful,original,bye,2 -calendar_update,remove all events from my calendar on 12 march,parrot,resched,5 -greeting,"hello, ai",original,greet,4 -calendar,can you see my calendar for march 31?,parrot,avail,0 -calendar,what's tuesday's calendar?,parrot,avail,0 -no,yes that's false,lambada,cancel,3 -yes,a real statement,parrot,book,1 -thank_you,gracias,original,bye,2 -greeting,salutations,parrot,greet,4 -yes,it's positive,parrot,book,1 -how_busy,tell me the time it will take to get seated at red lobster,parrot,avail,0 -how_busy,how long would it take to sit down at applebees,parrot,avail,0 -calendar,if there are march schedules for me let me know,parrot,avail,0 -no,that's the wrong answer,parrot,cancel,3 -greeting,hey how's it going?,parrot,greet,4 -no,so that's no,parrot,cancel,3 -no,naw,original,cancel,3 -greeting,salutations,parrot,greet,4 -no,it would be a false entry,parrot,cancel,3 -greeting,how is everything with you,original,greet,4 -greeting,salutations,parrot,greet,4 -yes,10-Apr,original,book,1 -greeting,how's life,original,greet,4 -yes,i say yes,lambada,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -date,what today?,parrot,avail,0 -thank_you,thanks again,original,bye,2 -calendar_update,remove moms birthday from calendar,original,resched,5 -how_busy,chili's busy around 730?,parrot,avail,0 -thank_you,thank you again,parrot,bye,2 -thank_you,you were a big help thank you so much,parrot,bye,2 -greeting,hi how's everything?,parrot,greet,4 -goodbye,sign off,parrot,bye,2 -yes,sure,original,book,1 -how_busy,how much of a wait will i have to wait before i make a reservation at the olive garden,lambada,avail,0 -yes,positive,original,book,1 -yes,oh yes,original,book,1 -goodbye,go easy,parrot,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -no,it's not necessarily true,parrot,cancel,3 -no,this is false,parrot,cancel,3 -thank_you,you answered,parrot,bye,2 -yes,that's right,original,book,1 -how_busy,is it busy in the cheese cake factory around 6?,parrot,avail,0 -goodbye,tootles,original,bye,2 -yes,TRUE,original,book,1 -no,i don't think that's correct,lambada,cancel,3 -thank_you,thanks for my time,parrot,bye,2 -yes,yeap,original,book,1 -goodbye,"bye-bye, my friend",lambada,bye,2 -no,nope,original,cancel,3 -calendar,do you know what my calendar looks like on march 2?,parrot,avail,0 -date,what's the year?,parrot,avail,0 -date,is today monday?,original,avail,0 -goodbye,good conversation,parrot,bye,2 -yes,yes you are,original,book,1 -greeting,what's happened?,parrot,greet,4 -greeting,ahoy there,lambada,greet,4 -greeting,bonjour,original,greet,4 -yes,that's correct,original,book,1 -yes,that is right,original,book,1 -goodbye,i'm leaving,parrot,bye,2 -date,today's date is exactly what?,parrot,avail,0 -goodbye,later!,original,bye,2 -greeting,ahoy,lambada,greet,4 -no,thanks no,parrot,cancel,3 -yes,confirmed,original,book,1 -yes,exactly right,original,book,1 -how_busy,how long will it be for a table at flannigans?,parrot,avail,0 -greeting,yo,original,greet,4 -greeting,salutations,parrot,greet,4 -no,it's so bad,parrot,cancel,3 -thank_you,thanks please,original,bye,2 -date,what date is tomorrow,parrot,avail,0 -thank_you,"nice, excellent!",original,bye,2 -reminder_update,please check the steak,parrot,resched,5 -yes,facts,original,book,1 -thank_you,appreciate the help,original,bye,2 -greeting,how ya been,original,greet,4 -goodbye,peace,original,bye,2 -reminder_update,remind me to change oil,parrot,resched,5 -thank_you,thank you for my reply,parrot,bye,2 -yes,all right,parrot,book,1 -greeting,nice day,lambada,greet,4 -how_busy,how long before dinner,parrot,avail,0 -yes,yeah,original,book,1 -yes,yes,original,book,1 -yes,indeed,original,book,1 -thank_you,i appreciate it,original,bye,2 -how_busy,how busy is shokudo at 12,original,avail,0 -yes,positive,original,book,1 -date,please date,parrot,avail,0 -goodbye,for now,parrot,bye,2 -date,current date,original,avail,0 -greeting,are you okay??,parrot,greet,4 -yes,absolutely correct,original,book,1 -meeting_schedule,wanna meet roger?,parrot,avail,0 -greeting,hello what is happening,lambada,greet,4 -yes,"yes, that's right",original,book,1 -thank_you,i appreciate your assistance,parrot,bye,2 -greeting,hey how's ot,lambada,greet,4 -date,tell me the date it will be in 4 days?,lambada,avail,0 -yes,"yes, that's true",lambada,book,1 -goodbye,later!,original,bye,2 -schedule_meeting,i need you to set up a meeting with tom at 5pm,lambada,book,1 -thank_you,for that thank you,parrot,bye,2 -how_busy,will the restaurant fill up?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -how_busy,how much traffic do they have at dinner time?,parrot,avail,0 -how_busy,are french bakers busy around 11 pm?,lambada,avail,0 -date,which date is it?,parrot,avail,0 -greeting,tell me how it's doing?,parrot,greet,4 -date,please share today's date,original,avail,0 -date,which date today?,parrot,avail,0 -no,negating,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -date,where's tomorrow's date,parrot,avail,0 -yes,"yes, you got it",original,book,1 -greeting,"hello there, good morning",original,greet,4 -no,that's a negation,parrot,cancel,3 -no,that’s not correct,original,cancel,3 -no,no that's not correct,parrot,cancel,3 -how_busy,is ihop busy?,parrot,avail,0 -goodbye,i'm gone,parrot,bye,2 -greeting,hey,original,greet,4 -how_busy,is she busy at 5pm?,parrot,avail,0 -no,no that's not correct,parrot,cancel,3 -how_busy,how long will it take to be seated at the red lobster,lambada,avail,0 -no,FALSE,lambada,cancel,3 -greeting,hey there,original,greet,4 -greeting,well hi there,original,greet,4 -yes,oh-huh,parrot,book,1 -yes,ok,original,book,1 -goodbye,see you again soon,original,bye,2 -goodbye,bye,original,bye,2 -no,naw,parrot,cancel,3 -date,what date?,parrot,avail,0 -reminder_update,what's a reminder,parrot,resched,5 -how_busy,how long would i have to wait for a table at red lobster,lambada,avail,0 -no,that is overwhelmingly wrong,lambada,cancel,3 -reminder_update,create a reminder for me to drink water at work,parrot,resched,5 -goodbye,fairwell,original,bye,2 -greeting,how're you?,parrot,greet,4 -goodbye,as regards,parrot,bye,2 -greeting,"hey, what's up",original,greet,4 -yes,"yup, that is true",lambada,book,1 -greeting,how's life going?,parrot,greet,4 -thank_you,good answer thanks for the information,parrot,bye,2 -how_busy,how busy is this restaurant?,parrot,avail,0 -yes,ya,original,book,1 -thank_you,thankyou,parrot,bye,2 -greeting,hello bs,parrot,greet,4 -greeting,tell me how are you today?,parrot,greet,4 -no,it's a negative,parrot,cancel,3 -no,certainly not true,parrot,cancel,3 -greeting,yo,original,greet,4 -yes,yes it's true,lambada,book,1 -no,that is untrue,original,cancel,3 -goodbye,later,original,bye,2 -thank_you,you've tried,parrot,bye,2 -no,nada,original,cancel,3 -greeting,aho,parrot,greet,4 -thank_you,your answer was good,original,bye,2 -cancel_reservation,karla doesn't want the olive garden reservation anymore,parrot,cancel,3 -yes,this is true,lambada,book,1 -thank_you,thanks again!,original,bye,2 -goodbye,peace,original,bye,2 -yes,just right,parrot,book,1 -reminder_update,add a note,parrot,resched,5 -no,not correct,parrot,cancel,3 -thank_you,merci beaucoup,original,bye,2 -goodbye,goodnight,original,bye,2 -meeting_schedule,list the meetings today?,parrot,avail,0 -yes,you are correct,original,book,1 -goodbye,great chat goodbye,lambada,bye,2 -yes,"yes, you got it",original,book,1 -goodbye,adios!,original,bye,2 -no,FALSE,lambada,cancel,3 -yes,i know,parrot,book,1 -yes,agreed,original,book,1 -yes,"affirmative, go ahead",original,book,1 -greeting,how's idy doing,lambada,greet,4 -no,erroneous,parrot,cancel,3 -goodbye,peace,original,bye,2 -greeting,heller,original,greet,4 -greeting,hi how's everything?,parrot,greet,4 -calendar,you are supposed to have a meeting on tuesday,parrot,avail,0 -calendar,did i put an event on the calendar for an annual physical?,parrot,avail,0 -yes,confirm,original,book,1 -greeting,salutation,parrot,greet,4 -goodbye,adios ai,original,bye,2 -greeting,how's my family going?,parrot,greet,4 -yes,yes,original,book,1 -how_busy,wait for a long wait at the chocolate fountain around 11 o'clock?,parrot,avail,0 -no,negative definitely,parrot,cancel,3 -yes,"yes, that is it",original,book,1 -goodbye,good-bye,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -schedule_meeting,a meeting has to be scheduled and i need to know how to do it,parrot,book,1 -goodbye,sign off,parrot,bye,2 -reminder_update,remind me to prepare for my meeting at 5pm,parrot,resched,5 -greeting,aloha,original,greet,4 -calendar_update,erase birthday party on friday from my calendar,lambada,resched,5 -how_busy,how busy is the restaurant at lunchtime,parrot,avail,0 -how_busy,how busy will golden gate be at five,parrot,avail,0 -cancel_reservation,please cancel the reservation at zephers for joe and myself right now,original,cancel,3 -schedule_meeting,please schedule a meeting?,parrot,book,1 -how_busy,will the restaurant fill up?,parrot,avail,0 -greeting,"hello, ai",original,greet,4 -yes,"yeah, that's it",lambada,book,1 -how_busy,how busy is mishawaka?,parrot,avail,0 -goodbye,good luck,lambada,bye,2 -no,not right so,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -cancel_reservation,i won't need the reservation,parrot,cancel,3 -greeting,hiya!,original,greet,4 -no,i believe it's false,parrot,cancel,3 -greeting,hi there,original,greet,4 -greeting,how goes it,original,greet,4 -greeting,hey fellows,parrot,greet,4 -yes,TRUE,lambada,book,1 -no,no it's a no,parrot,cancel,3 -no,no no no,parrot,cancel,3 -goodbye,adios,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,approved,original,book,1 -greeting,how you're doing?,parrot,greet,4 -yes,huh,parrot,book,1 -greeting,hello,original,greet,4 -greeting,bonjour,original,greet,4 -yes,TRUE,original,book,1 -goodbye,until the next time,parrot,bye,2 -how_busy,can you tell me how crowded red lobster is at noon?,lambada,avail,0 -thank_you,thanks for the response,lambada,bye,2 -no,this is so negative,parrot,cancel,3 -greeting,well hello,original,greet,4 -yes,it's true,original,book,1 -no,certainly false,parrot,cancel,3 -reminder_update,remember to write a letter,parrot,resched,5 -no,no!,original,cancel,3 -goodbye,have fun?,lambada,bye,2 -how_busy,if i want to go to tom's fries how long will i have to wait,parrot,avail,0 -reminder_update,what about a reminder?,parrot,resched,5 -goodbye,have a good day?,original,bye,2 -yes,yes please,original,book,1 -thank_you,you were so nice,parrot,bye,2 -meeting_schedule,and if i have meetings with michael,parrot,avail,0 -yes,certainly true,parrot,book,1 -no,yes that's false,lambada,cancel,3 -calendar_update,can you put this on my calendar for tomorrow?,parrot,resched,5 -thank_you,thanks!,original,bye,2 -how_busy,how busy is jiro at lunchtime?,parrot,avail,0 -no,negating,parrot,cancel,3 -date,what's my day?,parrot,avail,0 -greeting,how's life,original,greet,4 -yes,uh huh,original,book,1 -date,what's the present day?,parrot,avail,0 -how_busy,how busy will beefy be at 9 am?,parrot,avail,0 -yes,approved,original,book,1 -goodbye,have to run,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -greeting,how's my life today?,parrot,greet,4 -yes,yep,original,book,1 -no,so that's no,parrot,cancel,3 -no,nope,original,cancel,3 -greeting,hi how're things going,lambada,greet,4 -greeting,what's up,original,greet,4 -goodbye,goodbyes soon,parrot,bye,2 -thank_you,i must thank you for your time,parrot,bye,2 -greeting,yo,original,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -greeting,hello,original,greet,4 -yes,absolutely,original,book,1 -thank_you,you've been great,parrot,bye,2 -greeting,hi there,original,greet,4 -no,negative,original,cancel,3 -how_busy,is the chili usually crowded at 6pm?,parrot,avail,0 -yes,i can confirm,parrot,book,1 -yes,"yes, that's it",original,book,1 -how_busy,how long before i can eat a macaroni grill,parrot,avail,0 -reminder_update,remind me of exercise,parrot,resched,5 -no,no that's wrong,original,cancel,3 -greeting,hey yai,lambada,greet,4 -goodbye,goodbyes,parrot,bye,2 -no,no don't do that,parrot,cancel,3 -yes,accepted,original,book,1 -greeting,how's otc?,parrot,greet,4 -how_busy,i want to know the amount of people that frequent tacoma swans,lambada,avail,0 -calendar_update,add a dentist appointment to my calendar for march 1,parrot,resched,5 -goodbye,we chatted well,parrot,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -date,date tomorrow?,parrot,avail,0 -thank_you,my sincere thanks,parrot,bye,2 -goodbye,peace,original,bye,2 -yes,yes sir,original,book,1 -yes,yes you have been correct,lambada,book,1 -thank_you,thankyou,parrot,bye,2 -greeting,hello what's happening,parrot,greet,4 -thank_you,very grateful,parrot,bye,2 -greeting,heyo,original,greet,4 -goodbye,later,original,bye,2 -no,ill pass,original,cancel,3 -goodbye,peace,original,bye,2 -greeting,what's up,original,greet,4 -how_busy,show me the wait times in this restaurant?,parrot,avail,0 -goodbye,later!,original,bye,2 -greeting,how've you been,original,greet,4 -no,certainly not true,parrot,cancel,3 -no,negative sure,parrot,cancel,3 -yes,exactly right,original,book,1 -yes,confirmed,original,book,1 -yes,let's do it,parrot,book,1 -no,not correct,parrot,cancel,3 -greeting,good evening,original,greet,4 -yes,you got it,parrot,book,1 -no,but no way?,parrot,cancel,3 -date,what day of the month is it 5 days from now?,lambada,avail,0 -goodbye,", goodbye",lambada,bye,2 -no,erroneous,parrot,cancel,3 -greeting,whats new,lambada,greet,4 -greeting,hello bs,parrot,greet,4 -thank_you,the assistance is very much appreciated,parrot,bye,2 -goodbye,adios!,original,bye,2 -yes,it's a fact,parrot,book,1 -no,but that's not factual,parrot,cancel,3 -no,not right,parrot,cancel,3 -meeting_schedule,meetings today,original,avail,0 -no,FALSE,original,cancel,3 -date,a year?,parrot,avail,0 -meeting_schedule,are there any meetings on the calendar for today?,original,avail,0 -goodbye,"that's all, bye",original,bye,2 -how_busy,how busy is the restaurant around 6,lambada,avail,0 -greeting,hola,original,greet,4 -date,what's the date?,parrot,avail,0 -date,please tell me the day?,parrot,avail,0 -greeting,hey there,original,greet,4 -reminder_update,create a reminder to give my cat flea medicine,parrot,resched,5 -goodbye,goodbye now,parrot,bye,2 -meeting_schedule,when is my meeting with steve planned?,parrot,avail,0 -schedule_meeting,a meeting is needed,parrot,book,1 -yes,accepted,original,book,1 -no,not really,original,cancel,3 -no,that's no,parrot,cancel,3 -calendar,check my calendar to see if my dog is safe,parrot,avail,0 -thank_you,you're special thanks,parrot,bye,2 -greeting,hiya!,original,greet,4 -no,that's untrue,parrot,cancel,3 -goodbye,just relax,parrot,bye,2 -greeting,hello ai,parrot,greet,4 -yes,approved,original,book,1 -yes,"yes, please",original,book,1 -yes,10-Apr,original,book,1 -reminder_update,give me a reminder to pick up my groceries,lambada,resched,5 -calendar_update,remove lunch from my calendar for friday,parrot,resched,5 -greeting,hey how's ot,lambada,greet,4 -yes,very true,original,book,1 -goodbye,see ya later,original,bye,2 -greeting,hi ai,original,greet,4 -how_busy,mc ericks how long will the wait be?,parrot,avail,0 -yes,ok,original,book,1 -goodbye,ill leave now,parrot,bye,2 -date,tell me the day?,parrot,avail,0 -date,please date,parrot,avail,0 -yes,yup,original,book,1 -yes,oh yes,original,book,1 -yes,accepted,original,book,1 -no,negative certainly,parrot,cancel,3 -no,definitely not,original,cancel,3 -no,that's overwhelmingly negative,parrot,cancel,3 -how_busy,i want to know how busy the chilies are between 5 and 9,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -no,i meant nothing,parrot,cancel,3 -date,current day,parrot,avail,0 -goodbye,wonderful conversation,lambada,bye,2 -thank_you,for that thank you,parrot,bye,2 -thank_you,merci beaucoup,original,bye,2 -goodbye,adios,original,bye,2 -yes,good,parrot,book,1 -yes,absolutely,original,book,1 -how_busy,how long will it be before we get seated at this restaurant,lambada,avail,0 -greeting,heyo,original,greet,4 -thank_you,the best,parrot,bye,2 -cancel_reservation,i no longer need the reservation for my friends at red robin,lambada,cancel,3 -reminder_update,how about a reminder?,parrot,resched,5 -yes,i guess,parrot,book,1 -calendar_update,can you add a doctor appointment to the friday calendar?,parrot,resched,5 -calendar_update,remove friday's event from my calendar ,parrot,resched,5 -yes,ya,original,book,1 -no,no?,parrot,cancel,3 -thank_you,i really appreciate you,parrot,bye,2 -no,that's a negation,parrot,cancel,3 -goodbye,good bye,original,bye,2 -no,no!,original,cancel,3 -goodbye,say goodbye,parrot,bye,2 -no,thanks no,parrot,cancel,3 -greeting,hola,original,greet,4 -yes,facts,original,book,1 -greeting,would you tell me how ai is doing?,parrot,greet,4 -cancel_reservation,i need to cancel my reservation for a place at red robin,parrot,cancel,3 -no,it seems not,original,cancel,3 -date,today?,parrot,avail,0 -goodbye,later,original,bye,2 -goodbye,im leaving,parrot,bye,2 -yes,uh-huh,original,book,1 -greeting,hola!,original,greet,4 -greeting,hello,original,greet,4 -yes,affirmitive,original,book,1 -greeting,what's new?,parrot,greet,4 -yes,it's true yes,parrot,book,1 -thank_you,i sincerely thanks you for that,lambada,bye,2 -how_busy,how long will i have to wait if i want to go to red lobster,lambada,avail,0 -goodbye,goodbye bye,parrot,bye,2 -yes,that's a fact,lambada,book,1 -yes,confirmed,original,book,1 -thank_you,thanks again!,original,bye,2 -yes,it is a true,original,book,1 -goodbye,go easy,parrot,bye,2 -how_busy,is there a waiting period today in the olive garden?,parrot,avail,0 -meeting_schedule,what's my meeting calendar?,parrot,avail,0 -greeting,hey there!,original,greet,4 -how_busy,how busy is macy right now?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -yes,positive,parrot,book,1 -greeting,hello what is happening,lambada,greet,4 -thank_you,okay thank you,parrot,bye,2 -yes,positive,original,book,1 -yes,affirmative,original,book,1 -how_busy,how long will i have to wait for a table at ihop,lambada,avail,0 -yes,uh-huh,original,book,1 -no,invalid,original,cancel,3 -no,this isn't true,parrot,cancel,3 -goodbye,goodbye goodbye,parrot,bye,2 -reminder_update,set a reminder to take out the trash,original,resched,5 -yes,yay,lambada,book,1 -greeting,welcome,parrot,greet,4 -goodbye,good-bye,parrot,bye,2 -goodbye,bye bye!,original,bye,2 -greeting,"hello, how are things going",lambada,greet,4 -greeting,hello bs,parrot,greet,4 -thank_you,appreciated,original,bye,2 -yes,ya,original,book,1 -date,what's the date now,parrot,avail,0 -meeting_schedule,what time do i have to meet dan?,parrot,avail,0 -no,that's very false,parrot,cancel,3 -goodbye,go easy,parrot,bye,2 -yes,i'll check that out,parrot,book,1 -greeting,hey hey!,original,greet,4 -schedule_meeting,i need help with a meeting,parrot,book,1 -goodbye,thanks for chatting,lambada,bye,2 -thank_you,appreciated,original,bye,2 -goodbye,farewell!,original,bye,2 -goodbye,buhbye now,lambada,bye,2 -calendar_update,can you remove this event from my calendar please? '',parrot,resched,5 -goodbye,sayonara,original,bye,2 -yes,yeah,original,book,1 -yes,agreed,original,book,1 -no,you can't make it true,parrot,cancel,3 -cancel_reservation,please cancel my reservation at the resort,lambada,cancel,3 -yes,yup,original,book,1 -greeting,ahoy,lambada,greet,4 -how_busy,will mac and cheese be busy at 5pm?,parrot,avail,0 -thank_you,many thank,original,bye,2 -reminder_update,new reminder please,lambada,resched,5 -greeting,are you okay?,original,greet,4 -calendar,search my calendar for a birthday celebration,parrot,avail,0 -goodbye,sayonara,original,bye,2 -yes,it makes sense too,parrot,book,1 -greeting,how ya doin,original,greet,4 -thank_you,good job,lambada,bye,2 -how_busy,list the wait times for red lobsters?,parrot,avail,0 -schedule_meeting,how do you apply for a meeting?,parrot,book,1 -goodbye,fairwell,original,bye,2 -how_busy,how long will chili's wait?,parrot,avail,0 -cancel_reservation,please cancel my booking,parrot,cancel,3 -no,that's incorrect!,original,cancel,3 -how_busy,how busy is mcdonald's at 5pm?,parrot,avail,0 -no,is that a lie,parrot,cancel,3 -no,that's the wrong answer,parrot,cancel,3 -thank_you,you helped me out,parrot,bye,2 -no,that's a negative,original,cancel,3 -reminder_update,remember when the turkey is finished cooking,parrot,resched,5 -yes,absolutely,original,book,1 -goodbye,bye!,original,bye,2 -goodbye,bye bye!,original,bye,2 -goodbye,i'm saying goodbye now,original,bye,2 -greeting,how're you?,parrot,greet,4 -goodbye,adios,original,bye,2 -greeting,wassup,original,greet,4 -no,that is not a good idea,lambada,cancel,3 -goodbye,i'm leaving,parrot,bye,2 -thank_you,awesome thank you,parrot,bye,2 -date,where's tomorrow's date,parrot,avail,0 -reminder_update,let me know,parrot,resched,5 -yes,correct,original,book,1 -greeting,hello good day,parrot,greet,4 -no,definitely not,original,cancel,3 -reminder_update,can you remind me to apply for credit card?,parrot,resched,5 -yes,definitely,original,book,1 -yes,accept,parrot,book,1 -yes,yay,lambada,book,1 -goodbye,i'll leave,parrot,bye,2 -greeting,bonjour,original,greet,4 -no,not that,original,cancel,3 -no,nope,original,cancel,3 -goodbye,bye bye!,original,bye,2 -greeting,how are things going?,parrot,greet,4 -cancel_reservation,i'll cancel my reservation for 4:30pm to 5:30pm at olive garden,lambada,cancel,3 -goodbye,peace,original,bye,2 -yes,uh-huh,original,book,1 -yes,confirm,original,book,1 -goodbye,sayonara,original,bye,2 -greeting,"hello, ai",original,greet,4 -goodbye,the chat with you was good,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -yes,perfect,parrot,book,1 -no,negatory,original,cancel,3 -date,what's today?,parrot,avail,0 -schedule_meeting,how do i apply for a meeting?,parrot,book,1 -how_busy,how long will it take for dinner in olive garden?,parrot,avail,0 -yes,accepted,original,book,1 -goodbye,goodbye goodbye,parrot,bye,2 -greeting,how's the ai?,parrot,greet,4 -date,in 9 days what will it be?,parrot,avail,0 -calendar_update,take the event called surprise party off my calendar for june 2,original,resched,5 -date,is it a certain day of the month?,parrot,avail,0 -thank_you,i really appreciate my help,parrot,bye,2 -thank_you,i'm grateful,original,bye,2 -no,but certainly not,parrot,cancel,3 -yes,good,parrot,book,1 -meeting_schedule,have a meeting today?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -goodbye,on the highway,parrot,bye,2 -no,that's absolutely false,parrot,cancel,3 -goodbye,farewell,original,bye,2 -yes,good,parrot,book,1 -goodbye,goodbye my friend,parrot,bye,2 -goodbye,thanks for chatting with me,lambada,bye,2 -yes,i guess,parrot,book,1 -no,that seems wrong,lambada,cancel,3 -calendar,what's tuesday's calendar?,parrot,avail,0 -calendar_update,a date added to my calendar for the week of 14 may?,parrot,resched,5 -thank_you,thank you for everything,parrot,bye,2 -yes,okay,original,book,1 -greeting,hi ai,original,greet,4 -greeting,hiya,original,greet,4 -greeting,hi,original,greet,4 -no,no way,original,cancel,3 -goodbye,take care then,parrot,bye,2 -how_busy,what is the average number of people that eat at tacoma's at 6:30?,lambada,avail,0 -yes,accepted,original,book,1 -yes,it's logical,parrot,book,1 -yes,affirmitive,original,book,1 -thank_you,thanks,original,bye,2 -no,naw,original,cancel,3 -goodbye,sayonara ,parrot,bye,2 -greeting,salutations,parrot,greet,4 -calendar,show me what's on my calendar for may 1?,parrot,avail,0 -date,what's today?,parrot,avail,0 -goodbye,later!,original,bye,2 -no,that's not the way,parrot,cancel,3 -how_busy,is there a wait time at this pizza place?,lambada,avail,0 -date,what's the name of day?,parrot,avail,0 -date,is it six days?,parrot,avail,0 -meeting_schedule,please tell me when the scheduled meeting ends,parrot,avail,0 -greeting,ahoy there,lambada,greet,4 -meeting_schedule,what meetings do you have between 2 and 4?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -goodbye,bye!,original,bye,2 -thank_you,you're welcome,parrot,bye,2 -yes,great,original,book,1 -no,not happening,original,cancel,3 -greeting,aloha,original,greet,4 -yes,it's definitely positive,parrot,book,1 -thank_you,gracias,original,bye,2 -yes,obviously,parrot,book,1 -goodbye,i'm leaving,parrot,bye,2 -greeting,all right now?,parrot,greet,4 -how_busy,how busy will the chili be at 8pm?,parrot,avail,0 -yes,absolutely,original,book,1 -yes,obviously,parrot,book,1 -yes,positive,parrot,book,1 -meeting_schedule,wanna meet roger?,parrot,avail,0 -yes,TRUE,lambada,book,1 -greeting,whats new,lambada,greet,4 -goodbye,afterward,parrot,bye,2 -yes,that's a clear yes,parrot,book,1 -goodbye,tootles,original,bye,2 -yes,yup,original,book,1 -meeting_schedule,when's the meeting with kara,parrot,avail,0 -cancel_reservation,i need you to cancel my reservation for six at red lobster,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,accepted,original,book,1 -no,not right,parrot,cancel,3 -meeting_schedule,what is my schedule?,parrot,avail,0 -goodbye,will leave now,parrot,bye,2 -yes,oh yes,original,book,1 -no,that's a very bad answer,parrot,cancel,3 -no,negatory,original,cancel,3 -greeting,are you good?,original,greet,4 -greeting,what do you think about acii?,parrot,greet,4 -goodbye,good luck,lambada,bye,2 -goodbye,great talk,lambada,bye,2 -no,so that's no,parrot,cancel,3 -calendar_update,my calendar for march 20 2019 needs to be approved,parrot,resched,5 -schedule_meeting,is there any room available between 11 and 5pm?,parrot,book,1 -yes,yes,original,book,1 -thank_you,you've tried,parrot,bye,2 -how_busy,tell me the time for a table in this restaurant?,parrot,avail,0 -how_busy,is the restaurant usually crowded around 8pm?,lambada,avail,0 -thank_you,and you're doing well,parrot,bye,2 -goodbye,adios!,original,bye,2 -date,what's today?,parrot,avail,0 -yes,good yes,lambada,book,1 -no,that is very false,lambada,cancel,3 -meeting_schedule,is there a meeting with sam?,parrot,avail,0 -thank_you,it's my debt,parrot,bye,2 -thank_you,you gave me that,parrot,bye,2 -meeting_schedule,are there meetings between 1 and 8pm?,parrot,avail,0 -greeting,aho,parrot,greet,4 -thank_you,you've been great,parrot,bye,2 -goodbye,goodnight,original,bye,2 -yes,ok,original,book,1 -no,"no, that's incorrect",original,cancel,3 -greeting,hi,original,greet,4 -yes,confirm,original,book,1 -yes,"yes, that is accurate",original,book,1 -cancel_reservation,get rid of my reservation at 2 pm in ruth's steakhouse,parrot,cancel,3 -yes,roger that,original,book,1 -goodbye,goodbye helpful ai devices,parrot,bye,2 -schedule_meeting,i need to know how to get the meeting approved,parrot,book,1 -goodbye,ai goodbye,original,bye,2 -thank_you,thanks for coming,parrot,bye,2 -thank_you,thanks a million,original,bye,2 -thank_you,thanks!,original,bye,2 -calendar,tell me what my calendar looks like on march 23rd?,parrot,avail,0 -goodbye,say goodbye,parrot,bye,2 -no,that's so false,parrot,cancel,3 -yes,good,parrot,book,1 -date,please share today's date,original,avail,0 -goodbye,peace out!,original,bye,2 -yes,yeap,original,book,1 -greeting,how are you?,parrot,greet,4 -how_busy,tell me the time it takes to get into this steakhouse?,parrot,avail,0 -calendar,do i have anything scheduled on my calendar for march 2?,lambada,avail,0 -reminder_update,may i be reminded,lambada,resched,5 -cancel_reservation,i wont need the reservation anymore,parrot,cancel,3 -date,where is the date tomorrow?,parrot,avail,0 -reminder_update,i'd like a reminder,parrot,resched,5 -yes,uh huh,original,book,1 -yes,obviously,parrot,book,1 -greeting,and how's it going,parrot,greet,4 -goodbye,tootles?,parrot,bye,2 -goodbye,", goodbye",lambada,bye,2 -goodbye,farewell,original,bye,2 -date,in six days what will it be?,parrot,avail,0 -greeting,hello,original,greet,4 -yes,positive,parrot,book,1 -thank_you,nice,parrot,bye,2 -date,what today?,parrot,avail,0 -yes,right,parrot,book,1 -greeting,hey fellows,parrot,greet,4 -reminder_update,new reminder please,lambada,resched,5 -thank_you,good job,lambada,bye,2 -greeting,hi how's everything going?,parrot,greet,4 -no,FALSE,lambada,cancel,3 -greeting,how's my family?,parrot,greet,4 -date,what will be the date in 100 days from now?,original,avail,0 -thank_you,thanks please,original,bye,2 -how_busy,how long does the restaurant wait for me before i leave?,parrot,avail,0 -calendar_update,my calendar needs clearing for the end of march,parrot,resched,5 -greeting,tell me what's going on,parrot,greet,4 -goodbye,later,original,bye,2 -no,this isn't true,parrot,cancel,3 -goodbye,goodbye ai,parrot,bye,2 -goodbye,adios!,original,bye,2 -no,nay,original,cancel,3 -yes,approved,original,book,1 -yes,right,parrot,book,1 -goodbye,say goodbye,parrot,bye,2 -thank_you,my gratitude,parrot,bye,2 -greeting,"wake up, ai",original,greet,4 -goodbye,this conversation was great,parrot,bye,2 -yes,TRUE,lambada,book,1 -greeting,and how are you treated?,parrot,greet,4 -how_busy,is imbrosia busy at 7 o'clock?,parrot,avail,0 -goodbye,the conversation was good,parrot,bye,2 -goodbye,farewell,original,bye,2 -greeting,heyo,original,greet,4 -no,no?,parrot,cancel,3 -how_busy,how busy is michaels around 5pm,lambada,avail,0 -goodbye,fairwell?,parrot,bye,2 -goodbye,you're done,parrot,bye,2 -yes,accepted,original,book,1 -goodbye,later,original,bye,2 -yes,okay,original,book,1 -thank_you,you've been great,parrot,bye,2 -greeting,whats up,original,greet,4 -greeting,aloha,original,greet,4 -meeting_schedule,how many meetings do you plan to have for today?,parrot,avail,0 -no,that's not what i want!,original,cancel,3 -cancel_reservation,i must cancel my reservation after all please,parrot,cancel,3 -yes,sure,original,book,1 -yes,sure,original,book,1 -goodbye,buhbye,original,bye,2 -yes,i'd say that's true,parrot,book,1 -greeting,hey fellow,parrot,greet,4 -date,can you give me the date in 4 days?,lambada,avail,0 -goodbye,buhbye,original,bye,2 -thank_you,special thanks to you,original,bye,2 -yes,good,parrot,book,1 -no,that's untrue,parrot,cancel,3 -thank_you,it's my debt,parrot,bye,2 -yes,i guess,parrot,book,1 -how_busy,tell me the time it takes to sit in the olympia?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -reminder_update,remind me,original,resched,5 -no,that’s incorrect,original,cancel,3 -yes,accepted,original,book,1 -no,no please,parrot,cancel,3 -yes,uh-huh,original,book,1 -goodbye,farewell,original,bye,2 -no,but that's not factual,parrot,cancel,3 -no,i prefer not,parrot,cancel,3 -goodbye,good night,original,bye,2 -no,the negator,parrot,cancel,3 -yes,TRUE,original,book,1 -greeting,hello there,original,greet,4 -thank_you,okay thank you,parrot,bye,2 -greeting,"hi, ai",original,greet,4 -how_busy,is the restaurant at 2pm crowded?,parrot,avail,0 -calendar_update,lunch with deb at noon today,original,resched,5 -yes,i would say yes,lambada,book,1 -no,nope,original,cancel,3 -cancel_reservation,i do not need a reservation,parrot,cancel,3 -yes,absolutely,original,book,1 -calendar,list the appointments on my calendar for march 10?,parrot,avail,0 -no,nada,original,cancel,3 -no,FALSE,lambada,cancel,3 -goodbye,peace,original,bye,2 -yes,yes that's correct,original,book,1 -goodbye,good luck,lambada,bye,2 -greeting,hey,original,greet,4 -no,that's not correct,original,cancel,3 -schedule_meeting,can you please schedule a meeting for today?,lambada,book,1 -how_busy,list the wait times for tiburon beer at 5pm?,parrot,avail,0 -no,hell nah,original,cancel,3 -thank_you,good job thanks,parrot,bye,2 -how_busy,how long can i wait for the pizza fountain?,parrot,avail,0 -cancel_reservation,i need you to cancel my reservation for smith at the william's restaurant,parrot,cancel,3 -calendar_update,forget my scheduled appointment i've scheduled for tomorrow,parrot,resched,5 -reminder_update,please remember something,parrot,resched,5 -meeting_schedule,the meetings today,parrot,avail,0 -how_busy,how busy is mcdonalds at lunch?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -cancel_reservation,cancel my reservation for 5 at red robin,lambada,cancel,3 -yes,perfect,parrot,book,1 -yes,affirmative,original,book,1 -meeting_schedule,are there any meetings with lance scheduled for today?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -goodbye,great conversation,parrot,bye,2 -thank_you,my thanks,parrot,bye,2 -thank_you,you've been great,parrot,bye,2 -yes,TRUE,original,book,1 -no,nay,original,cancel,3 -greeting,wassup,original,greet,4 -no,no is the answer,original,cancel,3 -calendar_update,add a friend's baby shower to my calendar,lambada,resched,5 -yes,uh-huh,original,book,1 -no,no thanks,original,cancel,3 -goodbye,regards,original,bye,2 -greeting,how're you today?,parrot,greet,4 -schedule_meeting,check if meeting rooms are free from 6 to 7,original,book,1 -goodbye,good-bye,parrot,bye,2 -reminder_update,remind me to do my chores,lambada,resched,5 -goodbye,ai goodbye,original,bye,2 -thank_you,thankyou,parrot,bye,2 -thank_you,thank you,original,bye,2 -greeting,tell me how things are,parrot,greet,4 -meeting_schedule,what time is my meeting with marketing scheduled,parrot,avail,0 -date,is tomorrow's date?,parrot,avail,0 -no,nope that's not right,parrot,cancel,3 -yes,obviously,parrot,book,1 -goodbye,", goodbye",lambada,bye,2 -yes,correct,original,book,1 -thank_you,thank you for making my life easier,parrot,bye,2 -yes,perfect,parrot,book,1 -thank_you,awesome thanks,parrot,bye,2 -no,FALSE,original,cancel,3 -yes,uh-huh,original,book,1 -thank_you,many thank,original,bye,2 -yes,roger that,original,book,1 -goodbye,regards,original,bye,2 -greeting,how's my feeling?,parrot,greet,4 -calendar,what's on my schedule on march 7th?,parrot,avail,0 -no,i disagree,parrot,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -greeting,whats up,original,greet,4 -yes,it's certainly true,parrot,book,1 -greeting,how is this going?,parrot,greet,4 -greeting,good morning,parrot,greet,4 -reminder_update,save it for later,parrot,resched,5 -greeting,what's up,original,greet,4 -reminder_update,come on please,parrot,resched,5 -meeting_schedule,is the gang getting together today?,parrot,avail,0 -calendar_update,i need to put my grocery store calendar on the calendar for tomorrow,parrot,resched,5 -goodbye,goodbye now,parrot,bye,2 -yes,"true, most definitely",original,book,1 -goodbye,sayonara,original,bye,2 -how_busy,when the restaurant is crowded in the morning?,parrot,avail,0 -thank_you,thanks,original,bye,2 -yes,certainly true,parrot,book,1 -greeting,all right now?,parrot,greet,4 -yes,positive,original,book,1 -reminder_update,a new reminder please,parrot,resched,5 -thank_you,again thanks,parrot,bye,2 -reminder_update,make me remember that tommorow is trash day,parrot,resched,5 -how_busy,how busy is the imams around 4,lambada,avail,0 -goodbye,later!,original,bye,2 -meeting_schedule,can you give me the date and time of my meeting with dr jack?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -thank_you,many thanks,original,bye,2 -no,that is no,lambada,cancel,3 -meeting_schedule,what is on my schedule today?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -meeting_schedule,is my schedule clear?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -reminder_update,remind me to change the oil?,parrot,resched,5 -greeting,"hey, what's new",original,greet,4 -no,but that's not true?,parrot,cancel,3 -meeting_schedule,when are i going to have today's meetings?,lambada,avail,0 -greeting,how is everything?,parrot,greet,4 -how_busy,how busy is the olive garden at 5,lambada,avail,0 -goodbye,later gater,original,bye,2 -goodbye,goodnight,original,bye,2 -goodbye,afterward,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -no,no way,original,cancel,3 -calendar,what's on my calendar for march 14th?,parrot,avail,0 -how_busy,how long do i have to wait for a steak?,parrot,avail,0 -goodbye,adios!,original,bye,2 -no,nada,original,cancel,3 -yes,affirmative,original,book,1 -reminder_update,make me remember to take my groceries,parrot,resched,5 -no,no that's not true,parrot,cancel,3 -date,date tomorrow,parrot,avail,0 -no,i'd rather not answer that,parrot,cancel,3 -greeting,hi,original,greet,4 -thank_you,thank you,original,bye,2 -how_busy,is the wait long?,parrot,avail,0 -goodbye,adios!,original,bye,2 -yes,correct,original,book,1 -greeting,how's that hanging?,parrot,greet,4 -greeting,how is everything going?,parrot,greet,4 -yes,"yes, that's confirmed",original,book,1 -greeting,heyo,original,greet,4 -no,negative sure,parrot,cancel,3 -how_busy,what's the wait like?,parrot,avail,0 -schedule_meeting,i'll have to meet with scott at 1 pm,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -goodbye,i've got to say goodbye,lambada,bye,2 -date,what's today?,parrot,avail,0 -goodbye,"thanks, bye",original,bye,2 -greeting,aloha,original,greet,4 -greeting,hello how's the situation?,parrot,greet,4 -yes,right,parrot,book,1 -meeting_schedule,when's the meeting?,parrot,avail,0 -calendar,on my calendar for march 10th,parrot,avail,0 -no,nothing,parrot,cancel,3 -greeting,hi how are you?,parrot,greet,4 -how_busy,how busy is zippy at 5 pm,lambada,avail,0 -greeting,aho,parrot,greet,4 -yes,"yep, that's true",original,book,1 -greeting,hola,original,greet,4 -no,that's absolutely wrong,parrot,cancel,3 -schedule_meeting,please schedule a meeting?,parrot,book,1 -no,but it's totally wrong,parrot,cancel,3 -goodbye,great talk,lambada,bye,2 -date,today?,parrot,avail,0 -thank_you,so grateful,parrot,bye,2 -no,not true,original,cancel,3 -no,that's inaccurate,original,cancel,3 -thank_you,i'm grateful,original,bye,2 -no,please no,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -greeting,hiya,original,greet,4 -no,no,lambada,cancel,3 -no,it has to be false,parrot,cancel,3 -how_busy,is pizza a regular dinner?,parrot,avail,0 -yes,accepted,original,book,1 -greeting,hello,original,greet,4 -greeting,whats up,original,greet,4 -date,what day is today,parrot,avail,0 -greeting,hi ai,original,greet,4 -greeting,hello,original,greet,4 -goodbye,bye-bye,original,bye,2 -no,the negator,parrot,cancel,3 -goodbye,signing off,original,bye,2 -goodbye,cya later,original,bye,2 -yes,what's the truth of this,lambada,book,1 -no,so that's no,parrot,cancel,3 -greeting,whats up,original,greet,4 -yes,yup,original,book,1 -yes,say yes,lambada,book,1 -goodbye,"thanks, bye",original,bye,2 -yes,positive,parrot,book,1 -goodbye,fairwell?,parrot,bye,2 -no,that's wrong,original,cancel,3 -yes,affirmative,original,book,1 -reminder_update,remind me to clean up,parrot,resched,5 -goodbye,"great talk, thanks for it",lambada,bye,2 -yes,indeed,original,book,1 -meeting_schedule,will we have meetings today?,parrot,avail,0 -date,calender says tomorrow is the day,parrot,avail,0 -no,negatory?,parrot,cancel,3 -no,i'd rather not answer,parrot,cancel,3 -yes,correct,original,book,1 -how_busy,how long do i have to wait in the restaurant?,parrot,avail,0 -greeting,how's otc?,parrot,greet,4 -goodbye,regards,original,bye,2 -thank_you,gracias,original,bye,2 -no,it's not true,parrot,cancel,3 -yes,correct,original,book,1 -how_busy,is macy's busy?,parrot,avail,0 -no,nope,original,cancel,3 -thank_you,good job,lambada,bye,2 -goodbye,peace,original,bye,2 -no,negatory,original,cancel,3 -reminder_update,add a note,parrot,resched,5 -goodbye,goodbye!,original,bye,2 -yes,sure,original,book,1 -thank_you,appreciated,original,bye,2 -calendar_update,clear my calendar for june 23rd,parrot,resched,5 -yes,uh-huh,original,book,1 -yes,huh,parrot,book,1 -how_busy,how busy the restaurant is at 6 pm?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -how_busy,is the wait time in the restaurant long?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -yes,TRUE,lambada,book,1 -no,is it a lie,parrot,cancel,3 -thank_you,i'm glad you answered,parrot,bye,2 -no,negation,parrot,cancel,3 -date,today?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -how_busy,do you think ihop is busy around 6pm?,parrot,avail,0 -how_busy,how busy will the olive garden be at noon,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -date,which date is it?,parrot,avail,0 -thank_you,really great!,original,bye,2 -yes,yes,original,book,1 -yes,TRUE,lambada,book,1 -greeting,what's happening to you?,parrot,greet,4 -yes,great,original,book,1 -greeting,you good?,parrot,greet,4 -no,certainly false,parrot,cancel,3 -thank_you,"nice, excellent!",original,bye,2 -meeting_schedule,when's the meeting with kara?,parrot,avail,0 -greeting,how does it go?,parrot,greet,4 -goodbye,fairwell,original,bye,2 -yes,"yes, that's confirmed for my taxes",lambada,book,1 -goodbye,as regards,parrot,bye,2 -yes,indeed,parrot,book,1 -goodbye,farewell!,original,bye,2 -schedule_meeting,set up a meeting with saul,parrot,book,1 -cancel_reservation,tell the restaurant i can't go?,parrot,cancel,3 -thank_you,i appreciate that answer!,original,bye,2 -goodbye,i'm going,parrot,bye,2 -yes,you are definitely correct,lambada,book,1 -how_busy,how busy i have to be to get a table in this restaurant?,parrot,avail,0 -no,no no thanks,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -yes,confirm,original,book,1 -meeting_schedule,what's my meeting today?,parrot,avail,0 -greeting,good morning ai,parrot,greet,4 -calendar_update,remove all appointments from my calendar on thursday,parrot,resched,5 -no,FALSE,original,cancel,3 -date,which day is next,parrot,avail,0 -thank_you,thank ya!,original,bye,2 -goodbye,greetings,parrot,bye,2 -cancel_reservation,tonight i won't be at dinner,parrot,cancel,3 -meeting_schedule,can i have between 2 and 5 meetings?,parrot,avail,0 -yes,great,original,book,1 -goodbye,say goodbye,parrot,bye,2 -calendar,know what's in my calendar for march 15th?,parrot,avail,0 -reminder_update,create a reminder please,parrot,resched,5 -greeting,how's life going?,parrot,greet,4 -thank_you,again thanks,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -goodbye,maybe i'll see you,parrot,bye,2 -goodbye,it was a good conversation,parrot,bye,2 -no,but it's not true,parrot,cancel,3 -thank_you,thanks a million,original,bye,2 -yes,yep,original,book,1 -schedule_meeting,reservate a meeting room for friday 5pm,parrot,book,1 -cancel_reservation,please cancel my reservation in the restaurant,parrot,cancel,3 -no,"please, no",original,cancel,3 -date,date tomorrow?,parrot,avail,0 -no,i believe it's not correct,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -yes,my answer is yes,parrot,book,1 -goodbye,i have to leave,parrot,bye,2 -greeting,hi how's the situation?,parrot,greet,4 -yes,oh yes,original,book,1 -yes,right,parrot,book,1 -thank_you,you've tried,parrot,bye,2 -goodbye,peace,original,bye,2 -goodbye,farewell,original,bye,2 -yes,it's certainly positive,parrot,book,1 -date,tell me what's the date?,parrot,avail,0 -no,naw,parrot,cancel,3 -greeting,hello there,original,greet,4 -date,when will the date be?,lambada,avail,0 -goodbye,bye!,original,bye,2 -no,not really,original,cancel,3 -thank_you,so grateful,parrot,bye,2 -yes,that's definitely true,original,book,1 -goodbye,thanks for the opportunity to talk,parrot,bye,2 -how_busy,what's the current wait time at the peppermills?,parrot,avail,0 -no,negating,parrot,cancel,3 -greeting,hey,original,greet,4 -no,certainly not,original,cancel,3 -calendar,what events are on my calendar for april 1st?,original,avail,0 -thank_you,my gratitude,parrot,bye,2 -yes,absolutely,original,book,1 -yes,so it works,parrot,book,1 -goodbye,bye-bye,original,bye,2 -no,don't like that no,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -calendar,what should i be doing today?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -date,current day,parrot,avail,0 -reminder_update,remember to bring checkbook,parrot,resched,5 -thank_you,i'm happy you've helped me,parrot,bye,2 -goodbye,i had a great time talking to you,parrot,bye,2 -how_busy,how long does it take to wait for teddy bears at 6pm?,parrot,avail,0 -greeting,what's happening,original,greet,4 -goodbye,buhbye,original,bye,2 -yes,of course,original,book,1 -greeting,hola,original,greet,4 -reminder_update,please remind me,parrot,resched,5 -goodbye,fairwell,original,bye,2 -greeting,welcome,parrot,greet,4 -no,so that's no,parrot,cancel,3 -yes,thats right,original,book,1 -date,date please,original,avail,0 -calendar,does my calendar have an event called shana's baby shower?,parrot,avail,0 -greeting,are you good?,original,greet,4 -thank_you,thanks for that!,original,bye,2 -yes,huh,parrot,book,1 -goodbye,adios!,original,bye,2 -greeting,nice day,lambada,greet,4 -goodbye,bye,original,bye,2 -greeting,hello,original,greet,4 -date,what day is it going to be in twenty one days?,parrot,avail,0 -reminder_update,and i'd like to remind you of my holiday,parrot,resched,5 -thank_you,thanks,original,bye,2 -thank_you,appreciated,original,bye,2 -no,naw,parrot,cancel,3 -date,if it's six days,parrot,avail,0 -goodbye,goodbye,original,bye,2 -date,date tomorrow,parrot,avail,0 -yes,certainly,parrot,book,1 -greeting,heller,original,greet,4 -thank_you,that you so much for the help,original,bye,2 -greeting,heller,original,greet,4 -thank_you,please thank you,lambada,bye,2 -how_busy,how busy is the cheesecake factory around 7,parrot,avail,0 -yes,good,parrot,book,1 -greeting,hi,original,greet,4 -goodbye,greetings,parrot,bye,2 -greeting,what's new?,parrot,greet,4 -goodbye,we chatted well,parrot,bye,2 -yes,"yep, that's right",original,book,1 -yes,absolutely!,original,book,1 -greeting,heller,original,greet,4 -yes,obviously,parrot,book,1 -how_busy,is the wait long?,parrot,avail,0 -yes,absolutely!,original,book,1 -goodbye,"great talk, thanks",original,bye,2 -date,the date is tomorrow,parrot,avail,0 -thank_you,good job,lambada,bye,2 -yes,affirmitive,original,book,1 -thank_you,appreciate the support,parrot,bye,2 -no,is a lie?,parrot,cancel,3 -goodbye,adios,original,bye,2 -goodbye,goodbye,original,bye,2 -goodbye,bye-bye,original,bye,2 -greeting,hi what's up?,parrot,greet,4 -no,negatory,original,cancel,3 -goodbye,the conversation with you was good,parrot,bye,2 -yes,10-Apr,original,book,1 -calendar_update,clear my calendar on march 22,lambada,resched,5 -no,certainly not,original,cancel,3 -yes,positive,original,book,1 -goodbye,nice talk,lambada,bye,2 -goodbye,goodbye!,original,bye,2 -greeting,how's idy doing?,parrot,greet,4 -yes,accepted,original,book,1 -thank_you,you're a good help,parrot,bye,2 -how_busy,how long will it take before i can eat at friday's steakhouse?,parrot,avail,0 -how_busy,how long will the chili's wait?,parrot,avail,0 -reminder_update,can you remind me?,parrot,resched,5 -greeting,how's ayi doing?,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -goodbye,peace out!,original,bye,2 -yes,confirmed,original,book,1 -greeting,hi ai,original,greet,4 -no,that is wrong,original,cancel,3 -date,please show the date,parrot,avail,0 -yes,absolutely,original,book,1 -greeting,ahoy hoy,original,greet,4 -goodbye,goodbyes,parrot,bye,2 -no,FALSE,original,cancel,3 -schedule_meeting,i want to know how do i schedule a meeting?,parrot,book,1 -thank_you,"oh, thanks",original,bye,2 -no,negating,parrot,cancel,3 -meeting_schedule,are there meetings on my calendar?,parrot,avail,0 -calendar_update,on 22 of this month we need to clear our calendar so we can leave it open for mark to visit,parrot,resched,5 -goodbye,i'm outta here!,original,bye,2 -how_busy,can you tell me how busy the place is at 6?,parrot,avail,0 -no,i'd rather not answer it,parrot,cancel,3 -date,please date,parrot,avail,0 -no,negative,original,cancel,3 -greeting,how's ai feeling?,parrot,greet,4 -meeting_schedule,do i have any meetings coming up with dan?,original,avail,0 -no,erroneous,parrot,cancel,3 -greeting,hey,original,greet,4 -no,invalid,original,cancel,3 -yes,ya,original,book,1 -no,ill pass,original,cancel,3 -goodbye,later then,lambada,bye,2 -yes,positive,parrot,book,1 -greeting,hi,original,greet,4 -thank_you,thank you so very much,original,bye,2 -no,not happening,original,cancel,3 -yes,yes,original,book,1 -greeting,hey,original,greet,4 -greeting,what is new?,parrot,greet,4 -no,yes that's false,lambada,cancel,3 -reminder_update,please remind me to do this later on,parrot,resched,5 -no,"no, definitely not",original,cancel,3 -no,the whole thing is wildly wrong,parrot,cancel,3 -date,what date is tomorrow,parrot,avail,0 -no,erroneous,parrot,cancel,3 -greeting,yo,original,greet,4 -goodbye,adios,original,bye,2 -greeting,ai how you're doing,lambada,greet,4 -goodbye,i'm out,parrot,bye,2 -yes,i'd say yes,parrot,book,1 -how_busy,how many people are expected to be at immaculate steakhouse,lambada,avail,0 -date,he's got the date today,parrot,avail,0 -no,that's so wrong,parrot,cancel,3 -reminder_update,remind me,original,resched,5 -no,nothing good,parrot,cancel,3 -greeting,hola!,original,greet,4 -thank_you,"nice, excellent!",original,bye,2 -no,certainly not,original,cancel,3 -goodbye,goodbye to you,original,bye,2 -no,it's false,parrot,cancel,3 -goodbye,good night,original,bye,2 -yes,it's a fact,parrot,book,1 -yes,approved,original,book,1 -greeting,aho,parrot,greet,4 -calendar,get events in my calendar,parrot,avail,0 -schedule_meeting,can you reserve a meeting room for monday at 5pm?,lambada,book,1 -yes,agreed,original,book,1 -how_busy,get to know how busy chili's is at 5pm,parrot,avail,0 -greeting,aloha,original,greet,4 -greeting,aho,parrot,greet,4 -thank_you,thanks,original,bye,2 -goodbye,talk later,original,bye,2 -calendar,tell me my calendar?,parrot,avail,0 -no,what isn't true?,parrot,cancel,3 -thank_you,you've helped,parrot,bye,2 -thank_you,thanks for coming,parrot,bye,2 -greeting,hello there,original,greet,4 -thank_you,thanks,original,bye,2 -yes,we would say yes,lambada,book,1 -calendar,what's tuesday's calendar?,parrot,avail,0 -goodbye,im leaving goodbye,parrot,bye,2 -calendar_update,delete that event from calendar,original,resched,5 -greeting,what's up,original,greet,4 -thank_you,i'm very thankful,parrot,bye,2 -no,it's a lie,parrot,cancel,3 -greeting,hello there,original,greet,4 -thank_you,i am thankful for the answer,original,bye,2 -greeting,aloha,original,greet,4 -how_busy,can you wait in chili's around 8pm?,parrot,avail,0 -meeting_schedule,tell me about my meeting with mary?,parrot,avail,0 -greeting,yo,original,greet,4 -goodbye,tootles?,parrot,bye,2 -how_busy,how long will it take me to sit in the olive garden,parrot,avail,0 -goodbye,a good talk,parrot,bye,2 -yes,not false,parrot,book,1 -greeting,ai how is my life,parrot,greet,4 -goodbye,great conversation,parrot,bye,2 -greeting,heyo,original,greet,4 -meeting_schedule,can you tell me the time and date of my meeting with stacy?,parrot,avail,0 -no,don't agree,parrot,cancel,3 -yes,that's the truth,original,book,1 -calendar_update,get rid of everything on my calendar for march 2nd,original,resched,5 -no,that's not right?,parrot,cancel,3 -no,"no, that isn't right",lambada,cancel,3 -yes,yeah,original,book,1 -no,nothing,parrot,cancel,3 -yes,TRUE,original,book,1 -thank_you,i appeciate it,parrot,bye,2 -date,do you know the date?,parrot,avail,0 -calendar_update,take the surprise party off my calendar for june 2nd,parrot,resched,5 -thank_you,thanks!,original,bye,2 -date,tell me the date now?,lambada,avail,0 -yes,i'll check it out,parrot,book,1 -meeting_schedule,what day is my meeting with dr lee?,parrot,avail,0 -yes,certainly true,parrot,book,1 -thank_you,you've helped,parrot,bye,2 -goodbye,the talks were pleasant,parrot,bye,2 -no,negatory,original,cancel,3 -goodbye,fairwell?,parrot,bye,2 -thank_you,thanks,original,bye,2 -date,the date is today,parrot,avail,0 -yes,affirmative,original,book,1 -yes,"yes, that's correct",original,book,1 -thank_you,i'm happy with my answer,original,bye,2 -goodbye,sayonara,original,bye,2 -goodbye,goodbye to yours,parrot,bye,2 -greeting,how you are?,parrot,greet,4 -how_busy,what's the typical wait for a table at the gobi steakhouse?,parrot,avail,0 -meeting_schedule,what's on my agenda today,parrot,avail,0 -greeting,welcome,parrot,greet,4 -goodbye,see you later,original,bye,2 -no,"that's not right, so no",original,cancel,3 -no,that's no,parrot,cancel,3 -calendar,tell me what's on my calendar for tuesday?,parrot,avail,0 -goodbye,goodbye to yours,parrot,bye,2 -yes,indeed,original,book,1 -meeting_schedule,are there meetings between 10 and 11?,parrot,avail,0 -greeting,hiya,original,greet,4 -yes,not a falsehood,parrot,book,1 -goodbye,my way,parrot,bye,2 -goodbye,later!,original,bye,2 -thank_you,you helped me,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -yes,oh-huh,parrot,book,1 -greeting,hello hello good day,parrot,greet,4 -thank_you,i'm really grateful,parrot,bye,2 -no,not true,original,cancel,3 -no,not right?,parrot,cancel,3 -schedule_meeting,can you arrange a meeting for 3:00 on wednesday?,original,book,1 -greeting,hi how's everything?,parrot,greet,4 -thank_you,i appreciate it,original,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -yes,it's definitely positive,parrot,book,1 -goodbye,great talk thanks for coming,parrot,bye,2 -thank_you,oh sweet thanks,original,bye,2 -yes,ok,original,book,1 -no,naw,original,cancel,3 -yes,definitely,original,book,1 -yes,i'd say yes,parrot,book,1 -thank_you,the help is appreciated,parrot,bye,2 -calendar_update,stop this event today,parrot,resched,5 -yes,correct,original,book,1 -thank_you,special thanks to you,original,bye,2 -yes,a real statement,parrot,book,1 -no,nothing good,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -no,that's not necessarily true,lambada,cancel,3 -meeting_schedule,when are we going to meet up?,parrot,avail,0 -greeting,hi ai,original,greet,4 -no,it's very wrong,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -goodbye,sayonara,original,bye,2 -yes,oh yes,original,book,1 -how_busy,tell me if there's a long wait at olive garden at 5pm?,parrot,avail,0 -no,no thank you,original,cancel,3 -yes,huh,parrot,book,1 -calendar_update,you can remove the date of play from my calendar for feb 18 2019,parrot,resched,5 -no,that's not true,original,cancel,3 -yes,positive,original,book,1 -schedule_meeting,does the meeting room open between noon and 1pm?,parrot,book,1 -calendar_update,add dentist appointment to my calendar for march 1,original,resched,5 -date,is today monday?,original,avail,0 -goodbye,see ya,lambada,bye,2 -goodbye,farewell!,original,bye,2 -greeting,yo,original,greet,4 -date,today?,parrot,avail,0 -greeting,well hello,original,greet,4 -how_busy,tell me the wait for the meal at chipotle,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -goodbye,good luck later,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -meeting_schedule,is there any meeting on my calendar?,parrot,avail,0 -how_busy,tell me how busy denny's at 6 o'clock in the morning,parrot,avail,0 -schedule_meeting,please help me schedule a meeting,parrot,book,1 -greeting,whats new,lambada,greet,4 -cancel_reservation,i have to cancel my umami reservation for tonight,parrot,cancel,3 -greeting,wassup,original,greet,4 -thank_you,thanks please,original,bye,2 -yes,accept,parrot,book,1 -no,nay,original,cancel,3 -no,i'd rather not,parrot,cancel,3 -no,that isn't true,lambada,cancel,3 -yes,it's certainly true,parrot,book,1 -how_busy,check the red lobster if it's packed around 5 pm,parrot,avail,0 -greeting,"hello, hello, hello",lambada,greet,4 -greeting,aloha,original,greet,4 -yes,affirmitive,original,book,1 -goodbye,see you soon,original,bye,2 -yes,you're right,original,book,1 -goodbye,bye!,original,bye,2 -no,it's false,parrot,cancel,3 -goodbye,thank you for talking to me,lambada,bye,2 -date,can you give me the date in 5 days?,lambada,avail,0 -goodbye,my friend,parrot,bye,2 -date,what happens in six days,parrot,avail,0 -no,that's actually false,parrot,cancel,3 -how_busy,can the wait be very long at imesa?,lambada,avail,0 -no,thanks no,parrot,cancel,3 -yes,yes i am,original,book,1 -calendar_update,what cancels the event on 17 may?,parrot,resched,5 -goodbye,i had a nice goodbye,parrot,bye,2 -how_busy,when is macaroni grill busy?,parrot,avail,0 -date,current date,original,avail,0 -greeting,aloha,original,greet,4 -no,that's a wrong answer,parrot,cancel,3 -goodbye,bye,original,bye,2 -greeting,and how're you doing,parrot,greet,4 -goodbye,"great talk, thanks for coming",lambada,bye,2 -no,please disagree,lambada,cancel,3 -how_busy,is mexico crowded at night?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -goodbye,"no problem, goodbye",lambada,bye,2 -greeting,hello,original,greet,4 -cancel_reservation,please cancel the reservations for dinner?,parrot,cancel,3 -greeting,how's life?,parrot,greet,4 -no,not necessarily true,parrot,cancel,3 -yes,a real statement,parrot,book,1 -calendar_update,add a trip to the zoo to my calendar for february 10th,parrot,resched,5 -goodbye,my way,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -no,nada,original,cancel,3 -no,no longer valid,parrot,cancel,3 -goodbye,goodbye to you,original,bye,2 -yes,roger that,original,book,1 -no,no that's wrong,original,cancel,3 -reminder_update,set up a reminder to give the cat flea medicine,parrot,resched,5 -yes,affirmative,original,book,1 -no,nothing,parrot,cancel,3 -thank_you,again thanks,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -how_busy,at four how much business does georgia have,parrot,avail,0 -greeting,hiya!,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,hiya,original,greet,4 -how_busy,how long will i have to wait in an immaculate steak house?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -thank_you,the assistance is very helpful,parrot,bye,2 -yes,ya,original,book,1 -no,negating,parrot,cancel,3 -goodbye,just relax,parrot,bye,2 -no,it is no,original,cancel,3 -yes,that's all right,parrot,book,1 -date,can you give me a date?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -date,what day?,parrot,avail,0 -yes,yeap,original,book,1 -goodbye,tootles,original,bye,2 -greeting,how's it hanging?,parrot,greet,4 -thank_you,gracias,original,bye,2 -thank_you,thank you so very much,original,bye,2 -schedule_meeting,is there meeting room available between 9 and 11?,parrot,book,1 -goodbye,later goodbye,parrot,bye,2 -no,that's very false,parrot,cancel,3 -goodbye,farewell!,original,bye,2 -meeting_schedule,time for today's meeting?,parrot,avail,0 -goodbye,"bye-bye, my friend",lambada,bye,2 -calendar,what was the day on my calendar for my first day of school?,parrot,avail,0 -no,no?,parrot,cancel,3 -calendar,read all of my appointments on the 15th,lambada,avail,0 -goodbye,cya later,original,bye,2 -yes,sure,original,book,1 -how_busy,what is the average wait time at chris brown's steak house?,lambada,avail,0 -how_busy,is the restaurant the busiest at dinner?,parrot,avail,0 -date,can you tell me the date it will be?,lambada,avail,0 -goodbye,bye bye,lambada,bye,2 -yes,confirm,original,book,1 -no,naw,parrot,cancel,3 -yes,ya,original,book,1 -thank_you,well done,parrot,bye,2 -thank_you,i really thank you,original,bye,2 -goodbye,good bye,original,bye,2 -no,nope,original,cancel,3 -meeting_schedule,have any meetings with dan?,parrot,avail,0 -how_busy,how busy is ihop now?,parrot,avail,0 -thank_you,my gratitude,parrot,bye,2 -thank_you,i appreciate it,original,bye,2 -goodbye,until next time!,original,bye,2 -yes,yeah yeah,lambada,book,1 -no,that's wrong,original,cancel,3 -no,negation,parrot,cancel,3 -goodbye,"thanks for my help, goodbye!",original,bye,2 -greeting,show me how you feel about this,parrot,greet,4 -how_busy,ihop around 10 pm,parrot,avail,0 -no,that's overwhelmingly negative,parrot,cancel,3 -goodbye,adios!,original,bye,2 -no,invalid,original,cancel,3 -goodbye,sign off,parrot,bye,2 -yes,ok,original,book,1 -goodbye,the chat was good,parrot,bye,2 -thank_you,nice,parrot,bye,2 -yes,okay,original,book,1 -no,naw,parrot,cancel,3 -goodbye,im leaving,parrot,bye,2 -date,what is my date today,parrot,avail,0 -no,invalid,original,cancel,3 -no,negating,parrot,cancel,3 -greeting,hola!,original,greet,4 -goodbye,bye-bye,original,bye,2 -greeting,hey fellow,parrot,greet,4 -yes,okay,original,book,1 -no,nothing,parrot,cancel,3 -goodbye,", goodbye",lambada,bye,2 -how_busy,tell me what the wait time is at the cheese cake factory?,lambada,avail,0 -goodbye,bye!,original,bye,2 -yes,absolutely!,original,book,1 -reminder_update,just make me remember to buy groceries,parrot,resched,5 -no,that's absolutely false,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -how_busy,what's the wait for a table at this restaurant?,parrot,avail,0 -no,no!,original,cancel,3 -no,no?,parrot,cancel,3 -how_busy,what's zilker's like at 7pm?,parrot,avail,0 -no,is my false statement?,parrot,cancel,3 -yes,that'd be great,parrot,book,1 -greeting,hiya,original,greet,4 -calendar_update,can i cancel my doctor appointment from my calendar?,parrot,resched,5 -goodbye,great conversation,parrot,bye,2 -goodbye,get there soon,lambada,bye,2 -thank_you,you have made my life so much easier,lambada,bye,2 -how_busy,what is the wait time at mac 'n cheese right now?,lambada,avail,0 -no,that's inaccurate,original,cancel,3 -greeting,"hello, friend",original,greet,4 -yes,certainly,parrot,book,1 -yes,10-Apr,original,book,1 -greeting,hey hey!,original,greet,4 -greeting,what's up?,parrot,greet,4 -goodbye,bye,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -yes,do that?,original,book,1 -thank_you,my thanks,parrot,bye,2 -goodbye,thank you for talking to me,lambada,bye,2 -yes,definitely yes,parrot,book,1 -calendar_update,delete that event from calendar,original,resched,5 -yes,yeah,original,book,1 -goodbye,bye bye,lambada,bye,2 -goodbye,see you around,original,bye,2 -thank_you,thankyou,parrot,bye,2 -yes,definitely,original,book,1 -no,no!,original,cancel,3 -no,no!,original,cancel,3 -date,what date today?,parrot,avail,0 -yes,huh huh,parrot,book,1 -no,negatory?,parrot,cancel,3 -goodbye,tootles,original,bye,2 -greeting,hello hello good day,parrot,greet,4 -yes,agreed,original,book,1 -greeting,how've you been?,parrot,greet,4 -yes,yep,original,book,1 -greeting,"hello, friend",original,greet,4 -no,so that's no,parrot,cancel,3 -no,i'll pass,original,cancel,3 -how_busy,tell me the time to wait if i want to eat red lobster?,parrot,avail,0 -schedule_meeting,"do you have a meeting room open on wednesday, 10pm?",lambada,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,positive,parrot,book,1 -how_busy,how long will it be before i go to the restaurant,lambada,avail,0 -no,that's totally wrong,parrot,cancel,3 -greeting,hello good morning,parrot,greet,4 -calendar,how many events are planned for march 15th?,parrot,avail,0 -calendar_update,add farm trip to my calendar on march 1st,lambada,resched,5 -goodbye,cya later,original,bye,2 -greeting,whats up?,parrot,greet,4 -greeting,how's ife treating you,original,greet,4 -greeting,hey hey!,original,greet,4 -how_busy,waiting for macaroni and cheese?,parrot,avail,0 -greeting,hey it's up,lambada,greet,4 -date,i would like to get today's date,original,avail,0 -yes,that's true,original,book,1 -yes,10-Apr,original,book,1 -meeting_schedule,is there any meetings between 1 and 3 pm?,lambada,avail,0 -yes,yes that's it,original,book,1 -greeting,hi how's it going,lambada,greet,4 -reminder_update,don't forget to remind you to pay the bills,parrot,resched,5 -greeting,hey hey!,original,greet,4 -goodbye,bye-bye,original,bye,2 -how_busy,the queues at the cheesecake factory?,parrot,avail,0 -goodbye,great conversation,parrot,bye,2 -meeting_schedule,do i have to be in a meeting?,parrot,avail,0 -meeting_schedule,show me the meetings on my schedule today?,parrot,avail,0 -no,no thanks,original,cancel,3 -greeting,whats up?,parrot,greet,4 -goodbye,as regards,parrot,bye,2 -yes,confirm,original,book,1 -greeting,whats up?,parrot,greet,4 -date,let me know what's the date of the day,parrot,avail,0 -greeting,salutations,parrot,greet,4 -goodbye,afterward,parrot,bye,2 -how_busy,how long is the restaurant open between 5 and 7?,parrot,avail,0 -greeting,are you okay??,parrot,greet,4 -greeting,hi,original,greet,4 -yes,very true,original,book,1 -yes,great,original,book,1 -date,what's the current date,original,avail,0 -no,that's actually false,parrot,cancel,3 -no,that's incorrect,original,cancel,3 -yes,"yes, that's right",original,book,1 -goodbye,goodbye now,parrot,bye,2 -thank_you,i'm really grateful,parrot,bye,2 -greeting,hiya,original,greet,4 -no,no good,original,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,"correct, that's true",original,book,1 -greeting,wake up ai,parrot,greet,4 -how_busy,tell me how busy the red robin is at 7 pm,parrot,avail,0 -no,"no, definitely not",original,cancel,3 -greeting,"hey, ai",original,greet,4 -how_busy,how long does the wait for a table in an italian restaurant be?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -calendar_update,i need a visit to the zoo on the calendar for june 4,parrot,resched,5 -no,please disagree,lambada,cancel,3 -greeting,how is my day?,parrot,greet,4 -goodbye,adios,original,bye,2 -yes,10-Apr,original,book,1 -greeting,wassup,original,greet,4 -goodbye,later!,original,bye,2 -yes,approved,original,book,1 -meeting_schedule,is there a meeting between 2 pm and 3 pm?,parrot,avail,0 -greeting,hiya!,original,greet,4 -goodbye,"thanks, bye",original,bye,2 -no,nada,original,cancel,3 -date,what year?,parrot,avail,0 -goodbye,goodbye soon,lambada,bye,2 -schedule_meeting,set up a meeting,parrot,book,1 -yes,yeah,original,book,1 -goodbye,goodbyes,parrot,bye,2 -reminder_update,set a reminder for later,original,resched,5 -greeting,heller,original,greet,4 -yes,yay,lambada,book,1 -goodbye,peace,original,bye,2 -schedule_meeting,do you have a meeting room at 8?,parrot,book,1 -goodbye,nice talk,lambada,bye,2 -date,what year?,parrot,avail,0 -thank_you,thanks i appreciate it,parrot,bye,2 -goodbye,fairwell,original,bye,2 -yes,10-Apr,original,book,1 -no,it seems not,original,cancel,3 -thank_you,thankyou,parrot,bye,2 -greeting,hello there!,original,greet,4 -greeting,hello bs,parrot,greet,4 -greeting,hey yai,lambada,greet,4 -greeting,how's everything?,parrot,greet,4 -meeting_schedule,do i have any meetings today between 9:20 and 10:30?,original,avail,0 -goodbye,goodbyes,parrot,bye,2 -thank_you,i really thank you,original,bye,2 -how_busy,how busy is chippendale at 5 pm,lambada,avail,0 -greeting,hello hello good morning,parrot,greet,4 -yes,ya,original,book,1 -no,certainly not true,parrot,cancel,3 -greeting,ahoy there,lambada,greet,4 -date,i need to know what date tomorrow,parrot,avail,0 -greeting,nice day,lambada,greet,4 -thank_you,my gratitude,parrot,bye,2 -yes,correct,original,book,1 -yes,and you're correct,parrot,book,1 -reminder_update,remember to remind me later,parrot,resched,5 -greeting,how are things?,parrot,greet,4 -goodbye,farewell,original,bye,2 -how_busy,how long will i have to wait for a table at an impossibly large?,parrot,avail,0 -greeting,hi,original,greet,4 -goodbye,later!,original,bye,2 -goodbye,i'll leave,parrot,bye,2 -schedule_meeting,i need a meeting,parrot,book,1 -greeting,how's my treatment?,parrot,greet,4 -cancel_reservation,i won't need the reservation,parrot,cancel,3 -no,nada,original,cancel,3 -date,tell me what day it's?,parrot,avail,0 -thank_you,"good job, thanks",lambada,bye,2 -calendar_update,remove all my birthday celebrations from my calendar,parrot,resched,5 -greeting,whats up?,parrot,greet,4 -no,no!,original,cancel,3 -thank_you,you have my thanks,parrot,bye,2 -yes,certainly,parrot,book,1 -yes,yup,original,book,1 -reminder_update,remind me,original,resched,5 -date,current day,parrot,avail,0 -thank_you,the best,parrot,bye,2 -how_busy,how busy is sriracha at 5:30 pm,lambada,avail,0 -goodbye,buhbye,original,bye,2 -greeting,how's my feeling?,parrot,greet,4 -meeting_schedule,what's on my agenda today,parrot,avail,0 -date,what's my date today?,parrot,avail,0 -thank_you,gracias,original,bye,2 -reminder_update,make me a reminder to brush my teeth,parrot,resched,5 -meeting_schedule,did you schedule any meetings for today?,parrot,avail,0 -yes,confirm,original,book,1 -no,that's erroneous,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -reminder_update,i'd like a reminder,parrot,resched,5 -no,that's totally wrong,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -yes,yes it's true,lambada,book,1 -no,that is untrue,original,cancel,3 -goodbye,buhbye,original,bye,2 -goodbye,im leaving,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -greeting,how does ai feel?,parrot,greet,4 -how_busy,tell me how busy the macaroni grill will be at 8 pm?,parrot,avail,0 -thank_you,gracias,original,bye,2 -greeting,what's my feeling today?,parrot,greet,4 -no,that's incorrect!,original,cancel,3 -no,nope,original,cancel,3 -goodbye,im leaving,parrot,bye,2 -goodbye,goodbye,original,bye,2 -no,and i'm sorry,parrot,cancel,3 -no,that's incorrect!,original,cancel,3 -date,what's the next week?,parrot,avail,0 -thank_you,you've tried,parrot,bye,2 -no,erroneous,parrot,cancel,3 -no,indeed it's false,parrot,cancel,3 -how_busy,how busy is ihop around 5,lambada,avail,0 -yes,sure,original,book,1 -greeting,hey yai,lambada,greet,4 -date,date tomorrow?,parrot,avail,0 -date,please list my current date,parrot,avail,0 -yes,can we please?,original,book,1 -yes,that's correct,original,book,1 -date,please date,parrot,avail,0 -goodbye,farewell,original,bye,2 -thank_you,appreciated,original,bye,2 -greeting,hello siri,original,greet,4 -date,in 14 days?,parrot,avail,0 -yes,accepted,original,book,1 -thank_you,thanks for helping,original,bye,2 -yes,not a lie,parrot,book,1 -calendar_update,i have to put my grocery store calendar on my calendar for tomorrow,parrot,resched,5 -schedule_meeting,are there any open meeting rooms between noon and 1?,original,book,1 -goodbye,fairwell?,parrot,bye,2 -meeting_schedule,do you have meetings between 10 and 4?,parrot,avail,0 -goodbye,goodbye now,parrot,bye,2 -no,no,lambada,cancel,3 -no,say negative,parrot,cancel,3 -goodbye,please talk soon,parrot,bye,2 -greeting,welcome,parrot,greet,4 -meeting_schedule,meeting today,parrot,avail,0 -yes,certainly,parrot,book,1 -goodbye,say goodbye,parrot,bye,2 -thank_you,you've helped,parrot,bye,2 -no,erroneous,parrot,cancel,3 -yes,you're right,original,book,1 -greeting,hola!,original,greet,4 -goodbye,happy to talk to you,parrot,bye,2 -yes,that's correct,original,book,1 -yes,yay,lambada,book,1 -no,it's a no,original,cancel,3 -no,no!,original,cancel,3 -meeting_schedule,what is my meeting calendar?,parrot,avail,0 -thank_you,why thank you?,original,bye,2 -date,in 8 days?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -goodbye,farewell,original,bye,2 -yes,i guess you're right,parrot,book,1 -no,that's a wrong answer,parrot,cancel,3 -goodbye,see ya!,original,bye,2 -greeting,heller,original,greet,4 -yes,perfect,parrot,book,1 -calendar_update,clear my entire schedule for april 1st,parrot,resched,5 -thank_you,thanks a million,original,bye,2 -greeting,"hello, how are you doing",original,greet,4 -greeting,whats up,original,greet,4 -yes,sure,original,book,1 -goodbye,goodnight,original,bye,2 -greeting,how have you been,original,greet,4 -thank_you,merci beaucoup,original,bye,2 -goodbye,take it easy!,original,bye,2 -greeting,well hello,original,greet,4 -goodbye,need to catch up,parrot,bye,2 -thank_you,so grateful,parrot,bye,2 -yes,confirmed,original,book,1 -how_busy,tell me the time it takes to get a table at the red lobster?,parrot,avail,0 -how_busy,how long will it take me to get seated at octopus,lambada,avail,0 -date,what date will tomorrow have?,lambada,avail,0 -greeting,hello siri,original,greet,4 -goodbye,later,original,bye,2 -yes,yup,original,book,1 -yes,uh-huh,original,book,1 -no,certainly not,original,cancel,3 -cancel_reservation,can you cancel my reservation?,parrot,cancel,3 -greeting,hello siri,original,greet,4 -thank_you,merci beaucoup,original,bye,2 -yes,roger that,original,book,1 -no,i disagree with this,parrot,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -greeting,"hey, how is my day going",lambada,greet,4 -goodbye,be careful then,lambada,bye,2 -goodbye,goodbye then,parrot,bye,2 -calendar,show me the schedule for april 30?,parrot,avail,0 -no,no good,original,cancel,3 -no,that's bad,parrot,cancel,3 -greeting,give me the information,parrot,greet,4 -no,naw,parrot,cancel,3 -yes,absolutely correct,original,book,1 -how_busy,how busy is iman at 11,lambada,avail,0 -no,not that one,original,cancel,3 -greeting,aloha,original,greet,4 -calendar,show me what my calendar looks like for march 12?,parrot,avail,0 -no,ill pass,original,cancel,3 -goodbye,later goodbye,parrot,bye,2 -yes,positive,parrot,book,1 -greeting,hi,original,greet,4 -yes,absolutely,original,book,1 -goodbye,bye,original,bye,2 -thank_you,thank you,original,bye,2 -yes,10-Apr,original,book,1 -calendar,check my calendar for march 5th?,parrot,avail,0 -goodbye,bye!,original,bye,2 -yes,let's do it,parrot,book,1 -yes,accepted,original,book,1 -no,nay,original,cancel,3 -date,what is today?,original,avail,0 -thank_you,my gratitude,parrot,bye,2 -cancel_reservation,can i cancel my reservation at the osteria for our group,parrot,cancel,3 -thank_you,well done,parrot,bye,2 -yes,absolutely,original,book,1 -no,FALSE,original,cancel,3 -goodbye,just relax,parrot,bye,2 -no,it's no,parrot,cancel,3 -goodbye,goodbye to yours,parrot,bye,2 -reminder_update,please remind me,parrot,resched,5 -goodbye,regards,original,bye,2 -meeting_schedule,will you meet ann?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -greeting,aloha,original,greet,4 -greeting,wanted to say hi,parrot,greet,4 -no,nope not it,original,cancel,3 -yes,ok,original,book,1 -yes,a fact,parrot,book,1 -yes,that'd be great,parrot,book,1 -greeting,yo,original,greet,4 -greeting,good evening,original,greet,4 -goodbye,thanks goodbye,parrot,bye,2 -goodbye,goodbyes soon,parrot,bye,2 -schedule_meeting,"can you schedule a meeting with james at the office, please?",original,book,1 -yes,accepted,original,book,1 -no,negation,parrot,cancel,3 -no,i think it's incorrect,parrot,cancel,3 -how_busy,how many people will be seated in the restaurant at 7pm,parrot,avail,0 -how_busy,how busy is the restaurant at 5pm?,parrot,avail,0 -greeting,good morning,parrot,greet,4 -no,nada,original,cancel,3 -goodbye,i'm gone,parrot,bye,2 -date,the date is today,parrot,avail,0 -date,when is it going to be 10 days?,parrot,avail,0 -yes,indeed,original,book,1 -greeting,good morning,parrot,greet,4 -thank_you,much obliged,original,bye,2 -date,what's the year?,parrot,avail,0 -thank_you,thanks,original,bye,2 -yes,you are yes,lambada,book,1 -goodbye,goodbye!,original,bye,2 -goodbye,buhbye,original,bye,2 -reminder_update,remember to pick up milk in the store,parrot,resched,5 -thank_you,i'm very grateful,parrot,bye,2 -greeting,are you okay??,parrot,greet,4 -no,i prefer not,parrot,cancel,3 -reminder_update,i have a doctor appointment tomorrow at 3 pm,parrot,resched,5 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,you got it,parrot,book,1 -reminder_update,i would like to set up a reminder to my haircare appointment,lambada,resched,5 -greeting,whats up?,parrot,greet,4 -reminder_update,please let me know how to set up a reminder to pay my bcd,lambada,resched,5 -how_busy,how long will i have to wait for chili?,parrot,avail,0 -thank_you,good job,lambada,bye,2 -how_busy,how busy will chili be if i go at 6 pm?,parrot,avail,0 -greeting,how are you feeling now?,parrot,greet,4 -greeting,whats new,lambada,greet,4 -yes,indeed,original,book,1 -greeting,aloha,original,greet,4 -yes,perfect,parrot,book,1 -thank_you,i am thankful,lambada,bye,2 -thank_you,so grateful,parrot,bye,2 -no,nada,original,cancel,3 -greeting,are you okay??,parrot,greet,4 -how_busy,how long will it take to eat at the chai plant?,parrot,avail,0 -reminder_update,remind me to take out the garbage,parrot,resched,5 -no,that's false,original,cancel,3 -greeting,what's my feeling?,parrot,greet,4 -greeting,yo how yo feelin,lambada,greet,4 -yes,correct,lambada,book,1 -goodbye,goodbye now,parrot,bye,2 -yes,accepted,original,book,1 -goodbye,later gator!,original,bye,2 -thank_you,merci beaucoup,original,bye,2 -yes,TRUE,original,book,1 -no,that's bad,parrot,cancel,3 -calendar,can you tell me my calendar for march 19?,lambada,avail,0 -no,that's untrue,parrot,cancel,3 -no,"no, that is fake",original,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -how_busy,tell me the time it takes to be in chili's?,parrot,avail,0 -yes,can we please?,original,book,1 -yes,accepted,original,book,1 -thank_you,i owe you,parrot,bye,2 -how_busy,is it always crowded?,parrot,avail,0 -thank_you,it pleased me,parrot,bye,2 -thank_you,appreciated,original,bye,2 -how_busy,is it full in the mornings?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -date,current day,parrot,avail,0 -schedule_meeting,i want to schedule a meeting,lambada,book,1 -yes,is true,parrot,book,1 -yes,accepted,original,book,1 -goodbye,just relax,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -thank_you,you've tried,parrot,bye,2 -no,naw,original,cancel,3 -goodbye,farewell!,original,bye,2 -yes,yes i am,original,book,1 -calendar_update,delete jury duty from my calendar for may 7th,original,resched,5 -no,but it's wrong,parrot,cancel,3 -no,it's negative,parrot,cancel,3 -goodbye,please talk to me soon,parrot,bye,2 -calendar,please read my schedule for march 3rd,parrot,avail,0 -no,that's a lie,parrot,cancel,3 -how_busy,tio is busy at 830?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -calendar_update,eliminate all the birthday celebrations from my calendar,parrot,resched,5 -no,no?,parrot,cancel,3 -no,"please, no",original,cancel,3 -goodbye,bye-bye,original,bye,2 -goodbye,adios!,original,bye,2 -goodbye,see ya,lambada,bye,2 -yes,i think you succeeded,parrot,book,1 -goodbye,goodbye!,original,bye,2 -goodbye,it's over,parrot,bye,2 -goodbye,later,original,bye,2 -yes,affirmative,original,book,1 -greeting,hello ai,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -how_busy,how crowded will the restaurant be between 6 and 8?,parrot,avail,0 -yes,oh yes,original,book,1 -yes,it makes sense,parrot,book,1 -schedule_meeting,does scheduling a meeting for me help?,lambada,book,1 -thank_you,you've helped,parrot,bye,2 -reminder_update,remind me later,original,resched,5 -no,negative definitely,parrot,cancel,3 -calendar,can you tell me what's happening on my calendar for march 3rd?,lambada,avail,0 -how_busy,can you tell me if there's a long wait in the cheesecake factory?,parrot,avail,0 -no,absolutely false,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,good call,parrot,bye,2 -greeting,hiya,original,greet,4 -yes,that is affirmative,original,book,1 -greeting,hey how's ot,lambada,greet,4 -no,"no, that is not the case",lambada,cancel,3 -calendar,tell me what my calendar looks like for march 23?,parrot,avail,0 -goodbye,good luck,lambada,bye,2 -thank_you,thank you for that answer,lambada,bye,2 -no,that would be wrong,lambada,cancel,3 -goodbye,until next time!,original,bye,2 -greeting,hey how's life,original,greet,4 -yes,great,original,book,1 -goodbye,i have to run,parrot,bye,2 -goodbye,i'll leave,parrot,bye,2 -yes,indeed,original,book,1 -greeting,heller,original,greet,4 -yes,oh-huh,parrot,book,1 -thank_you,i'm really grateful,parrot,bye,2 -goodbye,i'll go,parrot,bye,2 -no,please no,parrot,cancel,3 -yes,uh huh,original,book,1 -no,the negator,parrot,cancel,3 -how_busy,can i expect ihop to be busy at six?,parrot,avail,0 -how_busy,does coffee work at 7?,parrot,avail,0 -goodbye,go easy,parrot,bye,2 -goodbye,bye!,original,bye,2 -goodbye,later,original,bye,2 -goodbye,fairwell,original,bye,2 -date,what day?,parrot,avail,0 -greeting,how's life?,parrot,greet,4 -thank_you,again thanks,parrot,bye,2 -schedule_meeting,can i schedule a meeting?,parrot,book,1 -no,certainly false,parrot,cancel,3 -cancel_reservation,can i cancel my reservation for dinner on friday please?,parrot,cancel,3 -no,that's completely wrong,parrot,cancel,3 -no,not correct,parrot,cancel,3 -calendar,do i have any scheduled events on the calendar for the afternoon of september 7th?,lambada,avail,0 -greeting,how's life,original,greet,4 -greeting,how are things with you?,parrot,greet,4 -no,not right?,parrot,cancel,3 -greeting,hi,original,greet,4 -goodbye,"no problem, goodbye",lambada,bye,2 -thank_you,appreciated,original,bye,2 -goodbye,i'll leave,parrot,bye,2 -yes,that's right,original,book,1 -goodbye,go easy,parrot,bye,2 -how_busy,how busy is ihop?,parrot,avail,0 -yes,it's true,original,book,1 -cancel_reservation,"hello, i need to cancel tonight's reservation for dinner",original,cancel,3 -no,erroneous,parrot,cancel,3 -greeting,and what's going on with you?,parrot,greet,4 -goodbye,tootles?,parrot,bye,2 -yes,roger that,original,book,1 -calendar,what's in my calendar for next sunday?,parrot,avail,0 -yes,sure,original,book,1 -reminder_update,remind me to do my chores?,parrot,resched,5 -thank_you,i'm thankful,original,bye,2 -goodbye,peace,original,bye,2 -meeting_schedule,do you have meetings scheduled between 4 and 5?,parrot,avail,0 -no,that's bad,parrot,cancel,3 -calendar_update,eliminate my calendar for the wedding of sasha on june 12,parrot,resched,5 -thank_you,appreciate the help,original,bye,2 -no,nay,original,cancel,3 -how_busy,how long will it take to get seated in olive garden at 6 o'clock?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -no,no that's not right,parrot,cancel,3 -yes,that's a yes,original,book,1 -thank_you,it's all i need,parrot,bye,2 -greeting,i have to know how i'm doing it,parrot,greet,4 -yes,agreed,original,book,1 -greeting,"hello, good morning",lambada,greet,4 -greeting,hey fellows,parrot,greet,4 -yes,accepted,original,book,1 -calendar_update,please clear my calendar for the date of thursday,parrot,resched,5 -yes,"yes, please",parrot,book,1 -yes,can we please?,original,book,1 -reminder_update,can you make a reminder for me?,parrot,resched,5 -greeting,get up ai,parrot,greet,4 -no,not correct,parrot,cancel,3 -how_busy,check how busy the chili's is at 10 am,lambada,avail,0 -no,nothing,parrot,cancel,3 -no,"no, that is inaccurate",original,cancel,3 -yes,positive,parrot,book,1 -date,tell me the month and day of next month?,parrot,avail,0 -goodbye,later,original,bye,2 -thank_you,you've been great,parrot,bye,2 -yes,yeap,original,book,1 -goodbye,bye-bye,original,bye,2 -no,not that one,original,cancel,3 -how_busy,how busy is the yugioh lunch center around noon,lambada,avail,0 -greeting,aloha,original,greet,4 -cancel_reservation,i have to cancel my reservation for the dinner,parrot,cancel,3 -date,what is the date tomorrow?,original,avail,0 -reminder_update,i would like a reminder,original,resched,5 -thank_you,thanks again!,original,bye,2 -how_busy,i need to know how busy the olive garden is at 6pm,parrot,avail,0 -thank_you,again thank you,parrot,bye,2 -goodbye,this conversation was nice,parrot,bye,2 -greeting,welcome,parrot,greet,4 -thank_you,glad you helped me,parrot,bye,2 -calendar,what's on my calendar for march 20th?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -how_busy,is the amount of wait time high at this restaurant?,lambada,avail,0 -no,no!,original,cancel,3 -yes,uh-huh,original,book,1 -greeting,how's ai feeling?,parrot,greet,4 -no,that's a huge mistake,parrot,cancel,3 -how_busy,what's the wait?,parrot,avail,0 -schedule_meeting,i want a meeting,parrot,book,1 -date,today?,parrot,avail,0 -goodbye,bye,original,bye,2 -no,that's negative,parrot,cancel,3 -greeting,hey bs,lambada,greet,4 -goodbye,bye bye,lambada,bye,2 -yes,definitely,original,book,1 -no,negatory?,parrot,cancel,3 -thank_you,i appreciate your assistance,parrot,bye,2 -yes,"yes, that is right",original,book,1 -how_busy,how busy will chili be around 5 o'clock,parrot,avail,0 -goodbye,see ya,original,bye,2 -meeting_schedule,what's on my schedule?,parrot,avail,0 -schedule_meeting,need a meeting room,parrot,book,1 -yes,confirmed,original,book,1 -meeting_schedule,when is my meeting with sam scheduled?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -thank_you,nice,parrot,bye,2 -greeting,well hello,original,greet,4 -goodbye,buhbye now,lambada,bye,2 -goodbye,later goodbye,parrot,bye,2 -yes,yup,original,book,1 -reminder_update,set a reminder to go to the grocery store,lambada,resched,5 -yes,say yes,lambada,book,1 -goodbye,sayonara,original,bye,2 -greeting,how is everything?,parrot,greet,4 -date,is today the day?,parrot,avail,0 -greeting,hola!,original,greet,4 -thank_you,okay thanks,original,bye,2 -goodbye,buhbye now,lambada,bye,2 -goodbye,greetings,parrot,bye,2 -no,that’s incorrect,original,cancel,3 -greeting,bonjour,original,greet,4 -schedule_meeting,do you have a meeting room between 7-9?,parrot,book,1 -greeting,what's happening,original,greet,4 -no,you're not right,parrot,cancel,3 -no,that's so wrong,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -goodbye,"later, goodbye",lambada,bye,2 -yes,do that?,original,book,1 -goodbye,"later, goodbye",lambada,bye,2 -goodbye,good-bye,parrot,bye,2 -no,no,lambada,cancel,3 -yes,TRUE,original,book,1 -greeting,hola,original,greet,4 -greeting,how's my treatment?,parrot,greet,4 -goodbye,thank you for talking to me,lambada,bye,2 -thank_you,a million thanks,parrot,bye,2 -goodbye,ill be leaving now,parrot,bye,2 -yes,correct,original,book,1 -yes,that's a fact,parrot,book,1 -goodbye,sayonara ,parrot,bye,2 -no,FALSE,lambada,cancel,3 -no,i must say no,original,cancel,3 -no,ill pass,original,cancel,3 -yes,TRUE,lambada,book,1 -no,"no, that is my response",original,cancel,3 -no,certainly false,parrot,cancel,3 -yes,good,parrot,book,1 -date,what is the day today?,lambada,avail,0 -reminder_update,remind me,original,resched,5 -yes,definitely yes,parrot,book,1 -yes,that is right,original,book,1 -no,erroneous,parrot,cancel,3 -greeting,is everything ok today?,original,greet,4 -date,where's tomorrow's date,parrot,avail,0 -calendar_update,i want to add an appointment to my calendar for friday,lambada,resched,5 -how_busy,does it get busy around 5?,parrot,avail,0 -reminder_update,just a reminder,parrot,resched,5 -how_busy,how long will the wait be at yosemite,lambada,avail,0 -how_busy,how long after 7pm,parrot,avail,0 -no,it seems wrong,parrot,cancel,3 -meeting_schedule,have any meetings between 4 and 5?,parrot,avail,0 -no,that's incorrect,original,cancel,3 -date,tell me today's date?,original,avail,0 -greeting,bonjour,original,greet,4 -thank_you,so grateful,parrot,bye,2 -yes,TRUE,original,book,1 -yes,absolutely!,original,book,1 -no,there is no,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -schedule_meeting,could you schedule a meeting with john smith at 1 pm tomorrow,original,book,1 -goodbye,bye-bye,original,bye,2 -yes,"affirmative, go ahead",original,book,1 -no,certainly not,original,cancel,3 -thank_you,thanks!,original,bye,2 -yes,obviously,parrot,book,1 -no,negation,parrot,cancel,3 -yes,approved,original,book,1 -yes,ya,original,book,1 -greeting,hey fellows,parrot,greet,4 -greeting,how's everything,original,greet,4 -thank_you,thanks for helping me!,original,bye,2 -goodbye,catch you later,original,bye,2 -yes,TRUE,original,book,1 -how_busy,what if there's a long wait at the cheese cake factory?,parrot,avail,0 -thank_you,the best,parrot,bye,2 -thank_you,you helped me today,parrot,bye,2 -yes,and you're right,parrot,book,1 -no,erroneous,parrot,cancel,3 -no,no please,parrot,cancel,3 -thank_you,i'm grateful,original,bye,2 -yes,affirmitive,original,book,1 -meeting_schedule,when's my meeting with john?,parrot,avail,0 -goodbye,see ya!,original,bye,2 -greeting,how is it going,original,greet,4 -yes,yeah yeah,lambada,book,1 -yes,i'd say yes,parrot,book,1 -greeting,hola!,original,greet,4 -yes,positive,parrot,book,1 -goodbye,"that's all, bye",original,bye,2 -calendar_update,erase all events on friday from my calendar,original,resched,5 -thank_you,again thank you,parrot,bye,2 -yes,TRUE,original,book,1 -yes,yay,lambada,book,1 -greeting,how does ai feel?,parrot,greet,4 -yes,yeah,original,book,1 -calendar,what's happening on may 3rd,original,avail,0 -calendar,what's my schedule for january 14th,lambada,avail,0 -yes,obviously,parrot,book,1 -no,is it a lie?,parrot,cancel,3 -yes,affirmitive,original,book,1 -thank_you,i'm thankful,original,bye,2 -how_busy,is the restaurant most busy during dinner?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -date,i'd like to get the date for today,parrot,avail,0 -thank_you,i really appreciate you,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -no,that's not necessarily true,lambada,cancel,3 -yes,yeah yeah,lambada,book,1 -yes,i know,parrot,book,1 -yes,confirm,original,book,1 -yes,uh huh,original,book,1 -greeting,hi how are you,original,greet,4 -no,don't like that no,parrot,cancel,3 -no,nothing,parrot,cancel,3 -thank_you,the help is appreciated,parrot,bye,2 -yes,yup,original,book,1 -greeting,how's everything?,parrot,greet,4 -date,what is current day?,parrot,avail,0 -greeting,what's happened?,parrot,greet,4 -goodbye,adios,original,bye,2 -thank_you,i'm thankful,original,bye,2 -greeting,ahoy there,lambada,greet,4 -goodbye,later!,original,bye,2 -greeting,how's everything going?,parrot,greet,4 -greeting,ahoy hoy,original,greet,4 -greeting,salutations!,original,greet,4 -how_busy,is the olive garden busy at lunchtime?,parrot,avail,0 -yes,sure,original,book,1 -no,FALSE,lambada,cancel,3 -no,i prefer not,parrot,cancel,3 -yes,obviously,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -thank_you,thank you so much,original,bye,2 -how_busy,is sage busy at noon?,parrot,avail,0 -yes,i vote yes,original,book,1 -goodbye,good luck later,parrot,bye,2 -greeting,how are you?,parrot,greet,4 -greeting,hey it's up,lambada,greet,4 -yes,that's correct,original,book,1 -goodbye,farewell,original,bye,2 -meeting_schedule,when's my meeting?,parrot,avail,0 -greeting,hiya,original,greet,4 -greeting,hi,original,greet,4 -greeting,hey there,original,greet,4 -no,so that's no,parrot,cancel,3 -how_busy,how many times will i be able to get a table at the restaurant?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -thank_you,thanks a million,original,bye,2 -date,describe the day?,parrot,avail,0 -calendar_update,i need to add my doctor's appointment to my calendar for the first,original,resched,5 -no,no way!,original,cancel,3 -goodbye,"thanks, bye",original,bye,2 -greeting,how's it going?,parrot,greet,4 -goodbye,bye bye,lambada,bye,2 -thank_you,i'm happy you've helped me,parrot,bye,2 -calendar_update,can you add a doctor's appointment to friday's calendar?,original,resched,5 -no,nothing,parrot,cancel,3 -greeting,"hey, ai",original,greet,4 -date,what month today?,parrot,avail,0 -yes,positive,parrot,book,1 -no,certainly not,original,cancel,3 -greeting,"hello, hello, hello",lambada,greet,4 -reminder_update,add a note,parrot,resched,5 -greeting,bonjour,original,greet,4 -goodbye,peace out,original,bye,2 -thank_you,thanks,original,bye,2 -schedule_meeting,can you book the meeting?,parrot,book,1 -greeting,welcome,parrot,greet,4 -no,is very false,parrot,cancel,3 -no,no that isn't correct,original,cancel,3 -no,erroneous,parrot,cancel,3 -yes,oh yes,original,book,1 -yes,definitely,original,book,1 -greeting,whats new?,parrot,greet,4 -calendar,tell me what's on my calendar for march 25th,parrot,avail,0 -no,FALSE,original,cancel,3 -goodbye,goodbye,original,bye,2 -goodbye,goodbye,original,bye,2 -no,that's very negative,parrot,cancel,3 -yes,a fact,parrot,book,1 -goodbye,sayonara,original,bye,2 -yes,positive,original,book,1 -yes,huh huh,parrot,book,1 -yes,confirm,original,book,1 -thank_you,you're a big help,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -no,not happening,original,cancel,3 -yes,uh-huh,original,book,1 -how_busy,how busy is imo at 11?,parrot,avail,0 -date,what's the date now?,parrot,avail,0 -no,that's no longer valid,parrot,cancel,3 -yes,my answer is yes,parrot,book,1 -goodbye,i'm out of here,original,bye,2 -no,that's no,parrot,cancel,3 -yes,ok,original,book,1 -greeting,salutation,parrot,greet,4 -greeting,yo how yo feelin,lambada,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,later!,original,bye,2 -no,ill pass,original,cancel,3 -goodbye,fairwell,original,bye,2 -yes,great,original,book,1 -greeting,hey fellow,parrot,greet,4 -thank_you,thank you kindly,original,bye,2 -greeting,salutation,parrot,greet,4 -no,nada,original,cancel,3 -no,that's erroneous,parrot,cancel,3 -yes,i think that's correct,parrot,book,1 -greeting,how's everything,original,greet,4 -no,it is no,original,cancel,3 -goodbye,", goodbye",lambada,bye,2 -greeting,how's my feeling?,parrot,greet,4 -greeting,good day,original,greet,4 -yes,it's true,original,book,1 -how_busy,sage's busy at noon?,parrot,avail,0 -no,that isn't the right answer,original,cancel,3 -greeting,aloha,original,greet,4 -thank_you,it's my debt,parrot,bye,2 -greeting,hey,original,greet,4 -how_busy,the wait at rancho alamo?,parrot,avail,0 -thank_you,thank you for my time,original,bye,2 -date,what year?,parrot,avail,0 -yes,approved,original,book,1 -greeting,what's my feeling?,parrot,greet,4 -yes,accept,parrot,book,1 -how_busy,is ihop busy?,parrot,avail,0 -greeting,hola!,original,greet,4 -cancel_reservation,please delete the reservation for 3 people in the backcountry,parrot,cancel,3 -no,the negator,parrot,cancel,3 -how_busy,around nine is ambrosio busy,parrot,avail,0 -date,tell me the date,parrot,avail,0 -yes,it's logical,parrot,book,1 -no,negative definitely,parrot,cancel,3 -thank_you,appreciate it,original,bye,2 -no,negative for sure,original,cancel,3 -no,negation,parrot,cancel,3 -how_busy,how long is the wait at the lobster?,parrot,avail,0 -yes,it'll be yes,parrot,book,1 -yes,"yes, please",parrot,book,1 -no,i'd rather not answer,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -greeting,hey how are you doing?,parrot,greet,4 -no,not good,parrot,cancel,3 -no,nothing,parrot,cancel,3 -reminder_update,give me a reminder to take my medicine,parrot,resched,5 -goodbye,bye,original,bye,2 -yes,great,original,book,1 -how_busy,how long will it take me to get a table in the cheesecake factory,parrot,avail,0 -date,what is tomorrow?,parrot,avail,0 -greeting,how ya doin,original,greet,4 -yes,ya,original,book,1 -thank_you,good answer thanks for the information,parrot,bye,2 -goodbye,please talk soon,parrot,bye,2 -cancel_reservation,i need to cancel my dinner reservation,original,cancel,3 -no,it's my false statement,parrot,cancel,3 -thank_you,thank you for helping me today,parrot,bye,2 -goodbye,i'll leave,parrot,bye,2 -yes,yeah you got it,lambada,book,1 -greeting,hey there fellow,original,greet,4 -greeting,you good?,parrot,greet,4 -greeting,hey bs,lambada,greet,4 -goodbye,good talk,parrot,bye,2 -thank_you,i'm excited about my help,parrot,bye,2 -greeting,aloha,original,greet,4 -date,what's the month and day next?,parrot,avail,0 -no,nothing good,parrot,cancel,3 -how_busy,tell me if there's a long wait time at olive garden at 5pm?,parrot,avail,0 -no,nay,original,cancel,3 -how_busy,how long will the wait be at this restaurant?,parrot,avail,0 -goodbye,see ya!,original,bye,2 -reminder_update,give me a reminder to call bill,parrot,resched,5 -goodbye,thanks bye bye!,original,bye,2 -schedule_meeting,i need to set a meeting with mike at 5pm,lambada,book,1 -greeting,"hello, anyone there",original,greet,4 -no,FALSE,original,cancel,3 -goodbye,bye my friend,parrot,bye,2 -yes,sure thing,original,book,1 -no,that isn't right,original,cancel,3 -calendar,what's on my calendar on march 10th,original,avail,0 -yes,yes you are,original,book,1 -schedule_meeting,are there meeting rooms available between 9 and 10?,parrot,book,1 -greeting,are you doing well?,original,greet,4 -goodbye,sign off,parrot,bye,2 -yes,that's a yes from me,original,book,1 -how_busy,how busy is chili's at 730?,parrot,avail,0 -thank_you,thanks please,original,bye,2 -yes,yep,original,book,1 -yes,it's true,original,book,1 -date,"what is today's month, day and year?",original,avail,0 -no,negative,original,cancel,3 -schedule_meeting,i need an agenda,parrot,book,1 -thank_you,i appeciate it,parrot,bye,2 -goodbye,good call,parrot,bye,2 -no,not true,original,cancel,3 -yes,yep,original,book,1 -yes,i think you've got it,parrot,book,1 -no,that's not right?,parrot,cancel,3 -how_busy,tell me how busy the restaurant is at 5pm?,parrot,avail,0 -greeting,whats new?,parrot,greet,4 -yes,ok,original,book,1 -greeting,hi,original,greet,4 -how_busy,is the restaurant crowded during the night?,parrot,avail,0 -thank_you,appreciate the help,original,bye,2 -greeting,"hello, anyone there",original,greet,4 -yes,TRUE,original,book,1 -no,"no, that isn't right",lambada,cancel,3 -thank_you,thanks again,original,bye,2 -yes,you got it,parrot,book,1 -no,that's bad,parrot,cancel,3 -calendar_update,clear my calendar for april 20th,original,resched,5 -how_busy,can i wait at the cheese cake factory?,parrot,avail,0 -calendar,show me my calendar?,parrot,avail,0 -yes,accepted,original,book,1 -calendar_update,go ahead and cancel the appointment i scheduled for monday,parrot,resched,5 -yes,positive,parrot,book,1 -date,in three days,parrot,avail,0 -yes,oh yes,original,book,1 -goodbye,take care then,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -no,that's very negative,parrot,cancel,3 -calendar,can you check my calendar for march 8th?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -yes,ya,original,book,1 -yes,it is a true,original,book,1 -no,negation,parrot,cancel,3 -yes,affirmative,original,book,1 -greeting,so how's everything?,parrot,greet,4 -greeting,how're you?,parrot,greet,4 -greeting,welcome,parrot,greet,4 -yes,i think that's correct,parrot,book,1 -yes,all right,parrot,book,1 -greeting,wassup,original,greet,4 -yes,i vote yes,original,book,1 -greeting,how are you doing?,parrot,greet,4 -no,it's not correct,parrot,cancel,3 -no,that is no,lambada,cancel,3 -no,sure it's wrong,parrot,cancel,3 -goodbye,good talk,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -greeting,"yo, hows it going",original,greet,4 -greeting,heyo,original,greet,4 -yes,sure thing,original,book,1 -goodbye,goodbye ai,parrot,bye,2 -how_busy,tell me how busy the miami marriott will be at 5 pm,parrot,avail,0 -no,certainly false,parrot,cancel,3 -date,i need a date in 256 days,parrot,avail,0 -yes,"yes, please",parrot,book,1 -no,no thanks,original,cancel,3 -goodbye,great talking with you,parrot,bye,2 -no,this is false,parrot,cancel,3 -date,what's going on today?,parrot,avail,0 -how_busy,in olive garden how long does it normally take to wait?,parrot,avail,0 -no,invalid,original,cancel,3 -no,that's a false,lambada,cancel,3 -greeting,wake up ai,parrot,greet,4 -goodbye,adios,original,bye,2 -no,there is no,parrot,cancel,3 -how_busy,is ihop busy?,parrot,avail,0 -yes,say yes,lambada,book,1 -yes,definitely,original,book,1 -calendar_update,clear my calendar for the date of thursday,lambada,resched,5 -goodbye,goodbye for now,parrot,bye,2 -thank_you,again thanks,parrot,bye,2 -goodbye,later!,original,bye,2 -no,no way!,original,cancel,3 -goodbye,bye!,original,bye,2 -how_busy,how long will it take me to get seated at the red lobster?,parrot,avail,0 -yes,absolutely!,original,book,1 -date,what's today,original,avail,0 -goodbye,good talk,parrot,bye,2 -greeting,so how's it going?,parrot,greet,4 -no,not right,parrot,cancel,3 -goodbye,farewell!,original,bye,2 -yes,oh-huh,parrot,book,1 -goodbye,goodbye,original,bye,2 -goodbye,my friend,parrot,bye,2 -reminder_update,set a reminder,original,resched,5 -calendar_update,remove the baby shower from my calendar,parrot,resched,5 -no,"please, no",original,cancel,3 -yes,okay,original,book,1 -reminder_update,pay taxes on monday,parrot,resched,5 -how_busy,outback steakhouse at 6pm,parrot,avail,0 -calendar,please tell me what is on my calendar for march 30th?,parrot,avail,0 -yes,TRUE,original,book,1 -greeting,what's my feeling?,parrot,greet,4 -goodbye,it's over,parrot,bye,2 -yes,absolutely correct,original,book,1 -goodbye,bye bye,lambada,bye,2 -goodbye,goodnight,original,bye,2 -how_busy,list the wait times for red lobster?,parrot,avail,0 -no,that's erroneous,parrot,cancel,3 -calendar,what's tuesday on my calendar now?,parrot,avail,0 -date,please share today's date,original,avail,0 -schedule_meeting,i want you to set a meeting with john at 5 pm,original,book,1 -thank_you,thanks,original,bye,2 -date,in five days?,parrot,avail,0 -yes,ok,original,book,1 -thank_you,thanks!,original,bye,2 -yes,absolutely!,original,book,1 -greeting,bonjour,original,greet,4 -goodbye,bye,original,bye,2 -goodbye,farewell!,original,bye,2 -reminder_update,make a reminder to change the cat litter,original,resched,5 -goodbye,bye,original,bye,2 -yes,affirmative,original,book,1 -greeting,"hello, how are things",original,greet,4 -how_busy,what's the average amount of people at the chipotle restaurant around 8:30,lambada,avail,0 -meeting_schedule,schedule my meetings for today,lambada,avail,0 -greeting,what's new?,parrot,greet,4 -how_busy,is ihop busy around 7am?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -greeting,hi how's everything?,parrot,greet,4 -goodbye,i'll see you next time,lambada,bye,2 -reminder_update,come on please,parrot,resched,5 -goodbye,buhbye,original,bye,2 -yes,yes,original,book,1 -goodbye,later,original,bye,2 -no,i meant no,original,cancel,3 -no,it's not necessarily true,parrot,cancel,3 -thank_you,my thanks,parrot,bye,2 -how_busy,how long would i have to wait for a table at the red lobster?,parrot,avail,0 -no,"no, definitely not",original,cancel,3 -greeting,good morning ai,parrot,greet,4 -goodbye,goodbye,original,bye,2 -how_busy,how busy is chili's at 5pm?,parrot,avail,0 -goodbye,", goodbye",lambada,bye,2 -yes,say positive,parrot,book,1 -greeting,aho,parrot,greet,4 -thank_you,many thanks,original,bye,2 -greeting,aho,parrot,greet,4 -yes,sure,original,book,1 -greeting,hello are you all right?,parrot,greet,4 -yes,is true,parrot,book,1 -greeting,salutation,parrot,greet,4 -greeting,salutations,parrot,greet,4 -thank_you,thank ya!,original,bye,2 -greeting,welcome,parrot,greet,4 -goodbye,later good luck,parrot,bye,2 -goodbye,i'm leaving,parrot,bye,2 -yes,approved,original,book,1 -date,date tomorrow,parrot,avail,0 -reminder_update,do you want me to set a reminder to pay the taxes tomorrow?,lambada,resched,5 -date,what's the next month?,parrot,avail,0 -thank_you,"oh, thanks",original,bye,2 -yes,ya,original,book,1 -greeting,how goes it,original,greet,4 -goodbye,see ya,lambada,bye,2 -goodbye,tootles,original,bye,2 -no,not correct,parrot,cancel,3 -goodbye,tootles,original,bye,2 -greeting,hi,original,greet,4 -goodbye,see you later!,original,bye,2 -goodbye,thanks bye bye!,original,bye,2 -yes,good yes,lambada,book,1 -yes,"yes, that's confirmed",original,book,1 -goodbye,", goodbye",lambada,bye,2 -how_busy,how busy will ihop be at 5 o'clock?,parrot,avail,0 -goodbye,"later, goodbye",lambada,bye,2 -yes,affirmitive,original,book,1 -how_busy,how busy this restaurant is at the moment?,parrot,avail,0 -no,nay,original,cancel,3 -how_busy,waiting at macaroni grill?,parrot,avail,0 -goodbye,"thanks, bye",original,bye,2 -calendar_update,is it possible to add a doctor appointment to the friday calendar?,parrot,resched,5 -cancel_reservation,cancellation of pizza reservation at 4 pm,parrot,cancel,3 -no,it is indeed false,lambada,cancel,3 -no,it is false,original,cancel,3 -how_busy,is the wait at the chili too long?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -reminder_update,a new reminder please,parrot,resched,5 -yes,"yes, please",parrot,book,1 -no,is my falsehood?,parrot,cancel,3 -goodbye,bye bye!,original,bye,2 -how_busy,wait how long do you expect to wait in the cheese cake factory?,parrot,avail,0 -greeting,hello good day,parrot,greet,4 -yes,is true,parrot,book,1 -no,i'd say no,original,cancel,3 -goodbye,bye bye,lambada,bye,2 -yes,positive,parrot,book,1 -no,what isn't true?,parrot,cancel,3 -goodbye,farewell,original,bye,2 -greeting,hey there,original,greet,4 -how_busy,do people come to chili's around 6pm?,parrot,avail,0 -greeting,well hello,original,greet,4 -goodbye,goodbye!,original,bye,2 -goodbye,time to say goodbye,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -no,it would be false,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -goodbye,later,original,bye,2 -greeting,salutations,parrot,greet,4 -meeting_schedule,what's on my agenda today?,parrot,avail,0 -no,negative,original,cancel,3 -greeting,hows it going,lambada,greet,4 -no,that is actually false,original,cancel,3 -goodbye,goodbye thank you,parrot,bye,2 -date,what will it be in fourteen days?,parrot,avail,0 -goodbye,until the next time,parrot,bye,2 -goodbye,see you around,original,bye,2 -yes,ya,original,book,1 -goodbye,tootles,original,bye,2 -greeting,heller,original,greet,4 -goodbye,adios,original,bye,2 -no,negatory?,parrot,cancel,3 -greeting,hows it going,lambada,greet,4 -how_busy,how busy is tia around six?,parrot,avail,0 -no,that's a false statement,lambada,cancel,3 -no,that's not it,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -yes,ok,original,book,1 -goodbye,goodbye!,original,bye,2 -yes,so it's real,parrot,book,1 -no,nothing good,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -yes,obviously,parrot,book,1 -no,negatory?,parrot,cancel,3 -goodbye,goodbye later,parrot,bye,2 -goodbye,catch you around,original,bye,2 -greeting,how's this going?,parrot,greet,4 -meeting_schedule,what time is my meeting scheduled for?,lambada,avail,0 -goodbye,have fun?,lambada,bye,2 -greeting,hi ai,original,greet,4 -date,in 8 days?,parrot,avail,0 -greeting,heller,original,greet,4 -no,no?,parrot,cancel,3 -yes,i know what i get,parrot,book,1 -greeting,ahoy,lambada,greet,4 -meeting_schedule,time for today's meeting?,parrot,avail,0 -meeting_schedule,tell me what meeting i have today,parrot,avail,0 -meeting_schedule,do you know about my meeting with lorry?,parrot,avail,0 -schedule_meeting,can you arrange a meeting with john for 12?,parrot,book,1 -calendar,what's my schedule for march 15th?,parrot,avail,0 -how_busy,how long do you expect to wait for the table in olive garden,parrot,avail,0 -thank_you,i'm really grateful,parrot,bye,2 -greeting,hey fellows,parrot,greet,4 -reminder_update,need to remind me to pray,parrot,resched,5 -date,what's the date we're going to be?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -yes,yeah,original,book,1 -goodbye,goodnight,original,bye,2 -goodbye,i'm done talking to you,parrot,bye,2 -thank_you,thank you,original,bye,2 -calendar,is bowling on my calendar?,original,avail,0 -yes,yes that's correct,original,book,1 -yes,accept,parrot,book,1 -yes,oh-huh,parrot,book,1 -yes,"yeah that's right, so true",original,book,1 -how_busy,is there a wait time at bjs?,parrot,avail,0 -cancel_reservation,please delete the reservation for 3 people at the outback,parrot,cancel,3 -greeting,hello there,original,greet,4 -goodbye,i must run now,parrot,bye,2 -yes,confirmed,original,book,1 -thank_you,awesome thank you,parrot,bye,2 -yes,TRUE,lambada,book,1 -greeting,nice day,lambada,greet,4 -date,what's my date?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -greeting,hi how's it going?,parrot,greet,4 -yes,"yes, please",parrot,book,1 -how_busy,can you tell me the wait times at the cheesecake factory?,parrot,avail,0 -no,negative,original,cancel,3 -how_busy,how busy will red robin be at 5 pm,lambada,avail,0 -goodbye,later!,original,bye,2 -goodbye,sayonara,original,bye,2 -date,is it monday?,parrot,avail,0 -thank_you,your answer was pleasant,parrot,bye,2 -yes,"yes, that is it",original,book,1 -yes,it makes sense,parrot,book,1 -meeting_schedule,which meetings do i have today?,parrot,avail,0 -date,when is it going to be in 7 days?,parrot,avail,0 -no,it's a negative,parrot,cancel,3 -how_busy,is ziggy busy at dinner time?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -meeting_schedule,meeting today,parrot,avail,0 -no,no!,original,cancel,3 -no,that's erroneous,parrot,cancel,3 -yes,it's positive,parrot,book,1 -yes,i guess yes,parrot,book,1 -reminder_update,please remind me again,parrot,resched,5 -how_busy,how long would i have to wait for a table in red lobster,parrot,avail,0 -reminder_update,please check the steak,parrot,resched,5 -no,not right?,parrot,cancel,3 -goodbye,buhbye now,lambada,bye,2 -yes,obviously,parrot,book,1 -goodbye,bye-bye,original,bye,2 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -no,it's a lie,parrot,cancel,3 -no,that's no longer valid,parrot,cancel,3 -thank_you,you're a big help,parrot,bye,2 -yes,confirmed,original,book,1 -how_busy,how busy is red lobster,lambada,avail,0 -no,nada,original,cancel,3 -goodbye,afterward,parrot,bye,2 -no,it's a no,original,cancel,3 -no,no!,original,cancel,3 -goodbye,i'm glad we got to talk again,parrot,bye,2 -no,that is very false,lambada,cancel,3 -greeting,how's everything,original,greet,4 -reminder_update,add a reminder,lambada,resched,5 -yes,yup,original,book,1 -no,nope,original,cancel,3 -no,nothing,parrot,cancel,3 -no,negative,original,cancel,3 -greeting,how's my life?,parrot,greet,4 -no,negative sure,parrot,cancel,3 -schedule_meeting,is it possible to schedule a meeting with scott at noon?,parrot,book,1 -yes,definitely,original,book,1 -no,that is erroneous,original,cancel,3 -no,erroneous,parrot,cancel,3 -cancel_reservation,cancellation of dinner reservation,parrot,cancel,3 -thank_you,thanks,original,bye,2 -yes,oh-huh,parrot,book,1 -yes,please let's do that,parrot,book,1 -thank_you,for the help i'm very grateful,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -no,not right,parrot,cancel,3 -thank_you,and you're doing well,parrot,bye,2 -goodbye,bye,original,bye,2 -calendar,what do you have on my calendar for 1st of march?,parrot,avail,0 -calendar_update,"you can remove the brithday party from my calendar fpr january 15, 2019",original,resched,5 -no,negatory?,parrot,cancel,3 -yes,confirm,original,book,1 -date,what's my day today?,parrot,avail,0 -goodbye,for now,parrot,bye,2 -yes,that's all right,parrot,book,1 -no,certainly false,parrot,cancel,3 -cancel_reservation,get a salad off,parrot,cancel,3 -greeting,aloha,original,greet,4 -no,FALSE,original,cancel,3 -thank_you,did you do well?,parrot,bye,2 -how_busy,should fry be busy around 7pm?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -yes,sure thing,original,book,1 -how_busy,do i need to be worried about the wait at 2:30 in the morning?,lambada,avail,0 -how_busy,how long before i can have a burger in olive garden,parrot,avail,0 -how_busy,how long do i have to wait to go to rrb?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -date,please show the date,parrot,avail,0 -yes,uh huh,original,book,1 -yes,"yes, please",parrot,book,1 -goodbye,good conversation,parrot,bye,2 -date,can you tell me what the day is tomorrow?,parrot,avail,0 -no,naw,parrot,cancel,3 -schedule_meeting,reservate a meeting room for thursday at 3pm,parrot,book,1 -no,negatory,original,cancel,3 -goodbye,good bye my friend,original,bye,2 -schedule_meeting,can you schedule a meeting with steve at the company please?,parrot,book,1 -thank_you,really great!,original,bye,2 -date,what's the date?,parrot,avail,0 -yes,yeah,original,book,1 -yes,huh,parrot,book,1 -date,what date tomorrow?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -no,that’s not correct,original,cancel,3 -goodbye,goodbye!,original,bye,2 -greeting,salutations!,original,greet,4 -yes,"yes, that's accurate",original,book,1 -yes,affirmitive,original,book,1 -greeting,hello there!,original,greet,4 -date,please tell me what it's like today,parrot,avail,0 -meeting_schedule,when is my meeting with dan scheduled?,lambada,avail,0 -thank_you,you've been great,parrot,bye,2 -no,that is false,original,cancel,3 -greeting,hey bs,lambada,greet,4 -no,that's absolutely false,parrot,cancel,3 -greeting,how's otc?,parrot,greet,4 -no,please disagree,lambada,cancel,3 -goodbye,thank you for the discussion,parrot,bye,2 -no,it's a false,lambada,cancel,3 -greeting,how's it hanging,original,greet,4 -greeting,how's my family?,parrot,greet,4 -meeting_schedule,wanna meet roger?,parrot,avail,0 -calendar_update,make sure the trip to the zoo is on my calendar,parrot,resched,5 -yes,positive,parrot,book,1 -goodbye,bye,original,bye,2 -yes,good yes,lambada,book,1 -goodbye,bye-bye,original,bye,2 -goodbye,i want it now,parrot,bye,2 -no,i think not,original,cancel,3 -yes,oh-huh,parrot,book,1 -greeting,how's otc?,parrot,greet,4 -no,invalid,original,cancel,3 -thank_you,your answer was a pleasure,parrot,bye,2 -greeting,hey what's up?,parrot,greet,4 -greeting,"hey, what's up",original,greet,4 -goodbye,sayonara ,parrot,bye,2 -calendar,what's my schedule for april 1?,parrot,avail,0 -no,that's not the way,parrot,cancel,3 -no,that's negative,parrot,cancel,3 -thank_you,appreciate it,original,bye,2 -thank_you,thanks,original,bye,2 -yes,facts,original,book,1 -yes,TRUE,original,book,1 -goodbye,bye!,original,bye,2 -date,what is tomorrow?,parrot,avail,0 -greeting,how you feel?,parrot,greet,4 -greeting,what's happening to you?,parrot,greet,4 -greeting,how's it going,lambada,greet,4 -goodbye,goodbyes soon,parrot,bye,2 -date,the date is today,parrot,avail,0 -goodbye,goodbye,original,bye,2 -yes,positive,original,book,1 -greeting,how ya doing,lambada,greet,4 -date,what's the day tomorrow?,parrot,avail,0 -goodbye,later good luck,parrot,bye,2 -yes,yay,lambada,book,1 -yes,TRUE,original,book,1 -no,FALSE,original,cancel,3 -no,no that isn't right,original,cancel,3 -greeting,salutations,parrot,greet,4 -date,current day,parrot,avail,0 -no,but that's not factual,parrot,cancel,3 -no,yes that's false,lambada,cancel,3 -greeting,hey,original,greet,4 -how_busy,how long will i have to wait in the cheesecake factory before dinner,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -no,don't like that,parrot,cancel,3 -yes,all right,original,book,1 -reminder_update,please remind me to make my resume,parrot,resched,5 -goodbye,catch you around,original,bye,2 -yes,that's a yes,original,book,1 -greeting,hey how's ot,lambada,greet,4 -no,negatory?,parrot,cancel,3 -yes,exactly right,original,book,1 -no,indeed it's false,parrot,cancel,3 -goodbye,talk to me soon,parrot,bye,2 -goodbye,goodnight,original,bye,2 -yes,yay,lambada,book,1 -yes,very true,original,book,1 -no,no please,parrot,cancel,3 -yes,yes that is true,lambada,book,1 -greeting,how are you today,original,greet,4 -greeting,wassup,original,greet,4 -no,say negative,parrot,cancel,3 -meeting_schedule,when are my meetings?,parrot,avail,0 -no,negative definitely,parrot,cancel,3 -yes,10-Apr,original,book,1 -no,so that's no,parrot,cancel,3 -goodbye,maybe next time,parrot,bye,2 -how_busy,is it always crowded?,parrot,avail,0 -greeting,you good?,parrot,greet,4 -yes,thats right,original,book,1 -how_busy,how long will i wait before i can get a table in an italian bakery,parrot,avail,0 -yes,right,parrot,book,1 -goodbye,goodbye soon,lambada,bye,2 -goodbye,buhbye,original,bye,2 -how_busy,is sage busy around noon?,original,avail,0 -schedule_meeting,how do i make a meeting?,parrot,book,1 -thank_you,thank you for my assistance,original,bye,2 -thank_you,thanks for answering that,lambada,bye,2 -calendar_update,this month we have to clear our calendar so we can leave it open for mark to visit,parrot,resched,5 -thank_you,you have my gratitude,original,bye,2 -yes,indeed,original,book,1 -goodbye,bye bye,lambada,bye,2 -yes,sure,original,book,1 -cancel_reservation,can you cancel a reservation?,parrot,cancel,3 -how_busy,do you know how busy the outback steakhouse will be at 5 o'clock?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -greeting,hey how's ot,lambada,greet,4 -yes,definitely,original,book,1 -reminder_update,and i'd like to remind you of my holidays,parrot,resched,5 -yes,"affirmative, go ahead",original,book,1 -greeting,hola,original,greet,4 -goodbye,tootles?,parrot,bye,2 -greeting,hows life for you,lambada,greet,4 -no,not right,parrot,cancel,3 -yes,absolutely,original,book,1 -yes,affirmative,original,book,1 -calendar,what appointments do i have tomorrow after 1:00pm?,original,avail,0 -how_busy,is it necessary for me to wait for a table in the restaurant?,parrot,avail,0 -no,that's erroneous,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -schedule_meeting,can you show me how to schedule a meeting,parrot,book,1 -no,so that's no,parrot,cancel,3 -thank_you,very grateful,parrot,bye,2 -thank_you,thanks again,original,bye,2 -goodbye,bye bye!,original,bye,2 -greeting,hello good day,parrot,greet,4 -yes,yes that's right,lambada,book,1 -reminder_update,set a reminder,original,resched,5 -goodbye,sayonara ,parrot,bye,2 -no,that's a lie,parrot,cancel,3 -yes,yeap,original,book,1 -greeting,hello how's it going,original,greet,4 -yes,absolutely!,original,book,1 -no,you can not make that statement true,lambada,cancel,3 -how_busy,how busy is the cheesecake factory at 8?,parrot,avail,0 -no,"no, it's not",lambada,cancel,3 -goodbye,sayonara ,parrot,bye,2 -yes,TRUE,lambada,book,1 -schedule_meeting,i want a meeting to be scheduled,original,book,1 -goodbye,sayonara,original,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -no,that's untrue,parrot,cancel,3 -goodbye,i'll leave,parrot,bye,2 -yes,huh,parrot,book,1 -greeting,aho,parrot,greet,4 -no,naw,original,cancel,3 -greeting,hey hey!,original,greet,4 -how_busy,how busy the chili's will be at 11 pm?,parrot,avail,0 -reminder_update,can you remind me to pay my bills?,parrot,resched,5 -greeting,heller,original,greet,4 -greeting,how are things?,parrot,greet,4 -greeting,hello how are you,lambada,greet,4 -goodbye,see you around,original,bye,2 -no,that is overwhelmingly wrong,lambada,cancel,3 -how_busy,is mcdonalds busy?,parrot,avail,0 -thank_you,thanks please,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,good morning,parrot,greet,4 -how_busy,tell me the number of people at chili's around 9pm,parrot,avail,0 -no,FALSE,lambada,cancel,3 -goodbye,goodbye to yours,parrot,bye,2 -yes,TRUE,original,book,1 -greeting,hey there!,original,greet,4 -no,negatory,original,cancel,3 -yes,affirmitive,original,book,1 -goodbye,fairwell?,parrot,bye,2 -date,in 8 days?,parrot,avail,0 -goodbye,thank you for this conversation,parrot,bye,2 -goodbye,have fun?,lambada,bye,2 -greeting,hi,original,greet,4 -how_busy,at what time is a table reserved for me in this restaurant?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -calendar_update,can you add an event to my calendar?,original,resched,5 -no,it's a negation,parrot,cancel,3 -meeting_schedule,is there any meeting with ashley today?,parrot,avail,0 -yes,okay,original,book,1 -thank_you,much obliged,original,bye,2 -no,no!,original,cancel,3 -yes,yeap,original,book,1 -greeting,what is new?,parrot,greet,4 -how_busy,how long do we have to wait before being seated in the cheese cake factory?,parrot,avail,0 -no,no,lambada,cancel,3 -reminder_update,please remind me,parrot,resched,5 -no,that's overwhelmingly negative,parrot,cancel,3 -greeting,hey fellow,parrot,greet,4 -no,is my false claim?,parrot,cancel,3 -thank_you,i'm grateful,original,bye,2 -calendar,how many events are planned for march 15,parrot,avail,0 -thank_you,thank you please,parrot,bye,2 -greeting,aho,parrot,greet,4 -how_busy,tell me the time to wait for the table at the cheesecake factory?,parrot,avail,0 -yes,affirmitive,original,book,1 -calendar,what do i have planned for march 2nd on my calendar?,lambada,avail,0 -greeting,hiya!,original,greet,4 -meeting_schedule,when is homer's meeting?,parrot,avail,0 -yes,"yeah, that's right",original,book,1 -yes,yeah yeah,lambada,book,1 -how_busy,how long do you think i'll need to wait to get a table at chipotle,lambada,avail,0 -no,FALSE,original,cancel,3 -how_busy,how busy are macaroni and cheese right now?,parrot,avail,0 -no,please disagree,lambada,cancel,3 -date,please let me know what day it will be,parrot,avail,0 -thank_you,thanks for all my help,original,bye,2 -yes,that's a fact,lambada,book,1 -yes,TRUE,original,book,1 -greeting,salutation,parrot,greet,4 -greeting,hola,original,greet,4 -date,what's the month of the year?,parrot,avail,0 -meeting_schedule,what will be on my agenda today?,parrot,avail,0 -greeting,hello ai,parrot,greet,4 -goodbye,see ya,original,bye,2 -how_busy,what's the typical time to sit in this restaurant,parrot,avail,0 -greeting,hello there!,original,greet,4 -calendar,what's going on on march 15th,parrot,avail,0 -goodbye,peace out!,original,bye,2 -goodbye,have fun?,lambada,bye,2 -yes,im sure you're right,parrot,book,1 -goodbye,i'll leave,parrot,bye,2 -date,today?,parrot,avail,0 -how_busy,is ian busy around five?,parrot,avail,0 -greeting,wassup,original,greet,4 -goodbye,goodbye now,parrot,bye,2 -thank_you,thanks,original,bye,2 -yes,sure thing,original,book,1 -greeting,salutations!,original,greet,4 -yes,absolutely,original,book,1 -no,that’s not correct,original,cancel,3 -meeting_schedule,meetings today,original,avail,0 -yes,say yes,lambada,book,1 -greeting,hello,original,greet,4 -no,negatory?,parrot,cancel,3 -greeting,hello,original,greet,4 -yes,indeed,original,book,1 -yes,absolutely!,original,book,1 -date,a year?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -reminder_update,keep an eye on the cat litter,parrot,resched,5 -no,that is no longer valid,lambada,cancel,3 -goodbye,later gator!,original,bye,2 -greeting,wanted to say hi,parrot,greet,4 -yes,"yes, that's confirmed",original,book,1 -reminder_update,make a reminder,parrot,resched,5 -goodbye,my way,parrot,bye,2 -yes,that is true,original,book,1 -goodbye,goodbye ai,parrot,bye,2 -greeting,how've you been,original,greet,4 -how_busy,can you tell me how long it will be at the chipotle steakhouse?,parrot,avail,0 -date,what year is it tomorrow?,parrot,avail,0 -thank_you,thanks for my assistance,parrot,bye,2 -yes,say positive,parrot,book,1 -yes,definitely,original,book,1 -goodbye,cya later,original,bye,2 -greeting,aho,parrot,greet,4 -calendar,where do i look for dates on my calendar for march 4th,lambada,avail,0 -goodbye,my way,parrot,bye,2 -goodbye,i'll go,parrot,bye,2 -yes,i just said that,parrot,book,1 -yes,uh huh,original,book,1 -greeting,hiya!,original,greet,4 -greeting,nice day,lambada,greet,4 -no,not good idea,parrot,cancel,3 -schedule_meeting,can you reserve a meeting room for 1:00 pm on friday?,lambada,book,1 -thank_you,you answered,parrot,bye,2 -thank_you,my thanks,parrot,bye,2 -how_busy,when's the best time to get a table in this restaurant?,parrot,avail,0 -yes,not a lie,parrot,book,1 -greeting,salutations,parrot,greet,4 -no,so that's no,parrot,cancel,3 -no,no,lambada,cancel,3 -greeting,wassup,original,greet,4 -yes,perfect,parrot,book,1 -reminder_update,i want to be reminded,parrot,resched,5 -yes,you are definitely correct,lambada,book,1 -how_busy,will the restaurant be busy around 10pm,lambada,avail,0 -yes,perfect,parrot,book,1 -goodbye,see ya,original,bye,2 -goodbye,bye bye,lambada,bye,2 -yes,good,parrot,book,1 -greeting,yo,original,greet,4 -no,negative certainly,parrot,cancel,3 -calendar_update,can you change the date of the doctor's appointment in my calendar from april 1 to april 3?,parrot,resched,5 -schedule_meeting,a meeting room for noon?,parrot,book,1 -thank_you,thanks for the response,lambada,bye,2 -goodbye,"thanks for my help, goodbye!",original,bye,2 -yes,TRUE,original,book,1 -how_busy,tell me the number of people waiting in line at chili's 5pm?,parrot,avail,0 -no,it's a false,lambada,cancel,3 -yes,affirmitive,original,book,1 -date,is it monday?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -yes,absolutely!,original,book,1 -calendar_update,event cancelled scheduled for this afternoon,parrot,resched,5 -no,no no thanks,parrot,cancel,3 -how_busy,how busy is this place at five?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -thank_you,really great!,original,bye,2 -greeting,whats up?,parrot,greet,4 -how_busy,what is it like to wait in olive garden right now?,parrot,avail,0 -goodbye,ill leave now,parrot,bye,2 -goodbye,thanks goodbye,parrot,bye,2 -yes,good,parrot,book,1 -yes,uh-huh,original,book,1 -yes,yes that's right,lambada,book,1 -yes,it's certainly true,parrot,book,1 -yes,roger that,original,book,1 -thank_you,thanks,original,bye,2 -thank_you,thank you!,original,bye,2 -date,today?,parrot,avail,0 -meeting_schedule,can you list my meetings for today?,parrot,avail,0 -no,don't like that no,parrot,cancel,3 -how_busy,is olive garden busy around 6 pm?,lambada,avail,0 -no,that's very wrong,parrot,cancel,3 -thank_you,thanks that was really helpful,original,bye,2 -greeting,why hello?,original,greet,4 -yes,seems true,parrot,book,1 -greeting,hiya,original,greet,4 -yes,accepted,original,book,1 -goodbye,bye-bye,original,bye,2 -meeting_schedule,do you know if i have any meetings with dave today?,lambada,avail,0 -greeting,yo,original,greet,4 -greeting,aloha,original,greet,4 -no,that isn't correct,original,cancel,3 -greeting,how's otc?,parrot,greet,4 -greeting,heyo,original,greet,4 -goodbye,go easy,parrot,bye,2 -no,is not true?,parrot,cancel,3 -goodbye,farewell,original,bye,2 -how_busy,how long it will be in this restaurant?,parrot,avail,0 -schedule_meeting,a meeting with steve at 3pm is needed,parrot,book,1 -greeting,what's up?,parrot,greet,4 -greeting,hiya!,original,greet,4 -date,today?,parrot,avail,0 -goodbye,good luck,lambada,bye,2 -how_busy,mc ericks how long will it take to wait,parrot,avail,0 -goodbye,later gator!,original,bye,2 -greeting,hi,original,greet,4 -goodbye,until next time!,original,bye,2 -no,what you just said is false?,original,cancel,3 -greeting,"wake up, ai",original,greet,4 -schedule_meeting,are there rooms between 5 and 530?,parrot,book,1 -greeting,is everything ok today?,original,greet,4 -how_busy,how long before dinner?,parrot,avail,0 -meeting_schedule,when is the meeting with jim scheduled to begin?,parrot,avail,0 -no,not really,original,cancel,3 -no,nay,original,cancel,3 -yes,i believe you're right,parrot,book,1 -how_busy,is the wait at applebees long?,parrot,avail,0 -goodbye,goodbye to you,original,bye,2 -greeting,salutation,parrot,greet,4 -no,that's inaccurate,original,cancel,3 -date,which date is it,lambada,avail,0 -goodbye,goodbye,original,bye,2 -thank_you,you were a great help,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -no,negation,parrot,cancel,3 -no,no good,original,cancel,3 -yes,"yep, that's right",original,book,1 -greeting,how's idy?,parrot,greet,4 -goodbye,im leaving,parrot,bye,2 -yes,oh-huh,parrot,book,1 -calendar,tell me what events are on my calendar for march 6th?,lambada,avail,0 -no,it's negative,parrot,cancel,3 -no,not true,original,cancel,3 -no,no way!,original,cancel,3 -yes,but i think you got it,parrot,book,1 -reminder_update,make a reminder please,parrot,resched,5 -no,that's so false,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -greeting,are you okay right now?,original,greet,4 -no,no?,parrot,cancel,3 -thank_you,glad that you did it,parrot,bye,2 -yes,the statement is true,original,book,1 -no,not right,parrot,cancel,3 -meeting_schedule,how much time is my meeting scheduled for,lambada,avail,0 -goodbye,farewell!,original,bye,2 -date,what will be the date of tomorrow?,parrot,avail,0 -no,it seems like a no,lambada,cancel,3 -greeting,how're you doing,original,greet,4 -cancel_reservation,i don't want my reservation anymore,parrot,cancel,3 -how_busy,is ziggy busy around dinner time?,parrot,avail,0 -yes,say yes,lambada,book,1 -yes,absolutely correct,original,book,1 -reminder_update,remind me,original,resched,5 -yes,perfect,parrot,book,1 -goodbye,good bye,original,bye,2 -how_busy,is that olive garden busy?,parrot,avail,0 -no,that isn't correct,original,cancel,3 -greeting,good morning,parrot,greet,4 -yes,you got it,parrot,book,1 -no,i'll pass,original,cancel,3 -meeting_schedule,when are we meeting today?,parrot,avail,0 -meeting_schedule,is my schedule clear without meetings with dan today?,parrot,avail,0 -yes,that checks out,original,book,1 -goodbye,be careful then,lambada,bye,2 -goodbye,goodbye!,original,bye,2 -thank_you,you've tried,parrot,bye,2 -goodbye,adios,original,bye,2 -no,that's wrong,original,cancel,3 -greeting,how's my day going?,parrot,greet,4 -no,naw,parrot,cancel,3 -yes,obviously,parrot,book,1 -no,negatory?,parrot,cancel,3 -no,negation,parrot,cancel,3 -greeting,aloha,original,greet,4 -greeting,whats up?,parrot,greet,4 -yes,thats right,original,book,1 -goodbye,really nice to chat with you,parrot,bye,2 -goodbye,was nice talking with you,parrot,bye,2 -yes,approved,original,book,1 -how_busy,how busy is tia's around 6,lambada,avail,0 -no,not necessarily true,parrot,cancel,3 -how_busy,how long do i have to wait at the ranch?,parrot,avail,0 -goodbye,just relax,parrot,bye,2 -how_busy,can you tell me how busy the olive garden is at 730?,parrot,avail,0 -no,not happening,original,cancel,3 -no,this is false,parrot,cancel,3 -no,that'd be a no,original,cancel,3 -no,invalid,original,cancel,3 -greeting,how's the world?,parrot,greet,4 -meeting_schedule,tell me when i'll meet ole?,parrot,avail,0 -no,that's bad,parrot,cancel,3 -thank_you,thanks for cooperating,parrot,bye,2 -how_busy,how busy the olive garden is?,parrot,avail,0 -no,i didn't mean that,parrot,cancel,3 -greeting,salutations!,original,greet,4 -greeting,"hello, ai",original,greet,4 -reminder_update,let me know,parrot,resched,5 -no,it's negative,parrot,cancel,3 -cancel_reservation,you would like to cancel my reservation?,parrot,cancel,3 -yes,very true,original,book,1 -cancel_reservation,please cancel my reservation on the grill,parrot,cancel,3 -goodbye,this conversation was great,parrot,bye,2 -goodbye,goodbye to your,lambada,bye,2 -yes,say yes,lambada,book,1 -how_busy,what is a typical restaurant sitting time?,parrot,avail,0 -date,do you know the date?,parrot,avail,0 -greeting,aloha,original,greet,4 -goodbye,my pleasure to talk with you,parrot,bye,2 -thank_you,my gratitude,parrot,bye,2 -greeting,hey yai,lambada,greet,4 -goodbye,later goodbye,parrot,bye,2 -goodbye,good bye,original,bye,2 -yes,confirm,original,book,1 -date,tell me the date?,original,avail,0 -how_busy,what is the wait time at olive garden today?,lambada,avail,0 -no,false sure,parrot,cancel,3 -how_busy,how busy is chili's at 9:15pm,lambada,avail,0 -greeting,yo how is this going?,parrot,greet,4 -greeting,how is idy?,parrot,greet,4 -how_busy,how long do i have to wait at the restaurant?,parrot,avail,0 -no,nothing,parrot,cancel,3 -greeting,how's my feeling?,parrot,greet,4 -how_busy,how long will the wait time be at the cheese cake factory right now,lambada,avail,0 -yes,correct,original,book,1 -no,that’s actually wrong,original,cancel,3 -no,is a false statement?,parrot,cancel,3 -yes,definitely,original,book,1 -greeting,what do you feel today?,parrot,greet,4 -how_busy,how busy is macy's right now?,parrot,avail,0 -date,what date?,parrot,avail,0 -yes,i'll say yes,parrot,book,1 -cancel_reservation,i will not need the reservation,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -thank_you,appreciated,original,bye,2 -goodbye,bye-bye,original,bye,2 -how_busy,tell me the average wait time at chris brown's steakhouse?,parrot,avail,0 -meeting_schedule,tell me the date of today's meeting?,parrot,avail,0 -yes,uh huh,original,book,1 -greeting,hi there,original,greet,4 -greeting,hola,original,greet,4 -thank_you,thanks,original,bye,2 -yes,its a for sure true,original,book,1 -no,don't agree,parrot,cancel,3 -thank_you,my thanks,parrot,bye,2 -thank_you,thanks,original,bye,2 -thank_you,nice,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -how_busy,if there's a chinese restaurant how long will it take?,parrot,avail,0 -cancel_reservation,i have to cancel my reservation at robin's,parrot,cancel,3 -thank_you,again thank you,parrot,bye,2 -greeting,hello there,original,greet,4 -no,that's certainly false,parrot,cancel,3 -calendar_update,i need to clear out a date on my calendar for next friday,lambada,resched,5 -goodbye,take it easy!,original,bye,2 -no,naw,original,cancel,3 -no,thanks no,parrot,cancel,3 -greeting,how you're doing?,parrot,greet,4 -goodbye,peace,original,bye,2 -goodbye,"goodbye, ai assistant",original,bye,2 -calendar_update,clear my calendar on march 15th,lambada,resched,5 -no,not right,parrot,cancel,3 -thank_you,thank you,original,bye,2 -how_busy,how long is the wait to get into the restaurant,lambada,avail,0 -no,not that,original,cancel,3 -yes,good,parrot,book,1 -calendar_update,i need to add my doctor appointment to my calendar for the first time,parrot,resched,5 -thank_you,you answered,parrot,bye,2 -calendar,what am i supposed to do?,parrot,avail,0 -yes,huh,parrot,book,1 -yes,yes,original,book,1 -yes,i can confirm,parrot,book,1 -meeting_schedule,let me know how many meetings i have scheduled for today,parrot,avail,0 -goodbye,i'm leaving now,lambada,bye,2 -yes,definitely,original,book,1 -calendar,please tell me what is on my calendar for march 15?,parrot,avail,0 -goodbye,nice chat today,lambada,bye,2 -greeting,welcome,parrot,greet,4 -date,what's today,original,avail,0 -thank_you,appreciate the support,parrot,bye,2 -yes,facts,original,book,1 -goodbye,farewell!,original,bye,2 -greeting,welcome,parrot,greet,4 -goodbye,buhbye,original,bye,2 -yes,certainly,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -yes,yep,original,book,1 -date,date tomorrow?,parrot,avail,0 -thank_you,"i really appreciate my help, thank you",original,bye,2 -no,it's negative,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -yes,yeah that's right,lambada,book,1 -goodbye,"nice talking to you, see you soon",lambada,bye,2 -yes,yes,original,book,1 -calendar,what do you plan for march 3rd?,parrot,avail,0 -no,that is false,original,cancel,3 -yes,that is true,lambada,book,1 -thank_you,appreciate the support,parrot,bye,2 -goodbye,great conversation,parrot,bye,2 -goodbye,until next time,original,bye,2 -greeting,have you been good?,original,greet,4 -meeting_schedule,are there any meetings with linus today?,lambada,avail,0 -calendar_update,remove this event from the calendar,parrot,resched,5 -thank_you,i am grateful,lambada,bye,2 -yes,it's logical,parrot,book,1 -meeting_schedule,do we meet today?,parrot,avail,0 -no,that's not a good sign,parrot,cancel,3 -no,that's overwhelmingly negative,parrot,cancel,3 -yes,not a lie,parrot,book,1 -yes,i would say yes,lambada,book,1 -goodbye,peace out!,original,bye,2 -greeting,how's it going,lambada,greet,4 -goodbye,fairwell?,parrot,bye,2 -how_busy,know how busy it is at chili's?,parrot,avail,0 -cancel_reservation,will my reservation at the restaurant be cancelled?,parrot,cancel,3 -how_busy,is this restaurant crowded for dinner?,parrot,avail,0 -yes,10-Apr,original,book,1 -yes,great,original,book,1 -no,not good,parrot,cancel,3 -date,what's the date,original,avail,0 -yes,i'm going to tell you tes,parrot,book,1 -yes,10-Apr,original,book,1 -goodbye,i'm out,parrot,bye,2 -no,negatory,original,cancel,3 -goodbye,sayonara,original,bye,2 -greeting,bonjour,original,greet,4 -meeting_schedule,meetings today,original,avail,0 -reminder_update,"new reminder, please",original,resched,5 -greeting,are you okay??,parrot,greet,4 -yes,ok,original,book,1 -no,FALSE,lambada,cancel,3 -greeting,ai how are you feeling,lambada,greet,4 -date,what date is today?,original,avail,0 -how_busy,how long will i have to wait in the cheesecake factory before dinner?,parrot,avail,0 -goodbye,peace,original,bye,2 -thank_you,thanks a lot,original,bye,2 -greeting,whats up?,parrot,greet,4 -yes,that's a fact,parrot,book,1 -yes,oh yes,original,book,1 -greeting,how you feel?,parrot,greet,4 -greeting,hey bs,lambada,greet,4 -greeting,what's new?,parrot,greet,4 -no,FALSE,original,cancel,3 -goodbye,the conversation with you was fun,parrot,bye,2 -no,and it's very false,parrot,cancel,3 -greeting,hello siri,original,greet,4 -date,what's the date it will be eight days from now,lambada,avail,0 -greeting,hi ai,original,greet,4 -no,no thanks,original,cancel,3 -goodbye,goodnight,original,bye,2 -greeting,good morning,parrot,greet,4 -yes,sure,original,book,1 -no,i didn't mean that,parrot,cancel,3 -no,no?,parrot,cancel,3 -yes,affirmitive,original,book,1 -no,"i do not think that is true, so i would say it is a false statement",original,cancel,3 -goodbye,goodbye ai,parrot,bye,2 -goodbye,nice to talk with you,parrot,bye,2 -yes,yep,original,book,1 -thank_you,you helped,parrot,bye,2 -greeting,how've you been?,parrot,greet,4 -how_busy,how busy will the tasty browns be at 4pm,parrot,avail,0 -date,what's my tomorrow date?,parrot,avail,0 -meeting_schedule,is my meeting with dave planned?,parrot,avail,0 -thank_you,your answer is appreciated,original,bye,2 -goodbye,buhbye,original,bye,2 -greeting,hi there,original,greet,4 -no,not that,original,cancel,3 -goodbye,it was nice to chat,original,bye,2 -greeting,tell me how things are,parrot,greet,4 -goodbye,goodnight,original,bye,2 -greeting,welcome,parrot,greet,4 -goodbye,bye-bye,original,bye,2 -greeting,aho,parrot,greet,4 -no,please no,parrot,cancel,3 -calendar,what's on january 1st?,parrot,avail,0 -greeting,how it goes?,parrot,greet,4 -yes,it is definitely affirmative,original,book,1 -thank_you,thanks for helping,original,bye,2 -greeting,are you well?,original,greet,4 -no,that's incorrect,original,cancel,3 -goodbye,fairwell?,parrot,bye,2 -no,absolutely false,parrot,cancel,3 -thank_you,so grateful,parrot,bye,2 -yes,correct,original,book,1 -date,give me the date,original,avail,0 -reminder_update,remind me to exercise,original,resched,5 -yes,positive,parrot,book,1 -yes,good yes,lambada,book,1 -goodbye,see ya!,original,bye,2 -yes,absolutely,original,book,1 -no,i meant nothing,parrot,cancel,3 -goodbye,i'm going,parrot,bye,2 -yes,i say yes,lambada,book,1 -thank_you,i appreciate your assistance,parrot,bye,2 -date,what date?,parrot,avail,0 -greeting,aho,parrot,greet,4 -how_busy,what's the most busy place at 8:00 pm,lambada,avail,0 -yes,that is true,lambada,book,1 -meeting_schedule,wanna meet with roger?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -yes,great,original,book,1 -no,that's totally wrong!,original,cancel,3 -goodbye,bye bye,lambada,bye,2 -greeting,hola!,original,greet,4 -no,naw,parrot,cancel,3 -greeting,how's my treatment?,parrot,greet,4 -no,it is indeed false,lambada,cancel,3 -no,erroneous,parrot,cancel,3 -no,that's untrue,parrot,cancel,3 -calendar_update,eliminate all calendar entries on 13 april,parrot,resched,5 -yes,okay,original,book,1 -goodbye,sayonara,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -date,tell me the year?,parrot,avail,0 -yes,huh huh,parrot,book,1 -thank_you,"great, thanks!",original,bye,2 -yes,confirmed,original,book,1 -goodbye,thanks for my help goodbye,parrot,bye,2 -goodbye,i'm going,parrot,bye,2 -no,i'll say no,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -yes,huh,parrot,book,1 -date,what day?,parrot,avail,0 -reminder_update,please give me a reminder,original,resched,5 -yes,positive,parrot,book,1 -yes,okay,original,book,1 -goodbye,i'm leaving,parrot,bye,2 -calendar_update,i have to add farm trip to my calendar for friday,original,resched,5 -goodbye,have to go,parrot,bye,2 -thank_you,you were a big help,parrot,bye,2 -yes,accept,parrot,book,1 -greeting,salutations,parrot,greet,4 -thank_you,i'm really thankful,parrot,bye,2 -greeting,hiya!,original,greet,4 -greeting,heyo,original,greet,4 -yes,oh yes,original,book,1 -greeting,how's it going,lambada,greet,4 -calendar,can i put an item on my calendar for the vaccinations of my dog?,parrot,avail,0 -no,"that's no, that is false",lambada,cancel,3 -yes,it's logical,parrot,book,1 -thank_you,thanks,original,bye,2 -no,negating,parrot,cancel,3 -reminder_update,what's a reminder,parrot,resched,5 -thank_you,for that thank you,parrot,bye,2 -thank_you,my gratitude,parrot,bye,2 -thank_you,you're welcome,parrot,bye,2 -yes,yay,lambada,book,1 -yes,accepted,original,book,1 -thank_you,appreciate the support,parrot,bye,2 -greeting,hello there ai,original,greet,4 -no,that's no,parrot,cancel,3 -calendar,what's on my schedule for march 2nd?,parrot,avail,0 -goodbye,peace,original,bye,2 -date,would you let me know what date it will be in three days?,parrot,avail,0 -no,negatory,original,cancel,3 -yes,i want it,parrot,book,1 -reminder_update,i'd like a reminder,parrot,resched,5 -how_busy,how long will i have to wait to be seated at chili's?,parrot,avail,0 -thank_you,that's what you did,parrot,bye,2 -date,what will the date be 100 days from now?,original,avail,0 -date,tell me the day tomorrow?,parrot,avail,0 -date,date tomorrow,parrot,avail,0 -greeting,heyo,original,greet,4 -no,that's the wrong answer,parrot,cancel,3 -date,i would like to know the date for today,lambada,avail,0 -yes,TRUE,original,book,1 -meeting_schedule,am i supposed to attend any meetings today,original,avail,0 -goodbye,bye-bye,original,bye,2 -goodbye,later,original,bye,2 -yes,affirmitive,original,book,1 -cancel_reservation,can i cancel my reservations?,original,cancel,3 -calendar,how's it going on friday?,parrot,avail,0 -calendar,check calendar for events,lambada,avail,0 -thank_you,i'm glad you responded,parrot,bye,2 -no,negating,parrot,cancel,3 -calendar_update,take my final dance for may 3 from my calendar,lambada,resched,5 -goodbye,buhbye,original,bye,2 -how_busy,is iman busy at 6pm?,parrot,avail,0 -no,that's negative,parrot,cancel,3 -thank_you,thanks for all my help,original,bye,2 -goodbye,good bye,original,bye,2 -goodbye,bye!,original,bye,2 -yes,absolutely!,original,book,1 -greeting,aloha,original,greet,4 -goodbye,adios,original,bye,2 -goodbye,no problem goodbye,parrot,bye,2 -greeting,bonjour,original,greet,4 -yes,sure,original,book,1 -goodbye,fairwell?,parrot,bye,2 -yes,accepted,original,book,1 -goodbye,say goodbye,parrot,bye,2 -yes,ya,original,book,1 -no,it's actually false,parrot,cancel,3 -no,that's erroneous,parrot,cancel,3 -calendar,do you have calendars for may 12th?,parrot,avail,0 -greeting,let me know what you're feeling,parrot,greet,4 -goodbye,glad to talk,parrot,bye,2 -yes,yes,original,book,1 -no,that's bad,parrot,cancel,3 -greeting,hola!,original,greet,4 -greeting,hi,original,greet,4 -yes,affirmative,original,book,1 -thank_you,it's my debt,parrot,bye,2 -greeting,hola,original,greet,4 -goodbye,afterward,parrot,bye,2 -yes,"yup, that's correct",lambada,book,1 -yes,great,original,book,1 -goodbye,fairwell,original,bye,2 -goodbye,tootles,original,bye,2 -yes,i believe it is true,parrot,book,1 -thank_you,much obliged,original,bye,2 -calendar,tell me my calendar?,parrot,avail,0 -yes,you are definitely correct,lambada,book,1 -no,"please, no",original,cancel,3 -date,what date?,parrot,avail,0 -yes,approved,original,book,1 -no,nay,original,cancel,3 -goodbye,regards,original,bye,2 -calendar,did you put a repair date on my calendar?,parrot,avail,0 -meeting_schedule,do i have any meetings with roger today?,original,avail,0 -goodbye,sayonara,original,bye,2 -no,no!,original,cancel,3 -goodbye,good bye for now,parrot,bye,2 -goodbye,adios ai,original,bye,2 -how_busy,how busy is the steakhouse in the outback at 730?,parrot,avail,0 -no,that's not acceptable,parrot,cancel,3 -yes,"yes, that's true",lambada,book,1 -goodbye,adios ai,original,bye,2 -schedule_meeting,i want to know how to schedule a meeting,parrot,book,1 -how_busy,how long is the wait in chipotle?,parrot,avail,0 -cancel_reservation,cancellation of dinner reservation,parrot,cancel,3 -date,what's the day now??,parrot,avail,0 -thank_you,much obliged,original,bye,2 -no,that's totally wrong!,original,cancel,3 -date,today?,parrot,avail,0 -greeting,yo,original,greet,4 -greeting,hello what's happening,parrot,greet,4 -reminder_update,"make a reminder, pay taxes on monday",original,resched,5 -no,that’s incorrect,original,cancel,3 -how_busy,is ziggy busy at dinner?,parrot,avail,0 -schedule_meeting,is there any availability for conferences between one and two?,lambada,book,1 -calendar,tell me what's on my calendar for march 22nd?,original,avail,0 -yes,it's a fact,parrot,book,1 -date,what's the date today,original,avail,0 -no,please no,parrot,cancel,3 -yes,perfect,parrot,book,1 -greeting,hi how's the situation?,parrot,greet,4 -date,date tomorrow?,parrot,avail,0 -goodbye,ill leave now,parrot,bye,2 -greeting,hey,original,greet,4 -greeting,hiya!,original,greet,4 -calendar,check my calendar to see if there's an event called final exams,parrot,avail,0 -date,what day it today?,original,avail,0 -reminder_update,can you set a reminder?,parrot,resched,5 -yes,confirmed,original,book,1 -yes,all right,original,book,1 -no,say negative,parrot,cancel,3 -calendar_update,remove the dinner party from calendar,lambada,resched,5 -no,erroneous,parrot,cancel,3 -date,tell me what day?,parrot,avail,0 -how_busy,tell me the current buzz at olive garden,parrot,avail,0 -goodbye,adios!,original,bye,2 -calendar,please check my calendar,parrot,avail,0 -yes,i just said it,parrot,book,1 -goodbye,later i'll talk to you,parrot,bye,2 -how_busy,how busy is the cheese cake factory around 7 o'clock,parrot,avail,0 -goodbye,talk to you soon,parrot,bye,2 -thank_you,very grateful,parrot,bye,2 -no,negation,parrot,cancel,3 -no,"no, that's a lie",lambada,cancel,3 -how_busy,please tell me how long it is at olive garden right now?,parrot,avail,0 -no,that's not it,parrot,cancel,3 -no,i mean no,parrot,cancel,3 -calendar,is there anything on my calendar for friday the 1st?,parrot,avail,0 -goodbye,peace,original,bye,2 -greeting,"hi, ai",original,greet,4 -yes,accepted,original,book,1 -date,what's the date of tomorrow,lambada,avail,0 -goodbye,good-bye,parrot,bye,2 -reminder_update,you can remind me,parrot,resched,5 -yes,approved,original,book,1 -goodbye,take a break,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -schedule_meeting,you can also register for the meeting on wednesday,parrot,book,1 -thank_you,nice,parrot,bye,2 -reminder_update,remember to bring checkbook,parrot,resched,5 -greeting,hello good morning,parrot,greet,4 -yes,yes,original,book,1 -no,negatory,original,cancel,3 -goodbye,you're done,parrot,bye,2 -goodbye,talk later,original,bye,2 -thank_you,thank you,original,bye,2 -goodbye,bye bye,lambada,bye,2 -greeting,wassup,original,greet,4 -no,nothing,parrot,cancel,3 -goodbye,bye!,original,bye,2 -thank_you,the best,parrot,bye,2 -calendar,tell me what i'm planning for march 19th,parrot,avail,0 -reminder_update,please remember to pay taxes,parrot,resched,5 -goodbye,as regards,parrot,bye,2 -thank_you,appreciate the help,original,bye,2 -greeting,how ya doin,original,greet,4 -no,no that isn't correct,original,cancel,3 -cancel_reservation,i won't use the reservation i made,parrot,cancel,3 -no,negative,original,cancel,3 -goodbye,greetings,parrot,bye,2 -thank_you,nice,parrot,bye,2 -date,now what's the day?,parrot,avail,0 -no,invalid,original,cancel,3 -greeting,how's ai doing?,parrot,greet,4 -no,nothing,parrot,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -how_busy,what's the wait time at olive garden right now,lambada,avail,0 -thank_you,merci beaucoup,original,bye,2 -goodbye,it was great to talk to you,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -calendar_update,can you add a veterinarian appointment to my calendar for march 1st?,parrot,resched,5 -yes,sure thing,original,book,1 -how_busy,how busy the cheesecake factory is at 11?,parrot,avail,0 -greeting,hi there,original,greet,4 -thank_you,you've been great,parrot,bye,2 -greeting,hi,original,greet,4 -no,that's erroneous,parrot,cancel,3 -goodbye,take it easy,lambada,bye,2 -greeting,nice day,lambada,greet,4 -greeting,how's otc?,parrot,greet,4 -date,in 10 days?,parrot,avail,0 -yes,right,parrot,book,1 -no,not that,original,cancel,3 -yes,thats right,original,book,1 -meeting_schedule,how long is the meeting between tuesday and friday,lambada,avail,0 -calendar,what's my schedule for tomorrow?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -date,what's today's date,original,avail,0 -date,what's my day today?,parrot,avail,0 -thank_you,i'm grateful,original,bye,2 -yes,absolutely,original,book,1 -yes,it'll be yes,parrot,book,1 -cancel_reservation,cancell the table i reserved at the oyster bar,parrot,cancel,3 -meeting_schedule,are there meetings from 1-5?,parrot,avail,0 -greeting,how are things for you,original,greet,4 -date,is today the date?,lambada,avail,0 -greeting,how you're treated,parrot,greet,4 -meeting_schedule,check the start time of the meeting scheduled for today,original,avail,0 -goodbye,bye bye!,original,bye,2 -greeting,yo,original,greet,4 -no,that's bad,parrot,cancel,3 -greeting,how're you doing,original,greet,4 -how_busy,can you tell me what the wait is in chipotle?,parrot,avail,0 -yes,yes,original,book,1 -reminder_update,"create a reminder, please",lambada,resched,5 -goodbye,tootles?,parrot,bye,2 -yes,i'd say that it's true,lambada,book,1 -yes,oh-huh,parrot,book,1 -yes,okay,original,book,1 -yes,ya,original,book,1 -how_busy,how long will i have to wait for a table in a restaurant,parrot,avail,0 -goodbye,thanks for chatting,lambada,bye,2 -yes,it's logical,parrot,book,1 -no,naw,original,cancel,3 -schedule_meeting,to meet with tom at 12 pm,parrot,book,1 -goodbye,catch you around,original,bye,2 -no,absolutely not,original,cancel,3 -greeting,hiya,original,greet,4 -thank_you,you answered,parrot,bye,2 -greeting,hey there,original,greet,4 -thank_you,thanks for my help!,original,bye,2 -reminder_update,i would like to set a reminder to bring the plants in tonight,original,resched,5 -greeting,heller,original,greet,4 -greeting,hey,original,greet,4 -how_busy,what time will it take to sit in the macaroni grill?,parrot,avail,0 -yes,that's correct,original,book,1 -goodbye,good call,parrot,bye,2 -thank_you,much obliged,original,bye,2 -greeting,"hi, ai",original,greet,4 -goodbye,later goodbye,parrot,bye,2 -yes,sure,original,book,1 -no,i'd rather not answer it,parrot,cancel,3 -no,that's a negative,original,cancel,3 -goodbye,it's over,parrot,bye,2 -reminder_update,add a reminder to check mail,parrot,resched,5 -date,what is the current date?,original,avail,0 -meeting_schedule,i need to know if i have a meeting with mark today,parrot,avail,0 -yes,yeap,original,book,1 -goodbye,i'm gone,parrot,bye,2 -yes,uh-huh,original,book,1 -how_busy,how long will the wait at chili peppers be?,parrot,avail,0 -how_busy,i'd like to know how busy the olive garden is at 6pm,parrot,avail,0 -no,"nope, no this is false",lambada,cancel,3 -calendar_update,remove wrestlingmania from my calendar for may 7th,parrot,resched,5 -thank_you,good job,lambada,bye,2 -no,naw,original,cancel,3 -calendar,tell me what is showing on my calendar for march 18th?,lambada,avail,0 -goodbye,regards,original,bye,2 -how_busy,how long does it take to get a table at outback steakhouse,lambada,avail,0 -no,this isn't true,parrot,cancel,3 -how_busy,how long will the wait be in yosemite?,parrot,avail,0 -yes,definitely,original,book,1 -thank_you,thanks so much,original,bye,2 -yes,exactly right,original,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -how_busy,how busy i have to be to get a table in this restaurant? '',parrot,avail,0 -reminder_update,remember to call the vet tomorrow,parrot,resched,5 -greeting,well hello,original,greet,4 -schedule_meeting,book a meeting room for friday 5pm,parrot,book,1 -schedule_meeting,reserve a place for a meeting at 11 am wednesday,parrot,book,1 -reminder_update,please remind me,parrot,resched,5 -greeting,hola,original,greet,4 -no,is a lie?,parrot,cancel,3 -calendar_update,please clear my calendar for thursday,parrot,resched,5 -greeting,are you all right?,parrot,greet,4 -yes,confirm,original,book,1 -goodbye,i'll leave now,parrot,bye,2 -greeting,heyo,original,greet,4 -no,false sure,parrot,cancel,3 -goodbye,peace,original,bye,2 -no,negative sure,parrot,cancel,3 -goodbye,goodbye to yours,parrot,bye,2 -greeting,how's my day?,parrot,greet,4 -greeting,how are you today,original,greet,4 -greeting,how does ife treat you?,parrot,greet,4 -no,that's wrong,original,cancel,3 -greeting,"hello, friend",original,greet,4 -how_busy,wait at pizza hut long?,parrot,avail,0 -goodbye,talk later,original,bye,2 -how_busy,how busy is imbrosi around 5:30,lambada,avail,0 -goodbye,"thanks, bye",original,bye,2 -yes,good,parrot,book,1 -greeting,bonjour,original,greet,4 -greeting,how's idy?,parrot,greet,4 -goodbye,great conversation,parrot,bye,2 -date,today?,parrot,avail,0 -goodbye,thank you for the call,parrot,bye,2 -yes,"yeah, that's it",lambada,book,1 -greeting,hola!,original,greet,4 -yes,all right,original,book,1 -no,absolutely not,original,cancel,3 -calendar,i have a date on my calendar for march 5,parrot,avail,0 -yes,i agree,original,book,1 -greeting,aloha,original,greet,4 -yes,"you're correct, i want you to be true",lambada,book,1 -greeting,hello what's going on?,parrot,greet,4 -meeting_schedule,is my meeting with frank scheduled?,parrot,avail,0 -date,the date is tomorrow,parrot,avail,0 -goodbye,peace out,original,bye,2 -no,no?,parrot,cancel,3 -yes,absolutely!,original,book,1 -no,i don't like that,parrot,cancel,3 -greeting,aloha,original,greet,4 -goodbye,tootles,original,bye,2 -how_busy,how busy will the red lobster be at noon,parrot,avail,0 -goodbye,it's time to run,parrot,bye,2 -meeting_schedule,can i have a meeting with kim?,parrot,avail,0 -yes,i agree,original,book,1 -how_busy,what is the waiting period for a meal at california's famous pizza?,lambada,avail,0 -date,what's the date,original,avail,0 -thank_you,i'm happy you've helped me,parrot,bye,2 -goodbye,see ya!,original,bye,2 -thank_you,nice,parrot,bye,2 -date,what date tomorrow?,parrot,avail,0 -yes,"yes, that is what i want",lambada,book,1 -goodbye,i'll go,parrot,bye,2 -yes,affirmitive,original,book,1 -greeting,hey fellows,parrot,greet,4 -goodbye,goodbye,original,bye,2 -no,no that's wrong,original,cancel,3 -goodbye,bye-bye,original,bye,2 -no,that's not true,original,cancel,3 -goodbye,peace,original,bye,2 -yes,that makes sense,lambada,book,1 -greeting,"hello, good morning",lambada,greet,4 -date,what the day?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -greeting,how're you doing?,parrot,greet,4 -meeting_schedule,time of meeting?,parrot,avail,0 -reminder_update,tell me to take my medicine,parrot,resched,5 -yes,TRUE,original,book,1 -yes,my response is correct,parrot,book,1 -date,what's today,original,avail,0 -goodbye,goodbye!,original,bye,2 -greeting,how's it going with you,original,greet,4 -reminder_update,keep me in mind,parrot,resched,5 -thank_you,i'm grateful,original,bye,2 -meeting_schedule,are there meetings between 2 and 3pm?,parrot,avail,0 -greeting,why hello?,original,greet,4 -goodbye,greetings,parrot,bye,2 -no,negative,original,cancel,3 -yes,yeah yeah,lambada,book,1 -yes,that's a fact,parrot,book,1 -no,negation,parrot,cancel,3 -thank_you,i appeciate it,parrot,bye,2 -no,nothing,parrot,cancel,3 -goodbye,afterward,parrot,bye,2 -yes,that would be correct,original,book,1 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -calendar,i need my calendar,parrot,avail,0 -no,but it's not true,parrot,cancel,3 -how_busy,how busy is enchilada around 7?,parrot,avail,0 -thank_you,so grateful,parrot,bye,2 -no,no,lambada,cancel,3 -yes,"yes, please",parrot,book,1 -yes,sure,original,book,1 -no,no thanks,original,cancel,3 -calendar_update,"remove an event from my calendar, please",lambada,resched,5 -goodbye,regards,original,bye,2 -thank_you,thanks!,original,bye,2 -no,negation,parrot,cancel,3 -no,that's no,parrot,cancel,3 -goodbye,adios,original,bye,2 -yes,sure,original,book,1 -schedule_meeting,can you schedule a meeting with jessica in our office please?,parrot,book,1 -yes,good,parrot,book,1 -thank_you,i'm glad you did it for me,parrot,bye,2 -goodbye,goodbye then,parrot,bye,2 -goodbye,tootles,original,bye,2 -date,what the day?,parrot,avail,0 -yes,yes i am,original,book,1 -calendar,have any events been added to my calendar since april 1st?,parrot,avail,0 -yes,yes that's it,original,book,1 -calendar,tell me what's on sunday?,parrot,avail,0 -date,what year is tomorrow,parrot,avail,0 -no,FALSE,original,cancel,3 -how_busy,can i expect a long wait at the steakhouse?,parrot,avail,0 -greeting,nice day,lambada,greet,4 -thank_you,much obliged,original,bye,2 -no,that is incorrect,original,cancel,3 -goodbye,farewell!,original,bye,2 -goodbye,thanks for the talk,lambada,bye,2 -no,invalid,original,cancel,3 -yes,affirmative,original,book,1 -yes,it's true,original,book,1 -no,nope,original,cancel,3 -yes,TRUE,lambada,book,1 -greeting,what's happened?,parrot,greet,4 -no,nope,original,cancel,3 -meeting_schedule,list meetings on calendar for today,original,avail,0 -greeting,how's otc?,parrot,greet,4 -no,what isn't true?,parrot,cancel,3 -goodbye,great conversation,parrot,bye,2 -greeting,how you're treated,parrot,greet,4 -goodbye,a good conversation,parrot,bye,2 -no,say negative,parrot,cancel,3 -reminder_update,maybe a reminder?,parrot,resched,5 -meeting_schedule,is my meeting scheduled?,parrot,avail,0 -goodbye,see you later!,original,bye,2 -greeting,hiya,original,greet,4 -no,i disagree,parrot,cancel,3 -reminder_update,let me not forget about the steak,parrot,resched,5 -goodbye,nice to see you again,original,bye,2 -yes,accepted,original,book,1 -thank_you,thankyou,parrot,bye,2 -thank_you,gracias,original,bye,2 -yes,facts,original,book,1 -thank_you,appreciated,original,bye,2 -thank_you,i appreciate that,original,bye,2 -greeting,how've you been,original,greet,4 -meeting_schedule,meeting today,parrot,avail,0 -no,i'll pass,original,cancel,3 -yes,certainly true,parrot,book,1 -thank_you,why thank you?,original,bye,2 -goodbye,signing off,original,bye,2 -thank_you,thanks,original,bye,2 -yes,absolutely,original,book,1 -meeting_schedule,when do i meet loren today?,parrot,avail,0 -greeting,heller,original,greet,4 -goodbye,this conversation was nice,parrot,bye,2 -goodbye,cya later,original,bye,2 -greeting,how's the ayi?,parrot,greet,4 -date,now what's the day?,parrot,avail,0 -yes,correct,original,book,1 -calendar_update,delete that event from calendar,original,resched,5 -how_busy,how busy the cheesecake factory is?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -no,nay,original,cancel,3 -yes,i have to know that it's true,parrot,book,1 -greeting,salutations!,original,greet,4 -thank_you,thanks for my answer,parrot,bye,2 -greeting,bonjour,original,greet,4 -yes,ya,original,book,1 -goodbye,peace out!,original,bye,2 -no,nothing,parrot,cancel,3 -calendar,make sure you check my calendar for tuesday,parrot,avail,0 -yes,ok,original,book,1 -calendar,you are supposed to have a meeting on a tuesday,parrot,avail,0 -how_busy,is the waittime at maceos regular?,lambada,avail,0 -goodbye,afterward,parrot,bye,2 -thank_you,appreciated,original,bye,2 -no,that's not true it's false,parrot,cancel,3 -greeting,greetings to you,original,greet,4 -reminder_update,let me know,parrot,resched,5 -cancel_reservation,forget my oyster bar reservation for tonight,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -date,in three days,parrot,avail,0 -greeting,heller,original,greet,4 -yes,that's true,original,book,1 -no,negative,original,cancel,3 -goodbye,goodbye soon,lambada,bye,2 -yes,yeap,original,book,1 -date,current date,original,avail,0 -no,it would be a false entry,parrot,cancel,3 -calendar,please tell me what's on my calendar for april 1?,parrot,avail,0 -thank_you,thanks for answering that,lambada,bye,2 -no,nothing,parrot,cancel,3 -greeting,hi there alexa,original,greet,4 -no,naw,parrot,cancel,3 -goodbye,good night,original,bye,2 -thank_you,thank you please,parrot,bye,2 -thank_you,my thanks,parrot,bye,2 -yes,ya,original,book,1 -greeting,hey what's up?,parrot,greet,4 -greeting,aloha,original,greet,4 -calendar,please tell me what's on my calendar for march 17,parrot,avail,0 -cancel_reservation,just cancel my reservation,lambada,cancel,3 -calendar,tell me what's on my calendar for 12232019,parrot,avail,0 -thank_you,i am thankful for my help!,original,bye,2 -no,negative sure,parrot,cancel,3 -goodbye,good call,parrot,bye,2 -no,that's no way,parrot,cancel,3 -greeting,how you are?,parrot,greet,4 -thank_you,thanks for helping,original,bye,2 -greeting,good morning,parrot,greet,4 -no,that's false,original,cancel,3 -greeting,hey there,original,greet,4 -yes,confirm,original,book,1 -calendar,please tell me what is on my calendar for march 31st,parrot,avail,0 -goodbye,i'm leaving,parrot,bye,2 -date,describe the day?,parrot,avail,0 -yes,that seems true,original,book,1 -goodbye,was on a great run,parrot,bye,2 -date,the date is tomorrow,parrot,avail,0 -how_busy,how long is the wait at mac's?,parrot,avail,0 -greeting,aloha,original,greet,4 -no,false sure,parrot,cancel,3 -date,describe the day?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -meeting_schedule,do we meet today?,parrot,avail,0 -how_busy,how busy will chipotle's garden be around 9,parrot,avail,0 -date,in seven days?,parrot,avail,0 -no,i'd rather not,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -yes,right,parrot,book,1 -thank_you,thanks for helping me out today,original,bye,2 -greeting,bonjour,original,greet,4 -greeting,how are things,original,greet,4 -greeting,well hello,original,greet,4 -how_busy,how long would i have to wait to be seated at alamo pizza,lambada,avail,0 -calendar,i wanna know what is currently on my calendar for friday the 1st,original,avail,0 -goodbye,bye-bye,original,bye,2 -no,that's incorrect,original,cancel,3 -reminder_update,add a reminder of washing the dishes,parrot,resched,5 -yes,yup,original,book,1 -no,nada,original,cancel,3 -greeting,how are you doing today?,parrot,greet,4 -goodbye,i have to leave,parrot,bye,2 -greeting,how're you?,parrot,greet,4 -greeting,hello how is it going?,parrot,greet,4 -goodbye,take it easy,lambada,bye,2 -goodbye,goodnight,original,bye,2 -schedule_meeting,can you sign me up for a meeting in the blue room at 8 am,parrot,book,1 -how_busy,does the restaurant have a long wait for a table at 830?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -greeting,let me know how you're doing?,parrot,greet,4 -no,negation,parrot,cancel,3 -no,no longer valid,parrot,cancel,3 -reminder_update,remind me to exercise,original,resched,5 -goodbye,later!,original,bye,2 -greeting,hey how's my day going?,parrot,greet,4 -greeting,yo,original,greet,4 -goodbye,the talks were pleasant,parrot,bye,2 -how_busy,what time does the oklahoma county farmer's market have a long wait for?,parrot,avail,0 -no,sure it's wrong,parrot,cancel,3 -how_busy,is the cheesecake factory open at 7 o'clock in the morning?,parrot,avail,0 -goodbye,good bye for now,parrot,bye,2 -thank_you,thanks a million,original,bye,2 -no,no,lambada,cancel,3 -goodbye,fairwell,original,bye,2 -goodbye,i liked our conversation,parrot,bye,2 -no,ill pass,original,cancel,3 -no,it's a false,lambada,cancel,3 -thank_you,nice,parrot,bye,2 -goodbye,peace out!,original,bye,2 -goodbye,later goodbye,parrot,bye,2 -no,that's erroneous,parrot,cancel,3 -no,that's not really the case,parrot,cancel,3 -yes,yes it's true,lambada,book,1 -cancel_reservation,give me a cancellation for my dave reservation at red robin,parrot,cancel,3 -greeting,hey bs,lambada,greet,4 -goodbye,see ya,lambada,bye,2 -yes,correct,original,book,1 -goodbye,great conversation,parrot,bye,2 -how_busy,how many times can i get a table in the restaurant?,parrot,avail,0 -calendar_update,leave the date of 4 june open on my calendar,parrot,resched,5 -yes,it's logical,parrot,book,1 -yes,uh huh,original,book,1 -reminder_update,can you set a reminder for the current time?,parrot,resched,5 -goodbye,glad we talked,parrot,bye,2 -how_busy,what time does it take to wait in a restaurant?,parrot,avail,0 -thank_you,appreciate it,original,bye,2 -no,that's actually false,parrot,cancel,3 -yes,not false,parrot,book,1 -yes,agreed,original,book,1 -yes,certainly,parrot,book,1 -yes,i guess,parrot,book,1 -no,no?,parrot,cancel,3 -greeting,how's everything,original,greet,4 -no,it's a false,lambada,cancel,3 -greeting,nice day,lambada,greet,4 -greeting,salutations,parrot,greet,4 -thank_you,i'm really grateful,parrot,bye,2 -yes,good,parrot,book,1 -yes,positive,original,book,1 -greeting,hey it's up,lambada,greet,4 -goodbye,fairwell,original,bye,2 -yes,sure,original,book,1 -date,in 10 days?,parrot,avail,0 -no,invalid,original,cancel,3 -goodbye,", goodbye",lambada,bye,2 -no,hell nah,original,cancel,3 -no,that seems wrong,lambada,cancel,3 -no,negatory?,parrot,cancel,3 -no,nope,original,cancel,3 -goodbye,ai goodbye,original,bye,2 -yes,absolutely,original,book,1 -goodbye,see ya,lambada,bye,2 -yes,TRUE,lambada,book,1 -meeting_schedule,what meetings are today?,lambada,avail,0 -greeting,hiya,original,greet,4 -goodbye,see ya,lambada,bye,2 -goodbye,catch you around,original,bye,2 -goodbye,i need to go,lambada,bye,2 -yes,okay,original,book,1 -no,FALSE,lambada,cancel,3 -no,certainly not,original,cancel,3 -yes,ya,original,book,1 -no,please no,parrot,cancel,3 -thank_you,you have my sincere thanks,parrot,bye,2 -meeting_schedule,when are my meetings today?,lambada,avail,0 -thank_you,thanks a million,original,bye,2 -cancel_reservation,remove my dinner reservation,original,cancel,3 -meeting_schedule,when are my meetings?,parrot,avail,0 -no,i say negative,original,cancel,3 -how_busy,what's the wait time for a pizza fountain?,parrot,avail,0 -thank_you,thanks for my time,parrot,bye,2 -goodbye,"goodbye, ai assistant",original,bye,2 -no,i don't agree,parrot,cancel,3 -yes,positive,parrot,book,1 -thank_you,many thanks,original,bye,2 -greeting,whats up?,parrot,greet,4 -meeting_schedule,read my schedule of meetings,parrot,avail,0 -calendar_update,add farm trip to my calendar for friday,original,resched,5 -reminder_update,please set up a reminder for me,original,resched,5 -yes,affirmitive,original,book,1 -yes,absolutely!,original,book,1 -calendar,what's the tuesday calendar?,parrot,avail,0 -greeting,how's the ai?,parrot,greet,4 -date,describe the day?,parrot,avail,0 -greeting,bonjour,original,greet,4 -thank_you,so i appreciate it,parrot,bye,2 -yes,approved,original,book,1 -meeting_schedule,do i have any meetings with martin today?,lambada,avail,0 -goodbye,bye bye,lambada,bye,2 -date,in three days,parrot,avail,0 -greeting,are you doing ok?,original,greet,4 -goodbye,nice conversation today,parrot,bye,2 -thank_you,you've tried,parrot,bye,2 -date,can you give me a date in five days?,parrot,avail,0 -greeting,how's it hanging,original,greet,4 -greeting,hola!,original,greet,4 -cancel_reservation,get rid of my reservation at 2 pm at ruth steakhouse,parrot,cancel,3 -greeting,greetings to you,original,greet,4 -greeting,what's my feeling?,parrot,greet,4 -yes,let's do it,parrot,book,1 -thank_you,your answer is good,parrot,bye,2 -yes,i know,parrot,book,1 -no,negatory,original,cancel,3 -thank_you,i'm really thankful,parrot,bye,2 -no,no please,parrot,cancel,3 -cancel_reservation,i have to cancel my reservation for sam at umami,parrot,cancel,3 -date,tell me the full date for today?,lambada,avail,0 -yes,obviously,parrot,book,1 -yes,good yes,lambada,book,1 -yes,"agreed, that's valid",original,book,1 -yes,yeah,original,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -meeting_schedule,when i'll meet roger?,parrot,avail,0 -schedule_meeting,can you reserve a meeting room for 1:00 on tuesday?,lambada,book,1 -calendar_update,put the tires checked on my calendar,parrot,resched,5 -no,not happening,original,cancel,3 -yes,affirmative,original,book,1 -greeting,good evening,original,greet,4 -thank_you,thanks for telling me,parrot,bye,2 -reminder_update,keep an eye on my plants,parrot,resched,5 -goodbye,later gator!,original,bye,2 -greeting,well hello,original,greet,4 -calendar,what are the restaurants on my calendar for march 8?,lambada,avail,0 -how_busy,around nine ambrosio is busy,parrot,avail,0 -no,no thank you,original,cancel,3 -how_busy,how busy is hwiz on friday morning,lambada,avail,0 -no,nay,original,cancel,3 -yes,agreed,original,book,1 -yes,that is correct,original,book,1 -how_busy,how busy is mcdonald's at lunch?,parrot,avail,0 -goodbye,adios,original,bye,2 -yes,yeap,original,book,1 -no,nada,original,cancel,3 -yes,yup,original,book,1 -yes,yes that's right,lambada,book,1 -schedule_meeting,reserve the meeting room for 5pm on friday,parrot,book,1 -yes,facts,original,book,1 -how_busy,what's the most busy place for ihop at noon,lambada,avail,0 -no,please disagree,lambada,cancel,3 -yes,not a false statement,parrot,book,1 -yes,absolutely,original,book,1 -goodbye,cya later,original,bye,2 -yes,yay,lambada,book,1 -yes,correct,original,book,1 -greeting,bonjour,original,greet,4 -thank_you,thankyou,parrot,bye,2 -greeting,let me know how you are doing,original,greet,4 -thank_you,"nice, excellent!",original,bye,2 -no,that's no way,parrot,cancel,3 -greeting,how's everything?,parrot,greet,4 -reminder_update,make a reminder,parrot,resched,5 -yes,absolutely!,original,book,1 -greeting,good evening,original,greet,4 -goodbye,later gater,original,bye,2 -greeting,hello,original,greet,4 -how_busy,is it busy at geoff's grill at 9pm?,parrot,avail,0 -greeting,hola,original,greet,4 -yes,i'll check it out,parrot,book,1 -no,negation,parrot,cancel,3 -reminder_update,remind me to do the laundry,parrot,resched,5 -goodbye,farewell,original,bye,2 -goodbye,later gater,original,bye,2 -greeting,aho,parrot,greet,4 -thank_you,thanks for answering,parrot,bye,2 -how_busy,how long will it take me to get a seat at the outback steakhouse?,parrot,avail,0 -no,absolutely false,parrot,cancel,3 -yes,i think that's correct,parrot,book,1 -how_busy,wait how long before we go to olive gardens,parrot,avail,0 -yes,ya,original,book,1 -goodbye,goodbye!,original,bye,2 -goodbye,i'll go,parrot,bye,2 -goodbye,peace out,original,bye,2 -cancel_reservation,i need to cancel my reservation for nueva york,lambada,cancel,3 -goodbye,later gator!,original,bye,2 -date,tell me the date for the next four days?,lambada,avail,0 -yes,so it's true,parrot,book,1 -thank_you,what is a way to thank you?,parrot,bye,2 -how_busy,does the wait time at olive garden usually take a long time?,lambada,avail,0 -cancel_reservation,cancel dinner reservation tonight,parrot,cancel,3 -yes,yep,original,book,1 -goodbye,farewell,original,bye,2 -how_busy,how busy will olive garden be around 7pm,parrot,avail,0 -no,negatory?,parrot,cancel,3 -date,tell me the date of the next four days?,parrot,avail,0 -how_busy,is mcdonalds busy?,parrot,avail,0 -no,it's actually false,parrot,cancel,3 -greeting,you good?,parrot,greet,4 -date,what's the day like?,parrot,avail,0 -yes,i agree,original,book,1 -calendar,list the events on my calendar for march 23rd?,parrot,avail,0 -greeting,hola!,original,greet,4 -thank_you,appreciate the support,parrot,bye,2 -greeting,hiya!,original,greet,4 -no,naw,original,cancel,3 -yes,perfect,parrot,book,1 -greeting,hola,original,greet,4 -no,erroneous,parrot,cancel,3 -how_busy,how long will the wait be if we want tagliatelle pizza at 8pm,parrot,avail,0 -goodbye,good call,parrot,bye,2 -greeting,how's life?,parrot,greet,4 -no,FALSE,original,cancel,3 -thank_you,awesome thank you,parrot,bye,2 -no,please do not agree,parrot,cancel,3 -yes,definitely,original,book,1 -no,erroneous,parrot,cancel,3 -yes,that's true,original,book,1 -yes,great,original,book,1 -greeting,hola!,original,greet,4 -yes,facts,original,book,1 -greeting,hello are you doing okay?,parrot,greet,4 -meeting_schedule,do you know when i'm meeting with nick?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -date,do you have a date for this?,parrot,avail,0 -reminder_update,please remind me of this,parrot,resched,5 -no,that is not factual,original,cancel,3 -meeting_schedule,when is my meeting with jim scheduled?,lambada,avail,0 -thank_you,you helped,parrot,bye,2 -yes,great,original,book,1 -goodbye,goodbye to you,original,bye,2 -no,ill pass,original,cancel,3 -how_busy,how busy will chili be at 5 o'clock?,parrot,avail,0 -goodbye,later gater,original,bye,2 -reminder_update,remind me again please,original,resched,5 -goodbye,talk to you soon,parrot,bye,2 -yes,"yep, that's correct",lambada,book,1 -no,no!,original,cancel,3 -yes,positive,original,book,1 -goodbye,goodbyes,parrot,bye,2 -no,FALSE,lambada,cancel,3 -greeting,heller,original,greet,4 -yes,absolutely,original,book,1 -no,no is the answer,original,cancel,3 -yes,yep,original,book,1 -date,what date?,parrot,avail,0 -greeting,how's my day been?,parrot,greet,4 -yes,yeah,original,book,1 -no,but certainly not,parrot,cancel,3 -cancel_reservation,cancellation of dinner reservation tonight,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -no,that's incorrect!,original,cancel,3 -no,nada,original,cancel,3 -calendar_update,cancel all events on my calendar,lambada,resched,5 -schedule_meeting,can you please hold a meeting for 3:00 on wednesday?,lambada,book,1 -yes,right,parrot,book,1 -greeting,how is everything?,parrot,greet,4 -yes,definitely,original,book,1 -yes,yeah,original,book,1 -yes,that appears true,original,book,1 -greeting,wassup,original,greet,4 -goodbye,sayonara ,parrot,bye,2 -greeting,aloha,original,greet,4 -goodbye,sayonara,original,bye,2 -no,yes that's false,lambada,cancel,3 -goodbye,afterward,parrot,bye,2 -goodbye,ai goodbye,original,bye,2 -greeting,"why, hello bandit",original,greet,4 -no,no,lambada,cancel,3 -how_busy,how busy is georgia at 12?,parrot,avail,0 -yes,that's true,original,book,1 -meeting_schedule,is there a meeting with lisa today?,parrot,avail,0 -yes,true is my response,original,book,1 -thank_you,special thanks to you,original,bye,2 -goodbye,you're done,parrot,bye,2 -greeting,how is my day?,parrot,greet,4 -yes,it's logical,parrot,book,1 -yes,10-Apr,original,book,1 -date,in 10 days?,parrot,avail,0 -yes,not false,parrot,book,1 -calendar_update,add a trip to the zoo to my calendar for february 10,parrot,resched,5 -date,what's the day of tomorrow?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -greeting,it's nice to see you,original,greet,4 -no,it's negative,parrot,cancel,3 -date,i'd like to know what's the date,parrot,avail,0 -calendar,tell me what's on my calendar this week?,parrot,avail,0 -how_busy,how long do you expect to wait for a table in the olive garden?,parrot,avail,0 -reminder_update,please remember me,parrot,resched,5 -reminder_update,is it possible to set a reminder to pay bills?,parrot,resched,5 -goodbye,thanks goodbye,parrot,bye,2 -greeting,"ai, how is my life",lambada,greet,4 -how_busy,list the waiting times for joes pizza?,parrot,avail,0 -date,what is tomorrow?,parrot,avail,0 -calendar,is the marathon on friday added to my schedule?,parrot,avail,0 -no,not right?,parrot,cancel,3 -meeting_schedule,what is on my schedule?,parrot,avail,0 -yes,yes please,original,book,1 -greeting,good day,original,greet,4 -greeting,aho,parrot,greet,4 -greeting,hello bs,parrot,greet,4 -thank_you,thanks for the donation,parrot,bye,2 -greeting,hello siri,original,greet,4 -goodbye,as regards,parrot,bye,2 -thank_you,i'm glad you helped me,lambada,bye,2 -yes,ok,original,book,1 -no,it's completely false,parrot,cancel,3 -no,that's absolutely false,parrot,cancel,3 -schedule_meeting,i need a room,parrot,book,1 -how_busy,how long before dinner at macaroni and cheese,lambada,avail,0 -yes,facts,original,book,1 -date,what date is it?,original,avail,0 -greeting,yo,original,greet,4 -schedule_meeting,need a meeting room,parrot,book,1 -goodbye,goodnight,original,bye,2 -no,no no thanks,parrot,cancel,3 -goodbye,see ya,lambada,bye,2 -cancel_reservation,scrap the dinner reservation,parrot,cancel,3 -greeting,hey how's life,original,greet,4 -greeting,hiya,original,greet,4 -greeting,wassup,original,greet,4 -goodbye,i'll go,parrot,bye,2 -no,but that's not true,parrot,cancel,3 -no,that's totally wrong,parrot,cancel,3 -how_busy,i have to wait how long to get into this restaurant,parrot,avail,0 -yes,indeed,original,book,1 -yes,ok,original,book,1 -yes,correct,original,book,1 -no,i prefer not to,parrot,cancel,3 -no,that’s actually wrong,original,cancel,3 -how_busy,can you tell me how many people will be in this restaurant?,parrot,avail,0 -goodbye,later,original,bye,2 -no,this is a lie,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -greeting,heller,original,greet,4 -yes,please let's do it,original,book,1 -yes,it's true,original,book,1 -no,no that's not correct,parrot,cancel,3 -goodbye,later!,original,bye,2 -cancel_reservation,"cancel my reservation for dinner tonight, please",original,cancel,3 -no,no good,original,cancel,3 -yes,yes sir,original,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -goodbye,talk later,original,bye,2 -how_busy,can you tell me how long the wait will be at olive garden?,parrot,avail,0 -greeting,hello ai,parrot,greet,4 -no,not that,original,cancel,3 -yes,let's do that,parrot,book,1 -calendar,can you list the events on my calendar for march 6th?,parrot,avail,0 -date,what is month and day?,parrot,avail,0 -schedule_meeting,i must hire you for a meeting,parrot,book,1 -greeting,hi how's it going,lambada,greet,4 -meeting_schedule,what's my plan today?,parrot,avail,0 -yes,yup,original,book,1 -cancel_reservation,i have to cancel my reservation for dinner at carnelian lake,parrot,cancel,3 -greeting,hi ai,original,greet,4 -calendar_update,i don't want this event in my calendar,parrot,resched,5 -no,erroneous,parrot,cancel,3 -greeting,heyo,original,greet,4 -goodbye,fairwell,original,bye,2 -date,what's the day now,parrot,avail,0 -yes,TRUE,lambada,book,1 -greeting,and what's up?,parrot,greet,4 -schedule_meeting,i want to check if there is a meeting room available between 6 and 8,parrot,book,1 -yes,roger that,original,book,1 -how_busy,how much time is it going to take to get a table at olive garden,lambada,avail,0 -date,what month and day?,parrot,avail,0 -yes,huh huh,parrot,book,1 -reminder_update,have i forgotten?,parrot,resched,5 -yes,seems true,parrot,book,1 -no,negatory?,parrot,cancel,3 -goodbye,goodbye goodbye,parrot,bye,2 -meeting_schedule,do we meet today?,parrot,avail,0 -calendar,what's on my calendar for march 29?,parrot,avail,0 -thank_you,my thanks,parrot,bye,2 -thank_you,very grateful,parrot,bye,2 -yes,i just said that,parrot,book,1 -yes,i'm going to tell you tes,parrot,book,1 -goodbye,regards,original,bye,2 -reminder_update,"at 4 tomorrow afternoon, remind me to start the oven",original,resched,5 -calendar_update,make sure my calendar is clear for 1 june,parrot,resched,5 -thank_you,my sincere thanks,parrot,bye,2 -how_busy,is kaya busy around 5pm?,parrot,avail,0 -yes,a fact,parrot,book,1 -thank_you,merci beaucoup,original,bye,2 -how_busy,is ihop busy around 7 o'clock in the morning?,parrot,avail,0 -schedule_meeting,is there meeting room between 9 and 10?,parrot,book,1 -no,nothing good,parrot,cancel,3 -no,nada,original,cancel,3 -yes,facts,original,book,1 -meeting_schedule,what meetings do i have today between 2 and 4?,lambada,avail,0 -yes,absolutely correct,original,book,1 -yes,my answer is yes,parrot,book,1 -thank_you,well done,parrot,bye,2 -greeting,how is everything going?,parrot,greet,4 -no,no,lambada,cancel,3 -thank_you,thankyou,parrot,bye,2 -yes,absolutely!,original,book,1 -date,what date?,parrot,avail,0 -thank_you,thanks for my support,parrot,bye,2 -greeting,what's happening,original,greet,4 -date,date please,original,avail,0 -greeting,yo,original,greet,4 -no,erroneous,parrot,cancel,3 -date,tell me what the date is?,lambada,avail,0 -yes,"yes, please",parrot,book,1 -yes,certainly true,parrot,book,1 -yes,i want that,parrot,book,1 -thank_you,i appreciate my help,original,bye,2 -greeting,hello ai,parrot,greet,4 -how_busy,is there a wait at chipotle tonight,parrot,avail,0 -yes,good,parrot,book,1 -thank_you,really appreciate your help thank you,parrot,bye,2 -how_busy,when is macaroni grill busy?,parrot,avail,0 -greeting,ahoy there,lambada,greet,4 -calendar,please tell me what's on my calendar for april 1,parrot,avail,0 -no,negating,parrot,cancel,3 -no,no good,original,cancel,3 -no,negatory?,parrot,cancel,3 -goodbye,"later, goodbye",lambada,bye,2 -yes,right,parrot,book,1 -no,i don't answer that question,parrot,cancel,3 -goodbye,good bye,original,bye,2 -goodbye,be careful then,lambada,bye,2 -meeting_schedule,does travis have any meetings?,parrot,avail,0 -yes,indeed,parrot,book,1 -schedule_meeting,you can schedule a meeting room for 9am on friday,parrot,book,1 -goodbye,goodbye!,original,bye,2 -greeting,what's new,lambada,greet,4 -schedule_meeting,is there a meeting room available between 10 and 11?,parrot,book,1 -goodbye,afterward,parrot,bye,2 -calendar_update,delete the appointment i have scheduled,parrot,resched,5 -thank_you,thank you for trying,parrot,bye,2 -goodbye,thanks for the chat,parrot,bye,2 -thank_you,thank you for my vacation,lambada,bye,2 -goodbye,goodbye soon,lambada,bye,2 -thank_you,thanks,original,bye,2 -no,that is overwhelmingly wrong,lambada,cancel,3 -greeting,wake up ai,parrot,greet,4 -goodbye,later,original,bye,2 -calendar,have i scheduled anything on march 2nd on my calendar yet?,parrot,avail,0 -how_busy,is the wait time at maceos normal?,parrot,avail,0 -yes,absolutely correct,original,book,1 -no,it's false,parrot,cancel,3 -goodbye,fairwell,original,bye,2 -yes,this is true,lambada,book,1 -no,so that's no,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -yes,all right,parrot,book,1 -goodbye,really nice to talk to you,parrot,bye,2 -no,naw,parrot,cancel,3 -date,i need to know the date today,parrot,avail,0 -greeting,all right now?,parrot,greet,4 -yes,obviously,parrot,book,1 -yes,sure,original,book,1 -goodbye,greetings,parrot,bye,2 -how_busy,does chipotle chopper have a good wait time around 5pm?,lambada,avail,0 -goodbye,buhbye,original,bye,2 -date,what's the day of the week,original,avail,0 -calendar,check my calendar for saturday,original,avail,0 -thank_you,you're a big help,parrot,bye,2 -greeting,"hello, how are you",original,greet,4 -yes,10-Apr,original,book,1 -date,what date is it?,original,avail,0 -yes,that is a yes,original,book,1 -yes,please let's do it,original,book,1 -no,i'd prefer not to,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -no,negative definitely,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -no,that's not right,original,cancel,3 -thank_you,nice,parrot,bye,2 -no,negatory,original,cancel,3 -greeting,how are things with you?,parrot,greet,4 -date,what's my day today?,parrot,avail,0 -date,if you can give me a date today,parrot,avail,0 -yes,yay,lambada,book,1 -goodbye,bye bye,lambada,bye,2 -reminder_update,can you remind me of a task?,parrot,resched,5 -how_busy,how busy will the olive garden be around noon?,parrot,avail,0 -yes,accepted,original,book,1 -date,the date is today,parrot,avail,0 -schedule_meeting,can you arrange a meeting with steven?,parrot,book,1 -yes,oh-huh,parrot,book,1 -date,describe the day?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -thank_you,nice,parrot,bye,2 -no,that's certainly false,parrot,cancel,3 -meeting_schedule,meetings today,original,avail,0 -goodbye,buhbye,original,bye,2 -thank_you,my thanks,parrot,bye,2 -thank_you,gracias,original,bye,2 -calendar_update,i want to clear my calendar for the end of march,lambada,resched,5 -calendar,can you tell me when i added this meeting to my calendar?,parrot,avail,0 -goodbye,later,original,bye,2 -no,i believe it's wrong,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -goodbye,i must run now,parrot,bye,2 -greeting,hi ai,original,greet,4 -date,please tell me the day?,parrot,avail,0 -goodbye,talk later,original,bye,2 -greeting,how is my situation?,parrot,greet,4 -goodbye,goodbye,original,bye,2 -yes,perfect,parrot,book,1 -thank_you,merci beaucoup,original,bye,2 -date,the date is today,parrot,avail,0 -greeting,hello,original,greet,4 -goodbye,greetings,parrot,bye,2 -how_busy,how busy is olive garden at 7pm,lambada,avail,0 -date,is today the date?,lambada,avail,0 -goodbye,bye-bye,original,bye,2 -yes,10-Apr,original,book,1 -greeting,hiya!,original,greet,4 -how_busy,is the wait busy at the cheesecake factory around 11?,parrot,avail,0 -yes,that's a fact,lambada,book,1 -how_busy,does the restaurant get packed around 7pm?,parrot,avail,0 -how_busy,i want to know how long i have to wait for olive garden,parrot,avail,0 -how_busy,can you tell me about the wait time at olive garden?,parrot,avail,0 -greeting,hey it's up,lambada,greet,4 -reminder_update,set a reminder for me,original,resched,5 -greeting,hey there,original,greet,4 -how_busy,i need to know how busy olive garden is at 6pm,lambada,avail,0 -goodbye,adios,original,bye,2 -calendar,is my meeting with frank on my calendar?,original,avail,0 -thank_you,i'm thankful for you,parrot,bye,2 -yes,okay,original,book,1 -yes,obviously,parrot,book,1 -yes,i agree,original,book,1 -yes,affirmitive,original,book,1 -thank_you,thanks that was really helpful,original,bye,2 -yes,ok,original,book,1 -goodbye,i'm leaving,parrot,bye,2 -yes,okay,original,book,1 -goodbye,"no problem, goodbye",lambada,bye,2 -goodbye,later!,original,bye,2 -date,what's going to be tomorrow?,parrot,avail,0 -no,it's a lie,parrot,cancel,3 -thank_you,the best,parrot,bye,2 -date,what year?,parrot,avail,0 -goodbye,goodbyes soon,parrot,bye,2 -greeting,hi,original,greet,4 -greeting,hey,original,greet,4 -greeting,hey there!,original,greet,4 -goodbye,bye,original,bye,2 -no,i don't think it's appropriate,parrot,cancel,3 -thank_you,and i'm grateful,parrot,bye,2 -no,don't like that,parrot,cancel,3 -date,tell me what day of the week?,parrot,avail,0 -calendar,what is the current set of activities on my calendar?,lambada,avail,0 -thank_you,you helped,parrot,bye,2 -cancel_reservation,cancel my reservation for chris at the jp field,parrot,cancel,3 -thank_you,appreciated,original,bye,2 -thank_you,nice,parrot,bye,2 -goodbye,later!,original,bye,2 -greeting,salutation,parrot,greet,4 -thank_you,you're welcome,parrot,bye,2 -no,that's no way,parrot,cancel,3 -cancel_reservation,there's no need to confirm my reservation,parrot,cancel,3 -yes,correct,original,book,1 -goodbye,wonderful conversation,lambada,bye,2 -goodbye,farewell,original,bye,2 -date,what the day?,parrot,avail,0 -goodbye,ai goodbye,original,bye,2 -date,what year is this?,parrot,avail,0 -thank_you,thank you!,original,bye,2 -meeting_schedule,are there any meetings with mark today?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -greeting,what's happening,original,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -date,a year?,parrot,avail,0 -greeting,what's happening?,parrot,greet,4 -how_busy,check to see how long of a wait i would be facing if i go to outback steakhouse,original,avail,0 -thank_you,okay thanks,original,bye,2 -no,it seems not,original,cancel,3 -yes,uh-huh,original,book,1 -no,it's not right,parrot,cancel,3 -yes,approved,original,book,1 -cancel_reservation,i have to cancel my table at the margaritas for friday,parrot,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -no,i do not believe that is correct,lambada,cancel,3 -thank_you,thanks so much!,original,bye,2 -no,that's not correct,original,cancel,3 -yes,affirmative,original,book,1 -thank_you,merci beaucoup,original,bye,2 -greeting,hola!,original,greet,4 -no,i'd say no,original,cancel,3 -yes,accept,parrot,book,1 -goodbye,fairwell,original,bye,2 -yes,oh-huh,parrot,book,1 -goodbye,ill be leaving now,parrot,bye,2 -greeting,do you feel?,parrot,greet,4 -no,i prefer not,parrot,cancel,3 -yes,great,original,book,1 -yes,confirm,original,book,1 -schedule_meeting,plan a meeting with saul,parrot,book,1 -no,that's so wrong,parrot,cancel,3 -yes,huh,parrot,book,1 -thank_you,well done,parrot,bye,2 -date,in 7 days?,parrot,avail,0 -no,i don't think that's right,lambada,cancel,3 -thank_you,again thanks,parrot,bye,2 -greeting,"hello, ai",original,greet,4 -goodbye,good bye,original,bye,2 -no,so that's no,parrot,cancel,3 -goodbye,later goodbye,parrot,bye,2 -no,no it's a lie,parrot,cancel,3 -greeting,how's everything?,parrot,greet,4 -yes,okay,original,book,1 -goodbye,it's time to say goodbye,parrot,bye,2 -goodbye,ai goodbye,original,bye,2 -no,not really,original,cancel,3 -no,negative definitely,parrot,cancel,3 -yes,confirmed,original,book,1 -no,erroneous,parrot,cancel,3 -no,negative,original,cancel,3 -yes,yep,original,book,1 -how_busy,how long after 7pm,parrot,avail,0 -thank_you,"nice, excellent!",original,bye,2 -date,i need to know the date today please,parrot,avail,0 -goodbye,goodbye for now,parrot,bye,2 -goodbye,bye,original,bye,2 -how_busy,are french bakers busy around 11 o'clock?,parrot,avail,0 -goodbye,", goodbye",lambada,bye,2 -no,i would prefer not,original,cancel,3 -yes,my answer is yes,parrot,book,1 -yes,ok,original,book,1 -no,negating,parrot,cancel,3 -thank_you,you've helped,parrot,bye,2 -how_busy,how busy is the chipotle grill,lambada,avail,0 -thank_you,thank you please,parrot,bye,2 -thank_you,i appreciate my help,original,bye,2 -yes,"yeah, that's it",lambada,book,1 -no,it seems wrong,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -how_busy,how long is the wait time for a table at the red robin,lambada,avail,0 -no,it's overwhelmingly negative,parrot,cancel,3 -no,negative certainly,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -how_busy,how long will i have to wait for shokudo,lambada,avail,0 -calendar,what do i have on my calendar for march 01?,lambada,avail,0 -yes,absolutely correct,original,book,1 -goodbye,greetings,parrot,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -no,nope,original,cancel,3 -goodbye,see ya!,original,bye,2 -yes,i'll say yes,parrot,book,1 -goodbye,farewell!,original,bye,2 -thank_you,thank you ai,parrot,bye,2 -greeting,whats up,original,greet,4 -how_busy,how busy will it be at 6 pm,parrot,avail,0 -yes,say yes,lambada,book,1 -reminder_update,set me a reminder to work on monday,parrot,resched,5 -reminder_update,set a reminder for tomorrows meeting,original,resched,5 -thank_you,thanks,original,bye,2 -no,invalid,original,cancel,3 -how_busy,tell me the time it takes to sit in the cheese cake factory?,parrot,avail,0 -greeting,"hello, friend",original,greet,4 -greeting,how have you been,original,greet,4 -thank_you,you're welcome,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -no,naw,parrot,cancel,3 -thank_you,much obliged,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -greeting,hey hey!,original,greet,4 -how_busy,how long is the wait at assagios today,original,avail,0 -date,describe the day?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -how_busy,how busy is chicken fingers at six pm,lambada,avail,0 -calendar,"check my calendar for march 4th 2019, please",original,avail,0 -yes,i want to confirm this,parrot,book,1 -greeting,"hello, good morning",lambada,greet,4 -thank_you,thank you for my response,lambada,bye,2 -greeting,hey how's my day going?,parrot,greet,4 -greeting,how's idy?,parrot,greet,4 -no,negatory?,parrot,cancel,3 -no,but not right now,parrot,cancel,3 -yes,so it's true,parrot,book,1 -how_busy,when is the best time to get a table in this restaurant?,parrot,avail,0 -how_busy,is mr joes pizza usually seated in advance?,lambada,avail,0 -how_busy,does the cheesecake factory have people?,parrot,avail,0 -goodbye,bye!,original,bye,2 -yes,"yes, that's a fact",lambada,book,1 -goodbye,my way,parrot,bye,2 -greeting,hello,original,greet,4 -goodbye,goodbye later,parrot,bye,2 -yes,correct,original,book,1 -no,naw,parrot,cancel,3 -how_busy,tell me how busy red robin is at 7 pm?,lambada,avail,0 -goodbye,farewell!,original,bye,2 -yes,TRUE,original,book,1 -greeting,hi,original,greet,4 -calendar,what is my next dentist appointment?,parrot,avail,0 -yes,"correct, it is affirmative",original,book,1 -greeting,hey fellow,parrot,greet,4 -yes,i'm going to tell you tes,parrot,book,1 -calendar,what's tuesday's calendar?,parrot,avail,0 -goodbye,later!,original,bye,2 -yes,certainly,parrot,book,1 -yes,facts,original,book,1 -goodbye,it was really nice to be able to chat with you,original,bye,2 -thank_you,well done,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -greeting,what's happening?,parrot,greet,4 -goodbye,good conversation,parrot,bye,2 -goodbye,regards,original,bye,2 -yes,definitely,original,book,1 -no,not that one,original,cancel,3 -goodbye,see ya!,original,bye,2 -yes,yeah yeah,lambada,book,1 -yes,my answer is yes,parrot,book,1 -reminder_update,make a reminder,parrot,resched,5 -thank_you,your answer was fun,parrot,bye,2 -yes,accepted,original,book,1 -thank_you,you've tried,parrot,bye,2 -no,nada,original,cancel,3 -greeting,hello,original,greet,4 -greeting,hey,original,greet,4 -greeting,bonjour,original,greet,4 -how_busy,how long will it take to get a t-shirt recut at mcdonald's?,parrot,avail,0 -goodbye,good conversation,parrot,bye,2 -no,naw,original,cancel,3 -how_busy,how long is the wait at cheesecake factory right now,lambada,avail,0 -greeting,hey fellows,parrot,greet,4 -greeting,welcome,parrot,greet,4 -goodbye,goodbye ai,parrot,bye,2 -greeting,how are you today,original,greet,4 -thank_you,i'm grateful,original,bye,2 -no,FALSE,original,cancel,3 -yes,uh-huh,original,book,1 -date,please explain today,parrot,avail,0 -how_busy,how busy is mcdonalds right now,lambada,avail,0 -calendar,please know what's on my calendar for friday the 1st?,parrot,avail,0 -goodbye,see you later,original,bye,2 -greeting,hola!,original,greet,4 -yes,exactly right,original,book,1 -goodbye,thanks goodbye,parrot,bye,2 -no,nothing good,parrot,cancel,3 -no,that's a no,lambada,cancel,3 -yes,say positive,parrot,book,1 -greeting,hola,original,greet,4 -how_busy,how long will it take to get to the red lobster?,parrot,avail,0 -how_busy,is red lobster busy?,parrot,avail,0 -goodbye,"bye-bye, my friend",lambada,bye,2 -calendar,show me the calendar of the events?,parrot,avail,0 -greeting,how is my day,original,greet,4 -no,negatory,original,cancel,3 -calendar,where do i look for dates on my calendar for march 4th?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -goodbye,ill leave now,parrot,bye,2 -no,naw,original,cancel,3 -calendar_update,add my work to my calendar,parrot,resched,5 -greeting,what's new here?,parrot,greet,4 -no,that's false,original,cancel,3 -greeting,wassup,original,greet,4 -no,negating,parrot,cancel,3 -greeting,how's otc?,parrot,greet,4 -no,that’s not correct,original,cancel,3 -goodbye,say goodbye,parrot,bye,2 -reminder_update,can you set the reminder?,parrot,resched,5 -no,negatory,original,cancel,3 -no,indeed it's false,parrot,cancel,3 -thank_you,gracias,original,bye,2 -date,is the date?,parrot,avail,0 -yes,TRUE,lambada,book,1 -no,hell nah,original,cancel,3 -calendar,check my calendar for events,lambada,avail,0 -no,certainly not,original,cancel,3 -yes,ok,original,book,1 -greeting,yo,original,greet,4 -goodbye,catch you around,original,bye,2 -date,what today?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -how_busy,how long is the wait at the restaurant today?,parrot,avail,0 -schedule_meeting,are meeting rooms free between 8 and 3?,parrot,book,1 -goodbye,fairwell,original,bye,2 -greeting,yo how yo feelin,lambada,greet,4 -thank_you,"awesome, thanks",original,bye,2 -yes,agreed,original,book,1 -yes,correct,original,book,1 -goodbye,"thanks for the talk, bye",lambada,bye,2 -yes,good,parrot,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -yes,accepted,original,book,1 -date,please tell me today's date,original,avail,0 -calendar_update,clear my calendar for february 6,parrot,resched,5 -yes,yeah yeah,lambada,book,1 -yes,it is a yes from me,parrot,book,1 -no,that is incorrect,original,cancel,3 -no,negation,parrot,cancel,3 -calendar_update,remove the event from my calendar for march 4th,parrot,resched,5 -how_busy,waiting for a macaroni grill?,parrot,avail,0 -yes,that is true,original,book,1 -date,let me know what date it will be in 3 days,original,avail,0 -yes,yep,original,book,1 -calendar_update,write down an appointment for tomorrow on my calendar,parrot,resched,5 -reminder_update,remind me to put away my clothes,parrot,resched,5 -no,it's false,parrot,cancel,3 -yes,TRUE,original,book,1 -greeting,wassup,original,greet,4 -yes,accepted,original,book,1 -goodbye,fairwell?,parrot,bye,2 -cancel_reservation,please delete the reservation for 3 people in outback,parrot,cancel,3 -no,nada,original,cancel,3 -no,naw,original,cancel,3 -goodbye,maybe next time,parrot,bye,2 -yes,exactly right,original,book,1 -greeting,how have you been doing,original,greet,4 -how_busy,tell me the minimum wait time at the outback steakhouse,parrot,avail,0 -calendar,tell me what i have for march 19?,parrot,avail,0 -cancel_reservation,i need to cancel my reservations,original,cancel,3 -goodbye,goodbye,original,bye,2 -cancel_reservation,if you can cancel my reservation for chris at brio,parrot,cancel,3 -no,not good,parrot,cancel,3 -date,what's the date tomorrow please,parrot,avail,0 -goodbye,bye!,original,bye,2 -yes,obviously,parrot,book,1 -calendar_update,take the next event off of my calendar,parrot,resched,5 -greeting,how's my day?,parrot,greet,4 -goodbye,"thanks, bye",original,bye,2 -yes,that's right,original,book,1 -no,FALSE,lambada,cancel,3 -yes,"yes, please",original,book,1 -no,but not right now,parrot,cancel,3 -how_busy,how long will i have to wait if i want to sit in applebee's?,parrot,avail,0 -goodbye,this conversation was great,parrot,bye,2 -no,i'd prefer not to,parrot,cancel,3 -yes,"correct, that's true",original,book,1 -yes,indeed,original,book,1 -goodbye,i'm gone,parrot,bye,2 -no,invalid,original,cancel,3 -yes,positive,parrot,book,1 -greeting,salutation,parrot,greet,4 -goodbye,buhbye now,lambada,bye,2 -goodbye,later then,lambada,bye,2 -yes,affirmative,original,book,1 -thank_you,thank ya!,original,bye,2 -thank_you,appreciated,original,bye,2 -greeting,good day,original,greet,4 -yes,absolutely,original,book,1 -thank_you,thanks,original,bye,2 -goodbye,great conversation,parrot,bye,2 -greeting,how you're doing?,parrot,greet,4 -greeting,welcome,parrot,greet,4 -thank_you,thanks please,original,bye,2 -no,that is not right,original,cancel,3 -yes,indeed,original,book,1 -no,the answer is no,original,cancel,3 -greeting,how're you today?,parrot,greet,4 -meeting_schedule,what's on my schedule?,parrot,avail,0 -yes,approved,original,book,1 -no,FALSE,original,cancel,3 -goodbye,peace,original,bye,2 -how_busy,how busy will red robin be at 5pm,lambada,avail,0 -thank_you,i appreciate my help!,original,bye,2 -thank_you,"oh, thanks",original,bye,2 -yes,correct,original,book,1 -yes,accept,parrot,book,1 -reminder_update,need to be reminded of prayer,parrot,resched,5 -thank_you,your help is appreciated,original,bye,2 -thank_you,thanks for trying,original,bye,2 -calendar,tell me what my calendar shows for april?,parrot,avail,0 -goodbye,wonderful conversation,lambada,bye,2 -goodbye,see ya,lambada,bye,2 -yes,yup,original,book,1 -thank_you,okay thank you,parrot,bye,2 -yes,okay,original,book,1 -thank_you,you've helped,parrot,bye,2 -greeting,hey what's up?,parrot,greet,4 -how_busy,tell me the time for a meal in chipotle?,parrot,avail,0 -thank_you,you've tried,parrot,bye,2 -yes,all right,original,book,1 -greeting,ahoy hoy,original,greet,4 -yes,definitely yes,parrot,book,1 -no,FALSE,lambada,cancel,3 -goodbye,talk later,original,bye,2 -no,that's not acceptable,parrot,cancel,3 -no,negating,parrot,cancel,3 -no,that's not correct,original,cancel,3 -no,certainly not,original,cancel,3 -how_busy,is imbrosia busy at 7?,parrot,avail,0 -goodbye,later!,original,bye,2 -goodbye,bye-bye,original,bye,2 -yes,10-Apr,original,book,1 -calendar,do i have any events on my calendar for thursday?,lambada,avail,0 -no,FALSE,lambada,cancel,3 -goodbye,tootles,original,bye,2 -greeting,bonjour,original,greet,4 -thank_you,thank you for coming,parrot,bye,2 -thank_you,your answer was a pleasure,parrot,bye,2 -no,no thanks,original,cancel,3 -no,that's false,original,cancel,3 -how_busy,how long will it be at the red lobster?,parrot,avail,0 -date,a year?,parrot,avail,0 -no,negating,parrot,cancel,3 -calendar_update,remove everything from my calendar,parrot,resched,5 -yes,confirmed,original,book,1 -how_busy,how busy is olive garden at 9pm,lambada,avail,0 -how_busy,will the tomato garden be busy by 5pm?,parrot,avail,0 -reminder_update,help me to remember to pick up stan,parrot,resched,5 -goodbye,later,original,bye,2 -goodbye,later,original,bye,2 -goodbye,sign off,parrot,bye,2 -no,nothing,parrot,cancel,3 -goodbye,tootles,original,bye,2 -yes,"yep, that's correct",lambada,book,1 -how_busy,how many people are there in the restaurant between 11 and 5?,parrot,avail,0 -goodbye,goodbye later,parrot,bye,2 -no,FALSE,original,cancel,3 -greeting,wassup,original,greet,4 -goodbye,sayonara,original,bye,2 -no,it's my false statement,parrot,cancel,3 -yes,obviously,parrot,book,1 -how_busy,how long will the wait be at the olive garden,lambada,avail,0 -no,that's totally wrong!,original,cancel,3 -goodbye,bye bye!,original,bye,2 -no,not correct,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -greeting,whats up,original,greet,4 -yes,correct,original,book,1 -date,tell me the year?,parrot,avail,0 -yes,sure,original,book,1 -thank_you,many thanks,original,bye,2 -yes,it's positive,parrot,book,1 -calendar,can you check if i have an appointment on my calendar for the exam?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -yes,huh huh,parrot,book,1 -goodbye,i'm leaving,parrot,bye,2 -date,what today?,parrot,avail,0 -goodbye,regards,original,bye,2 -yes,affirmitive,original,book,1 -yes,"true, most definitely",original,book,1 -calendar_update,put abc on my calendar on feb 3,parrot,resched,5 -greeting,are you okay??,parrot,greet,4 -yes,ya,original,book,1 -date,date tomorrow?,parrot,avail,0 -goodbye,adios!,original,bye,2 -yes,yes i do like that,original,book,1 -greeting,what's my feeling?,parrot,greet,4 -goodbye,goodbye thank you,parrot,bye,2 -yes,perfect,parrot,book,1 -greeting,whats new?,parrot,greet,4 -no,it's completely false,parrot,cancel,3 -no,no please,parrot,cancel,3 -no,it's a no,original,cancel,3 -thank_you,"good job, thanks",lambada,bye,2 -yes,perfect,parrot,book,1 -no,negative certainly,parrot,cancel,3 -yes,absolutely correct,original,book,1 -goodbye,peace,original,bye,2 -how_busy,waiting for chicken tikka masala?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -goodbye,i'll leave,parrot,bye,2 -calendar_update,make sure i have an appointment for tomorrow on my calendar,parrot,resched,5 -goodbye,goodbye soon,lambada,bye,2 -greeting,what's my feeling?,parrot,greet,4 -no,please disagree,lambada,cancel,3 -no,negation,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -yes,absolutely!,original,book,1 -yes,i want you to know that's right,parrot,book,1 -yes,yup,original,book,1 -thank_you,appreciate it,original,bye,2 -goodbye,fairwell,original,bye,2 -greeting,how's life,original,greet,4 -goodbye,see ya,original,bye,2 -yes,a fact,parrot,book,1 -yes,uh-huh,original,book,1 -how_busy,what time will i be allowed to sit in the restaurant at?,parrot,avail,0 -no,not that,original,cancel,3 -schedule_meeting,how many people can go to a meeting?,parrot,book,1 -no,naw,parrot,cancel,3 -yes,it is definitely affirmative,original,book,1 -goodbye,bye bye,lambada,bye,2 -yes,certainly,parrot,book,1 -thank_you,i'm grateful,original,bye,2 -no,no no no,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -how_busy,if i go to the cheese cake factory how long will i have to wait?,parrot,avail,0 -greeting,bonjour,original,greet,4 -schedule_meeting,would you set me up for a meeting?,parrot,book,1 -greeting,bonjour,original,greet,4 -calendar_update,delete the event scheduled for april 14th,parrot,resched,5 -reminder_update,set a reminder alarm for the meeting at 12 noon,parrot,resched,5 -calendar_update,clear my calendar for february,parrot,resched,5 -goodbye,for now,parrot,bye,2 -greeting,salutation,parrot,greet,4 -date,what the day?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -goodbye,see ya,lambada,bye,2 -goodbye,bye bye,lambada,bye,2 -thank_you,gracias,original,bye,2 -thank_you,your answer is appreciated,original,bye,2 -date,what will be the date after i marry you?,parrot,avail,0 -date,where's tomorrow's date,parrot,avail,0 -yes,approved,original,book,1 -greeting,hi what's up,original,greet,4 -yes,absolutely,original,book,1 -greeting,hola,original,greet,4 -greeting,hello good morning,parrot,greet,4 -yes,yup,original,book,1 -no,there is no,parrot,cancel,3 -no,the information is false,parrot,cancel,3 -how_busy,how long will i wait to be seated in an italian restaurant,parrot,avail,0 -greeting,wassup,original,greet,4 -goodbye,regards,original,bye,2 -yes,TRUE,lambada,book,1 -how_busy,how long before dinner,parrot,avail,0 -reminder_update,create reminders to wash dishes,parrot,resched,5 -no,erroneous,parrot,cancel,3 -greeting,are you doing anything good?,parrot,greet,4 -goodbye,my friend,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -goodbye,bye,original,bye,2 -how_busy,will the macy's be busy,parrot,avail,0 -meeting_schedule,what time is my meeting with design team scheduled for?,original,avail,0 -yes,is is very much true?,original,book,1 -no,"please, no",original,cancel,3 -yes,positive,parrot,book,1 -thank_you,many thank,original,bye,2 -goodbye,good-bye,parrot,bye,2 -no,no don't do that,parrot,cancel,3 -greeting,hello ai,parrot,greet,4 -goodbye,buhbye,original,bye,2 -yes,that statement is true,lambada,book,1 -thank_you,"oh, thanks",original,bye,2 -goodbye,afterward,parrot,bye,2 -reminder_update,please add a reminder to my list?,parrot,resched,5 -greeting,wassup,original,greet,4 -cancel_reservation,scrap that dinner reservation,original,cancel,3 -goodbye,adios,original,bye,2 -meeting_schedule,are there meetings between two and four?,parrot,avail,0 -goodbye,later gater,original,bye,2 -how_busy,can i eat at ohio beef for the next three hours?,lambada,avail,0 -date,show me a calendar,original,avail,0 -yes,uh huh,original,book,1 -greeting,how's it hanging,original,greet,4 -goodbye,i'll talk about it tomorrow,parrot,bye,2 -how_busy,is it always crowded?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -greeting,how's life for you?,parrot,greet,4 -schedule_meeting,is it possible to plan a meeting room for 5pm on monday?,parrot,book,1 -thank_you,nice,parrot,bye,2 -meeting_schedule,is my schedule clear with no meetings with dan today?,original,avail,0 -yes,huh,parrot,book,1 -greeting,heller,original,greet,4 -goodbye,later!,original,bye,2 -how_busy,at dinner time is the restaurant crowded?,parrot,avail,0 -reminder_update,remember to prepare for my meeting at 10 am,parrot,resched,5 -goodbye,peace,original,bye,2 -how_busy,how long will it take me to get seated at the cheesecake factory?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -thank_you,well done,parrot,bye,2 -yes,just right,parrot,book,1 -greeting,hi there,original,greet,4 -goodbye,talk to you soon,parrot,bye,2 -greeting,give me the details,parrot,greet,4 -no,nothing,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,take care then,parrot,bye,2 -no,that's very negative,parrot,cancel,3 -date,date tomorrow,parrot,avail,0 -greeting,i want to know how ai is doing,parrot,greet,4 -date,what is tomorrow?,parrot,avail,0 -no,thanks no,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -no,i disagree,parrot,cancel,3 -greeting,"hello, friend",original,greet,4 -goodbye,goodbye goodbye,parrot,bye,2 -goodbye,goodbye helpful ai device,parrot,bye,2 -greeting,hiya!,original,greet,4 -no,is that a lie?,parrot,cancel,3 -no,no?,parrot,cancel,3 -greeting,why hello?,original,greet,4 -greeting,welcome,parrot,greet,4 -no,negative sure,parrot,cancel,3 -goodbye,tootles,original,bye,2 -goodbye,goodbye now,parrot,bye,2 -goodbye,"later, good luck",lambada,bye,2 -greeting,how're you doing,original,greet,4 -goodbye,adios,original,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -no,not happening,original,cancel,3 -no,that's very false,parrot,cancel,3 -no,negation,parrot,cancel,3 -greeting,heyo,original,greet,4 -greeting,salutation,parrot,greet,4 -greeting,how is it going? hi,parrot,greet,4 -schedule_meeting,can you schedule a meeting with george?,parrot,book,1 -goodbye,we chatted well,parrot,bye,2 -how_busy,how long after 7pm,parrot,avail,0 -goodbye,goodbye to your,lambada,bye,2 -how_busy,how long is the wait time at cheese steak steakhouse,lambada,avail,0 -thank_you,you're so kind to think of me,parrot,bye,2 -greeting,what's new?,parrot,greet,4 -greeting,get up ai,parrot,greet,4 -greeting,hi,original,greet,4 -no,negation,parrot,cancel,3 -no,yes that's false,lambada,cancel,3 -no,nay,original,cancel,3 -thank_you,why thank you?,original,bye,2 -goodbye,adios ai,original,bye,2 -yes,positive,original,book,1 -yes,agreed,original,book,1 -date,is it monday?,parrot,avail,0 -thank_you,awesome thank you,parrot,bye,2 -how_busy,how busy is the red robin at noon?,parrot,avail,0 -greeting,hello hello good morning,parrot,greet,4 -greeting,hola!,original,greet,4 -goodbye,bye bye then,original,bye,2 -yes,10-Apr,original,book,1 -yes,it is true yes,parrot,book,1 -no,that's definitely false,original,cancel,3 -calendar,tell me what is on my calendar for april 24th?,lambada,avail,0 -goodbye,thanks goodbye,parrot,bye,2 -no,no thanks,original,cancel,3 -greeting,hi there,original,greet,4 -no,that is overwhelmingly wrong,lambada,cancel,3 -greeting,hey yai,lambada,greet,4 -meeting_schedule,do you have any meetings on the calendar today?,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -greeting,ahoy there,lambada,greet,4 -date,what is current day?,parrot,avail,0 -how_busy,how long will i have to wait before i'm seated in the cheese cake factory,parrot,avail,0 -goodbye,peace,original,bye,2 -meeting_schedule,when is my meeting with john?,original,avail,0 -meeting_schedule,are there meetings between 4 and 7 pm?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -goodbye,good night,original,bye,2 -no,i don't agree,parrot,cancel,3 -cancel_reservation,please cancel my reservation,original,cancel,3 -thank_you,you gave me this,parrot,bye,2 -reminder_update,remind me something,parrot,resched,5 -yes,"yes, please",parrot,book,1 -greeting,hey fellows,parrot,greet,4 -reminder_update,remind me to call my mom,original,resched,5 -no,nothing,parrot,cancel,3 -goodbye,later,original,bye,2 -yes,ok,original,book,1 -yes,definitely,original,book,1 -no,that's a wrong answer,parrot,cancel,3 -yes,just right,parrot,book,1 -goodbye,i want it now,parrot,bye,2 -yes,approved,original,book,1 -yes,accepted,original,book,1 -date,what's the date tomorrow?,parrot,avail,0 -how_busy,how busy will it be if i go to chili around 6?,parrot,avail,0 -no,that would be false,original,cancel,3 -goodbye,good talk,parrot,bye,2 -date,today is what date?,parrot,avail,0 -yes,"yeah, that's right",original,book,1 -greeting,hi,original,greet,4 -how_busy,tell me how busy the macaroni grill will be around 8 o'clock?,parrot,avail,0 -greeting,"hey, ai",original,greet,4 -goodbye,go easy,parrot,bye,2 -yes,accept,parrot,book,1 -calendar,tell me what's on my calendar for friday?,parrot,avail,0 -greeting,salutations,parrot,greet,4 -goodbye,sayonara ,parrot,bye,2 -greeting,what's happening?,parrot,greet,4 -greeting,hiya,original,greet,4 -calendar,can you list my calendar?,parrot,avail,0 -no,it's a false claim,parrot,cancel,3 -yes,sure thing,original,book,1 -no,that isn't true,lambada,cancel,3 -goodbye,see ya,lambada,bye,2 -no,that's not the case,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -no,that's incorrect,original,cancel,3 -yes,perfect,parrot,book,1 -yes,it's logical,parrot,book,1 -goodbye,afterward,parrot,bye,2 -yes,yup,original,book,1 -yes,yeah,original,book,1 -yes,yeah,original,book,1 -how_busy,what is the wait time for table reservation?,lambada,avail,0 -how_busy,how long will it take to sit at the grocery store?,parrot,avail,0 -schedule_meeting,are there meeting rooms available between 10 and 11 o'clock?,parrot,book,1 -calendar,where do i look for dates in my calendar for march 4th?,parrot,avail,0 -how_busy,how busy will the restaurant be at 5pm?,parrot,avail,0 -how_busy,is the mcdonald's busy around 9?,parrot,avail,0 -date,what today?,parrot,avail,0 -yes,10-Apr,original,book,1 -reminder_update,please make a new note,parrot,resched,5 -no,it's no,parrot,cancel,3 -no,not happening,original,cancel,3 -schedule_meeting,i must schedule a meeting,parrot,book,1 -how_busy,how long will the wait time be at tamales?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -goodbye,good chatting with you,lambada,bye,2 -thank_you,thank you a lot for that answer,original,bye,2 -greeting,are you well?,original,greet,4 -yes,sure,original,book,1 -meeting_schedule,meetings today,original,avail,0 -thank_you,your assistance is appreciated,parrot,bye,2 -no,nothing,parrot,cancel,3 -calendar_update,please cancel the event on march 18th?,parrot,resched,5 -schedule_meeting,i need you to set up a meeting,parrot,book,1 -goodbye,tootles,original,bye,2 -greeting,hey,original,greet,4 -greeting,how's ife treating you,original,greet,4 -meeting_schedule,tell me what meetings i have booked for today?,lambada,avail,0 -calendar_update,i have to remove fishing from my calendar for soccer,parrot,resched,5 -no,that's not correct,original,cancel,3 -no,and i say negative,parrot,cancel,3 -goodbye,thanks for chatting,lambada,bye,2 -how_busy,how long does the wait at olive garden normally be at 6?,parrot,avail,0 -greeting,hola,original,greet,4 -yes,say yes,lambada,book,1 -calendar_update,remove event from calendar,lambada,resched,5 -greeting,yo,original,greet,4 -yes,yeah yeah,lambada,book,1 -yes,TRUE,lambada,book,1 -thank_you,you did it,parrot,bye,2 -yes,right,parrot,book,1 -date,what's it today?,parrot,avail,0 -thank_you,appreciated,original,bye,2 -meeting_schedule,when is the meeting with homer?,parrot,avail,0 -no,not good,parrot,cancel,3 -greeting,have you been good?,original,greet,4 -date,calender says tomorrow is,original,avail,0 -greeting,salutations!,original,greet,4 -goodbye,later gator!,original,bye,2 -how_busy,what's the wait time at chili's dinner,lambada,avail,0 -yes,that is a yes,original,book,1 -cancel_reservation,i need to cancel the reservation at red robin,lambada,cancel,3 -date,what's the next date?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -no,not right?,parrot,cancel,3 -yes,absolutely,original,book,1 -thank_you,really great!,original,bye,2 -goodbye,adios!,original,bye,2 -greeting,hiya!,original,greet,4 -no,but it's false,parrot,cancel,3 -date,what's the day now,parrot,avail,0 -date,in 7 days?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -thank_you,gracias,original,bye,2 -no,it would be false,parrot,cancel,3 -yes,indeed,original,book,1 -no,the negator,parrot,cancel,3 -goodbye,buhbye now,lambada,bye,2 -yes,that would be correct,original,book,1 -calendar,how is my calendar looking for may 6th,original,avail,0 -goodbye,good bye,original,bye,2 -goodbye,great conversation,parrot,bye,2 -calendar,do i have any points on my calendar for the annual membership dues?,lambada,avail,0 -schedule_meeting,i want a meeting,parrot,book,1 -how_busy,please tell me how busy chili will be at 730?,parrot,avail,0 -date,do you have the date?,original,avail,0 -yes,indeed,original,book,1 -reminder_update,remind me to wash my clothes,parrot,resched,5 -goodbye,fairwell?,parrot,bye,2 -thank_you,i appreciate that,original,bye,2 -no,invalid,original,cancel,3 -yes,yep,original,book,1 -yes,confirmed,original,book,1 -calendar,please see my calendar,parrot,avail,0 -no,negative,original,cancel,3 -greeting,"hi, ai",original,greet,4 -yes,yes sir,original,book,1 -goodbye,really nice talking to you,parrot,bye,2 -no,not right?,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -thank_you,merci beaucoup,original,bye,2 -yes,huh,parrot,book,1 -calendar,tell me the current calendar?,parrot,avail,0 -no,negative sure,parrot,cancel,3 -calendar_update,delete the 14th of june dinner with brittany,parrot,resched,5 -calendar,show me the event on my calendar for 12232019?,parrot,avail,0 -yes,good yes,lambada,book,1 -goodbye,this conversation was great,parrot,bye,2 -goodbye,later then,lambada,bye,2 -greeting,good day,original,greet,4 -thank_you,"that'll work, good job!",original,bye,2 -goodbye,no problem goodbye,parrot,bye,2 -schedule_meeting,can you schedule a meeting with james please?,parrot,book,1 -no,it's indeed false,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -schedule_meeting,can you book a meeting room for 6pm wednesday evening?,parrot,book,1 -yes,right,parrot,book,1 -how_busy,tell me the time to wait for the table at the cheese cake factory,parrot,avail,0 -yes,that would be great,original,book,1 -thank_you,gracias,original,bye,2 -greeting,hey there,original,greet,4 -yes,"yes, please",parrot,book,1 -date,current date,original,avail,0 -no,so that's no,parrot,cancel,3 -greeting,aloha,original,greet,4 -calendar_update,i don't need to go to the zoo on the 8th of this month anymore,parrot,resched,5 -no,nope not it,original,cancel,3 -thank_you,again thanks,parrot,bye,2 -greeting,how's life in my city?,parrot,greet,4 -no,hell nah,original,cancel,3 -no,it would be a false entry,parrot,cancel,3 -how_busy,mcdonald's busy around 9?,parrot,avail,0 -goodbye,good luck tomorrow,lambada,bye,2 -goodbye,good to see you again,parrot,bye,2 -no,i think that's false,original,cancel,3 -greeting,what's up?,parrot,greet,4 -calendar,retrieve events on my calendar,original,avail,0 -yes,certainly,parrot,book,1 -thank_you,i'm grateful,original,bye,2 -goodbye,peace out,original,bye,2 -yes,oh-huh,parrot,book,1 -yes,good,parrot,book,1 -no,that would be wrong,lambada,cancel,3 -goodbye,goodnight,original,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -thank_you,the best,parrot,bye,2 -greeting,"wake up, ai",original,greet,4 -yes,huh,parrot,book,1 -yes,TRUE,lambada,book,1 -yes,yup,original,book,1 -greeting,ahoy there,lambada,greet,4 -greeting,hiya!,original,greet,4 -yes,yes,original,book,1 -greeting,whats up?,parrot,greet,4 -no,that's negative,parrot,cancel,3 -no,the information is wrong,original,cancel,3 -date,when is it going to be in 5 days?,parrot,avail,0 -thank_you,good job,lambada,bye,2 -goodbye,goodbye,original,bye,2 -yes,okay,original,book,1 -goodbye,see ya,lambada,bye,2 -no,FALSE,original,cancel,3 -greeting,salutations,parrot,greet,4 -goodbye,im leaving,parrot,bye,2 -reminder_update,set up a reminder to mail a check tommorow,original,resched,5 -greeting,how is my day,original,greet,4 -cancel_reservation,you can cancel my reservation for tim at the jb,parrot,cancel,3 -goodbye,im leaving goodbye,parrot,bye,2 -no,is a lie?,parrot,cancel,3 -how_busy,is ihop busy at 6pm?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -greeting,"hi, ai",original,greet,4 -greeting,how's my family?,parrot,greet,4 -greeting,hey there,original,greet,4 -thank_you,and i'd like to thank you,parrot,bye,2 -greeting,hi ai,original,greet,4 -goodbye,bye bye,lambada,bye,2 -yes,positive,parrot,book,1 -thank_you,gracias,original,bye,2 -no,FALSE,original,cancel,3 -thank_you,thank you for my response,lambada,bye,2 -thank_you,so glad you helped me,parrot,bye,2 -thank_you,why thank you?,original,bye,2 -how_busy,how busy is tia around six?,parrot,avail,0 -how_busy,how long is the restaurant before we go,lambada,avail,0 -greeting,whats up?,parrot,greet,4 -yes,huh,parrot,book,1 -yes,"yup, that's true",original,book,1 -yes,positive,parrot,book,1 -goodbye,goodbyes,parrot,bye,2 -no,no?,parrot,cancel,3 -greeting,whats new,lambada,greet,4 -yes,"yes, please",parrot,book,1 -yes,absolutely correct,original,book,1 -no,i gotta say no,original,cancel,3 -goodbye,later gater,original,bye,2 -no,no way,original,cancel,3 -greeting,hey bs,lambada,greet,4 -yes,TRUE,lambada,book,1 -greeting,hello siri,original,greet,4 -goodbye,goodbye goodbye,parrot,bye,2 -thank_you,many thanks,original,bye,2 -calendar,can you check my calendar for march 5th?,lambada,avail,0 -how_busy,is that olive garden busy?,parrot,avail,0 -calendar,can you see my calendar for next tuesday 17?,parrot,avail,0 -yes,absolutely,original,book,1 -date,what's today?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -date,and what's the day?,parrot,avail,0 -thank_you,thank you very much for my help,parrot,bye,2 -yes,certainly true,parrot,book,1 -how_busy,how busy the cheesecake factory is at 6 pm?,parrot,avail,0 -meeting_schedule,can you tell me my scheduled meetings for today?,parrot,avail,0 -how_busy,how busy will macaroni's be at 6pm,lambada,avail,0 -how_busy,how long will i have to wait to be seated in red lobster?,parrot,avail,0 -yes,i vote yes,original,book,1 -yes,TRUE,original,book,1 -calendar,can you show me my calendar calendar?,lambada,avail,0 -no,that isn't right,original,cancel,3 -calendar,what's my calendar for next friday?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -greeting,how's the ai?,parrot,greet,4 -yes,"yeah, that is true",lambada,book,1 -calendar_update,please take my yoga class off my calendar for march 21,lambada,resched,5 -calendar,please tell me what's on my calendar for march 18th,parrot,avail,0 -yes,confirm,original,book,1 -no,no good,original,cancel,3 -yes,not false,parrot,book,1 -no,no please,parrot,cancel,3 -how_busy,how busy will iman be at 6 am?,parrot,avail,0 -no,ill pass,original,cancel,3 -yes,indeed,original,book,1 -yes,definitely yes,parrot,book,1 -goodbye,peace,original,bye,2 -thank_you,why thank you?,original,bye,2 -greeting,heyo,original,greet,4 -date,what date will it be 7 days from now?,original,avail,0 -no,not necessarily true,parrot,cancel,3 -goodbye,good luck,lambada,bye,2 -date,what month is today?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -greeting,how is it going? hi,parrot,greet,4 -yes,obviously,parrot,book,1 -date,date tomorrow,parrot,avail,0 -goodbye,until next time!,original,bye,2 -cancel_reservation,could i cancel my reservations,original,cancel,3 -greeting,what's happening?,parrot,greet,4 -no,invalid,original,cancel,3 -yes,absolutely,original,book,1 -reminder_update,can i set a reminder?,original,resched,5 -yes,accepted,original,book,1 -yes,so it's checked,parrot,book,1 -goodbye,greetings,parrot,bye,2 -greeting,and what's up?,parrot,greet,4 -thank_you,youre a doll,original,bye,2 -goodbye,adios,original,bye,2 -no,absolutely false,parrot,cancel,3 -calendar,do you have anything planned for thursday 14th?,parrot,avail,0 -thank_you,i thank you,original,bye,2 -yes,that's right,original,book,1 -greeting,hello,original,greet,4 -yes,affirmitive,original,book,1 -schedule_meeting,the meeting must be scheduled,parrot,book,1 -yes,confirm,original,book,1 -thank_you,thanks again,original,bye,2 -no,invalid,original,cancel,3 -goodbye,i'm leaving now,lambada,bye,2 -yes,absolutely,original,book,1 -reminder_update,set a reminder for 6 pm,parrot,resched,5 -yes,10-Apr,original,book,1 -greeting,hola,original,greet,4 -date,date tomorrow?,parrot,avail,0 -yes,perfect,parrot,book,1 -no,that's so negative,parrot,cancel,3 -no,say negative,parrot,cancel,3 -goodbye,goodbye to yours,parrot,bye,2 -date,date please,original,avail,0 -yes,obviously,parrot,book,1 -greeting,welcome,parrot,greet,4 -greeting,hey how's it going,original,greet,4 -schedule_meeting,how do i find a meeting?,parrot,book,1 -thank_you,okay thank you,parrot,bye,2 -goodbye,my friend,parrot,bye,2 -greeting,hola,original,greet,4 -no,absolutely not,original,cancel,3 -yes,it seems true,parrot,book,1 -thank_you,thank ya!,original,bye,2 -greeting,heller,original,greet,4 -greeting,bonjour,original,greet,4 -greeting,how've you been feeling,original,greet,4 -how_busy,can you wait in chili's around 8 pm,parrot,avail,0 -reminder_update,please make me remember to pay my mortgage,parrot,resched,5 -yes,yeap,original,book,1 -yes,that's absolutely true,parrot,book,1 -greeting,"hello, good day",lambada,greet,4 -thank_you,appreciated,original,bye,2 -thank_you,oh sweet thanks,original,bye,2 -yes,that seems true,original,book,1 -yes,huh,parrot,book,1 -thank_you,really great!,original,bye,2 -date,'what is the date today? ',parrot,avail,0 -no,that's no,parrot,cancel,3 -yes,that's a definite yes,original,book,1 -thank_you,"awesome, thanks",original,bye,2 -goodbye,tootles?,parrot,bye,2 -how_busy,wait how long until dinner?,parrot,avail,0 -goodbye,goodbye ai,parrot,bye,2 -date,is it six days?,parrot,avail,0 -no,not really,original,cancel,3 -goodbye,it's time to say goodbye,parrot,bye,2 -yes,positive,parrot,book,1 -yes,just right,parrot,book,1 -yes,i say yes,lambada,book,1 -no,that's totally wrong!,original,cancel,3 -goodbye,cya later,original,bye,2 -no,i'd rather not answer,parrot,cancel,3 -yes,positive,original,book,1 -goodbye,goodnight,original,bye,2 -greeting,salutations!,original,greet,4 -no,it's a no,original,cancel,3 -yes,say yes,lambada,book,1 -yes,yeah yeah,lambada,book,1 -no,erroneous,parrot,cancel,3 -thank_you,thanks for that response,original,bye,2 -thank_you,i appeciate it,parrot,bye,2 -thank_you,thanks very much,parrot,bye,2 -no,not right?,parrot,cancel,3 -yes,yes,original,book,1 -date,today?,parrot,avail,0 -goodbye,goodbyes,parrot,bye,2 -yes,yay,lambada,book,1 -yes,facts,original,book,1 -how_busy,tell me the time to wait for the pizza?,parrot,avail,0 -no,nay,original,cancel,3 -goodbye,bye,original,bye,2 -yes,"yep, that's true",original,book,1 -greeting,what's up?,parrot,greet,4 -meeting_schedule,what time am i meeting with john?,original,avail,0 -greeting,how've you been,original,greet,4 -goodbye,goodnight,original,bye,2 -yes,oh-huh,parrot,book,1 -thank_you,i appreciate your assistance,parrot,bye,2 -how_busy,how long will it take to get a table in moroni's?,parrot,avail,0 -how_busy,what's the wait for red lobster?,parrot,avail,0 -reminder_update,please make a reminder,original,resched,5 -reminder_update,keep me in mind,parrot,resched,5 -goodbye,fairwell?,parrot,bye,2 -greeting,hiya!,original,greet,4 -goodbye,greetings,parrot,bye,2 -thank_you,thank you for coming by,parrot,bye,2 -yes,i think you've got it,parrot,book,1 -goodbye,sayonara,original,bye,2 -yes,i believe it is true,parrot,book,1 -yes,confirm,original,book,1 -no,that's untrue,parrot,cancel,3 -calendar,please tell me what is on my calendar for march 3rd?,parrot,avail,0 -how_busy,tell me the wait for the meal at chipotle?,parrot,avail,0 -date,what is the name of the date?,lambada,avail,0 -goodbye,have fun?,lambada,bye,2 -no,no?,parrot,cancel,3 -thank_you,awesome thanks,parrot,bye,2 -no,that isn't true,lambada,cancel,3 -yes,uh-huh,original,book,1 -calendar,do you have any plans on my calendar for next sunday?,parrot,avail,0 -thank_you,i appreciate that,original,bye,2 -how_busy,how busy is the outback steakhouse around 7pm,parrot,avail,0 -greeting,hello siri,original,greet,4 -no,it's so negative,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -goodbye,sayonara,original,bye,2 -thank_you,i'm grateful,original,bye,2 -goodbye,bye!,original,bye,2 -greeting,hey how's ot,lambada,greet,4 -how_busy,i want to know how long it will take to be seated at chili's,lambada,avail,0 -calendar_update,remove celebrate anniversary from my calendar,original,resched,5 -how_busy,waiting at macaroni grill?,parrot,avail,0 -goodbye,no problem goodbye,parrot,bye,2 -date,what's my day?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -yes,the answer is yes,original,book,1 -goodbye,i'll leave,parrot,bye,2 -no,that's not factual,parrot,cancel,3 -cancel_reservation,i want to cancel the dinner reservation for phillips at bernardin's,parrot,cancel,3 -greeting,"hello, what's up",original,greet,4 -greeting,what's up?,parrot,greet,4 -goodbye,good night,original,bye,2 -goodbye,tootles?,parrot,bye,2 -yes,positive,parrot,book,1 -greeting,heyo,original,greet,4 -yes,yeap,original,book,1 -goodbye,sign off,parrot,bye,2 -no,is my false statement?,parrot,cancel,3 -goodbye,tootles,original,bye,2 -yes,that seems true,original,book,1 -calendar_update,add staff meeting to my calendar for march 1 at 10:00 in the morning,original,resched,5 -goodbye,bye!,original,bye,2 -greeting,how you are,original,greet,4 -thank_you,you answered my question,parrot,bye,2 -no,certainly false,parrot,cancel,3 -how_busy,i'd like to know how busy the olive garden will be at 5pm,parrot,avail,0 -goodbye,it's over,parrot,bye,2 -how_busy,how much time does it take to get a table at red lobster?,parrot,avail,0 -goodbye,"thanks, bye",original,bye,2 -thank_you,many thank,original,bye,2 -yes,perfect,parrot,book,1 -greeting,hey there,original,greet,4 -reminder_update,remind me again please,original,resched,5 -meeting_schedule,wanna meet roger?,parrot,avail,0 -meeting_schedule,what's on my schedule?,parrot,avail,0 -greeting,what i feel?,parrot,greet,4 -thank_you,thank you for trying,parrot,bye,2 -yes,"yes, please",parrot,book,1 -greeting,hello what's up?,parrot,greet,4 -no,no,lambada,cancel,3 -date,what day of the month?,parrot,avail,0 -goodbye,i enjoyed our conversation,parrot,bye,2 -no,that's totally wrong,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -yes,oh-huh,parrot,book,1 -greeting,how ya doin,original,greet,4 -goodbye,later,original,bye,2 -yes,uh-huh,original,book,1 -date,show me a calendar,original,avail,0 -yes,do that?,original,book,1 -yes,absolutely,original,book,1 -goodbye,a good talk,parrot,bye,2 -yes,confirmed,original,book,1 -meeting_schedule,show the dates of meetings between 6 and 9 pm?,parrot,avail,0 -greeting,how's my family doing?,parrot,greet,4 -goodbye,it was really nice to chat with you,parrot,bye,2 -greeting,hiya,original,greet,4 -thank_you,thanks so much,original,bye,2 -yes,yes sir,original,book,1 -greeting,aho,parrot,greet,4 -date,give me a date,parrot,avail,0 -no,naw,original,cancel,3 -thank_you,you've been great,parrot,bye,2 -yes,uh-huh,original,book,1 -greeting,how's otc?,parrot,greet,4 -yes,approved,original,book,1 -goodbye,peace out,original,bye,2 -greeting,salutations,parrot,greet,4 -thank_you,my thanks,parrot,bye,2 -yes,10-Apr,original,book,1 -yes,yes,original,book,1 -thank_you,thanks for helping,original,bye,2 -goodbye,goodbye,original,bye,2 -greeting,heyo,original,greet,4 -how_busy,how busy is the macaroni grill around six,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -yes,TRUE,original,book,1 -greeting,hey,original,greet,4 -yes,definitely yes,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -greeting,aho,parrot,greet,4 -how_busy,how long will ios serve dinner?,parrot,avail,0 -yes,obviously,parrot,book,1 -how_busy,how many times will i be able to get a table in the restaurant,parrot,avail,0 -date,what month today?,parrot,avail,0 -no,no that is not right,original,cancel,3 -reminder_update,remind me to bring a raincoat,parrot,resched,5 -goodbye,"thanks, bye",original,bye,2 -no,not true,original,cancel,3 -no,that's definitely false,original,cancel,3 -no,that's not the case,parrot,cancel,3 -goodbye,next time we'll talk,parrot,bye,2 -greeting,wassup,original,greet,4 -calendar_update,is it possible to remove this event from my calendar?,parrot,resched,5 -yes,not false,parrot,book,1 -greeting,heller,original,greet,4 -yes,let's do it,parrot,book,1 -goodbye,regards,original,bye,2 -no,the information is not correct,parrot,cancel,3 -date,in 8 days?,parrot,avail,0 -reminder_update,remind me to call my mother,parrot,resched,5 -greeting,hey yai,lambada,greet,4 -yes,"yes, please",parrot,book,1 -no,invalid,original,cancel,3 -thank_you,many thanks,original,bye,2 -goodbye,just relax,parrot,bye,2 -thank_you,thanks for that,original,bye,2 -greeting,how's life,original,greet,4 -yes,okay,original,book,1 -greeting,how're you doing,original,greet,4 -thank_you,your answer was fun,parrot,bye,2 -how_busy,how long do you expect to wait for a table in the olive gardens?,parrot,avail,0 -goodbye,talk to you soon,parrot,bye,2 -how_busy,does the place get a lot of business around 8?,parrot,avail,0 -yes,definitely,original,book,1 -meeting_schedule,have a meeting today?,parrot,avail,0 -goodbye,have to run,parrot,bye,2 -no,i think it's wrong,parrot,cancel,3 -greeting,how's it going now?,parrot,greet,4 -yes,approved,original,book,1 -thank_you,i'm glad you helped,parrot,bye,2 -no,that's no,parrot,cancel,3 -meeting_schedule,when is the meeting today?,parrot,avail,0 -how_busy,is chili busy at 730?,parrot,avail,0 -date,what's today,original,avail,0 -no,i'm saying no,parrot,cancel,3 -reminder_update,i would like to make a reminder to clean the bathroom in the morning,lambada,resched,5 -no,i disagree,parrot,cancel,3 -greeting,hello there!,original,greet,4 -reminder_update,you know something?,parrot,resched,5 -no,negative,original,cancel,3 -yes,affirmative,original,book,1 -goodbye,adios,original,bye,2 -goodbye,goodnight,original,bye,2 -yes,it's logical,parrot,book,1 -goodbye,was fun seeing you,parrot,bye,2 -greeting,"hello, ai",original,greet,4 -yes,"yeah, that's it",lambada,book,1 -greeting,what's happening,original,greet,4 -no,say negative,parrot,cancel,3 -yes,i believe that's true,original,book,1 -goodbye,goodbyes,parrot,bye,2 -goodbye,later,original,bye,2 -yes,oh-huh,parrot,book,1 -calendar_update,please scratch my march 1st meeting off my calendar,original,resched,5 -thank_you,"oh, thanks",original,bye,2 -goodbye,tootles,original,bye,2 -yes,10-Apr,original,book,1 -calendar,what's tuesday's calendar?,parrot,avail,0 -greeting,how are you today?,parrot,greet,4 -greeting,is everything ok today?,original,greet,4 -yes,all right,original,book,1 -meeting_schedule,how do i know i'm talking about a meeting?,parrot,avail,0 -no,that's a false,lambada,cancel,3 -date,tell me what's the date tomorrow,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -goodbye,i have to go,parrot,bye,2 -how_busy,how long will it take to eat at black jack,lambada,avail,0 -thank_you,you've tried,parrot,bye,2 -yes,affirmative,original,book,1 -goodbye,fairwell?,parrot,bye,2 -goodbye,bye!,original,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -date,current day,parrot,avail,0 -how_busy,how long will it be before we're seated in the restaurant,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -thank_you,i appreciate the answer,parrot,bye,2 -no,negative definitely,parrot,cancel,3 -greeting,heller,original,greet,4 -thank_you,thank you,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,please no,parrot,cancel,3 -yes,huh,parrot,book,1 -date,a year?,parrot,avail,0 -thank_you,glad that you did it,parrot,bye,2 -goodbye,bye!,original,bye,2 -no,that's certainly false,parrot,cancel,3 -yes,a fact,parrot,book,1 -greeting,how's life,original,greet,4 -greeting,bonjour,original,greet,4 -goodbye,farewell!,original,bye,2 -yes,yes sir,original,book,1 -yes,oh-huh,parrot,book,1 -greeting,how are you doing?,parrot,greet,4 -no,what you've said is false?,parrot,cancel,3 -no,don't agree,parrot,cancel,3 -how_busy,tell me how busy i have to be at the cheesecake factory around 1030?,parrot,avail,0 -calendar,what's the tuesday calendar like?,parrot,avail,0 -reminder_update,let me remember,parrot,resched,5 -cancel_reservation,please cancel my reservation for 5 nights in the loft,parrot,cancel,3 -yes,great,original,book,1 -thank_you,thank you for helping,parrot,bye,2 -no,invalid,original,cancel,3 -greeting,how is it with you,lambada,greet,4 -schedule_meeting,please help me with a meeting?,parrot,book,1 -greeting,what's happening,original,greet,4 -yes,certainly,parrot,book,1 -no,negatory?,parrot,cancel,3 -no,not that,original,cancel,3 -date,tomorrow is the calendar,parrot,avail,0 -how_busy,do you know how busy imoos is at this point?,parrot,avail,0 -greeting,hello good morning,parrot,greet,4 -greeting,salutations,parrot,greet,4 -cancel_reservation,please cancel my reservation for 5 at red robin,original,cancel,3 -greeting,how's everything,original,greet,4 -goodbye,regards,original,bye,2 -no,that's a negative,original,cancel,3 -how_busy,find out how busy the olive garden is right now,lambada,avail,0 -goodbye,i leave now,parrot,bye,2 -goodbye,goodbye soon,lambada,bye,2 -date,what's the date tomorrow?,parrot,avail,0 -thank_you,awesome thanks,parrot,bye,2 -greeting,yo,original,greet,4 -greeting,heyo,original,greet,4 -no,i disagree,parrot,cancel,3 -no,no?,parrot,cancel,3 -cancel_reservation,tell the restaurant i cannot make it?,original,cancel,3 -no,absolutely false,parrot,cancel,3 -no,it'd be awful,parrot,cancel,3 -no,but that's not factual,parrot,cancel,3 -goodbye,"later, goodbye",lambada,bye,2 -thank_you,i'm very grateful,parrot,bye,2 -date,what is today?,original,avail,0 -yes,TRUE,lambada,book,1 -greeting,hi how's everything?,parrot,greet,4 -greeting,salutation,parrot,greet,4 -yes,"yup, that's correct",lambada,book,1 -goodbye,glad to talk to you,parrot,bye,2 -greeting,what's going on,original,greet,4 -yes,definitely yes,parrot,book,1 -thank_you,you've been great,parrot,bye,2 -yes,yes sir,original,book,1 -yes,say yes,lambada,book,1 -yes,affirmitive,original,book,1 -goodbye,farewell!,original,bye,2 -yes,perfect,parrot,book,1 -schedule_meeting,i have to schedule a meeting with stanley at 6 pm,parrot,book,1 -no,not happening,original,cancel,3 -meeting_schedule,when's my meeting with john?,parrot,avail,0 -yes,it is a yes from me,parrot,book,1 -how_busy,how busy is scotch brite at 5 pm,lambada,avail,0 -goodbye,regards,original,bye,2 -goodbye,take care then,parrot,bye,2 -greeting,salutation,parrot,greet,4 -how_busy,how busy is ihop?,parrot,avail,0 -calendar,what's on my calendar for 14th?,parrot,avail,0 -how_busy,how busy is rancho around 9am?,parrot,avail,0 -no,please no,parrot,cancel,3 -greeting,how's life,original,greet,4 -how_busy,how busy will brown bear be at 10 pm,lambada,avail,0 -no,say negative,parrot,cancel,3 -goodbye,i have to say goodbye now,lambada,bye,2 -cancel_reservation,leave my reservation at the restaurant for ruben at 2,lambada,cancel,3 -calendar_update,delete all appointments from my calendar on thursday,lambada,resched,5 -thank_you,please thank you for taking the time,parrot,bye,2 -cancel_reservation,call my reservation cancelled,parrot,cancel,3 -thank_you,why thank you?,original,bye,2 -no,that's a negatory,original,cancel,3 -goodbye,fairwell?,parrot,bye,2 -how_busy,what time does it take to wait at the cheese cake factory?,parrot,avail,0 -how_busy,what's the wait?,parrot,avail,0 -how_busy,how long will it last in this restaurant?,parrot,avail,0 -no,FALSE,original,cancel,3 -greeting,what's up?,parrot,greet,4 -greeting,how's otc?,parrot,greet,4 -no,it is no,original,cancel,3 -how_busy,how long will it take for ihop to be open at 5,lambada,avail,0 -greeting,i need to know how you are doing today,original,greet,4 -goodbye,bye bye,lambada,bye,2 -goodbye,farewell,original,bye,2 -no,nope,original,cancel,3 -goodbye,adios,original,bye,2 -no,absolutely not,original,cancel,3 -yes,positive,parrot,book,1 -greeting,hi there,original,greet,4 -thank_you,thanks a million,original,bye,2 -greeting,hi there,original,greet,4 -greeting,whats up?,parrot,greet,4 -yes,yeap,original,book,1 -goodbye,was fun seeing you,parrot,bye,2 -no,i don't think it's true so i'd say it's a false claim,parrot,cancel,3 -how_busy,is it possible to get an accurate estimate of how busy the restaurant is at 8pm?,parrot,avail,0 -greeting,what do you feel?,parrot,greet,4 -how_busy,how busy will applebees be at 5:30,lambada,avail,0 -greeting,are you okay??,parrot,greet,4 -goodbye,sayonara,original,bye,2 -no,that's definitely false,original,cancel,3 -how_busy,how long will it be before the restaurant will be reserved?,parrot,avail,0 -no,FALSE,original,cancel,3 -thank_you,nice,parrot,bye,2 -no,it is indeed false,lambada,cancel,3 -no,negatory,original,cancel,3 -no,the negator,parrot,cancel,3 -no,the negator,parrot,cancel,3 -no,not good,parrot,cancel,3 -yes,say positive,parrot,book,1 -how_busy,how busy is chili around dinner?,parrot,avail,0 -greeting,how's ai doing?,parrot,greet,4 -calendar_update,can you cancel improv class from my calendar for may 7?,parrot,resched,5 -yes,a fact,parrot,book,1 -greeting,good morning,parrot,greet,4 -how_busy,how busy is red robin at 7,lambada,avail,0 -date,tell me the day of the month,parrot,avail,0 -greeting,tell me how you're doing,parrot,greet,4 -yes,10-Apr,original,book,1 -greeting,"hey, ai",original,greet,4 -goodbye,see ya,lambada,bye,2 -greeting,hiya,original,greet,4 -no,nay,original,cancel,3 -goodbye,goodbyes,parrot,bye,2 -yes,okay,original,book,1 -yes,you are correct,original,book,1 -goodbye,this conversation was wonderful,parrot,bye,2 -greeting,"hey, ai",original,greet,4 -no,nay,original,cancel,3 -thank_you,awesome thanks,parrot,bye,2 -cancel_reservation,the reservation i made,parrot,cancel,3 -goodbye,peace out!,original,bye,2 -no,is very false,parrot,cancel,3 -yes,i guess,parrot,book,1 -schedule_meeting,can you have a meeting with sarah smith?,parrot,book,1 -greeting,how's otc?,parrot,greet,4 -no,erroneous,parrot,cancel,3 -yes,positive,parrot,book,1 -no,that's incorrect!,original,cancel,3 -yes,affirmative,original,book,1 -date,please date,parrot,avail,0 -no,naw,original,cancel,3 -date,what is my date tomorrow?,parrot,avail,0 -calendar,check my calendar for events on march 11th?,parrot,avail,0 -thank_you,thank you!,original,bye,2 -goodbye,goodnight,original,bye,2 -no,i don't think so,original,cancel,3 -goodbye,"great chat, talk to you later",original,bye,2 -no,it is false,original,cancel,3 -goodbye,later!,original,bye,2 -reminder_update,you can remind me,parrot,resched,5 -reminder_update,i want to remind you to look at it,parrot,resched,5 -goodbye,bye-bye,original,bye,2 -greeting,aho,parrot,greet,4 -thank_you,thanks for my assistance,parrot,bye,2 -date,current day,parrot,avail,0 -goodbye,farewell!,original,bye,2 -yes,perfect,parrot,book,1 -goodbye,until the next time,parrot,bye,2 -date,in five days?,parrot,avail,0 -thank_you,so grateful,parrot,bye,2 -meeting_schedule,meetings today,original,avail,0 -thank_you,i appeciate it,parrot,bye,2 -no,that's absolutely wrong,parrot,cancel,3 -greeting,heller,original,greet,4 -greeting,hey how's it going?,parrot,greet,4 -thank_you,thanks for the response,lambada,bye,2 -yes,TRUE,original,book,1 -thank_you,your answer was fun,parrot,bye,2 -reminder_update,add a reminder,lambada,resched,5 -how_busy,does a macaroni grill have a wait?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,later,original,bye,2 -date,what's the date tomorrow,original,avail,0 -date,today?,parrot,avail,0 -yes,yay,lambada,book,1 -goodbye,i'll go,parrot,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -yes,"yes, please",parrot,book,1 -greeting,salutations!,original,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -goodbye,talk later,original,bye,2 -thank_you,thanks for answering,parrot,bye,2 -goodbye,"nice talking again, bye",original,bye,2 -goodbye,i'll go,parrot,bye,2 -thank_you,thanks please,original,bye,2 -thank_you,thankyou,parrot,bye,2 -how_busy,tell me the time to wait if we want to go to the cheesecake factory,parrot,avail,0 -greeting,what's happening,original,greet,4 -yes,yeap,original,book,1 -yes,ya,original,book,1 -how_busy,how busy the place is at 6?,parrot,avail,0 -how_busy,wait for a table at red lobsters around 11 o'clock in the morning?,parrot,avail,0 -greeting,how've you been,original,greet,4 -greeting,how's otc?,parrot,greet,4 -greeting,hola!,original,greet,4 -yes,uh huh,original,book,1 -no,so that's no,parrot,cancel,3 -how_busy,say how busy it will be around 6pm?,parrot,avail,0 -greeting,hola!,original,greet,4 -greeting,hey there!,original,greet,4 -yes,ya,original,book,1 -goodbye,great talk,lambada,bye,2 -thank_you,thanks very much for your answer,parrot,bye,2 -goodbye,as regards,parrot,bye,2 -yes,confirmed,original,book,1 -date,where is tomorrow's date?,parrot,avail,0 -calendar,did i set the 10th as my doctor's day?,parrot,avail,0 -no,negatory,original,cancel,3 -no,not happening,original,cancel,3 -reminder_update,please remind me to do it,parrot,resched,5 -yes,correct,original,book,1 -yes,right,parrot,book,1 -greeting,hey how's it going,original,greet,4 -schedule_meeting,i want a meeting,parrot,book,1 -no,i prefer not to do that,parrot,cancel,3 -greeting,are you doing okay?,original,greet,4 -goodbye,talk to me soon,parrot,bye,2 -reminder_update,remember the meeting tomorrow,parrot,resched,5 -no,it is not that,lambada,cancel,3 -greeting,are you doing ok?,original,greet,4 -thank_you,my gratitude,parrot,bye,2 -yes,ok,original,book,1 -how_busy,how long can i wait to be seated at the fountain?,parrot,avail,0 -no,invalid,original,cancel,3 -goodbye,adios!,original,bye,2 -yes,absolutely!,original,book,1 -date,what will be the day's date in 10 days?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -greeting,yo,original,greet,4 -no,negation,parrot,cancel,3 -date,current date,original,avail,0 -no,negatory?,parrot,cancel,3 -reminder_update,remind me to put the onion on the grill?,parrot,resched,5 -how_busy,do you know how long the wait time is in the coffee shops?,parrot,avail,0 -no,no that's not the case,parrot,cancel,3 -greeting,heller,original,greet,4 -yes,ok,original,book,1 -no,FALSE,original,cancel,3 -yes,oh-huh,parrot,book,1 -no,it's false,parrot,cancel,3 -greeting,hey yai,lambada,greet,4 -meeting_schedule,when does i meet richard?,parrot,avail,0 -yes,yep,original,book,1 -calendar_update,erase meeting with jeff from my calendar,original,resched,5 -greeting,"hey, what's up",original,greet,4 -no,i prefer not,parrot,cancel,3 -no,please no,parrot,cancel,3 -greeting,heller,original,greet,4 -no,negative,original,cancel,3 -no,nope,original,cancel,3 -no,but not right now,parrot,cancel,3 -thank_you,your answer was fun,parrot,bye,2 -goodbye,great chat goodbye,lambada,bye,2 -greeting,hows it going,lambada,greet,4 -no,the statement is false,original,cancel,3 -meeting_schedule,what's on my schedule?,parrot,avail,0 -date,what the day?,parrot,avail,0 -greeting,hello how are you doing today?,parrot,greet,4 -no,that's a negative,original,cancel,3 -calendar,what do i have scheduled for 3/5?,lambada,avail,0 -how_busy,check the red lobster if it's packed around 5pm,parrot,avail,0 -date,what date?,parrot,avail,0 -yes,good yes,lambada,book,1 -how_busy,is mr joes pizza a regular dinner?,parrot,avail,0 -thank_you,and i'm grateful,parrot,bye,2 -no,that's a negatory,original,cancel,3 -greeting,heller,original,greet,4 -calendar,please check my calendar for me,parrot,avail,0 -no,the negator,parrot,cancel,3 -thank_you,thanks for my answer,parrot,bye,2 -thank_you,gracias,original,bye,2 -greeting,hello how's the situation?,parrot,greet,4 -date,what is tomorrow?,parrot,avail,0 -date,current day,parrot,avail,0 -goodbye,have fun?,lambada,bye,2 -greeting,how's my feeling?,parrot,greet,4 -calendar_update,erase my calendar from this friday,lambada,resched,5 -no,no thanks,original,cancel,3 -thank_you,okay thanks,original,bye,2 -yes,is true,parrot,book,1 -greeting,hola,original,greet,4 -thank_you,thankyou,parrot,bye,2 -meeting_schedule,are there any meetings between 6 and 9 pm?,lambada,avail,0 -reminder_update,remember to remember later,parrot,resched,5 -no,is that a lie,parrot,cancel,3 -yes,not a lie,parrot,book,1 -thank_you,thank you ai for everything you do,original,bye,2 -greeting,bonjour,original,greet,4 -how_busy,are ihops packed around 9 pm?,parrot,avail,0 -greeting,hey fellow,parrot,greet,4 -yes,that is true,lambada,book,1 -yes,huh,parrot,book,1 -no,FALSE,original,cancel,3 -yes,yes,original,book,1 -how_busy,how long will it take to sit in the olympia stadium?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -thank_you,you helped me,parrot,bye,2 -thank_you,gracias,original,bye,2 -greeting,"hello, how's my day",original,greet,4 -goodbye,fairwell?,parrot,bye,2 -reminder_update,can you set a reminder?,parrot,resched,5 -goodbye,later goodbye,parrot,bye,2 -no,that's a lie,parrot,cancel,3 -how_busy,tell me how busy the cheesecake factory will be around 7pm?,parrot,avail,0 -no,nope,original,cancel,3 -yes,obviously,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -meeting_schedule,what's my meeting schedule today,lambada,avail,0 -reminder_update,please do not forget,parrot,resched,5 -yes,is true,parrot,book,1 -no,don't like that,parrot,cancel,3 -no,would be no?,parrot,cancel,3 -no,nothing,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -date,date tomorrow?,parrot,avail,0 -yes,good yes,lambada,book,1 -calendar_update,remove the doctor's appointment for saturday,parrot,resched,5 -goodbye,"have a good day, bye?",original,bye,2 -greeting,how's everything,original,greet,4 -reminder_update,please add a reminder,lambada,resched,5 -greeting,well hello,original,greet,4 -greeting,"hey, what's up",original,greet,4 -greeting,hiya,original,greet,4 -cancel_reservation,cancel the reservation at the restaurant,parrot,cancel,3 -no,please disagree,lambada,cancel,3 -goodbye,buhbye now,lambada,bye,2 -meeting_schedule,are there meetings between 5 and 6?,parrot,avail,0 -date,when is it going to be eight days?,parrot,avail,0 -date,you know the date?,parrot,avail,0 -no,it's so negative,parrot,cancel,3 -no,i'm afraid not,parrot,cancel,3 -greeting,do you feel?,parrot,greet,4 -yes,yup,original,book,1 -reminder_update,remind me to take care of the flowers,lambada,resched,5 -how_busy,how long will the wait at red robin be?,parrot,avail,0 -yes,okay,original,book,1 -yes,certainly,parrot,book,1 -no,so that's no,parrot,cancel,3 -greeting,hiya!,original,greet,4 -goodbye,this was a great conversation,original,bye,2 -date,today?,parrot,avail,0 -greeting,salutations!,original,greet,4 -no,the negator,parrot,cancel,3 -thank_you,you've been great,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -greeting,hello there!,original,greet,4 -greeting,hey what's going on?,parrot,greet,4 -greeting,nice day,lambada,greet,4 -meeting_schedule,please tell me my schedule for the meeting?,parrot,avail,0 -how_busy,how busy will the olive garden be at 7?,parrot,avail,0 -no,thanks no,parrot,cancel,3 -yes,positive,parrot,book,1 -yes,good,parrot,book,1 -greeting,whats new,lambada,greet,4 -thank_you,you've helped,parrot,bye,2 -no,the answer to that is no,lambada,cancel,3 -no,certainly false,parrot,cancel,3 -how_busy,will i be able to get a good deal on food before dinner,lambada,avail,0 -no,no way!,original,cancel,3 -greeting,please tell me how you feel,parrot,greet,4 -yes,accepted,original,book,1 -greeting,bonjour,original,greet,4 -greeting,hola,original,greet,4 -greeting,heller,original,greet,4 -date,today?,parrot,avail,0 -goodbye,good bye,original,bye,2 -yes,say yes,lambada,book,1 -date,list the next week?,parrot,avail,0 -yes,you're right,original,book,1 -reminder_update,come on please,parrot,resched,5 -no,i dont think it's right,parrot,cancel,3 -no,negative,original,cancel,3 -goodbye,tootles?,parrot,bye,2 -yes,say yes,lambada,book,1 -no,negatory?,parrot,cancel,3 -greeting,nice day,lambada,greet,4 -yes,it seems true,parrot,book,1 -greeting,bonjour,original,greet,4 -no,no please,parrot,cancel,3 -date,what date?,parrot,avail,0 -greeting,hey there,original,greet,4 -yes,huh,parrot,book,1 -yes,confirmed,original,book,1 -no,negative,original,cancel,3 -date,"tell me the date, please?",original,avail,0 -thank_you,nice,parrot,bye,2 -how_busy,waiting for a macaroni grill?,parrot,avail,0 -yes,absolutely!,original,book,1 -how_busy,what is the wait at olive garden?,lambada,avail,0 -yes,seems true,parrot,book,1 -no,naw,original,cancel,3 -no,don't like that,parrot,cancel,3 -schedule_meeting,i'd like you to help me arrange a meeting,parrot,book,1 -reminder_update,create a reminder for me to get cat food,parrot,resched,5 -no,say negative,parrot,cancel,3 -no,no?,parrot,cancel,3 -no,thanks no,parrot,cancel,3 -cancel_reservation,cancel my reservation in osteria for our party,parrot,cancel,3 -goodbye,good luck,lambada,bye,2 -no,would be a lie,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -no,negative sure,parrot,cancel,3 -yes,yep,original,book,1 -yes,huh,parrot,book,1 -greeting,have you been good?,original,greet,4 -goodbye,im leaving,parrot,bye,2 -yes,that's true,original,book,1 -yes,a fact,parrot,book,1 -yes,yes,original,book,1 -yes,great,original,book,1 -no,the statement is totally false,parrot,cancel,3 -yes,of course,original,book,1 -date,today what date?,parrot,avail,0 -yes,just right,parrot,book,1 -yes,that will be true,original,book,1 -yes,great,original,book,1 -greeting,what i feel?,parrot,greet,4 -thank_you,good looking out,original,bye,2 -how_busy,how busy will the cheesecake factory be at 930?,parrot,avail,0 -no,false sure,parrot,cancel,3 -calendar_update,add to friday's calendar a doctor's appointment,original,resched,5 -greeting,good evening,original,greet,4 -thank_you,many thanks,original,bye,2 -date,tell me what the day of the week is,parrot,avail,0 -yes,yup,original,book,1 -goodbye,adios!,original,bye,2 -calendar,what's the tuesday calendar?,parrot,avail,0 -date,what's today?,parrot,avail,0 -no,no!,original,cancel,3 -greeting,nice to hear what's going on,lambada,greet,4 -yes,great,original,book,1 -schedule_meeting,i need you to schedule a meeting with bob brown the day after,parrot,book,1 -calendar_update,proceed and cancel the appointment for monday,parrot,resched,5 -yes,that's true,original,book,1 -yes,okay,original,book,1 -thank_you,you're the best!,original,bye,2 -greeting,salutation,parrot,greet,4 -greeting,welcome,parrot,greet,4 -thank_you,thank you for the information you gave,parrot,bye,2 -yes,obviously,parrot,book,1 -thank_you,"good job, thanks",lambada,bye,2 -goodbye,adios ai,original,bye,2 -how_busy,tell me the time to wait for a table in the bakery?,parrot,avail,0 -yes,TRUE,original,book,1 -meeting_schedule,when is my meeting with christian scheduled?,parrot,avail,0 -how_busy,is kaya busy around 5 p?,parrot,avail,0 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -goodbye,say goodbye now,parrot,bye,2 -thank_you,appreciated,original,bye,2 -yes,positive,parrot,book,1 -goodbye,thanks bye bye!,original,bye,2 -thank_you,appreciate it,original,bye,2 -yes,all right,original,book,1 -yes,yeap,original,book,1 -date,you have the date?,parrot,avail,0 -greeting,what's new?,parrot,greet,4 -goodbye,thanks for the conversation,parrot,bye,2 -goodbye,have to go,parrot,bye,2 -meeting_schedule,do i need to schedule meetings with kim?,lambada,avail,0 -thank_you,i appeciate it,parrot,bye,2 -yes,confirm,original,book,1 -how_busy,how busy is the canadian grill at 6pm?,parrot,avail,0 -goodbye,goodbye soon,lambada,bye,2 -how_busy,tell me the wait for the jalapenos at 6pm?,parrot,avail,0 -no,please disagree,lambada,cancel,3 -date,which date is it today?,parrot,avail,0 -yes,okay,original,book,1 -yes,yes,original,book,1 -goodbye,adios!,original,bye,2 -yes,right,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -greeting,hiya,original,greet,4 -thank_you,my gratitude,parrot,bye,2 -yes,you're right,original,book,1 -how_busy,learn how long it takes to wait in olive garden,parrot,avail,0 -no,is my false claim?,parrot,cancel,3 -no,no please,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -meeting_schedule,does today's schedule include meetings?,parrot,avail,0 -thank_you,thanks very much for your answer,parrot,bye,2 -meeting_schedule,which meetings will be held in san francisco,parrot,avail,0 -yes,huh,parrot,book,1 -no,please no,parrot,cancel,3 -yes,yes that is true,lambada,book,1 -greeting,hi there,original,greet,4 -greeting,good evening,original,greet,4 -date,which day in a month will be the first day of the month in 5 days?,parrot,avail,0 -greeting,hello what is happening,lambada,greet,4 -goodbye,see ya,lambada,bye,2 -goodbye,im leaving goodbye,parrot,bye,2 -schedule_meeting,"at noon, schedule a meeting with saul",original,book,1 -yes,"yep, that's right",original,book,1 -greeting,aho,parrot,greet,4 -goodbye,i'll leave now,parrot,bye,2 -meeting_schedule,and i need to know if i have meetings scheduled with mark,parrot,avail,0 -yes,affirmitive,original,book,1 -how_busy,how busy is chili at 8am?,parrot,avail,0 -greeting,what's new here?,parrot,greet,4 -meeting_schedule,what meetings do you have planned for today?,parrot,avail,0 -greeting,hows are ya,original,greet,4 -yes,affirmitive,original,book,1 -no,it's negative,parrot,cancel,3 -cancel_reservation,please cancel my reservation for 6 at red robin,lambada,cancel,3 -how_busy,how long do i have to wait to be seated in this restaurant?,parrot,avail,0 -no,the answer is a false,parrot,cancel,3 -greeting,what's happening,original,greet,4 -thank_you,i'm thankful for the help,parrot,bye,2 -yes,absolutely,original,book,1 -yes,affirmative,original,book,1 -yes,just right,parrot,book,1 -goodbye,thanks for the great talk,parrot,bye,2 -no,no?,parrot,cancel,3 -greeting,hey there,original,greet,4 -yes,yep,original,book,1 -meeting_schedule,am i scheduled to meet with heather today,original,avail,0 -thank_you,you've been great,parrot,bye,2 -date,what's the present day?,parrot,avail,0 -yes,facts,original,book,1 -goodbye,thanks goodbye,parrot,bye,2 -no,negative certainly,parrot,cancel,3 -greeting,hi,original,greet,4 -yes,say yes,lambada,book,1 -no,"yea, that is wrong",lambada,cancel,3 -goodbye,i'm going,parrot,bye,2 -yes,perfect,parrot,book,1 -no,no that is wrong,original,cancel,3 -no,erroneous,parrot,cancel,3 -goodbye,cya later,original,bye,2 -date,date tomorrow?,parrot,avail,0 -greeting,hey yai,lambada,greet,4 -thank_you,you're special thanks,parrot,bye,2 -meeting_schedule,when is my invoicing meeting?,parrot,avail,0 -yes,yup,original,book,1 -no,it would be wrong,parrot,cancel,3 -how_busy,will the restaurant fill up?,parrot,avail,0 -no,not right?,parrot,cancel,3 -date,what's the name of today?,parrot,avail,0 -greeting,well hello,original,greet,4 -calendar,tell me what's on my calendar for march 2?,parrot,avail,0 -cancel_reservation,cancel dinner reservation tonight,parrot,cancel,3 -thank_you,"awesome, thanks",original,bye,2 -thank_you,merci beaucoup,original,bye,2 -no,it is indeed false,lambada,cancel,3 -schedule_meeting,help me arrange a meeting,parrot,book,1 -how_busy,how long will i have to wait if we want to go to cheesecake factory,parrot,avail,0 -yes,approved,original,book,1 -goodbye,have to run,parrot,bye,2 -yes,confirm,original,book,1 -goodbye,good-bye,parrot,bye,2 -yes,accept,parrot,book,1 -cancel_reservation,cancel the reservation for dinner,lambada,cancel,3 -goodbye,"nice talk, goodbye",lambada,bye,2 -goodbye,this conversation was great,parrot,bye,2 -yes,positive,parrot,book,1 -greeting,hey there!,original,greet,4 -thank_you,thank you for the time,parrot,bye,2 -no,"no, it's not",lambada,cancel,3 -thank_you,thanks for my support,parrot,bye,2 -goodbye,nice talk,lambada,bye,2 -date,current day,parrot,avail,0 -greeting,hey there fellow,original,greet,4 -yes,huh,parrot,book,1 -thank_you,my gratitude,parrot,bye,2 -goodbye,"thanks for chatting, later",original,bye,2 -calendar_update,go ahead and cancel the appointment for monday,parrot,resched,5 -yes,facts,original,book,1 -greeting,hey,original,greet,4 -calendar,how's it going on friday,parrot,avail,0 -no,no!,original,cancel,3 -greeting,ahoy,lambada,greet,4 -greeting,hello there,original,greet,4 -thank_you,many thanks,original,bye,2 -greeting,how's life?,parrot,greet,4 -greeting,hola!,original,greet,4 -yes,yay,lambada,book,1 -yes,great,original,book,1 -no,that's incorrect!,original,cancel,3 -no,don't agree,parrot,cancel,3 -yes,of course,original,book,1 -no,FALSE,lambada,cancel,3 -thank_you,you have my thanks,parrot,bye,2 -no,"no, that's a lie",lambada,cancel,3 -thank_you,thank you ai,parrot,bye,2 -greeting,how's my family?,parrot,greet,4 -greeting,hey what's up?,parrot,greet,4 -yes,that appears true,original,book,1 -no,that would be wrong,lambada,cancel,3 -greeting,salutations,parrot,greet,4 -reminder_update,make a reminder to pay the mortgage,original,resched,5 -no,that's erroneous,parrot,cancel,3 -thank_you,thanks for cooperating,parrot,bye,2 -goodbye,maybe next time,parrot,bye,2 -no,that's untrue,parrot,cancel,3 -no,no thanks,original,cancel,3 -goodbye,i liked our conversation,parrot,bye,2 -how_busy,is michel busy at three?,parrot,avail,0 -no,absolutely not,original,cancel,3 -greeting,hola,original,greet,4 -yes,"yes, please",parrot,book,1 -yes,yeah that's right,lambada,book,1 -thank_you,i'm really thankful,parrot,bye,2 -date,what's today?,parrot,avail,0 -thank_you,and i'm grateful,parrot,bye,2 -no,not happening,original,cancel,3 -greeting,how is life treating you,original,greet,4 -no,nothing,parrot,cancel,3 -yes,yup,original,book,1 -date,what month today?,parrot,avail,0 -yes,right,parrot,book,1 -greeting,whats up,original,greet,4 -thank_you,appreciated,original,bye,2 -no,that is erroneous,original,cancel,3 -no,negatory?,parrot,cancel,3 -thank_you,so grateful,parrot,bye,2 -greeting,how does ife treat you?,parrot,greet,4 -schedule_meeting,a meeting is needed,parrot,book,1 -greeting,ahoy,lambada,greet,4 -goodbye,good see you,lambada,bye,2 -yes,obviously,parrot,book,1 -goodbye,goodbye to yours,parrot,bye,2 -greeting,bonjour,original,greet,4 -calendar,help me find what my calendar holds for february,parrot,avail,0 -yes,yeap,original,book,1 -goodbye,signing off,original,bye,2 -calendar,what's the tuesday calendar?,parrot,avail,0 -yes,"yep, that's correct",lambada,book,1 -yes,yes i am,original,book,1 -thank_you,thank you very much for the support,parrot,bye,2 -calendar,what's my march 30 calendar?,parrot,avail,0 -no,the negator,parrot,cancel,3 -cancel_reservation,should i cancel my reservation?,parrot,cancel,3 -yes,all right,original,book,1 -yes,yay,lambada,book,1 -thank_you,"thanks, that's helpful",original,bye,2 -cancel_reservation,"i have to cancel my reservation after all, please",original,cancel,3 -goodbye,bye-bye,original,bye,2 -no,nada,original,cancel,3 -yes,TRUE,original,book,1 -how_busy,how busy is the restaurant at 6 pm?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,all right,parrot,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -how_busy,how busy is that restaurant at the dinner hour,lambada,avail,0 -no,no no no,parrot,cancel,3 -meeting_schedule,are there meetings from 1-5?,parrot,avail,0 -greeting,how're you?,parrot,greet,4 -no,no that isn't true,lambada,cancel,3 -no,not really,original,cancel,3 -thank_you,thanks for helping,original,bye,2 -goodbye,tata for now,original,bye,2 -goodbye,farewell!,original,bye,2 -goodbye,later,original,bye,2 -goodbye,farewell,original,bye,2 -yes,of course,original,book,1 -no,i don't agree,parrot,cancel,3 -how_busy,how busy is red robin at 11 am,lambada,avail,0 -greeting,how's life going?,parrot,greet,4 -no,that's a negatory,original,cancel,3 -greeting,good morning,parrot,greet,4 -thank_you,okay thank you,parrot,bye,2 -greeting,how's idy?,parrot,greet,4 -no,nothing,parrot,cancel,3 -reminder_update,remind me,original,resched,5 -date,date tomorrow?,parrot,avail,0 -thank_you,gracias,original,bye,2 -no,"no, it's not",lambada,cancel,3 -goodbye,good night,original,bye,2 -no,the information is wrong,original,cancel,3 -goodbye,tootles?,parrot,bye,2 -goodbye,tootles,original,bye,2 -how_busy,how long is the wait time at blackjack?,parrot,avail,0 -schedule_meeting,how do you set up a meeting?,parrot,book,1 -greeting,bonjour,original,greet,4 -no,no thanks,original,cancel,3 -greeting,how's my day going,lambada,greet,4 -greeting,how's everything,original,greet,4 -thank_you,thank you?,parrot,bye,2 -greeting,how you're treated?,parrot,greet,4 -no,certainly not true,parrot,cancel,3 -thank_you,thanks,original,bye,2 -no,"no, definitely not",original,cancel,3 -how_busy,what's the most popular meal at olive garden around 7:30,lambada,avail,0 -greeting,hola,original,greet,4 -date,now what's the day?,parrot,avail,0 -goodbye,the talk was nice,lambada,bye,2 -thank_you,thankyou,parrot,bye,2 -goodbye,farewell!,original,bye,2 -yes,"yes, please",parrot,book,1 -no,absolutely not,original,cancel,3 -greeting,well hello,original,greet,4 -greeting,hey it's up,lambada,greet,4 -goodbye,bye-bye,original,bye,2 -thank_you,it's my debt,parrot,bye,2 -thank_you,you've tried,parrot,bye,2 -no,"no, that is inaccurate",original,cancel,3 -goodbye,signing off,original,bye,2 -greeting,hey how's ot,lambada,greet,4 -cancel_reservation,cancel my reservation at the osteria for our group,parrot,cancel,3 -no,nada,original,cancel,3 -date,what is it today?,lambada,avail,0 -greeting,hi how's everything?,parrot,greet,4 -yes,it appears true,parrot,book,1 -reminder_update,maybe a reminder?,parrot,resched,5 -greeting,how've you been,original,greet,4 -yes,ok,original,book,1 -yes,yep,original,book,1 -thank_you,you've been great,parrot,bye,2 -date,what's today?,parrot,avail,0 -no,negatory?,parrot,cancel,3 -calendar_update,make sure that the events on my calendar for march 30 2019 are clear,parrot,resched,5 -goodbye,signing off,original,bye,2 -date,today?,parrot,avail,0 -date,what's the year?,parrot,avail,0 -thank_you,you've helped,parrot,bye,2 -reminder_update,pay taxes on monday,parrot,resched,5 -date,a year?,parrot,avail,0 -goodbye,later goodbye,parrot,bye,2 -yes,i'll check that out,parrot,book,1 -no,that's certainly false,parrot,cancel,3 -no,i prefer not,parrot,cancel,3 -meeting_schedule,when's the meeting?,parrot,avail,0 -greeting,hello,original,greet,4 -yes,it's positive,parrot,book,1 -date,the date is today,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -goodbye,great chat goodbye,lambada,bye,2 -no,negative certainly,parrot,cancel,3 -no,nay,original,cancel,3 -thank_you,thanks,original,bye,2 -thank_you,really great!,original,bye,2 -how_busy,how long will the wait at iman's house be?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -calendar_update,remove my dinner with ariel from my calendar on 26 may,parrot,resched,5 -goodbye,thanks for the chance to talk,lambada,bye,2 -date,date tomorrow?,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -yes,all right,original,book,1 -thank_you,i appreciate that you helped me,parrot,bye,2 -yes,affirmative,original,book,1 -yes,you are correct,original,book,1 -thank_you,you're a great help,parrot,bye,2 -thank_you,i appeciate it,original,bye,2 -goodbye,great talk,lambada,bye,2 -thank_you,thankyou,parrot,bye,2 -thank_you,thank you very much for the work,parrot,bye,2 -no,that's a negative,original,cancel,3 -yes,approved,original,book,1 -calendar,read my calendar,parrot,avail,0 -date,in 100 days?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -reminder_update,remind me to write that letter,original,resched,5 -date,today's date is what,original,avail,0 -goodbye,good luck,lambada,bye,2 -yes,that statement is true,lambada,book,1 -no,no thanks,original,cancel,3 -no,that's inaccurate,original,cancel,3 -greeting,hey hey!,original,greet,4 -greeting,aho,parrot,greet,4 -reminder_update,remind me to pick up the garbage,parrot,resched,5 -greeting,salutations,parrot,greet,4 -no,"no, that isn't right",lambada,cancel,3 -cancel_reservation,cancel tonight's dinner reservation,original,cancel,3 -goodbye,ai goodbye,original,bye,2 -yes,yes that is true,lambada,book,1 -greeting,how do you think this is treating you,lambada,greet,4 -goodbye,goodbyes,parrot,bye,2 -schedule_meeting,do you have a meeting room open from noon until 2:00 pm?,original,book,1 -no,that's no,parrot,cancel,3 -no,naw,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -greeting,what's up,original,greet,4 -no,naw,original,cancel,3 -schedule_meeting,i want to check if there's a meeting room available between 6 and 8,parrot,book,1 -greeting,salutations!,original,greet,4 -goodbye,nice talk,lambada,bye,2 -thank_you,thanks for that,original,bye,2 -no,negative definitely,parrot,cancel,3 -thank_you,thanks for coming,parrot,bye,2 -yes,accept,parrot,book,1 -no,that's a lie,parrot,cancel,3 -meeting_schedule,when is my meeting with frank?,parrot,avail,0 -yes,sure thing,original,book,1 -how_busy,how busy the restaurant is?,parrot,avail,0 -greeting,are you well?,original,greet,4 -greeting,well hi there,original,greet,4 -no,that's incorrect!,original,cancel,3 -thank_you,i'm grateful for the information,parrot,bye,2 -thank_you,you've been great,parrot,bye,2 -yes,so it's true,parrot,book,1 -date,would you tell me what date it'll be in eight days?,parrot,avail,0 -meeting_schedule,show me the dates of my meetings today,parrot,avail,0 -yes,approved,original,book,1 -cancel_reservation,i booked at the pizza hut under the name of leia roberts and i want to cancel,parrot,cancel,3 -yes,thats right,original,book,1 -no,"no, that's not correct",lambada,cancel,3 -yes,yes,original,book,1 -meeting_schedule,are there any meetings with jason?,parrot,avail,0 -goodbye,please chat to me,parrot,bye,2 -greeting,heller,original,greet,4 -yes,positive,original,book,1 -yes,sure,original,book,1 -cancel_reservation,you have canceled my reservation for oyster bar,parrot,cancel,3 -date,what date in 100 days?,parrot,avail,0 -yes,"yeah, that's true",lambada,book,1 -no,FALSE,lambada,cancel,3 -goodbye,goodbyes,parrot,bye,2 -greeting,aloha,original,greet,4 -thank_you,for the help i'm thankful,parrot,bye,2 -thank_you,you've made my life much easier,parrot,bye,2 -how_busy,how long will it take me to get a table at buffalo wings,parrot,avail,0 -goodbye,buhbye,original,bye,2 -goodbye,peace,original,bye,2 -yes,approved,original,book,1 -meeting_schedule,do you have any meetings?,parrot,avail,0 -no,don't like that,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -goodbye,talk later,original,bye,2 -no,nay,original,cancel,3 -thank_you,i'm very grateful for my help,parrot,bye,2 -how_busy,can you tell me if there will be a long wait at red lobster?,lambada,avail,0 -yes,yes please,original,book,1 -goodbye,a good conversation,parrot,bye,2 -goodbye,"nice talk, goodbye",lambada,bye,2 -meeting_schedule,do i have any meetings with mark today?,original,avail,0 -thank_you,a million thanks,parrot,bye,2 -no,no!,original,cancel,3 -goodbye,afterward,parrot,bye,2 -no,it's a false,lambada,cancel,3 -greeting,how's idy doing,lambada,greet,4 -reminder_update,make me remember,parrot,resched,5 -greeting,"hello, friend",original,greet,4 -thank_you,thanks for the answer,original,bye,2 -goodbye,goodbye,original,bye,2 -goodbye,bye!,original,bye,2 -goodbye,goodbye,original,bye,2 -yes,very true,original,book,1 -yes,okay,original,book,1 -calendar_update,i have to put my dentist appointment on the calendar for tomorrow,parrot,resched,5 -no,invalid,original,cancel,3 -yes,facts,original,book,1 -yes,that'd be great,parrot,book,1 -no,nope not it,original,cancel,3 -how_busy,is michel busy at 3?,parrot,avail,0 -goodbye,goodbye goodbye,parrot,bye,2 -no,FALSE,original,cancel,3 -no,that's negative,parrot,cancel,3 -yes,is true,parrot,book,1 -yes,do that?,original,book,1 -yes,just right,parrot,book,1 -thank_you,i appeciate it,parrot,bye,2 -thank_you,you have my thanks,parrot,bye,2 -thank_you,and i'm so grateful for my answer,parrot,bye,2 -yes,confirmed,original,book,1 -goodbye,goodbye later,parrot,bye,2 -goodbye,bye!,original,bye,2 -no,so that's no,parrot,cancel,3 -yes,yeap,original,book,1 -yes,definitely,original,book,1 -greeting,heyo,original,greet,4 -date,is today the date?,lambada,avail,0 -date,i need to know what's the date of today,parrot,avail,0 -no,the answer to the question is false,parrot,cancel,3 -no,that's completely false,original,cancel,3 -thank_you,"that'll work, good job!",original,bye,2 -goodbye,im leaving goodbye,parrot,bye,2 -goodbye,i'm going,parrot,bye,2 -no,that is so very negative,lambada,cancel,3 -goodbye,"later, goodbye",lambada,bye,2 -greeting,hello,original,greet,4 -greeting,how's otc?,parrot,greet,4 -yes,accepted,original,book,1 -yes,it's a fact,parrot,book,1 -goodbye,thanks bye bye!,original,bye,2 -thank_you,why thank you?,original,bye,2 -greeting,hey,original,greet,4 -greeting,hello ai,parrot,greet,4 -greeting,how's life?,parrot,greet,4 -goodbye,bye bye,lambada,bye,2 -greeting,salutation,parrot,greet,4 -goodbye,"later, goodbye",lambada,bye,2 -greeting,what's new?,parrot,greet,4 -greeting,well hi there,original,greet,4 -reminder_update,the cat needs neutering,parrot,resched,5 -no,no?,parrot,cancel,3 -cancel_reservation,please unreserve that table,original,cancel,3 -no,it's actually false,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -yes,TRUE,original,book,1 -yes,confirm,original,book,1 -goodbye,sign off,parrot,bye,2 -yes,affirmative,original,book,1 -yes,absolutely,original,book,1 -greeting,how's everything going?,parrot,greet,4 -yes,absolutely!,original,book,1 -yes,indeed,parrot,book,1 -yes,yup,original,book,1 -goodbye,thank you for the chat goodbye,parrot,bye,2 -thank_you,thanks,original,bye,2 -schedule_meeting,would you schedule a meeting for me at the new york office?,parrot,book,1 -goodbye,later then,lambada,bye,2 -meeting_schedule,meet each of my meetings today,parrot,avail,0 -goodbye,sayonara,original,bye,2 -meeting_schedule,am i scheduled for any gatherings today,original,avail,0 -goodbye,"thanks, bye",original,bye,2 -goodbye,goodbye now,parrot,bye,2 -schedule_meeting,i need an agenda,parrot,book,1 -goodbye,greetings,parrot,bye,2 -how_busy,tell me how busy i'll have to be at the cheesecake factory around 1030,parrot,avail,0 -thank_you,you answered,parrot,bye,2 -no,no no no,parrot,cancel,3 -how_busy,how long will the wait time be at jr chilis,lambada,avail,0 -thank_you,and i thank you,parrot,bye,2 -how_busy,is macy's busy?,parrot,avail,0 -yes,we would say yes,lambada,book,1 -date,date please,original,avail,0 -no,naw,parrot,cancel,3 -no,nope that's not right,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -thank_you,for my help i'm very thankful,parrot,bye,2 -date,what's today,original,avail,0 -greeting,hey how are you doing?,parrot,greet,4 -greeting,so how's everything?,parrot,greet,4 -yes,certainly,parrot,book,1 -no,negatory,original,cancel,3 -how_busy,can i wait at red lobster at 7 pm?,parrot,avail,0 -how_busy,how busy will chili be at 7pm,parrot,avail,0 -reminder_update,remind me to write down the dinner,lambada,resched,5 -goodbye,my friend,parrot,bye,2 -no,that's totally wrong!,original,cancel,3 -greeting,bonjour,original,greet,4 -how_busy,how long will chili's wait?,parrot,avail,0 -date,is today the date?,lambada,avail,0 -greeting,hey how's ot,lambada,greet,4 -no,invalid,original,cancel,3 -goodbye,bye-bye,original,bye,2 -greeting,hey yai,lambada,greet,4 -no,nada,original,cancel,3 -greeting,how is everything?,parrot,greet,4 -yes,yay,lambada,book,1 -how_busy,what is the wait time for a table at red lobster?,lambada,avail,0 -no,that's not acceptable,parrot,cancel,3 -yes,agreed,original,book,1 -reminder_update,give the cat a reminder to come home at 9 o'clock on the morning,parrot,resched,5 -date,wednesday friday or saturday?,parrot,avail,0 -thank_you,many thanks,original,bye,2 -goodbye,take a rest,parrot,bye,2 -schedule_meeting,i'm trying to set up a meeting,parrot,book,1 -how_busy,can you tell me how busy it is in the olive garden at 730?,parrot,avail,0 -greeting,hiya,original,greet,4 -no,no way!,original,cancel,3 -greeting,what's happening,original,greet,4 -yes,good,parrot,book,1 -how_busy,how long is the wait at tuji at 8:30,lambada,avail,0 -greeting,hola!,original,greet,4 -yes,it'd be great,parrot,book,1 -goodbye,but it was a nice chat,parrot,bye,2 -yes,yes please,original,book,1 -greeting,wassup,original,greet,4 -yes,perfect,parrot,book,1 -cancel_reservation,can i cancel my reservation for 4 people at red robin?,parrot,cancel,3 -goodbye,tootles,original,bye,2 -yes,indeed,parrot,book,1 -goodbye,goodbye no problem,parrot,bye,2 -no,naw,original,cancel,3 -how_busy,is this place crowded at night?,lambada,avail,0 -thank_you,thanks again,original,bye,2 -thank_you,thanks,original,bye,2 -yes,okay,original,book,1 -reminder_update,add me a reminder?,parrot,resched,5 -no,nada,original,cancel,3 -thank_you,i appeciate it,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -how_busy,how long will it take to wait for tamales?,parrot,avail,0 -calendar,what do you have on my calendar for march 11th?,parrot,avail,0 -reminder_update,i need to remember,parrot,resched,5 -schedule_meeting,are there any meetings room available between 8:00 and 9:00 am?,original,book,1 -yes,certainly,parrot,book,1 -thank_you,you've tried,parrot,bye,2 -reminder_update,a reminder for lunch at 10am,parrot,resched,5 -date,please tell me what's going on today,parrot,avail,0 -goodbye,fairwell,original,bye,2 -thank_you,i'm glad you responded,parrot,bye,2 -no,that's incorrect,original,cancel,3 -greeting,how's everything,original,greet,4 -no,negatory,original,cancel,3 -greeting,whats up,original,greet,4 -goodbye,we chatted well,parrot,bye,2 -thank_you,thanks a lot,original,bye,2 -greeting,salutations,parrot,greet,4 -yes,please let's do that,parrot,book,1 -how_busy,how busy is chili's at 5pm,lambada,avail,0 -goodbye,i'll be gone,parrot,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -yes,i think that's true,original,book,1 -yes,obviously,parrot,book,1 -thank_you,you've been amazing,lambada,bye,2 -no,negatory?,parrot,cancel,3 -greeting,bonjour,original,greet,4 -greeting,"hello there, good morning",original,greet,4 -goodbye,fairwell,original,bye,2 -greeting,salutations,parrot,greet,4 -cancel_reservation,cancel my reservation for prime ribs at 8 pm,parrot,cancel,3 -yes,agreed,original,book,1 -yes,"yep, that's right",original,book,1 -how_busy,how long will it take to get seated at macaroni grill,lambada,avail,0 -no,that is not true,original,cancel,3 -goodbye,goodbye,original,bye,2 -no,i fear that's not the case,parrot,cancel,3 -greeting,greetings to you,original,greet,4 -yes,that's correct,original,book,1 -yes,positive,original,book,1 -calendar,what's on my calendar for july 28th,parrot,avail,0 -greeting,how you are,original,greet,4 -goodbye,take it easy,lambada,bye,2 -thank_you,"good job, thanks",lambada,bye,2 -greeting,how's my treatment?,parrot,greet,4 -yes,good,parrot,book,1 -goodbye,see ya,lambada,bye,2 -yes,great,original,book,1 -thank_you,thanks,original,bye,2 -goodbye,i leave now,parrot,bye,2 -yes,yeah,original,book,1 -thank_you,thanks for cooperating,parrot,bye,2 -no,it doesn't seem so,parrot,cancel,3 -thank_you,glad you helped me,parrot,bye,2 -yes,you got it,parrot,book,1 -greeting,hi,original,greet,4 -goodbye,on the highway,parrot,bye,2 -no,no way!,original,cancel,3 -goodbye,get there soon,lambada,bye,2 -greeting,how's it going with you,original,greet,4 -thank_you,youre a doll,original,bye,2 -how_busy,how busy is the kitchen today?,parrot,avail,0 -how_busy,does macaroni grill have a wait how long?,original,avail,0 -yes,say positive,parrot,book,1 -date,tell me what the date is,parrot,avail,0 -no,no?,parrot,cancel,3 -no,i don't think that's true,lambada,cancel,3 -goodbye,adios,original,bye,2 -yes,obviously,parrot,book,1 -how_busy,how long does it take to sit at applebees?,parrot,avail,0 -calendar_update,i have to delete an event from my calendar,parrot,resched,5 -date,will it be in 11 days,lambada,avail,0 -goodbye,sayonara,original,bye,2 -greeting,heller,original,greet,4 -yes,TRUE,lambada,book,1 -thank_you,okay thank you,parrot,bye,2 -cancel_reservation,i need my reservation for dinner cancelled,parrot,cancel,3 -yes,uh-huh,original,book,1 -no,no,lambada,cancel,3 -greeting,bonjour,original,greet,4 -thank_you,you've been great,parrot,bye,2 -greeting,hello there!,original,greet,4 -no,i'm afraid not,parrot,cancel,3 -yes,affirmitive,original,book,1 -meeting_schedule,what time will i meet jane?,parrot,avail,0 -yes,correct,original,book,1 -yes,absolutely,original,book,1 -greeting,hiya!,original,greet,4 -greeting,how's life treating you?,parrot,greet,4 -yes,"yes, please",original,book,1 -greeting,hola,original,greet,4 -yes,it's positive,parrot,book,1 -greeting,hows it going,lambada,greet,4 -no,it's no,parrot,cancel,3 -reminder_update,can you set a reminder?,parrot,resched,5 -yes,10-Apr,original,book,1 -how_busy,what's the wait time?,parrot,avail,0 -how_busy,waiting at cheeseburgers?,parrot,avail,0 -no,not happening,original,cancel,3 -greeting,welcome,parrot,greet,4 -greeting,have you had a good day?,lambada,greet,4 -reminder_update,remind me to pay taxes,parrot,resched,5 -goodbye,peace out,original,bye,2 -how_busy,how long will it take for a table in the restaurant?,parrot,avail,0 -yes,definitely yes,parrot,book,1 -no,it is no,original,cancel,3 -yes,ok,original,book,1 -how_busy,how long will the wait be at red robin,lambada,avail,0 -no,that is not true,original,cancel,3 -no,hell nah,original,cancel,3 -thank_you,thanks!,original,bye,2 -no,that's incorrect!,original,cancel,3 -goodbye,send a goodbye,lambada,bye,2 -goodbye,peace out,original,bye,2 -schedule_meeting,make an appointment for me,parrot,book,1 -cancel_reservation,can you cancel my reservation?,lambada,cancel,3 -no,that's very false,parrot,cancel,3 -thank_you,merci beaucoup,original,bye,2 -meeting_schedule,give me a list of my meetings on my calendar today?,parrot,avail,0 -yes,sure,original,book,1 -no,nay,original,cancel,3 -date,please tell me what's the date tomorrow,parrot,avail,0 -greeting,hi there,original,greet,4 -thank_you,i really appreciate my help thanks,parrot,bye,2 -date,today is the date?,parrot,avail,0 -greeting,how've you been?,parrot,greet,4 -yes,good yes,lambada,book,1 -yes,what you said is accurate?,lambada,book,1 -no,i'll pass,original,cancel,3 -goodbye,buhbye,original,bye,2 -greeting,salutation,parrot,greet,4 -thank_you,thanks very much,parrot,bye,2 -yes,is true,parrot,book,1 -yes,confirmed,original,book,1 -thank_you,your response was good,parrot,bye,2 -greeting,so how's it going?,parrot,greet,4 -goodbye,peace out!,original,bye,2 -yes,my answer is yes,parrot,book,1 -greeting,hey,original,greet,4 -yes,yeah yeah,lambada,book,1 -greeting,how's everything?,parrot,greet,4 -reminder_update,please create a reminder,parrot,resched,5 -goodbye,go easy,parrot,bye,2 -schedule_meeting,how do you set up a meeting for me?,parrot,book,1 -schedule_meeting,schedule a meeting for me in the new york office?,parrot,book,1 -how_busy,show me the wait times at this restaurant?,parrot,avail,0 -how_busy,is the olive garden busy with lunch?,parrot,avail,0 -how_busy,around 5pm how busy is kaya?,parrot,avail,0 -greeting,hiya!,original,greet,4 -thank_you,thank you!,original,bye,2 -greeting,are you feeling okay?,original,greet,4 -greeting,what's up with you,original,greet,4 -thank_you,okay thank you,parrot,bye,2 -greeting,hi what's up?,parrot,greet,4 -goodbye,i'll go on the highway,parrot,bye,2 -how_busy,how long will it take to get a table at buffalo wild wings,lambada,avail,0 -greeting,what's happening?,parrot,greet,4 -yes,that's true,original,book,1 -no,you are wrong,original,cancel,3 -goodbye,thanks goodbye,parrot,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -no,no good,original,cancel,3 -no,negatory?,parrot,cancel,3 -calendar_update,remove all events on friday from my calendar ,parrot,resched,5 -thank_you,so grateful,parrot,bye,2 -date,what today?,parrot,avail,0 -reminder_update,"open up a reminder, pay taxes on monday",original,resched,5 -yes,you are correct,original,book,1 -meeting_schedule,are there meetings between 6 and 9?,parrot,avail,0 -no,it would be a no,parrot,cancel,3 -greeting,aho,parrot,greet,4 -how_busy,will i need to wait long for a table at the restaurant,lambada,avail,0 -meeting_schedule,what are my calendar appointments?,parrot,avail,0 -cancel_reservation,what i need to do to cancel my reservation for steakhouse?,lambada,cancel,3 -goodbye,peace,original,bye,2 -calendar_update,please take the doctor appointment off my calendar,parrot,resched,5 -greeting,hello siri,original,greet,4 -date,what will the date be in 64 days?,original,avail,0 -cancel_reservation,make a cancellation of my reservation at red robin,parrot,cancel,3 -no,naw,parrot,cancel,3 -goodbye,good call,parrot,bye,2 -thank_you,glad you did it,parrot,bye,2 -cancel_reservation,how do i cancel a reservation?,parrot,cancel,3 -goodbye,bye for now,original,bye,2 -no,erroneous,parrot,cancel,3 -yes,positive,parrot,book,1 -thank_you,"awesome, thanks",original,bye,2 -yes,affirmative,original,book,1 -goodbye,go easy,parrot,bye,2 -goodbye,please chat to me,parrot,bye,2 -greeting,hello good morning,parrot,greet,4 -thank_you,please thank you,lambada,bye,2 -yes,yeah,original,book,1 -goodbye,later!,original,bye,2 -how_busy,how busy is chili's at 7pm,lambada,avail,0 -goodbye,see ya,lambada,bye,2 -calendar,search my calendar for my birthday,parrot,avail,0 -yes,certainly,parrot,book,1 -no,that's untrue,parrot,cancel,3 -no,that would be terrible,lambada,cancel,3 -meeting_schedule,the meetings today,parrot,avail,0 -thank_you,thank ya!,original,bye,2 -greeting,yo,original,greet,4 -yes,you got it,parrot,book,1 -goodbye,see ya,lambada,bye,2 -yes,10-Apr,original,book,1 -reminder_update,set reminder time to prepare for tomorrow,lambada,resched,5 -thank_you,thanks for coming,parrot,bye,2 -no,not a good idea,parrot,cancel,3 -yes,that's correct,original,book,1 -goodbye,i'm out,parrot,bye,2 -yes,yup,original,book,1 -no,no please,parrot,cancel,3 -no,that's negative,parrot,cancel,3 -goodbye,adios ai,original,bye,2 -greeting,hello siri,original,greet,4 -thank_you,i'm grateful,original,bye,2 -calendar,check out my calendar,parrot,avail,0 -yes,oh yes,original,book,1 -how_busy,how long will i have to wait at red robin before i can get a table?,parrot,avail,0 -yes,absolutely!,original,book,1 -yes,please let's do this,parrot,book,1 -no,"no, that's a lie",lambada,cancel,3 -date,what date will it be tomorrow? '',parrot,avail,0 -greeting,how you are?,parrot,greet,4 -yes,"yes, please",original,book,1 -goodbye,see you soon,original,bye,2 -reminder_update,i want you to remind me to put the ice in,lambada,resched,5 -greeting,hi there,original,greet,4 -thank_you,why thank you?,original,bye,2 -goodbye,thank you so much for the chat,parrot,bye,2 -goodbye,bye!,original,bye,2 -calendar,check out my calendar,parrot,avail,0 -thank_you,i'm grateful for the answer you just gave me,original,bye,2 -goodbye,see ya!,original,bye,2 -reminder_update,remind me of exercise,parrot,resched,5 -yes,correct,original,book,1 -goodbye,greetings,parrot,bye,2 -date,list the current days?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -schedule_meeting,can i meet kate at 8am?,parrot,book,1 -no,negatory,original,cancel,3 -yes,certainly,parrot,book,1 -yes,very true,original,book,1 -goodbye,be careful then,lambada,bye,2 -goodbye,bye bye!,original,bye,2 -calendar,display my calendar,lambada,avail,0 -yes,positive,original,book,1 -yes,accepted,original,book,1 -thank_you,okay thank you,parrot,bye,2 -greeting,hey bs,lambada,greet,4 -goodbye,fairwell,original,bye,2 -thank_you,thankyou,parrot,bye,2 -reminder_update,please remind me to take care of the car,parrot,resched,5 -goodbye,bye now,original,bye,2 -yes,all right,parrot,book,1 -yes,it's definitely positive,parrot,book,1 -goodbye,thank you for talking later,parrot,bye,2 -yes,it'd be great,parrot,book,1 -thank_you,"awesome, thanks",original,bye,2 -greeting,aho,parrot,greet,4 -goodbye,tootles?,parrot,bye,2 -no,the answer isn't correct,parrot,cancel,3 -greeting,whats new?,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -calendar_update,add my appointment to my calendar for the fifth,parrot,resched,5 -thank_you,well done,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -no,the information is not true,parrot,cancel,3 -no,negation,parrot,cancel,3 -cancel_reservation,please cancel my reservation at the red lobster for 6,parrot,cancel,3 -meeting_schedule,is my meeting scheduled?,parrot,avail,0 -goodbye,catch you later,original,bye,2 -greeting,welcome,parrot,greet,4 -goodbye,it's nice to talk again,parrot,bye,2 -thank_you,"good answer, thanks for providing it",original,bye,2 -yes,good,parrot,book,1 -cancel_reservation,i made a reservation under mark hamil at the emporium that i don't need anymore,parrot,cancel,3 -no,nay,original,cancel,3 -greeting,how are you?,parrot,greet,4 -goodbye,my friend,parrot,bye,2 -calendar,what do i have going on may 4th?,original,avail,0 -no,nothing,parrot,cancel,3 -date,what date?,parrot,avail,0 -yes,"yes, that's a fact",lambada,book,1 -thank_you,i appreciate your consideration,lambada,bye,2 -date,tell me what the date is tomorrow,parrot,avail,0 -thank_you,i really appreciate you,parrot,bye,2 -greeting,hello ai,parrot,greet,4 -thank_you,you helped me,parrot,bye,2 -greeting,"hello, ai",original,greet,4 -yes,yeah,original,book,1 -no,not correct,parrot,cancel,3 -no,i think it's false,parrot,cancel,3 -date,please show the date,parrot,avail,0 -greeting,"hey, what's up",original,greet,4 -greeting,heller,original,greet,4 -calendar,tell me what's in my calendar for april 1?,parrot,avail,0 -yes,definitely,original,book,1 -goodbye,fairwell,original,bye,2 -calendar,tell me what my calendar looks like for april 13th,parrot,avail,0 -yes,i want that,parrot,book,1 -no,negative definitely,parrot,cancel,3 -greeting,have you been good??,parrot,greet,4 -cancel_reservation,please cancel my reservation for dinner,original,cancel,3 -greeting,whats new?,parrot,greet,4 -thank_you,nice,parrot,bye,2 -thank_you,well done,parrot,bye,2 -goodbye,fairwell,original,bye,2 -date,what'll it be tomorrow?,parrot,avail,0 -cancel_reservation,cancellation of dinner reservations,parrot,cancel,3 -goodbye,take a rest,parrot,bye,2 -greeting,hey fellow,parrot,greet,4 -goodbye,goodbye for now,parrot,bye,2 -no,nay,original,cancel,3 -reminder_update,make a reminder,parrot,resched,5 -schedule_meeting,can you set up a meeting room?,parrot,book,1 -goodbye,good luck later,parrot,bye,2 -yes,it's positive,parrot,book,1 -no,don't like that,parrot,cancel,3 -no,no,lambada,cancel,3 -thank_you,your answer impressed me,parrot,bye,2 -thank_you,thank you for that!,lambada,bye,2 -no,that's definitely false,original,cancel,3 -no,i don't like that,parrot,cancel,3 -greeting,hello,original,greet,4 -yes,confirm,original,book,1 -yes,i vote yes,original,book,1 -thank_you,okay thanks,original,bye,2 -calendar,did i add something to my calendar today?,parrot,avail,0 -calendar_update,remove jess'party from my calendar,parrot,resched,5 -goodbye,good-bye,parrot,bye,2 -thank_you,you know i appreciate my answer,parrot,bye,2 -no,not happening,original,cancel,3 -meeting_schedule,what time is the meeting scheduled for?,parrot,avail,0 -cancel_reservation,i will not need the reservation anymore,parrot,cancel,3 -no,thanks no,parrot,cancel,3 -goodbye,good conversation,parrot,bye,2 -thank_you,many thank,original,bye,2 -how_busy,tell me the time to wait for a pizza?,parrot,avail,0 -goodbye,say goodbye,parrot,bye,2 -yes,right,parrot,book,1 -greeting,whats up?,parrot,greet,4 -no,nope,original,cancel,3 -yes,good yes,lambada,book,1 -yes,is true,parrot,book,1 -goodbye,fairwell,original,bye,2 -goodbye,good seeing you,original,bye,2 -yes,accept,parrot,book,1 -yes,positive,original,book,1 -reminder_update,is there any way to remind me to pay my bills?,parrot,resched,5 -greeting,hello,original,greet,4 -greeting,hey how's ot,lambada,greet,4 -calendar,what's happening on march 15th,lambada,avail,0 -how_busy,tell me how busy the chili's is at 6pm?,lambada,avail,0 -goodbye,later thanks for the chat,parrot,bye,2 -goodbye,regards,original,bye,2 -yes,affirmative,original,book,1 -thank_you,thanks again!,original,bye,2 -no,so that's no,parrot,cancel,3 -meeting_schedule,show me the meetings i have today?,parrot,avail,0 -yes,is true,parrot,book,1 -no,nope,original,cancel,3 -thank_you,your help is appreciated,original,bye,2 -how_busy,do you know how long the wait time is in coffee shops?,parrot,avail,0 -thank_you,so glad you helped me,parrot,bye,2 -how_busy,how long will i have to wait at immaculate steakhouse,lambada,avail,0 -meeting_schedule,do you have any meetings today with ben?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -yes,confirm,original,book,1 -thank_you,thankyou,parrot,bye,2 -goodbye,im leaving,parrot,bye,2 -thank_you,"great, thanks!",original,bye,2 -how_busy,how long is the wait in the chipotle factory?,parrot,avail,0 -how_busy,please tell me how crowded it is?,parrot,avail,0 -how_busy,does red lobster have people around?,parrot,avail,0 -how_busy,how much time does it take to wait for a table at olive garden?,parrot,avail,0 -yes,this is true,lambada,book,1 -yes,TRUE,lambada,book,1 -no,erroneous,parrot,cancel,3 -yes,that's right,original,book,1 -goodbye,good conversation,parrot,bye,2 -yes,good,parrot,book,1 -no,no,lambada,cancel,3 -goodbye,the conversation was great,parrot,bye,2 -greeting,whats new,lambada,greet,4 -goodbye,adios!,original,bye,2 -goodbye,goodbye now,parrot,bye,2 -goodbye,i'll leave now,parrot,bye,2 -how_busy,list the typical wait times at ihuachino?,parrot,avail,0 -yes,ya,original,book,1 -greeting,"why, hello bandit",original,greet,4 -no,nothing,parrot,cancel,3 -calendar_update,remove the date of the birthday from my calendar,lambada,resched,5 -goodbye,regards,original,bye,2 -greeting,tell me what's going on in irvine for you,parrot,greet,4 -cancel_reservation,now my reservation is no longer necessary,parrot,cancel,3 -date,current day,parrot,avail,0 -goodbye,lovely conversation,parrot,bye,2 -yes,absolutely!,original,book,1 -date,you know the date of today?,parrot,avail,0 -goodbye,adios,original,bye,2 -no,please disagree,lambada,cancel,3 -goodbye,fairwell,original,bye,2 -yes,ya,original,book,1 -goodbye,tootles,original,bye,2 -thank_you,thanks for that answer,original,bye,2 -goodbye,afterward,parrot,bye,2 -yes,huh,parrot,book,1 -greeting,how life treats you?,parrot,greet,4 -yes,i want you to confirm that what i'm about to say is true,lambada,book,1 -yes,so it's true,parrot,book,1 -goodbye,tootles,original,bye,2 -goodbye,buhbye,original,bye,2 -thank_you,thanks!,original,bye,2 -greeting,whats new,lambada,greet,4 -greeting,hey,original,greet,4 -how_busy,can you tell me how busy the cheesecake factory will be at 5:30?,lambada,avail,0 -no,negative definitely,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -yes,so it's checked,parrot,book,1 -yes,TRUE,original,book,1 -no,certainly not,original,cancel,3 -no,this isn't true,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -yes,it's positive,parrot,book,1 -goodbye,bye now,original,bye,2 -schedule_meeting,explain how to schedule a meeting,parrot,book,1 -no,that's erroneous,parrot,cancel,3 -calendar,check out my calendar,parrot,avail,0 -yes,and you're right,parrot,book,1 -greeting,yo,original,greet,4 -greeting,how're you today?,parrot,greet,4 -no,negating,parrot,cancel,3 -goodbye,i'm outta here!,original,bye,2 -no,i don't think it is the right thing to do,parrot,cancel,3 -yes,it seems true,parrot,book,1 -date,what date?,parrot,avail,0 -thank_you,very grateful,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -thank_you,you helped me out,parrot,bye,2 -how_busy,how long does it take for a seat in e-li?,parrot,avail,0 -how_busy,canadian grill at 6pm?,parrot,avail,0 -yes,absolutely,original,book,1 -yes,affirmative,original,book,1 -how_busy,how long will it be on the macaroni grill?,parrot,avail,0 -no,sorry but not true,parrot,cancel,3 -thank_you,so grateful,parrot,bye,2 -how_busy,is imbrosio crowded at night?,parrot,avail,0 -yes,huh huh,parrot,book,1 -yes,i think you succeeded,parrot,book,1 -thank_you,thank you for coming by,parrot,bye,2 -date,today what date?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -yes,"yes, please",parrot,book,1 -yes,approved,original,book,1 -goodbye,i'm out of this,parrot,bye,2 -date,please date,parrot,avail,0 -thank_you,thanks for cooperating,parrot,bye,2 -yes,that makes sense,lambada,book,1 -how_busy,how long would i have to wait for a table at the red lobster,parrot,avail,0 -thank_you,you have made my life so much easier,lambada,bye,2 -meeting_schedule,when do you meet roger?,parrot,avail,0 -greeting,hello,original,greet,4 -thank_you,thanks for cooperating,parrot,bye,2 -greeting,how's ai doing?,parrot,greet,4 -no,FALSE,lambada,cancel,3 -goodbye,sayonara,original,bye,2 -yes,right,parrot,book,1 -greeting,ahoy hoy,original,greet,4 -yes,positive,original,book,1 -greeting,what's happening?,parrot,greet,4 -reminder_update,remember the meeting of tomorrow,parrot,resched,5 -goodbye,i'm out of here,original,bye,2 -yes,agreed,original,book,1 -greeting,yo,original,greet,4 -calendar_update,this month we need to clear our calendar so we can leave it open for mark to visit,parrot,resched,5 -goodbye,goodbye,original,bye,2 -date,please date,parrot,avail,0 -greeting,hello ai,parrot,greet,4 -thank_you,good job trying to accomplish something,parrot,bye,2 -no,it's not right,parrot,cancel,3 -no,nada,original,cancel,3 -date,what's today,original,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,ok,original,book,1 -yes,i'd say yes,parrot,book,1 -date,list the current days?,parrot,avail,0 -date,what date?,parrot,avail,0 -thank_you,and i sincerely thank you for that,parrot,bye,2 -calendar_update,i have to add my wedding to my calendar for march 5th,parrot,resched,5 -reminder_update,i need to set a reminder to pay taxes,lambada,resched,5 -goodbye,"i wanted to speak with you again, bye",lambada,bye,2 -yes,exactly right,original,book,1 -yes,truthful is my answer,lambada,book,1 -goodbye,bye!,original,bye,2 -how_busy,is that place busy around dinner time?,original,avail,0 -goodbye,see ya,lambada,bye,2 -thank_you,you helped me,parrot,bye,2 -reminder_update,remind me to take out the trash,original,resched,5 -how_busy,is mcdonalds busy?,parrot,avail,0 -calendar,did i mark the mechanic's appointment on the calendar?,parrot,avail,0 -yes,right,parrot,book,1 -meeting_schedule,what's my schedule today?,parrot,avail,0 -greeting,hey,original,greet,4 -goodbye,glad to talk,parrot,bye,2 -greeting,wassup,original,greet,4 -goodbye,good call,parrot,bye,2 -reminder_update,new reminder please,lambada,resched,5 -goodbye,peace,original,bye,2 -greeting,hows life for you,lambada,greet,4 -yes,TRUE,lambada,book,1 -how_busy,do you know how busy imoos is at the moment?,parrot,avail,0 -greeting,how is everything?,parrot,greet,4 -goodbye,goodbye ai,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -goodbye,bye bye!,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -yes,i know,parrot,book,1 -calendar,tell me what's on my calendar for march 8th?,parrot,avail,0 -no,it seems not,original,cancel,3 -how_busy,is macy's busy?,parrot,avail,0 -yes,it's a fact,parrot,book,1 -no,it seems wrong,parrot,cancel,3 -greeting,hello,original,greet,4 -yes,exactly right,original,book,1 -no,no thank you,original,cancel,3 -yes,you are yes,lambada,book,1 -reminder_update,come on please,parrot,resched,5 -greeting,so how is everything,original,greet,4 -date,tell me the date for today?,lambada,avail,0 -greeting,salutations,parrot,greet,4 -goodbye,fairwell,original,bye,2 -yes,thats right,original,book,1 -calendar,do you have any appointments scheduled for a saturday?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -yes,positive,parrot,book,1 -how_busy,how long can i wait to be seated in the fountain?,parrot,avail,0 -yes,correct,original,book,1 -greeting,hey how's it hanging,original,greet,4 -reminder_update,remember to call tomorrow,parrot,resched,5 -goodbye,peace,original,bye,2 -no,it's a lie,parrot,cancel,3 -goodbye,"i enjoyed talking to you, see you later",lambada,bye,2 -greeting,"hello, how are things going",lambada,greet,4 -date,what's my day today?,parrot,avail,0 -yes,accepted,original,book,1 -goodbye,the talks were pleasant,parrot,bye,2 -date,in 100 days what will be the date?,parrot,avail,0 -meeting_schedule,when will be my meeting with bob?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,"awesome, thanks",original,bye,2 -calendar,what do i have going on for 12/12?,lambada,avail,0 -date,what's my day?,parrot,avail,0 -greeting,how's life for you?,parrot,greet,4 -goodbye,later gater,original,bye,2 -yes,this is true,lambada,book,1 -yes,obviously,parrot,book,1 -greeting,wassup,original,greet,4 -no,no!,original,cancel,3 -calendar,what's on my schedule for october 14th,lambada,avail,0 -yes,correct,original,book,1 -no,nope that's not true,parrot,cancel,3 -greeting,how's it with you?,parrot,greet,4 -greeting,hey fellows,parrot,greet,4 -thank_you,thanks for the cooperation,parrot,bye,2 -goodbye,thank you for talking later,parrot,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -greeting,"hello, friend",original,greet,4 -goodbye,later!,original,bye,2 -meeting_schedule,when is my appointment with dr robin?,parrot,avail,0 -yes,not false,parrot,book,1 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -no,ill pass,original,cancel,3 -meeting_schedule,what meetings do i have scheduled for today?,lambada,avail,0 -date,what day is tomorrow?,lambada,avail,0 -goodbye,bye!,original,bye,2 -greeting,bonjour,original,greet,4 -no,no way!,original,cancel,3 -goodbye,i must catch up,parrot,bye,2 -yes,absolutely!,original,book,1 -no,that is wrong,original,cancel,3 -date,what's tomorrow's date,original,avail,0 -how_busy,how long is the wait at imanas,original,avail,0 -yes,that'd be great,parrot,book,1 -yes,i'm going to tell you tes,parrot,book,1 -calendar,do you have anything scheduled for march 1?,parrot,avail,0 -date,what's the date today?,parrot,avail,0 -yes,that would be true,original,book,1 -no,i don't think that is the right thing to do,lambada,cancel,3 -yes,it makes sense,parrot,book,1 -calendar_update,create a reminder calendar for march 6th,parrot,resched,5 -goodbye,goodbyes,parrot,bye,2 -thank_you,my thanks,parrot,bye,2 -calendar_update,annull the event scheduled for thursday,parrot,resched,5 -goodbye,as regards,parrot,bye,2 -yes,definitely,original,book,1 -date,what year is it?,original,avail,0 -greeting,hey,original,greet,4 -yes,"yeah, that's right",original,book,1 -yes,i know that's true,parrot,book,1 -thank_you,your assistance is appreciated,parrot,bye,2 -yes,yes,original,book,1 -no,indeed it's false,parrot,cancel,3 -no,i say negative,original,cancel,3 -reminder_update,please remind me something,parrot,resched,5 -no,negating,parrot,cancel,3 -no,FALSE,original,cancel,3 -goodbye,adios,original,bye,2 -reminder_update,i need you to remind me to get something done,original,resched,5 -yes,yes,original,book,1 -no,what did you say is wrong?,parrot,cancel,3 -yes,positive,parrot,book,1 -meeting_schedule,when is my meeting with robin scheduled?,parrot,avail,0 -reminder_update,please remind me,parrot,resched,5 -no,FALSE,original,cancel,3 -reminder_update,don't let me forget later,parrot,resched,5 -greeting,hey there!,original,greet,4 -no,that's untrue,parrot,cancel,3 -no,FALSE,original,cancel,3 -yes,yes sir,original,book,1 -schedule_meeting,i need you to set up a meeting with bob at 2 pm,parrot,book,1 -greeting,hello there ai,original,greet,4 -no,negative,original,cancel,3 -yes,so it's checked,parrot,book,1 -yes,affirmitive,original,book,1 -yes,yay,lambada,book,1 -no,i'd say no,original,cancel,3 -reminder_update,i'd like to remind you to look at this,parrot,resched,5 -goodbye,bye bye,lambada,bye,2 -yes,that is accurate,original,book,1 -no,but it's not true,parrot,cancel,3 -goodbye,say goodbye,parrot,bye,2 -no,and i'm sorry,parrot,cancel,3 -how_busy,how busy is mishawaka,lambada,avail,0 -how_busy,i want to know how long is the wait for a tequila bar to open,lambada,avail,0 -calendar,what's on january 1st?,parrot,avail,0 -thank_you,good job on that,lambada,bye,2 -thank_you,thank you for making my life easier,parrot,bye,2 -yes,yay,lambada,book,1 -yes,i'm sure that's true,parrot,book,1 -calendar_update,need a calendar for april 15th,parrot,resched,5 -yes,absolutely!,original,book,1 -thank_you,your answer is appreciated,original,bye,2 -no,no no it's not,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -yes,10-Apr,original,book,1 -greeting,"hey, ai",original,greet,4 -no,no,lambada,cancel,3 -cancel_reservation,can you cancel my dinner reservation?,parrot,cancel,3 -thank_you,you've helped,parrot,bye,2 -greeting,heyo,original,greet,4 -no,no that isn't right,original,cancel,3 -yes,okay,original,book,1 -greeting,hola,original,greet,4 -greeting,"hey, how are you",original,greet,4 -how_busy,how busy will iihop be around 5pm,lambada,avail,0 -yes,yes you are right,original,book,1 -no,not right?,parrot,cancel,3 -how_busy,how long does it take for a seat at e-li?,parrot,avail,0 -yes,it appears true,parrot,book,1 -thank_you,thanks please,original,bye,2 -meeting_schedule,when is my meeting with kara scheduled to begin?,parrot,avail,0 -date,what is the month and day next?,lambada,avail,0 -date,what's on the calendar tomorrow?,parrot,avail,0 -thank_you,awesome thanks,parrot,bye,2 -greeting,hiya,original,greet,4 -no,that isn't true,lambada,cancel,3 -yes,ya,original,book,1 -greeting,how's this going?,parrot,greet,4 -no,not that,original,cancel,3 -yes,all right,parrot,book,1 -date,what's the current day?,parrot,avail,0 -goodbye,get there soon,lambada,bye,2 -how_busy,what is the wait time for a table at the restaurant?,lambada,avail,0 -goodbye,bye!,original,bye,2 -greeting,aloha,original,greet,4 -greeting,hey how's it going?,parrot,greet,4 -no,it is not that,lambada,cancel,3 -schedule_meeting,how does scheduling a meeting work,original,book,1 -greeting,hey what's up?,parrot,greet,4 -greeting,"hello, what's up with you",lambada,greet,4 -meeting_schedule,share my meeting schedule with me,original,avail,0 -yes,ok,original,book,1 -greeting,salutation,parrot,greet,4 -goodbye,fairwell?,parrot,bye,2 -yes,10-Apr,original,book,1 -yes,that's a yes,original,book,1 -goodbye,buhbye,original,bye,2 -greeting,hiya!,original,greet,4 -yes,TRUE,lambada,book,1 -yes,not false,parrot,book,1 -goodbye,", goodbye",lambada,bye,2 -date,current date,original,avail,0 -yes,good,parrot,book,1 -yes,that's a fact,lambada,book,1 -goodbye,i'll leave,parrot,bye,2 -goodbye,adios!,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,"no, don't do that",original,cancel,3 -thank_you,again thank you,parrot,bye,2 -date,today what date?,parrot,avail,0 -calendar_update,please erase my calendar from this friday,parrot,resched,5 -how_busy,what will it be like for chili at 6pm,parrot,avail,0 -how_busy,what's the crowd at the red lobsters?,parrot,avail,0 -no,that’s incorrect,original,cancel,3 -yes,that's right,original,book,1 -thank_you,really great!,original,bye,2 -goodbye,i'm leaving,parrot,bye,2 -no,i disagree,parrot,cancel,3 -yes,definitely,original,book,1 -no,no,lambada,cancel,3 -thank_you,i appreciate this answer,parrot,bye,2 -thank_you,the best,parrot,bye,2 -meeting_schedule,what's my meeting schedule today,lambada,avail,0 -no,the negator,parrot,cancel,3 -thank_you,many thank,original,bye,2 -schedule_meeting,can you reserve a meeting room for 3:00 on wednesday?,lambada,book,1 -date,is it monday?,parrot,avail,0 -thank_you,gracias,original,bye,2 -thank_you,you have my gratitude,original,bye,2 -goodbye,bye!,original,bye,2 -yes,truthful is my answer,lambada,book,1 -goodbye,bye bye,lambada,bye,2 -thank_you,really great!,original,bye,2 -reminder_update,to remind myself of this,parrot,resched,5 -how_busy,list the average wait times for chili's right now?,parrot,avail,0 -thank_you,thank you,original,bye,2 -goodbye,adios!,original,bye,2 -yes,you're right,original,book,1 -goodbye,sayonara,original,bye,2 -goodbye,the hell i'm out,parrot,bye,2 -date,what's today?,parrot,avail,0 -goodbye,i’m leaving-goodbye!,original,bye,2 -thank_you,"thanks, i appreciate it",original,bye,2 -no,not right?,parrot,cancel,3 -greeting,you good?,parrot,greet,4 -meeting_schedule,when's my meeting today?,parrot,avail,0 -yes,uh-huh,original,book,1 -yes,all right,original,book,1 -goodbye,see ya,original,bye,2 -reminder_update,remind me to call bob tomorrow,lambada,resched,5 -schedule_meeting,open meeting rooms from one to three pm,original,book,1 -thank_you,many thanks,original,bye,2 -goodbye,i'm leaving,parrot,bye,2 -yes,huh,parrot,book,1 -greeting,heller,original,greet,4 -greeting,hi,original,greet,4 -yes,TRUE,original,book,1 -how_busy,how busy will red robin be at 3:30 pm,lambada,avail,0 -greeting,whats up?,parrot,greet,4 -goodbye,be careful then,lambada,bye,2 -no,so that's no,parrot,cancel,3 -yes,i'll say yes,parrot,book,1 -yes,let's do it,parrot,book,1 -goodbye,afterward,parrot,bye,2 -no,no it's not,parrot,cancel,3 -goodbye,bye!,original,bye,2 -reminder_update,make a reminder to bring a book to work tomorrow,parrot,resched,5 -yes,yeah yeah,lambada,book,1 -yes,not a lie,parrot,book,1 -thank_you,many thanks,original,bye,2 -how_busy,how long will i have to wait for a table in chili's?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -how_busy,show me the wait times at chili?,parrot,avail,0 -calendar_update,remove the event from the calendar,parrot,resched,5 -yes,yeah yeah,lambada,book,1 -greeting,"hello, what's up",original,greet,4 -greeting,how does ai feel?,parrot,greet,4 -greeting,how's everything,original,greet,4 -yes,definitely yes,parrot,book,1 -goodbye,"that's all, bye",original,bye,2 -thank_you,you answered,parrot,bye,2 -yes,good,parrot,book,1 -yes,it is a yes from me,parrot,book,1 -calendar,what is my schedule for march 3?,lambada,avail,0 -thank_you,okay thank you,parrot,bye,2 -goodbye,bye now,original,bye,2 -how_busy,how long is the wait at crepes,lambada,avail,0 -greeting,heller,original,greet,4 -yes,good,parrot,book,1 -greeting,hey fellows,parrot,greet,4 -how_busy,how busy is imahi at 5?,parrot,avail,0 -no,"incorrect, it is certainly a false statement",original,cancel,3 -greeting,ahoy,lambada,greet,4 -cancel_reservation,cancel my reservation for dinner,original,cancel,3 -thank_you,you helped me,parrot,bye,2 -no,that’s incorrect,original,cancel,3 -greeting,how's life?,parrot,greet,4 -calendar,please see my calendar,parrot,avail,0 -no,is that a lie?,parrot,cancel,3 -greeting,how things go?,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -no,naw,original,cancel,3 -no,that is overwhelmingly false,original,cancel,3 -calendar,what is there on january 1st on my calendar?,original,avail,0 -no,that is overwhelmingly negative,lambada,cancel,3 -reminder_update,add a reminder to deposit my paycheck,parrot,resched,5 -yes,i think it's right,parrot,book,1 -goodbye,sayonara,original,bye,2 -goodbye,good bye,original,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -yes,10-Apr,original,book,1 -yes,TRUE,lambada,book,1 -yes,is true,parrot,book,1 -no,it's absolutely false,parrot,cancel,3 -greeting,how are things?,parrot,greet,4 -yes,huh,parrot,book,1 -thank_you,i'm grateful,original,bye,2 -yes,great,original,book,1 -cancel_reservation,i want you to cancel my reservation for 5 at red robin,original,cancel,3 -thank_you,i appreciate my help,original,bye,2 -no,negatory?,parrot,cancel,3 -thank_you,thank you for helping me out,lambada,bye,2 -goodbye,i'll go,parrot,bye,2 -thank_you,awesome thanks,parrot,bye,2 -yes,yeap,original,book,1 -calendar,let me know if there's a scheduled event for march 15th,parrot,avail,0 -thank_you,very grateful,parrot,bye,2 -greeting,hello there,original,greet,4 -thank_you,appreciated,original,bye,2 -no,certainly not,original,cancel,3 -date,can you tell me the current date?,original,avail,0 -greeting,hi there,original,greet,4 -calendar,please tell me what's on my calendar for march 25,parrot,avail,0 -greeting,you good?,parrot,greet,4 -no,no!,original,cancel,3 -greeting,are you well?,original,greet,4 -how_busy,how long will i have to wait in the ranch?,parrot,avail,0 -date,which date today?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -greeting,hey it's up,lambada,greet,4 -thank_you,"nice, excellent!",original,bye,2 -thank_you,really great!,original,bye,2 -no,negatory?,parrot,cancel,3 -yes,very true,original,book,1 -goodbye,goodbyes,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -yes,uh-huh,original,book,1 -date,can you list the date for tomorrow please,parrot,avail,0 -schedule_meeting,one and three o'clock are the meeting rooms open,parrot,book,1 -greeting,salutations,parrot,greet,4 -schedule_meeting,please reserve a meeting room for thursday at 4pm,lambada,book,1 -thank_you,i appeciate it,parrot,bye,2 -thank_you,thanks!,original,bye,2 -reminder_update,remember to write later,parrot,resched,5 -yes,oh-huh,parrot,book,1 -greeting,whats up?,parrot,greet,4 -yes,yeah,original,book,1 -goodbye,adios!,original,bye,2 -goodbye,i leave now,parrot,bye,2 -greeting,hi,original,greet,4 -date,tell me the current date,parrot,avail,0 -how_busy,will chili be busy at 6pm?,parrot,avail,0 -greeting,what's happening?,parrot,greet,4 -yes,"yep, that's true",original,book,1 -schedule_meeting,i need to schedule a meeting with stanley at 6 pm,parrot,book,1 -greeting,wassup,original,greet,4 -yes,yup,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how long will the restaurant be before noon?,parrot,avail,0 -yes,it's logical,parrot,book,1 -yes,yay,lambada,book,1 -goodbye,ai goodbye,original,bye,2 -no,i don't agree,parrot,cancel,3 -yes,huh,parrot,book,1 -greeting,wassup,original,greet,4 -greeting,tell me how you're doing,parrot,greet,4 -greeting,whats up,original,greet,4 -calendar_update,please clear my calendar,original,resched,5 -goodbye,see ya!,original,bye,2 -greeting,hiya!,original,greet,4 -thank_you,merci beaucoup,original,bye,2 -calendar_update,remove this event from this afternoon,parrot,resched,5 -date,what day is that?,parrot,avail,0 -no,negatory?,parrot,cancel,3 -yes,certainly,parrot,book,1 -no,no no thanks,parrot,cancel,3 -yes,yeap,original,book,1 -how_busy,is michel busy at 9?,parrot,avail,0 -yes,i'd say that's true,parrot,book,1 -yes,TRUE,original,book,1 -thank_you,thank a bunch,original,bye,2 -goodbye,goodnight,original,bye,2 -no,naw,parrot,cancel,3 -goodbye,farewell,original,bye,2 -thank_you,thank ya!,original,bye,2 -yes,that's true,original,book,1 -yes,affirmitive,original,book,1 -no,nope,original,cancel,3 -yes,affirmative,original,book,1 -no,that is very false,lambada,cancel,3 -date,date tomorrow,parrot,avail,0 -yes,correct,original,book,1 -yes,it's a fact,parrot,book,1 -goodbye,see ya!,original,bye,2 -thank_you,thankyou,parrot,bye,2 -greeting,hi,original,greet,4 -calendar,do you have any events planned for next sunday?,parrot,avail,0 -how_busy,how long does it take for a meal at california's pizza?,parrot,avail,0 -greeting,hey,original,greet,4 -yes,ok,original,book,1 -schedule_meeting,can you schedule a meeting with john smith at 10 am tomorrow?,parrot,book,1 -no,that can't be true,original,cancel,3 -greeting,hi what's going on,parrot,greet,4 -yes,oh-huh,parrot,book,1 -goodbye,i'm gone,parrot,bye,2 -greeting,hello how you doing,lambada,greet,4 -reminder_update,make me remember,parrot,resched,5 -greeting,hello what are you doing,parrot,greet,4 -yes,positive,original,book,1 -yes,uh-huh,original,book,1 -greeting,salutation,parrot,greet,4 -yes,affirmative,original,book,1 -meeting_schedule,list the meetings scheduled today,parrot,avail,0 -thank_you,okay thanks,original,bye,2 -goodbye,thank you for talking to me,lambada,bye,2 -yes,yeap,original,book,1 -greeting,hello,original,greet,4 -greeting,aloha,original,greet,4 -greeting,ahoy there,lambada,greet,4 -reminder_update,remind me to wash the dishes,parrot,resched,5 -goodbye,fairwell,original,bye,2 -thank_you,you've been great,parrot,bye,2 -greeting,how goes it,original,greet,4 -greeting,salutation,parrot,greet,4 -yes,ya,original,book,1 -greeting,whats up?,parrot,greet,4 -no,invalid,original,cancel,3 -date,please show the date,parrot,avail,0 -yes,approved,original,book,1 -yes,ok,original,book,1 -yes,agreed,original,book,1 -greeting,heller,original,greet,4 -how_busy,is mr joe's pizza place packed?,parrot,avail,0 -greeting,hello there!,original,greet,4 -yes,you are yes,lambada,book,1 -no,that's not correct it's false,parrot,cancel,3 -date,what year?,parrot,avail,0 -how_busy,how many people will be at chipotle at 6pm,parrot,avail,0 -thank_you,your answer was good,original,bye,2 -cancel_reservation,cancellation of dinner reservation,parrot,cancel,3 -goodbye,on the road,parrot,bye,2 -goodbye,it was nice to get to talk to you,lambada,bye,2 -reminder_update,do you want me to remind you to pay taxes tomorrow?,parrot,resched,5 -how_busy,what's the crowd at red lobster?,parrot,avail,0 -how_busy,tell me the average wait time for dinner at rouge?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -no,it seems not,original,cancel,3 -how_busy,what is the typical wait for a table at gobi steakhouse?,lambada,avail,0 -no,you're not right,parrot,cancel,3 -greeting,ahoy,lambada,greet,4 -goodbye,fairwell?,parrot,bye,2 -no,"that would be ""no",original,cancel,3 -how_busy,does this place get busy around 5 o'clock?,parrot,avail,0 -greeting,how're you?,parrot,greet,4 -greeting,how've you been,original,greet,4 -no,FALSE,original,cancel,3 -thank_you,you were so nice,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -yes,i want that,parrot,book,1 -greeting,whats up?,parrot,greet,4 -yes,it makes sense,parrot,book,1 -goodbye,the discussion was nice,parrot,bye,2 -yes,TRUE,original,book,1 -cancel_reservation,can you cancelt the reservation i have for dinner?,original,cancel,3 -goodbye,i'm gone,parrot,bye,2 -date,what is the month and day in 4 days?,lambada,avail,0 -thank_you,i appreciate that answer,original,bye,2 -greeting,how have you been?,parrot,greet,4 -greeting,heyo,original,greet,4 -greeting,how does ai feel?,parrot,greet,4 -greeting,hiya,original,greet,4 -goodbye,see you around,original,bye,2 -how_busy,how many people will wait for orange sauce at 7 pm?,parrot,avail,0 -no,certainly false,parrot,cancel,3 -yes,say positive,parrot,book,1 -greeting,well hello,original,greet,4 -date,what's the month of the year?,parrot,avail,0 -date,list the next week's dates?,parrot,avail,0 -greeting,hello there!,original,greet,4 -date,what's it today?,parrot,avail,0 -goodbye,bye-bye,original,bye,2 -no,nope,original,cancel,3 -schedule_meeting,how do i schedule meetings?,parrot,book,1 -no,that's negative,parrot,cancel,3 -yes,TRUE,lambada,book,1 -schedule_meeting,i need help with setting a meeting,parrot,book,1 -no,it's a false claim,parrot,cancel,3 -reminder_update,remind me later,original,resched,5 -schedule_meeting,i need to know how to have a meeting,parrot,book,1 -thank_you,you've given me it,parrot,bye,2 -yes,oh yes,original,book,1 -greeting,hello,original,greet,4 -goodbye,later gater,original,bye,2 -greeting,hey hey!,original,greet,4 -greeting,salutations,parrot,greet,4 -no,nothing,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -how_busy,how long is the wait at ihop?,parrot,avail,0 -no,FALSE,original,cancel,3 -greeting,how is life?,parrot,greet,4 -goodbye,bye now,original,bye,2 -date,current day,parrot,avail,0 -yes,facts,original,book,1 -greeting,hi ai,original,greet,4 -yes,good,parrot,book,1 -greeting,good morning,parrot,greet,4 -yes,it's definitely positive,parrot,book,1 -goodbye,thank you for chatting with me,parrot,bye,2 -no,i think it's not right,parrot,cancel,3 -yes,ok,original,book,1 -how_busy,how long can i wait at the pizza place,lambada,avail,0 -no,FALSE,lambada,cancel,3 -yes,yeah,original,book,1 -cancel_reservation,cancel my reservation for chris at ouside,lambada,cancel,3 -thank_you,thanks for doing it,parrot,bye,2 -yes,a true statement,parrot,book,1 -calendar,what is on my calendar next sunday?,original,avail,0 -no,no no no,parrot,cancel,3 -yes,accepted,original,book,1 -meeting_schedule,meetings today,original,avail,0 -schedule_meeting,put a meeting in the blue room on friday?,parrot,book,1 -no,negatory,original,cancel,3 -no,that’s actually wrong,original,cancel,3 -greeting,hi,original,greet,4 -no,nada,original,cancel,3 -thank_you,i'm grateful,original,bye,2 -no,that is untrue,original,cancel,3 -greeting,heller,original,greet,4 -greeting,salutations!,original,greet,4 -yes,yep,original,book,1 -no,that's completely wrong,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -schedule_meeting,can you arrange a meeting for scott at noon?,parrot,book,1 -greeting,nice day,lambada,greet,4 -date,what year?,parrot,avail,0 -goodbye,i'm leaving now,lambada,bye,2 -schedule_meeting,create a meeting room for 11am,lambada,book,1 -goodbye,goodbye,original,bye,2 -date,wednesday friday or saturday?,parrot,avail,0 -goodbye,adios!,original,bye,2 -yes,confirmed,original,book,1 -thank_you,i appreciate my help,original,bye,2 -yes,uh-huh,original,book,1 -no,that's incorrect!,original,cancel,3 -goodbye,bye-bye,original,bye,2 -yes,just right,parrot,book,1 -no,it's overwhelmingly wrong,parrot,cancel,3 -no,but it's not true,parrot,cancel,3 -yes,say yes,lambada,book,1 -greeting,what's up,original,greet,4 -goodbye,"thanks, bye",original,bye,2 -date,what day is that?,parrot,avail,0 -thank_you,thanks for answering that,lambada,bye,2 -yes,roger that,original,book,1 -schedule_meeting,is there room between noon and 2?,parrot,book,1 -thank_you,i appreciate it,original,bye,2 -schedule_meeting,please help me with the meeting,parrot,book,1 -goodbye,bye my friend,parrot,bye,2 -date,today?,parrot,avail,0 -yes,positive,parrot,book,1 -goodbye,farewell,original,bye,2 -date,if it's six days,parrot,avail,0 -calendar,what's my schedule for april 1st?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -goodbye,as regards,parrot,bye,2 -thank_you,thank you for my answer,lambada,bye,2 -thank_you,appreciated,original,bye,2 -no,it's not true,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -goodbye,enjoy my day goodbye,parrot,bye,2 -no,that's incorrect!,original,cancel,3 -greeting,heller,original,greet,4 -no,FALSE,lambada,cancel,3 -reminder_update,set a reminder to take care of myself,lambada,resched,5 -yes,perfect,parrot,book,1 -date,a year?,parrot,avail,0 -calendar,can you tell me what my calendar is for thursday 14?,parrot,avail,0 -goodbye,"later, thanks for chatting",original,bye,2 -goodbye,it was great to speak with you,original,bye,2 -how_busy,is this restaurant crowded?,parrot,avail,0 -yes,ok,original,book,1 -no,it's not always true,parrot,cancel,3 -how_busy,how long is the wait at the rancho alamo,lambada,avail,0 -thank_you,thanks for that answer,original,bye,2 -no,"no, that's wrong",original,cancel,3 -cancel_reservation,cancell my dinner reservation,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -greeting,hiya!,original,greet,4 -no,that's overwhelmingly negative,parrot,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -cancel_reservation,repeal the dinner reservation,original,cancel,3 -yes,obviously,parrot,book,1 -thank_you,why thank you?,original,bye,2 -greeting,how's idy?,parrot,greet,4 -goodbye,fairwell,original,bye,2 -no,say negative,parrot,cancel,3 -goodbye,bye-bye,original,bye,2 -yes,uh-huh,original,book,1 -no,no,lambada,cancel,3 -schedule_meeting,can you arrange a meeting for the blue room on friday?,parrot,book,1 -thank_you,thanks for helping me!,original,bye,2 -yes,"yes, that is factual",original,book,1 -reminder_update,make a reminder please,parrot,resched,5 -no,no longer valid,parrot,cancel,3 -greeting,hello ai,parrot,greet,4 -no,erroneous,parrot,cancel,3 -no,but not right now,parrot,cancel,3 -yes,obviously,parrot,book,1 -thank_you,good job thanks,parrot,bye,2 -greeting,what's happening to you?,parrot,greet,4 -greeting,hi there,original,greet,4 -date,date please,original,avail,0 -goodbye,i'll be gone,parrot,bye,2 -date,what is tomorrow?,parrot,avail,0 -goodbye,i'll leave,parrot,bye,2 -how_busy,sage's busy at noon?,parrot,avail,0 -goodbye,the conversation was good,parrot,bye,2 -no,but it's wrong,parrot,cancel,3 -how_busy,what time will it take to sit down at chili's restaurant?,parrot,avail,0 -yes,yup,original,book,1 -reminder_update,want you to remember something,parrot,resched,5 -greeting,how it goes?,parrot,greet,4 -greeting,hiya!,original,greet,4 -date,today?,parrot,avail,0 -no,don't like that no,parrot,cancel,3 -how_busy,will the restaurant fill up,parrot,avail,0 -calendar_update,please stop the lunch on october 31,parrot,resched,5 -yes,good yes,lambada,book,1 -calendar_update,remove the baby shower from my calendar on 11 may,parrot,resched,5 -no,please disagree,lambada,cancel,3 -date,what is the date in 100 days?,lambada,avail,0 -yes,you are correct,original,book,1 -goodbye,goodbyes soon,parrot,bye,2 -no,not happening,original,cancel,3 -schedule_meeting,i want to have a meeting with bob in the morning,lambada,book,1 -no,nope,original,cancel,3 -greeting,welcome,parrot,greet,4 -thank_you,very grateful,parrot,bye,2 -no,that is overwhelmingly wrong,lambada,cancel,3 -no,no,lambada,cancel,3 -goodbye,good bye my friend,original,bye,2 -meeting_schedule,what's my schedule for today?,parrot,avail,0 -goodbye,great conversation,parrot,bye,2 -no,that's completely false,original,cancel,3 -goodbye,we can talk later,parrot,bye,2 -greeting,you good?,parrot,greet,4 -no,that's no,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -calendar_update,delete this event from the calendar,parrot,resched,5 -thank_you,appreciate the help,original,bye,2 -thank_you,gracias,original,bye,2 -no,that's totally wrong!,original,cancel,3 -how_busy,is mcdonalds busy?,parrot,avail,0 -thank_you,you've been great,parrot,bye,2 -no,it's false,parrot,cancel,3 -yes,is true,parrot,book,1 -cancel_reservation,cancel dinner reservation,parrot,cancel,3 -schedule_meeting,what is the process to apply for a meeting?,lambada,book,1 -yes,confirm,original,book,1 -greeting,aloha,original,greet,4 -greeting,how is ai doing?,parrot,greet,4 -how_busy,can you tell me when cheesecake factory is busy around 6?,lambada,avail,0 -date,a year?,parrot,avail,0 -date,a year?,parrot,avail,0 -greeting,hey,original,greet,4 -no,it's a wrong answer,parrot,cancel,3 -yes,affirmative,original,book,1 -goodbye,goodbye soon,lambada,bye,2 -calendar,have you added my doctor appointment to my calendar?,parrot,avail,0 -reminder_update,just a reminder,parrot,resched,5 -yes,that's all right,parrot,book,1 -greeting,hola,original,greet,4 -how_busy,is the wait time at this restaurant high?,parrot,avail,0 -greeting,hola,original,greet,4 -greeting,hey there,original,greet,4 -no,that's so false,parrot,cancel,3 -yes,yeah,original,book,1 -thank_you,thanks!,original,bye,2 -goodbye,later,original,bye,2 -goodbye,bye bye,lambada,bye,2 -no,"no, that isn't right",lambada,cancel,3 -no,is my false claim?,parrot,cancel,3 -yes,TRUE,lambada,book,1 -yes,it'll be yes,parrot,book,1 -yes,indeed,original,book,1 -yes,so it's real,parrot,book,1 -how_busy,you know how busy chili's is at 730?,parrot,avail,0 -greeting,hey how's ot,lambada,greet,4 -yes,good,parrot,book,1 -greeting,how's idy?,parrot,greet,4 -greeting,i need to know how you're doing,lambada,greet,4 -no,this statement is false,parrot,cancel,3 -meeting_schedule,what's on my calendar?,parrot,avail,0 -goodbye,later gater,original,bye,2 -thank_you,thank you,original,bye,2 -greeting,hey how's life,original,greet,4 -yes,that's right,original,book,1 -no,FALSE,original,cancel,3 -thank_you,many thank,original,bye,2 -goodbye,later,original,bye,2 -goodbye,good bye,original,bye,2 -no,that's untrue,parrot,cancel,3 -no,that is wrong,original,cancel,3 -thank_you,you've been a good help,lambada,bye,2 -how_busy,how busy the olive garden restaurant is at 730 pm?,parrot,avail,0 -goodbye,it's nice to talk to you ,parrot,bye,2 -greeting,hello what's happening,parrot,greet,4 -reminder_update,please remind me something,parrot,resched,5 -goodbye,tootles?,parrot,bye,2 -goodbye,later then,lambada,bye,2 -yes,all right,original,book,1 -cancel_reservation,cancel my reservation for dinner at red robin,lambada,cancel,3 -goodbye,don't you miss the chance to talk to you?,parrot,bye,2 -goodbye,goodnight,original,bye,2 -goodbye,thanks bye bye!,original,bye,2 -how_busy,how long will i have to wait at the macaroni grill,parrot,avail,0 -goodbye,i'm gone,parrot,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -goodbye,buhbye,original,bye,2 -no,not right now,original,cancel,3 -calendar_update,remove event from calendar,lambada,resched,5 -greeting,how does ai do?,parrot,greet,4 -goodbye,peace,original,bye,2 -no,FALSE,lambada,cancel,3 -greeting,are you okay??,parrot,greet,4 -calendar,do you have appointments for april 3rd?,parrot,avail,0 -reminder_update,come on please,parrot,resched,5 -no,nay,original,cancel,3 -greeting,hola!,original,greet,4 -yes,that's correct,original,book,1 -greeting,how's this going?,parrot,greet,4 -yes,accepted,original,book,1 -greeting,hiya!,original,greet,4 -schedule_meeting,set a meeting with tom for tomorrow 530,parrot,book,1 -yes,affirmitive,original,book,1 -thank_you,"oh, thanks",original,bye,2 -how_busy,how busy are the chapsticks around 5pm,parrot,avail,0 -greeting,you're all right?,parrot,greet,4 -thank_you,appreciated,original,bye,2 -reminder_update,make a reminder to pay the gas bill,lambada,resched,5 -schedule_meeting,can you arrange a meeting with mark at noon?,parrot,book,1 -greeting,hi,original,greet,4 -goodbye,was fun seeing you,parrot,bye,2 -reminder_update,remind me again please,original,resched,5 -greeting,ahoy there,lambada,greet,4 -cancel_reservation,tell me the best way to cancel my steak house reservation?,parrot,cancel,3 -date,date please,original,avail,0 -goodbye,nice talk,lambada,bye,2 -yes,positive,parrot,book,1 -goodbye,a good talk,parrot,bye,2 -meeting_schedule,do i have any meetings on my calendar?,parrot,avail,0 -goodbye,later good luck,parrot,bye,2 -meeting_schedule,what meetings are planned today?,parrot,avail,0 -no,the negator,parrot,cancel,3 -how_busy,what time is it at chili's in the evening?,parrot,avail,0 -date,'what is the date today',parrot,avail,0 -thank_you,you've been great,parrot,bye,2 -how_busy,when will the restaurant be the busiest? '',parrot,avail,0 -yes,right,parrot,book,1 -cancel_reservation,would you cancel my reservation for dinner on friday?,parrot,cancel,3 -greeting,wanted to say hi,parrot,greet,4 -how_busy,is the wait long?,parrot,avail,0 -yes,definitely confirmed,parrot,book,1 -no,that's a negation,parrot,cancel,3 -no,no!,original,cancel,3 -no,it's very wrong,parrot,cancel,3 -thank_you,i owe you one,original,bye,2 -yes,and you're right,parrot,book,1 -yes,"yes, please",parrot,book,1 -thank_you,again thanks,parrot,bye,2 -yes,i just said it,parrot,book,1 -no,not right?,parrot,cancel,3 -date,i need to know what day it is,lambada,avail,0 -no,it'd be awful,parrot,cancel,3 -date,what's the day now??,parrot,avail,0 -yes,yeap,original,book,1 -goodbye,wonderful conversation,lambada,bye,2 -greeting,ahoy hoy,original,greet,4 -yes,it is true,original,book,1 -date,today's date is what exactly,original,avail,0 -yes,definitely,original,book,1 -greeting,ahoy hoy,original,greet,4 -no,negatory,original,cancel,3 -reminder_update,remind me to pay my taxes on monday,parrot,resched,5 -goodbye,good luck,lambada,bye,2 -date,do you have the current date?,lambada,avail,0 -greeting,hey,original,greet,4 -thank_you,really great!,original,bye,2 -greeting,how's everything?,parrot,greet,4 -yes,absolutely,original,book,1 -yes,yeap,original,book,1 -greeting,hello how's it going,original,greet,4 -no,it's no,parrot,cancel,3 -yes,yeap,original,book,1 -no,nothing good,parrot,cancel,3 -date,in 100 days?,parrot,avail,0 -yes,you're right,original,book,1 -no,but it's wrong,parrot,cancel,3 -goodbye,tata for now,original,bye,2 -goodbye,my friend,parrot,bye,2 -no,no please,parrot,cancel,3 -greeting,aloha,original,greet,4 -goodbye,good talk,parrot,bye,2 -goodbye,bye,original,bye,2 -no,ill pass,original,cancel,3 -yes,yeah yeah,lambada,book,1 -no,FALSE,lambada,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -goodbye,farewell,original,bye,2 -reminder_update,you can remind me,parrot,resched,5 -meeting_schedule,what is my meeting calendar?,parrot,avail,0 -date,what will the date be in 200 days?,lambada,avail,0 -goodbye,bye bye!,original,bye,2 -goodbye,afterward,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -how_busy,wait how long?,parrot,avail,0 -goodbye,later!,original,bye,2 -date,what's the day now?,parrot,avail,0 -how_busy,how busy is chili's around 5,lambada,avail,0 -greeting,hiya!,original,greet,4 -goodbye,goodbyes soon,parrot,bye,2 -yes,that appears true,original,book,1 -how_busy,can you tell me if there's going to be a long wait at the lobster?,parrot,avail,0 -thank_you,"thanks, i appreciate it",original,bye,2 -thank_you,okay thank you,parrot,bye,2 -greeting,how's ai doing?,parrot,greet,4 -yes,it'd be great,parrot,book,1 -thank_you,appreciate it,original,bye,2 -greeting,hola!,original,greet,4 -how_busy,what's the expected wait time at blue jay?,parrot,avail,0 -how_busy,how long will i have to wait if i want to eat in the cheese cake factory?,parrot,avail,0 -yes,i guess,parrot,book,1 -no,no?,parrot,cancel,3 -no,that is not correct,original,cancel,3 -how_busy,can you tell me how busy chili's is at 7?,lambada,avail,0 -greeting,well hello,original,greet,4 -goodbye,tootles,original,bye,2 -goodbye,goodbye for now ai,original,bye,2 -no,negatory?,parrot,cancel,3 -goodbye,"nice talk, next time",lambada,bye,2 -yes,certainly,parrot,book,1 -greeting,heller,original,greet,4 -cancel_reservation,how do you tell the restaurant to cancel my dinner reservation?,parrot,cancel,3 -no,naw,parrot,cancel,3 -yes,accepted,original,book,1 -yes,i guess,parrot,book,1 -greeting,hiya!,original,greet,4 -no,i prefer not to,parrot,cancel,3 -no,it's negative,parrot,cancel,3 -thank_you,thanks for responding,parrot,bye,2 -greeting,hi ai,original,greet,4 -yes,absolutely!,original,book,1 -calendar_update,remove event from calendar,lambada,resched,5 -greeting,good evening,original,greet,4 -no,"no, that's incorrect",original,cancel,3 -date,date please,original,avail,0 -thank_you,good job helping me,parrot,bye,2 -no,but it's false,parrot,cancel,3 -goodbye,see ya later,original,bye,2 -greeting,yo how's it going,parrot,greet,4 -date,what's today,original,avail,0 -no,naw,original,cancel,3 -cancel_reservation,get the salad cancelled,lambada,cancel,3 -calendar_update,a reminder on the calendar to buy a gun on 1 march,parrot,resched,5 -goodbye,time to say goodbye,parrot,bye,2 -calendar,read all my appointments on the 15th,parrot,avail,0 -yes,i know this is true,lambada,book,1 -goodbye,bye-bye,original,bye,2 -how_busy,tell me how busy the red rooster is at 8 pm,parrot,avail,0 -goodbye,later thanks for the chat,parrot,bye,2 -yes,accepted,original,book,1 -how_busy,how busy is cherry pit at 4:30,lambada,avail,0 -no,that's not necessarily true,lambada,cancel,3 -thank_you,why did you thank me?,parrot,bye,2 -no,naw,original,cancel,3 -yes,"yeah, that's it",lambada,book,1 -how_busy,how busy is georgio at 12,lambada,avail,0 -yes,i say yes,lambada,book,1 -thank_you,i owe you one!,original,bye,2 -greeting,how life treats you?,parrot,greet,4 -calendar,what's the day i set for march 29th,lambada,avail,0 -yes,right,parrot,book,1 -goodbye,i'll go,parrot,bye,2 -no,"no, that is wrong",original,cancel,3 -reminder_update,set a reminder for the meeting at noon,parrot,resched,5 -yes,great,original,book,1 -yes,"yes, that's it",original,book,1 -greeting,let me know how you are today,parrot,greet,4 -schedule_meeting,a meeting between 6 and 8 i'd like to schedule,parrot,book,1 -goodbye,see ya,lambada,bye,2 -greeting,bonjour,original,greet,4 -goodbye,i'm going,parrot,bye,2 -thank_you,thank you very much,original,bye,2 -how_busy,is kaya busy around 5pm?,parrot,avail,0 -cancel_reservation,cancellation of dinner reservations,parrot,cancel,3 -goodbye,send a goodbye,lambada,bye,2 -no,no longer valid,parrot,cancel,3 -yes,yup,original,book,1 -date,date please,original,avail,0 -yes,TRUE,original,book,1 -thank_you,thank you for all the information you have given me,parrot,bye,2 -greeting,aloha,original,greet,4 -goodbye,talk later,original,bye,2 -goodbye,peace,original,bye,2 -goodbye,my friend,parrot,bye,2 -goodbye,goodbye no problem,parrot,bye,2 -goodbye,sayonara ,parrot,bye,2 -schedule_meeting,how are meetings scheduled?,parrot,book,1 -calendar,what's the tuesday calendar like?,parrot,avail,0 -yes,yes you have been correct,lambada,book,1 -calendar_update,remove the birthday party of steve from my calendar,parrot,resched,5 -thank_you,please thank you,lambada,bye,2 -yes,10-Apr,original,book,1 -reminder_update,please remember me,parrot,resched,5 -how_busy,tell me the number of people waiting for orange sauce at 7pm,parrot,avail,0 -greeting,hello there!,original,greet,4 -no,erroneous,parrot,cancel,3 -yes,huh huh,parrot,book,1 -no,certainly not true,parrot,cancel,3 -yes,"yes, that's affirmative",original,book,1 -cancel_reservation,i need my dinner reservation canceled,original,cancel,3 -thank_you,appreciate the support,parrot,bye,2 -calendar_update,remove the restaurant party from my calendar,lambada,resched,5 -reminder_update,can you remember me later,parrot,resched,5 -no,that's not the answer,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -yes,great,original,book,1 -greeting,ahoy,lambada,greet,4 -thank_you,thanks,original,bye,2 -yes,thats right,original,book,1 -yes,so it's real,parrot,book,1 -greeting,heller,original,greet,4 -yes,confirmed,original,book,1 -thank_you,gracias,original,bye,2 -greeting,"hello, friend",original,greet,4 -goodbye,catch you around,original,bye,2 -no,naw,original,cancel,3 -goodbye,see you soon,original,bye,2 -thank_you,thank you,original,bye,2 -how_busy,how long will it take for this restaurant to be crowded at 5?,parrot,avail,0 -date,you know what the date is?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -greeting,are you good?,original,greet,4 -no,nope,original,cancel,3 -schedule_meeting,please check if there is a meeting room between 4 and 5,parrot,book,1 -greeting,hey,original,greet,4 -greeting,"hey, how's my day",lambada,greet,4 -goodbye,see ya,lambada,bye,2 -how_busy,what's the time in this restaurant?,parrot,avail,0 -meeting_schedule,do i have any meetings on my schedule today?,original,avail,0 -no,that is erroneous,original,cancel,3 -thank_you,okay thank you,parrot,bye,2 -greeting,good evening,original,greet,4 -greeting,how's my life?,parrot,greet,4 -greeting,"good morning, ai",original,greet,4 -greeting,"hello, anyone there",original,greet,4 -goodbye,good bye,original,bye,2 -meeting_schedule,i'm going to meet john,parrot,avail,0 -greeting,is everything okay today?,parrot,greet,4 -yes,yeap,original,book,1 -goodbye,"great talk, thanks for coming",lambada,bye,2 -schedule_meeting,check meeting rooms available between one and three o'clock,parrot,book,1 -date,what year?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -greeting,ahoy,lambada,greet,4 -no,but no way?,parrot,cancel,3 -no,nope,original,cancel,3 -no,naw,parrot,cancel,3 -cancel_reservation,cancel my reservation for brad at longhorn,lambada,cancel,3 -reminder_update,remember to clean the kitchen at 2 pm,parrot,resched,5 -yes,that's true,original,book,1 -how_busy,does applebee's have a lot of wait time around 5 am?,lambada,avail,0 -greeting,how were you?,parrot,greet,4 -thank_you,you answered,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -no,negative sure,parrot,cancel,3 -greeting,are you good?,original,greet,4 -date,what's the current day?,parrot,avail,0 -yes,okay,original,book,1 -greeting,how's my day?,parrot,greet,4 -goodbye,later gator!,original,bye,2 -reminder_update,i'd like to remind you to bring in the plants tonight,parrot,resched,5 -no,nope not it,original,cancel,3 -no,it's no,parrot,cancel,3 -yes,"yes, please",original,book,1 -greeting,ahoy,lambada,greet,4 -date,wednesday friday or saturday?,parrot,avail,0 -goodbye,im leaving,parrot,bye,2 -greeting,how goes it,original,greet,4 -no,i'd rather not,parrot,cancel,3 -goodbye,bye,original,bye,2 -greeting,welcome,parrot,greet,4 -no,it's a false statement,parrot,cancel,3 -greeting,aloha,original,greet,4 -yes,yeah yeah,lambada,book,1 -greeting,what's happening?,parrot,greet,4 -no,it is no,original,cancel,3 -goodbye,regards,original,bye,2 -how_busy,why is this place so busy at lunchtime?,parrot,avail,0 -greeting,how's everything going?,parrot,greet,4 -date,what is today?,original,avail,0 -yes,absolutely,original,book,1 -greeting,how's it going,lambada,greet,4 -reminder_update,remind me to call a friend tomorrow,lambada,resched,5 -goodbye,tootles,original,bye,2 -calendar,what's going on on the 2nd march?,parrot,avail,0 -no,say negative,parrot,cancel,3 -no,not happening,original,cancel,3 -how_busy,how busy will avocado steakhouse be at 7:30,lambada,avail,0 -goodbye,afterward,parrot,bye,2 -date,would you tell me which date it will be in eight days,lambada,avail,0 -reminder_update,i need you to make a reminder for me to give the cat her flea medicine,original,resched,5 -how_busy,will i have to wait for long before being seated at the cheese cake factory,original,avail,0 -thank_you,you're a great help,parrot,bye,2 -thank_you,i'm happy you did this for me,parrot,bye,2 -thank_you,you have my gratitude,original,bye,2 -yes,"yes, please",original,book,1 -how_busy,how long should i wait before i can eat at macaroni grill,lambada,avail,0 -yes,10-Apr,original,book,1 -yes,all right,original,book,1 -goodbye,see ya,original,bye,2 -thank_you,really great!,original,bye,2 -greeting,good day,original,greet,4 -schedule_meeting,schedule a meeting with me,parrot,book,1 -yes,that is really true,lambada,book,1 -greeting,hello how's it going?,parrot,greet,4 -thank_you,appreciate the support,parrot,bye,2 -yes,it's indeed true,original,book,1 -greeting,"yo, hows it going",original,greet,4 -goodbye,adios!,original,bye,2 -no,negating,parrot,cancel,3 -greeting,"howdy, what's new",original,greet,4 -yes,"yes, that is true",original,book,1 -thank_you,thanks very much for your answer,parrot,bye,2 -yes,absolutely,original,book,1 -date,please explain today,parrot,avail,0 -how_busy,how long has the wait been at the italian restaurant?,parrot,avail,0 -date,what's my day?,parrot,avail,0 -thank_you,gracias,original,bye,2 -goodbye,take it easy,lambada,bye,2 -date,what is it today?,lambada,avail,0 -no,invalid,original,cancel,3 -no,absolutely not,original,cancel,3 -no,that's a negation,parrot,cancel,3 -how_busy,how busy this restaurant is?,parrot,avail,0 -reminder_update,i need a reminder for the cat to be neutered,lambada,resched,5 -no,no that's a lie,parrot,cancel,3 -goodbye,i’ll be leaving now,original,bye,2 -yes,that's a fact,parrot,book,1 -goodbye,adios,original,bye,2 -yes,oh-huh,parrot,book,1 -greeting,"why, hello bandit",original,greet,4 -goodbye,nice drive by,lambada,bye,2 -date,what's the current day?,parrot,avail,0 -thank_you,thanks!,original,bye,2 -thank_you,gracias,original,bye,2 -date,what day?,parrot,avail,0 -greeting,whats up,original,greet,4 -calendar,are there appointments for march 10th?,parrot,avail,0 -yes,i'll say yes,parrot,book,1 -reminder_update,set a reminder for me,original,resched,5 -greeting,hey hey!,original,greet,4 -meeting_schedule,are there any meetings with roger today?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how busy is a meal at red lobster tonight?,parrot,avail,0 -greeting,yo,original,greet,4 -goodbye,nice drive by,lambada,bye,2 -goodbye,sign off,parrot,bye,2 -thank_you,very grateful,parrot,bye,2 -no,FALSE,original,cancel,3 -goodbye,goodbyes,parrot,bye,2 -goodbye,later,original,bye,2 -greeting,how you feel?,parrot,greet,4 -schedule_meeting,the meeting room needs to be set up for 6pm on friday,parrot,book,1 -thank_you,thanks please,original,bye,2 -how_busy,does the restaurant have a lot of business at noon?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -yes,oh-huh,parrot,book,1 -goodbye,the chat with you was fun,parrot,bye,2 -reminder_update,"new reminder, please",original,resched,5 -how_busy,is the wait time high in this restaurant?,parrot,avail,0 -no,no,lambada,cancel,3 -goodbye,"nice talk, goodbye",lambada,bye,2 -yes,a fact,parrot,book,1 -date,date tomorrow,parrot,avail,0 -greeting,what's happened?,parrot,greet,4 -goodbye,fairwell,original,bye,2 -thank_you,thanks!,original,bye,2 -greeting,hi,original,greet,4 -greeting,how's my doing?,parrot,greet,4 -meeting_schedule,meetings today,original,avail,0 -yes,10-Apr,original,book,1 -goodbye,farewell!,original,bye,2 -no,nada,original,cancel,3 -goodbye,glad to talk to you,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -no,naw,original,cancel,3 -cancel_reservation,"should i cancel my reservation, or should i just cancel it",lambada,cancel,3 -greeting,how're you?,parrot,greet,4 -thank_you,okay thanks,original,bye,2 -greeting,how are you?,parrot,greet,4 -yes,i'm voting for you,parrot,book,1 -greeting,hey fellow,parrot,greet,4 -yes,affirmative,original,book,1 -no,not that,original,cancel,3 -no,this information is false,parrot,cancel,3 -greeting,hello there,original,greet,4 -goodbye,im leaving,parrot,bye,2 -goodbye,regards,original,bye,2 -cancel_reservation,abandon the dinner reservation i made,original,cancel,3 -thank_you,i am very grateful,original,bye,2 -cancel_reservation,just cancel my reservation,lambada,cancel,3 -no,not correct,parrot,cancel,3 -no,naw,original,cancel,3 -yes,accepted,original,book,1 -calendar,please update my schedule for march 1,parrot,avail,0 -cancel_reservation,please cancel my reservation for lunch,parrot,cancel,3 -greeting,what's happened?,parrot,greet,4 -yes,that would be correct,original,book,1 -goodbye,peace,original,bye,2 -meeting_schedule,do you have any meetings from 2 to 5 pm?,parrot,avail,0 -how_busy,how long are the lines at cheesecake factory,lambada,avail,0 -date,list the current date?,parrot,avail,0 -goodbye,i'll have to go,parrot,bye,2 -yes,indeed,original,book,1 -greeting,hey there,original,greet,4 -no,definitely not,original,cancel,3 -thank_you,it's all i need,parrot,bye,2 -no,that's a wrong answer?,parrot,cancel,3 -thank_you,the best,parrot,bye,2 -greeting,give me the details,parrot,greet,4 -calendar,what's on my calendar for march 10,lambada,avail,0 -date,tomorrow is the calendar,parrot,avail,0 -thank_you,i owe you,parrot,bye,2 -how_busy,how busy outback steakhouse will be at 730?,parrot,avail,0 -greeting,how's everything?,parrot,greet,4 -schedule_meeting,i need a meeting room for 11am,parrot,book,1 -calendar,tell me what's on my calendar for may 1st,parrot,avail,0 -date,what's my day?,parrot,avail,0 -greeting,heyo,original,greet,4 -yes,is true,parrot,book,1 -goodbye,nice chat today,lambada,bye,2 -no,i prefer not,parrot,cancel,3 -goodbye,adios!,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -greeting,how's everything going?,parrot,greet,4 -yes,TRUE,lambada,book,1 -meeting_schedule,how long will the meeting with diana last?,parrot,avail,0 -goodbye,goodbye then,parrot,bye,2 -thank_you,my thanks,parrot,bye,2 -goodbye,see you around,original,bye,2 -goodbye,fairwell,original,bye,2 -yes,approved,original,book,1 -calendar,21st what's on my calendar?,parrot,avail,0 -no,no way,original,cancel,3 -reminder_update,add a reminder,lambada,resched,5 -no,negative,original,cancel,3 -greeting,hello siri,original,greet,4 -greeting,what's happened?,parrot,greet,4 -thank_you,I owe you one,parrot,bye,2 -greeting,whats up,original,greet,4 -date,what's the day tomorrow?,parrot,avail,0 -greeting,how ya doin,original,greet,4 -calendar,check out my calendar for march 5th?,parrot,avail,0 -meeting_schedule,when is my next meeting with steve?,parrot,avail,0 -meeting_schedule,schedule my meeting for today,parrot,avail,0 -how_busy,are the chicken dinners busy?,parrot,avail,0 -no,that'd be a no,original,cancel,3 -no,negative,original,cancel,3 -no,no please,parrot,cancel,3 -yes,huh,parrot,book,1 -no,definitely not,original,cancel,3 -greeting,why hello?,original,greet,4 -goodbye,im leaving,parrot,bye,2 -no,that's a negative,original,cancel,3 -how_busy,does the coffee shop usually get busy?,lambada,avail,0 -greeting,how's my life today?,parrot,greet,4 -goodbye,bye for now,original,bye,2 -meeting_schedule,what are my meeting hours today?,parrot,avail,0 -no,i disagree,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -schedule_meeting,can i book a meeting room between 8 and 9?,parrot,book,1 -yes,i'm going to tell you tes,parrot,book,1 -reminder_update,remind me to wash my hair,parrot,resched,5 -yes,"yes, please",parrot,book,1 -how_busy,how busy is ihop at 5 pm,original,avail,0 -no,"no, that is false",lambada,cancel,3 -schedule_meeting,is it possible to schedule a meeting with bob at 10am?,parrot,book,1 -no,no please,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -yes,affirmative,original,book,1 -no,that's no,parrot,cancel,3 -no,invalid,original,cancel,3 -greeting,get up ai,parrot,greet,4 -how_busy,i want to know how busy chili's is at 5:00 pm,lambada,avail,0 -greeting,ahoy hoy,original,greet,4 -yes,oh yes,original,book,1 -goodbye,adios,original,bye,2 -date,show me the date,original,avail,0 -how_busy,how long would be a wait at chipmunk,lambada,avail,0 -greeting,good day,original,greet,4 -thank_you,thanks for my assistance,parrot,bye,2 -goodbye,thanks bye bye!,original,bye,2 -date,now what day is it,parrot,avail,0 -goodbye,say goodbye,parrot,bye,2 -greeting,how's the ai?,parrot,greet,4 -no,nope,original,cancel,3 -goodbye,later,original,bye,2 -no,nothing,parrot,cancel,3 -greeting,what's happened?,parrot,greet,4 -yes,"yes, please",original,book,1 -greeting,"hi, ai",original,greet,4 -schedule_meeting,are there meeting rooms available at 8 am?,parrot,book,1 -date,please date,parrot,avail,0 -thank_you,appreciated,original,bye,2 -no,negation,parrot,cancel,3 -yes,uh-huh,original,book,1 -date,what will the date be 500 days from now?,lambada,avail,0 -no,that's not true,original,cancel,3 -goodbye,bye,original,bye,2 -yes,absolutely!,original,book,1 -goodbye,tootles?,parrot,bye,2 -greeting,how's everything,original,greet,4 -thank_you,thank you,original,bye,2 -goodbye,", goodbye",lambada,bye,2 -yes,i guess,parrot,book,1 -no,no that is wrong,original,cancel,3 -goodbye,great chat goodbye,lambada,bye,2 -goodbye,lovely conversation,parrot,bye,2 -yes,yeap,original,book,1 -no,negative,original,cancel,3 -no,no i have to say,parrot,cancel,3 -greeting,yo,original,greet,4 -greeting,have you felt?,parrot,greet,4 -yes,certainly,parrot,book,1 -goodbye,great conversation,parrot,bye,2 -date,what day?,parrot,avail,0 -yes,affirmitive,original,book,1 -yes,i think what you said is true,parrot,book,1 -no,it's false,parrot,cancel,3 -thank_you,thankyou,parrot,bye,2 -no,not right,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -goodbye,get there soon,lambada,bye,2 -no,nope,original,cancel,3 -yes,let's do it,parrot,book,1 -yes,great,original,book,1 -how_busy,how long will it be before we are seated in this restaurant?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -yes,uh-huh,original,book,1 -greeting,get up ai,parrot,greet,4 -goodbye,see ya,original,bye,2 -yes,positive,original,book,1 -yes,"yes, that's correct",original,book,1 -no,no,lambada,cancel,3 -no,nope,original,cancel,3 -goodbye,cya later,original,bye,2 -no,that's false,original,cancel,3 -goodbye,farewell,original,bye,2 -goodbye,see you soon,original,bye,2 -meeting_schedule,wanna meet with roger,parrot,avail,0 -yes,"affirmative, go ahead",original,book,1 -yes,i just said it,parrot,book,1 -goodbye,i'll leave,parrot,bye,2 -goodbye,i like our chat,parrot,bye,2 -how_busy,how busy is olive garden around 7pm,lambada,avail,0 -greeting,heyo,original,greet,4 -greeting,hey there,original,greet,4 -thank_you,much obliged,original,bye,2 -how_busy,how busy is ihop currently?,parrot,avail,0 -meeting_schedule,are meetings scheduled between 6 and 9 pm?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -no,so that's no,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -greeting,wassup,original,greet,4 -greeting,hola,original,greet,4 -goodbye,afterward,parrot,bye,2 -greeting,hola!,original,greet,4 -no,the wrong answer,parrot,cancel,3 -goodbye,i'm leaving,parrot,bye,2 -no,i think it's not true,parrot,cancel,3 -no,nada,original,cancel,3 -goodbye,buhbye,original,bye,2 -date,say what day it will be?,parrot,avail,0 -yes,right,parrot,book,1 -thank_you,thanks so much!,original,bye,2 -greeting,welcome,parrot,greet,4 -yes,facts,original,book,1 -no,it is no,original,cancel,3 -how_busy,what's the wait for a table in this restaurant right now?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -no,nothing,parrot,cancel,3 -greeting,"hello, are you doing alright",original,greet,4 -thank_you,appreciated,original,bye,2 -greeting,how're you doing?,parrot,greet,4 -meeting_schedule,what's the meeting i'm planning today?,parrot,avail,0 -yes,approved,original,book,1 -greeting,hey how's life,original,greet,4 -thank_you,i appeciate it,original,bye,2 -no,no?,parrot,cancel,3 -goodbye,it is time to say goodbye,original,bye,2 -date,today?,parrot,avail,0 -greeting,why hello?,original,greet,4 -no,you are wrong,original,cancel,3 -yes,good,parrot,book,1 -greeting,whats new?,parrot,greet,4 -goodbye,later,original,bye,2 -cancel_reservation,cancel the reservation for pizza place at 4 pm,lambada,cancel,3 -thank_you,thank you for that,lambada,bye,2 -yes,yeap,original,book,1 -thank_you,appreciate it,original,bye,2 -yes,"yeah, that's it",lambada,book,1 -yes,good,parrot,book,1 -yes,confirmed,original,book,1 -greeting,how is this going?,parrot,greet,4 -no,that is overwhelmingly wrong,lambada,cancel,3 -goodbye,i'm out,parrot,bye,2 -thank_you,thanks!,original,bye,2 -greeting,are you well?,original,greet,4 -meeting_schedule,what are meetings today?,parrot,avail,0 -calendar,bowling on my calendar?,parrot,avail,0 -yes,"yes, please",parrot,book,1 -greeting,how are things?,parrot,greet,4 -goodbye,i'll leave,parrot,bye,2 -goodbye,until next time!,original,bye,2 -greeting,heller,original,greet,4 -greeting,heyo,original,greet,4 -yes,yes,original,book,1 -goodbye,bye,original,bye,2 -calendar,please tell me what's on my calendar for march 31?,parrot,avail,0 -how_busy,how busy will the tasty browns be at 4pm?,parrot,avail,0 -greeting,what's my feeling today?,parrot,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,nice,parrot,bye,2 -no,we don't want that,parrot,cancel,3 -date,what's tomorrow on the calender,original,avail,0 -goodbye,see ya,lambada,bye,2 -goodbye,good luck,lambada,bye,2 -yes,indeed,original,book,1 -how_busy,how long will i have to wait in phoenix steakhouse,parrot,avail,0 -date,what's the date it'll be?,parrot,avail,0 -thank_you,gracias,original,bye,2 -thank_you,thanks again,original,bye,2 -yes,approved,original,book,1 -yes,please let's do this,parrot,book,1 -greeting,hi,original,greet,4 -greeting,hi how's everything?,parrot,greet,4 -yes,i agree,original,book,1 -greeting,hello,original,greet,4 -yes,that's correct,original,book,1 -no,negatory?,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -calendar,check my calendar for march 17,parrot,avail,0 -goodbye,the pleasure to talk with you,parrot,bye,2 -how_busy,what's the wait time at ihop cheeses?,parrot,avail,0 -thank_you,my thanks,parrot,bye,2 -calendar,do i have appointments for april 3?,parrot,avail,0 -greeting,how are things?,parrot,greet,4 -goodbye,later then,lambada,bye,2 -greeting,what's new,lambada,greet,4 -no,it's overwhelmingly wrong,parrot,cancel,3 -reminder_update,maybe a reminder?,parrot,resched,5 -no,no way,original,cancel,3 -thank_you,i really appreciate it,parrot,bye,2 -date,what's my date tomorrow?,parrot,avail,0 -thank_you,you've been amazing,lambada,bye,2 -no,that's negative,parrot,cancel,3 -goodbye,", goodbye",lambada,bye,2 -no,no please,parrot,cancel,3 -no,no,lambada,cancel,3 -goodbye,tootles,original,bye,2 -greeting,hey what's up,original,greet,4 -calendar,what do you have planned for march 2?,parrot,avail,0 -how_busy,outback steakhouse at 6pm,parrot,avail,0 -greeting,hey what's up?,parrot,greet,4 -cancel_reservation,i have to cancel my reservation for 2 at franklin's grille,parrot,cancel,3 -yes,it seems true,parrot,book,1 -meeting_schedule,does travis have any meetings?,parrot,avail,0 -thank_you,"great, thanks!",original,bye,2 -goodbye,later!,original,bye,2 -thank_you,good to look at,parrot,bye,2 -no,erroneous,parrot,cancel,3 -no,thanks no,parrot,cancel,3 -meeting_schedule,meeting today,parrot,avail,0 -how_busy,how busy is the macaroni grill?,parrot,avail,0 -no,it's actually false,parrot,cancel,3 -greeting,hi ai,original,greet,4 -goodbye,goodbye later,parrot,bye,2 -cancel_reservation,get rid of my reservation at 2 pm at ruth's steakhouse,parrot,cancel,3 -no,i'd rather not,parrot,cancel,3 -no,it's actually false,parrot,cancel,3 -date,a year?,parrot,avail,0 -reminder_update,i need a reminder to wash the dishes,parrot,resched,5 -no,nay,original,cancel,3 -goodbye,have fun?,lambada,bye,2 -goodbye,bye!,original,bye,2 -goodbye,regards,original,bye,2 -yes,roger that,original,book,1 -goodbye,"goodbye, ai assistant",original,bye,2 -goodbye,later then,lambada,bye,2 -goodbye,please talk soon,parrot,bye,2 -greeting,aloha,original,greet,4 -calendar_update,i want to remove the fishing from my calendar for soccer,parrot,resched,5 -yes,i want that,parrot,book,1 -no,it would be wrong,parrot,cancel,3 -how_busy,is the area busy during lunch?,parrot,avail,0 -no,it's absolutely false,parrot,cancel,3 -no,"no, that's wrong",original,cancel,3 -how_busy,how busy is the pizzeria at 6pm,parrot,avail,0 -date,what's the date,original,avail,0 -yes,i just said it,parrot,book,1 -goodbye,great talk with you,lambada,bye,2 -thank_you,thanks very much for your answer,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -no,invalid,original,cancel,3 -calendar,check my calendar,parrot,avail,0 -how_busy,how busy is mcdonald's around 7pm,parrot,avail,0 -greeting,aloha,original,greet,4 -meeting_schedule,are there meetings schedules today between noon and one?,original,avail,0 -thank_you,i appeciate it,parrot,bye,2 -yes,10-Apr,original,book,1 -yes,you're right,original,book,1 -goodbye,goodbye soon,lambada,bye,2 -yes,ya,original,book,1 -no,it's not true,parrot,cancel,3 -yes,that is correct,original,book,1 -yes,that's true,original,book,1 -meeting_schedule,and if i have any meetings with michael,parrot,avail,0 -yes,10-Apr,original,book,1 -yes,uh huh,original,book,1 -yes,huh,parrot,book,1 -no,no,lambada,cancel,3 -greeting,bonjour,original,greet,4 -greeting,salutations!,original,greet,4 -thank_you,thanks for making my life better,lambada,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -reminder_update,get me a reminder to take care of my car,parrot,resched,5 -date,what date will be tomorrow?,lambada,avail,0 -reminder_update,create a reminder to change my oil,original,resched,5 -yes,oh-huh,parrot,book,1 -greeting,whats up?,parrot,greet,4 -reminder_update,please remember something,parrot,resched,5 -date,in three days,parrot,avail,0 -yes,uh-huh,original,book,1 -yes,correct,original,book,1 -no,not right,parrot,cancel,3 -how_busy,how long until dinner?,parrot,avail,0 -goodbye,good seeing you,original,bye,2 -no,that's a negative,original,cancel,3 -thank_you,good job helping me,parrot,bye,2 -goodbye,farewell,original,bye,2 -date,i need to remind you of the date,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -date,today?,parrot,avail,0 -meeting_schedule,list the meetings scheduled today,parrot,avail,0 -no,i mean no,parrot,cancel,3 -yes,TRUE,original,book,1 -yes,agreed,original,book,1 -no,that’s incorrect,original,cancel,3 -greeting,how ya doing,lambada,greet,4 -date,please date,parrot,avail,0 -calendar,what should i do today?,parrot,avail,0 -yes,okay,original,book,1 -how_busy,how long do i have to wait to be seated at the cheesecake factory,lambada,avail,0 -greeting,whats new?,parrot,greet,4 -meeting_schedule,when's my meeting today?,parrot,avail,0 -yes,correct,original,book,1 -cancel_reservation,can you cancel black cherry reservation?,parrot,cancel,3 -yes,yep,original,book,1 -how_busy,how busy the steakhouse will be at 7pm?,parrot,avail,0 -thank_you,appreciate the support,parrot,bye,2 -goodbye,good-bye,parrot,bye,2 -greeting,how's it hanging?,parrot,greet,4 -no,no it's not true,parrot,cancel,3 -how_busy,will there be a lot of throngs at the chili's around 11:30 am,lambada,avail,0 -no,i mean no,parrot,cancel,3 -no,"no, that's not it",original,cancel,3 -date,date tomorrow,parrot,avail,0 -goodbye,good call,parrot,bye,2 -yes,right,parrot,book,1 -schedule_meeting,please get together with matthew,parrot,book,1 -date,date tomorrow?,parrot,avail,0 -no,invalid,original,cancel,3 -goodbye,just relax,parrot,bye,2 -greeting,welcome,parrot,greet,4 -date,please share the date today,parrot,avail,0 -no,that is so false,original,cancel,3 -goodbye,peace,original,bye,2 -how_busy,how much time will the restaurant be open,lambada,avail,0 -thank_you,i thank you,original,bye,2 -no,FALSE,original,cancel,3 -calendar,what's on my calendar for march 7th,lambada,avail,0 -schedule_meeting,schedule a monday meeting with sam at 1 pm,original,book,1 -date,where is tomorrow's date,lambada,avail,0 -goodbye,lovely conversation,parrot,bye,2 -how_busy,give me an idea of how busy the robinson grill is?,parrot,avail,0 -no,it's a false statement,parrot,cancel,3 -yes,sure,original,book,1 -goodbye,i'll leave,parrot,bye,2 -no,FALSE,lambada,cancel,3 -yes,is a real statement,parrot,book,1 -greeting,how goes it,original,greet,4 -greeting,hello how are you,lambada,greet,4 -yes,absolutely,original,book,1 -greeting,hey there!,original,greet,4 -yes,true is my response,original,book,1 -goodbye,bye bye then,original,bye,2 -goodbye,thanks for talking to me,original,bye,2 -no,not true,original,cancel,3 -how_busy,can you tell me how busy i need to be to get a table at this restaurant?,lambada,avail,0 -yes,oh-huh,parrot,book,1 -reminder_update,remind me to write down the food,lambada,resched,5 -how_busy,how busy will the fry be at 6pm?,parrot,avail,0 -no,i disagree,parrot,cancel,3 -greeting,how goes it,original,greet,4 -no,negating,parrot,cancel,3 -goodbye,goodbye ai,parrot,bye,2 -yes,sure thing,original,book,1 -no,that's no way,parrot,cancel,3 -reminder_update,remind me later,original,resched,5 -goodbye,good seeing you,original,bye,2 -goodbye,regards,original,bye,2 -greeting,how ya been,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,thanks!,original,bye,2 -how_busy,how many people are at chili's around 9 o'clock?,parrot,avail,0 -date,what's my date today?,parrot,avail,0 -greeting,aloha,original,greet,4 -goodbye,see ya,original,bye,2 -greeting,salutations!,original,greet,4 -yes,indeed,original,book,1 -no,that's very wrong,parrot,cancel,3 -goodbye,have fun?,lambada,bye,2 -no,no?,parrot,cancel,3 -greeting,salutations!,original,greet,4 -thank_you,you've helped,parrot,bye,2 -goodbye,i'm gone,parrot,bye,2 -goodbye,just relax,parrot,bye,2 -goodbye,great conversation,parrot,bye,2 -no,that's no way,parrot,cancel,3 -yes,yeah that is what i just said,lambada,book,1 -schedule_meeting,is there any room available between 11 and 5 pm?,parrot,book,1 -greeting,salutations!,original,greet,4 -thank_you,appreciate it,original,bye,2 -thank_you,really great!,original,bye,2 -no,not correct,parrot,cancel,3 -thank_you,really great!,original,bye,2 -goodbye,adios,original,bye,2 -goodbye,farewell!,original,bye,2 -yes,"yes, please",original,book,1 -date,what month and day?,parrot,avail,0 -greeting,"howdy, what's new",original,greet,4 -yes,i can tell you,parrot,book,1 -no,certainly false,parrot,cancel,3 -thank_you,thanks for that,original,bye,2 -calendar,what's happening on may 3rd,original,avail,0 -yes,that's right,original,book,1 -no,it's false,parrot,cancel,3 -how_busy,how long is a sitting time at the restaurant,lambada,avail,0 -yes,yup,original,book,1 -yes,confirm,original,book,1 -greeting,heller,original,greet,4 -how_busy,is dinner usually longer at the pizza place?,parrot,avail,0 -yes,yes that's it,original,book,1 -meeting_schedule,are there any meetings from 3 to 5 pm?,lambada,avail,0 -no,i think not,original,cancel,3 -greeting,good day,original,greet,4 -greeting,heyo,original,greet,4 -goodbye,adios,original,bye,2 -yes,sure thing,original,book,1 -how_busy,can you tell me how busy olive garden is at 5pm?,parrot,avail,0 -greeting,good morning,parrot,greet,4 -greeting,hola!,original,greet,4 -goodbye,will leave now,parrot,bye,2 -calendar,show me the calendar?,parrot,avail,0 -no,not a good sign,parrot,cancel,3 -yes,okay,original,book,1 -goodbye,good call,parrot,bye,2 -how_busy,i want to make sure my steakhouse is busy at 7:30,lambada,avail,0 -reminder_update,please create a reminder,parrot,resched,5 -reminder_update,keep me in mind,parrot,resched,5 -schedule_meeting,i need to be sure to get a meeting room on 9am on tuesday,lambada,book,1 -goodbye,goodbyes,parrot,bye,2 -greeting,how's life,original,greet,4 -reminder_update,what about a reminder,parrot,resched,5 -schedule_meeting,what meeting rooms are available for meeting 5pm friday?,original,book,1 -how_busy,what's the most busy time to go to chili's for dinner,parrot,avail,0 -yes,absolutely!,original,book,1 -yes,uh-huh,original,book,1 -goodbye,goodbye!,original,bye,2 -no,negation,parrot,cancel,3 -no,that's a false statement,lambada,cancel,3 -yes,it's true,original,book,1 -goodbye,maybe next time,parrot,bye,2 -no,nope,original,cancel,3 -goodbye,goodbye,original,bye,2 -calendar_update,clear my calendar for tomorrow,original,resched,5 -how_busy,is the canadian restaurant usually busy at 5pm?,parrot,avail,0 -no,but the answer is false,parrot,cancel,3 -date,in five days?,parrot,avail,0 -goodbye,glad we talked,parrot,bye,2 -yes,that checks out,original,book,1 -goodbye,"later, goodbye",lambada,bye,2 -yes,yeap,original,book,1 -reminder_update,add a reminder of cleaning the shower,parrot,resched,5 -goodbye,sayonara,original,bye,2 -meeting_schedule,what time do i meet with robert?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -greeting,"hello, good morning",lambada,greet,4 -how_busy,are french bakers busy at 11 pm?,parrot,avail,0 -thank_you,appreciate it,original,bye,2 -yes,say yes,lambada,book,1 -reminder_update,remind me to write a letter?,parrot,resched,5 -greeting,hey,original,greet,4 -yes,yeap,original,book,1 -how_busy,how busy will chili's be at 6,lambada,avail,0 -goodbye,buhbye,original,bye,2 -thank_you,thanks,original,bye,2 -yes,absolutely!,original,book,1 -date,is today a date?,parrot,avail,0 -no,invalid,original,cancel,3 -goodbye,farewell!,original,bye,2 -yes,certainly,parrot,book,1 -goodbye,bye-bye,original,bye,2 -no,so that's no,parrot,cancel,3 -no,it's overwhelmingly negative,parrot,cancel,3 -calendar_update,delete my golf tournament event from tomrrow,original,resched,5 -goodbye,later!,original,bye,2 -thank_you,you did it,parrot,bye,2 -how_busy,how long is a table in a restaurant,parrot,avail,0 -yes,agreed,original,book,1 -no,"no, that is wrong",original,cancel,3 -yes,you are yes,lambada,book,1 -thank_you,i owe you one,original,bye,2 -reminder_update,remind me to pay my bill,parrot,resched,5 -thank_you,i'm happy you've helped me,parrot,bye,2 -no,naw,parrot,cancel,3 -schedule_meeting,can you book a meeting?,lambada,book,1 -yes,it's definitely positive,parrot,book,1 -yes,accept,parrot,book,1 -greeting,hola,original,greet,4 -yes,positive,original,book,1 -cancel_reservation,my reservation is no longer needed,original,cancel,3 -goodbye,adios!,original,bye,2 -yes,okay,original,book,1 -no,no no thanks,parrot,cancel,3 -goodbye,farewell!,original,bye,2 -date,today?,parrot,avail,0 -date,need to know the date today,parrot,avail,0 -greeting,how's my day going,lambada,greet,4 -thank_you,gracias,original,bye,2 -date,date tomorrow,parrot,avail,0 -goodbye,buhbye,original,bye,2 -thank_you,thanks again,original,bye,2 -yes,yeah yeah,lambada,book,1 -calendar,can you tell me how many days i have set on my calendar for tomorrow?,lambada,avail,0 -greeting,hello bs,parrot,greet,4 -no,no way,original,cancel,3 -yes,i can tell you that is true,lambada,book,1 -goodbye,later,original,bye,2 -date,let me know what's the date tomorrow,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -thank_you,thankyou,parrot,bye,2 -greeting,wassup,original,greet,4 -yes,huh,parrot,book,1 -meeting_schedule,what time will i meet jane?,parrot,avail,0 -schedule_meeting,can you please add a meeting room for 3:00 on wednesday?,lambada,book,1 -thank_you,thank you for my prompt response,parrot,bye,2 -goodbye,bye now,original,bye,2 -goodbye,i'm leaving,parrot,bye,2 -yes,oh-huh,parrot,book,1 -yes,yeah,original,book,1 -goodbye,goodbye,original,bye,2 -thank_you,thanks for the update,lambada,bye,2 -no,no!,original,cancel,3 -greeting,what's happened?,parrot,greet,4 -goodbye,thank you for the discussion,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -no,that's actually false,parrot,cancel,3 -how_busy,can i tell you how busy this restaurant is at 6 o'clock?,parrot,avail,0 -yes,agreed,original,book,1 -thank_you,many thanks,original,bye,2 -thank_you,appreciated,original,bye,2 -goodbye,the conversation was good,parrot,bye,2 -thank_you,thanks,original,bye,2 -greeting,what's up,original,greet,4 -calendar,please read my calendar for march 7,parrot,avail,0 -goodbye,great talk,lambada,bye,2 -greeting,welcome,parrot,greet,4 -no,naw,parrot,cancel,3 -how_busy,how busy will oompa looma be at lunch?,parrot,avail,0 -thank_you,thanks,original,bye,2 -yes,positive,parrot,book,1 -greeting,hi ai,original,greet,4 -how_busy,how busy are applebees at noon,parrot,avail,0 -no,nada,original,cancel,3 -yes,huh huh,parrot,book,1 -greeting,hey hey!,original,greet,4 -goodbye,regards,original,bye,2 -thank_you,i'm really grateful,parrot,bye,2 -no,that’s actually wrong,original,cancel,3 -goodbye,i'm done talking to you,parrot,bye,2 -how_busy,is the restaurant crowded at the dinner?,parrot,avail,0 -thank_you,okay thanks,original,bye,2 -yes,certainly true,parrot,book,1 -meeting_schedule,how long is the meeting with diana,lambada,avail,0 -goodbye,im leaving goodbye,parrot,bye,2 -no,ill pass,original,cancel,3 -yes,approved,original,book,1 -goodbye,later!,original,bye,2 -greeting,ahoy,lambada,greet,4 -no,naw,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -no,naw,original,cancel,3 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -goodbye,catch you later,original,bye,2 -goodbye,greetings,parrot,bye,2 -no,negation,parrot,cancel,3 -calendar,what's the tuesday calendar?,parrot,avail,0 -goodbye,my way,parrot,bye,2 -goodbye,fairwell,original,bye,2 -greeting,how you feel?,parrot,greet,4 -how_busy,how busy will chili be at 730,parrot,avail,0 -date,what's the first day of a month in 5 days?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -goodbye,good conversation,parrot,bye,2 -no,negative,original,cancel,3 -no,it's not true,parrot,cancel,3 -schedule_meeting,i want a meeting,parrot,book,1 -greeting,how's everything,original,greet,4 -yes,i think it's right,parrot,book,1 -no,that'd be a no,original,cancel,3 -greeting,what's my day like?,parrot,greet,4 -yes,okay,original,book,1 -date,what year is tomorrow?,parrot,avail,0 -goodbye,i'm done chatting with you,lambada,bye,2 -greeting,ahoy,lambada,greet,4 -how_busy,how busy is that place at night,lambada,avail,0 -no,it's absolutely false,parrot,cancel,3 -thank_you,you've given me that,parrot,bye,2 -thank_you,i appeciate it,parrot,bye,2 -greeting,whats up,original,greet,4 -goodbye,regards,original,bye,2 -date,what's tomorrow's date,original,avail,0 -how_busy,why is the olive garden busy at five?,lambada,avail,0 -no,false sure,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -greeting,what's happened?,parrot,greet,4 -thank_you,youre a doll,original,bye,2 -calendar_update,add my next doctor to my calendar,parrot,resched,5 -yes,"yes, that is right",original,book,1 -no,FALSE,original,cancel,3 -goodbye,lovely conversation,parrot,bye,2 -greeting,you're all right?,parrot,greet,4 -greeting,how you feel?,parrot,greet,4 -greeting,what's up with you,original,greet,4 -goodbye,tootles?,parrot,bye,2 -no,i'd say it's a lie,parrot,cancel,3 -no,please disagree,lambada,cancel,3 -schedule_meeting,please schedule a meeting for today?,parrot,book,1 -greeting,hey,original,greet,4 -greeting,hello there!,original,greet,4 -how_busy,how busy will the rest of the restaurant be at noon,lambada,avail,0 -greeting,hey bs,lambada,greet,4 -how_busy,what time does it take to wait for a table in june 7th?,parrot,avail,0 -no,invalid,original,cancel,3 -how_busy,list the wait times for the red robins restaurant?,parrot,avail,0 -yes,positive,original,book,1 -goodbye,tootles?,parrot,bye,2 -yes,yes it's true,lambada,book,1 -goodbye,i'm outta here!,original,bye,2 -goodbye,bye-bye,original,bye,2 -thank_you,many thanks,original,bye,2 -goodbye,sayonara,original,bye,2 -reminder_update,create a reminder,original,resched,5 -reminder_update,remind them to feed the dogs,parrot,resched,5 -yes,i'm ready to say yes,parrot,book,1 -greeting,wake up ai,parrot,greet,4 -thank_you,i am grateful for the help,original,bye,2 -greeting,hello what is happening,lambada,greet,4 -greeting,how are things?,parrot,greet,4 -goodbye,goodbyes soon,parrot,bye,2 -thank_you,i appeciate it,parrot,bye,2 -no,and i'm sorry,parrot,cancel,3 -no,this is a lie,parrot,cancel,3 -no,certainly false,parrot,cancel,3 -reminder_update,want you to remind me something,parrot,resched,5 -no,"no, that is inaccurate",original,cancel,3 -thank_you,thanks for helping out,original,bye,2 -thank_you,i'm so very grateful,parrot,bye,2 -meeting_schedule,when will i meet with infrastructure?,parrot,avail,0 -date,what is today?,original,avail,0 -how_busy,wait at pizza hut long?,parrot,avail,0 -no,i believe it's not correct,parrot,cancel,3 -thank_you,many thanks,original,bye,2 -how_busy,how busy is mcdonalds?,parrot,avail,0 -reminder_update,add a reminder,lambada,resched,5 -cancel_reservation,i want to cancel my reservation for chris at smith and wollensky,parrot,cancel,3 -how_busy,how long is the wait in the restaurant today,lambada,avail,0 -calendar_update,remove the fencing from my calendar for may 7th,parrot,resched,5 -greeting,salutations,parrot,greet,4 -yes,i'll say yes,parrot,book,1 -greeting,need to know how you're doing?,parrot,greet,4 -no,nope,original,cancel,3 -yes,ok,original,book,1 -schedule_meeting,what is the process to set up a meeting?,original,book,1 -greeting,nice day,lambada,greet,4 -schedule_meeting,meeting rooms are open between 1 and 3 pm,parrot,book,1 -yes,affirmitive,original,book,1 -yes,absolutely correct,original,book,1 -meeting_schedule,do you have meetings planned for today?,parrot,avail,0 -thank_you,thanks,original,bye,2 -date,in 9 days?,parrot,avail,0 -no,that's so false,parrot,cancel,3 -goodbye,good bye then,original,bye,2 -no,negating,parrot,cancel,3 -reminder_update,please do not forget,parrot,resched,5 -calendar,what's on my calendar for march 28th,parrot,avail,0 -date,in five days?,parrot,avail,0 -no,that's not right?,parrot,cancel,3 -goodbye,"later, goodbye",lambada,bye,2 -goodbye,"bye-bye, my friend",lambada,bye,2 -goodbye,the talk was nice,lambada,bye,2 -yes,absolutely,original,book,1 -no,not that,original,cancel,3 -date,today is what date?,parrot,avail,0 -greeting,why hello?,original,greet,4 -date,which day is next?,parrot,avail,0 -cancel_reservation,i have to cancel my reservation in phoenix,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -goodbye,sayonara,original,bye,2 -goodbye,tootles,original,bye,2 -goodbye,peace out!,original,bye,2 -meeting_schedule,do you have any meetings with dan today?,parrot,avail,0 -goodbye,send a goodbye,lambada,bye,2 -no,that's incorrect!,original,cancel,3 -no,that's a negative,original,cancel,3 -goodbye,nice conversation today,parrot,bye,2 -goodbye,"later, goodbye",lambada,bye,2 -goodbye,wait for me later,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -goodbye,i need to go to sleep,parrot,bye,2 -yes,ya,original,book,1 -yes,yup,original,book,1 -yes,absolutely correct,original,book,1 -goodbye,great chat goodbye,lambada,bye,2 -yes,TRUE,lambada,book,1 -yes,10-Apr,original,book,1 -greeting,yo,original,greet,4 -how_busy,how long will it take me to sit at ihop,parrot,avail,0 -calendar,what's on the 2nd march?,parrot,avail,0 -yes,absolutely,original,book,1 -no,invalid,original,cancel,3 -yes,certainly,parrot,book,1 -no,naw,parrot,cancel,3 -yes,certainly,parrot,book,1 -yes,not false,parrot,book,1 -thank_you,thank ya!,original,bye,2 -no,not necessarily true,parrot,cancel,3 -how_busy,how busy will red robin be at 9,lambada,avail,0 -yes,huh,parrot,book,1 -yes,good yes,lambada,book,1 -thank_you,"thanks, you've helped me",original,bye,2 -how_busy,tell me the time it takes to sit in chili's,parrot,avail,0 -goodbye,goodbye thank you,parrot,bye,2 -greeting,how is the car doing?,parrot,greet,4 -goodbye,tootles,original,bye,2 -reminder_update,don't forget to put the meat on the freezer,parrot,resched,5 -greeting,salutations,parrot,greet,4 -yes,perfect,parrot,book,1 -yes,right,parrot,book,1 -goodbye,tootles?,parrot,bye,2 -how_busy,how busy the cheesecake factory is at 6pm?,parrot,avail,0 -yes,certainly,parrot,book,1 -reminder_update,remind me to call my mother on saturday morning,parrot,resched,5 -goodbye,adios ai,original,bye,2 -yes,yeah yeah,lambada,book,1 -goodbye,farewell,original,bye,2 -yes,"yep, that's true",original,book,1 -yes,affirmitive,original,book,1 -greeting,what's new,lambada,greet,4 -greeting,hola!,original,greet,4 -greeting,how's life going?,parrot,greet,4 -yes,confirm,original,book,1 -calendar,are there any events between march 5 and march 8?,parrot,avail,0 -yes,confirmed,original,book,1 -goodbye,later!,original,bye,2 -calendar_update,can you delete the date of the school play on my calendar?,parrot,resched,5 -greeting,you good?,parrot,greet,4 -greeting,how's the world?,parrot,greet,4 -calendar,please check my calendar for annual physical?,parrot,avail,0 -greeting,how's otc?,parrot,greet,4 -thank_you,okay thank you,parrot,bye,2 -greeting,what's up with you,original,greet,4 -yes,positive,original,book,1 -yes,it's positive,parrot,book,1 -goodbye,cya later,original,bye,2 -no,erroneous,parrot,cancel,3 -no,nothing,parrot,cancel,3 -greeting,hi,original,greet,4 -no,that's erroneous,parrot,cancel,3 -goodbye,later,original,bye,2 -greeting,hola!,original,greet,4 -yes,obviously,parrot,book,1 -yes,i know that's true,parrot,book,1 -goodbye,we can talk later,parrot,bye,2 -greeting,hello there,original,greet,4 -yes,indeed,original,book,1 -greeting,yo,original,greet,4 -yes,yes,original,book,1 -greeting,"hello, ai",original,greet,4 -greeting,hey what's up?,parrot,greet,4 -date,what is my tomorrow's date?,lambada,avail,0 -no,that's wrong,original,cancel,3 -goodbye,tootles?,parrot,bye,2 -date,today?,parrot,avail,0 -greeting,heller,original,greet,4 -greeting,how's life?,parrot,greet,4 -cancel_reservation,cancel my reservation for franklin at red robin,lambada,cancel,3 -no,it would be awful,parrot,cancel,3 -goodbye,adios!,original,bye,2 -yes,it's indeed true,original,book,1 -goodbye,tootles,original,bye,2 -no,i'll say no,parrot,cancel,3 -date,what's it today?,parrot,avail,0 -schedule_meeting,can you schedule a meeting with katie at 11 o'clock?,parrot,book,1 -goodbye,great talking to you,parrot,bye,2 -yes,yeah yeah,lambada,book,1 -schedule_meeting,is there a meeting room available between noon and 1 pm?,parrot,book,1 -goodbye,and then goodbye,parrot,bye,2 -reminder_update,create a new reminder to study for my final exams,original,resched,5 -no,no good,original,cancel,3 -greeting,what's my feeling?,parrot,greet,4 -goodbye,sign off,parrot,bye,2 -date,current date,original,avail,0 -goodbye,i'll talk to you later,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -goodbye,and i had a wonderful time talking to you,parrot,bye,2 -goodbye,bye bye!,original,bye,2 -yes,absolutely!,original,book,1 -no,that's not it,parrot,cancel,3 -greeting,hey hey!,original,greet,4 -date,show the dates after getting married?,parrot,avail,0 -yes,it is true yes,parrot,book,1 -yes,yes,original,book,1 -meeting_schedule,meetings today,original,avail,0 -no,i do not agree,lambada,cancel,3 -greeting,wassup,original,greet,4 -greeting,hey there!,original,greet,4 -goodbye,great talk,lambada,bye,2 -thank_you,you've been great,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -no,it's negative,parrot,cancel,3 -yes,i'm going to tell you tes,parrot,book,1 -thank_you,appreciate it,original,bye,2 -no,that's incorrect!,original,cancel,3 -thank_you,thanks for the information,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -yes,tell me what is true of the request?,lambada,book,1 -no,no,lambada,cancel,3 -greeting,what's going on with you?,parrot,greet,4 -how_busy,how long will it take to get seated at the macaroni grill,parrot,avail,0 -goodbye,it's over,parrot,bye,2 -no,nay,original,cancel,3 -cancel_reservation,give me a cancellation of my dave reservation at red robin,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -calendar,what i have for friday the 13th of next year,parrot,avail,0 -date,what is the day?,original,avail,0 -greeting,you good?,parrot,greet,4 -no,is my false statement?,parrot,cancel,3 -thank_you,thanks for that response,original,bye,2 -no,not true,original,cancel,3 -how_busy,how busy will blue mountain be around 5 pm,lambada,avail,0 -goodbye,"great talk, thanks",original,bye,2 -no,i mean no,parrot,cancel,3 -thank_you,you did it,parrot,bye,2 -how_busy,how busy is iman's at 8,lambada,avail,0 -no,naw,original,cancel,3 -goodbye,i’m leaving-goodbye!,original,bye,2 -greeting,hey fellows,parrot,greet,4 -date,today?,parrot,avail,0 -thank_you,okay thank you,parrot,bye,2 -yes,all right,parrot,book,1 -goodbye,good talk,parrot,bye,2 -no,erroneous,parrot,cancel,3 -goodbye,later gator!,original,bye,2 -schedule_meeting,can you give me a meeting room for 9 am,parrot,book,1 -no,no?,parrot,cancel,3 -greeting,have you been good?,original,greet,4 -how_busy,how long should i wait before i eat macaroni grill?,parrot,avail,0 -greeting,hola,original,greet,4 -thank_you,thanks,original,bye,2 -thank_you,you're welcome,parrot,bye,2 -yes,yup,original,book,1 -calendar_update,erase jeff's meeting from my schedule,parrot,resched,5 -no,that's incorrect!,original,cancel,3 -thank_you,thanks for making me laugh,parrot,bye,2 -thank_you,you've been great,parrot,bye,2 -yes,is true,parrot,book,1 -greeting,how's my day?,parrot,greet,4 -how_busy,how long would it be at chipmunk?,parrot,avail,0 -goodbye,farewell!,original,bye,2 -thank_you,nice,parrot,bye,2 -no,no that's not true,parrot,cancel,3 -greeting,whats new?,parrot,greet,4 -goodbye,i've got to go,lambada,bye,2 -goodbye,good luck later,parrot,bye,2 -schedule_meeting,i want to meet you in the blue room at 8 am,parrot,book,1 -goodbye,go easy,parrot,bye,2 -yes,definitely,original,book,1 -how_busy,tell me the time to wait at the lobster?,parrot,avail,0 -date,what will it be in six days?,parrot,avail,0 -goodbye,bye!,original,bye,2 -greeting,"hey, how's it going",original,greet,4 -reminder_update,i need to be reminded,original,resched,5 -no,ill pass,original,cancel,3 -yes,TRUE,lambada,book,1 -no,i'm afraid not,parrot,cancel,3 -cancel_reservation,what's wrong with my reservation at the red robin,lambada,cancel,3 -greeting,whats up?,parrot,greet,4 -thank_you,"thanks, that's helpful",original,bye,2 -yes,i can tell you,parrot,book,1 -greeting,how's everything going with you?,parrot,greet,4 -yes,certainly,parrot,book,1 -yes,approved,original,book,1 -no,hell nah,original,cancel,3 -how_busy,can you tell me how busy ihop is at 6?,lambada,avail,0 -schedule_meeting,tell me the availability of meeting rooms between two and three?,parrot,book,1 -yes,confirmed,original,book,1 -thank_you,nice,parrot,bye,2 -yes,accepted,original,book,1 -meeting_schedule,are any meetings booked today?,parrot,avail,0 -how_busy,how long will it take to sit at the sink?,parrot,avail,0 -greeting,"hello, ai",original,greet,4 -no,it's a no,original,cancel,3 -yes,a fact,parrot,book,1 -greeting,"hello, what's up",original,greet,4 -no,negatory,original,cancel,3 -yes,so it's checked,parrot,book,1 -greeting,how's my life today?,parrot,greet,4 -yes,correct,original,book,1 -no,negatory?,parrot,cancel,3 -greeting,why hello?,original,greet,4 -yes,okay,original,book,1 -goodbye,bye,original,bye,2 -greeting,how are you doing today,lambada,greet,4 -goodbye,sayonara ,parrot,bye,2 -goodbye,peace,original,bye,2 -greeting,hello how is it going?,parrot,greet,4 -no,so that's no,parrot,cancel,3 -yes,yes,original,book,1 -goodbye,later!,original,bye,2 -yes,TRUE,original,book,1 -yes,that's correct,original,book,1 -goodbye,later,original,bye,2 -meeting_schedule,list meetings on calendar for today,original,avail,0 -yes,and you're right,parrot,book,1 -yes,that appears true,original,book,1 -calendar,did i have my wife's anniversary?,parrot,avail,0 -goodbye,good to see you later,parrot,bye,2 -yes,ok,original,book,1 -how_busy,is a restaurant crowded at night?,parrot,avail,0 -goodbye,bye,original,bye,2 -meeting_schedule,is a meeting with ruth on my calendar today?,parrot,avail,0 -yes,huh,parrot,book,1 -cancel_reservation,call off the dinner reservation,original,cancel,3 -calendar,have any events on my calendar for thursday?,parrot,avail,0 -yes,"yes, ai, that is correct",original,book,1 -thank_you,appreciated,original,bye,2 -goodbye,cya later,original,bye,2 -goodbye,good luck,lambada,bye,2 -reminder_update,remind me to write that letter,original,resched,5 -thank_you,"great, thanks!",original,bye,2 -greeting,hey there,original,greet,4 -date,tell me what's the date?,parrot,avail,0 -reminder_update,remember the meeting tomorrow,parrot,resched,5 -thank_you,i appeciate it,parrot,bye,2 -how_busy,what time should we have in this place?,parrot,avail,0 -thank_you,okay thanks,original,bye,2 -no,the information is inaccurate,parrot,cancel,3 -meeting_schedule,can you tell me my scheduled meetings for today only?,parrot,avail,0 -greeting,hey fellows,parrot,greet,4 -reminder_update,i want you to remind me to do something,parrot,resched,5 -goodbye,adios!,original,bye,2 -goodbye,good call,parrot,bye,2 -thank_you,gracias,original,bye,2 -yes,it'd be great,parrot,book,1 -reminder_update,remind me something,parrot,resched,5 -thank_you,i appreciate you making my life better,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -no,"nope, that's false",original,cancel,3 -date,what's the year?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -yes,correct,original,book,1 -yes,oh-huh,parrot,book,1 -yes,TRUE,original,book,1 -calendar,what's on my calendar for tuesday?,parrot,avail,0 -no,this statement is completely false,parrot,cancel,3 -thank_you,that's all i need,parrot,bye,2 -yes,i vote yes,original,book,1 -goodbye,lovely conversation,parrot,bye,2 -greeting,hey fellows,parrot,greet,4 -yes,yes,original,book,1 -no,no is the answer,original,cancel,3 -thank_you,"oh, thanks",original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,what's happened?,parrot,greet,4 -greeting,what's new,lambada,greet,4 -how_busy,if i want to know how busy olive garden is at 6pm,parrot,avail,0 -thank_you,so grateful,parrot,bye,2 -greeting,"hello, how's my day",original,greet,4 -greeting,how do you feel,original,greet,4 -calendar_update,i wanna remove fishing from my calendar for soccer,original,resched,5 -no,nope,original,cancel,3 -thank_you,thank you for all you've done,parrot,bye,2 -how_busy,how busy is michel's at 5:30,lambada,avail,0 -thank_you,many thanks,original,bye,2 -reminder_update,please create a reminder,parrot,resched,5 -greeting,how's my family doing?,parrot,greet,4 -greeting,what's new,lambada,greet,4 -no,that's so wrong,parrot,cancel,3 -greeting,hey,original,greet,4 -goodbye,peace out!,original,bye,2 -no,absolutely not,original,cancel,3 -yes,oh-huh,parrot,book,1 -greeting,hello there,original,greet,4 -goodbye,thank you for this conversation,parrot,bye,2 -date,what today?,parrot,avail,0 -goodbye,it's over,parrot,bye,2 -yes,indeed,original,book,1 -thank_you,you've tried,parrot,bye,2 -yes,correct,original,book,1 -goodbye,good bye,original,bye,2 -greeting,you good?,parrot,greet,4 -yes,oh yes,original,book,1 -calendar_update,i need a birthday gift for sue taken from my calendar it's monday or tuesday last week,parrot,resched,5 -how_busy,list the wait times for tiburon beer at 5 pm?,parrot,avail,0 -calendar_update,so take out my dinner plans for tomorrow from my calendar,parrot,resched,5 -date,please give me the full day and the date for today?,parrot,avail,0 -yes,10-Apr,original,book,1 -no,definitely not,original,cancel,3 -no,it's not always true,parrot,cancel,3 -greeting,ahoy,lambada,greet,4 -no,it would be wrong,parrot,cancel,3 -date,what date?,parrot,avail,0 -greeting,how's life?,parrot,greet,4 -how_busy,please tell me how many people are going to be at this restaurant?,parrot,avail,0 -goodbye,tootles,original,bye,2 -greeting,hello bs,parrot,greet,4 -no,that's absolutely false,parrot,cancel,3 -yes,positive,parrot,book,1 -goodbye,buhbye now,lambada,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,negatory,original,cancel,3 -yes,"yes, that's accurate",original,book,1 -no,the negator,parrot,cancel,3 -greeting,salutation,parrot,greet,4 -goodbye,see ya,lambada,bye,2 -no,negatory?,parrot,cancel,3 -greeting,hello there!,original,greet,4 -thank_you,thanks for that,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,that is not correct,original,cancel,3 -yes,yay,lambada,book,1 -yes,accept,parrot,book,1 -greeting,bonjour,original,greet,4 -greeting,salutations,parrot,greet,4 -goodbye,take care then,parrot,bye,2 -goodbye,peace,original,bye,2 -yes,"yep, that's right",original,book,1 -yes,you got it,parrot,book,1 -goodbye,peace,original,bye,2 -no,naw,original,cancel,3 -calendar,can you tell me what my may 1st will be like according to my calendar?,original,avail,0 -greeting,salutations!,original,greet,4 -how_busy,is the imago busy at 4pm?,lambada,avail,0 -how_busy,is this restaurant busy at 6pm?,parrot,avail,0 -no,i don't think that's true,lambada,cancel,3 -thank_you,merci beaucoup,original,bye,2 -goodbye,you're done,parrot,bye,2 -greeting,what's up?,parrot,greet,4 -yes,yes,original,book,1 -greeting,salutation,parrot,greet,4 -goodbye,the hell i'm out,parrot,bye,2 -goodbye,was fun seeing you,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -thank_you,the best,parrot,bye,2 -reminder_update,maybe a reminder?,parrot,resched,5 -no,the wrong answer,parrot,cancel,3 -yes,affirmitive,original,book,1 -no,it's negative,parrot,cancel,3 -thank_you,appreciate the help,original,bye,2 -yes,approved,original,book,1 -goodbye,thanks goodbye,parrot,bye,2 -thank_you,you've been amazing,lambada,bye,2 -goodbye,i'll go,parrot,bye,2 -greeting,how do you feel,original,greet,4 -calendar_update,remove my doctor's appointment from my calendar,lambada,resched,5 -thank_you,my gratitude,parrot,bye,2 -yes,sure,original,book,1 -thank_you,"good job, thanks",lambada,bye,2 -date,tell me the name of the month in 8 days?,parrot,avail,0 -yes,i'm sure that's true,parrot,book,1 -no,i believe it's wrong,parrot,cancel,3 -meeting_schedule,wanna meet roger?,parrot,avail,0 -meeting_schedule,when is my meeting with christian?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -goodbye,bye bye,lambada,bye,2 -no,the information is wrong,original,cancel,3 -thank_you,nice,parrot,bye,2 -cancel_reservation,i won't go to dinner tonight,parrot,cancel,3 -no,most definitely false,parrot,cancel,3 -yes,ya,original,book,1 -date,what year is it tomorrow?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -goodbye,goodbye no problem,parrot,bye,2 -goodbye,tata for now,original,bye,2 -no,not right now,original,cancel,3 -how_busy,is ihop busy around 815am?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -schedule_meeting,can you help me set up a meeting with you?,parrot,book,1 -no,say negative,parrot,cancel,3 -goodbye,later gator!,original,bye,2 -no,negative,original,cancel,3 -greeting,bonjour,original,greet,4 -yes,i'll say yes,parrot,book,1 -how_busy,tell me the time to wait in the caprese steak house?,parrot,avail,0 -how_busy,how long will the wait at the chinese restaurant be?,parrot,avail,0 -greeting,tell me how you were?,parrot,greet,4 -greeting,hello are you doing okay?,parrot,greet,4 -yes,ok,original,book,1 -goodbye,i must catch up,parrot,bye,2 -calendar_update,remove my birthday party from my schedule,parrot,resched,5 -goodbye,goodbyes,parrot,bye,2 -how_busy,can i expect the wait to be long at the chocolate fountain?,parrot,avail,0 -yes,yeah that's right,lambada,book,1 -greeting,hi how's it going,lambada,greet,4 -no,that's bad,parrot,cancel,3 -goodbye,on the road,parrot,bye,2 -goodbye,wonderful conversation,lambada,bye,2 -calendar,tell me everything on my calendar for may 1st?,parrot,avail,0 -goodbye,regards,original,bye,2 -yes,great,original,book,1 -no,that's negative,parrot,cancel,3 -greeting,hi,original,greet,4 -goodbye,adios ai,original,bye,2 -thank_you,i want to thank you for that,parrot,bye,2 -thank_you,gracias,original,bye,2 -no,that's bad,parrot,cancel,3 -greeting,heyo,original,greet,4 -cancel_reservation,please cancel my reservation at oyster bar,lambada,cancel,3 -goodbye,later!,original,bye,2 -calendar,do you have any appointments on my calendar for may 11?,parrot,avail,0 -calendar,what's on my calendar for april 3?,parrot,avail,0 -no,that's a no,lambada,cancel,3 -schedule_meeting,i need to reserve a meeting room for 1:00 on friday,lambada,book,1 -yes,ok,original,book,1 -yes,it's positive,parrot,book,1 -greeting,how's my day going?,parrot,greet,4 -no,i believe my claim is wrong,lambada,cancel,3 -yes,TRUE,lambada,book,1 -no,not good,parrot,cancel,3 -no,i disagree with this,parrot,cancel,3 -no,that's untrue,parrot,cancel,3 -greeting,greetings to you,original,greet,4 -goodbye,nice conversation today,parrot,bye,2 -greeting,hey,original,greet,4 -greeting,hello siri,original,greet,4 -how_busy,is macy's busy?,parrot,avail,0 -greeting,"why, hello bandit",original,greet,4 -greeting,aloha,original,greet,4 -calendar_update,add a doctor appointment to the friday calendar,parrot,resched,5 -goodbye,ai goodbye,original,bye,2 -no,no!,original,cancel,3 -thank_you,i am grateful for my help,lambada,bye,2 -goodbye,goodbye then,parrot,bye,2 -no,i don't answer that question,parrot,cancel,3 -yes,great,original,book,1 -goodbye,peace out!,original,bye,2 -goodbye,bye bye,lambada,bye,2 -calendar,what's my march 30 calendar?,parrot,avail,0 -how_busy,how busy will the restaurant be at 5 pm,lambada,avail,0 -calendar_update,a date on my calendar for next friday,parrot,resched,5 -yes,yeap,original,book,1 -yes,so it's checked,parrot,book,1 -reminder_update,let me know,parrot,resched,5 -no,negation,parrot,cancel,3 -greeting,what's happening,original,greet,4 -no,i'd say no,original,cancel,3 -thank_you,nice,parrot,bye,2 -yes,i want it to be true,parrot,book,1 -yes,affirmitive,original,book,1 -reminder_update,remind me to take medicine,parrot,resched,5 -date,today what date?,parrot,avail,0 -thank_you,thanks for giving me assistance,original,bye,2 -greeting,you good?,parrot,greet,4 -goodbye,tata for now,original,bye,2 -no,that is not right,original,cancel,3 -no,negatory,original,cancel,3 -thank_you,thanks!,original,bye,2 -how_busy,tell me how busy mr joes is at 8 pm?,parrot,avail,0 -yes,that appears true,original,book,1 -how_busy,how busy is the red lobster?,parrot,avail,0 -yes,i'm going to tell you tes,parrot,book,1 -goodbye,cya later,original,bye,2 -calendar,what happens between 5 and 6 may?,parrot,avail,0 -no,nay,original,cancel,3 -reminder_update,remember to write a letter,parrot,resched,5 -no,nay,original,cancel,3 -schedule_meeting,please schedule a meeting,parrot,book,1 -no,not really,original,cancel,3 -calendar_update,remove the 16th birthday party from my calendar,parrot,resched,5 -how_busy,what's the wait time at the peppermill?,parrot,avail,0 -yes,absolutely!,original,book,1 -goodbye,adios,original,bye,2 -greeting,how's life,original,greet,4 -no,but it's totally wrong,parrot,cancel,3 -greeting,i need to know how i do it,parrot,greet,4 -goodbye,peace out,original,bye,2 -greeting,hey,original,greet,4 -thank_you,thanks for my time,parrot,bye,2 -reminder_update,remind me to bring a rain coat tomorrow,parrot,resched,5 -greeting,hi how are you?,parrot,greet,4 -how_busy,how many people will be at the restaurant at 5pm,lambada,avail,0 -reminder_update,remind me later,original,resched,5 -no,negatory,original,cancel,3 -date,what's the date tomorrow please,parrot,avail,0 -yes,10-Apr,original,book,1 -no,FALSE,original,cancel,3 -yes,TRUE,original,book,1 -yes,correct,original,book,1 -yes,"correct, that's true",original,book,1 -goodbye,goodbye bye,parrot,bye,2 -yes,10-Apr,original,book,1 -no,that seems wrong,lambada,cancel,3 -meeting_schedule,do i have meetings between 11 and 4 pm?,parrot,avail,0 -no,i don't think it's the right thing,parrot,cancel,3 -how_busy,how long will i have to wait before i go to olive garden,lambada,avail,0 -schedule_meeting,i'd like to set up a meeting,lambada,book,1 -greeting,hello there,original,greet,4 -no,certainly false,parrot,cancel,3 -no,it's actually false,parrot,cancel,3 -greeting,what's happening?,parrot,greet,4 -thank_you,i'm grateful,original,bye,2 -goodbye,adios!,original,bye,2 -goodbye,bye my friend,parrot,bye,2 -no,no no no,parrot,cancel,3 -thank_you,for the help i am grateful,parrot,bye,2 -date,is tomorrow's date?,parrot,avail,0 -how_busy,tell me how busy red robin is at 5 p,parrot,avail,0 -yes,let's do that,parrot,book,1 -greeting,wassup,original,greet,4 -reminder_update,keep me in mind,parrot,resched,5 -goodbye,"later, goodbye",lambada,bye,2 -no,no way,original,cancel,3 -thank_you,i really appreciate you,parrot,bye,2 -greeting,how is everything going?,parrot,greet,4 -yes,yup,original,book,1 -goodbye,i'm out of this,parrot,bye,2 -yes,definitely,original,book,1 -greeting,what's happening?,parrot,greet,4 -greeting,salutations!,original,greet,4 -calendar_update,i want you to add staff meeting to my calendar for march 1 at 10:00 am,original,resched,5 -yes,uh-huh,original,book,1 -yes,definitely yes,parrot,book,1 -how_busy,how busy is this raspberry pie at 545?,parrot,avail,0 -yes,accept,parrot,book,1 -calendar,what do you have on my calendar for march 2nd?,parrot,avail,0 -schedule_meeting,what should i do to schedule a meeting?,parrot,book,1 -yes,facts,original,book,1 -goodbye,great talk,lambada,bye,2 -yes,"yes, please",parrot,book,1 -cancel_reservation,please take care of the reservation in the restaurant,parrot,cancel,3 -thank_you,really great!,original,bye,2 -thank_you,that's what i want,parrot,bye,2 -greeting,you're all right?,parrot,greet,4 -date,list the names of 8 days of the month?,parrot,avail,0 -how_busy,how crowded is choux restaurant at 2 pm,lambada,avail,0 -no,nay,original,cancel,3 -greeting,yo,original,greet,4 -greeting,give me the details,parrot,greet,4 -date,do you know what the date will be in 3 months?,parrot,avail,0 -yes,accepted,original,book,1 -goodbye,i'm gone,parrot,bye,2 -no,that's wrong,original,cancel,3 -greeting,salutation,parrot,greet,4 -no,that's absolutely wrong,parrot,cancel,3 -yes,certainly true,parrot,book,1 -goodbye,the talk was nice,lambada,bye,2 -how_busy,how long does it take to get chili's pizza?,parrot,avail,0 -yes,that'd be great,parrot,book,1 -calendar_update,can i make an appointment for my anniversary on may 4th,parrot,resched,5 -goodbye,goodbye soon,lambada,bye,2 -goodbye,buhbye,original,bye,2 -goodbye,farewell,original,bye,2 -no,negative,original,cancel,3 -thank_you,you answered,parrot,bye,2 -yes,confirm,original,book,1 -goodbye,glad to talk again,parrot,bye,2 -goodbye,bye bye,lambada,bye,2 -reminder_update,let me remember,parrot,resched,5 -how_busy,does the pizza place have a long wait?,lambada,avail,0 -yes,confirmed,original,book,1 -reminder_update,keep checking the steak,parrot,resched,5 -yes,that seems true,original,book,1 -thank_you,good job thanks,parrot,bye,2 -goodbye,wait for me later,parrot,bye,2 -goodbye,i need to leave now,lambada,bye,2 -goodbye,greetings,parrot,bye,2 -no,that's absolutely wrong,parrot,cancel,3 -schedule_meeting,are there meeting rooms available between 8 and 10?,parrot,book,1 -date,today?,parrot,avail,0 -schedule_meeting,i want to know if there are meeting rooms available between 9:00 am and 11:00 am,original,book,1 -no,no,lambada,cancel,3 -goodbye,good talk,parrot,bye,2 -yes,great,original,book,1 -cancel_reservation,but i don't need my reservation anymore because of circumstances,parrot,cancel,3 -goodbye,regards,original,bye,2 -greeting,hey,original,greet,4 -how_busy,what does a red lobster get at 7 pm?,parrot,avail,0 -no,that's completely wrong,parrot,cancel,3 -yes,accepted,original,book,1 -goodbye,tootles,original,bye,2 -date,is today the day?,parrot,avail,0 -calendar,display my calendar,lambada,avail,0 -yes,yes please,original,book,1 -no,nada,original,cancel,3 -greeting,how life treats you?,parrot,greet,4 -goodbye,later goodbye,parrot,bye,2 -date,what year?,parrot,avail,0 -thank_you,thanks very much for your answer,parrot,bye,2 -yes,yeap,original,book,1 -no,most definitely false,parrot,cancel,3 -no,no that's wrong,original,cancel,3 -goodbye,good luck,lambada,bye,2 -how_busy,how busy will the menu be at chipotle fries,parrot,avail,0 -how_busy,how busy will the cheesecake factory be at 8pm,parrot,avail,0 -date,where's the date tomorrow?,parrot,avail,0 -greeting,how're you doing,original,greet,4 -goodbye,farewell,original,bye,2 -date,what is tomorrow?,parrot,avail,0 -goodbye,later gater,original,bye,2 -no,is that a lie?,parrot,cancel,3 -how_busy,how busy is olive garden at 8:00,lambada,avail,0 -greeting,"hey, ai",original,greet,4 -no,FALSE,lambada,cancel,3 -greeting,how's life?,parrot,greet,4 -yes,that is true,lambada,book,1 -no,false sure,parrot,cancel,3 -goodbye,fairwell?,parrot,bye,2 -no,not really,original,cancel,3 -no,not correct,parrot,cancel,3 -cancel_reservation,i want to cancel my reservation,lambada,cancel,3 -no,that is no way,lambada,cancel,3 -greeting,hola,original,greet,4 -greeting,how's life?,parrot,greet,4 -no,invalid,original,cancel,3 -date,what's the date for tomorrow please,parrot,avail,0 -greeting,hello bs,parrot,greet,4 -goodbye,sign off,parrot,bye,2 -how_busy,wait how long on friday?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -yes,TRUE,lambada,book,1 -goodbye,peace,original,bye,2 -how_busy,how long will the wait before we go to the restaurant be?,parrot,avail,0 -date,which date today?,parrot,avail,0 -calendar_update,remember to put that appointment for tomorrow on my calendar,parrot,resched,5 -greeting,so how's everything?,parrot,greet,4 -no,is very false,parrot,cancel,3 -yes,positive,original,book,1 -goodbye,goodbye ai,parrot,bye,2 -no,so that's no,parrot,cancel,3 -greeting,hi there alexa,original,greet,4 -goodbye,later gater,original,bye,2 -yes,positive,original,book,1 -yes,sure,original,book,1 -goodbye,bye bye,lambada,bye,2 -yes,obviously,parrot,book,1 -no,no please,parrot,cancel,3 -goodbye,wonderful conversation,lambada,bye,2 -yes,indeed,original,book,1 -cancel_reservation,please cancel my reservation in the lobster claws,parrot,cancel,3 -no,say negative,parrot,cancel,3 -schedule_meeting,please set up a meeting with john at 6pm,lambada,book,1 -thank_you,thanks!,original,bye,2 -goodbye,bye-bye,original,bye,2 -calendar_update,is it possible to remove an event from this calendar please?,parrot,resched,5 -yes,TRUE,lambada,book,1 -yes,yup,original,book,1 -goodbye,good luck,lambada,bye,2 -no,is not true?,parrot,cancel,3 -schedule_meeting,i want to know how i schedule a meeting,parrot,book,1 -greeting,how's life?,parrot,greet,4 -thank_you,i thank you,original,bye,2 -yes,sure,original,book,1 -yes,ya,original,book,1 -goodbye,greetings,parrot,bye,2 -greeting,welcome,parrot,greet,4 -greeting,whats up,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -no,please disagree,lambada,cancel,3 -date,what is tomorrow?,parrot,avail,0 -no,i'd prefer not to answer,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -yes,not a lie,parrot,book,1 -thank_you,appreciated,original,bye,2 -no,please disagree,lambada,cancel,3 -no,don't agree,parrot,cancel,3 -no,nay,original,cancel,3 -no,i don't agree,parrot,cancel,3 -yes,it seems true,parrot,book,1 -greeting,how ife treated you?,parrot,greet,4 -greeting,"hello, what's up",original,greet,4 -calendar,give me my calendar for march 13,parrot,avail,0 -thank_you,you've been great,parrot,bye,2 -no,erroneous,parrot,cancel,3 -reminder_update,tell me to take out the garbage in an hour?,parrot,resched,5 -thank_you,thanks for that!,original,bye,2 -goodbye,tootles,original,bye,2 -thank_you,thanks please,original,bye,2 -greeting,hi,original,greet,4 -goodbye,no problem goodbye,parrot,bye,2 -no,please disagree,lambada,cancel,3 -no,FALSE,original,cancel,3 -goodbye,goodnight,original,bye,2 -no,negative sure,parrot,cancel,3 -greeting,ahoy hoy,original,greet,4 -no,false sure,parrot,cancel,3 -no,no?,parrot,cancel,3 -how_busy,what is the wait time in san teodoros?,parrot,avail,0 -reminder_update,i need you to make a reminder about my vacation,lambada,resched,5 -yes,of course,original,book,1 -yes,perfect,parrot,book,1 -yes,say yes,lambada,book,1 -thank_you,thanks for trying,original,bye,2 -goodbye,good-bye,parrot,bye,2 -yes,good,parrot,book,1 -goodbye,later goodbye,parrot,bye,2 -yes,huh,parrot,book,1 -greeting,how's life,original,greet,4 -goodbye,just relax,parrot,bye,2 -no,not really,original,cancel,3 -goodbye,good-bye,parrot,bye,2 -greeting,aloha,original,greet,4 -thank_you,appreciate the support,parrot,bye,2 -yes,affirmitive,original,book,1 -thank_you,thanks,original,bye,2 -yes,it's true yes,parrot,book,1 -goodbye,"bye-bye, my friend",lambada,bye,2 -no,nope,original,cancel,3 -yes,oh-huh,parrot,book,1 -yes,what you just said is true?,original,book,1 -yes,great,original,book,1 -goodbye,bye bye,lambada,bye,2 -meeting_schedule,is the gang meeting this afternoon?,parrot,avail,0 -how_busy,is mcdonalds busy?,parrot,avail,0 -goodbye,good night,original,bye,2 -how_busy,how long does a pizza shop wait to serve dinner,parrot,avail,0 -yes,yay,lambada,book,1 -meeting_schedule,when do i have a meeting?,parrot,avail,0 -no,no that's not true,parrot,cancel,3 -greeting,"hey, ai",original,greet,4 -yes,it is definitely affirmative,original,book,1 -thank_you,thanks for helping out,original,bye,2 -thank_you,thank you!,original,bye,2 -goodbye,goodbye to yours,parrot,bye,2 -yes,10-Apr,original,book,1 -yes,a real statement,parrot,book,1 -yes,yes,original,book,1 -how_busy,can you tell me how busy chili's will be at 7:30?,lambada,avail,0 -yes,accept,parrot,book,1 -yes,correct,original,book,1 -no,false sure,parrot,cancel,3 -no,erroneous,parrot,cancel,3 -yes,is true,parrot,book,1 -yes,it'll be yes,parrot,book,1 -goodbye,later!,original,bye,2 -no,that's overwhelmingly negative,parrot,cancel,3 -greeting,hiya!,original,greet,4 -thank_you,i'm grateful,original,bye,2 -greeting,hola,original,greet,4 -cancel_reservation,get the salad cancelled,lambada,cancel,3 -greeting,how's otc?,parrot,greet,4 -date,tell me the day tomorrow?,parrot,avail,0 -no,yes it's false,parrot,cancel,3 -no,negative certainly,parrot,cancel,3 -goodbye,adios!,original,bye,2 -greeting,what's happened?,parrot,greet,4 -no,don't like that,parrot,cancel,3 -yes,absolutely!,original,book,1 -goodbye,afterward,parrot,bye,2 -schedule_meeting,i want to check if there is any meeting room available between 8:00 and 10:00 am,original,book,1 -goodbye,good luck later,parrot,bye,2 -yes,that is a yes,original,book,1 -goodbye,regards,original,bye,2 -calendar,check out my calendar for events,parrot,avail,0 -no,negatory?,parrot,cancel,3 -greeting,hey fellow,parrot,greet,4 -how_busy,ihop around 10 pm,parrot,avail,0 -thank_you,thanks for that response,original,bye,2 -greeting,"hi, ai",original,greet,4 -no,negative certainly,parrot,cancel,3 -calendar,do you have any events in my calendar for thursday?,parrot,avail,0 -date,where's tomorrow's date,parrot,avail,0 -calendar_update,i must add farm trip to my calendar for friday,original,resched,5 -greeting,tell me how you're doing,parrot,greet,4 -reminder_update,i would like to remind you,parrot,resched,5 -no,ill pass,original,cancel,3 -greeting,hi what's going on?,parrot,greet,4 -goodbye,later then,lambada,bye,2 -thank_you,thankyou,parrot,bye,2 -greeting,"hi, ai",original,greet,4 -date,when will the date be?,lambada,avail,0 -schedule_meeting,is the meeting room between 9 and 10?,parrot,book,1 -how_busy,how busy is imanas?,parrot,avail,0 -thank_you,i'm very thankful,parrot,bye,2 -no,that's negative,parrot,cancel,3 -calendar,can you tell me what is showing up on my calendar for march 30?,lambada,avail,0 -goodbye,i'll be there for you,parrot,bye,2 -greeting,hey hey!,original,greet,4 -how_busy,how long is the wait time to get into goji berry's,lambada,avail,0 -thank_you,you're the best!,original,bye,2 -cancel_reservation,can i cancel my reservation for jason at ruth',parrot,cancel,3 -yes,i'll say yes,parrot,book,1 -yes,yeah yeah,lambada,book,1 -greeting,ahoy,lambada,greet,4 -greeting,hola!,original,greet,4 -goodbye,ai goodbye,original,bye,2 -yes,yes please,original,book,1 -no,no way!,original,cancel,3 -no,that's false,original,cancel,3 -thank_you,i am very grateful,original,bye,2 -no,that's so negative,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -how_busy,what is the wait time at cheese cake factory?,lambada,avail,0 -greeting,salutation,parrot,greet,4 -yes,yes,original,book,1 -thank_you,thanks!,original,bye,2 -yes,good yes,lambada,book,1 -yes,facts,original,book,1 -goodbye,just relax,parrot,bye,2 -how_busy,how busy is chili at noon?,parrot,avail,0 -greeting,wassup,original,greet,4 -goodbye,bye bye,lambada,bye,2 -greeting,hello siri,original,greet,4 -yes,"correct, that's true",original,book,1 -thank_you,thankyou,parrot,bye,2 -no,that’s not correct,original,cancel,3 -no,not right?,parrot,cancel,3 -thank_you,i'm happy you've helped me,parrot,bye,2 -thank_you,much obliged,original,bye,2 -greeting,how's it going,lambada,greet,4 -goodbye,say goodbye,parrot,bye,2 -no,that's very wrong,parrot,cancel,3 -how_busy,how long will it take to sit at the lobster?,parrot,avail,0 -yes,good,parrot,book,1 -goodbye,later!,original,bye,2 -goodbye,greetings,parrot,bye,2 -yes,i'd say it's true,parrot,book,1 -meeting_schedule,meetings today,original,avail,0 -goodbye,i'll leave,parrot,bye,2 -calendar,tell me what's going on on march 2?,parrot,avail,0 -yes,"yes, that's it",original,book,1 -yes,sure thing,original,book,1 -greeting,good evening,original,greet,4 -date,describe the day?,parrot,avail,0 -greeting,good morning ai,parrot,greet,4 -yes,thats right,original,book,1 -no,naw,original,cancel,3 -how_busy,how long will i have to wait in the olive garden,parrot,avail,0 -goodbye,goodbye then,parrot,bye,2 -no,thats a negative,original,cancel,3 -goodbye,goodbye then,parrot,bye,2 -date,in 10 days?,parrot,avail,0 -greeting,heller,original,greet,4 -greeting,what's new,lambada,greet,4 -no,negating,parrot,cancel,3 -greeting,hi,original,greet,4 -meeting_schedule,are there any meetings with me today?,parrot,avail,0 -yes,"yes, that's confirmed",original,book,1 -no,it's negative,parrot,cancel,3 -yes,that's the truth,original,book,1 -greeting,how you're treated,parrot,greet,4 -yes,"yes, please",parrot,book,1 -date,what's my date?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -yes,obviously,parrot,book,1 -greeting,heyo,original,greet,4 -calendar_update,friday has to be clear on my calendars,parrot,resched,5 -how_busy,is the chili usually packed around 6pm?,parrot,avail,0 -greeting,how's life,original,greet,4 -thank_you,good to look at,parrot,bye,2 -thank_you,thank you,original,bye,2 -thank_you,thank you so much for that,lambada,bye,2 -date,please tell me what's the date?,parrot,avail,0 -thank_you,thankyou,parrot,bye,2 -goodbye,bye bye!,original,bye,2 -how_busy,how busy is the outback steakhouse at 5 pm?,parrot,avail,0 -thank_you,thank you,original,bye,2 -yes,yeap,original,book,1 -goodbye,goodbye,original,bye,2 -how_busy,how busy will mac and cheese be at 5pm,lambada,avail,0 -reminder_update,maybe a reminder?,parrot,resched,5 -yes,great,original,book,1 -no,nothing,parrot,cancel,3 -yes,it's logical,parrot,book,1 -goodbye,bye-bye,original,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -thank_you,it's all i need,parrot,bye,2 -no,that's bad,parrot,cancel,3 -thank_you,my sincere thanks,parrot,bye,2 -yes,confirmed,original,book,1 -thank_you,you helped,parrot,bye,2 -how_busy,how long will it be before i go to the restaurant?,parrot,avail,0 -goodbye,sayonara ,parrot,bye,2 -no,that's very wrong,parrot,cancel,3 -yes,roger that,original,book,1 -how_busy,how long will it take to get a table at buffalo wild wings?,parrot,avail,0 -no,nope that is not right,lambada,cancel,3 -schedule_meeting,set a meeting with tom for 5:30 tomorrow,original,book,1 -yes,it's true for sure,parrot,book,1 -no,ill pass,original,cancel,3 -yes,confirmed,original,book,1 -no,i'll pass,original,cancel,3 -goodbye,peace out,original,bye,2 -no,negative definitely,parrot,cancel,3 -yes,uh-huh,original,book,1 -goodbye,farewell,original,bye,2 -how_busy,how long do i have to wait for a table in the restaurant?,parrot,avail,0 -thank_you,i sincerely thank you,parrot,bye,2 -greeting,bonjour,original,greet,4 -how_busy,how busy is chili's at 7:45 pm,lambada,avail,0 -no,no,lambada,cancel,3 -goodbye,goodnight,original,bye,2 -how_busy,i'd expect outback steakhouse to be busy around 7pm,parrot,avail,0 -date,which date today?,parrot,avail,0 -date,tell me today's date?,original,avail,0 -cancel_reservation,cancel dinner reservation tonight,parrot,cancel,3 -goodbye,regards,original,bye,2 -goodbye,tootles?,parrot,bye,2 -goodbye,goodbye for now,parrot,bye,2 -thank_you,thanks for my cooperation,original,bye,2 -no,definitely not,original,cancel,3 -greeting,hows it going,lambada,greet,4 -how_busy,how busy is iman at 7 am?,parrot,avail,0 -yes,affirmitive,original,book,1 -meeting_schedule,please read my schedule,parrot,avail,0 -calendar,did you put an item on my calendar to get my car repaired?,parrot,avail,0 -goodbye,go easy,parrot,bye,2 -no,i disagree,parrot,cancel,3 -thank_you,gracias,original,bye,2 -thank_you,thanks!,original,bye,2 -reminder_update,can you set a reminder alarm for me to work out?,parrot,resched,5 -how_busy,what's the wait time at the pizza parlor before i go,lambada,avail,0 -greeting,hiya!,original,greet,4 -yes,huh,parrot,book,1 -date,what's my tomorrow date?,parrot,avail,0 -yes,positive,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -thank_you,i want to thank you for my response,lambada,bye,2 -no,negation,parrot,cancel,3 -greeting,hi,original,greet,4 -goodbye,good talk,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how long will the wait in this pizza shop be?,parrot,avail,0 -goodbye,thanks goodbye,parrot,bye,2 -date,list the next month?,parrot,avail,0 -goodbye,i'm going,parrot,bye,2 -date,date tomorrow?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -goodbye,see ya,lambada,bye,2 -greeting,what's up?,parrot,greet,4 -goodbye,goodnight,original,bye,2 -calendar_update,delete april 16th birthday party from my calendar,parrot,resched,5 -meeting_schedule,meetings today,original,avail,0 -goodbye,greetings,parrot,bye,2 -no,naw,original,cancel,3 -thank_you,it pleased me,parrot,bye,2 -how_busy,how much time will i wait to be seated in the italian restaurant?,parrot,avail,0 -greeting,hey bs,lambada,greet,4 -greeting,yo,original,greet,4 -no,not right,parrot,cancel,3 -goodbye,bye,original,bye,2 -thank_you,i appreciate that,original,bye,2 -greeting,how things go?,parrot,greet,4 -yes,affirmitive,original,book,1 -no,nothing,parrot,cancel,3 -no,definitely not,original,cancel,3 -how_busy,i know how busy olive garden is around 7,lambada,avail,0 -no,certainly not,original,cancel,3 -no,that is so false,original,cancel,3 -calendar,check out my calendar,parrot,avail,0 -thank_you,"oh, thanks",original,bye,2 -goodbye,take a rest,parrot,bye,2 -reminder_update,remind me,original,resched,5 -goodbye,", goodbye",lambada,bye,2 -greeting,hows life for you,lambada,greet,4 -greeting,hello siri,original,greet,4 -yes,facts,original,book,1 -yes,right,parrot,book,1 -yes,yeah yeah,lambada,book,1 -greeting,how you're treated,parrot,greet,4 -yes,positive,parrot,book,1 -date,today what date?,parrot,avail,0 -thank_you,your assistance is appreciated,parrot,bye,2 -thank_you,thanks,original,bye,2 -no,i think it is false,original,cancel,3 -date,i need to know today's date,original,avail,0 -goodbye,goodbye,original,bye,2 -thank_you,many thank,original,bye,2 -cancel_reservation,annull the reservation i made,parrot,cancel,3 -goodbye,later gator!,original,bye,2 -yes,agreed,original,book,1 -date,what is the day?,original,avail,0 -calendar,please tell me what's on the calendar for february 1,parrot,avail,0 -how_busy,what is the time i should be seated at this restaurant?,lambada,avail,0 -no,no that's not correct,parrot,cancel,3 -yes,agreed,original,book,1 -date,describe the day?,parrot,avail,0 -how_busy,i want to sit at the red lobster how long will it take?,parrot,avail,0 -how_busy,how long will it take me to get a seat at the steak house in the outback?,parrot,avail,0 -goodbye,i must run now,parrot,bye,2 -yes,"yup, that's correct",lambada,book,1 -thank_you,thanks for the response,lambada,bye,2 -thank_you,a million thanks,parrot,bye,2 -thank_you,my thanks,parrot,bye,2 -yes,i want that,parrot,book,1 -no,no?,parrot,cancel,3 -yes,yeap,original,book,1 -goodbye,adios ai,original,bye,2 -yes,"yes, please",parrot,book,1 -schedule_meeting,can you sign me up for a meeting in the blue room at 9am?,parrot,book,1 -no,naw,parrot,cancel,3 -greeting,nice day,lambada,greet,4 -no,nay,original,cancel,3 -cancel_reservation,"i don't need my reservation, can you cancel it",original,cancel,3 -yes,huh,parrot,book,1 -meeting_schedule,what time do i meet robert?,parrot,avail,0 -how_busy,what are the hours of use for the restaurant?,lambada,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,wassup,original,greet,4 -greeting,hello what's going on,parrot,greet,4 -thank_you,many thank,original,bye,2 -yes,certainly true,parrot,book,1 -yes,good,parrot,book,1 -greeting,what's going on with you?,parrot,greet,4 -greeting,salutations,parrot,greet,4 -reminder_update,make me a reminder,lambada,resched,5 -goodbye,good call,parrot,bye,2 -goodbye,goodnight,original,bye,2 -calendar,what do you have planned for 325?,parrot,avail,0 -goodbye,bye,original,bye,2 -thank_you,thank ya!,original,bye,2 -goodbye,bye bye,lambada,bye,2 -yes,huh huh,parrot,book,1 -meeting_schedule,meetings today,original,avail,0 -greeting,whats new,lambada,greet,4 -thank_you,my gratitude,parrot,bye,2 -goodbye,i'm gone,parrot,bye,2 -goodbye,sayonara,original,bye,2 -date,can you tell me the date of the day?,parrot,avail,0 -thank_you,gracias,original,bye,2 -no,that's wrong,original,cancel,3 -goodbye,greetings,parrot,bye,2 -greeting,ahoy,lambada,greet,4 -date,today?,parrot,avail,0 -how_busy,does michelin steakhouse have a lot of people on their server right now?,lambada,avail,0 -yes,good,parrot,book,1 -how_busy,how long will the wait at olive garden be at 6,lambada,avail,0 -date,is tomorrow's date?,parrot,avail,0 -goodbye,later!,original,bye,2 -how_busy,is there a waiting period today at the olive garden?,parrot,avail,0 -no,that's so false,parrot,cancel,3 -reminder_update,give me a time reminder to check my car payment,parrot,resched,5 -how_busy,how long will the wait be at 6pm?,parrot,avail,0 -how_busy,are the restaurants full at dinner?,lambada,avail,0 -goodbye,i'm out of here,original,bye,2 -greeting,what's happened?,parrot,greet,4 -goodbye,goodbye to yours,parrot,bye,2 -date,in 8 days?,parrot,avail,0 -yes,confirm,original,book,1 -goodbye,later,original,bye,2 -yes,huh huh,parrot,book,1 -thank_you,you're welcome,parrot,bye,2 -meeting_schedule,read me my meeting schedule,original,avail,0 -meeting_schedule,are there meetings between 6 and 9 o'clock in the evening?,parrot,avail,0 -no,that is overwhelmingly false,original,cancel,3 -greeting,hello,original,greet,4 -yes,that appears true,original,book,1 -goodbye,later!,original,bye,2 -thank_you,thanks for the update,lambada,bye,2 -yes,TRUE,original,book,1 -calendar_update,can you schedule an event called the nadine's baby shower on my calendar,parrot,resched,5 -thank_you,i'm thankful,original,bye,2 -goodbye,farewell,original,bye,2 -greeting,hi,original,greet,4 -greeting,how're you?,parrot,greet,4 -date,tell me the date in three days?,parrot,avail,0 -yes,yes please,original,book,1 -how_busy,how long will the wait at red lobster be,lambada,avail,0 -thank_you,you've been amazing,lambada,bye,2 -yes,i agree,original,book,1 -yes,definitely,original,book,1 -reminder_update,please check the steak,parrot,resched,5 -how_busy,is the restaurant usually packed around 8pm?,parrot,avail,0 -no,but certainly not,parrot,cancel,3 -meeting_schedule,what time do you meet john?,parrot,avail,0 -how_busy,what's the wait time at wendy's around 8 o'clock in the morning?,parrot,avail,0 -meeting_schedule,is my meeting scheduled?,parrot,avail,0 -thank_you,you helped,parrot,bye,2 -thank_you,you helped,parrot,bye,2 -greeting,ahoy hoy,original,greet,4 -goodbye,afterward,parrot,bye,2 -greeting,aloha,original,greet,4 -reminder_update,let me know,parrot,resched,5 -greeting,how it goes?,parrot,greet,4 -thank_you,"thanks, that's helpful",original,bye,2 -how_busy,is the restaurant crowded at 7 o'clock?,parrot,avail,0 -meeting_schedule,what time am i meeting john?,original,avail,0 -thank_you,you've tried,parrot,bye,2 -calendar,what's on my calendar for the 1st of march?,parrot,avail,0 -yes,right,parrot,book,1 -yes,it's a fact,parrot,book,1 -goodbye,goodnight,original,bye,2 -goodbye,bye for now,original,bye,2 -no,no?,parrot,cancel,3 -goodbye,farewell,original,bye,2 -no,no that isn't right,original,cancel,3 -no,the answer is no,original,cancel,3 -yes,indeed,original,book,1 -greeting,aho,parrot,greet,4 -goodbye,thank you for talking to me,lambada,bye,2 -goodbye,later!,original,bye,2 -greeting,how's everything?,parrot,greet,4 -greeting,hi ai,original,greet,4 -yes,agreed,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -calendar,please tell me what's on my calendar for tomorrow?,parrot,avail,0 -reminder_update,have i forgotten?,parrot,resched,5 -goodbye,bye,original,bye,2 -schedule_meeting,i want a meeting room open between 4 and 5,parrot,book,1 -greeting,have you been good?,original,greet,4 -goodbye,peace,original,bye,2 -greeting,hi ai,original,greet,4 -yes,indeed,parrot,book,1 -reminder_update,set a reminder for me to work on monday,lambada,resched,5 -greeting,how've you been?,parrot,greet,4 -greeting,how's the life?,parrot,greet,4 -greeting,welcome,parrot,greet,4 -yes,you are yes,lambada,book,1 -yes,i'd say yes,parrot,book,1 -yes,good,parrot,book,1 -no,no!,original,cancel,3 -no,no?,parrot,cancel,3 -no,it's false,parrot,cancel,3 -yes,"yep, that's correct",lambada,book,1 -goodbye,tootles?,parrot,bye,2 -goodbye,say goodbye,parrot,bye,2 -calendar_update,take my dinner plans for tomorrow off my calendar,lambada,resched,5 -thank_you,good job,lambada,bye,2 -yes,just right,parrot,book,1 -thank_you,okay thanks,original,bye,2 -no,absolutely not,original,cancel,3 -reminder_update,add a reminder to me?,parrot,resched,5 -greeting,how's ai feeling?,parrot,greet,4 -no,no!,original,cancel,3 -no,negative,original,cancel,3 -no,that's no,parrot,cancel,3 -goodbye,bye now,original,bye,2 -cancel_reservation,remove the reservation i made with olive garden,lambada,cancel,3 -no,negation,parrot,cancel,3 -greeting,"hey, how are you",original,greet,4 -thank_you,you have my sincere gratitude,original,bye,2 -calendar_update,add an excursion on the farm to my calendar on march 1,parrot,resched,5 -greeting,aho,parrot,greet,4 -no,not correct,parrot,cancel,3 -no,invalid,original,cancel,3 -goodbye,bye,original,bye,2 -schedule_meeting,i want a meeting,parrot,book,1 -calendar_update,please remove an event from this calendar,original,resched,5 -goodbye,afterward,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -date,let me know what the day is today,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how busy is rancho around 9am,lambada,avail,0 -no,that's negative,parrot,cancel,3 -goodbye,talk to you soon,parrot,bye,2 -greeting,"hi, ai",original,greet,4 -date,please date,parrot,avail,0 -calendar,is bowling in my calendar?,parrot,avail,0 -yes,let's do that,parrot,book,1 -goodbye,see ya,lambada,bye,2 -reminder_update,create reminders to wash dishes,parrot,resched,5 -yes,affirmitive,original,book,1 -goodbye,go easy,parrot,bye,2 -thank_you,and you're doing well,parrot,bye,2 -greeting,how're you doing,original,greet,4 -yes,huh,parrot,book,1 -goodbye,bye bye,lambada,bye,2 -no,thanks no,parrot,cancel,3 -no,FALSE,original,cancel,3 -no,no!,original,cancel,3 -no,nothing,parrot,cancel,3 -goodbye,good conversation,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -yes,10-Apr,original,book,1 -date,"in 5 days from today, what will the date be",original,avail,0 -goodbye,adios!,original,bye,2 -cancel_reservation,uni made a reservation for dinner,parrot,cancel,3 -calendar_update,"can you remove an event from this calendar, please?",lambada,resched,5 -schedule_meeting,"go ahead and hold a conference room for friday at 11 am, please",original,book,1 -yes,ya,original,book,1 -yes,oh-huh,parrot,book,1 -how_busy,can you tell me the wait times in this restaurant?,parrot,avail,0 -goodbye,buhbye,original,bye,2 -greeting,hey fellow,parrot,greet,4 -greeting,how's ai doing?,parrot,greet,4 -thank_you,thankyou,parrot,bye,2 -no,it'd be awful,parrot,cancel,3 -yes,TRUE,lambada,book,1 -yes,it's certainly positive,parrot,book,1 -thank_you,well done,parrot,bye,2 -greeting,heyo,original,greet,4 -thank_you,i'm happy you've helped me,parrot,bye,2 -no,that's actually false,parrot,cancel,3 -greeting,"hello, friend",original,greet,4 -yes,ya,original,book,1 -schedule_meeting,let's schedule a meeting,lambada,book,1 -yes,yeap,original,book,1 -date,current day,parrot,avail,0 -meeting_schedule,please tell me what meetings you plan to have today?,parrot,avail,0 -thank_you,"great, thanks!",original,bye,2 -goodbye,tootles,original,bye,2 -yes,confirm,original,book,1 -greeting,hey fellow,parrot,greet,4 -how_busy,how long is the restaurant normally busy?,parrot,avail,0 -thank_you,i'm glad you did it for me,parrot,bye,2 -no,no good,original,cancel,3 -how_busy,how long is the wait in the restaurant before we go,parrot,avail,0 -goodbye,"syonara, ai device!",original,bye,2 -greeting,how're you doing,original,greet,4 -no,it's negative,parrot,cancel,3 -thank_you,you've been great,parrot,bye,2 -meeting_schedule,is there a meeting today with sam?,parrot,avail,0 -thank_you,"nice, excellent!",original,bye,2 -goodbye,afterward,parrot,bye,2 -yes,"yes, that's right",original,book,1 -thank_you,thank you kindly,original,bye,2 -schedule_meeting,can you schedule a meeting for today?,parrot,book,1 -yes,yup,original,book,1 -goodbye,glad we talked,parrot,bye,2 -how_busy,how busy will chili's be at 5:00 pm,lambada,avail,0 -no,the negator,parrot,cancel,3 -thank_you,thanks for the help!,original,bye,2 -how_busy,is ihop currently busy?,parrot,avail,0 -reminder_update,remind me to clean my room,parrot,resched,5 -yes,okay,original,book,1 -yes,yay,lambada,book,1 -goodbye,"later, goodbye",lambada,bye,2 -thank_you,your assistance is appreciated,parrot,bye,2 -no,certainly not true,parrot,cancel,3 -greeting,how are you today?,parrot,greet,4 -no,that's very negative,parrot,cancel,3 -greeting,hola,original,greet,4 -goodbye,fairwell?,parrot,bye,2 -yes,sure thing,original,book,1 -no,no that's wrong,original,cancel,3 -thank_you,thank you for that!,lambada,bye,2 -yes,it's logical,parrot,book,1 -how_busy,how long will the wait be at the outback steakhouse?,parrot,avail,0 -yes,definitely,original,book,1 -goodbye,ai goodbye,original,bye,2 -reminder_update,let me remember,parrot,resched,5 -how_busy,is ihop busy?,parrot,avail,0 -no,no please,parrot,cancel,3 -greeting,i need to know how ai's doing,parrot,greet,4 -goodbye,i'll take care of it,parrot,bye,2 -greeting,how life treats you?,parrot,greet,4 -yes,that would be true,original,book,1 -calendar_update,for the dpo this will be changed to have dinner with the victorian for may 1st,lambada,resched,5 -greeting,salutations!,original,greet,4 -no,certainly not,original,cancel,3 -yes,of course,original,book,1 -no,that’s not correct,original,cancel,3 -date,a year?,parrot,avail,0 -yes,facts,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -greeting,you good?,parrot,greet,4 -yes,just right,parrot,book,1 -reminder_update,let me know,parrot,resched,5 -thank_you,thank you for helping me,original,bye,2 -yes,obviously,parrot,book,1 -goodbye,peace,original,bye,2 -no,that is incorrect,original,cancel,3 -meeting_schedule,i need to know what meetings i have for today,parrot,avail,0 -goodbye,tootles,original,bye,2 -goodbye,regards,original,bye,2 -yes,agreed,original,book,1 -thank_you,really great!,original,bye,2 -goodbye,farewell!,original,bye,2 -yes,i know,parrot,book,1 -no,not that,original,cancel,3 -yes,yeap,original,book,1 -thank_you,thank you for the assistance,lambada,bye,2 -greeting,hiya,original,greet,4 -reminder_update,make me a reminder,lambada,resched,5 -goodbye,"thanks, bye",original,bye,2 -no,so it's not possible,parrot,cancel,3 -how_busy,i want to know how busy is teacher's at 11,lambada,avail,0 -no,i'm saying no,parrot,cancel,3 -no,absolutely false,parrot,cancel,3 -goodbye,farewell,original,bye,2 -reminder_update,remind me something,parrot,resched,5 -yes,agreed,original,book,1 -yes,"yup, that's correct",lambada,book,1 -calendar,do i have anything on my calendar for next sunday morning?,parrot,avail,0 -no,nay,original,cancel,3 -how_busy,is macy's busy?,parrot,avail,0 -yes,obviously,parrot,book,1 -thank_you,good job thanks,parrot,bye,2 -yes,definitely,original,book,1 -greeting,wassup,original,greet,4 -no,no don't do that!,original,cancel,3 -thank_you,many thanks,original,bye,2 -no,negating,parrot,cancel,3 -no,it's overwhelmingly wrong,parrot,cancel,3 -greeting,hola,original,greet,4 -yes,affirmitive,original,book,1 -greeting,hey there,original,greet,4 -goodbye,later good luck,parrot,bye,2 -greeting,"hey, how's my day",lambada,greet,4 -thank_you,you helped me today,parrot,bye,2 -no,that's not the case,parrot,cancel,3 -yes,accepted,original,book,1 -yes,is true,parrot,book,1 -no,that is so false,original,cancel,3 -no,that's bad,parrot,cancel,3 -goodbye,im leaving,parrot,bye,2 -goodbye,have to run,parrot,bye,2 -thank_you,youre a doll,original,bye,2 -no,and i'm sorry,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -no,FALSE,original,cancel,3 -yes,good,parrot,book,1 -date,today?,parrot,avail,0 -how_busy,what is the wait time at olive garden?,lambada,avail,0 -greeting,hey there!,original,greet,4 -yes,positive,parrot,book,1 -goodbye,fairwell,original,bye,2 -how_busy,how long will it take to get a table at moroni's,lambada,avail,0 -goodbye,good call,parrot,bye,2 -goodbye,later!,original,bye,2 -greeting,hows are ya,original,greet,4 -no,negative definitely,parrot,cancel,3 -greeting,hello siri,original,greet,4 -meeting_schedule,wanna meet roger?,parrot,avail,0 -date,what year?,parrot,avail,0 -goodbye,talk to you later,original,bye,2 -no,naw,original,cancel,3 -no,negating,parrot,cancel,3 -no,thanks no,parrot,cancel,3 -thank_you,i appeciate it,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -goodbye,later then,lambada,bye,2 -yes,uh-huh,original,book,1 -meeting_schedule,will you meet ann?,parrot,avail,0 -yes,yeah yeah,lambada,book,1 -yes,that'd be great,parrot,book,1 -no,negating,parrot,cancel,3 -thank_you,you answered,parrot,bye,2 -greeting,how's everything?,parrot,greet,4 -calendar_update,add wedding to my calendar on march 1,lambada,resched,5 -yes,okay,original,book,1 -goodbye,goodbyes,parrot,bye,2 -yes,yep,original,book,1 -yes,absolutely,original,book,1 -no,say negative,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -yes,roger that,original,book,1 -reminder_update,add a note,parrot,resched,5 -no,no way!,original,cancel,3 -thank_you,it pleased me,parrot,bye,2 -schedule_meeting,is it possible to have a meeting with matt for 3?,parrot,book,1 -meeting_schedule,can you list my meetings for today,parrot,avail,0 -yes,positive,parrot,book,1 -greeting,what's new,lambada,greet,4 -how_busy,tell me the wait at applebee's tonight?,parrot,avail,0 -yes,i guess,parrot,book,1 -reminder_update,remind me,original,resched,5 -goodbye,see you around,original,bye,2 -meeting_schedule,is the meeting with lisa today?,original,avail,0 -greeting,wassup,original,greet,4 -goodbye,im leaving,parrot,bye,2 -yes,it's certainly true,parrot,book,1 -greeting,how's it going?,parrot,greet,4 -yes,that would be awesome,original,book,1 -date,what's today's date,original,avail,0 -meeting_schedule,i must know if i have meetings with mark today,parrot,avail,0 -greeting,heyo,original,greet,4 -yes,yes that's correct,original,book,1 -date,what's the date of today?,parrot,avail,0 -yes,"true, most definitely",original,book,1 -no,i prefer not,parrot,cancel,3 -yes,huh,parrot,book,1 -reminder_update,keep me in mind later,parrot,resched,5 -goodbye,", goodbye",lambada,bye,2 -thank_you,i'm glad you answered,parrot,bye,2 -reminder_update,set a reminder for me to request time off,original,resched,5 -yes,yes sir,original,book,1 -goodbye,goodbye to your,lambada,bye,2 -thank_you,you've given me it,parrot,bye,2 -greeting,hola,original,greet,4 -no,not happening,original,cancel,3 -schedule_meeting,tell me how i can schedule a meeting with you?,parrot,book,1 -yes,is true,parrot,book,1 -goodbye,we can talk later,parrot,bye,2 -greeting,how's it hanging?,parrot,greet,4 -cancel_reservation,must cancel my reservation for two at franklin's grille,parrot,cancel,3 -greeting,hi,original,greet,4 -calendar,tell me what's going on on march 22nd?,parrot,avail,0 -goodbye,see ya,original,bye,2 -greeting,what's up,original,greet,4 -no,no thanks,original,cancel,3 -greeting,hello good morning,parrot,greet,4 -greeting,hows it going,lambada,greet,4 -how_busy,tell me how busy it is?,parrot,avail,0 -meeting_schedule,when is my meeting with the invoicing scheduled?,parrot,avail,0 -greeting,hi,original,greet,4 -goodbye,buhbye,original,bye,2 -greeting,how it goes?,parrot,greet,4 -how_busy,show me if it's around 9 pm,parrot,avail,0 -how_busy,how busy would this place be at 6pm,parrot,avail,0 -cancel_reservation,fill in my reservation on the white cliffs,parrot,cancel,3 -yes,affirmative,original,book,1 -greeting,how's everything with you?,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -yes,absolutely,original,book,1 -goodbye,just relax,parrot,bye,2 -no,it seems wrong,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -date,is it a monday wednesday?,parrot,avail,0 -greeting,hello there!,original,greet,4 -greeting,hello there ai,original,greet,4 -how_busy,wait how long for a table in the restaurant?,parrot,avail,0 -goodbye,goodbye,original,bye,2 -greeting,salutations,parrot,greet,4 -calendar_update,remove fencing from my calendar for may 7,parrot,resched,5 -no,negating,parrot,cancel,3 -calendar,show me what's on my calendar for tomorrow?,parrot,avail,0 -goodbye,see you soon,original,bye,2 -date,calender says tomorrow is,original,avail,0 -date,current date,original,avail,0 -yes,i want it,parrot,book,1 -yes,obviously,parrot,book,1 -calendar_update,i need you to add my birthday party to my calendar for march 13th,parrot,resched,5 -greeting,aloha,original,greet,4 -how_busy,is chili usually crowded around 6pm?,parrot,avail,0 -no,not really,original,cancel,3 -goodbye,cya later,original,bye,2 -goodbye,good bye,original,bye,2 -yes,it's logical,parrot,book,1 -no,nothing good,parrot,cancel,3 -no,but it's false,parrot,cancel,3 -yes,absolutely!,original,book,1 -goodbye,fairwell,original,bye,2 -goodbye,tootles,original,bye,2 -greeting,ahoy,lambada,greet,4 -goodbye,good bye,original,bye,2 -meeting_schedule,have any meetings with dan?,parrot,avail,0 -how_busy,how busy is michel's at 5pm,lambada,avail,0 -reminder_update,make me remember to pay my mortgage,parrot,resched,5 -reminder_update,give me a reminder,parrot,resched,5 -how_busy,please tell me what it is like in the olive garden right now,parrot,avail,0 -calendar_update,make sure events on my calendar for march 8 2019 are cleared,parrot,resched,5 -yes,let's do that,parrot,book,1 -how_busy,is the place busy at 3 o'clock?,parrot,avail,0 -yes,very true,original,book,1 -meeting_schedule,how many meetings do i have scheduled for today?,parrot,avail,0 -no,the answer is a false,parrot,cancel,3 -no,that's very false,parrot,cancel,3 -goodbye,adios!,original,bye,2 -yes,huh,parrot,book,1 -cancel_reservation,can you cancel my reservation for kyle's party at red lobster?,parrot,cancel,3 -meeting_schedule,what's my meeting plan?,parrot,avail,0 -thank_you,thanks,original,bye,2 -cancel_reservation,is it possible to cancel my reservation for the red robin at 4 o'clock?,parrot,cancel,3 -goodbye,tootles,original,bye,2 -greeting,hello,original,greet,4 -meeting_schedule,when's my meeting with my dad?,parrot,avail,0 -how_busy,what will it be like for chili at 5pm,parrot,avail,0 -date,in three days,parrot,avail,0 -greeting,what's new?,parrot,greet,4 -yes,ok,original,book,1 -calendar,can you look at my calendar for october 3?,parrot,avail,0 -calendar,"can you tell me what's on my calendar for march 05, 2019?",original,avail,0 -reminder_update,remind me to wash the dishes,parrot,resched,5 -calendar,is there anything on my schedule for march 7th?,parrot,avail,0 -date,i need the whole date for today,parrot,avail,0 -greeting,salutations,parrot,greet,4 -no,that's incorrect,original,cancel,3 -no,i would rather not,lambada,cancel,3 -no,that is overwhelmingly wrong,lambada,cancel,3 -goodbye,i have a good conversation with you,parrot,bye,2 -date,what's the current date of,parrot,avail,0 -no,naw,parrot,cancel,3 -no,negatory,original,cancel,3 -cancel_reservation,delete my dinner reservation,parrot,cancel,3 -schedule_meeting,a meeting room between 1130 and noon,parrot,book,1 -meeting_schedule,do you have meetings with jimmy between 5 and 10?,parrot,avail,0 -greeting,whats up?,parrot,greet,4 -goodbye,goodbye ai,parrot,bye,2 -yes,10-Apr,original,book,1 -thank_you,thanks,original,bye,2 -goodbye,peace out,original,bye,2 -no,say negative,parrot,cancel,3 -yes,perfect,parrot,book,1 -goodbye,"later, goodbye",lambada,bye,2 -no,erroneous,parrot,cancel,3 -no,not good,parrot,cancel,3 -no,say negative,parrot,cancel,3 -thank_you,thank you for making my life easier,parrot,bye,2 -no,that's untrue,parrot,cancel,3 -how_busy,how many people go to chili around 9pm,parrot,avail,0 -yes,great,original,book,1 -yes,positive,parrot,book,1 -yes,great,original,book,1 -greeting,welcome,parrot,greet,4 -goodbye,bye!,original,bye,2 -yes,oh-huh,parrot,book,1 -no,nope,original,cancel,3 -goodbye,bye bye now,lambada,bye,2 -calendar,how do i find out what's going on in my calendar?,parrot,avail,0 -thank_you,i'm thankful for the help,parrot,bye,2 -calendar,i have to know what's on my calendar for friday the 1st,parrot,avail,0 -greeting,well hi there,original,greet,4 -thank_you,"thanks, that's helpful",original,bye,2 -thank_you,i appeciate it,parrot,bye,2 -no,that seems wrong,lambada,cancel,3 -greeting,wanted to say hi,parrot,greet,4 -yes,yay,lambada,book,1 -goodbye,"later, goodbye",lambada,bye,2 -date,what is my date today,parrot,avail,0 -no,FALSE,original,cancel,3 -calendar,i need my calendar,parrot,avail,0 -date,what's the date this month,lambada,avail,0 -goodbye,goodbye!,original,bye,2 -date,will you give me the date for tomorrow,lambada,avail,0 -no,nope,original,cancel,3 -calendar,"""can you check my calendar for an item titled """"checkbook""""""",lambada,avail,0 -cancel_reservation,please cancel my reservation for carl at umami,lambada,cancel,3 -cancel_reservation,now i don't need my reservation,parrot,cancel,3 -no,no,lambada,cancel,3 -no,naw,parrot,cancel,3 -thank_you,thanks for the answer,original,bye,2 -yes,okay,original,book,1 -thank_you,good job thanks,parrot,bye,2 -greeting,all right with you?,parrot,greet,4 -goodbye,fairwell,original,bye,2 -no,erroneous,parrot,cancel,3 -greeting,yo,original,greet,4 -yes,TRUE,lambada,book,1 -calendar_update,please remove lunch with steve on friday,parrot,resched,5 -how_busy,is the restaurant busy at 8pm?,parrot,avail,0 -how_busy,how many people are there at chili at 6?,parrot,avail,0 -how_busy,how long do i have to wait for a table at chili's?,parrot,avail,0 -yes,correct,original,book,1 -yes,accept,parrot,book,1 -meeting_schedule,have any meetings between 9 and 10 today?,parrot,avail,0 -goodbye,regards,original,bye,2 -cancel_reservation,annull a reservation for robin,parrot,cancel,3 -yes,huh,parrot,book,1 -greeting,you good?,parrot,greet,4 -yes,ya,original,book,1 -yes,a real statement,parrot,book,1 -no,no please,parrot,cancel,3 -greeting,heller,original,greet,4 -goodbye,wonderful conversation,lambada,bye,2 -goodbye,i'm going,parrot,bye,2 -no,that's inaccurate,original,cancel,3 -thank_you,thanks for that,original,bye,2 -no,not that,original,cancel,3 -thank_you,gracias,original,bye,2 -reminder_update,i want to be reminded to clean my room,parrot,resched,5 -greeting,hey yai,lambada,greet,4 -greeting,how is ai doing?,parrot,greet,4 -yes,oh-huh,parrot,book,1 -thank_you,good job,lambada,bye,2 -no,"please, no",original,cancel,3 -greeting,yo,original,greet,4 -yes,agreed,original,book,1 -no,negative sure,parrot,cancel,3 -goodbye,good luck,lambada,bye,2 -greeting,hello,original,greet,4 -goodbye,and i had fun talking with you,parrot,bye,2 -thank_you,so grateful,parrot,bye,2 -yes,accept,parrot,book,1 -greeting,are you well?,original,greet,4 -how_busy,how long will i have to wait to be seated in the red lobster,parrot,avail,0 -date,what today?,parrot,avail,0 -yes,"yep, let's do that",lambada,book,1 -calendar_update,delete event scheduled for april 14,lambada,resched,5 -date,a year?,parrot,avail,0 -no,it seems like a no,lambada,cancel,3 -greeting,hi ai,original,greet,4 -thank_you,you helped,parrot,bye,2 -no,invalid,original,cancel,3 -no,i'm saying no,parrot,cancel,3 -yes,confirmed,original,book,1 -yes,"yes, that is true",original,book,1 -yes,yes,original,book,1 -greeting,hi,original,greet,4 -greeting,how's it hanging?,parrot,greet,4 -how_busy,tell me the wait for a seat in the cheesecake factory?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -yes,good,parrot,book,1 -goodbye,later!,original,bye,2 -yes,affirmitive,original,book,1 -calendar,tell me what's on my calendar for march 18th,parrot,avail,0 -goodbye,peace,original,bye,2 -date,please date,parrot,avail,0 -cancel_reservation,can you cancel my reservation?,parrot,cancel,3 -schedule_meeting,are there meeting rooms available from 11 am to 1pm?,parrot,book,1 -goodbye,say goodbye,parrot,bye,2 -goodbye,i'm gone,parrot,bye,2 -calendar_update,please clear my calendar,original,resched,5 -goodbye,farewell!,original,bye,2 -yes,that checks out,original,book,1 -greeting,how is my situation?,parrot,greet,4 -yes,certainly,parrot,book,1 -date,current day,parrot,avail,0 -how_busy,how much time does it take to wait for a table in olive garden?,parrot,avail,0 -yes,absolutely!,original,book,1 -no,the negator,parrot,cancel,3 -how_busy,how long will the wait at buffalo wings be?,parrot,avail,0 -greeting,how's my day?,parrot,greet,4 -goodbye,nice conversation today,parrot,bye,2 -date,which date today?,parrot,avail,0 -greeting,what's up?,parrot,greet,4 -how_busy,how long do i have to wait if i want to be seated at macadamia,lambada,avail,0 -yes,approved,original,book,1 -thank_you,thank you for that,lambada,bye,2 -no,yes that's false,lambada,cancel,3 -goodbye,i'm leaving,parrot,bye,2 -goodbye,nice chat today,lambada,bye,2 -yes,okay,original,book,1 -greeting,"howdy, what's new",original,greet,4 -no,not good,parrot,cancel,3 -thank_you,so grateful,parrot,bye,2 -reminder_update,can you add a reminder for me?,lambada,resched,5 -goodbye,have a nice day?,lambada,bye,2 -how_busy,what's the wait like?,parrot,avail,0 -yes,i vote yes,original,book,1 -goodbye,take a rest,parrot,bye,2 -yes,i'll check it out ',parrot,book,1 -date,tell me the month and year,parrot,avail,0 -how_busy,what's the wait like?,parrot,avail,0 -yes,okay,original,book,1 -goodbye,be careful then,lambada,bye,2 -yes,TRUE,lambada,book,1 -greeting,how's ai doing?,parrot,greet,4 -meeting_schedule,meetings today,original,avail,0 -meeting_schedule,and i need to know if i have any meetings with mark,parrot,avail,0 -how_busy,is ihop busy?,parrot,avail,0 -meeting_schedule,when is my meeting with steve scheduled?,parrot,avail,0 -yes,affirmitive,original,book,1 -yes,"yes, please",original,book,1 -no,what you said is false?,parrot,cancel,3 -no,FALSE,original,cancel,3 -reminder_update,please remember something,parrot,resched,5 -goodbye,tootles,original,bye,2 -how_busy,wait more than an hour at the italian restaurant?,parrot,avail,0 -no,nay,original,cancel,3 -yes,confirmed,original,book,1 -goodbye,sayonara ,parrot,bye,2 -calendar_update,leave the appointment i scheduled for friday,parrot,resched,5 -goodbye,i'll leave,parrot,bye,2 -yes,yay,lambada,book,1 -no,i think not,original,cancel,3 -no,i'd say no,original,cancel,3 -thank_you,my sincere thanks,parrot,bye,2 -date,in 7 days?,parrot,avail,0 -date,i'd like to know the date today,parrot,avail,0 -yes,certainly,parrot,book,1 -goodbye,you're done,parrot,bye,2 -reminder_update,remember to remember later,parrot,resched,5 -thank_you,thanks again,original,bye,2 -goodbye,on the road,parrot,bye,2 -goodbye,i will see you later ai,lambada,bye,2 -no,i'm saying no,parrot,cancel,3 -goodbye,i'll have to go,parrot,bye,2 -no,negation,parrot,cancel,3 -thank_you,you made me aware,parrot,bye,2 -greeting,how's otc?,parrot,greet,4 -no,negatory?,parrot,cancel,3 -yes,yay,lambada,book,1 -date,today?,parrot,avail,0 -thank_you,"great, thanks!",original,bye,2 -goodbye,good seeing you,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -calendar,please see my calendar,parrot,avail,0 -no,negating,parrot,cancel,3 -yes,ok,original,book,1 -date,today?,parrot,avail,0 -thank_you,youre a doll,original,bye,2 -reminder_update,remember to bring checkbook,parrot,resched,5 -yes,confirm,original,book,1 -goodbye,farewell,original,bye,2 -yes,accept,parrot,book,1 -no,erroneous,parrot,cancel,3 -reminder_update,"create a reminder, please",lambada,resched,5 -goodbye,goodbye goodbye,parrot,bye,2 -greeting,hi,original,greet,4 -how_busy,waiting at cheeseburgers?,parrot,avail,0 -goodbye,bye bye!,original,bye,2 -date,date please,original,avail,0 -thank_you,thanks for the response,lambada,bye,2 -goodbye,the talk was nice,lambada,bye,2 -yes,yup,original,book,1 -goodbye,"later, good luck",lambada,bye,2 -yes,definitely,original,book,1 -yes,TRUE,lambada,book,1 -how_busy,how long will i wait before i can get a table at the italian bakery?,parrot,avail,0 -no,i'll say no,parrot,cancel,3 -goodbye,bye!,original,bye,2 -yes,i know what i'm getting,parrot,book,1 -greeting,salutation,parrot,greet,4 -no,no thank you,original,cancel,3 -goodbye,the talk was nice,lambada,bye,2 -thank_you,you answered my question,parrot,bye,2 -yes,indeed,original,book,1 -no,FALSE,lambada,cancel,3 -yes,absolutely,original,book,1 -greeting,what's happening?,parrot,greet,4 -thank_you,my sincere gratitude,parrot,bye,2 -no,no good,original,cancel,3 -no,it's very wrong,parrot,cancel,3 -thank_you,thanks for coming,parrot,bye,2 -calendar,let me know anything that is showing on my calendar for march 26th,lambada,avail,0 -no,that's incorrect,original,cancel,3 -yes,sure thing,original,book,1 -greeting,what's up,original,greet,4 -yes,agreed,original,book,1 -yes,yay,lambada,book,1 -no,that's bad,parrot,cancel,3 -goodbye,great conversation,parrot,bye,2 -greeting,aho,parrot,greet,4 -greeting,salutations!,original,greet,4 -greeting,aloha,original,greet,4 -greeting,"hi, ai",original,greet,4 -yes,confirmed,original,book,1 -meeting_schedule,when am i gonna be meeting with roger?,lambada,avail,0 -no,sure it's wrong,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,negative definitely,parrot,cancel,3 -schedule_meeting,can you help me create a meeting?,lambada,book,1 -meeting_schedule,when is today's meeting?,lambada,avail,0 -goodbye,tootles,original,bye,2 -thank_you,you did it,parrot,bye,2 -greeting,wake up ai,parrot,greet,4 -yes,oh-huh,parrot,book,1 -date,can you tell me the date of tomorrow?,parrot,avail,0 -greeting,how's my family?,parrot,greet,4 -goodbye,"bye-bye, my friend",lambada,bye,2 -no,don't agree,parrot,cancel,3 -goodbye,"thanks, bye",original,bye,2 -thank_you,thanks again,original,bye,2 -goodbye,"bye-bye, my friend",lambada,bye,2 -no,no that would be my response,parrot,cancel,3 -yes,10-Apr,original,book,1 -schedule_meeting,i'll need a meeting room at 9 am on tuesday,parrot,book,1 -date,in 14 days?,parrot,avail,0 -greeting,what's up,original,greet,4 -yes,certainly,parrot,book,1 -goodbye,it was nice chatting with you,original,bye,2 -goodbye,the conversation was great,parrot,bye,2 -reminder_update,add a reminder to pay the bills,parrot,resched,5 -how_busy,does the restaurant get crowded at lunch time?,parrot,avail,0 -thank_you,i appeciate it,parrot,bye,2 -yes,of course,original,book,1 -greeting,good morning,parrot,greet,4 -thank_you,thanks for my support,parrot,bye,2 -meeting_schedule,is my meeting scheduled?,parrot,avail,0 -no,i have to say no,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -yes,oh-huh,parrot,book,1 -yes,affirmative,original,book,1 -schedule_meeting,it is necessary that the meeting be scheduled,parrot,book,1 -thank_you,i appreciate your assistance,parrot,bye,2 -yes,"yes, that's accurate",original,book,1 -thank_you,nice,parrot,bye,2 -reminder_update,new reminder please,lambada,resched,5 -no,and i'd like to say that it's not true,parrot,cancel,3 -calendar_update,please clear the entries on my calendar for the 1st,parrot,resched,5 -yes,yes i do have an answer to that,lambada,book,1 -yes,correct,original,book,1 -greeting,how things go?,parrot,greet,4 -no,erroneous,parrot,cancel,3 -greeting,whats up?,parrot,greet,4 -thank_you,again thanks,parrot,bye,2 -meeting_schedule,when am i meeting roger?,lambada,avail,0 -yes,all right,parrot,book,1 -greeting,salutations,parrot,greet,4 -yes,not a falsehood,parrot,book,1 -thank_you,merci beaucoup,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -schedule_meeting,can you schedule a meeting with steve for 5 people?,parrot,book,1 -no,yes it's false,parrot,cancel,3 -greeting,salutations!,original,greet,4 -yes,oh-huh,parrot,book,1 -goodbye,goodnight,original,bye,2 -meeting_schedule,what are the meetings today?,parrot,avail,0 -date,what today?,parrot,avail,0 -yes,accept,parrot,book,1 -reminder_update,set a reminder to pick up the food,lambada,resched,5 -how_busy,is that olive garden busy?,parrot,avail,0 -how_busy,are ihops really packed around 9pm?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -how_busy,what is the wait time for a reservation at iloveys?,parrot,avail,0 -thank_you,thanks,original,bye,2 -greeting,whats up?,parrot,greet,4 -no,no,lambada,cancel,3 -thank_you,i appreciate this answer,parrot,bye,2 -greeting,what's happening,original,greet,4 -date,what date?,parrot,avail,0 -how_busy,what is the wait at red lobster?,lambada,avail,0 -goodbye,sayonara,original,bye,2 -goodbye,the talk was nice,lambada,bye,2 -date,what date is tomorrow?,original,avail,0 -yes,positive,original,book,1 -goodbye,goodbye to you,original,bye,2 -yes,not false,parrot,book,1 -thank_you,awesome thanks,parrot,bye,2 -no,no that's not correct,parrot,cancel,3 -no,negating,parrot,cancel,3 -no,that's incorrect!,original,cancel,3 -thank_you,many thank,original,bye,2 -yes,confirmed,original,book,1 -yes,absolutely!,original,book,1 -greeting,hey hey!,original,greet,4 -how_busy,does this place get busy around 5?,lambada,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,yeah,original,book,1 -greeting,"wake up, ai",original,greet,4 -greeting,how's it with you?,parrot,greet,4 -yes,say yes,lambada,book,1 -yes,that would be awesome,original,book,1 -goodbye,greetings,parrot,bye,2 -goodbye,goodnight,original,bye,2 -date,you have the date?,parrot,avail,0 -greeting,hiya,original,greet,4 -yes,uh-huh,original,book,1 -date,when will it be in seven days?,lambada,avail,0 -thank_you,i appeciate it,parrot,bye,2 -no,negative,original,cancel,3 -date,what's it like now?,parrot,avail,0 -goodbye,see you around,original,bye,2 -how_busy,does the grocery store have a lot of busy people around noon?,parrot,avail,0 -thank_you,i appeciate it,parrot,bye,2 -how_busy,are chicken dinners busy?,lambada,avail,0 -goodbye,make sure you talk to me soon,parrot,bye,2 -goodbye,i'm leaving,parrot,bye,2 -goodbye,get there soon,lambada,bye,2 -greeting,"hi, ai",original,greet,4 -thank_you,you helped,parrot,bye,2 -thank_you,i'm grateful to you,original,bye,2 -thank_you,thanks for that,original,bye,2 -goodbye,i'm gone,parrot,bye,2 -yes,that would be great,original,book,1 -yes,sure,original,book,1 -goodbye,goodbye!,original,bye,2 -no,that's absolutely false,parrot,cancel,3 -goodbye,and then goodbye,parrot,bye,2 -goodbye,", goodbye",lambada,bye,2 -thank_you,you've helped,parrot,bye,2 -no,i disagree,parrot,cancel,3 -how_busy,how long does it take for a table in chipotle,parrot,avail,0 -no,negative,original,cancel,3 -greeting,how's my day been?,parrot,greet,4 -goodbye,farewell,original,bye,2 -goodbye,goodnight,original,bye,2 -greeting,"hello, ai",original,greet,4 -meeting_schedule,wanna meet with roger,parrot,avail,0 -yes,positive,original,book,1 -yes,sure,original,book,1 -calendar,what's my calendar for march 20?,parrot,avail,0 -yes,i'll check it out ',parrot,book,1 -goodbye,"later, good luck",lambada,bye,2 -goodbye,tootles,original,bye,2 -no,naw,parrot,cancel,3 -yes,all right,parrot,book,1 -no,absolutely not,original,cancel,3 -no,but no way?,parrot,cancel,3 -goodbye,later,original,bye,2 -no,invalid,original,cancel,3 -how_busy,if you want a table at red lobster how long will it take,parrot,avail,0 -goodbye,this conversation was good,parrot,bye,2 -goodbye,good conversation,parrot,bye,2 -goodbye,adios,original,bye,2 -goodbye,peace,original,bye,2 -goodbye,i'm out,parrot,bye,2 -yes,good,parrot,book,1 -goodbye,good bye then,original,bye,2 -how_busy,can you tell me how long the wait is at the red lobster restaurant?,parrot,avail,0 -date,give me the date of today,lambada,avail,0 -greeting,hi,original,greet,4 -how_busy,how long will the wait at this restaurant be?,parrot,avail,0 -no,that's very false,parrot,cancel,3 -yes,absolutely,original,book,1 -thank_you,thanks again!,original,bye,2 -greeting,hiya,original,greet,4 -no,no!,original,cancel,3 -date,what is current day?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -date,what date will it be in 8 days?,parrot,avail,0 -greeting,whats up,original,greet,4 -thank_you,"great, thanks!",original,bye,2 -no,negating,parrot,cancel,3 -no,no that isn't right,original,cancel,3 -greeting,hola!,original,greet,4 -no,naw,parrot,cancel,3 -yes,yeah,original,book,1 -greeting,how're you?,parrot,greet,4 -how_busy,how busy is that restaurant at dinner time?,parrot,avail,0 -yes,10-Apr,original,book,1 -greeting,how is the ai doing,original,greet,4 -greeting,aho,parrot,greet,4 -date,today?,parrot,avail,0 -goodbye,adios,original,bye,2 -date,will the date be in 64 days?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -yes,"yeah, that's right",original,book,1 -no,absolutely false,parrot,cancel,3 -thank_you,thank you!,original,bye,2 -thank_you,nice,parrot,bye,2 -goodbye,bye bye then,original,bye,2 -yes,positive,original,book,1 -greeting,hiya!,original,greet,4 -thank_you,i'm grateful for the assistance,original,bye,2 -goodbye,thanks for the conversation later,parrot,bye,2 -how_busy,how long of a wait is there at olive garden right now,lambada,avail,0 -cancel_reservation,can you cancel my reservation for bob's burgers?,parrot,cancel,3 -thank_you,"great, thanks!",original,bye,2 -yes,yay,lambada,book,1 -yes,absolutely correct,original,book,1 -greeting,hello siri,original,greet,4 -thank_you,i'm so grateful,parrot,bye,2 -greeting,whats new?,parrot,greet,4 -how_busy,there's a cheesecake factory,parrot,avail,0 -greeting,how is the ayi getting on,lambada,greet,4 -how_busy,is ihop busy at 5?,parrot,avail,0 -thank_you,thanks please,original,bye,2 -greeting,how's my family going?,parrot,greet,4 -goodbye,i have to get out there,parrot,bye,2 -goodbye,goodbye ai,parrot,bye,2 -no,that's false,original,cancel,3 -yes,right,parrot,book,1 -goodbye,i enjoyed talking to you later on,parrot,bye,2 -no,no way!,original,cancel,3 -greeting,whats up?,parrot,greet,4 -schedule_meeting,i want to know if there are any meeting rooms available between 4:30 and 6:00,lambada,book,1 -goodbye,goodbye to yours,parrot,bye,2 -yes,accept,parrot,book,1 -no,no please,parrot,cancel,3 -goodbye,take it easy!,original,bye,2 -date,today?,parrot,avail,0 -date,what date tomorrow?,parrot,avail,0 -yes,okay,original,book,1 -greeting,hola,original,greet,4 -goodbye,nice talk,lambada,bye,2 -yes,confirm,original,book,1 -greeting,hello siri,original,greet,4 -yes,not false,parrot,book,1 -meeting_schedule,when is the meeting today?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -yes,yep,original,book,1 -goodbye,later,original,bye,2 -thank_you,i appreciate it,original,bye,2 -date,today?,parrot,avail,0 -yes,sure,original,book,1 -no,naw,original,cancel,3 -calendar,what is my schedule for january 14th?,parrot,avail,0 -thank_you,special thanks to you,original,bye,2 -greeting,ahoy,lambada,greet,4 -thank_you,well done,parrot,bye,2 -no,it is certainly a false statement,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -greeting,hey hey!,original,greet,4 -yes,absolutely correct,original,book,1 -goodbye,goodbyes soon,parrot,bye,2 -date,after another eight days what day will it be,parrot,avail,0 -date,the date is tomorrow,parrot,avail,0 -goodbye,come on soon,parrot,bye,2 -thank_you,thanks!,original,bye,2 -how_busy,is there traffic around dinner time?,parrot,avail,0 -thank_you,okay thanks,original,bye,2 -goodbye,have to go,parrot,bye,2 -greeting,salutations,parrot,greet,4 -no,don't agree,parrot,cancel,3 -thank_you,good job thanks,parrot,bye,2 -yes,facts,original,book,1 -greeting,how's my day going,lambada,greet,4 -goodbye,bye!,original,bye,2 -yes,that would be right,parrot,book,1 -date,in 9 days?,parrot,avail,0 -goodbye,bye bye!,original,bye,2 -thank_you,nice,parrot,bye,2 -calendar,tell me what my calendar looks like for march 14th?,lambada,avail,0 -yes,facts,original,book,1 -goodbye,talk later,original,bye,2 -date,current day,parrot,avail,0 -goodbye,sign off,parrot,bye,2 -no,negative certainly,parrot,cancel,3 -yes,uh huh,original,book,1 -yes,please let's do it,original,book,1 -yes,uh huh,original,book,1 -yes,indeed,parrot,book,1 -goodbye,", goodbye",lambada,bye,2 -meeting_schedule,what's my day's schedule?,parrot,avail,0 -yes,it's positive,parrot,book,1 -no,nay,original,cancel,3 -thank_you,i'm so grateful,parrot,bye,2 -how_busy,how long will the wait be at the steakhouse in the outback,parrot,avail,0 -calendar_update,remove all my events for march 1st from my calendar,lambada,resched,5 -greeting,good morning ai,parrot,greet,4 -how_busy,how long will i have to wait for macaroni grill?,parrot,avail,0 -no,it's a mistake,parrot,cancel,3 -reminder_update,will you add a reminder for me,original,resched,5 -goodbye,bye-bye,original,bye,2 -yes,oh-huh,parrot,book,1 -greeting,hello there ai,original,greet,4 -date,what year?,parrot,avail,0 -goodbye,great conversation,parrot,bye,2 -date,what day are we?,parrot,avail,0 -no,say negative,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -thank_you,you helped,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -no,not true,original,cancel,3 -greeting,aho,parrot,greet,4 -goodbye,"nice talk, goodbye",lambada,bye,2 -yes,"yeah, that's it",lambada,book,1 -thank_you,okay thank you,parrot,bye,2 -schedule_meeting,can you arrange a meeting room?,parrot,book,1 -yes,i guess,parrot,book,1 -date,can you tell me the date for today?,parrot,avail,0 -goodbye,i'll be talking to you soon,lambada,bye,2 -meeting_schedule,when are we going to meet up with jack?,parrot,avail,0 -greeting,hello there!,original,greet,4 -how_busy,what's the wait time for chipotle steakhouse?,parrot,avail,0 -yes,so it's true,parrot,book,1 -greeting,what's up?,parrot,greet,4 -reminder_update,please remind me to give me a pet food deposit,parrot,resched,5 -date,what's the date for tomorrow,parrot,avail,0 -yes,TRUE,lambada,book,1 -yes,huh,parrot,book,1 -no,nay,original,cancel,3 -yes,oh-huh,parrot,book,1 -no,no it's a lie,parrot,cancel,3 -no,negatory,original,cancel,3 -how_busy,what is the wait like at red lobster around 4:30?,lambada,avail,0 -meeting_schedule,meeting today,parrot,avail,0 -reminder_update,have i forgotten?,parrot,resched,5 -no,that seems wrong,lambada,cancel,3 -meeting_schedule,what's my meeting schedule?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -greeting,hiya,original,greet,4 -no,erroneous,parrot,cancel,3 -thank_you,good job helping me,parrot,bye,2 -schedule_meeting,make a meeting for me,parrot,book,1 -no,negation,parrot,cancel,3 -thank_you,very grateful,parrot,bye,2 -yes,absolutely,original,book,1 -thank_you,the best,parrot,bye,2 -goodbye,tootles,original,bye,2 -thank_you,your assistance is appreciated,parrot,bye,2 -meeting_schedule,are there any meetings between 10 and 11?,parrot,avail,0 -yes,yes,original,book,1 -goodbye,very nice conversation,parrot,bye,2 -goodbye,goodnight,original,bye,2 -yes,huh,parrot,book,1 -meeting_schedule,what's the meeting schedule,lambada,avail,0 -greeting,what's up,original,greet,4 -schedule_meeting,is there meeting room available between 10 and 11?,parrot,book,1 -yes,accepted,original,book,1 -goodbye,im leaving,parrot,bye,2 -goodbye,adios!,original,bye,2 -greeting,hello,original,greet,4 -greeting,please tell me what's happening,lambada,greet,4 -yes,right,parrot,book,1 -yes,"yes, that's true",lambada,book,1 -greeting,aloha,original,greet,4 -goodbye,sayonara ,parrot,bye,2 -yes,sure,original,book,1 -greeting,how is the car doing,lambada,greet,4 -date,what date today?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -how_busy,what's the wait time for dinner?,parrot,avail,0 -reminder_update,remember to remember later,parrot,resched,5 -reminder_update,can you send me a reminder to apply for a card?,parrot,resched,5 -meeting_schedule,any meetings on the schedule today?,parrot,avail,0 -yes,that is accurate,original,book,1 -goodbye,"later, goodbye",lambada,bye,2 -goodbye,it was nice to interact with you,parrot,bye,2 -how_busy,is there a waiting period at the olive garden?,parrot,avail,0 -greeting,yo,original,greet,4 -goodbye,good bye my friend,original,bye,2 -no,it's not necessarily true,parrot,cancel,3 -yes,that's true,original,book,1 -meeting_schedule,wanna meet with roger?,parrot,avail,0 -greeting,how've you been?,parrot,greet,4 -yes,yay,lambada,book,1 -no,naw,parrot,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -goodbye,bye,original,bye,2 -goodbye,i'm gone,parrot,bye,2 -goodbye,bye bye now,lambada,bye,2 -how_busy,how long will it take to eat in olive garden?,parrot,avail,0 -yes,i'd say that's true,parrot,book,1 -yes,it's logical,parrot,book,1 -calendar,what's on my schedule for april 3,lambada,avail,0 -no,that's erroneous,parrot,cancel,3 -thank_you,"oh, thanks",original,bye,2 -date,can you tell me the date,parrot,avail,0 -date,date tomorrow?,parrot,avail,0 -goodbye,goodnight,original,bye,2 -goodbye,goodbye,original,bye,2 -cancel_reservation,can you cancel the reservation for dinner?,parrot,cancel,3 -greeting,aloha,original,greet,4 -no,no way,original,cancel,3 -greeting,good evening,original,greet,4 -no,not right,parrot,cancel,3 -no,no?,parrot,cancel,3 -yes,do that?,original,book,1 -yes,yup,original,book,1 -how_busy,is the restaurant crowded around lunch time?,parrot,avail,0 -reminder_update,you know something?,parrot,resched,5 -goodbye,regards,original,bye,2 -calendar,do i have any appointments set for the 2nd of march?,lambada,avail,0 -greeting,aloha,original,greet,4 -goodbye,good talk,parrot,bye,2 -goodbye,adios!,original,bye,2 -date,what date?,parrot,avail,0 -goodbye,i'm gone,parrot,bye,2 -greeting,how is my ai doing?,parrot,greet,4 -yes,that's a clear yes,parrot,book,1 -thank_you,my gratitude,parrot,bye,2 -thank_you,thanks please,original,bye,2 -goodbye,goodbye,original,bye,2 -greeting,hows life for you,lambada,greet,4 -date,in 7 days?,parrot,avail,0 -calendar,i have something to do march 2?,parrot,avail,0 -goodbye,bye!,original,bye,2 -goodbye,bye bye,lambada,bye,2 -calendar,did i put a repair date on my calendar for my car?,lambada,avail,0 -goodbye,i'm out,parrot,bye,2 -greeting,hiya,original,greet,4 -date,you have a date today?,parrot,avail,0 -goodbye,just relax,parrot,bye,2 -yes,certainly,parrot,book,1 -how_busy,how busy is pizzeria rio at 6 pm,lambada,avail,0 -cancel_reservation,the reservation i created,parrot,cancel,3 -yes,ya,original,book,1 -reminder_update,set reminder for tomorrow's meeting,lambada,resched,5 -yes,confirm,original,book,1 -how_busy,see how busy the cheesecake factory is,parrot,avail,0 -how_busy,how long will i wait for a table at red lobster,original,avail,0 -goodbye,ill leave now,parrot,bye,2 -no,it's a negative,parrot,cancel,3 -greeting,what's up,original,greet,4 -goodbye,good conversation,parrot,bye,2 -no,that can't be true,original,cancel,3 -yes,yes,original,book,1 -yes,i'm sure that's true,parrot,book,1 -meeting_schedule,are there any meetings for today?,parrot,avail,0 -thank_you,you just gave me the answer,parrot,bye,2 -goodbye,"goodbye, ai assistant",original,bye,2 -greeting,what's happening?,parrot,greet,4 -greeting,hi,original,greet,4 -greeting,how're you today?,parrot,greet,4 -thank_you,i am happy you did that for me,original,bye,2 -greeting,whats up?,parrot,greet,4 -schedule_meeting,schedule a meeting with me,parrot,book,1 -goodbye,the talk was nice,lambada,bye,2 -no,negatory?,parrot,cancel,3 -reminder_update,can you add a reminder?,parrot,resched,5 -how_busy,how long will i have to wait in the cheese cake factory? '',parrot,avail,0 -thank_you,my gratitude,parrot,bye,2 -greeting,yo how's it going,parrot,greet,4 -yes,do that?,original,book,1 -greeting,"hi, ai",original,greet,4 -yes,a fact,parrot,book,1 -date,date tomorrow?,parrot,avail,0 -no,it's a negative,parrot,cancel,3 -date,now what's the day?,parrot,avail,0 -reminder_update,i have to remind myself about paying taxes,parrot,resched,5 -no,nay,original,cancel,3 -greeting,whats up?,parrot,greet,4 -thank_you,so grateful,parrot,bye,2 -date,what's my date today?,parrot,avail,0 -goodbye,i have to say goodbye,original,bye,2 -no,i'd say no,original,cancel,3 -goodbye,farewell,original,bye,2 -thank_you,thanks again,original,bye,2 -date,give me today's date,original,avail,0 -thank_you,"great, thanks!",original,bye,2 -yes,oh-huh,parrot,book,1 -no,not true,original,cancel,3 -calendar_update,annull the event scheduled for friday,parrot,resched,5 -greeting,ai how you're doing,lambada,greet,4 -cancel_reservation,fill out my reservation at the white cliffs,parrot,cancel,3 -date,what's the day now??,parrot,avail,0 -greeting,how were you?,parrot,greet,4 -yes,i'd like to have that done,parrot,book,1 -meeting_schedule,on my agenda what meetings are scheduled today,lambada,avail,0 -goodbye,goodnight,original,bye,2 -how_busy,how busy is chili's at 5pm,lambada,avail,0 -no,no thanks,original,cancel,3 -goodbye,take a rest,parrot,bye,2 -no,what's wrong with what you just said?,parrot,cancel,3 -yes,"yeah, that's it",lambada,book,1 -goodbye,i'm leaving,parrot,bye,2 -goodbye,peace,original,bye,2 -calendar,does my calendar have something for january 1st?,parrot,avail,0 -calendar_update,need a calendar for april 15,parrot,resched,5 -yes,oh-huh,parrot,book,1 -greeting,ahoy,lambada,greet,4 -thank_you,thanks for answering,parrot,bye,2 -greeting,wassup,original,greet,4 -no,that’s incorrect,original,cancel,3 -thank_you,thanks for helping out,original,bye,2 -goodbye,signing off,original,bye,2 -goodbye,goodbyes,parrot,bye,2 -no,is it a lie,parrot,cancel,3 -calendar,show me the schedule for april 30th?,parrot,avail,0 -goodbye,peace out,original,bye,2 -greeting,salutations!,original,greet,4 -greeting,how've you been feeling,original,greet,4 -reminder_update,remind me,original,resched,5 -calendar_update,please remove the meeting with laurie from my calendars,parrot,resched,5 -thank_you,thank you for the time,parrot,bye,2 -greeting,"hello, ai",original,greet,4 -no,not good,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -yes,agreed,original,book,1 -goodbye,later,original,bye,2 -how_busy,waiting for a burger at red lobster?,parrot,avail,0 -greeting,ahoy there,lambada,greet,4 -date,today?,parrot,avail,0 -yes,yes that's it,original,book,1 -greeting,hi what's up,original,greet,4 -no,that's actually a lie,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -no,not a good sign,parrot,cancel,3 -thank_you,okay thanks,original,bye,2 -goodbye,goodbye,original,bye,2 -schedule_meeting,i'd like you to meet me,parrot,book,1 -thank_you,"great, thanks!",original,bye,2 -yes,obviously,parrot,book,1 -greeting,how's the situation?,parrot,greet,4 -date,what date is it?,original,avail,0 -greeting,how's my treatment?,parrot,greet,4 -greeting,salutations!,original,greet,4 -goodbye,and then goodbye,parrot,bye,2 -no,that's inaccurate,original,cancel,3 -thank_you,good job,lambada,bye,2 -greeting,hey hey!,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,yes you have been correct,lambada,book,1 -greeting,hey there,original,greet,4 -thank_you,your assistance is appreciated,parrot,bye,2 -greeting,salutations,parrot,greet,4 -goodbye,im leaving,parrot,bye,2 -goodbye,fairwell,original,bye,2 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -greeting,hello how's my life?,parrot,greet,4 -greeting,how you are?,parrot,greet,4 -yes,perfect,parrot,book,1 -calendar,is my daughter's birthday in my calendar?,parrot,avail,0 -yes,and you're correct,parrot,book,1 -yes,accepted,original,book,1 -greeting,salutations!,original,greet,4 -no,that is not right,original,cancel,3 -schedule_meeting,please book a meeting room from 1:00pm to 4:00pm,lambada,book,1 -meeting_schedule,meetings today,original,avail,0 -yes,that's a yes,original,book,1 -goodbye,good bye my friend,original,bye,2 -goodbye,talk to you later,original,bye,2 -greeting,hey how's life,original,greet,4 -yes,thats right,original,book,1 -no,it is false,original,cancel,3 -how_busy,how busy is the red lobster at 5,lambada,avail,0 -no,is it a lie,parrot,cancel,3 -yes,that is true,original,book,1 -meeting_schedule,do i have any meetings today between 8 and 9?,original,avail,0 -no,but it's wrong,parrot,cancel,3 -goodbye,sign off,parrot,bye,2 -how_busy,when is chili busy?,parrot,avail,0 -goodbye,catch you around,original,bye,2 -how_busy,how long is the wait at chili's around 9:30,lambada,avail,0 -greeting,how's the world?,parrot,greet,4 -goodbye,say goodbye,parrot,bye,2 -greeting,how are things with you?,parrot,greet,4 -thank_you,i'm so happy you helped me,parrot,bye,2 -greeting,how's everything?,parrot,greet,4 -greeting,welcome,parrot,greet,4 -how_busy,how busy is mishawaka,lambada,avail,0 -greeting,are you okay??,parrot,greet,4 -no,no that isn't correct,original,cancel,3 -goodbye,goodbye goodbye,parrot,bye,2 -greeting,let me know what you're feeling?,parrot,greet,4 -thank_you,awesome thanks,parrot,bye,2 -goodbye,later!,original,bye,2 -no,hell nah,original,cancel,3 -greeting,how's idy doing?,parrot,greet,4 -no,certainly false,parrot,cancel,3 -yes,yup,original,book,1 -how_busy,how many people go to chili's around 9pm?,parrot,avail,0 -calendar,is there anything scheduled for next tuesday?,parrot,avail,0 -how_busy,how long is the wait time at white teddy bear,lambada,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how long will the wait be for a table at the red robin,lambada,avail,0 -how_busy,will iman be busy at 6 o'clock in the evening?,parrot,avail,0 -goodbye,wonderful conversation,lambada,bye,2 -goodbye,greetings,parrot,bye,2 -yes,uh huh,original,book,1 -no,i disagree,parrot,cancel,3 -greeting,ahoy,lambada,greet,4 -goodbye,goodbye!,original,bye,2 -goodbye,bye now,original,bye,2 -how_busy,when will i have to wait before i make a reservation at the olive garden?,parrot,avail,0 -greeting,hi there alexa,original,greet,4 -thank_you,thanks again!,original,bye,2 -greeting,what's new here?,parrot,greet,4 -how_busy,is the wait at the olive garden long?,parrot,avail,0 -no,"nope, that's false",original,cancel,3 -no,that is false,original,cancel,3 -no,negatory,original,cancel,3 -greeting,heyo,original,greet,4 -no,naw,original,cancel,3 -cancel_reservation,call my reservation cancelled,parrot,cancel,3 -schedule_meeting,schedule a meeting for john at 11 o'clock,parrot,book,1 -goodbye,adios ai,original,bye,2 -date,what's tomorrow's date,original,avail,0 -no,it's not a fact,parrot,cancel,3 -reminder_update,set a reminder to sing in my next meeting,lambada,resched,5 -greeting,tell me how it goes?,parrot,greet,4 -no,naw,parrot,cancel,3 -no,that's a negative,original,cancel,3 -greeting,hey bs,lambada,greet,4 -greeting,what's happening,original,greet,4 -yes,yay,lambada,book,1 -no,most definitely false,parrot,cancel,3 -goodbye,sayonara ,parrot,bye,2 -reminder_update,remind me to take my cat to the vet,parrot,resched,5 -no,naw,parrot,cancel,3 -goodbye,goodbyes,parrot,bye,2 -cancel_reservation,please cancel the reservation at red robin for 4 people,parrot,cancel,3 -thank_you,thank you for my help today,parrot,bye,2 -goodbye,goodbye goodbye,parrot,bye,2 -greeting,what's happened?,parrot,greet,4 -how_busy,how busy does the outback get around 7pm,parrot,avail,0 -reminder_update,add a reminder to clean the shower,lambada,resched,5 -no,indeed it's false,parrot,cancel,3 -goodbye,"bye-bye, my friend",lambada,bye,2 -no,that's negative,parrot,cancel,3 -yes,that is right,original,book,1 -goodbye,nice to speak with you,original,bye,2 -how_busy,how busy this restaurant is at dinner time? '',parrot,avail,0 -date,please share the date today,parrot,avail,0 -no,that's inaccurate,original,cancel,3 -cancel_reservation,cancel the reservation at dining out,lambada,cancel,3 -no,please disagree,lambada,cancel,3 -no,nope,original,cancel,3 -goodbye,tootles,original,bye,2 -no,no that's not it,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -thank_you,thanks!,original,bye,2 -no,false sure,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -how_busy,what's the typical crowd at olive gardens?,parrot,avail,0 -date,what date?,parrot,avail,0 -goodbye,good night,original,bye,2 -goodbye,as regards,parrot,bye,2 -no,that's not the way,parrot,cancel,3 -schedule_meeting,please reserve a meeting room from 8:00am until 4:00pm,lambada,book,1 -no,it is false,original,cancel,3 -date,what will it be in 373 days?,parrot,avail,0 -goodbye,see ya,lambada,bye,2 -date,what's tomorrow on the calendar?,parrot,avail,0 -greeting,whats new,lambada,greet,4 -cancel_reservation,must cancel my reservation at the hawaiian for next week,parrot,cancel,3 -goodbye,goodbye,original,bye,2 -no,negation,parrot,cancel,3 -thank_you,appreciate it,original,bye,2 -schedule_meeting,is there a room available between 5 and 10pm?,parrot,book,1 -no,would be no?,parrot,cancel,3 -no,nothing good,parrot,cancel,3 -no,i don't think it's right,parrot,cancel,3 -no,that is actually false,original,cancel,3 -yes,exactly right,original,book,1 -no,no?,parrot,cancel,3 -how_busy,how long is the wait at assagios today?,parrot,avail,0 -meeting_schedule,please show the types of meetings i'm going to attend between noon and 3pm,parrot,avail,0 -reminder_update,keep me in mind,parrot,resched,5 -no,it would be false,parrot,cancel,3 -goodbye,adios ai,original,bye,2 -thank_you,thanks!,original,bye,2 -no,say negative,parrot,cancel,3 -thank_you,thanks very much for your answer,parrot,bye,2 -how_busy,are the ihops really packed around 9pm?,parrot,avail,0 -calendar,what do you have planned for march 2nd?,parrot,avail,0 -cancel_reservation,call my reservation cancelled,parrot,cancel,3 -yes,absolutely,original,book,1 -date,today?,parrot,avail,0 -date,in 100 days?,parrot,avail,0 -greeting,welcome,parrot,greet,4 -no,negatory,original,cancel,3 -no,negating,parrot,cancel,3 -goodbye,i'll leave,parrot,bye,2 -calendar_update,i want you to delete a certain appointment,lambada,resched,5 -thank_you,okay thanks,original,bye,2 -greeting,"hey, how's it going",original,greet,4 -no,negative definitely,parrot,cancel,3 -yes,yeah,original,book,1 -goodbye,get there soon,lambada,bye,2 -thank_you,a million thanks,parrot,bye,2 -no,negative,original,cancel,3 -yes,i want that,parrot,book,1 -reminder_update,you have to remind me,parrot,resched,5 -goodbye,later goodbye,parrot,bye,2 -goodbye,sayonara,original,bye,2 -yes,correct,original,book,1 -thank_you,you answered,parrot,bye,2 -no,i am saying no,original,cancel,3 -no,no?,parrot,cancel,3 -no,negatory?,parrot,cancel,3 -date,in 14 days?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -no,no that's not true,parrot,cancel,3 -yes,huh,parrot,book,1 -no,what you said is false?,parrot,cancel,3 -no,not a good sign,parrot,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -date,where's tomorrow's date,parrot,avail,0 -yes,affirmative,original,book,1 -greeting,bonjour,original,greet,4 -reminder_update,remember to clean up the basement,parrot,resched,5 -greeting,salutations,parrot,greet,4 -how_busy,what is a typical crowd at olive garden?,parrot,avail,0 -no,that's false,original,cancel,3 -yes,TRUE,lambada,book,1 -yes,uh-huh,original,book,1 -yes,ok,original,book,1 -yes,confirmed,original,book,1 -date,what year?,parrot,avail,0 -how_busy,how long does it take to get seated in the restaurant?,parrot,avail,0 -yes,certainly true,parrot,book,1 -thank_you,"oh, thanks",original,bye,2 -goodbye,goodbye ai,parrot,bye,2 -how_busy,how busy is this restaurant today?,parrot,avail,0 -greeting,yo,original,greet,4 -yes,good,parrot,book,1 -yes,good,parrot,book,1 -cancel_reservation,please cancel my reservation in the wine bar,parrot,cancel,3 -date,i need a date,parrot,avail,0 -no,no!,original,cancel,3 -yes,exactly right,original,book,1 -yes,yes you are correct,original,book,1 -thank_you,good looking out,original,bye,2 -how_busy,how busy is that olive garden right now,lambada,avail,0 -goodbye,goodbye ai,parrot,bye,2 -yes,okay,original,book,1 -greeting,hola!,original,greet,4 -greeting,whats new?,parrot,greet,4 -how_busy,how long will it take to sit in chili's?,parrot,avail,0 -date,what is today?,original,avail,0 -no,that seems wrong,lambada,cancel,3 -no,i don't agree,parrot,cancel,3 -no,i do not agree,lambada,cancel,3 -greeting,hiya,original,greet,4 -yes,yay,lambada,book,1 -greeting,hey there,original,greet,4 -date,tell me what the date is for tomorrow,parrot,avail,0 -no,naw,original,cancel,3 -goodbye,go easy,parrot,bye,2 -yes,affirmative,original,book,1 -reminder_update,remind me what i have to do,parrot,resched,5 -goodbye,good conversation,parrot,bye,2 -goodbye,goodbye!,original,bye,2 -yes,obviously,parrot,book,1 -calendar,did you add something to my calendar today?,parrot,avail,0 -thank_you,your answer was a pleasure,parrot,bye,2 -how_busy,how long will i have to wait at noon,lambada,avail,0 -reminder_update,make a reminder to wash my hair,lambada,resched,5 -yes,confirmed,original,book,1 -greeting,nice day,lambada,greet,4 -yes,confirm,original,book,1 -goodbye,greetings,parrot,bye,2 -yes,sure thing,original,book,1 -yes,yeah yeah,lambada,book,1 -thank_you,thanks please,original,bye,2 -goodbye,buhbye,original,bye,2 -yes,oh-huh,parrot,book,1 -thank_you,very grateful,parrot,bye,2 -thank_you,thank you,original,bye,2 -greeting,so how is everything,original,greet,4 -goodbye,goodbye!,original,bye,2 -thank_you,that's what i want,parrot,bye,2 -yes,that's true,original,book,1 -yes,accept,parrot,book,1 -date,give me today's date,original,avail,0 -thank_you,thankyou,parrot,bye,2 -meeting_schedule,bring up the mettings for today,parrot,avail,0 -reminder_update,create a reminder,original,resched,5 -calendar_update,remove my doctor's appointment from my schedule,parrot,resched,5 -no,negatory,original,cancel,3 -how_busy,list the average wait times for chinese restaurants?,parrot,avail,0 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,negative,original,cancel,3 -calendar,tell me what's showing on my calendar for may 1st?,lambada,avail,0 -no,but it's wrong,parrot,cancel,3 -thank_you,my gratitude,parrot,bye,2 -no,no good,original,cancel,3 -date,now what's the day?,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -yes,that is affirmative,original,book,1 -cancel_reservation,get a salad off,parrot,cancel,3 -goodbye,see ya!,original,bye,2 -no,it's not correct,parrot,cancel,3 -cancel_reservation,tell the restaurant to cancel my reservation?,original,cancel,3 -no,nope,original,cancel,3 -no,no way,original,cancel,3 -goodbye,great chat goodbye,lambada,bye,2 -no,ill pass,original,cancel,3 -calendar_update,i need a date added to my calendar for the week of may 14,lambada,resched,5 -greeting,hello,original,greet,4 -no,that is so very negative,lambada,cancel,3 -yes,huh huh,parrot,book,1 -calendar_update,make a calendar for thursday,parrot,resched,5 -yes,yeah yeah,lambada,book,1 -thank_you,please thank you,lambada,bye,2 -yes,i'll check that out,parrot,book,1 -goodbye,later then,lambada,bye,2 -goodbye,good call,parrot,bye,2 -schedule_meeting,i need a room,parrot,book,1 -thank_you,you helped,parrot,bye,2 -goodbye,goodbye bye,parrot,bye,2 -calendar,do you have any events in my calendar for march 3rd?,parrot,avail,0 -yes,ya,original,book,1 -yes,roger that,original,book,1 -calendar_update,cancel the event on february 23rd,parrot,resched,5 -goodbye,go easy,parrot,bye,2 -no,certainly not,original,cancel,3 -date,current day,parrot,avail,0 -no,no no thanks,parrot,cancel,3 -how_busy,how long would the wait be at golden gate steakhouse?,parrot,avail,0 -no,it's false,parrot,cancel,3 -reminder_update,remind me to put the gas in my car?,parrot,resched,5 -yes,that would be awesome,original,book,1 -yes,yup,original,book,1 -yes,is true,parrot,book,1 -how_busy,how long will the wait at chipmons be?,parrot,avail,0 -date,a year?,parrot,avail,0 -schedule_meeting,would you schedule a meeting for me in the new york office?,parrot,book,1 -greeting,ahoy there,lambada,greet,4 -greeting,whats up?,parrot,greet,4 -yes,accepted,original,book,1 -goodbye,later then,lambada,bye,2 -no,not right,parrot,cancel,3 -calendar,are there plans for 12032019?,parrot,avail,0 -goodbye,see you later!,original,bye,2 -greeting,how's life going?,parrot,greet,4 -greeting,what's happened to you?,parrot,greet,4 -thank_you,appreciate it,original,bye,2 -no,no?,parrot,cancel,3 -goodbye,"nice talk, goodbye",lambada,bye,2 -reminder_update,can you remind me to finish a task for me?,parrot,resched,5 -greeting,hola,original,greet,4 -calendar_update,i shall remove fishing from my calendar for soccer,original,resched,5 -no,negatory?,parrot,cancel,3 -greeting,hello,original,greet,4 -greeting,how's the life for you,parrot,greet,4 -date,what's today?,parrot,avail,0 -no,erroneous,parrot,cancel,3 -greeting,how's the ai?,parrot,greet,4 -goodbye,bye bye,lambada,bye,2 -meeting_schedule,show me my meeting schedule,lambada,avail,0 -yes,"yeah, that's it",lambada,book,1 -greeting,hiya!,original,greet,4 -greeting,so how's it going?,parrot,greet,4 -thank_you,thank you,original,bye,2 -no,so that's no,parrot,cancel,3 -thank_you,thank you?,parrot,bye,2 -no,it's a no,original,cancel,3 -yes,TRUE,original,book,1 -greeting,what's happened to you?,parrot,greet,4 -thank_you,gracias,original,bye,2 -thank_you,you've helped,parrot,bye,2 -yes,good yes,lambada,book,1 -how_busy,how busy will the chili's be at 7 pm,lambada,avail,0 -how_busy,is there a lot of wait time at olive garden?,lambada,avail,0 -no,not true,original,cancel,3 -cancel_reservation,abrogate the dinner reservation,parrot,cancel,3 -how_busy,when should i wait for a table at ihop right now?,parrot,avail,0 -goodbye,talk later,original,bye,2 -greeting,are you okay now?,parrot,greet,4 -how_busy,tell me how busy regina is?,parrot,avail,0 -goodbye,wonderful conversation,lambada,bye,2 -thank_you,you are so thoughtful and i appreciate my gesture,original,bye,2 -yes,correct,original,book,1 -yes,"agreed, that's valid",original,book,1 -how_busy,how busy are the imams around 4?,parrot,avail,0 -yes,TRUE,lambada,book,1 -how_busy,how long will i have to wait in the chocolate fountain?,parrot,avail,0 -thank_you,thanks for my help,original,bye,2 -yes,accept,parrot,book,1 -date,what is month and year?,parrot,avail,0 -schedule_meeting,please schedule a meeting with bob,lambada,book,1 -goodbye,great talk,lambada,bye,2 -goodbye,bye bye now,lambada,bye,2 -yes,very true,original,book,1 -goodbye,i'll be gone,parrot,bye,2 -greeting,what's new,lambada,greet,4 -meeting_schedule,what's my schedule for today?,parrot,avail,0 -yes,ok,original,book,1 -how_busy,how busy the steakhouse will be at 7 pm?,parrot,avail,0 -goodbye,adios!,original,bye,2 -yes,ya,original,book,1 -greeting,how's otc?,parrot,greet,4 -greeting,"hey, what's new",original,greet,4 -yes,positive,original,book,1 -yes,correct,original,book,1 -how_busy,how busy is apple pie at 5:30,lambada,avail,0 -calendar_update,eliminate the trip to scotland from my calendar for march 1st,parrot,resched,5 -goodbye,peace out,original,bye,2 -yes,perfect,parrot,book,1 -yes,absolutely!,original,book,1 -no,negation,parrot,cancel,3 -yes,i think you got it,parrot,book,1 -no,negatory,original,cancel,3 -reminder_update,i want to set a reminder for the current time to come,parrot,resched,5 -cancel_reservation,for tonight forget the oyster bar reservation,parrot,cancel,3 -no,no?,parrot,cancel,3 -goodbye,i'm gone,parrot,bye,2 -yes,a fact,parrot,book,1 -no,that is not factual,original,cancel,3 -goodbye,see ya later,original,bye,2 -thank_you,thanks again!,original,bye,2 -no,not right now,original,cancel,3 -goodbye,see ya,lambada,bye,2 -how_busy,what's the wait time at the pizza factory?,parrot,avail,0 -cancel_reservation,the reservation i made,parrot,cancel,3 -how_busy,how long would it take to get seated at applebees,lambada,avail,0 -yes,so it works,parrot,book,1 -goodbye,regards,original,bye,2 -no,nay,original,cancel,3 -thank_you,again thanks,parrot,bye,2 -greeting,how's my treatment?,parrot,greet,4 -how_busy,how long will it take me to sit in olive garden?,parrot,avail,0 -how_busy,if i'm sitting in the departmental office how long will i have to wait?,parrot,avail,0 -no,nope that's not right,parrot,cancel,3 -how_busy,how long will it take for me to sit at ihop?,parrot,avail,0 -schedule_meeting,can you set up the meeting room?,parrot,book,1 -greeting,how are you treated?,parrot,greet,4 -meeting_schedule,when is my meeting with kevin?,parrot,avail,0 -greeting,what's happened?,parrot,greet,4 -goodbye,i'm leaving,parrot,bye,2 -how_busy,how many people are there at the chili's at 6,lambada,avail,0 -how_busy,waiting at cheeseburgers?,parrot,avail,0 -how_busy,what's the wait for a table at olive garden right now,original,avail,0 -thank_you,"great, thanks!",original,bye,2 -no,it seems wrong,parrot,cancel,3 -greeting,how're you today?,parrot,greet,4 -goodbye,fairwell?,parrot,bye,2 -reminder_update,but i need to remember,parrot,resched,5 -thank_you,it's my debt,parrot,bye,2 -no,i'm sorry for the false statement,lambada,cancel,3 -schedule_meeting,i want you to meet with john at 5 pm,parrot,book,1 -how_busy,how long will i have to wait if i want to go to rrb,lambada,avail,0 -date,what day will it be?,parrot,avail,0 -thank_you,many thanks,original,bye,2 -yes,right,parrot,book,1 -goodbye,later gater,original,bye,2 -greeting,wake up ai,parrot,greet,4 -thank_you,you're special thanks,parrot,bye,2 -calendar_update,i have to add my grocery list to my calendar for the next day,parrot,resched,5 -no,nothing,parrot,cancel,3 -thank_you,i appreciate that,original,bye,2 -goodbye,bye-bye,original,bye,2 -yes,ya,original,book,1 -no,the answer is no,original,cancel,3 -yes,"yes, that's right",original,book,1 -no,negating,parrot,cancel,3 -date,what date in 100 days?,parrot,avail,0 -calendar,list the dates for my next dentist appointment?,parrot,avail,0 -greeting,hi there alexa,original,greet,4 -yes,obviously,parrot,book,1 -how_busy,how long would i have to wait at the restaurant,lambada,avail,0 -no,invalid,original,cancel,3 -greeting,hi ai,original,greet,4 -goodbye,tootles?,parrot,bye,2 -yes,that also makes sense,parrot,book,1 -meeting_schedule,when is my meeting with jim?,parrot,avail,0 -no,so that's no,parrot,cancel,3 -no,negation,parrot,cancel,3 -thank_you,the assistance is very helpful,parrot,bye,2 -calendar,what's on january 1st?,parrot,avail,0 -goodbye,goodbye later,parrot,bye,2 -calendar_update,please add final exams to my calendar for may 2,original,resched,5 -no,nay,original,cancel,3 -schedule_meeting,a meeting should be scheduled,parrot,book,1 -how_busy,waiting at macaroni grill?,parrot,avail,0 -no,the wrong answer,parrot,cancel,3 -yes,okay,original,book,1 -yes,correct,original,book,1 -yes,ok,original,book,1 -yes,definitely,original,book,1 -date,is tomorrow's date?,parrot,avail,0 -yes,correct,original,book,1 -how_busy,how long is the wait to eat the red lobster?,parrot,avail,0 -reminder_update,make a reminder to clean out the apartment,lambada,resched,5 -meeting_schedule,is there any meetings between 10 and 11 today?,lambada,avail,0 -date,what date is today?,original,avail,0 -no,not that,original,cancel,3 -thank_you,your answer impressed me,parrot,bye,2 -greeting,hey fellows,parrot,greet,4 -thank_you,"great, thanks!",original,bye,2 -date,today?,parrot,avail,0 -greeting,hi,original,greet,4 -goodbye,sayonara ,parrot,bye,2 -goodbye,see you later alligator,original,bye,2 -greeting,hey fellows,parrot,greet,4 -date,i would like to know the date tomorrow,parrot,avail,0 -greeting,how you're treated,parrot,greet,4 -no,"no, it's not",lambada,cancel,3 -how_busy,what is the average wait time at steakhouse steakhouse around 6?,lambada,avail,0 -date,give me a date tomorrow please?,parrot,avail,0 -greeting,hi,original,greet,4 -greeting,hi what's going on?,parrot,greet,4 -yes,TRUE,original,book,1 -goodbye,see ya,lambada,bye,2 -yes,sure thing,original,book,1 -calendar,do you have any appointments on my calendar for march 22?,parrot,avail,0 -yes,yup,original,book,1 -thank_you,appreciated,original,bye,2 -cancel_reservation,can i cancel my reservation in the restaurant?,parrot,cancel,3 -yes,is true,parrot,book,1 -greeting,and what's up?,parrot,greet,4 -yes,okay,original,book,1 -goodbye,goodbye thank you,parrot,bye,2 -goodbye,see ya,lambada,bye,2 -how_busy,canadian grill at 6pm?,parrot,avail,0 -goodbye,"i like talking to you again, goodbye",lambada,bye,2 -reminder_update,i want to be reminded to pay the electric bill,original,resched,5 -greeting,heyo,original,greet,4 -goodbye,bye,original,bye,2 -yes,yes i am,original,book,1 -schedule_meeting,can you plan a meeting room for monday at 5pm?,parrot,book,1 -no,nay,original,cancel,3 -thank_you,thanks so much,original,bye,2 -goodbye,bye bye,lambada,bye,2 -greeting,what do you want to do?,parrot,greet,4 -yes,obviously,parrot,book,1 -thank_you,thanks,original,bye,2 -goodbye,sayonara,original,bye,2 -thank_you,thanks very much for your answer,parrot,bye,2 -no,erroneous,parrot,cancel,3 -yes,sure thing,original,book,1 -no,negatory,original,cancel,3 -goodbye,tootles,original,bye,2 -meeting_schedule,what's my meeting plan?,parrot,avail,0 -yes,is true,parrot,book,1 -how_busy,how long will it take to wait on black friday?,parrot,avail,0 -calendar,can you see if i have an event called amy's surprise party on my calendar?,parrot,avail,0 -goodbye,very nice conversation,parrot,bye,2 -greeting,hiya!,original,greet,4 -schedule_meeting,i need a meeting room between 1130 and noon,parrot,book,1 -yes,it's a yes from me,parrot,book,1 -no,absolutely not,original,cancel,3 -no,that can't be true?,parrot,cancel,3 -how_busy,wait at jalapeno ranch?,parrot,avail,0 -yes,huh,parrot,book,1 -no,negatory?,parrot,cancel,3 -how_busy,is the mall open at noon? if so why?,parrot,avail,0 -reminder_update,"new reminder, please",original,resched,5 -thank_you,appreciate the support,parrot,bye,2 -no,that's not right,original,cancel,3 -goodbye,i'll see you later,lambada,bye,2 -greeting,hola!,original,greet,4 -no,erroneous,parrot,cancel,3 -yes,10-Apr,original,book,1 -date,what is that day?,parrot,avail,0 -thank_you,you answered my questions right,parrot,bye,2 -greeting,"why, hello bandit",original,greet,4 -goodbye,goodnight,original,bye,2 -greeting,let me know how you're doing?,parrot,greet,4 -goodbye,good conversation,parrot,bye,2 -no,so that's no,parrot,cancel,3 -how_busy,is the street crowded around 11am?,parrot,avail,0 -meeting_schedule,how many meetings will i have between noon and 1?,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -date,what day?,parrot,avail,0 -how_busy,show me the wait times for ihop cheese?,parrot,avail,0 -greeting,aho,parrot,greet,4 -no,it's not right,parrot,cancel,3 -greeting,hey hey!,original,greet,4 -greeting,how you're treated?,parrot,greet,4 -goodbye,nice talk,lambada,bye,2 -how_busy,how busy is red robin around 6pm,lambada,avail,0 -thank_you,thanks!,original,bye,2 -greeting,what do you feel?,parrot,greet,4 -how_busy,sage is busy at noon?,parrot,avail,0 -thank_you,well done,parrot,bye,2 -no,not good,parrot,cancel,3 -yes,i agree,original,book,1 -goodbye,"enjoy my day, goodbye",original,bye,2 -yes,great,original,book,1 -greeting,good day,original,greet,4 -yes,absolutely correct,original,book,1 -date,what's the next date?,parrot,avail,0 -no,nothing,parrot,cancel,3 -thank_you,and i'm grateful,parrot,bye,2 -no,i don't think it's true,parrot,cancel,3 -goodbye,glad we can talk,parrot,bye,2 -goodbye,good talking to you,lambada,bye,2 -cancel_reservation,no longer need for reservation,parrot,cancel,3 -how_busy,how busy is michael at 5 pm?,parrot,avail,0 -yes,yeah,original,book,1 -thank_you,thankyou,parrot,bye,2 -cancel_reservation,im not going to need the reservation anymore,lambada,cancel,3 -date,today what date?,parrot,avail,0 -greeting,what do i feel?,parrot,greet,4 -goodbye,send a goodbye,lambada,bye,2 -reminder_update,set reminder to feed cat at 6 pm,lambada,resched,5 -greeting,salutation,parrot,greet,4 -greeting,ahoy,lambada,greet,4 -yes,obviously,parrot,book,1 -no,not at all,original,cancel,3 -calendar,what's on my calendar for march 10?,parrot,avail,0 -yes,good,parrot,book,1 -thank_you,you've been great,parrot,bye,2 -yes,okay,original,book,1 -no,not correct,parrot,cancel,3 -thank_you,my thanks,parrot,bye,2 -greeting,hiya,original,greet,4 -yes,uh-huh,original,book,1 -yes,that's a fact,lambada,book,1 -goodbye,bye!,original,bye,2 -meeting_schedule,when's the meeting?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -thank_you,"awesome, thanks",original,bye,2 -yes,"affirmative, go ahead",original,book,1 -greeting,how is this going?,parrot,greet,4 -no,negative,original,cancel,3 -yes,"yeah, that is true",lambada,book,1 -how_busy,tell me the current wait time at chili?,parrot,avail,0 -yes,it'll be yes,parrot,book,1 -greeting,hey,original,greet,4 -no,"no, that is wrong",original,cancel,3 -goodbye,"good talk, see you later",original,bye,2 -yes,perfect,parrot,book,1 -goodbye,bye!,original,bye,2 -thank_you,thanks for my response,original,bye,2 -goodbye,it's over,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -yes,perfect,parrot,book,1 -thank_you,i'm really thankful,parrot,bye,2 -yes,say positive,parrot,book,1 -goodbye,peace,original,bye,2 -yes,seems true,parrot,book,1 -no,false sure,parrot,cancel,3 -goodbye,goodbye!,original,bye,2 -yes,very true,original,book,1 -no,it's not right,parrot,cancel,3 -greeting,"hello, anyone there",original,greet,4 -no,i'd rather not answer it,parrot,cancel,3 -goodbye,i'm out,parrot,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,that is erroneous,original,cancel,3 -greeting,how is my day?,parrot,greet,4 -calendar,are there any events happening between march 5th and march 8th?,lambada,avail,0 -reminder_update,remind me to put the gas in my car,parrot,resched,5 -how_busy,how long is the wait at mcdonalds today,lambada,avail,0 -goodbye,goodbye now,parrot,bye,2 -how_busy,waiting at cheeseburgers?,parrot,avail,0 -reminder_update,let me be reminded?,parrot,resched,5 -calendar,what is planned for february 22nd?,parrot,avail,0 -meeting_schedule,when do i meet roger?,parrot,avail,0 -no,is my falsehood?,parrot,cancel,3 -reminder_update,make me remember to pay my bills,parrot,resched,5 -greeting,hi,original,greet,4 -greeting,hey there,original,greet,4 -goodbye,i'm gone,parrot,bye,2 -yes,yep,original,book,1 -schedule_meeting,it needs a schedule and i need to know how it works,parrot,book,1 -no,"no, that's incorrect",original,cancel,3 -yes,do that?,original,book,1 -goodbye,fairwell?,parrot,bye,2 -how_busy,what's the wait at iman's,lambada,avail,0 -date,show me a calendar,original,avail,0 -no,that's erroneous,parrot,cancel,3 -no,no please,parrot,cancel,3 -no,negatory,original,cancel,3 -greeting,yo,original,greet,4 -no,naw,original,cancel,3 -yes,oh yes,original,book,1 -how_busy,which place in town is the busiest?,parrot,avail,0 -yes,correct,original,book,1 -yes,all right,original,book,1 -no,it's very wrong,parrot,cancel,3 -no,no good,original,cancel,3 -greeting,bonjour,original,greet,4 -no,not happening,original,cancel,3 -calendar,can you list my calendar of events?,parrot,avail,0 -reminder_update,make a reminder to pay my taxes on monday,lambada,resched,5 -thank_you,nice,parrot,bye,2 -date,in 14 days?,parrot,avail,0 -no,naw,original,cancel,3 -goodbye,peace,original,bye,2 -how_busy,how long will it take to eat cheese cake factory,parrot,avail,0 -yes,confirmed,original,book,1 -goodbye,adios!,original,bye,2 -how_busy,how busy is that chipotle grill?,parrot,avail,0 -yes,yeah,original,book,1 -goodbye,"no problem, goodbye",lambada,bye,2 -yes,yeah yeah,lambada,book,1 -calendar_update,i must add my wedding to my calendar for march 1,parrot,resched,5 -no,naw,original,cancel,3 -greeting,hi how's it going,lambada,greet,4 -no,please no,parrot,cancel,3 -meeting_schedule,what is the time of the meeting?,parrot,avail,0 -thank_you,you helped,parrot,bye,2 -thank_you,nice,parrot,bye,2 -yes,huh,parrot,book,1 -yes,agreed,original,book,1 -goodbye,i'm leaving,parrot,bye,2 -greeting,ahoy hoy,original,greet,4 -date,calender says tomorrow is,original,avail,0 -yes,definitely,original,book,1 -no,negation,parrot,cancel,3 -how_busy,how long will the wait be at chili's at 5pm?,parrot,avail,0 -thank_you,thanks for helping,original,bye,2 -meeting_schedule,when's the meeting?,parrot,avail,0 -meeting_schedule,give me a list of meetings on my calendar today,lambada,avail,0 -goodbye,bye-bye,original,bye,2 -yes,certainly true,parrot,book,1 -goodbye,i liked our conversation,parrot,bye,2 -yes,i'm going to tell you tes,parrot,book,1 -greeting,have you been good??,parrot,greet,4 -yes,right,parrot,book,1 -greeting,how's my treatment?,parrot,greet,4 -goodbye,good-bye,parrot,bye,2 -yes,"yep, that's right",original,book,1 -goodbye,afterward,parrot,bye,2 -how_busy,how busy is the chili at 6pm?,parrot,avail,0 -greeting,what am i feeling?,lambada,greet,4 -how_busy,chili's busy around 730?,parrot,avail,0 -goodbye,goodbye to yours,parrot,bye,2 -no,false sure,parrot,cancel,3 -calendar_update,delete the event scheduled for tuesday,lambada,resched,5 -goodbye,goodbye bye,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -thank_you,thank you for the vacation,parrot,bye,2 -schedule_meeting,are there any meeting rooms available between 7-9?,parrot,book,1 -greeting,hey how's life,original,greet,4 -thank_you,i'm grateful,original,bye,2 -yes,"yep, that's right",original,book,1 -how_busy,how long will i have to wait for a table at the restaurant,lambada,avail,0 -no,negation,parrot,cancel,3 -yes,yay,lambada,book,1 -calendar_update,i need to delete an event in my calendar,parrot,resched,5 -goodbye,good conversation,parrot,bye,2 -how_busy,how long can i expect to wait for a table at a restaurant,parrot,avail,0 -goodbye,later gator!,original,bye,2 -no,nay,original,cancel,3 -goodbye,i'm leaving,parrot,bye,2 -greeting,all right now?,parrot,greet,4 -no,no good,original,cancel,3 -no,so that's no,parrot,cancel,3 -greeting,how's it going?,parrot,greet,4 -no,so that's no,parrot,cancel,3 -yes,accepted,original,book,1 -goodbye,"i am glad we got to talk again, see you soon",original,bye,2 -how_busy,tell me if chili's busy around 8 o'clock?,parrot,avail,0 -no,no,lambada,cancel,3 -yes,sure,original,book,1 -greeting,aloha,original,greet,4 -yes,yep,original,book,1 -no,but no way?,parrot,cancel,3 -yes,that's definitely true,original,book,1 -greeting,hey how's ot,lambada,greet,4 -how_busy,can you tell me the wait times for a table at the factory?,parrot,avail,0 -yes,yay,lambada,book,1 -thank_you,thanks for answering,parrot,bye,2 -goodbye,bye now,original,bye,2 -yes,accept,parrot,book,1 -date,what's the year?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -reminder_update,set a reminder for 2 pm to feed the cat,parrot,resched,5 -yes,exactly right,original,book,1 -yes,you're right,original,book,1 -greeting,whats new,lambada,greet,4 -yes,right,parrot,book,1 -goodbye,fairwell,original,bye,2 -how_busy,would i be able to get a table at chili's around noon,lambada,avail,0 -schedule_meeting,is there a meeting room available between noon and 1pm?,lambada,book,1 -yes,im sure you're right,parrot,book,1 -date,where's the date tomorrow?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -no,that is wrong,original,cancel,3 -yes,"yes, that is correct",original,book,1 -greeting,how are you,original,greet,4 -calendar,what happens between may 5 and 6?,parrot,avail,0 -calendar,did i put an appointment on my calendar for an exam?,parrot,avail,0 -thank_you,you helped me out,parrot,bye,2 -thank_you,you've tried,parrot,bye,2 -no,no thanks,original,cancel,3 -yes,ya,original,book,1 -yes,that's definitely true,original,book,1 -yes,"yes, please",parrot,book,1 -yes,so it's checked,parrot,book,1 -greeting,hello there!,original,greet,4 -greeting,salutations,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -goodbye,see ya,original,bye,2 -greeting,aho,parrot,greet,4 -no,negation,parrot,cancel,3 -yes,right,parrot,book,1 -no,no?,parrot,cancel,3 -goodbye,goodbye my friend,parrot,bye,2 -yes,huh,parrot,book,1 -goodbye,fairwell,original,bye,2 -calendar,please see my calendar,parrot,avail,0 -yes,perfect,parrot,book,1 -no,that's a negation,parrot,cancel,3 -how_busy,wait how long before we go to olive gardens?,parrot,avail,0 -thank_you,nice,parrot,bye,2 -how_busy,wait how long before we're seated in this restaurant?,parrot,avail,0 -no,not really,original,cancel,3 -thank_you,i'm happy you helped me,parrot,bye,2 -goodbye,thank you for chatting later,parrot,bye,2 -thank_you,your answer pleased me,original,bye,2 -thank_you,appreciated,original,bye,2 -goodbye,goodnight,original,bye,2 -calendar_update,i don't have to go to the zoo on the 8th of this month,parrot,resched,5 -yes,truthful is my answer,lambada,book,1 -yes,agreed,original,book,1 -goodbye,tootles?,parrot,bye,2 -meeting_schedule,meetings today,original,avail,0 -goodbye,good-bye,parrot,bye,2 -no,erroneous,parrot,cancel,3 -how_busy,the wait time for a table in olive garden will be 12,parrot,avail,0 -reminder_update,please remind me again,parrot,resched,5 -greeting,hello what's up?,parrot,greet,4 -greeting,how's everything,original,greet,4 -goodbye,bye bye,lambada,bye,2 -yes,uh-huh,original,book,1 -how_busy,tell me the time it takes to sit in the restaurant?,parrot,avail,0 -cancel_reservation,cancellation of dinner reservations,parrot,cancel,3 -greeting,hola,original,greet,4 -no,i don't think so,original,cancel,3 -no,absolutely false,parrot,cancel,3 -date,how can i know my account's date?,parrot,avail,0 -yes,huh,parrot,book,1 -date,date please,original,avail,0 -greeting,hello there!,original,greet,4 -no,please no,parrot,cancel,3 -no,don't agree,parrot,cancel,3 -yes,yeah,original,book,1 -goodbye,i'm out,parrot,bye,2 -date,please tell me the date tomorrow,parrot,avail,0 -goodbye,i'll leave now,parrot,bye,2 -greeting,yo how yo feelin,lambada,greet,4 -yes,certainly,parrot,book,1 -thank_you,really great!,original,bye,2 -how_busy,how long will i have to wait for a table at tenpence?,parrot,avail,0 -yes,that's correct,original,book,1 -greeting,how is everything going,original,greet,4 -thank_you,many thanks,original,bye,2 -goodbye,goodnight,original,bye,2 -date,which date today?,parrot,avail,0 -goodbye,wonderful conversation,lambada,bye,2 -calendar,is it time for my haircut on wednesdays?,parrot,avail,0 -no,this isn't true,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -calendar,tell me what's going on on march 2nd,parrot,avail,0 -how_busy,can you tell me how busy it is at zilker's at 7pm?,parrot,avail,0 -yes,uh-huh,original,book,1 -how_busy,will be the most crowded chili's at 5 pm,lambada,avail,0 -yes,correct,original,book,1 -greeting,salutation,parrot,greet,4 -goodbye,i leave now,parrot,bye,2 -goodbye,catch you later,original,bye,2 -calendar,show me if i added an event on my calendar?,parrot,avail,0 -how_busy,has the wait been long for orange blossom?,parrot,avail,0 -thank_you,thank you for everything you said,parrot,bye,2 -yes,it's true for sure,parrot,book,1 -meeting_schedule,list the schedules of meetings today between noon and one?,parrot,avail,0 -how_busy,do you know how busy the cheesecake factory is?,parrot,avail,0 -goodbye,bye!,original,bye,2 -yes,yay,lambada,book,1 -goodbye,later gator!,original,bye,2 -goodbye,thank you for talking to me,lambada,bye,2 -goodbye,goodbyes,parrot,bye,2 -no,that's totally false,parrot,cancel,3 -greeting,"good morning, ai",original,greet,4 -date,which date today?,parrot,avail,0 -greeting,salutations!,original,greet,4 -yes,yay,lambada,book,1 -calendar_update,take lunch off my calendar on the 3rd,original,resched,5 -yes,yeah,original,book,1 -goodbye,have fun?,lambada,bye,2 -yes,sure,original,book,1 -yes,that's all right,parrot,book,1 -goodbye,and then goodbye,parrot,bye,2 -greeting,salutations,parrot,greet,4 -calendar,is an event on my calendar?,parrot,avail,0 -no,nope that's not right,parrot,cancel,3 -meeting_schedule,wanna meet roger?,parrot,avail,0 -calendar,read my calendar,parrot,avail,0 -yes,certainly true,parrot,book,1 -yes,affirmative,original,book,1 -no,nope,original,cancel,3 -cancel_reservation,let robert be my reservation manager for valentines day,lambada,cancel,3 -goodbye,talk later,original,bye,2 -yes,certainly true,parrot,book,1 -how_busy,how long can i wait before i go to chocolate fountain,lambada,avail,0 -no,indeed it's false,parrot,cancel,3 -thank_you,so grateful,parrot,bye,2 -greeting,hello bs,parrot,greet,4 -greeting,hello hello good day,parrot,greet,4 -schedule_meeting,need a meeting room,parrot,book,1 -thank_you,i'm glad you've helped me,parrot,bye,2 -no,nope,original,cancel,3 -goodbye,bye!,original,bye,2 -yes,ok,original,book,1 -goodbye,just relax,parrot,bye,2 -goodbye,until next time,original,bye,2 -thank_you,gracias,original,bye,2 -goodbye,just relax,parrot,bye,2 -yes,good yes,lambada,book,1 -goodbye,tootles?,parrot,bye,2 -no,"no, don't do that",original,cancel,3 -how_busy,show me the current wait time at cheerios?,parrot,avail,0 -no,naw,parrot,cancel,3 -no,nothing good,parrot,cancel,3 -no,nada,original,cancel,3 -yes,absolutely correct,original,book,1 -yes,positive,parrot,book,1 -meeting_schedule,let me discuss my meetings for the day,parrot,avail,0 -greeting,how's the world?,parrot,greet,4 -date,what year?,parrot,avail,0 -schedule_meeting,can you reserve a meeting space for 4:00 on thursday?,original,book,1 -how_busy,for dinner how busy is chili?,parrot,avail,0 -goodbye,good conversation,parrot,bye,2 -yes,"yes, please",parrot,book,1 -yes,indeed,original,book,1 -date,what's my date?,parrot,avail,0 -yes,correct,original,book,1 -goodbye,goodbye,original,bye,2 -goodbye,see you later!,original,bye,2 -greeting,hello hello good day,parrot,greet,4 -goodbye,bye bye,lambada,bye,2 -goodbye,buhbye,original,bye,2 -goodbye,see ya,lambada,bye,2 -no,it's not necessarily true,parrot,cancel,3 -thank_you,"great, thanks!",original,bye,2 -goodbye,tootles,original,bye,2 -goodbye,talk later,original,bye,2 -goodbye,say goodbye,parrot,bye,2 -goodbye,goodbye,original,bye,2 -yes,good,parrot,book,1 -how_busy,show me if it's around 9pm?,parrot,avail,0 -greeting,hi,original,greet,4 -calendar,what's happening on may 3rd?,parrot,avail,0 -yes,confirm,original,book,1 -how_busy,chili's busy at 7 pm?,parrot,avail,0 -yes,it's logical,parrot,book,1 -greeting,well hello,original,greet,4 -goodbye,see ya!,original,bye,2 -goodbye,see ya,lambada,bye,2 -calendar_update,stop this event today,parrot,resched,5 -no,FALSE,lambada,cancel,3 -how_busy,tell me the time to wait for a table at macaroni grill?,parrot,avail,0 -goodbye,it's over,parrot,bye,2 -goodbye,bye!,original,bye,2 -yes,obviously,parrot,book,1 -goodbye,bye!,original,bye,2 -yes,uh huh,original,book,1 -greeting,salutation,parrot,greet,4 -goodbye,sayonara,original,bye,2 -how_busy,how busy is mishawaka?,parrot,avail,0 -thank_you,well done,parrot,bye,2 -yes,affirmitive,original,book,1 -how_busy,what's the wait like at ihop right now,lambada,avail,0 -greeting,hola,original,greet,4 -thank_you,thanks,original,bye,2 -yes,yay,lambada,book,1 -how_busy,show me the wait time at olive garden right now?,parrot,avail,0 -greeting,how's idy doing,lambada,greet,4 -thank_you,thanks for that information,lambada,bye,2 -meeting_schedule,are meetings with lance scheduled today?,parrot,avail,0 -meeting_schedule,what meetings are today?,lambada,avail,0 -calendar,on tuesday you should have a meeting,parrot,avail,0 -yes,huh,parrot,book,1 -no,negatory?,parrot,cancel,3 -no,that is erroneous,original,cancel,3 -schedule_meeting,i want to meet you in the blue room at 9am?,parrot,book,1 -how_busy,how much red lobster gets at 7pm?,parrot,avail,0 -greeting,hello ai,parrot,greet,4 -cancel_reservation,cancel my dinner reservation,lambada,cancel,3 -goodbye,catch you around,original,bye,2 -yes,confirm,original,book,1 -how_busy,how long will it take to get seated at the cheese cake factory,lambada,avail,0 -no,nope not it,original,cancel,3 -thank_you,i'm so grateful for my check,parrot,bye,2 -greeting,hi,original,greet,4 -no,that's false,original,cancel,3 -meeting_schedule,when is my meeting?,parrot,avail,0 -greeting,how is life?,parrot,greet,4 -schedule_meeting,i need a meeting room,parrot,book,1 -greeting,hello,original,greet,4 -yes,accept,parrot,book,1 -no,it's a false,lambada,cancel,3 -thank_you,you helped,parrot,bye,2 -no,"no, that's wrong",original,cancel,3 -no,please no,parrot,cancel,3 -greeting,yo,original,greet,4 -thank_you,did you do well?,parrot,bye,2 -yes,all right,parrot,book,1 -goodbye,goodbyes soon,parrot,bye,2 -yes,okay,original,book,1 -greeting,how ya doin,original,greet,4 -greeting,hiya,original,greet,4 -no,that's negative,parrot,cancel,3 -goodbye,tootles?,parrot,bye,2 -greeting,hola!,original,greet,4 -goodbye,"thanks, bye",original,bye,2 -reminder_update,to be a professional photographer,parrot,resched,5 -no,that's not right?,parrot,cancel,3 -how_busy,sage's busy at noon?,parrot,avail,0 -thank_you,your assistance is appreciated,parrot,bye,2 -date,i need the date,parrot,avail,0 -date,what day?,parrot,avail,0 -goodbye,good luck,lambada,bye,2 -goodbye,regards,original,bye,2 -goodbye,take a break,parrot,bye,2 -no,not so i think,parrot,cancel,3 -greeting,how's otc?,parrot,greet,4 -goodbye,buhbye,original,bye,2 -no,no!,original,cancel,3 -thank_you,many thanks,original,bye,2 -yes,great,original,book,1 -goodbye,a good talk,parrot,bye,2 -no,i'd prefer not to answer that,lambada,cancel,3 -goodbye,later goodbye,parrot,bye,2 -yes,do that?,original,book,1 -greeting,how are things going? hello,parrot,greet,4 -date,today's date is exactly what?,parrot,avail,0 -meeting_schedule,what time do i meet jane?,parrot,avail,0 -goodbye,i'm out,parrot,bye,2 -no,no way,original,cancel,3 -greeting,hello,original,greet,4 -no,not correct,parrot,cancel,3 -goodbye,adios,original,bye,2 -calendar,do you have anything planned for march 2?,parrot,avail,0 -how_busy,how crowded is the restaurant at 8am?,parrot,avail,0 -greeting,hiya,original,greet,4 -goodbye,see ya,original,bye,2 -yes,a fact,parrot,book,1 -how_busy,tell me the average wait time?,parrot,avail,0 -cancel_reservation,discard my dinner reservation,parrot,cancel,3 -no,most definitely false,parrot,cancel,3 -goodbye,thanks goodbye,parrot,bye,2 -yes,certainly,parrot,book,1 -yes,absolutely,original,book,1 -greeting,hey there!,original,greet,4 -date,list the current date?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -goodbye,bye!,original,bye,2 -goodbye,goodbye for now,parrot,bye,2 -thank_you,i appreciate my help!,original,bye,2 -no,FALSE,lambada,cancel,3 -cancel_reservation,my reservation for dinner at red robin needs to be cancelled,parrot,cancel,3 -yes,"yes, please",original,book,1 -yes,uh-huh,original,book,1 -cancel_reservation,discard my dinner reservation,parrot,cancel,3 -goodbye,goodbye bye,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -thank_you,thanks a million,original,bye,2 -reminder_update,set a reminder to feed the dogs,original,resched,5 -calendar,display my calendar,lambada,avail,0 -no,it is false,original,cancel,3 -greeting,how are things going?,parrot,greet,4 -goodbye,great talk,lambada,bye,2 -no,so that's no,parrot,cancel,3 -thank_you,thanks a million,original,bye,2 -yes,of course,original,book,1 -no,it's very wrong,parrot,cancel,3 -how_busy,how long will the wait time be at italian restaurant,lambada,avail,0 -yes,facts,original,book,1 -thank_you,gracias,original,bye,2 -how_busy,list the minimum wait times at the outback steak house?,parrot,avail,0 -greeting,hi,original,greet,4 -thank_you,awesome thanks,parrot,bye,2 -goodbye,i have to run now,lambada,bye,2 -greeting,whats up?,parrot,greet,4 -greeting,"hello, ai",original,greet,4 -yes,certainly,parrot,book,1 -no,FALSE,original,cancel,3 -yes,uh-huh,original,book,1 -goodbye,bye bye!,original,bye,2 -reminder_update,i need to be reminded,original,resched,5 -yes,yay,lambada,book,1 -yes,good,parrot,book,1 -yes,that's correct,original,book,1 -how_busy,how long will the wait to get into a restaurant be,lambada,avail,0 -how_busy,tell me how busy olive garden will be at 6pm?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -goodbye,thank you for talking to me,lambada,bye,2 -yes,positive,parrot,book,1 -goodbye,afterward,parrot,bye,2 -schedule_meeting,can i book a meeting room between 10 and 11?,parrot,book,1 -goodbye,adios!,original,bye,2 -greeting,salutations,parrot,greet,4 -calendar,tell me what my calendar looks like for april 13?,original,avail,0 -calendar_update,remove mom's birthday from the calendar,parrot,resched,5 -yes,indeed,parrot,book,1 -no,negation,parrot,cancel,3 -yes,i can confirm,parrot,book,1 -how_busy,tell me how busy the chilis will be between 11 and 2?,parrot,avail,0 -no,"no, that is incorrect",original,cancel,3 -goodbye,see ya later,original,bye,2 -no,absolutely false,parrot,cancel,3 -goodbye,on the highway,parrot,bye,2 -cancel_reservation,cancellation of dinner reservation tonight,parrot,cancel,3 -goodbye,sayonara,original,bye,2 -greeting,how does it go?,parrot,greet,4 -yes,huh,parrot,book,1 -yes,positive,original,book,1 -goodbye,say goodbye,parrot,bye,2 -yes,positive,original,book,1 -greeting,how's everything,original,greet,4 -how_busy,can i wait for the red lobster?,parrot,avail,0 -yes,oh-huh,parrot,book,1 -date,is today monday?,original,avail,0 -greeting,what's my feeling?,parrot,greet,4 -how_busy,how long will i have to wait if i want to eat red lobster,parrot,avail,0 -thank_you,you have done well,lambada,bye,2 -goodbye,bye-bye,original,bye,2 -no,it's no,parrot,cancel,3 -yes,absolutely!,original,book,1 -goodbye,good night,original,bye,2 -greeting,how's it going now?,parrot,greet,4 -goodbye,see ya,lambada,bye,2 -date,today?,parrot,avail,0 -yes,very true,original,book,1 -reminder_update,make a reminder to give me my pet's food,lambada,resched,5 -goodbye,regards,original,bye,2 -yes,that is affirmative,original,book,1 -cancel_reservation,abrogate the dinner reservation,parrot,cancel,3 -no,that's so negative,parrot,cancel,3 -greeting,hiya!,original,greet,4 -greeting,salutation,parrot,greet,4 -goodbye,i'm going,parrot,bye,2 -no,no,lambada,cancel,3 -yes,it's true,original,book,1 -meeting_schedule,show me the time of my meeting today,parrot,avail,0 -goodbye,i leave now,parrot,bye,2 -goodbye,goodbye then,parrot,bye,2 -thank_you,thanks so much!,original,bye,2 -no,not good,parrot,cancel,3 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,thanks for my time,parrot,bye,2 -greeting,hey fellows,parrot,greet,4 -calendar_update,#NAME?,parrot,resched,5 -no,absolutely not,original,cancel,3 -no,that's incorrect,original,cancel,3 -yes,yes that is true,lambada,book,1 -no,negation,parrot,cancel,3 -how_busy,tell me the time it takes to eat at black jack,parrot,avail,0 -greeting,how's life in my town,lambada,greet,4 -no,invalid,original,cancel,3 -goodbye,bye now,original,bye,2 -thank_you,okay thanks,original,bye,2 -goodbye,send a goodbye,lambada,bye,2 -no,is my falsehood?,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -calendar,what is my schedule for tomorrow?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -thank_you,"nice, excellent!",original,bye,2 -thank_you,you've been great,parrot,bye,2 -yes,ok,original,book,1 -schedule_meeting,can you set up a meeting with scott at 9 am?,parrot,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,tootles?,parrot,bye,2 -no,negatory?,parrot,cancel,3 -no,ill pass,original,cancel,3 -greeting,hola!,original,greet,4 -goodbye,as regards,parrot,bye,2 -goodbye,peace,original,bye,2 -greeting,aloha,original,greet,4 -no,invalid,original,cancel,3 -thank_you,you answered,parrot,bye,2 -yes,exactly right,original,book,1 -greeting,bonjour,original,greet,4 -calendar_update,delete dentist from my calendar,original,resched,5 -how_busy,wait how long?,parrot,avail,0 -how_busy,how long will the wait time be at ihop?,parrot,avail,0 -yes,"yep, that's true",original,book,1 -yes,absolutely,original,book,1 -thank_you,really great!,original,bye,2 -greeting,what's up with you,original,greet,4 -yes,facts,original,book,1 -no,nay,original,cancel,3 -cancel_reservation,i'm not going to need the reservations,parrot,cancel,3 -greeting,hey how have you been?,parrot,greet,4 -no,it's a mistake,parrot,cancel,3 -goodbye,bye bye,lambada,bye,2 -yes,that's correct,original,book,1 -goodbye,great conversation,parrot,bye,2 -calendar_update,take my dinner plans off my calendar for tomorrow,original,resched,5 -greeting,salutations!,original,greet,4 -goodbye,i'm going,parrot,bye,2 -yes,"yes, please",parrot,book,1 -no,that's absolutely wrong,parrot,cancel,3 -reminder_update,make me a reminder,lambada,resched,5 -reminder_update,set a reminder,original,resched,5 -yes,facts,original,book,1 -greeting,what's happening?,parrot,greet,4 -schedule_meeting,if a meeting room is available between 4 and 5?,parrot,book,1 -yes,TRUE,original,book,1 -yes,accepted,original,book,1 -goodbye,goodbye!,original,bye,2 -how_busy,tell me the time to wait for red lobster?,parrot,avail,0 -goodbye,"this was fun, see you around bye",original,bye,2 -meeting_schedule,wanna meet roger?,parrot,avail,0 -goodbye,my friend,parrot,bye,2 -date,in 7 days?,parrot,avail,0 -goodbye,sayonara,original,bye,2 -no,so it's not possible,parrot,cancel,3 -date,which date today?,parrot,avail,0 -calendar,list what's on my calendar for march 10,parrot,avail,0 -yes,my response to that is yes,original,book,1 -goodbye,the talk was nice,lambada,bye,2 -goodbye,goodbye ai,parrot,bye,2 -thank_you,well done,parrot,bye,2 -yes,correct,original,book,1 -goodbye,fairwell?,parrot,bye,2 -no,it's absolutely false,parrot,cancel,3 -meeting_schedule,please tell me when my meeting with john will be?,parrot,avail,0 -no,no?,parrot,cancel,3 -calendar_update,add an excursion on the farm to my calendar on 1 march,parrot,resched,5 -reminder_update,please remind me,parrot,resched,5 -how_busy,how busy will the olive garden be at noon?,parrot,avail,0 -reminder_update,i want a reminder,lambada,resched,5 -cancel_reservation,the reservation i created is not necessary anymore,original,cancel,3 -greeting,what's going on,original,greet,4 -greeting,whats up?,parrot,greet,4 -how_busy,is the restaurant crowded?,parrot,avail,0 -thank_you,thanks,original,bye,2 -yes,yeah that's right,lambada,book,1 -no,that's no,parrot,cancel,3 -no,so that's no,parrot,cancel,3 -calendar,where can i find dates on my calendar for march 4th?,parrot,avail,0 -calendar_update,can you remove the school play date on my calendar?,parrot,resched,5 -thank_you,"great, thanks!",original,bye,2 -thank_you,"awesome, thanks",original,bye,2 -goodbye,regards,original,bye,2 -goodbye,afterward,parrot,bye,2 -yes,yay,lambada,book,1 -no,not correct,parrot,cancel,3 -goodbye,thank you for the good call,parrot,bye,2 -how_busy,can you tell me how long will there be wait in order to get a table at red lobster?,lambada,avail,0 -no,naw,parrot,cancel,3 -calendar_update,get rid of my calendar for may 3,parrot,resched,5 -no,it's negative,parrot,cancel,3 -goodbye,see ya,lambada,bye,2 -greeting,how is it going? hi,parrot,greet,4 -greeting,hey what's up,original,greet,4 -thank_you,appreciated,original,bye,2 -yes,oh-huh,parrot,book,1 -how_busy,how busy will olive garden be around 5,lambada,avail,0 -no,negative sure,parrot,cancel,3 -greeting,how's my family?,parrot,greet,4 -goodbye,adios,original,bye,2 -no,negating,parrot,cancel,3 -goodbye,it's time for goodbye,parrot,bye,2 -yes,that's right,original,book,1 -thank_you,i'm so grateful,parrot,bye,2 -no,i must say no,original,cancel,3 -yes,approved,original,book,1 -greeting,get up ai,parrot,greet,4 -how_busy,how long will i wait for a table in red lobster?,parrot,avail,0 -how_busy,how busy will red lobster be at 5:00 pm,lambada,avail,0 -goodbye,good night,original,bye,2 -how_busy,how long is the wait at the chili's cheese steakhouse,lambada,avail,0 -schedule_meeting,add a meeting with tom at 6pm,original,book,1 -goodbye,bye now,original,bye,2 -how_busy,how long will i have to wait to be seated at that restaurant,lambada,avail,0 -no,so that's no,parrot,cancel,3 -how_busy,how long will i wait for red lobster?,parrot,avail,0 -yes,huh,parrot,book,1 -yes,TRUE,original,book,1 -thank_you,you've helped,parrot,bye,2 -no,nada,original,cancel,3 -reminder_update,"new reminder, please",original,resched,5 -no,that's incorrect!,original,cancel,3 -greeting,wassup,original,greet,4 -yes,yes you are,original,book,1 -yes,ya,original,book,1 -thank_you,okay thanks,original,bye,2 -goodbye,bye now,original,bye,2 -how_busy,is ihop busy around 6?,lambada,avail,0 -no,naw,parrot,cancel,3 -yes,huh huh,parrot,book,1 -thank_you,okay thank you,parrot,bye,2 -no,that's wrong,original,cancel,3 -no,no no no,parrot,cancel,3 -greeting,hey hey!,original,greet,4 -date,a year?,parrot,avail,0 -thank_you,i apprecaite the help from you,original,bye,2 -no,negative definitely,parrot,cancel,3 -yes,it is true,original,book,1 -yes,facts,original,book,1 -thank_you,you know i'm grateful,parrot,bye,2 -date,is it monday?,parrot,avail,0 -calendar,what's going on on march 4 2019?,parrot,avail,0 -how_busy,is the wait time at the olive garden long?,parrot,avail,0 -date,tell me the date?,original,avail,0 -greeting,hello ai,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -thank_you,i'm really thankful,parrot,bye,2 -greeting,hiya!,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -yes,positive,parrot,book,1 -goodbye,i leave now,parrot,bye,2 -meeting_schedule,are there any meetings with martin today?,parrot,avail,0 -no,that's negative,parrot,cancel,3 -goodbye,adios,original,bye,2 -yes,yes that is true,lambada,book,1 -how_busy,how long do i have to wait before i go to olive garden?,parrot,avail,0 -calendar,is there anything on my calendar for tomorrow?,parrot,avail,0 -calendar,what is on my calendar for march 12th?,parrot,avail,0 -reminder_update,create a reminder,original,resched,5 -how_busy,outback steakhouse at 6 pm,parrot,avail,0 -greeting,tell me what you feel,parrot,greet,4 -date,in three days,parrot,avail,0 -yes,i vote yes,original,book,1 -goodbye,goodbye!,original,bye,2 -no,no no it's not,parrot,cancel,3 -cancel_reservation,can you cancel my reservation for bob's burger?,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -yes,just right,parrot,book,1 -how_busy,is the restaurant crowded?,parrot,avail,0 -how_busy,do you know how busy chili's is at 5 pm?,lambada,avail,0 -calendar_update,i want to get rid of my trip to the zoo on march 1st,parrot,resched,5 -how_busy,what is the wait at the jalapeno ranch?,parrot,avail,0 -date,give me the date for today,lambada,avail,0 -calendar,do you have any events on my calendar for march 23?,parrot,avail,0 -greeting,aho,parrot,greet,4 -yes,ok,original,book,1 -no,nada,original,cancel,3 -meeting_schedule,have a meeting today?,parrot,avail,0 -meeting_schedule,please let me know when my meeting with peter is scheduled,parrot,avail,0 -thank_you,gracias,original,bye,2 -greeting,good morning ai,parrot,greet,4 -meeting_schedule,do you have any meetings today with sara?,parrot,avail,0 -cancel_reservation,cancel my reservation for 6 at the red robin,parrot,cancel,3 -yes,huh,parrot,book,1 -thank_you,thanks for that response,original,bye,2 -yes,absolutely!,original,book,1 -thank_you,really great!,original,bye,2 -no,negative sure,parrot,cancel,3 -yes,confirmed,original,book,1 -yes,yes you are,original,book,1 -no,it's very false,parrot,cancel,3 -greeting,hello there!,original,greet,4 -goodbye,tootles?,parrot,bye,2 -greeting,"why, hello bandit",original,greet,4 -yes,roger that,original,book,1 -goodbye,good-bye,parrot,bye,2 -no,thats a negative,original,cancel,3 -thank_you,well done,parrot,bye,2 -goodbye,for now,parrot,bye,2 -yes,TRUE,original,book,1 -thank_you,thanks!,original,bye,2 -yes,that's a true statement,lambada,book,1 -goodbye,talk later,original,bye,2 -date,can you tell me the date tomorrow,parrot,avail,0 -meeting_schedule,when do i get to meet him?,parrot,avail,0 -greeting,yo,original,greet,4 -yes,"yes, this is true",original,book,1 -thank_you,thanks!,original,bye,2 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -no,not right,parrot,cancel,3 -how_busy,how long will the wait be at 5:30 pm,lambada,avail,0 -yes,let's do that,parrot,book,1 -reminder_update,add a reminder to get me to go grocery shopping,lambada,resched,5 -cancel_reservation,cancel my reservation for 8 pm at red robin,lambada,cancel,3 -greeting,hiya!,original,greet,4 -no,the wrong answer,parrot,cancel,3 -goodbye,good bye,original,bye,2 -date,what's today,original,avail,0 -yes,approved,original,book,1 -thank_you,my gratitude,parrot,bye,2 -date,when will it be in 10 days?,original,avail,0 -calendar,please tell me what is on my calendar for march 31?,parrot,avail,0 -yes,"yes, that is true for sure",original,book,1 -no,negatory?,parrot,cancel,3 -goodbye,regards,original,bye,2 -no,invalid,original,cancel,3 -no,"no, you are wrong",original,cancel,3 -thank_you,you've helped,parrot,bye,2 -greeting,hola!,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -thank_you,you're so much help,parrot,bye,2 -yes,thats right,original,book,1 -greeting,how is my day going,lambada,greet,4 -goodbye,say goodbye,parrot,bye,2 -no,that's inaccurate,original,cancel,3 -how_busy,how long do i have to wait for a table at the avocado cafe?,parrot,avail,0 -yes,ya,original,book,1 -goodbye,fairwell?,parrot,bye,2 -yes,positive,parrot,book,1 -greeting,hi how're things going,lambada,greet,4 -yes,yeah yeah,lambada,book,1 -goodbye,we had a nice chat,parrot,bye,2 -how_busy,what's the wait for a table in this restaurant right now,parrot,avail,0 -goodbye,great talk,lambada,bye,2 -greeting,is everything going okay?,original,greet,4 -thank_you,awesome thanks,parrot,bye,2 -how_busy,what time is the restaurant open?,lambada,avail,0 -goodbye,the hell i'm out,parrot,bye,2 -how_busy,what is the crowd at the red lobster around 8?,lambada,avail,0 -how_busy,if i go to the cheese cake factory how long will i have to wait,parrot,avail,0 -yes,right,parrot,book,1 -goodbye,talk later,original,bye,2 -yes,that's right,original,book,1 -no,that's totally wrong!,original,cancel,3 -yes,perfect,parrot,book,1 -meeting_schedule,how many meetings are in my calendar?,parrot,avail,0 -reminder_update,maybe a reminder?,parrot,resched,5 -no,no?,parrot,cancel,3 -goodbye,bye,original,bye,2 -yes,a fact,parrot,book,1 -meeting_schedule,do you have any meetings for today?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -yes,absolutely,original,book,1 -goodbye,have fun?,lambada,bye,2 -yes,yes please,original,book,1 -yes,that's a fact,parrot,book,1 -greeting,what's new?,parrot,greet,4 -thank_you,i appeciate it,parrot,bye,2 -schedule_meeting,set up a meeting,parrot,book,1 -date,in 9 days?,parrot,avail,0 -greeting,hey how's my day going,parrot,greet,4 -goodbye,for now,parrot,bye,2 -cancel_reservation,i'd like to cancel my reservation for 5 at red robin,lambada,cancel,3 -goodbye,goodbye,original,bye,2 -schedule_meeting,list some ways to create a meeting?,parrot,book,1 -greeting,how's life?,parrot,greet,4 -yes,ok,original,book,1 -yes,the answer is yes,original,book,1 -yes,it'll be yes,parrot,book,1 -yes,i know,parrot,book,1 -calendar_update,"on the 22nd of this month, we need to clear our calendar so we can leave it open for mark to visit",original,resched,5 -date,is the date?,parrot,avail,0 -calendar,please tell me the calendar for march 30?,parrot,avail,0 -thank_you,my thanks,parrot,bye,2 -meeting_schedule,show me my agenda for today,parrot,avail,0 -no,"no, that's not correct",lambada,cancel,3 -goodbye,later!,original,bye,2 -goodbye,i’m leaving-goodbye!,original,bye,2 -thank_you,thanks very much for your answer,parrot,bye,2 -no,negation,parrot,cancel,3 -greeting,hey yai,lambada,greet,4 -reminder_update,remember to remember later,parrot,resched,5 -no,negation,parrot,cancel,3 -thank_you,many thanks,original,bye,2 -greeting,hi,original,greet,4 -goodbye,peace out!,original,bye,2 -thank_you,your assistance is appreciated,parrot,bye,2 -no,no!,original,cancel,3 -thank_you,thanks please,original,bye,2 -yes,not false,parrot,book,1 -goodbye,fairwell,original,bye,2 -goodbye,tata for now,original,bye,2 -date,i need a date,parrot,avail,0 -reminder_update,please remember me,parrot,resched,5 -date,what date tomorrow?,parrot,avail,0 -yes,great,original,book,1 -cancel_reservation,scrap that dinner reservation,original,cancel,3 -yes,"yes, that's accurate",original,book,1 -yes,sure,original,book,1 -thank_you,my gratitude,parrot,bye,2 -yes,okay,original,book,1 -goodbye,my friend,parrot,bye,2 -greeting,how're you?,parrot,greet,4 -schedule_meeting,walk me through the process of setting up a meeting,parrot,book,1 -goodbye,afterward,parrot,bye,2 -yes,that's a true statement,lambada,book,1 -no,no way!,original,cancel,3 -yes,ok,original,book,1 -yes,do that?,original,book,1 -greeting,hiya!,original,greet,4 -thank_you,i appreciate my help,original,bye,2 -greeting,what's new?,parrot,greet,4 -meeting_schedule,do you have any meetings coming up today?,parrot,avail,0 -greeting,how's idy?,parrot,greet,4 -yes,uh huh,original,book,1 -no,negatory,original,cancel,3 -yes,great,original,book,1 -no,no?,parrot,cancel,3 -greeting,"hey, what's up",original,greet,4 -thank_you,thank you for trying,parrot,bye,2 -goodbye,i have to leave,parrot,bye,2 -greeting,how is life?,parrot,greet,4 -how_busy,tell me the time it takes for me to get a seat in the chinese restaurant?,parrot,avail,0 -yes,you got it,original,book,1 -cancel_reservation,i must cancel my reservation at robin's,lambada,cancel,3 -no,no!,original,cancel,3 -goodbye,"bye-bye, my friend",lambada,bye,2 -greeting,how's idy doing,lambada,greet,4 -thank_you,your answer is appreciated,original,bye,2 -no,that's very false,parrot,cancel,3 -no,certainly not,original,cancel,3 -yes,absolutely correct,original,book,1 -yes,it is a yes from me,parrot,book,1 -yes,absolutely!,original,book,1 -reminder_update,add a reminder,lambada,resched,5 -schedule_meeting,a meeting is needed on friday at 4pm,parrot,book,1 -reminder_update,can you remind me to pay taxes?,parrot,resched,5 -yes,confirm,original,book,1 -no,nay,original,cancel,3 -date,what is the current day?,original,avail,0 -yes,correct,original,book,1 -yes,affirmitive,original,book,1 -greeting,hola!,original,greet,4 -goodbye,on the road,parrot,bye,2 -greeting,hey what's up,original,greet,4 -yes,yes that's correct,original,book,1 -how_busy,how busy will i be at 7?,parrot,avail,0 -no,that is false,original,cancel,3 -goodbye,farewell!,original,bye,2 -yes,it is true,original,book,1 -goodbye,bye-bye,original,bye,2 -yes,TRUE,lambada,book,1 -thank_you,i am grateful,lambada,bye,2 -goodbye,good talk,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -how_busy,canadian grill at 6pm?,parrot,avail,0 -yes,a fact,parrot,book,1 -goodbye,see you again soon,original,bye,2 -greeting,whats new?,parrot,greet,4 -greeting,hello there!,original,greet,4 -how_busy,how busy is mr joe's right now,lambada,avail,0 -goodbye,good-bye,parrot,bye,2 -yes,definitely,original,book,1 -thank_you,okay thank you,parrot,bye,2 -greeting,hello ai,parrot,greet,4 -goodbye,greetings,parrot,bye,2 -yes,indeed,original,book,1 -goodbye,buhbye now,lambada,bye,2 -goodbye,i'm leaving,parrot,bye,2 -greeting,how's the life in my town?,parrot,greet,4 -yes,certainly,parrot,book,1 -yes,sure thing,original,book,1 -goodbye,bye bye,lambada,bye,2 -goodbye,have fun?,lambada,bye,2 -how_busy,list the wait times at the chippewa center?,parrot,avail,0 -no,it's absolutely false,parrot,cancel,3 -no,i do not believe that that is correct,original,cancel,3 -goodbye,lovely conversation,parrot,bye,2 -greeting,please tell me what the ai is doing,parrot,greet,4 -goodbye,great talk,lambada,bye,2 -greeting,hey yai,lambada,greet,4 -no,nay,original,cancel,3 -how_busy,how long does the pizza shop wait to serve dinner?,parrot,avail,0 -date,in 8 days?,parrot,avail,0 -goodbye,tootles?,parrot,bye,2 -date,what the day?,parrot,avail,0 -goodbye,i'm very happy to have the chance to talk to you,parrot,bye,2 -greeting,how's everything,original,greet,4 -how_busy,is tiaras crowded around 7pm?,parrot,avail,0 -reminder_update,create a reminder,original,resched,5 -greeting,hola!,original,greet,4 -reminder_update,have i forgotten?,parrot,resched,5 -yes,10-Apr,original,book,1 -goodbye,adios ai,original,bye,2 -no,no thanks,original,cancel,3 -calendar,tell me what's on my calendar for tuesday the 2nd?,lambada,avail,0 -date,where's the date tomorrow?,parrot,avail,0 -date,tell me the date of the next 30 days?,parrot,avail,0 -yes,accept,parrot,book,1 -cancel_reservation,if i want to cancel my reservation,parrot,cancel,3 -yes,yeah,original,book,1 -yes,yeah yeah,lambada,book,1 -no,please disagree,lambada,cancel,3 -goodbye,fairwell,original,bye,2 -thank_you,thanks,original,bye,2 -date,please explain today,parrot,avail,0 -thank_you,i'm happy you've helped me,parrot,bye,2 -yes,yeah,original,book,1 -goodbye,next time we'll talk,parrot,bye,2 -no,naw,parrot,cancel,3 -how_busy,how long will i have to wait to sit at the imovie,parrot,avail,0 -greeting,salutation,parrot,greet,4 -date,what date?,parrot,avail,0 -no,no?,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -date,please show the date,parrot,avail,0 -cancel_reservation,should i cancel my reservation?,parrot,cancel,3 -yes,huh huh,parrot,book,1 -greeting,salutations,parrot,greet,4 -greeting,good day,original,greet,4 -yes,oh-huh,parrot,book,1 -goodbye,bye,original,bye,2 -reminder_update,can you set a reminder to pay bills?,parrot,resched,5 -no,i disagree with this,parrot,cancel,3 -greeting,whats up,original,greet,4 -greeting,hello what's happening,parrot,greet,4 -no,FALSE,lambada,cancel,3 -thank_you,thanks for helping me,original,bye,2 -date,i'd like to find out the date for today,parrot,avail,0 -yes,okay,original,book,1 -no,invalid,original,cancel,3 -how_busy,how long is the wait at the restaurant,lambada,avail,0 -meeting_schedule,at this time i would like to know how many meetings i have today,lambada,avail,0 -greeting,hey how ya been,lambada,greet,4 -thank_you,thanks for my reply,parrot,bye,2 -thank_you,thanks!,original,bye,2 -reminder_update,make a reminder,parrot,resched,5 -how_busy,is iman busy at 6pm?,parrot,avail,0 -date,where's tomorrow's date,parrot,avail,0 -yes,yes you are right,original,book,1 -goodbye,goodbye ai,parrot,bye,2 -yes,agreed,original,book,1 -thank_you,well done,parrot,bye,2 -thank_you,really great!,original,bye,2 -schedule_meeting,i need a room,parrot,book,1 -goodbye,until next time!,original,bye,2 -how_busy,list the waiting times at the chippewa center?,parrot,avail,0 -yes,uh huh,original,book,1 -how_busy,will ihop be busy around 5,lambada,avail,0 -reminder_update,add me a reminder?,parrot,resched,5 -greeting,hey yai,lambada,greet,4 -goodbye,buhbye,original,bye,2 -greeting,how are things,original,greet,4 -thank_you,"awesome, thanks",original,bye,2 -thank_you,appreciate the support,parrot,bye,2 -no,no,lambada,cancel,3 -greeting,hi there alexa,original,greet,4 -greeting,hiya,original,greet,4 -thank_you,"ai is a helpful item to have in my home, thank you",original,bye,2 -no,nothing good,parrot,cancel,3 -goodbye,it was enjoyable talking with you,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -goodbye,it was fun to talk to you,parrot,bye,2 -yes,right,parrot,book,1 -goodbye,later,original,bye,2 -greeting,whats up?,parrot,greet,4 -greeting,hello there!,original,greet,4 -goodbye,"thanks, bye",original,bye,2 -how_busy,how long will i be waiting to get a table at tamales,lambada,avail,0 -cancel_reservation,i'm not going to dinner tonight,parrot,cancel,3 -yes,"yes, that's accurate",original,book,1 -date,what year?,parrot,avail,0 -date,what year is this?,parrot,avail,0 -yes,affirmative,original,book,1 -thank_you,you helped,parrot,bye,2 -greeting,salutations!,original,greet,4 -yes,a true statement,parrot,book,1 -greeting,aho,parrot,greet,4 -no,not right so,parrot,cancel,3 -no,no?,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -no,i think it's incorrect,parrot,cancel,3 -greeting,hello how you doing,lambada,greet,4 -yes,i know it's true,parrot,book,1 -no,not that one,original,cancel,3 -yes,agreed,original,book,1 -goodbye,ill be leaving now,parrot,bye,2 -schedule_meeting,i want to meet you in the blue room at 8 am?,parrot,book,1 -yes,great,original,book,1 -date,which date is next?,parrot,avail,0 -yes,yes,original,book,1 -no,negatory?,parrot,cancel,3 -yes,absolutely!,original,book,1 -yes,sure,original,book,1 -meeting_schedule,when's my meeting?,parrot,avail,0 -greeting,hello,original,greet,4 -yes,agreed,original,book,1 -no,certainly false,parrot,cancel,3 -goodbye,farewell!,original,bye,2 -goodbye,later,original,bye,2 -no,not really,original,cancel,3 -yes,ya,original,book,1 -yes,agreed,original,book,1 -greeting,bonjour,original,greet,4 -no,the wrong answer,parrot,cancel,3 -greeting,bonjour,original,greet,4 -how_busy,say how busy can you expect red lobsters at 10pm?,parrot,avail,0 -greeting,hello good day,parrot,greet,4 -goodbye,afterward,parrot,bye,2 -no,FALSE,original,cancel,3 -goodbye,adios,original,bye,2 -how_busy,what is the wait like at chili's at 10?,lambada,avail,0 -yes,roger that,original,book,1 -greeting,hi there alexa,original,greet,4 -greeting,bonjour,original,greet,4 -no,this is my reply,parrot,cancel,3 -goodbye,see ya,lambada,bye,2 -yes,can we please?,original,book,1 -goodbye,you're done,parrot,bye,2 -no,negatory?,parrot,cancel,3 -thank_you,many thank,original,bye,2 -schedule_meeting,schedule a monday meeting with sam at 1 pm ,parrot,book,1 -date,current day,parrot,avail,0 -no,negation,parrot,cancel,3 -yes,affirmitive,original,book,1 -no,that's a negatory,original,cancel,3 -thank_you,my gratitude,parrot,bye,2 -goodbye,"bye-bye, my friend",lambada,bye,2 -greeting,how are things,original,greet,4 -yes,my answer is yes,parrot,book,1 -no,not good,parrot,cancel,3 -yes,positive,original,book,1 -goodbye,good conversation,parrot,bye,2 -thank_you,i'm glad you met,parrot,bye,2 -date,which date today?,parrot,avail,0 -goodbye,bye,original,bye,2 -thank_you,thanks,original,bye,2 -goodbye,we'll talk later ai,original,bye,2 -thank_you,you've been great,parrot,bye,2 -reminder_update,please reminder for car meet,original,resched,5 -yes,"yes, that is it",original,book,1 -no,but it's false,parrot,cancel,3 -no,FALSE,lambada,cancel,3 -no,i'm saying no,parrot,cancel,3 -thank_you,thank you for my answer,lambada,bye,2 -thank_you,i really appreciate you,parrot,bye,2 -yes,perfect,parrot,book,1 -yes,let's do that,parrot,book,1 -greeting,hiya,original,greet,4 -goodbye,good bye then,original,bye,2 -greeting,hello good morning,parrot,greet,4 -greeting,whats up,original,greet,4 -no,don't like that,parrot,cancel,3 -greeting,"hey, what's up",original,greet,4 -no,i'd say no,original,cancel,3 -date,current day,parrot,avail,0 -goodbye,afterward,parrot,bye,2 -no,no,lambada,cancel,3 -goodbye,the talk was nice,lambada,bye,2 -goodbye,goodbyes,parrot,bye,2 -no,negating,parrot,cancel,3 -greeting,how's the life?,parrot,greet,4 -reminder_update,remember to write later,parrot,resched,5 -calendar,what do i have planned for march 2nd?,parrot,avail,0 -thank_you,thank you for what you do,parrot,bye,2 -yes,absolutely!,original,book,1 -goodbye,sayonara ,parrot,bye,2 -thank_you,thank you please,parrot,bye,2 -yes,it's logical,parrot,book,1 -yes,huh,parrot,book,1 -goodbye,"nice talk, goodbye",lambada,bye,2 -no,nothing,parrot,cancel,3 -yes,i believe it is true,parrot,book,1 -calendar_update,make sure june 5 is clear on my calendar,lambada,resched,5 -date,what's today,original,avail,0 -how_busy,how busy is mishawaka,lambada,avail,0 -schedule_meeting,check meeting rooms for free from 6 to 7,parrot,book,1 -greeting,salutations!,original,greet,4 -calendar_update,put on my calendar for march 8th to beg me to buy something,lambada,resched,5 -how_busy,i want to know how long the wait will be at olive garden at 5pm,lambada,avail,0 -no,that's incorrect!,original,cancel,3 -goodbye,goodbye!,original,bye,2 -thank_you,thank you ai,parrot,bye,2 -thank_you,thanks!,original,bye,2 -thank_you,much obliged,original,bye,2 -goodbye,bye bye,lambada,bye,2 -yes,i'll say yes,parrot,book,1 -how_busy,what's the wait for chili tonight?,parrot,avail,0 -thank_you,you've been great,parrot,bye,2 -yes,approved,original,book,1 -greeting,heller,original,greet,4 -no,erroneous,parrot,cancel,3 -greeting,hey fellows,parrot,greet,4 -yes,yup,original,book,1 -no,naw,parrot,cancel,3 -goodbye,tootles,original,bye,2 -no,that's not always true,parrot,cancel,3 -thank_you,your assistance is appreciated,parrot,bye,2 -no,nada,original,cancel,3 -greeting,whats up?,parrot,greet,4 -how_busy,how busy is that cheesecake factory?,parrot,avail,0 -yes,yay,lambada,book,1 -no,nada,original,cancel,3 -no,it'd be awful,parrot,cancel,3 -yes,indeed,original,book,1 -goodbye,see ya,lambada,bye,2 -no,i think that that is not the right answer,lambada,cancel,3 -goodbye,goodnight,original,bye,2 -no,that's false,original,cancel,3 -reminder_update,make a reminder to pay for groceries this week,parrot,resched,5 -yes,yes that's right,lambada,book,1 -yes,absolutely!,original,book,1 -goodbye,sayonara,original,bye,2 -no,that's a no,lambada,cancel,3 -how_busy,how long is the wait time at macy's,lambada,avail,0 -goodbye,goodbye,original,bye,2 -yes,TRUE,original,book,1 -thank_you,you've been great,parrot,bye,2 -goodbye,for now,parrot,bye,2 -goodbye,was nice talking with you,parrot,bye,2 -no,no way!,original,cancel,3 -goodbye,fairwell?,parrot,bye,2 -meeting_schedule,exactly what time is my meeting with robin scheduled?,parrot,avail,0 -greeting,hiya!,original,greet,4 -goodbye,i'll have to do it later,parrot,bye,2 -yes,okay,original,book,1 -how_busy,when is the foodie place crowded in the early morning?,parrot,avail,0 -goodbye,i really liked talking to you,parrot,bye,2 -no,no!,original,cancel,3 -yes,that is right,original,book,1 -date,what date is today?,original,avail,0 -greeting,"hi, how are things going for you",lambada,greet,4 -no,no please,parrot,cancel,3 -yes,facts,original,book,1 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,how long is a table at the olive garden right now?,parrot,avail,0 -yes,yay,lambada,book,1 -date,date tomorrow,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -yes,a fact,parrot,book,1 -no,no,lambada,cancel,3 -calendar_update,remove my dinner with ariel from my calendar on may 26,lambada,resched,5 -thank_you,thanks so much!,original,bye,2 -no,no!,original,cancel,3 -yes,indeed,original,book,1 -schedule_meeting,how is the meeting scheduled?,parrot,book,1 -yes,yeah yeah,lambada,book,1 -meeting_schedule,meeting today,parrot,avail,0 -greeting,how is ai doing?,parrot,greet,4 -yes,i would say yes,lambada,book,1 -goodbye,talk later,original,bye,2 -no,definitely not,original,cancel,3 -yes,right,parrot,book,1 -yes,it's logical,parrot,book,1 -thank_you,thank you?,parrot,bye,2 -no,erroneous,parrot,cancel,3 -no,nothing,parrot,cancel,3 -goodbye,thanks goodbye,parrot,bye,2 -how_busy,how long is the wait at red lobster right now?,parrot,avail,0 -thank_you,much obliged,original,bye,2 -thank_you,awesome thanks,parrot,bye,2 -yes,"yes, please",parrot,book,1 -no,it's very false,parrot,cancel,3 -greeting,welcome,parrot,greet,4 -how_busy,what's the wait?,parrot,avail,0 -no,negating,parrot,cancel,3 -no,nada,original,cancel,3 -yes,confirm,original,book,1 -yes,positive,parrot,book,1 -thank_you,thanks for that!,original,bye,2 -goodbye,good call,parrot,bye,2 -date,today what date?,parrot,avail,0 -date,"what is the day of the month, day, and year?",lambada,avail,0 -no,not happening,original,cancel,3 -greeting,how are things treating you,original,greet,4 -greeting,hola!,original,greet,4 -date,when will it be?,parrot,avail,0 -date,this is the day,parrot,avail,0 -meeting_schedule,talk to me about my schedule,parrot,avail,0 -how_busy,how long will it take to get seated at iman's house?,parrot,avail,0 -how_busy,how busy will red rooster be at 5:00,lambada,avail,0 -date,what's today?,parrot,avail,0 -meeting_schedule,have any meetings planned with ashley today?,parrot,avail,0 -goodbye,good conversation,parrot,bye,2 -greeting,how are things for you,original,greet,4 -goodbye,a good talk,parrot,bye,2 -how_busy,what's the wait?,parrot,avail,0 -no,it is false,original,cancel,3 -yes,facts,original,book,1 -greeting,hiya!,original,greet,4 -goodbye,the talk was nice,lambada,bye,2 -goodbye,bye!,original,bye,2 -yes,roger that,original,book,1 -goodbye,see ya,lambada,bye,2 -schedule_meeting,do you have a meeting room between 7 and 9?,parrot,book,1 -yes,that seems true,original,book,1 -goodbye,farewell!,original,bye,2 -yes,correct,original,book,1 -yes,yeah yeah,lambada,book,1 -yes,it's true,original,book,1 -yes,ok,original,book,1 -goodbye,thank you for talking to me,lambada,bye,2 -thank_you,thank ya!,original,bye,2 -no,naw,parrot,cancel,3 -thank_you,thanks,original,bye,2 -thank_you,i'm glad you responded,parrot,bye,2 -goodbye,i need to go,lambada,bye,2 -no,that's not right,original,cancel,3 -date,what month today?,parrot,avail,0 -no,no please,parrot,cancel,3 -yes,yes that's correct,original,book,1 -yes,absolutely correct,original,book,1 -goodbye,later,original,bye,2 -how_busy,is there a wait time for tgifridays?,parrot,avail,0 -yes,i would say it's true,parrot,book,1 -goodbye,tootles,original,bye,2 -thank_you,nice,parrot,bye,2 -yes,approved,original,book,1 -yes,affirmitive,original,book,1 -no,absolutely not,original,cancel,3 -calendar,what's on my calendar for march 17?,parrot,avail,0 -yes,uh-huh,original,book,1 -greeting,how's everything?,parrot,greet,4 -yes,i think that's correct,parrot,book,1 -date,what's going on today?,parrot,avail,0 -no,that's a no,lambada,cancel,3 -goodbye,wonderful conversation,lambada,bye,2 -thank_you,thanks!,original,bye,2 -goodbye,i'm outta here!,original,bye,2 -thank_you,i am grateful,lambada,bye,2 -calendar,do you have any events on my calendar for march 3rd?,parrot,avail,0 -greeting,how's ai doing today?,parrot,greet,4 -thank_you,you were a great help,parrot,bye,2 -greeting,how's my family?,parrot,greet,4 -schedule_meeting,i need you to schedule a meeting with me,parrot,book,1 -yes,sure,original,book,1 -schedule_meeting,how is a meeting planned?,parrot,book,1 -greeting,hey how have you been?,parrot,greet,4 -yes,a fact,parrot,book,1 -how_busy,there's a cheesecake factory,parrot,avail,0 -goodbye,lovely conversation,parrot,bye,2 -greeting,it's nice to see you,original,greet,4 -date,what is tomorrow's date?,original,avail,0 -goodbye,tootles?,parrot,bye,2 -thank_you,i'm glad you responded,parrot,bye,2 -goodbye,regards,original,bye,2 -how_busy,does this restaurant have a long wait for a table at 830?,parrot,avail,0 -how_busy,how long will the wait be at chili's at 7pm?,parrot,avail,0 -greeting,salutations!,original,greet,4 -goodbye,good-bye,parrot,bye,2 -yes,is true,parrot,book,1 -goodbye,fairwell,original,bye,2 -date,where's tomorrow's date,parrot,avail,0 -goodbye,bye,original,bye,2 -yes,not a falsehood,parrot,book,1 -greeting,salutations!,original,greet,4 -goodbye,lovely conversation,parrot,bye,2 -goodbye,i liked our conversation,parrot,bye,2 -goodbye,goodbyes,parrot,bye,2 -goodbye,afterward,parrot,bye,2 -greeting,hey how ya been,lambada,greet,4 -yes,uh-huh,original,book,1 -goodbye,tootles?,parrot,bye,2 -yes,yay,lambada,book,1 -how_busy,does michelin steakhouse have a lot of people on the server right now?,parrot,avail,0 -no,"please, no",original,cancel,3 -no,no!,original,cancel,3 -yes,great,original,book,1 -yes,affirmitive,original,book,1 -calendar_update,a reminder on the calendar to buy a gun on march 1st,parrot,resched,5 -greeting,whats up?,parrot,greet,4 -yes,affirmative,original,book,1 -yes,absolutely correct,original,book,1 -yes,ok,original,book,1 -yes,obviously,parrot,book,1 -no,ill pass,original,cancel,3 -yes,it's true for sure,parrot,book,1 -how_busy,can i wait for a table at ihop?,parrot,avail,0 -thank_you,did you do well?,parrot,bye,2 -goodbye,goodbye,original,bye,2 -how_busy,if i want to eat at panera how long will i have to wait,parrot,avail,0 -yes,that's true,original,book,1 -greeting,so how's it going?,parrot,greet,4 -meeting_schedule,meetings today,original,avail,0 -how_busy,how busy is zippys around 10,lambada,avail,0 -goodbye,fairwell,original,bye,2 -yes,perfect,parrot,book,1 -goodbye,until next time,original,bye,2 -calendar,do you have any items on my calendar for march 21?,parrot,avail,0 -date,what's the date,original,avail,0 -schedule_meeting,please schedule a meeting with john for 12 people?,parrot,book,1 -greeting,how's life treating you?,parrot,greet,4 -no,no thank you,original,cancel,3 -calendar,let me know what is currently set for the 26th of march on my calendar,lambada,avail,0 -goodbye,wonderful conversation,lambada,bye,2 -yes,affirmative,original,book,1 -yes,absolutely,original,book,1 -no,that's not factual,parrot,cancel,3 -no,that's totally false,parrot,cancel,3 -yes,"yep, that's true",original,book,1 -goodbye,great conversation,parrot,bye,2 -no,please disagree,lambada,cancel,3 -greeting,hey,original,greet,4 -goodbye,glad to talk,parrot,bye,2 -date,what's today?,parrot,avail,0 -goodbye,the talk was nice,lambada,bye,2 -yes,seems true,parrot,book,1 -greeting,hola!,original,greet,4 -meeting_schedule,what's my schedule today?,parrot,avail,0 -yes,perfect,parrot,book,1 -reminder_update,remind me something,parrot,resched,5 -goodbye,later gator!,original,bye,2 -date,what date in 10 days?,parrot,avail,0 -no,negative certainly,parrot,cancel,3 -goodbye,bye!,original,bye,2 -yes,thats right,original,book,1 -yes,TRUE,original,book,1 -goodbye,later then,lambada,bye,2 -thank_you,good looking out,original,bye,2 -meeting_schedule,have meetings scheduled between 4 and 5?,parrot,avail,0 -thank_you,thank you for making my life easier,parrot,bye,2 -yes,"agreed, that's valid",original,book,1 -no,i'm afraid not,parrot,cancel,3 -yes,yay,lambada,book,1 -date,today?,parrot,avail,0 -no,it is no,original,cancel,3 -goodbye,nice chat today,lambada,bye,2 -yes,"yes, please",original,book,1 -greeting,salutations,parrot,greet,4 -yes,not false,parrot,book,1 -no,negatory,original,cancel,3 -goodbye,good luck,lambada,bye,2 -meeting_schedule,wanna meet with roger?,parrot,avail,0 -goodbye,go easy,parrot,bye,2 -goodbye,later!,original,bye,2 -how_busy,are the chicken dinners busy?,parrot,avail,0 -yes,yeah,original,book,1 -yes,yes that is correct,original,book,1 -how_busy,tell me how busy olive garden is at 8pm?,parrot,avail,0 -yes,roger that,original,book,1 -yes,"yes, please",parrot,book,1 -no,certainly not,original,cancel,3 -goodbye,im leaving goodbye,parrot,bye,2 -greeting,salutation,parrot,greet,4 -reminder_update,let me not forget about the steak?,parrot,resched,5 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -goodbye,a good conversation,parrot,bye,2 -no,please no,parrot,cancel,3 -thank_you,i'm glad you met,parrot,bye,2 -yes,confirm,original,book,1 -yes,indeed,original,book,1 -date,which date is next?,parrot,avail,0 -yes,confirm,original,book,1 -greeting,what is new?,parrot,greet,4 -goodbye,later then,lambada,bye,2 -goodbye,bye bye,lambada,bye,2 -thank_you,okay thanks,original,bye,2 -greeting,"hi, how are you",original,greet,4 -greeting,hiya,original,greet,4 -yes,all right,original,book,1 -thank_you,many thanks,original,bye,2 -date,tell me what date tomorrow?,parrot,avail,0 -goodbye,adios!,original,bye,2 -calendar,tell me what my calendar looks like for march 28th,parrot,avail,0 -date,date please,original,avail,0 -date,please date,parrot,avail,0 -greeting,ahoy,lambada,greet,4 -thank_you,thanks very much for your answer,parrot,bye,2 -yes,"yes, that's accurate",original,book,1 -greeting,hola!,original,greet,4 -no,nada,original,cancel,3 -yes,yup,original,book,1 -thank_you,nice,parrot,bye,2 -no,that is not acceptable,lambada,cancel,3 -greeting,i'd like to know how you do,parrot,greet,4 -yes,yes please,original,book,1 -greeting,yo,original,greet,4 -yes,yeah yeah,lambada,book,1 -goodbye,goodbye now,parrot,bye,2 -no,not right,parrot,cancel,3 -how_busy,can i wait for a table at tiffany's steakhouse?,parrot,avail,0 -no,no,lambada,cancel,3 -yes,absolutely!,original,book,1 -greeting,bonjour,original,greet,4 -yes,ok,original,book,1 -yes,"yes, that is correct",original,book,1 -no,negatory,original,cancel,3 -how_busy,how long will it take to get seated in the sink?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -yes,confirm,original,book,1 -goodbye,and tell me bye?,parrot,bye,2 -yes,TRUE,lambada,book,1 -no,but it's not factual,parrot,cancel,3 -goodbye,i'm out,parrot,bye,2 -calendar_update,i need to add the iep meeting to my calendar on april 15,parrot,resched,5 -thank_you,you helped,parrot,bye,2 -date,today?,parrot,avail,0 -greeting,salutations!,original,greet,4 -yes,10-Apr,original,book,1 -date,please date,parrot,avail,0 -no,it's not necessarily true,parrot,cancel,3 -greeting,yo,original,greet,4 -greeting,you're all right?,parrot,greet,4 -yes,yes you have been correct,lambada,book,1 -no,naw,original,cancel,3 -how_busy,how long will it take me to sit at the ihop,parrot,avail,0 -greeting,welcome,parrot,greet,4 -greeting,how's idy?,parrot,greet,4 -no,i'll say no,parrot,cancel,3 -thank_you,thank you very much,original,bye,2 -date,what's the date?,parrot,avail,0 -yes,of course,original,book,1 -greeting,heller,original,greet,4 -thank_you,your assistance is appreciated,parrot,bye,2 -meeting_schedule,tell me what i have booked for today,parrot,avail,0 -how_busy,is it always crowded?,parrot,avail,0 -yes,accepted,original,book,1 -yes,i know,parrot,book,1 -goodbye,but until the next time,parrot,bye,2 -goodbye,you're done,parrot,bye,2 -yes,confirm,original,book,1 -thank_you,appreciate it,original,bye,2 -greeting,how are things with you?,parrot,greet,4 -reminder_update,please remember to pay taxes,parrot,resched,5 -goodbye,adios,original,bye,2 -cancel_reservation,you can just trash the reservation i made please,parrot,cancel,3 -how_busy,how long will i have to wait before i can have lunch at red lobster,lambada,avail,0 -no,it's no,parrot,cancel,3 -calendar_update,take cancel abc on my calendar for june 1st,lambada,resched,5 -goodbye,good call,parrot,bye,2 -greeting,hey there fellow,original,greet,4 -greeting,how you are?,parrot,greet,4 -yes,it's certainly positive,parrot,book,1 -greeting,what's up,original,greet,4 -no,so that's no,parrot,cancel,3 -goodbye,catch you around,original,bye,2 -calendar_update,set my birthday on the 5th of next month,lambada,resched,5 -goodbye,sayonara,original,bye,2 -yes,"yeah, that's right",original,book,1 -no,naw,original,cancel,3 -greeting,have you been good??,parrot,greet,4 -no,false for sure,original,cancel,3 -greeting,how have you been?,parrot,greet,4 -greeting,what's going on,original,greet,4 -no,invalid,original,cancel,3 -greeting,hi,original,greet,4 -how_busy,how long will it take to get a table in this restaurant? ,parrot,avail,0 -no,i meant no,original,cancel,3 -how_busy,how long will the wait time at olive garden be,lambada,avail,0 -thank_you,i'm grateful for you,parrot,bye,2 -yes,facts,original,book,1 -thank_you,my thanks,parrot,bye,2 -goodbye,greetings,parrot,bye,2 -how_busy,how long would a wait at chili's be,lambada,avail,0 -yes,ya,original,book,1 -greeting,good morning ai,parrot,greet,4 -yes,right,parrot,book,1 -goodbye,fairwell?,parrot,bye,2 -no,it's negative,parrot,cancel,3 -no,i'll pass,original,cancel,3 -cancel_reservation,im not able to make the reservation,lambada,cancel,3 -no,that's untrue,parrot,cancel,3 -goodbye,good-bye,parrot,bye,2 -greeting,bonjour,original,greet,4 -schedule_meeting,open meeting rooms from 1 pm to 3 pm,parrot,book,1 -no,no don't do that,parrot,cancel,3 -yes,positive,original,book,1 -goodbye,greetings,parrot,bye,2 -greeting,hi,original,greet,4 -thank_you,again thanks,parrot,bye,2 -goodbye,lovely conversation,parrot,bye,2 -calendar,check my calendar for march 5,parrot,avail,0 -yes,yes,original,book,1 -yes,seems true,parrot,book,1 -goodbye,glad to talk again,parrot,bye,2 -goodbye,farewell,original,bye,2 -yes,i want that,parrot,book,1 -greeting,hola,original,greet,4 -greeting,how is life?,parrot,greet,4 -goodbye,i'm leaving,parrot,bye,2 -date,please give me today's date,original,avail,0 -how_busy,show the odds that i'll have a good time if i go to applebee's at 5pm?,parrot,avail,0 -yes,that is a fact,original,book,1 -how_busy,how busy is the restaurant at 830?,parrot,avail,0 -no,negative definitely,parrot,cancel,3 -no,nothing,parrot,cancel,3 -no,negative,original,cancel,3 -how_busy,how busy will panera be at noon?,parrot,avail,0 -no,nothing,parrot,cancel,3 -goodbye,greetings,parrot,bye,2 -yes,great,original,book,1 -greeting,how's ai doing?,parrot,greet,4 -no,negatory?,parrot,cancel,3 -yes,TRUE,original,book,1 -greeting,hello,original,greet,4 -no,nada,original,cancel,3 -yes,correct,original,book,1 -greeting,how's idy?,parrot,greet,4 -yes,it's indeed true,original,book,1 -greeting,welcome,parrot,greet,4 -greeting,heller,original,greet,4 -no,nope,original,cancel,3 -goodbye,i'll be on the way,parrot,bye,2 -no,naw,parrot,cancel,3 -greeting,so what's up?,parrot,greet,4 -calendar_update,go ahead and cancel the last event in my calendar,parrot,resched,5 -yes,it'll be yes,parrot,book,1 -goodbye,"nice talk, next time",lambada,bye,2 -no,the negator,parrot,cancel,3 -greeting,salutations,parrot,greet,4 -greeting,hola!,original,greet,4 -greeting,hey how's my day?,parrot,greet,4 -date,"tell me the date, please?",original,avail,0 -yes,great,original,book,1 -calendar,did i mark the mechanic's appointment on my schedule?,parrot,avail,0 -no,thanks no,parrot,cancel,3 -goodbye,sayonara ,parrot,bye,2 -goodbye,fairwell?,parrot,bye,2 -thank_you,thanks please,original,bye,2 -thank_you,thanks!,original,bye,2 -no,it's negative,parrot,cancel,3 -schedule_meeting,schedule my meeting with jim at 3 pm,parrot,book,1 -schedule_meeting,can you book a room for a meeting on friday at 5pm?,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -goodbye,goodbye,original,bye,2 -no,it's actually false,parrot,cancel,3 -goodbye,see ya,lambada,bye,2 -how_busy,do you think the longhorn steakhouse will be busy at 5pm?,parrot,avail,0 -calendar,tell me what's currently on my calendar for tomorrow?,lambada,avail,0 -goodbye,i enjoyed speaking with you,original,bye,2 -yes,all right,original,book,1 -yes,that's right,original,book,1 -no,"no, that's wrong",original,cancel,3 -reminder_update,i need to clean my apartment,parrot,resched,5 -goodbye,greetings,parrot,bye,2 -yes,"yep, that's true",original,book,1 -yes,indeed,original,book,1 -how_busy,how busy is olive garden at five,lambada,avail,0 -greeting,what's up?,parrot,greet,4 -no,say negative,parrot,cancel,3 -yes,yeah yeah,lambada,book,1 -schedule_meeting,check meeting rooms available between one and three pm,original,book,1 -cancel_reservation,cancel reservation at eight for the group,original,cancel,3 -goodbye,bye bye,lambada,bye,2 -no,that's totally wrong,parrot,cancel,3 -yes,affirmative,original,book,1 -yes,indeed,parrot,book,1 -goodbye,the time to say goodbye,parrot,bye,2 -no,no,lambada,cancel,3 -yes,that seems true,original,book,1 -goodbye,it's always a pleasure to talk to you,parrot,bye,2 -goodbye,cya later,original,bye,2 -greeting,how things go?,parrot,greet,4 -thank_you,okay thank you,parrot,bye,2 -meeting_schedule,meetings today,original,avail,0 -greeting,hey hey!,original,greet,4 -yes,certainly,parrot,book,1 -yes,ya,original,book,1 -no,i'll pass,original,cancel,3 -meeting_schedule,when is this meeting?,parrot,avail,0 -no,negative,original,cancel,3 -yes,agreed,original,book,1 -yes,indeed,original,book,1 -yes,not false,parrot,book,1 -no,negating,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -calendar,what's on the calendar for march 4,parrot,avail,0 -goodbye,good-bye,parrot,bye,2 -yes,yeah,original,book,1 -goodbye,it was nice to talk to you about that,parrot,bye,2 -no,no!,original,cancel,3 -greeting,"hello, what's up",original,greet,4 -date,where's tomorrow's date,parrot,avail,0 -reminder_update,how about a reminder?,parrot,resched,5 -greeting,yo how's it going,parrot,greet,4 -yes,indeed,parrot,book,1 -no,false for sure,original,cancel,3 -no,FALSE,lambada,cancel,3 -thank_you,appreciate the assistance,parrot,bye,2 -schedule_meeting,i need a meeting room for 9:30am on sunday,lambada,book,1 -schedule_meeting,please set up a meeting with tom at 5 pm,parrot,book,1 -goodbye,tootles,original,bye,2 -no,it's a no,original,cancel,3 -greeting,whats up?,parrot,greet,4 -meeting_schedule,are there meetings between 1 pm and 3 pm?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -no,invalid,original,cancel,3 -no,nay,original,cancel,3 -reminder_update,remember to check my mail,parrot,resched,5 -greeting,bonjour,original,greet,4 -how_busy,how long does it take to sit in the cheese cake factory?,parrot,avail,0 -goodbye,good conversation,parrot,bye,2 -yes,yes please,original,book,1 -greeting,"hi, ai",original,greet,4 -no,that’s incorrect,original,cancel,3 -yes,affirmitive,original,book,1 -cancel_reservation,cancellation of dinner reservation,parrot,cancel,3 -yes,obviously,parrot,book,1 -no,the wrong answer,parrot,cancel,3 -date,what day?,parrot,avail,0 -goodbye,say goodbye,parrot,bye,2 -date,today?,parrot,avail,0 -calendar,what's on my calendar for today?,parrot,avail,0 -goodbye,peace out,original,bye,2 -goodbye,fairwell?,parrot,bye,2 -no,no?,parrot,cancel,3 -greeting,"hey, how are you",original,greet,4 -goodbye,i'll go,parrot,bye,2 -goodbye,"bye-bye, my friend",lambada,bye,2 -reminder_update,remind yourself to go shopping,parrot,resched,5 -greeting,salutation,parrot,greet,4 -how_busy,how long will it take to be seated at the cheese cake factory?,parrot,avail,0 -date,what will be tomorrow?,parrot,avail,0 -yes,yay,lambada,book,1 -meeting_schedule,i need to find a time to do all the meetings on my schedule,lambada,avail,0 -goodbye,afterward,parrot,bye,2 -calendar,tell me what's on my calendar for march 17?,parrot,avail,0 -greeting,heller,original,greet,4 -thank_you,awesome thanks,parrot,bye,2 -how_busy,if i want a table at the american steak house how long will it take,parrot,avail,0 -yes,huh huh,parrot,book,1 -greeting,salutations,parrot,greet,4 -goodbye,good luck later,parrot,bye,2 -greeting,yo,original,greet,4 -greeting,well hello,original,greet,4 -schedule_meeting,a meeting with mike is needed at 5pm,parrot,book,1 -schedule_meeting,i need help with setting a meeting,parrot,book,1 -yes,okay,original,book,1 -greeting,hows are ya,original,greet,4 -no,negative definitely,parrot,cancel,3 -meeting_schedule,when's my meeting?,parrot,avail,0 -thank_you,you have my sincere thanks,parrot,bye,2 -date,the date is tomorrow,parrot,avail,0 -greeting,heyo,original,greet,4 -no,that's incorrect!,original,cancel,3 -calendar,display my calendar,lambada,avail,0 -calendar,if i have any events on my calendar for saturday you can let me know,parrot,avail,0 -yes,"yes, that's right",original,book,1 -no,not necessarily true,parrot,cancel,3 -yes,"yes, please",parrot,book,1 -how_busy,tell me how busy the restaurant is when i go,parrot,avail,0 -how_busy,what will be the average wait time at buffalo wild wings at 6:30?,lambada,avail,0 -yes,ok,original,book,1 -goodbye,sayonara,original,bye,2 -no,it doesn't seem so,parrot,cancel,3 -goodbye,i'm out,parrot,bye,2 -yes,i know it's true,parrot,book,1 -goodbye,i'm gone,parrot,bye,2 -goodbye,bye!,original,bye,2 -calendar_update,take off my lunch plans for march 13th,parrot,resched,5 -goodbye,wait for me later,parrot,bye,2 -yes,i agree,original,book,1 -goodbye,say goodbye,parrot,bye,2 -thank_you,appreciate it,original,bye,2 -greeting,welcome,parrot,greet,4 -meeting_schedule,tell me the type of meetings i have today?,parrot,avail,0 -schedule_meeting,please book a meeting room for 9am on friday,parrot,book,1 -how_busy,tell me the time it takes to get into the pizzeria?,parrot,avail,0 -greeting,hello bs,parrot,greet,4 -how_busy,how busy will ihop be at 7?,parrot,avail,0 -greeting,hiya!,original,greet,4 -no,no!,original,cancel,3 -greeting,hello there,original,greet,4 -thank_you,very grateful,parrot,bye,2 -schedule_meeting,book me a meeting room for 12pm on february 28th,original,book,1 -date,what's today?,parrot,avail,0 -no,would be no?,parrot,cancel,3 -yes,obviously,parrot,book,1 -greeting,"ah-yah, how are things",lambada,greet,4 -goodbye,goodbye goodbye,parrot,bye,2 -goodbye,i'll be gone,parrot,bye,2 -goodbye,bye-bye,original,bye,2 -goodbye,peace,original,bye,2 -calendar,what's my schedule for april 30th,lambada,avail,0 -reminder_update,i need a reminder to give the dog his medicine at ten,parrot,resched,5 -yes,TRUE,lambada,book,1 -date,is it six days?,parrot,avail,0 -goodbye,bye bye,lambada,bye,2 -yes,is a real statement,parrot,book,1 -yes,TRUE,lambada,book,1 -goodbye,tootles,original,bye,2 -date,what's today?,parrot,avail,0 -no,FALSE,lambada,cancel,3 -how_busy,how long will i have to wait in the cheesecake factory,parrot,avail,0 -yes,facts,original,book,1 -goodbye,you're done,parrot,bye,2 -thank_you,"awesome, thanks",original,bye,2 -goodbye,i'm gone,parrot,bye,2 -no,is my falsehood?,parrot,cancel,3 -goodbye,buhbye,original,bye,2 -how_busy,how busy is outback steakhouse at 6:00,lambada,avail,0 -date,today?,parrot,avail,0 -no,nope,original,cancel,3 -yes,is true,parrot,book,1 -no,that's inaccurate,original,cancel,3 -thank_you,merci beaucoup,original,bye,2 -yes,okay,original,book,1 -how_busy,wait how long will i have to wait for joe?,parrot,avail,0 -no,it's no,parrot,cancel,3 -no,not right now,original,cancel,3 -calendar,tell me what is currently on my calendar for march 12th?,lambada,avail,0 -no,no?,parrot,cancel,3 -date,what will it be in six days,parrot,avail,0 -greeting,it is good to see you,original,greet,4 -meeting_schedule,i need to know if i have a meeting with michael,parrot,avail,0 -calendar,do i have anything scheduled on january 1st?,original,avail,0 -goodbye,good speaking to you,original,bye,2 -goodbye,this conversation was good,parrot,bye,2 -yes,sure,original,book,1 -meeting_schedule,is my meeting with leroy scheduled?,parrot,avail,0 -date,please give me the full day and date for today,lambada,avail,0 -goodbye,bye bye!,original,bye,2 -no,negative,original,cancel,3 -thank_you,why thank you?,original,bye,2 -yes,yes,original,book,1 -yes,certainly,parrot,book,1 -calendar,what is currently on my calendar for friday the 1st?,original,avail,0 -schedule_meeting,i want to know if there is meeting room available between 6:00 and 7,lambada,book,1 -goodbye,nice conversation today,parrot,bye,2 -reminder_update,create a reminder,original,resched,5 -goodbye,regards,original,bye,2 -reminder_update,i need a reminder to go to the post office,parrot,resched,5 -greeting,hello how are you,lambada,greet,4 -goodbye,buhbye now,lambada,bye,2 -yes,correct,original,book,1 -thank_you,i'm grateful for the assistance,original,bye,2 -goodbye,sayonara,original,bye,2 -goodbye,the talk was nice,lambada,bye,2 -schedule_meeting,explain how to schedule a meeting,parrot,book,1 -greeting,what's up?,parrot,greet,4 -goodbye,bye bye!,original,bye,2 -cancel_reservation,get rid of my reservation for the dinner,parrot,cancel,3 -date,is today monday?,original,avail,0 -yes,confirmed,original,book,1 -calendar_update,take abc on my calendar on feb 3rd,lambada,resched,5 -yes,positive,parrot,book,1 -goodbye,until next time,original,bye,2 -yes,definitely confirmed,parrot,book,1 -yes,all right,original,book,1 -goodbye,fairwell?,parrot,bye,2 -greeting,hey there fellow,original,greet,4 -thank_you,you answered my question,parrot,bye,2 -thank_you,thank you!,original,bye,2 -date,in 100 days?,parrot,avail,0 -no,nope,original,cancel,3 -reminder_update,give the cat flea medicine,parrot,resched,5 -yes,TRUE,original,book,1 -yes,yep,original,book,1 -yes,"yes, please",parrot,book,1 -goodbye,i'll leave,parrot,bye,2 -calendar,bowling on my calendar?,parrot,avail,0 -no,false sure,parrot,cancel,3 -goodbye,but now i'm leaving,parrot,bye,2 -thank_you,appreciate it,original,bye,2 -no,that's incorrect!,original,cancel,3 -how_busy,how long is the wait time at olive garden right now,lambada,avail,0 -goodbye,no problem just relax,parrot,bye,2 -goodbye,sign off,parrot,bye,2 -date,what is today's date?,original,avail,0 -greeting,how goes it,original,greet,4 -goodbye,go easy,parrot,bye,2 -goodbye,it was great chatting with you,original,bye,2 -reminder_update,give the cat a reminder to come home at 9 o'clock,parrot,resched,5 -thank_you,i appeciate it,parrot,bye,2 -how_busy,how long will i have to wait for a table in the avocado cafe?,parrot,avail,0 -greeting,hola!,original,greet,4 -goodbye,and then goodbye,parrot,bye,2 -thank_you,thanks,original,bye,2 -goodbye,tootles,original,bye,2 -goodbye,will leave now,parrot,bye,2 -thank_you,i am thankful,lambada,bye,2 -goodbye,bye-bye,original,bye,2 -greeting,welcome,parrot,greet,4 -yes,"yeah, that's it",lambada,book,1 -calendar,tell me what's on my calendar for april 15?,parrot,avail,0 -goodbye,say goodbye,parrot,bye,2 -cancel_reservation,i have to cancel my reservation please,parrot,cancel,3 -greeting,so how's everything?,parrot,greet,4 -thank_you,my sincere gratitude,parrot,bye,2 -greeting,hello there,original,greet,4 -no,nada,original,cancel,3 -no,i meant nothing,parrot,cancel,3 -goodbye,later!,original,bye,2 -no,not at all,original,cancel,3 -goodbye,good-bye,parrot,bye,2 -no,say negative,parrot,cancel,3 -date,what is tomorrow's date?,original,avail,0 -yes,just right,parrot,book,1 -yes,my answer is yes,parrot,book,1 -goodbye,thanks goodbye,parrot,bye,2 -yes,i'd say yes,parrot,book,1 -date,what's today's date,original,avail,0 -how_busy,what time can i sit in the restaurant?,parrot,avail,0 -date,today's date is exactly what?,parrot,avail,0 -yes,great,original,book,1 -yes,TRUE,lambada,book,1 -thank_you,thank you again,parrot,bye,2 -greeting,how is everything going?,parrot,greet,4 -yes,yes that's it,original,book,1 -yes,i'll vote for you,parrot,book,1 -no,that's incorrect,original,cancel,3 -no,that isn't true,lambada,cancel,3 -yes,affirmitive,original,book,1 -goodbye,good luck later,parrot,bye,2 -cancel_reservation,tell the restaurant i can't?,parrot,cancel,3 -greeting,how is idy?,parrot,greet,4 -schedule_meeting,i want to meet with bob in the morning,parrot,book,1 -how_busy,how long will the wait in this restaurant be?,parrot,avail,0 -no,naw,parrot,cancel,3 -yes,all right,parrot,book,1 -yes,so it works,parrot,book,1 -yes,"yes, that's it",original,book,1 -greeting,heller,original,greet,4 -date,tell me the day?,parrot,avail,0 -goodbye,bye for now,original,bye,2 -goodbye,i'll leave,parrot,bye,2 -no,that’s incorrect,original,cancel,3 -no,the information is false,parrot,cancel,3 -yes,that would be awesome,original,book,1 -yes,great,original,book,1 -greeting,how's everything,original,greet,4 -no,there is no,parrot,cancel,3 -yes,that is correct,original,book,1 -no,this isn't true,parrot,cancel,3 -yes,it's certainly true,parrot,book,1 -greeting,hola!,original,greet,4 -goodbye,a pleasure to speak with you as always,parrot,bye,2 -how_busy,can you tell me how many people are waiting at chili's around 9pm?,lambada,avail,0 -schedule_meeting,how does scheduling meetings work?,parrot,book,1 -meeting_schedule,do you have any meetings today with sean?,parrot,avail,0 -calendar_update,make a calendar for tomorrow,parrot,resched,5 -thank_you,thanks again!,original,bye,2 -no,it's overwhelmingly negative,parrot,cancel,3 -greeting,aho,parrot,greet,4 -yes,"yes, that's affirmative",original,book,1 -no,no,lambada,cancel,3 -yes,confirm,original,book,1 -thank_you,"nice, excellent!",original,bye,2 -no,no longer valid,parrot,cancel,3 -no,it is false,original,cancel,3 -yes,affirmative,original,book,1 -goodbye,bye,original,bye,2 -greeting,"hey, what's new",original,greet,4 -greeting,what's new?,parrot,greet,4 -thank_you,you have been a good help,lambada,bye,2 -no,please no,parrot,cancel,3 -meeting_schedule,what is on my agenda today?,parrot,avail,0 -no,not true,original,cancel,3 -goodbye,lovely conversation,parrot,bye,2 -cancel_reservation,please cancel my reservation for the evening,parrot,cancel,3 -date,i need to know what the date is now,lambada,avail,0 -greeting,hola,original,greet,4 -goodbye,see ya,lambada,bye,2 -no,i don't think it's right,parrot,cancel,3 -yes,uh-huh,original,book,1 -thank_you,okay thanks,original,bye,2 -yes,ya,original,book,1 -greeting,"hey, ai",original,greet,4 -greeting,how's the ayi?,parrot,greet,4 -date,what's the month and day today?,parrot,avail,0 -thank_you,i owe you,parrot,bye,2 -thank_you,you did it,parrot,bye,2 -meeting_schedule,what's the meeting schedule,lambada,avail,0 -how_busy,how long will it take to get a table at al jolo,lambada,avail,0 -thank_you,it's my debt,parrot,bye,2 -meeting_schedule,what's my meeting calendar?,parrot,avail,0 -goodbye,fairwell,original,bye,2 -schedule_meeting,can you schedule a meeting for me?,original,book,1 -how_busy,can you tell me how long the wait is at the lobster?,parrot,avail,0 -calendar,is there anything on my calendar for next weekend?,parrot,avail,0 -no,it is no,original,cancel,3 -date,what date tomorrow?,parrot,avail,0 -greeting,nice day,lambada,greet,4 -calendar_update,remove the recurring training meeting events off my calendar,original,resched,5 -reminder_update,remind me something,parrot,resched,5 -date,this is the day,parrot,avail,0 -greeting,well hello,original,greet,4 -calendar_update,remove meeting with carla from the calendar,original,resched,5 -thank_you,thank you!,original,bye,2 -yes,correct,original,book,1 -yes,oh-huh,parrot,book,1 -date,what date tomorrow?,parrot,avail,0 -no,that's false,original,cancel,3 -calendar,can you tell me how many days i've set on my calendar for tomorrow?,parrot,avail,0 -calendar,'check my calendar for saturday,parrot,avail,0 -goodbye,see you again soon,original,bye,2 -no,not that one,original,cancel,3 -how_busy,what's the typical wait for a table in gobi steakhouse?,parrot,avail,0 -greeting,hey there!,original,greet,4 -how_busy,wait for dinner at the red lobster?,parrot,avail,0 -cancel_reservation,call my reservation canceled,lambada,cancel,3 -yes,indeed,original,book,1 -cancel_reservation,i don't want my reservation,parrot,cancel,3 -yes,correct,original,book,1 -meeting_schedule,wanna meet roger?,parrot,avail,0 -goodbye,my way,parrot,bye,2 -greeting,is everything going okay?,original,greet,4 -greeting,how's it with you?,parrot,greet,4 -no,negation,parrot,cancel,3 -greeting,why hello?,original,greet,4 -greeting,give me the details,parrot,greet,4 -thank_you,okay thank you,parrot,bye,2 -greeting,whats up?,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -greeting,hiya,original,greet,4 -date,what day?,parrot,avail,0 -how_busy,how long is the wait on fridays?,parrot,avail,0 -no,nada,original,cancel,3 -goodbye,later!,original,bye,2 -thank_you,appreciate it,original,bye,2 -greeting,what's new?,parrot,greet,4 -how_busy,will there be a wait time at the cheese cake factory,lambada,avail,0 -how_busy,please tell me how busy it is in the olive garden at 7pm?,parrot,avail,0 -greeting,hey there fellow,original,greet,4 -calendar,show me the calendar?,parrot,avail,0 -no,FALSE,original,cancel,3 -thank_you,you've been great,parrot,bye,2 -no,naw,parrot,cancel,3 -no,that's not what i want!,original,cancel,3 -date,is the date?,parrot,avail,0 -thank_you,good job,lambada,bye,2 -no,that's a wrong answer,parrot,cancel,3 -yes,"yep, let's do that",lambada,book,1 -greeting,hola!,original,greet,4 -goodbye,tootles,original,bye,2 -no,i would rather not,lambada,cancel,3 -yes,perfect,parrot,book,1 -no,yes it's false,parrot,cancel,3 -goodbye,good talk,parrot,bye,2 -no,ill pass,original,cancel,3 -greeting,heller,original,greet,4 -yes,confirmed,original,book,1 -no,but that's not true,parrot,cancel,3 -thank_you,thanks,original,bye,2 -goodbye,bye bye,lambada,bye,2 -greeting,hiya,original,greet,4 -goodbye,goodbye goodbye,parrot,bye,2 -goodbye,it's over,parrot,bye,2 -yes,positive,original,book,1 -goodbye,"thanks, bye",original,bye,2 -yes,yes,original,book,1 -greeting,how's it going for you?,parrot,greet,4 -no,no,lambada,cancel,3 -greeting,"hey, what's new",original,greet,4 -greeting,wake up ai,parrot,greet,4 -goodbye,later gator!,original,bye,2 -yes,yes you are right,original,book,1 -yes,yeah,original,book,1 -greeting,aho,parrot,greet,4 -no,hell nah,original,cancel,3 -schedule_meeting,set up a meeting,parrot,book,1 -goodbye,good-bye,parrot,bye,2 -thank_you,very grateful,parrot,bye,2 -goodbye,later goodbye,parrot,bye,2 -meeting_schedule,when is my meeting scheduled?,parrot,avail,0 -how_busy,how long will the wait be at the steak house?,parrot,avail,0 -goodbye,bye my friend,parrot,bye,2 -how_busy,how long will it take me to sit down at the red lobster restaurant?,parrot,avail,0 -goodbye,later,original,bye,2 -greeting,hello,original,greet,4 -yes,affirmative,original,book,1 -goodbye,sayonara,original,bye,2 -greeting,hey yai,lambada,greet,4 -yes,it's certainly positive,parrot,book,1 -cancel_reservation,is it possible to cancel the outback reservation for the johnsons?,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -meeting_schedule,can you give me the date and time of my meeting with dr jack,parrot,avail,0 -reminder_update,keep checking the steak,parrot,resched,5 -greeting,ahoy,lambada,greet,4 -yes,it's logical,parrot,book,1 -schedule_meeting,how does scheduling work?,parrot,book,1 -meeting_schedule,check the start time of the meeting scheduled today,parrot,avail,0 -no,no,lambada,cancel,3 -goodbye,lovely conversation,parrot,bye,2 -greeting,yo,original,greet,4 -yes,"yes, that's it",original,book,1 -thank_you,you've been amazing,lambada,bye,2 -how_busy,what time you expect to wait for a table in chili's?,parrot,avail,0 -no,negatory,original,cancel,3 -greeting,how's life,original,greet,4 -no,sure it's wrong,parrot,cancel,3 -thank_you,nice,parrot,bye,2 -reminder_update,make a reminder to book a flight to america,lambada,resched,5 -goodbye,sign off,parrot,bye,2 -goodbye,sayonara,original,bye,2 -greeting,greetings to you,original,greet,4 -cancel_reservation,cancel my dinner reservation please,original,cancel,3 -meeting_schedule,what's on my schedule?,parrot,avail,0 -goodbye,fairwell?,parrot,bye,2 -how_busy,tell me the time to wait at the pizza factory?,parrot,avail,0 -goodbye,goodbye!,original,bye,2 -goodbye,later!,original,bye,2 -yes,TRUE,lambada,book,1 -no,it's a mistake,parrot,cancel,3 -goodbye,goodnight,original,bye,2 -yes,yep,original,book,1 -no,it's very false,parrot,cancel,3 -thank_you,a special thanks to you,parrot,bye,2 -greeting,what's up?,parrot,greet,4 -goodbye,just relax,parrot,bye,2 -no,that’s incorrect,original,cancel,3 -yes,definitely,original,book,1 -yes,do that?,original,book,1 -greeting,what's happened?,parrot,greet,4 -goodbye,bye-bye,original,bye,2 -no,erroneous,parrot,cancel,3 -how_busy,how busy is michel at 3,lambada,avail,0 -no,no way,original,cancel,3 -no,FALSE,original,cancel,3 -goodbye,goodbye,original,bye,2 -goodbye,goodbye later,parrot,bye,2 -greeting,what do you feel today?,parrot,greet,4 -goodbye,thank you for talking to me,lambada,bye,2 -greeting,hi,original,greet,4 -thank_you,i owe you one!,original,bye,2 -how_busy,what's the typical time to eat at red lobster,original,avail,0 -meeting_schedule,can you list the meetings i've got today?,parrot,avail,0 -yes,that's correct,original,book,1 -yes,right,parrot,book,1 -yes,accept,parrot,book,1 -greeting,salutations!,original,greet,4 -greeting,hey,original,greet,4 -how_busy,how busy will orange beach be at 11 pm,lambada,avail,0 -greeting,what's up,original,greet,4 -no,that's erroneous,parrot,cancel,3 -greeting,is everything going okay?,original,greet,4 -calendar,how do you plan on march 11?,parrot,avail,0 -thank_you,and i'm grateful,parrot,bye,2 -goodbye,you're done,parrot,bye,2 -yes,that makes sense,lambada,book,1 -goodbye,regards,original,bye,2 -no,i'll pass,original,cancel,3 -yes,i think it's right,parrot,book,1 -yes,right,parrot,book,1 -greeting,hello there ai,original,greet,4 -goodbye,good-bye,parrot,bye,2 -thank_you,very grateful,parrot,bye,2 -date,date tomorrow?,parrot,avail,0 -no,that is wrong,original,cancel,3 -goodbye,peace,original,bye,2 -goodbye,nice chat today,lambada,bye,2 -greeting,salutation,parrot,greet,4 -goodbye,i'm going to leave,parrot,bye,2 -greeting,aloha,original,greet,4 -no,not right?,parrot,cancel,3 -goodbye,later gater,original,bye,2 -goodbye,i enjoyed our goodbye talk,parrot,bye,2 -yes,correct,original,book,1 -greeting,how's idy?,parrot,greet,4 -no,i'd rather not answer that,parrot,cancel,3 -no,"no, that is false",lambada,cancel,3 -how_busy,waiting for macaroni and cheese?,parrot,avail,0 -thank_you,"great, thanks!",original,bye,2 -cancel_reservation,cancel the reservation for joe and i right now for the zephers reservation we had booked,original,cancel,3 -goodbye,go easy,parrot,bye,2 -greeting,yo,original,greet,4 -yes,"yep, that's right",original,book,1 -thank_you,many thanks,original,bye,2 -thank_you,okay thanks,original,bye,2 -yes,that is affirmative,original,book,1 -meeting_schedule,i need to know if i have meetings from 3 to 6pm,parrot,avail,0 -greeting,you good?,parrot,greet,4 -yes,it's true,original,book,1 -yes,let's do it,parrot,book,1 -no,it's my false statement,parrot,cancel,3 -greeting,hey,original,greet,4 -thank_you,i'm glad you helped,parrot,bye,2 -greeting,what's my feeling?,parrot,greet,4 -greeting,how're you?,parrot,greet,4 -yes,certainly,parrot,book,1 -no,negatory?,parrot,cancel,3 -yes,"yes, please",original,book,1 -yes,i'll vote for you,parrot,book,1 -how_busy,how long will the wait be for dinner in olive garden,parrot,avail,0 -how_busy,how long will it take me to sit on the octopus?,parrot,avail,0 -how_busy,how busy is michel's at 6 pm,lambada,avail,0 -how_busy,tell me the time for a table at the texas roadhouse?,parrot,avail,0 -yes,"yes, please",original,book,1 -yes,yep,original,book,1 -how_busy,the wait at rancho alamo?,parrot,avail,0 -yes,please confirm that it's true,parrot,book,1 -yes,"yup, that's true",original,book,1 -no,FALSE,original,cancel,3 -yes,yeap,original,book,1 -greeting,"hello, good morning",lambada,greet,4 -how_busy,is imbrosio busy at 6?,parrot,avail,0 -goodbye,goodbye then,parrot,bye,2 -thank_you,i'm so grateful,parrot,bye,2 -no,no?,parrot,cancel,3 -goodbye,later!,original,bye,2 -greeting,hey how ya been,lambada,greet,4 -cancel_reservation,cancel tonight's dinner reservation,original,cancel,3 -greeting,hello siri,original,greet,4 -goodbye,ill leave now,parrot,bye,2 -how_busy,how long can i expect the olive garden to be busy at dinner,parrot,avail,0 -goodbye,greetings,parrot,bye,2 -calendar,what's my schedule for april 3?,parrot,avail,0 -how_busy,is ihop busy around 9 o'clock?,parrot,avail,0 -no,naw,original,cancel,3 -no,that's totally false,parrot,cancel,3 -no,negating,parrot,cancel,3 -no,negating,parrot,cancel,3 -date,what year?,parrot,avail,0 -date,what's the day now,parrot,avail,0 -yes,definitely,original,book,1 -goodbye,good luck,lambada,bye,2 -goodbye,good-bye,parrot,bye,2 -yes,correct,original,book,1 -no,hell nah,original,cancel,3 -greeting,aloha,original,greet,4 -yes,yup,original,book,1 -thank_you,thanks please,original,bye,2 -thank_you,thank you,original,bye,2 -calendar,ask me if my calendar has appointments for may 15,parrot,avail,0 -yes,"yes, please",parrot,book,1 -how_busy,how long will the wait be at imo's at 5:30,lambada,avail,0 -no,no!,original,cancel,3 -no,invalid,original,cancel,3 -meeting_schedule,what time is my meeting with robin scheduled for?,parrot,avail,0 -date,today?,parrot,avail,0 -greeting,how's everything?,parrot,greet,4 -greeting,how's the life?,parrot,greet,4 -yes,yeah yeah,lambada,book,1 -greeting,hi,original,greet,4 -how_busy,how long will the wait be at the red lobster at 7:30,lambada,avail,0 -no,FALSE,original,cancel,3 -no,thats a negative,original,cancel,3 -date,what's going on today?,parrot,avail,0 -yes,"yeah, that's true",lambada,book,1 -calendar_update,clear my calendar for the feb,lambada,resched,5 -reminder_update,set a reminder for my doctors appointment,original,resched,5 -greeting,how's the ayi?,parrot,greet,4 -date,list the words for tomorrow?,parrot,avail,0 -reminder_update,please remind me to write this note,parrot,resched,5 -goodbye,goodbye then,parrot,bye,2 -goodbye,later,original,bye,2 -greeting,how's the life in my town?,parrot,greet,4 -greeting,hello bs,parrot,greet,4 -yes,perfect,parrot,book,1 -cancel_reservation,can i cancel my reservation for dinner on saturday please?,parrot,cancel,3 -goodbye,i'm going,parrot,bye,2 -greeting,aloha,original,greet,4 -no,negatory?,parrot,cancel,3 -goodbye,adios,original,bye,2 -goodbye,thanks goodbye,parrot,bye,2 -thank_you,why thank you?,original,bye,2 -greeting,how is everything going?,parrot,greet,4 -date,what's the date,original,avail,0 -greeting,yo,original,greet,4 -greeting,aloha,original,greet,4 -how_busy,is the mcdonald's busy at 9 o'clock?,parrot,avail,0 -date,list the current date?,parrot,avail,0 -cancel_reservation,i need you to cancel my reservation for smith at 615,parrot,cancel,3 -goodbye,adios!,original,bye,2 -goodbye,farewell,original,bye,2 -yes,it's logical,parrot,book,1 -date,in 9 days?,parrot,avail,0 -date,please explain today,parrot,avail,0 -greeting,hello ai,parrot,greet,4 -yes,absolutely!,original,book,1 -thank_you,thanks for that!,original,bye,2 -yes,yay,lambada,book,1 -yes,yes,original,book,1 -goodbye,greetings,parrot,bye,2 -no,that's not the case,parrot,cancel,3 -yes,confirmed,original,book,1 -cancel_reservation,removing the dinner reservation,parrot,cancel,3 -yes,that would be awesome,original,book,1 -yes,yes please,original,book,1 -goodbye,sign off,parrot,bye,2 -greeting,hey there!,original,greet,4 -calendar,i need to know what's on my calendar for friday the 1st?,parrot,avail,0 -yes,right,parrot,book,1 -goodbye,take a rest,parrot,bye,2 -calendar_update,remove the date in my calendar for next friday,parrot,resched,5 -goodbye,later!,original,bye,2 -reminder_update,remember to remember later,parrot,resched,5 -greeting,hi ai,original,greet,4 -no,nope not it,original,cancel,3 -goodbye,good conversation,parrot,bye,2 -reminder_update,add a reminder,lambada,resched,5 -greeting,how's ai doing?,parrot,greet,4 -no,nothing,parrot,cancel,3 -goodbye,for now,parrot,bye,2 -no,most definitely false,parrot,cancel,3 -date,what is that day?,parrot,avail,0 -greeting,hola,original,greet,4 -thank_you,thank ya!,original,bye,2 -yes,great,original,book,1 -yes,uh huh,original,book,1 -how_busy,how busy is the olive garden?,parrot,avail,0 -greeting,salutation,parrot,greet,4 -goodbye,time to say goodbye,parrot,bye,2 -calendar,give me my schedule for april 30th,parrot,avail,0 -how_busy,is the restaurant open at night?,parrot,avail,0 -no,no don't do that!,original,cancel,3 -yes,yeah,original,book,1 -yes,that's right,original,book,1 -thank_you,thank ya!,original,bye,2 -calendar,can you tell me what's on the calendar for february?,parrot,avail,0 -greeting,whats new?,parrot,greet,4 -date,describe the day?,parrot,avail,0 -yes,very true,original,book,1 -yes,definitely yes,parrot,book,1 -how_busy,how busy is the macaroni grill,parrot,avail,0 -reminder_update,please set a reminder for 2pm to clean the kitchen,parrot,resched,5 -yes,is true,parrot,book,1 -goodbye,fairwell,original,bye,2 -yes,yes,original,book,1 -how_busy,how long is the wait for dining at the restaurant,lambada,avail,0 -goodbye,greetings,parrot,bye,2 -greeting,"hello, anyone there",original,greet,4 -no,don't agree,parrot,cancel,3 -thank_you,gracias,original,bye,2 -no,it's a false claim,parrot,cancel,3 -meeting_schedule,tell me what my day looks like today in terms of meeting?,parrot,avail,0 -thank_you,gracias,original,bye,2 -yes,yeah,original,book,1 -thank_you,appreciated,original,bye,2 -calendar,tell me my calendar?,parrot,avail,0 -greeting,how's everything?,parrot,greet,4 -no,invalid,original,cancel,3 -greeting,how goes it,original,greet,4 -no,not at all,original,cancel,3 -greeting,well hello,original,greet,4 -goodbye,a good conversation,parrot,bye,2 -greeting,how you feel?,parrot,greet,4 -calendar_update,i need to delete my doctor's appointment scheduled for march 15th from my calendar,original,resched,5 -thank_you,thanks for that information,lambada,bye,2 -yes,confirm,original,book,1 -calendar,what is on my calendar for march 30th?,parrot,avail,0 -goodbye,the conversation with you was pleasant,parrot,bye,2 -greeting,hola,original,greet,4 -cancel_reservation,what's wrong with my reservation in the red robin?,parrot,cancel,3 -goodbye,im leaving,parrot,bye,2 -greeting,"hey, what's up",original,greet,4 -greeting,how's everything going?,parrot,greet,4 -goodbye,"nice talk, talk to you later",original,bye,2 -goodbye,bye,original,bye,2 -cancel_reservation,take away my reservation at 4 pm at the steak house please,parrot,cancel,3 -yes,oh-huh,parrot,book,1 -schedule_meeting,please help me find a meeting,parrot,book,1 -how_busy,how busy will the chipotle garden be around 9,parrot,avail,0 -goodbye,i'm leaving,parrot,bye,2 -thank_you,thank a bunch,original,bye,2 -greeting,hi,original,greet,4 -no,so that's no,parrot,cancel,3 -thank_you,i appreciate it,original,bye,2 -yes,yeah,original,book,1 -calendar,help me know what is showing on my calendar for the 17th of march,lambada,avail,0 -yes,that is really true,lambada,book,1 -yes,definitely yes,parrot,book,1 -meeting_schedule,the meetings today,parrot,avail,0 -no,not right now,original,cancel,3 -yes,absolutely,original,book,1 -no,not that,original,cancel,3 -goodbye,goodbyes soon,parrot,bye,2 -goodbye,until next time,original,bye,2 -greeting,hi how are you,original,greet,4 -thank_you,i'm so grateful for this answer,parrot,bye,2 -yes,10-Apr,original,book,1 -goodbye,a good conversation,parrot,bye,2 -no,don't agree,parrot,cancel,3 -goodbye,bye!,original,bye,2 -how_busy,how long does it take to get a table at chili's?,parrot,avail,0 -yes,that's a yes,original,book,1 -goodbye,adios!,original,bye,2 -no,no thanks,original,cancel,3 -thank_you,okay thanks,original,bye,2 -goodbye,as regards,parrot,bye,2 -meeting_schedule,meeting today,parrot,avail,0 -goodbye,it's time to run,parrot,bye,2 -yes,that is right,original,book,1 diff --git a/data/raw/entities/appointment_id.csv b/data/raw/entities/appointment_id.csv new file mode 100644 index 0000000..12e0058 --- /dev/null +++ b/data/raw/entities/appointment_id.csv @@ -0,0 +1,151 @@ +text,entity +#079183,appointment_id +#310528,appointment_id +#334313,appointment_id +#600778,appointment_id +#531844,appointment_id +#239161,appointment_id +#975878,appointment_id +#684309,appointment_id +#974214,appointment_id +#535330,appointment_id +#861346,appointment_id +#437573,appointment_id +#680889,appointment_id +#877240,appointment_id +#676289,appointment_id +#255297,appointment_id +#192768,appointment_id +#230130,appointment_id +#795063,appointment_id +#106072,appointment_id +#304272,appointment_id +#564268,appointment_id +#904815,appointment_id +#947726,appointment_id +#630761,appointment_id +#798223,appointment_id +#261071,appointment_id +#513514,appointment_id +#536444,appointment_id +#568999,appointment_id +#184032,appointment_id +#449703,appointment_id +#623599,appointment_id +#642584,appointment_id +#575048,appointment_id +#642083,appointment_id +#586330,appointment_id +#505823,appointment_id +#132841,appointment_id +#514453,appointment_id +#222384,appointment_id +#682163,appointment_id +#717513,appointment_id +#562717,appointment_id +#641930,appointment_id +#555446,appointment_id +#050317,appointment_id +#470394,appointment_id +#449094,appointment_id +#085342,appointment_id +#081504,appointment_id +#988746,appointment_id +#990686,appointment_id +#420645,appointment_id +#634746,appointment_id +#281149,appointment_id +#554324,appointment_id +#241353,appointment_id +#915298,appointment_id +#460528,appointment_id +#543516,appointment_id +#758129,appointment_id +#613830,appointment_id +#003644,appointment_id +#955118,appointment_id +#692463,appointment_id +#163616,appointment_id +#901602,appointment_id +#040952,appointment_id +#684466,appointment_id +#361254,appointment_id +#519932,appointment_id +#493046,appointment_id +#204345,appointment_id +#928021,appointment_id +#387449,appointment_id +#894207,appointment_id +#040937,appointment_id +#079262,appointment_id +#660065,appointment_id +#781883,appointment_id +#569400,appointment_id +#077573,appointment_id +#356641,appointment_id +#015443,appointment_id +#186683,appointment_id +#962592,appointment_id +#971878,appointment_id +#623681,appointment_id +#077272,appointment_id +#729731,appointment_id +#693909,appointment_id +#587130,appointment_id +#709588,appointment_id +#150062,appointment_id +#886239,appointment_id +#180567,appointment_id +#117656,appointment_id +#934189,appointment_id +#439966,appointment_id +#746934,appointment_id +#420831,appointment_id +#124270,appointment_id +#365560,appointment_id +#255888,appointment_id +#336410,appointment_id +#822368,appointment_id +#881822,appointment_id +#017187,appointment_id +#339055,appointment_id +#682160,appointment_id +#843183,appointment_id +#976105,appointment_id +#036469,appointment_id +#355543,appointment_id +#169618,appointment_id +#761640,appointment_id +#706539,appointment_id +#004766,appointment_id +#993216,appointment_id +#327330,appointment_id +#675180,appointment_id +#538465,appointment_id +#158644,appointment_id +#676483,appointment_id +#000317,appointment_id +#842972,appointment_id +#192560,appointment_id +#124142,appointment_id +#795492,appointment_id +#984794,appointment_id +#113852,appointment_id +#737947,appointment_id +#314123,appointment_id +#222382,appointment_id +#821730,appointment_id +#797665,appointment_id +#141591,appointment_id +#564270,appointment_id +#018673,appointment_id +#556800,appointment_id +#419544,appointment_id +#839944,appointment_id +#426171,appointment_id +#107210,appointment_id +#103401,appointment_id +#286344,appointment_id +#712229,appointment_id +#353753,appointment_id +#156794,appointment_id diff --git a/data/raw/entities/appointment_type.csv b/data/raw/entities/appointment_type.csv new file mode 100644 index 0000000..8f51a73 --- /dev/null +++ b/data/raw/entities/appointment_type.csv @@ -0,0 +1,148 @@ +text,entity +office hours,appointment_type +advising session,appointment_type +thesis discussion,appointment_type +project meeting,appointment_type +oral exam,appointment_type +lab session,appointment_type +tutoring session,appointment_type +check-up,appointment_type +grade review,appointment_type +dissertation defense,appointment_type +career counseling,appointment_type +financial aid consultation,appointment_type +one-on-one,appointment_type +research consultation,appointment_type +faculty meeting,appointment_type +dental cleaning,appointment_type +final project review,appointment_type +mentorship meeting,appointment_type +academic advising,appointment_type +course registration help,appointment_type +writing center appointment,appointment_type +study abroad advising,appointment_type +esame orale,appointment_type +performance review,appointment_type +capstone meeting,appointment_type +progress review,appointment_type +admissions interview,appointment_type +follow-up appointment,appointment_type +ricevimento studenti,appointment_type +IT support session,appointment_type +legal consultation,appointment_type +departmental meeting,appointment_type +scholarship interview,appointment_type +library research consultation,appointment_type +team meeting,appointment_type +haircut,appointment_type +discussione tesi,appointment_type +mental health counseling,appointment_type +consultation,appointment_type +letter of recommendation request,appointment_type +curriculum planning,appointment_type +group project session,appointment_type +sales demo,appointment_type +vaccination,appointment_type +pre-defense meeting,appointment_type +student orientation,appointment_type +colloquio di orientamento,appointment_type +lab safety training,appointment_type +client call,appointment_type +physical therapy session,appointment_type +research update,appointment_type +grant proposal meeting,appointment_type +seminar presentation,appointment_type +lezione privata,appointment_type +personal training session,appointment_type +Ph.D. defense,appointment_type +course planning,appointment_type +post-exam review,appointment_type +project kickoff,appointment_type +eye exam,appointment_type +internship interview,appointment_type +student advising,appointment_type +thesis proposal meeting,appointment_type +car service,appointment_type +academic integrity hearing,appointment_type +campus tour,appointment_type +portfolio review,appointment_type +job interview,appointment_type +blood test,appointment_type +workshop,appointment_type +financial advising,appointment_type +comprehensive exam,appointment_type +thesis committee meeting,appointment_type +alumni interview,appointment_type +vet appointment,appointment_type +study group meeting,appointment_type +research seminar,appointment_type +practicum supervision,appointment_type +brainstorming session,appointment_type +specialist visit,appointment_type +language exchange,appointment_type +peer tutoring,appointment_type +degree audit,appointment_type +qualifying exam,appointment_type +parent-teacher conference,appointment_type +dissertation proposal,appointment_type +lab demonstration,appointment_type +faculty candidate interview,appointment_type +quarterly review,appointment_type +x-ray,appointment_type +student government meeting,appointment_type +thesis defense rehearsal,appointment_type +guest lecture,appointment_type +massage therapy,appointment_type +course selection advising,appointment_type +fieldwork briefing,appointment_type +residence life meeting,appointment_type +strategy meeting,appointment_type +health screening,appointment_type +graduate school consultation,appointment_type +mock interview,appointment_type +research group meeting,appointment_type +academic probation meeting,appointment_type +vehicle inspection,appointment_type +curriculum committee meeting,appointment_type +internship check-in,appointment_type +peer advising,appointment_type +annual physical,appointment_type +dean's meeting,appointment_type +lab cleanup,appointment_type +club meeting,appointment_type +home repair estimate,appointment_type +student disciplinary hearing,appointment_type +presentation rehearsal,appointment_type +postdoctoral interview,appointment_type +1-on-1,appointment_type +therapy session,appointment_type +registration appointment,appointment_type +language proficiency test,appointment_type +honors thesis meeting,appointment_type +tax consultation,appointment_type +orientation session,appointment_type +equipment training,appointment_type +student feedback session,appointment_type +sabbatical leave meeting,appointment_type +client presentation,appointment_type +ultrasound,appointment_type +transfer credit evaluation,appointment_type +faculty review,appointment_type +research ethics review,appointment_type +driving lesson,appointment_type +tenure meeting,appointment_type +class registration,appointment_type +final presentation,appointment_type +pet checkup,appointment_type +department head meeting,appointment_type +code review,appointment_type +psychologist appointment,appointment_type +major declaration meeting,appointment_type +project update,appointment_type +makeup exam,appointment_type +immunization shot,appointment_type +placement test,appointment_type +sync-up,appointment_type +independent study meeting,appointment_type +lecture,appointment_type +allergy test,appointment_type diff --git a/data/raw/entities/practitioner_name.csv b/data/raw/entities/practitioner_name.csv new file mode 100644 index 0000000..4eb7a4b --- /dev/null +++ b/data/raw/entities/practitioner_name.csv @@ -0,0 +1,150 @@ +text,entity +Professor Rossi,practitioner_name +Dr. Smith,practitioner_name +Bianchi,practitioner_name +Professor Emily Clark,practitioner_name +Esposito,practitioner_name +Mr. Jones,practitioner_name +Dott. Marco Conti,practitioner_name +Taylor,practitioner_name +Prof.ssa Gallo,practitioner_name +Dr. Williams,practitioner_name +Romano,practitioner_name +Ms. Davis,practitioner_name +Professor De Luca,practitioner_name +Dr. Wilson,practitioner_name +Colombo,practitioner_name +Ricci,practitioner_name +Prof. David Johnson,practitioner_name +Greco,practitioner_name +Mrs. Evans,practitioner_name +Dr. Giordano,practitioner_name +Brown,practitioner_name +Professor Marino,practitioner_name +Dott.ssa Anna Moretti,practitioner_name +Thomas,practitioner_name +Conti,practitioner_name +Prof. Garcia,practitioner_name +Dr. Laura Ferrari,practitioner_name +Miller,practitioner_name +Russo,practitioner_name +Mr. Rodriguez,practitioner_name +Professor Barbieri,practitioner_name +Dr. Martinez,practitioner_name +Lombardi,practitioner_name +Prof. Müller,practitioner_name +Dott. Luca Morelli,practitioner_name +Harris,practitioner_name +Galli,practitioner_name +Dr. Angela White,practitioner_name +Professor Fontana,practitioner_name +Martin,practitioner_name +Costa,practitioner_name +Prof. Dubois,practitioner_name +Dr. Santoro,practitioner_name +Thompson,practitioner_name +Rinaldi,practitioner_name +Dott.ssa Elena Longo,practitioner_name +Moore,practitioner_name +Professor Bruno,practitioner_name +Lee,practitioner_name +Rizzo,practitioner_name +Dr. Sofia Colombo,practitioner_name +Walker,practitioner_name +Prof. Martini,practitioner_name +Hall,practitioner_name +Gatti,practitioner_name +Ms. Allen,practitioner_name +Professor Mariani,practitioner_name +Dr. King,practitioner_name +Serra,practitioner_name +Wright,practitioner_name +Dott. Paolo Farina,practitioner_name +Young,practitioner_name +Conte,practitioner_name +Prof. Scott,practitioner_name +Dr. Caterina Gentile,practitioner_name +Green,practitioner_name +Leone,practitioner_name +Mr. Adams,practitioner_name +Professor Vitali,practitioner_name +Baker,practitioner_name +Dr. Ferrara,practitioner_name +Hill,practitioner_name +Dott. Francesco Testa,practitioner_name +Nelson,practitioner_name +Pellegrini,practitioner_name +Prof. Campbell,practitioner_name +Coppola,practitioner_name +Dr. Carter,practitioner_name +Amato,practitioner_name +Ms. Mitchell,practitioner_name +Professor D'Amico,practitioner_name +Roberts,practitioner_name +Dott.ssa Valentina Bellini,practitioner_name +Turner,practitioner_name +Parisi,practitioner_name +Dr. Phillips,practitioner_name +Villa,practitioner_name +Prof. Parker,practitioner_name +Caruso,practitioner_name +Evans,practitioner_name +Professor Bernardi,practitioner_name +Dr. Edwards,practitioner_name +Sanna,practitioner_name +Collins,practitioner_name +Dott. Simone Marchetti,practitioner_name +Stewart,practitioner_name +Rossetti,practitioner_name +Prof. Morris,practitioner_name +Grassi,practitioner_name +Dr. Peterson,practitioner_name +De Angelis,practitioner_name +Mr. Rogers,practitioner_name +Professor Sala,practitioner_name +Cook,practitioner_name +Dr. Ferri,practitioner_name +Morgan,practitioner_name +Dott. Matteo Palmieri,practitioner_name +Bell,practitioner_name +Basile,practitioner_name +Prof. Murphy,practitioner_name +Pagano,practitioner_name +Dr. Bailey,practitioner_name +Longo,practitioner_name +Ms. Cooper,practitioner_name +Professor Cattaneo,practitioner_name +Richardson,practitioner_name +Dr. Davide Monti,practitioner_name +Cox,practitioner_name +Santini,practitioner_name +Prof. Howard,practitioner_name +Messina,practitioner_name +Dr. Ward,practitioner_name +Dott.ssa Chiara Negri,practitioner_name +Torres,practitioner_name +Professor Pellegrino,practitioner_name +Mr. Peterson,practitioner_name +Piras,practitioner_name +Gray,practitioner_name +Dr. Giovanni Galli,practitioner_name +James,practitioner_name +Donati,practitioner_name +Prof. Watson,practitioner_name +Fiore,practitioner_name +Dr. Brooks,practitioner_name +Mancini,practitioner_name +Ms. Kelly,practitioner_name +Professor Sartori,practitioner_name +Sanders,practitioner_name +Dr. Stefano Marchese,practitioner_name +Price,practitioner_name +Marchetti,practitioner_name +Prof. Bennett,practitioner_name +Testa,practitioner_name +Dr. Wood,practitioner_name +D'Angelo,practitioner_name +Mr. Barnes,practitioner_name +Professor Schmidt,practitioner_name +Dr. Lefevre,practitioner_name +Nowak,practitioner_name diff --git a/data/raw/hasd.jsonl b/data/raw/hasd.jsonl new file mode 100644 index 0000000..6d2ccd2 --- /dev/null +++ b/data/raw/hasd.jsonl @@ -0,0 +1,2922 @@ +{"text": "I won't be able to make it.", "intent": "reschedule", "entities": []} +{"text": "avoid looking to schedule a project kickoff with Conte .", "intent": "schedule", "entities": [{"start": 28, "end": 43, "label": "appointment_type"}, {"start": 49, "end": 54, "label": "practitioner_name"}]} +{"text": "what's the blue book value of my car", "intent": "oos", "entities": []} +{"text": "I needed to meet.", "intent": "schedule", "entities": []} +{"text": "Check Prof. Martini's schedule for a research seminar on Friday.", "intent": "query_avail", "entities": [{"start": 6, "end": 19, "label": "practitioner_name"}, {"start": 37, "end": 53, "label": "appointment_type"}]} +{"text": "D'Angelo's calendar for vehicle inspections.", "intent": "query_avail", "entities": [{"start": 0, "end": 8, "label": "practitioner_name"}, {"start": 24, "end": 42, "label": "appointment_type"}]} +{"text": "it is very much false", "intent": "negative_reply", "entities": []} +{"text": "I need to cancel my appointment #355543 with Ms. Allen.", "intent": "cancel", "entities": [{"start": 32, "end": 39, "label": "appointment_id"}, {"start": 45, "end": 54, "label": "practitioner_name"}]} +{"text": "I can't make one project meeting (ID #017187 ).", "intent": "reschedule", "entities": [{"start": 37, "end": 44, "label": "appointment_id"}]} +{"text": "Delete my page student orientation .", "intent": "cancel", "entities": [{"start": 15, "end": 34, "label": "appointment_type"}]} +{"text": "are you good", "intent": "greeting", "entities": []} +{"text": "I need to cancel my defense rehearsal.", "intent": "cancel", "entities": []} +{"text": "and cancel my upcoming meeting.", "intent": "cancel", "entities": []} +{"text": "Delete my curriculum planning with Greco, booking ref #538465.", "intent": "cancel", "entities": [{"start": 10, "end": 29, "label": "appointment_type"}, {"start": 35, "end": 40, "label": "practitioner_name"}, {"start": 54, "end": 61, "label": "appointment_id"}]} +{"text": "please must change my meeting with Leone .", "intent": "reschedule", "entities": [{"start": 35, "end": 40, "label": "practitioner_name"}]} +{"text": "I'd like to choose a time slot.", "intent": "schedule", "entities": []} +{"text": "thats a negative", "intent": "negative_reply", "entities": []} +{"text": "I can't make my check-up on facebook", "intent": "reschedule", "entities": [{"start": 16, "end": 24, "label": "appointment_type"}]} +{"text": "Please cancel my upcoming meeting.", "intent": "cancel", "entities": []} +{"text": "This represents a cancellation for my appointment with Ms. Kelly .", "intent": "cancel", "entities": [{"start": 55, "end": 64, "label": "practitioner_name"}]} +{"text": "Book a meeting about my final .", "intent": "schedule", "entities": []} +{"text": "Schedule ends with Dr. Martinez .", "intent": "schedule", "entities": [{"start": 19, "end": 31, "label": "practitioner_name"}]} +{"text": "what movie is it that says today is a good day to die", "intent": "oos", "entities": []} +{"text": "I'd like a book a consultation.", "intent": "schedule", "entities": []} +{"text": "i gotta say no", "intent": "negative_reply", "entities": []} +{"text": "we can't make my scheduled appointment.", "intent": "reschedule", "entities": []} +{"text": "Can I get a portfolio review with De Angelis?", "intent": "schedule", "entities": [{"start": 12, "end": 28, "label": "appointment_type"}, {"start": 34, "end": 44, "label": "practitioner_name"}]} +{"text": "the answer to that is affirmative", "intent": "positive_reply", "entities": []} +{"text": "Availability for curriculum committee meetings this week.", "intent": "query_avail", "entities": [{"start": 17, "end": 45, "label": "appointment_type"}]} +{"text": "I need to cancel my thesis discussion.", "intent": "cancel", "entities": []} +{"text": "write the next chapter of my biography and let me know when you have finished it", "intent": "oos", "entities": []} +{"text": "yep, that's right", "intent": "positive_reply", "entities": []} +{"text": "Show your booking calendar for a lab cleanup with Professor Sartori .", "intent": "query_avail", "entities": [{"start": 33, "end": 44, "label": "appointment_type"}, {"start": 50, "end": 67, "label": "practitioner_name"}]} +{"text": "I need to book a comprehensive exam with Ms. Davis ", "intent": "schedule", "entities": [{"start": 17, "end": 35, "label": "appointment_type"}, {"start": 41, "end": 50, "label": "practitioner_name"}]} +{"text": "start times for Greco next week.", "intent": "query_avail", "entities": [{"start": 16, "end": 21, "label": "practitioner_name"}]} +{"text": "publicly available physical therapy session .", "intent": "query_avail", "entities": [{"start": 19, "end": 43, "label": "appointment_type"}]} +{"text": "Cancel my meeting with you Moore .", "intent": "cancel", "entities": [{"start": 27, "end": 32, "label": "practitioner_name"}]} +{"text": "click the booking calendar.", "intent": "query_avail", "entities": []} +{"text": "no, that's not it", "intent": "negative_reply", "entities": []} +{"text": "I need an driving lesson.", "intent": "schedule", "entities": [{"start": 10, "end": 24, "label": "appointment_type"}]} +{"text": "i don't think so", "intent": "negative_reply", "entities": []} +{"text": "save my text on my laptop hard drive", "intent": "oos", "entities": []} +{"text": "I have to move through #103401 appointment.", "intent": "reschedule", "entities": [{"start": 23, "end": 30, "label": "appointment_id"}]} +{"text": "I need to specify a personal training session .", "intent": "schedule", "entities": [{"start": 20, "end": 45, "label": "appointment_type"}]} +{"text": "Book a weekly slot.", "intent": "schedule", "entities": []} +{"text": "Let's set up enough time to connect.", "intent": "schedule", "entities": []} +{"text": "Free slots with Dr. Lefevre and a student feedback session this afternoon.", "intent": "query_avail", "entities": [{"start": 16, "end": 27, "label": "practitioner_name"}, {"start": 34, "end": 58, "label": "appointment_type"}]} +{"text": "My plans have changed, can I move my grant proposal meeting?", "intent": "reschedule", "entities": [{"start": 37, "end": 59, "label": "appointment_type"}]} +{"text": "did you put a internship interview on the calendar with Collins ?", "intent": "schedule", "entities": [{"start": 14, "end": 34, "label": "appointment_type"}, {"start": 56, "end": 63, "label": "practitioner_name"}]} +{"text": "thanks a lot for the answer", "intent": "positive_reply", "entities": []} +{"text": "Please find a new address for #239161 .", "intent": "reschedule", "entities": [{"start": 30, "end": 37, "label": "appointment_id"}]} +{"text": "I'd like a reschedule.", "intent": "reschedule", "entities": []} +{"text": "The lab session call Pellegrini , booking #339055 , needs to be cancelled.", "intent": "cancel", "entities": [{"start": 21, "end": 31, "label": "practitioner_name"}, {"start": 42, "end": 49, "label": "appointment_id"}]} +{"text": "thank you goodbye", "intent": "bye", "entities": []} +{"text": "I need to meet with Ms. Mitchell.", "intent": "schedule", "entities": [{"start": 20, "end": 32, "label": "practitioner_name"}]} +{"text": "Taylor's availability for a internship interview this week.", "intent": "query_avail", "entities": [{"start": 0, "end": 6, "label": "practitioner_name"}, {"start": 28, "end": 48, "label": "appointment_type"}]} +{"text": "wake up, ai", "intent": "greeting", "entities": []} +{"text": "the answer to that is a resounding yes", "intent": "positive_reply", "entities": []} +{"text": "Get me to Professor Fontana 's schedule.", "intent": "schedule", "entities": [{"start": 10, "end": 27, "label": "practitioner_name"}]} +{"text": "Remove the client presentation with Rossetti from this calendar.", "intent": "cancel", "entities": [{"start": 11, "end": 30, "label": "appointment_type"}, {"start": 36, "end": 44, "label": "practitioner_name"}]} +{"text": "Show openings for a lecture each Friday.", "intent": "query_avail", "entities": [{"start": 20, "end": 27, "label": "appointment_type"}]} +{"text": "Can someone help me schedule something?", "intent": "schedule", "entities": []} +{"text": "hey", "intent": "greeting", "entities": []} +{"text": "goodnight", "intent": "bye", "entities": []} +{"text": "Shift begins meeting with Baker to 3pm.", "intent": "reschedule", "entities": [{"start": 26, "end": 31, "label": "practitioner_name"}]} +{"text": "Please cancel _ upcoming annual physical .", "intent": "cancel", "entities": [{"start": 25, "end": 40, "label": "appointment_type"}]} +{"text": "invalid", "intent": "negative_reply", "entities": []} +{"text": "I need to push my shoulders back.", "intent": "reschedule", "entities": []} +{"text": "Find an example for a Ph.D. defense .", "intent": "query_avail", "entities": [{"start": 22, "end": 35, "label": "appointment_type"}]} +{"text": "My group project session with Lee has to be cancelled.", "intent": "cancel", "entities": [{"start": 3, "end": 24, "label": "appointment_type"}, {"start": 30, "end": 33, "label": "practitioner_name"}]} +{"text": "thanks, bye", "intent": "bye", "entities": []} +{"text": "Delete my appointment, ID = #562717 .", "intent": "cancel", "entities": [{"start": 28, "end": 35, "label": "appointment_id"}]} +{"text": "New internship interview with Professor Sala.", "intent": "schedule", "entities": [{"start": 4, "end": 24, "label": "appointment_type"}, {"start": 30, "end": 44, "label": "practitioner_name"}]} +{"text": "no, that is wrong", "intent": "negative_reply", "entities": []} +{"text": "Move haircut with Dott.ssa Anna Moretti to Friday.", "intent": "reschedule", "entities": [{"start": 6, "end": 13, "label": "appointment_type"}, {"start": 19, "end": 40, "label": "practitioner_name"}]} +{"text": "Delete \\ appointment, ID is #928021 .", "intent": "cancel", "entities": [{"start": 28, "end": 35, "label": "appointment_id"}]} +{"text": "Calendar for next year", "intent": "query_avail", "entities": []} +{"text": "it was great to have this conversation with you", "intent": "bye", "entities": []} +{"text": "Show the booking calendar.", "intent": "query_avail", "entities": []} +{"text": "Arrange a meeting with Conte.", "intent": "schedule", "entities": [{"start": 23, "end": 28, "label": "practitioner_name"}]} +{"text": "I have an excuse I need to change.", "intent": "reschedule", "entities": []} +{"text": "Schedule a sales demo for arbitrary group with Ms. Cooper .", "intent": "schedule", "entities": [{"start": 11, "end": 21, "label": "appointment_type"}, {"start": 47, "end": 57, "label": "practitioner_name"}]} +{"text": "What's free this afternoon.", "intent": "query_avail", "entities": []} +{"text": "Show Pellegrini 's request for a annual physical this Friday.", "intent": "query_avail", "entities": [{"start": 5, "end": 15, "label": "practitioner_name"}, {"start": 33, "end": 48, "label": "appointment_type"}]} +{"text": "I need to cancel my meeting for Dott.ssa Elena Longo on Tuesday.", "intent": "cancel", "entities": [{"start": 32, "end": 52, "label": "practitioner_name"}]} +{"text": "Help me book a project meeting with Dott. Simone Marchetti :", "intent": "schedule", "entities": [{"start": 15, "end": 30, "label": "appointment_type"}, {"start": 36, "end": 58, "label": "practitioner_name"}]} +{"text": "Check for open times.", "intent": "query_avail", "entities": []} +{"text": "Openings for a thesis ;", "intent": "query_avail", "entities": []} +{"text": "When declaring Mr. Barnes free.", "intent": "query_avail", "entities": [{"start": 15, "end": 25, "label": "practitioner_name"}]} +{"text": "Can anyone get a different time for my meeting with Richardson ?", "intent": "reschedule", "entities": [{"start": 52, "end": 62, "label": "practitioner_name"}]} +{"text": "My tutorial session (ID #470394) has a time conflict.", "intent": "reschedule", "entities": [{"start": 24, "end": 31, "label": "appointment_id"}]} +{"text": "I'd hoped to see Dr. King at a different time.", "intent": "reschedule", "entities": [{"start": 17, "end": 25, "label": "practitioner_name"}]} +{"text": "I want to replace my research seminar with Caruso .", "intent": "cancel", "entities": [{"start": 21, "end": 37, "label": "appointment_type"}, {"start": 43, "end": 49, "label": "practitioner_name"}]} +{"text": "I have an appointment that need to change.", "intent": "reschedule", "entities": []} +{"text": "Check Costa 's update for Friday.", "intent": "query_avail", "entities": [{"start": 6, "end": 11, "label": "practitioner_name"}]} +{"text": "The query with Donati can be cancelled.", "intent": "cancel", "entities": [{"start": 15, "end": 21, "label": "practitioner_name"}]} +{"text": "we want to move my appointment with Sanna , ID #562717 .", "intent": "reschedule", "entities": [{"start": 36, "end": 41, "label": "practitioner_name"}, {"start": 47, "end": 54, "label": "appointment_id"}]} +{"text": "What's happened this afternoon.", "intent": "query_avail", "entities": []} +{"text": "Please delete appointment #556800 , my practicum supervision with address Professor Bruno .", "intent": "cancel", "entities": [{"start": 26, "end": 33, "label": "appointment_id"}, {"start": 39, "end": 60, "label": "appointment_type"}, {"start": 74, "end": 89, "label": "practitioner_name"}]} +{"text": "that's totally wrong!", "intent": "negative_reply", "entities": []} +{"text": "thanks again!", "intent": "positive_reply", "entities": []} +{"text": "I need to cancel a meeting, ID #449703.", "intent": "cancel", "entities": [{"start": 31, "end": 38, "label": "appointment_id"}]} +{"text": "Remove the degree audit with Fiore from my calendar.", "intent": "cancel", "entities": [{"start": 11, "end": 23, "label": "appointment_type"}, {"start": 29, "end": 34, "label": "practitioner_name"}]} +{"text": "Mr. Rogers 's replacement for a consultation this week.", "intent": "query_avail", "entities": [{"start": 0, "end": 10, "label": "practitioner_name"}, {"start": 32, "end": 44, "label": "appointment_type"}]} +{"text": "I need to reschedule my appointment #947726 .", "intent": "reschedule", "entities": [{"start": 36, "end": 43, "label": "appointment_id"}]} +{"text": "The meeting with Dott. Paolo Farina (ref #928021 ) remains no longer required.", "intent": "cancel", "entities": [{"start": 17, "end": 35, "label": "practitioner_name"}, {"start": 41, "end": 48, "label": "appointment_id"}]} +{"text": "Book a advising session with Nelson , .", "intent": "schedule", "entities": [{"start": 7, "end": 23, "label": "appointment_type"}, {"start": 29, "end": 35, "label": "practitioner_name"}]} +{"text": "Set up a meeting with Professor De Luca.", "intent": "schedule", "entities": [{"start": 22, "end": 39, "label": "practitioner_name"}]} +{"text": "confirmation of Dott. Luca Morelli for a vaccination on July 23rd.", "intent": "query_avail", "entities": [{"start": 16, "end": 34, "label": "practitioner_name"}, {"start": 41, "end": 52, "label": "appointment_type"}]} +{"text": "course planning |", "intent": "schedule", "entities": [{"start": 0, "end": 15, "label": "appointment_type"}]} +{"text": "List all openings a advising session with Dott.ssa Elena Longo .", "intent": "query_avail", "entities": [{"start": 21, "end": 37, "label": "appointment_type"}, {"start": 43, "end": 63, "label": "practitioner_name"}]} +{"text": "start a portfolio on venture capital funding for me to look over", "intent": "oos", "entities": []} +{"text": "bye", "intent": "bye", "entities": []} +{"text": "I am writing to cancel your appointment.", "intent": "cancel", "entities": []} +{"text": "Time slots for Prof. David Johnson.", "intent": "query_avail", "entities": [{"start": 15, "end": 34, "label": "practitioner_name"}]} +{"text": "Check Conte at free time.", "intent": "query_avail", "entities": [{"start": 6, "end": 11, "label": "practitioner_name"}]} +{"text": "Set up annual physical Gatti .", "intent": "schedule", "entities": [{"start": 7, "end": 22, "label": "appointment_type"}, {"start": 24, "end": 29, "label": "practitioner_name"}]} +{"text": "Cancel #682163.", "intent": "cancel", "entities": [{"start": 7, "end": 14, "label": "appointment_id"}]} +{"text": "Display the schedule of Professor De Luca for a lab safety training ;", "intent": "query_avail", "entities": [{"start": 24, "end": 41, "label": "practitioner_name"}, {"start": 48, "end": 67, "label": "appointment_type"}]} +{"text": "Please cancel my lab session appointment Friday.", "intent": "cancel", "entities": [{"start": 17, "end": 28, "label": "appointment_type"}]} +{"text": "Book me write a annual physical with Turner .", "intent": "schedule", "entities": [{"start": 16, "end": 31, "label": "appointment_type"}, {"start": 37, "end": 43, "label": "practitioner_name"}]} +{"text": "I can't make my appointment, please cancel it.", "intent": "cancel", "entities": []} +{"text": "Can we schedule a group meeting with Dott. Luca Morelli?", "intent": "schedule", "entities": [{"start": 37, "end": 55, "label": "practitioner_name"}]} +{"text": "what stores are in the local mall", "intent": "oos", "entities": []} +{"text": "I'd like to request a password", "intent": "cancel", "entities": []} +{"text": "I must reschedule my appointment, namely #004766 .", "intent": "reschedule", "entities": [{"start": 41, "end": 48, "label": "appointment_id"}]} +{"text": "Cancel my messaging session with Russo .", "intent": "cancel", "entities": [{"start": 33, "end": 38, "label": "practitioner_name"}]} +{"text": "Can you put a office hours on the calendar file Morgan ?", "intent": "schedule", "entities": [{"start": 14, "end": 26, "label": "appointment_type"}, {"start": 48, "end": 54, "label": "practitioner_name"}]} +{"text": "I need to change my progress review with Mrs. Evans, ID is #962592.", "intent": "reschedule", "entities": [{"start": 20, "end": 35, "label": "appointment_type"}, {"start": 41, "end": 51, "label": "practitioner_name"}, {"start": 59, "end": 66, "label": "appointment_id"}]} +{"text": "I need to delete a scheduled meeting.", "intent": "cancel", "entities": []} +{"text": "I will not be coming to my appointment with Dr. Angela White.", "intent": "cancel", "entities": [{"start": 44, "end": 60, "label": "practitioner_name"}]} +{"text": "Prof. Howard meeting times.", "intent": "query_avail", "entities": [{"start": 0, "end": 12, "label": "practitioner_name"}]} +{"text": "I need to book a final presentation with Dr. Stefano Marchese.", "intent": "schedule", "entities": [{"start": 17, "end": 35, "label": "appointment_type"}, {"start": 41, "end": 61, "label": "practitioner_name"}]} +{"text": "Can I change file therapy session with Lombardi ?", "intent": "reschedule", "entities": [{"start": 18, "end": 33, "label": "appointment_type"}, {"start": 39, "end": 47, "label": "practitioner_name"}]} +{"text": "requesting a new meeting.", "intent": "schedule", "entities": []} +{"text": "Let's schedule a lecture.", "intent": "schedule", "entities": [{"start": 17, "end": 24, "label": "appointment_type"}]} +{"text": "will I change my appointment time?", "intent": "reschedule", "entities": []} +{"text": "Change my advising page with Dr. Santoro .", "intent": "reschedule", "entities": [{"start": 29, "end": 40, "label": "practitioner_name"}]} +{"text": "conduct the advising session.", "intent": "cancel", "entities": []} +{"text": "Display schedule for next round", "intent": "query_avail", "entities": []} +{"text": "cancel my appointment.", "intent": "cancel", "entities": []} +{"text": "no way", "intent": "negative_reply", "entities": []} +{"text": "Check for openings.", "intent": "query_avail", "entities": []} +{"text": "I'm cancelling the meeting with Villa.", "intent": "cancel", "entities": [{"start": 32, "end": 37, "label": "practitioner_name"}]} +{"text": "Please cancel my appointment for the esame orale.", "intent": "cancel", "entities": [{"start": 37, "end": 48, "label": "appointment_type"}]} +{"text": "I require a brainstorming session = Professor Sala .", "intent": "schedule", "entities": [{"start": 12, "end": 33, "label": "appointment_type"}, {"start": 36, "end": 50, "label": "practitioner_name"}]} +{"text": "it was great chatting with you", "intent": "bye", "entities": []} +{"text": "• take my grade review off the schedule.", "intent": "cancel", "entities": [{"start": 10, "end": 22, "label": "appointment_type"}]} +{"text": "I'd like to cancel my reservation list Turner .", "intent": "cancel", "entities": [{"start": 39, "end": 45, "label": "practitioner_name"}]} +{"text": "Reschedule my one-on-one with Testa.", "intent": "reschedule", "entities": [{"start": 30, "end": 35, "label": "practitioner_name"}]} +{"text": "Display Professor Cattaneo's free times for a scholarship interview.", "intent": "query_avail", "entities": [{"start": 8, "end": 26, "label": "practitioner_name"}, {"start": 46, "end": 67, "label": "appointment_type"}]} +{"text": "I have an language exchange with Dr. Davide Monti that we need to cancel.", "intent": "cancel", "entities": [{"start": 10, "end": 27, "label": "appointment_type"}, {"start": 33, "end": 49, "label": "practitioner_name"}]} +{"text": "hey, how are you", "intent": "greeting", "entities": []} +{"text": "Book a presentation rehearsal, please.", "intent": "schedule", "entities": [{"start": 7, "end": 29, "label": "appointment_type"}]} +{"text": "Book a daily slot.", "intent": "schedule", "entities": []} +{"text": "I need to cancel appointments #692463 .", "intent": "cancel", "entities": [{"start": 30, "end": 37, "label": "appointment_id"}]} +{"text": "can you tell me how to solve simple algebraic equations with one variable", "intent": "oos", "entities": []} +{"text": "Book a study group meeting , ", "intent": "schedule", "entities": [{"start": 7, "end": 26, "label": "appointment_type"}]} +{"text": "Book pet checkup.", "intent": "schedule", "entities": [{"start": 5, "end": 16, "label": "appointment_type"}]} +{"text": "I need to set up this quick chat.", "intent": "schedule", "entities": []} +{"text": "Can you put a course registration help on the calendar with Basile?", "intent": "schedule", "entities": [{"start": 14, "end": 38, "label": "appointment_type"}, {"start": 60, "end": 66, "label": "practitioner_name"}]} +{"text": "Unfortunately, please need to move my meeting.", "intent": "reschedule", "entities": []} +{"text": "Find an open slot for a equipment training.", "intent": "schedule", "entities": [{"start": 24, "end": 42, "label": "appointment_type"}]} +{"text": "ai you have given me so much information, thank you", "intent": "positive_reply", "entities": []} +{"text": "Shift my meeting with Professor Bernardi to 3pm.", "intent": "reschedule", "entities": [{"start": 22, "end": 40, "label": "practitioner_name"}]} +{"text": "how's it going right now", "intent": "greeting", "entities": []} +{"text": "Rebook an .", "intent": "reschedule", "entities": []} +{"text": "do something with Dott.ssa Valentina Bellini .", "intent": "schedule", "entities": [{"start": 18, "end": 44, "label": "practitioner_name"}]} +{"text": "you need to change the time for my follow-up appointment with Martin (ID: #077272 ).", "intent": "reschedule", "entities": [{"start": 35, "end": 56, "label": "appointment_type"}, {"start": 62, "end": 68, "label": "practitioner_name"}, {"start": 74, "end": 81, "label": "appointment_id"}]} +{"text": "Show Dr. Wood 's openings for a course registration help this ;", "intent": "query_avail", "entities": [{"start": 5, "end": 13, "label": "practitioner_name"}, {"start": 32, "end": 56, "label": "appointment_type"}]} +{"text": "I need just cancel my meeting with Gray .", "intent": "cancel", "entities": [{"start": 35, "end": 39, "label": "practitioner_name"}]} +{"text": "I need help cancel my defense rehearsal.", "intent": "cancel", "entities": []} +{"text": "Can I get an appointment?", "intent": "schedule", "entities": []} +{"text": "Find available specialist visit |", "intent": "query_avail", "entities": [{"start": 15, "end": 31, "label": "appointment_type"}]} +{"text": "I need to cancel my appointment #795492 with Mr. Adams |", "intent": "cancel", "entities": [{"start": 32, "end": 39, "label": "appointment_id"}, {"start": 45, "end": 54, "label": "practitioner_name"}]} +{"text": "I must speak with Professor Marino.", "intent": "schedule", "entities": [{"start": 18, "end": 34, "label": "practitioner_name"}]} +{"text": "Can we find an alternative slot for #709588?", "intent": "reschedule", "entities": [{"start": 36, "end": 43, "label": "appointment_id"}]} +{"text": "Can I get google Mrs. Evans 's calendar?", "intent": "schedule", "entities": [{"start": 17, "end": 27, "label": "practitioner_name"}]} +{"text": "Please confirm the cancellation : booking #684466 , my student disciplinary hearing .", "intent": "cancel", "entities": [{"start": 42, "end": 49, "label": "appointment_id"}, {"start": 55, "end": 83, "label": "appointment_type"}]} +{"text": "Let's schedule a strategy meeting ;", "intent": "schedule", "entities": [{"start": 17, "end": 33, "label": "appointment_type"}]} +{"text": "List openings for listing research group meeting with Roberts .", "intent": "query_avail", "entities": [{"start": 26, "end": 48, "label": "appointment_type"}, {"start": 54, "end": 61, "label": "practitioner_name"}]} +{"text": "Can we reschedule the scholarship interview I have with Professor Vitali }", "intent": "reschedule", "entities": [{"start": 22, "end": 43, "label": "appointment_type"}, {"start": 56, "end": 72, "label": "practitioner_name"}]} +{"text": "Reschedule by meeting with Dr. Smith regarding my thesis.", "intent": "reschedule", "entities": [{"start": 27, "end": 36, "label": "practitioner_name"}]} +{"text": "Could i find a new time for my Ph.D. defense ?", "intent": "reschedule", "entities": [{"start": 31, "end": 44, "label": "appointment_type"}]} +{"text": "that is a fact", "intent": "positive_reply", "entities": []} +{"text": "^ #419544 needs to be moved.", "intent": "reschedule", "entities": [{"start": 2, "end": 9, "label": "appointment_id"}]} +{"text": "there is no way in heck that is true", "intent": "negative_reply", "entities": []} +{"text": "Schedule a esame orale.", "intent": "schedule", "entities": [{"start": 11, "end": 22, "label": "appointment_type"}]} +{"text": "My guest lecture with Mr. Barnes needs not be cancelled.", "intent": "cancel", "entities": [{"start": 3, "end": 16, "label": "appointment_type"}, {"start": 22, "end": 32, "label": "practitioner_name"}]} +{"text": "no, that's incorrect", "intent": "negative_reply", "entities": []} +{"text": "The project meeting address Dott.ssa Elena Longo , ID #085342 , should be cancelled.", "intent": "cancel", "entities": [{"start": 28, "end": 48, "label": "practitioner_name"}, {"start": 54, "end": 61, "label": "appointment_id"}]} +{"text": "I need to find a different time for my meeting.", "intent": "reschedule", "entities": []} +{"text": "how are you doing today, ai", "intent": "greeting", "entities": []} +{"text": "List times to meet with Basile.", "intent": "query_avail", "entities": [{"start": 24, "end": 30, "label": "practitioner_name"}]} +{"text": "Please schedule a new appointment on me.", "intent": "schedule", "entities": []} +{"text": "I have to reschedule my eye exam.", "intent": "reschedule", "entities": [{"start": 24, "end": 32, "label": "appointment_type"}]} +{"text": "Show schedule for this Friday.", "intent": "query_avail", "entities": []} +{"text": "My plans have ended can I move my residence life meeting ?", "intent": "reschedule", "entities": [{"start": 34, "end": 56, "label": "appointment_type"}]} +{"text": "Young free time !", "intent": "query_avail", "entities": [{"start": 0, "end": 5, "label": "practitioner_name"}]} +{"text": "Find current meeting times with De Angelis .", "intent": "query_avail", "entities": [{"start": 32, "end": 42, "label": "practitioner_name"}]} +{"text": "The function with Dr. Bailey is no longer needed.", "intent": "cancel", "entities": [{"start": 18, "end": 28, "label": "practitioner_name"}]} +{"text": "Availability of Donati for a scholarship interview on July 23rd.", "intent": "query_avail", "entities": [{"start": 16, "end": 22, "label": "practitioner_name"}, {"start": 29, "end": 50, "label": "appointment_type"}]} +{"text": "Please delete appointment #861346 my thesis discussion with Professor Richardson .", "intent": "cancel", "entities": [{"start": 26, "end": 33, "label": "appointment_id"}, {"start": 38, "end": 55, "label": "appointment_type"}, {"start": 71, "end": 81, "label": "practitioner_name"}]} +{"text": "haircut availability.", "intent": "query_avail", "entities": [{"start": 0, "end": 7, "label": "appointment_type"}]} +{"text": "I have to cancel list progress review with Mr. Peterson .", "intent": "cancel", "entities": [{"start": 22, "end": 37, "label": "appointment_type"}, {"start": 43, "end": 55, "label": "practitioner_name"}]} +{"text": "the conflict has come up for appointment #894207 .", "intent": "reschedule", "entities": [{"start": 41, "end": 48, "label": "appointment_id"}]} +{"text": "I have to have something on my calendar.", "intent": "reschedule", "entities": []} +{"text": "later gator!", "intent": "bye", "entities": []} +{"text": "typical office hours.", "intent": "schedule", "entities": []} +{"text": "i would like to thank you", "intent": "positive_reply", "entities": []} +{"text": "Please schedule this new appointment for me.", "intent": "schedule", "entities": []} +{"text": "Display three times.", "intent": "query_avail", "entities": []} +{"text": "how ya been", "intent": "greeting", "entities": []} +{"text": "I am writing to reschedule my therapy session.", "intent": "reschedule", "entities": [{"start": 30, "end": 45, "label": "appointment_type"}]} +{"text": "I need to attend my meeting.", "intent": "reschedule", "entities": []} +{"text": "please list my real estate for sale", "intent": "oos", "entities": []} +{"text": "What are Rossetti 's office ?", "intent": "query_avail", "entities": [{"start": 9, "end": 17, "label": "practitioner_name"}]} +{"text": "Book Mrs. Evans financial aid consultation.", "intent": "schedule", "entities": [{"start": 5, "end": 15, "label": "practitioner_name"}, {"start": 16, "end": 42, "label": "appointment_type"}]} +{"text": "Can you help me reschedule #901602?", "intent": "reschedule", "entities": [{"start": 27, "end": 34, "label": "appointment_id"}]} +{"text": "Move my #712229 from Tuesday through Thursday.", "intent": "reschedule", "entities": [{"start": 8, "end": 15, "label": "appointment_id"}]} +{"text": "Display Villa 's free times for a legal consultation |", "intent": "query_avail", "entities": [{"start": 8, "end": 13, "label": "practitioner_name"}, {"start": 34, "end": 52, "label": "appointment_type"}]} +{"text": "search for a academic probation meeting tomorrow.", "intent": "query_avail", "entities": [{"start": 13, "end": 39, "label": "appointment_type"}]} +{"text": "I need a message with Professor Fontana .", "intent": "schedule", "entities": [{"start": 22, "end": 39, "label": "practitioner_name"}]} +{"text": "you've been a big help", "intent": "positive_reply", "entities": []} +{"text": "I'm cancelling. your ID is #004766 .", "intent": "cancel", "entities": [{"start": 27, "end": 34, "label": "appointment_id"}]} +{"text": "The meeting with Sanders (ref #984794 ) is no longer scheduled", "intent": "cancel", "entities": [{"start": 17, "end": 24, "label": "practitioner_name"}, {"start": 30, "end": 37, "label": "appointment_id"}]} +{"text": "clients will not be attending my ricevimento studenti with Pellegrini .", "intent": "cancel", "entities": [{"start": 33, "end": 53, "label": "appointment_type"}, {"start": 59, "end": 69, "label": "practitioner_name"}]} +{"text": "that statement was correct", "intent": "positive_reply", "entities": []} +{"text": "Book a student disciplinary hearing , .", "intent": "schedule", "entities": [{"start": 7, "end": 35, "label": "appointment_type"}]} +{"text": "Display Young for free times.", "intent": "query_avail", "entities": [{"start": 8, "end": 13, "label": "practitioner_name"}]} +{"text": "I need to delete a scheduled .", "intent": "cancel", "entities": []} +{"text": "Please remove the writing center appointment _ Harris from my schedule.", "intent": "cancel", "entities": [{"start": 18, "end": 44, "label": "appointment_type"}, {"start": 47, "end": 53, "label": "practitioner_name"}]} +{"text": "I want to cancel out comprehensive exam with Baker .", "intent": "cancel", "entities": [{"start": 21, "end": 39, "label": "appointment_type"}, {"start": 45, "end": 50, "label": "practitioner_name"}]} +{"text": "Book a ricevimento studenti with Dott.ssa Valentina Bellini as soon is possible.", "intent": "schedule", "entities": [{"start": 7, "end": 27, "label": "appointment_type"}, {"start": 33, "end": 59, "label": "practitioner_name"}]} +{"text": "check times for a team meeting with D'Angelo next week.", "intent": "query_avail", "entities": [{"start": 18, "end": 30, "label": "appointment_type"}, {"start": 36, "end": 44, "label": "practitioner_name"}]} +{"text": "I'm writing to inform you of the cancellation of my code review with Dr. Stefano Marchese , ID #079183 :", "intent": "cancel", "entities": [{"start": 52, "end": 63, "label": "appointment_type"}, {"start": 69, "end": 89, "label": "practitioner_name"}, {"start": 95, "end": 102, "label": "appointment_id"}]} +{"text": "are tattoos safe to get", "intent": "oos", "entities": []} +{"text": "that’s incorrect", "intent": "negative_reply", "entities": []} +{"text": "no, that's wrong", "intent": "negative_reply", "entities": []} +{"text": "I won't be able to attend, so please continue", "intent": "cancel", "entities": []} +{"text": "I need a change my lab session.", "intent": "reschedule", "entities": []} +{"text": "Please cancel an appointment regarding my project with Fiore .", "intent": "cancel", "entities": [{"start": 55, "end": 60, "label": "practitioner_name"}]} +{"text": "My appointment #709588 , a consultation with Prof. Scott , will be cancelled.", "intent": "cancel", "entities": [{"start": 15, "end": 22, "label": "appointment_id"}, {"start": 27, "end": 39, "label": "appointment_type"}, {"start": 45, "end": 56, "label": "practitioner_name"}]} +{"text": "how do i start my own marketing firm", "intent": "oos", "entities": []} +{"text": "I can't make my project meeting (ID #562717).", "intent": "reschedule", "entities": [{"start": 36, "end": 43, "label": "appointment_id"}]} +{"text": "Availability on July 30", "intent": "query_avail", "entities": []} +{"text": "Get me on Rizzo application schedule.", "intent": "schedule", "entities": [{"start": 10, "end": 15, "label": "practitioner_name"}]} +{"text": "might like to reschedule.", "intent": "reschedule", "entities": []} +{"text": "Something has come up and I need to arrange my meeting with Walker .", "intent": "reschedule", "entities": [{"start": 60, "end": 66, "label": "practitioner_name"}]} +{"text": "wassup", "intent": "greeting", "entities": []} +{"text": "Martin student orientation booking.", "intent": "schedule", "entities": [{"start": 0, "end": 6, "label": "practitioner_name"}, {"start": 7, "end": 26, "label": "appointment_type"}]} +{"text": "false for sure", "intent": "negative_reply", "entities": []} +{"text": "Please cancel my appointment for appointments consultation .", "intent": "cancel", "entities": [{"start": 46, "end": 58, "label": "appointment_type"}]} +{"text": "Please arrange a meeting with Testa .", "intent": "schedule", "entities": [{"start": 30, "end": 35, "label": "practitioner_name"}]} +{"text": "Let's schedule with Dott. Luca Morelli.", "intent": "schedule", "entities": [{"start": 20, "end": 38, "label": "practitioner_name"}]} +{"text": "that would be a no", "intent": "negative_reply", "entities": []} +{"text": "I no sooner need my advising session with Dr. Giovanni Galli .", "intent": "cancel", "entities": [{"start": 42, "end": 60, "label": "practitioner_name"}]} +{"text": "i'm grateful to you", "intent": "positive_reply", "entities": []} +{"text": "Time defines a sync-up with Romano .", "intent": "schedule", "entities": [{"start": 15, "end": 22, "label": "appointment_type"}, {"start": 28, "end": 34, "label": "practitioner_name"}]} +{"text": "yo, hows it going", "intent": "greeting", "entities": []} +{"text": "i have to go but it was nice talking again!", "intent": "bye", "entities": []} +{"text": "thanks for chatting, later", "intent": "bye", "entities": []} +{"text": "hello, how is it going", "intent": "greeting", "entities": []} +{"text": "take my appointment from the calendar.", "intent": "cancel", "entities": []} +{"text": "why do we dream", "intent": "oos", "entities": []} +{"text": "I need to arrange a qualifying exam with Dr. Carter urgently.", "intent": "schedule", "entities": [{"start": 20, "end": 35, "label": "appointment_type"}, {"start": 41, "end": 51, "label": "practitioner_name"}]} +{"text": "Please associate my department head meeting with Piras , ID is #163616 .", "intent": "cancel", "entities": [{"start": 20, "end": 43, "label": "appointment_type"}, {"start": 49, "end": 54, "label": "practitioner_name"}, {"start": 63, "end": 70, "label": "appointment_id"}]} +{"text": "defines a course planning with professor Dr. Ward .", "intent": "schedule", "entities": [{"start": 10, "end": 25, "label": "appointment_type"}, {"start": 41, "end": 49, "label": "practitioner_name"}]} +{"text": "I won't be there, just cancel my meeting.", "intent": "cancel", "entities": []} +{"text": "wait for Professor Barbieri tomorrow.", "intent": "query_avail", "entities": [{"start": 9, "end": 27, "label": "practitioner_name"}]} +{"text": "review chapter 6 with my son and verify his math homework answers", "intent": "oos", "entities": []} +{"text": "Let's find an alternative time for my assignment with Dr. Angela White .", "intent": "reschedule", "entities": [{"start": 54, "end": 70, "label": "practitioner_name"}]} +{"text": "thanks a lot", "intent": "positive_reply", "entities": []} +{"text": "Get me on Ms. Cooper's schedule.", "intent": "schedule", "entities": [{"start": 10, "end": 20, "label": "practitioner_name"}]} +{"text": "fix my financial aid consultation time.", "intent": "reschedule", "entities": [{"start": 7, "end": 33, "label": "appointment_type"}]} +{"text": "List the available times.", "intent": "query_avail", "entities": []} +{"text": "My lab demonstration , booking #113852 starting with Santini is cancelled.", "intent": "cancel", "entities": [{"start": 3, "end": 20, "label": "appointment_type"}, {"start": 31, "end": 38, "label": "appointment_id"}, {"start": 53, "end": 60, "label": "practitioner_name"}]} +{"text": "what you just said is wrong", "intent": "negative_reply", "entities": []} +{"text": "no, that can't be right", "intent": "negative_reply", "entities": []} +{"text": "i'd like to find some curtains that look good in this room", "intent": "oos", "entities": []} +{"text": "your answer is appreciated", "intent": "positive_reply", "entities": []} +{"text": "Please process a query for #000317 .", "intent": "cancel", "entities": [{"start": 27, "end": 34, "label": "appointment_id"}]} +{"text": "when will the daffodils bloom this year", "intent": "oos", "entities": []} +{"text": "I am cancelling my language exchange (ID #531844 ) and Basile .", "intent": "cancel", "entities": [{"start": 19, "end": 36, "label": "appointment_type"}, {"start": 41, "end": 48, "label": "appointment_id"}, {"start": 55, "end": 61, "label": "practitioner_name"}]} +{"text": "Let's reschedule appointment #124142.", "intent": "reschedule", "entities": [{"start": 29, "end": 36, "label": "appointment_id"}]} +{"text": "\\ cancel my student disciplinary hearing this Friday.", "intent": "cancel", "entities": [{"start": 12, "end": 40, "label": "appointment_type"}]} +{"text": "that is not the case", "intent": "negative_reply", "entities": []} +{"text": "I have an peer advising with Professor Schmidt that I need to cancel.", "intent": "cancel", "entities": [{"start": 10, "end": 23, "label": "appointment_type"}, {"start": 29, "end": 46, "label": "practitioner_name"}]} +{"text": "Richardson _ schedule.", "intent": "query_avail", "entities": [{"start": 0, "end": 10, "label": "practitioner_name"}]} +{"text": "Let's find an alternative time for my chat with Miller ", "intent": "reschedule", "entities": [{"start": 48, "end": 54, "label": "practitioner_name"}]} +{"text": "I decided to schedule something.", "intent": "schedule", "entities": []} +{"text": "Something came up, I decided to change my appointment.", "intent": "reschedule", "entities": []} +{"text": "no is the answer", "intent": "negative_reply", "entities": []} +{"text": "Talk to Wright >", "intent": "schedule", "entities": [{"start": 8, "end": 14, "label": "practitioner_name"}]} +{"text": "negative", "intent": "negative_reply", "entities": []} +{"text": "When is Professor Bernardi free.", "intent": "query_avail", "entities": [{"start": 8, "end": 26, "label": "practitioner_name"}]} +{"text": "Change my appointment with Donati each Wednesday.", "intent": "reschedule", "entities": [{"start": 27, "end": 33, "label": "practitioner_name"}]} +{"text": "The project meeting with Amato , ID #990686 , should remain cancelled.", "intent": "cancel", "entities": [{"start": 25, "end": 30, "label": "practitioner_name"}, {"start": 36, "end": 43, "label": "appointment_id"}]} +{"text": "what is the cashback rate for my credit card", "intent": "oos", "entities": []} +{"text": "Please find a new slot for #554324.", "intent": "reschedule", "entities": [{"start": 27, "end": 34, "label": "appointment_id"}]} +{"text": "Need to book a slot.", "intent": "schedule", "entities": []} +{"text": "Display free !", "intent": "query_avail", "entities": []} +{"text": "Delete id #538465 from the system.", "intent": "cancel", "entities": [{"start": 10, "end": 17, "label": "appointment_id"}]} +{"text": "yes, that is accurate", "intent": "positive_reply", "entities": []} +{"text": "i’ll be leaving now", "intent": "bye", "entities": []} +{"text": "The appointment is no longer needed.", "intent": "cancel", "entities": []} +{"text": "what's the most difficult yoga pose to perform", "intent": "oos", "entities": []} +{"text": "start up placement test with Esposito .", "intent": "schedule", "entities": [{"start": 9, "end": 23, "label": "appointment_type"}, {"start": 29, "end": 37, "label": "practitioner_name"}]} +{"text": "how are you doing, ai", "intent": "greeting", "entities": []} +{"text": "I won't be able to make mistakes", "intent": "reschedule", "entities": []} +{"text": "it was enjoyable to chat with you", "intent": "bye", "entities": []} +{"text": "That time no longer works with me.", "intent": "reschedule", "entities": []} +{"text": "Let's arrange your chat.", "intent": "schedule", "entities": []} +{"text": "I need to arrange an appointment.", "intent": "schedule", "entities": []} +{"text": "great talk, thanks", "intent": "bye", "entities": []} +{"text": "New team meeting.", "intent": "schedule", "entities": [{"start": 4, "end": 16, "label": "appointment_type"}]} +{"text": "I want to change my appointment with Professor Cattaneo.", "intent": "reschedule", "entities": [{"start": 37, "end": 55, "label": "practitioner_name"}]} +{"text": "I'm cancelling the meeting with Professor Marino ?", "intent": "cancel", "entities": [{"start": 32, "end": 48, "label": "practitioner_name"}]} +{"text": "please have to cancel my meeting.", "intent": "cancel", "entities": []} +{"text": "Change | time for meeting #717513 .", "intent": "reschedule", "entities": [{"start": 26, "end": 33, "label": "appointment_id"}]} +{"text": "allotted time slots.", "intent": "query_avail", "entities": []} +{"text": "List openings for a qualifying exam with Dr. Ferrara.", "intent": "query_avail", "entities": [{"start": 20, "end": 35, "label": "appointment_type"}, {"start": 41, "end": 52, "label": "practitioner_name"}]} +{"text": "Is it possible to schedule a .", "intent": "schedule", "entities": []} +{"text": "Shift = #439966 to next week.", "intent": "reschedule", "entities": [{"start": 8, "end": 15, "label": "appointment_id"}]} +{"text": "This serves as a notification to cancel my appointment #103401.", "intent": "cancel", "entities": [{"start": 55, "end": 62, "label": "appointment_id"}]} +{"text": "List for a equipment training with Dr. Bailey .", "intent": "query_avail", "entities": [{"start": 12, "end": 30, "label": "appointment_type"}, {"start": 36, "end": 46, "label": "practitioner_name"}]} +{"text": "Find time for a blood test.", "intent": "schedule", "entities": [{"start": 16, "end": 26, "label": "appointment_type"}]} +{"text": "no, you are wrong", "intent": "negative_reply", "entities": []} +{"text": "how does a optical mouse work", "intent": "oos", "entities": []} +{"text": "A conflict has come up for appointment #255888.", "intent": "reschedule", "entities": [{"start": 39, "end": 46, "label": "appointment_id"}]} +{"text": "hi there", "intent": "greeting", "entities": []} +{"text": "Next available slot.", "intent": "query_avail", "entities": []} +{"text": "thanks for talking to me", "intent": "bye", "entities": []} +{"text": "Schedule for Taylor ", "intent": "query_avail", "entities": [{"start": 13, "end": 19, "label": "practitioner_name"}]} +{"text": "energy availability.", "intent": "query_avail", "entities": []} +{"text": "What felt free.", "intent": "query_avail", "entities": []} +{"text": "i think not", "intent": "negative_reply", "entities": []} +{"text": "hey there", "intent": "greeting", "entities": []} +{"text": "follow the booking calendar.", "intent": "query_avail", "entities": []} +{"text": "adios", "intent": "bye", "entities": []} +{"text": "hello there!", "intent": "greeting", "entities": []} +{"text": "I need to schedule a guest lecture for my project with Colombo.", "intent": "schedule", "entities": [{"start": 21, "end": 34, "label": "appointment_type"}, {"start": 55, "end": 62, "label": "practitioner_name"}]} +{"text": "who was the first person to discover cells", "intent": "oos", "entities": []} +{"text": "how're you doing", "intent": "greeting", "entities": []} +{"text": "I want to get an appointment.", "intent": "cancel", "entities": []} +{"text": "how many push-ups do i need to do to get ripped", "intent": "oos", "entities": []} +{"text": "Cancel my booking.", "intent": "cancel", "entities": []} +{"text": "My haircut with Mancini needs to be cancelled.", "intent": "cancel", "entities": [{"start": 3, "end": 10, "label": "appointment_type"}, {"start": 16, "end": 23, "label": "practitioner_name"}]} +{"text": "Reschedule my id with ID #709588 .", "intent": "reschedule", "entities": [{"start": 25, "end": 32, "label": "appointment_id"}]} +{"text": "Can I bring my mind forward?", "intent": "reschedule", "entities": []} +{"text": "Is Dr. Stefano Marchese free for typing haircut ?", "intent": "schedule", "entities": [{"start": 3, "end": 23, "label": "practitioner_name"}, {"start": 40, "end": 47, "label": "appointment_type"}]} +{"text": "Can I change my department head meeting Mr. Adams ?", "intent": "reschedule", "entities": [{"start": 16, "end": 39, "label": "appointment_type"}, {"start": 41, "end": 50, "label": "practitioner_name"}]} +{"text": "My appointment, #355543 , had to be cancelled.", "intent": "cancel", "entities": [{"start": 16, "end": 23, "label": "appointment_id"}]} +{"text": "Can we schedule a group query with Nelson ?", "intent": "schedule", "entities": [{"start": 35, "end": 41, "label": "practitioner_name"}]} +{"text": "good day", "intent": "greeting", "entities": []} +{"text": "I can't attend class practicum supervision .", "intent": "reschedule", "entities": [{"start": 21, "end": 42, "label": "appointment_type"}]} +{"text": "I need to schedule my thesis defense with Donati.", "intent": "schedule", "entities": [{"start": 42, "end": 48, "label": "practitioner_name"}]} +{"text": "This is a cancellation for my appointment with Green.", "intent": "cancel", "entities": [{"start": 47, "end": 52, "label": "practitioner_name"}]} +{"text": "Check for future times.", "intent": "query_avail", "entities": []} +{"text": "peace out", "intent": "bye", "entities": []} +{"text": "Change #642584 ;", "intent": "reschedule", "entities": [{"start": 7, "end": 14, "label": "appointment_id"}]} +{"text": "My meeting with Caruso has to be resolved", "intent": "reschedule", "entities": [{"start": 16, "end": 22, "label": "practitioner_name"}]} +{"text": "sayonara", "intent": "bye", "entities": []} +{"text": "you have been a big help, thank you so much", "intent": "positive_reply", "entities": []} +{"text": "I need to cancel my consultation with Mancini.", "intent": "cancel", "entities": [{"start": 38, "end": 45, "label": "practitioner_name"}]} +{"text": "Find available many times.", "intent": "query_avail", "entities": []} +{"text": "Schedule for replacing research consultation with Ms. Mitchell .", "intent": "query_avail", "entities": [{"start": 23, "end": 44, "label": "appointment_type"}, {"start": 50, "end": 62, "label": "practitioner_name"}]} +{"text": "thank you for the answer", "intent": "positive_reply", "entities": []} +{"text": "I want to reschedule booking #355543.", "intent": "reschedule", "entities": [{"start": 29, "end": 36, "label": "appointment_id"}]} +{"text": "I need to cancel my booking, number #106072.", "intent": "cancel", "entities": [{"start": 36, "end": 43, "label": "appointment_id"}]} +{"text": "Can I get an album", "intent": "schedule", "entities": []} +{"text": "Please remove the workshop and Torres from my schedule.", "intent": "cancel", "entities": [{"start": 18, "end": 26, "label": "appointment_type"}, {"start": 31, "end": 37, "label": "practitioner_name"}]} +{"text": "the answer is no", "intent": "negative_reply", "entities": []} +{"text": "Free times for Dott.ssa Chiara Negri every week.", "intent": "query_avail", "entities": [{"start": 15, "end": 36, "label": "practitioner_name"}]} +{"text": "Please cancel my haircut this time", "intent": "cancel", "entities": [{"start": 17, "end": 24, "label": "appointment_type"}]} +{"text": "Openings : a presentation rehearsal with Greco tomorrow.", "intent": "query_avail", "entities": [{"start": 13, "end": 35, "label": "appointment_type"}, {"start": 41, "end": 46, "label": "practitioner_name"}]} +{"text": "Help me book a massage therapy.", "intent": "schedule", "entities": [{"start": 15, "end": 30, "label": "appointment_type"}]} +{"text": "hello, anyone there", "intent": "greeting", "entities": []} +{"text": "Openings for doctoral thesis discussion.", "intent": "query_avail", "entities": []} +{"text": "Availability of Villa at a meeting.", "intent": "query_avail", "entities": [{"start": 16, "end": 21, "label": "practitioner_name"}]} +{"text": "what's happening", "intent": "greeting", "entities": []} +{"text": "Need only speak to Gray .", "intent": "schedule", "entities": [{"start": 19, "end": 23, "label": "practitioner_name"}]} +{"text": "accepted my appointment.", "intent": "cancel", "entities": []} +{"text": "I would have to reschedule.", "intent": "reschedule", "entities": []} +{"text": "Reschedule my appointment please.", "intent": "reschedule", "entities": []} +{"text": "I need some time with Dott.ssa Anna Moretti.", "intent": "schedule", "entities": [{"start": 22, "end": 43, "label": "practitioner_name"}]} +{"text": "how many acres do you need to buy a horse", "intent": "oos", "entities": []} +{"text": "how do i change my billing address", "intent": "oos", "entities": []} +{"text": "can i use direct deposit for my tax refund", "intent": "oos", "entities": []} +{"text": "I'd like to change date haircut with Morgan to another day.", "intent": "reschedule", "entities": [{"start": 24, "end": 31, "label": "appointment_type"}, {"start": 37, "end": 43, "label": "practitioner_name"}]} +{"text": "Let's cancel the meeting with ibm #928021 .", "intent": "cancel", "entities": [{"start": 34, "end": 41, "label": "appointment_id"}]} +{"text": "I'm busy cancelling my home repair estimate .", "intent": "cancel", "entities": [{"start": 23, "end": 43, "label": "appointment_type"}]} +{"text": "show me the channel guide", "intent": "oos", "entities": []} +{"text": "it was good to talk to you today", "intent": "bye", "entities": []} +{"text": "Can we push my appointment #327330 to the afternoon?", "intent": "reschedule", "entities": [{"start": 27, "end": 34, "label": "appointment_id"}]} +{"text": "Display schedule for next week.", "intent": "query_avail", "entities": []} +{"text": "I'd like to book a parking slot.", "intent": "schedule", "entities": []} +{"text": "incorrect, it is certainly a false statement", "intent": "negative_reply", "entities": []} +{"text": "goodbye, ai assistant", "intent": "bye", "entities": []} +{"text": "Please cancel my vehicle inspection with Romano, ID is #192560.", "intent": "cancel", "entities": [{"start": 17, "end": 35, "label": "appointment_type"}, {"start": 41, "end": 47, "label": "practitioner_name"}, {"start": 55, "end": 62, "label": "appointment_id"}]} +{"text": "how are you", "intent": "greeting", "entities": []} +{"text": "I would like to make my appointment, ID #077272 .", "intent": "reschedule", "entities": [{"start": 40, "end": 47, "label": "appointment_id"}]} +{"text": "I'm afraid I have to move my meeting, ref #641930.", "intent": "reschedule", "entities": [{"start": 42, "end": 49, "label": "appointment_id"}]} +{"text": "Please cancel my appointment ref #036469 .", "intent": "cancel", "entities": [{"start": 33, "end": 40, "label": "appointment_id"}]} +{"text": "I need a new time slot.", "intent": "reschedule", "entities": []} +{"text": "it was nice to speak with you", "intent": "bye", "entities": []} +{"text": "ai, how are you feeling", "intent": "greeting", "entities": []} +{"text": "i disagree that is false", "intent": "negative_reply", "entities": []} +{"text": "List times to end with Dr. Giovanni Galli .", "intent": "query_avail", "entities": [{"start": 23, "end": 41, "label": "practitioner_name"}]} +{"text": "Delete file annual physical with Prof. Murphy , booking ref #600778 .", "intent": "cancel", "entities": [{"start": 12, "end": 27, "label": "appointment_type"}, {"start": 33, "end": 45, "label": "practitioner_name"}, {"start": 60, "end": 67, "label": "appointment_id"}]} +{"text": "what is the cheapest new car for this year", "intent": "oos", "entities": []} +{"text": "it seems not", "intent": "negative_reply", "entities": []} +{"text": "I need to reschedule my contract", "intent": "reschedule", "entities": []} +{"text": "ai how are you doing today", "intent": "greeting", "entities": []} +{"text": "see you again soon", "intent": "bye", "entities": []} +{"text": "I'd like to see Professor Bruno at a different time.", "intent": "reschedule", "entities": [{"start": 16, "end": 31, "label": "practitioner_name"}]} +{"text": "Set up follow-up appointment with Lee.", "intent": "schedule", "entities": [{"start": 7, "end": 28, "label": "appointment_type"}, {"start": 34, "end": 37, "label": "practitioner_name"}]} +{"text": "I want to change my appointment id Dott.ssa Chiara Negri .", "intent": "reschedule", "entities": [{"start": 35, "end": 56, "label": "practitioner_name"}]} +{"text": "hey how's life", "intent": "greeting", "entities": []} +{"text": "follow my booking: #881822 .", "intent": "cancel", "entities": [{"start": 19, "end": 26, "label": "appointment_id"}]} +{"text": "Something has come up and I need to change my meeting with Professor Sala.", "intent": "reschedule", "entities": [{"start": 59, "end": 73, "label": "practitioner_name"}]} +{"text": "is looking to schedule a course selection advising .", "intent": "schedule", "entities": [{"start": 25, "end": 50, "label": "appointment_type"}]} +{"text": "I can't make my advising session contact Sanders .", "intent": "reschedule", "entities": [{"start": 41, "end": 48, "label": "practitioner_name"}]} +{"text": "I have to move my #286344 appointment.", "intent": "reschedule", "entities": [{"start": 18, "end": 25, "label": "appointment_id"}]} +{"text": "accepting the appointment.", "intent": "cancel", "entities": []} +{"text": "Need to schedule.", "intent": "schedule", "entities": []} +{"text": "List all available study group meeting times.", "intent": "query_avail", "entities": [{"start": 19, "end": 38, "label": "appointment_type"}]} +{"text": "^ rid of appointment #255297 .", "intent": "cancel", "entities": [{"start": 21, "end": 28, "label": "appointment_id"}]} +{"text": "Delete from appointment.", "intent": "cancel", "entities": []} +{"text": "hey there fellow", "intent": "greeting", "entities": []} +{"text": "I have a meeting with my current appointment time.", "intent": "reschedule", "entities": []} +{"text": "should we reschedule? I'm referring to appointment #821730 .", "intent": "reschedule", "entities": [{"start": 51, "end": 58, "label": "appointment_id"}]} +{"text": "what articles are written at the cnn site about the women's march", "intent": "oos", "entities": []} +{"text": "Cancel my !", "intent": "cancel", "entities": []} +{"text": "Dr. Peterson curriculum planning |", "intent": "schedule", "entities": [{"start": 0, "end": 12, "label": "practitioner_name"}, {"start": 13, "end": 32, "label": "appointment_type"}]} +{"text": "you want to set up a internship check-in .", "intent": "schedule", "entities": [{"start": 21, "end": 40, "label": "appointment_type"}]} +{"text": "Can we reschedule the graduate school consultation you have with Russo ?", "intent": "reschedule", "entities": [{"start": 22, "end": 50, "label": "appointment_type"}, {"start": 65, "end": 70, "label": "practitioner_name"}]} +{"text": "Please cancel my lunch meeting.", "intent": "cancel", "entities": []} +{"text": "vaccination ;", "intent": "schedule", "entities": [{"start": 0, "end": 11, "label": "appointment_type"}]} +{"text": "thanks again", "intent": "positive_reply", "entities": []} +{"text": "no, that is inaccurate", "intent": "negative_reply", "entities": []} +{"text": "background check.", "intent": "query_avail", "entities": []} +{"text": "Show Dr. Edwards file availability.", "intent": "query_avail", "entities": [{"start": 5, "end": 16, "label": "practitioner_name"}]} +{"text": "set all free times for a mental health counseling with Dott. Francesco Testa .", "intent": "query_avail", "entities": [{"start": 25, "end": 49, "label": "appointment_type"}, {"start": 55, "end": 76, "label": "practitioner_name"}]} +{"text": "it was lovely to speak with you, bye bye", "intent": "bye", "entities": []} +{"text": "accept my booking.", "intent": "reschedule", "entities": []} +{"text": "Romano → one-on-one .", "intent": "schedule", "entities": [{"start": 0, "end": 6, "label": "practitioner_name"}, {"start": 9, "end": 19, "label": "appointment_type"}]} +{"text": "Change my appointment with Professor Vitali tomorrow Wednesday.", "intent": "reschedule", "entities": [{"start": 27, "end": 43, "label": "practitioner_name"}]} +{"text": "will no longer require the meeting with Collins .", "intent": "cancel", "entities": [{"start": 40, "end": 47, "label": "practitioner_name"}]} +{"text": "Availability , July 21st.", "intent": "query_avail", "entities": []} +{"text": "Let's find a reasonable time for #003644 .", "intent": "reschedule", "entities": [{"start": 33, "end": 40, "label": "appointment_id"}]} +{"text": "thanks for helping me", "intent": "positive_reply", "entities": []} +{"text": "how much money would my house sell for", "intent": "oos", "entities": []} +{"text": "define a blood test for me.", "intent": "schedule", "entities": [{"start": 9, "end": 19, "label": "appointment_type"}]} +{"text": "Advising session leaders", "intent": "query_avail", "entities": []} +{"text": "follow the schedule of Leone .", "intent": "query_avail", "entities": [{"start": 23, "end": 28, "label": "practitioner_name"}]} +{"text": "Time demands a meeting.", "intent": "schedule", "entities": []} +{"text": "restart my newspaper delivery for monday", "intent": "oos", "entities": []} +{"text": "Schedule a sync-up : my group with Dr. Lefevre .", "intent": "schedule", "entities": [{"start": 11, "end": 18, "label": "appointment_type"}, {"start": 35, "end": 46, "label": "practitioner_name"}]} +{"text": "Arrange a meeting, …", "intent": "schedule", "entities": []} +{"text": "I want to book time with Dott. Luca Morelli.", "intent": "schedule", "entities": [{"start": 25, "end": 43, "label": "practitioner_name"}]} +{"text": "I need some time with Martin ?", "intent": "schedule", "entities": [{"start": 22, "end": 28, "label": "practitioner_name"}]} +{"text": "Cancel the advising session.", "intent": "cancel", "entities": []} +{"text": "Morgan 's calendar for a lab session next .", "intent": "query_avail", "entities": [{"start": 0, "end": 6, "label": "practitioner_name"}, {"start": 25, "end": 36, "label": "appointment_type"}]} +{"text": "good job with assisting me", "intent": "positive_reply", "entities": []} +{"text": "I need to have a new time for my postdoctoral interview .", "intent": "reschedule", "entities": [{"start": 33, "end": 55, "label": "appointment_type"}]} +{"text": " degree audit openings.", "intent": "query_avail", "entities": [{"start": 1, "end": 13, "label": "appointment_type"}]} +{"text": "except for practicum supervision openings.", "intent": "query_avail", "entities": [{"start": 11, "end": 32, "label": "appointment_type"}]} +{"text": "i enjoyed speaking with you", "intent": "bye", "entities": []} +{"text": "is va treatment free for veterans", "intent": "oos", "entities": []} +{"text": "update Prof. Watson 's schedule for a departmental meeting on Friday.", "intent": "query_avail", "entities": [{"start": 7, "end": 19, "label": "practitioner_name"}, {"start": 38, "end": 58, "label": "appointment_type"}]} +{"text": "Availability for colloquio di orientamento s this ?", "intent": "query_avail", "entities": [{"start": 17, "end": 42, "label": "appointment_type"}]} +{"text": "Can you schedule a dissertation defense for me?", "intent": "schedule", "entities": [{"start": 19, "end": 39, "label": "appointment_type"}]} +{"text": "Time for a student advising with Serra ", "intent": "schedule", "entities": [{"start": 11, "end": 27, "label": "appointment_type"}, {"start": 33, "end": 38, "label": "practitioner_name"}]} +{"text": "Move booking #709588 | next week.", "intent": "reschedule", "entities": [{"start": 13, "end": 20, "label": "appointment_id"}]} +{"text": "Please proceed with cancelling my appointment with Santini >", "intent": "cancel", "entities": [{"start": 51, "end": 58, "label": "practitioner_name"}]} +{"text": "Change booking #281149 my eye exam with Professor De Luca .", "intent": "reschedule", "entities": [{"start": 15, "end": 22, "label": "appointment_id"}, {"start": 27, "end": 35, "label": "appointment_type"}, {"start": 41, "end": 58, "label": "practitioner_name"}]} +{"text": "I have an appointment, #660065 , otherwise I must reschedule.", "intent": "reschedule", "entities": [{"start": 23, "end": 30, "label": "appointment_id"}]} +{"text": "I want to move my appointment with Dott. Simone Marchetti @ ID #693909 .", "intent": "reschedule", "entities": [{"start": 35, "end": 57, "label": "practitioner_name"}, {"start": 63, "end": 70, "label": "appointment_id"}]} +{"text": "I'd like your book a consultation.", "intent": "schedule", "entities": []} +{"text": "Please confirm cancellation for #420831.", "intent": "cancel", "entities": [{"start": 32, "end": 39, "label": "appointment_id"}]} +{"text": "yes, you got it", "intent": "positive_reply", "entities": []} +{"text": "I need to change everything #204345 .", "intent": "reschedule", "entities": [{"start": 28, "end": 35, "label": "appointment_id"}]} +{"text": "I want to buy time with Ms. Cooper .", "intent": "schedule", "entities": [{"start": 24, "end": 34, "label": "practitioner_name"}]} +{"text": "The meeting #984794 is cancelled.", "intent": "cancel", "entities": [{"start": 12, "end": 19, "label": "appointment_id"}]} +{"text": "Openings with Mr. Peterson ", "intent": "query_avail", "entities": [{"start": 14, "end": 26, "label": "practitioner_name"}]} +{"text": "I will not delay attending my meeting, ID #420645 , please cancel.", "intent": "cancel", "entities": [{"start": 42, "end": 49, "label": "appointment_id"}]} +{"text": "no that's wrong", "intent": "negative_reply", "entities": []} +{"text": "Dott.ssa Anna Moretti 's availability for scheduling psychologist appointment this week.", "intent": "query_avail", "entities": [{"start": 0, "end": 21, "label": "practitioner_name"}, {"start": 53, "end": 77, "label": "appointment_type"}]} +{"text": "Is it possible ? move my appointment?", "intent": "reschedule", "entities": []} +{"text": "Show Rizzo 's openings for capstone meeting this Friday.", "intent": "query_avail", "entities": [{"start": 5, "end": 10, "label": "practitioner_name"}, {"start": 28, "end": 44, "label": "appointment_type"}]} +{"text": "Free time inquiry requires a seminar presentation .", "intent": "query_avail", "entities": [{"start": 29, "end": 49, "label": "appointment_type"}]} +{"text": "later!", "intent": "bye", "entities": []} +{"text": "Find options for a consultation with Conte .", "intent": "query_avail", "entities": [{"start": 37, "end": 42, "label": "practitioner_name"}]} +{"text": "I need your book an advising session.", "intent": "schedule", "entities": []} +{"text": "have a good day", "intent": "bye", "entities": []} +{"text": "Find an opening with Prof. Martini.", "intent": "query_avail", "entities": [{"start": 21, "end": 34, "label": "practitioner_name"}]} +{"text": "Availability for Longo on december 22nd.", "intent": "query_avail", "entities": [{"start": 17, "end": 22, "label": "practitioner_name"}]} +{"text": "that's a negative", "intent": "negative_reply", "entities": []} +{"text": "Show three times.", "intent": "query_avail", "entities": []} +{"text": "Find available meeting address with Dott.ssa Chiara Negri .", "intent": "query_avail", "entities": [{"start": 36, "end": 57, "label": "practitioner_name"}]} +{"text": "yes, that is true", "intent": "positive_reply", "entities": []} +{"text": "what time did my daughter get home from her date", "intent": "oos", "entities": []} +{"text": "List all openings for listing curriculum planning with Dr. Giordano .", "intent": "query_avail", "entities": [{"start": 30, "end": 49, "label": "appointment_type"}, {"start": 55, "end": 67, "label": "practitioner_name"}]} +{"text": "Dr. Bailey's next available course planning.", "intent": "query_avail", "entities": [{"start": 0, "end": 10, "label": "practitioner_name"}, {"start": 28, "end": 43, "label": "appointment_type"}]} +{"text": "I are unavailable for my seminar presentation and need to move it.", "intent": "reschedule", "entities": [{"start": 25, "end": 45, "label": "appointment_type"}]} +{"text": "Talk : Galli .", "intent": "schedule", "entities": [{"start": 7, "end": 12, "label": "practitioner_name"}]} +{"text": "I want to book Dr. Martinez for a academic advising.", "intent": "schedule", "entities": [{"start": 15, "end": 27, "label": "practitioner_name"}, {"start": 34, "end": 51, "label": "appointment_type"}]} +{"text": "I can't cancel my internship interview on Tuesday.", "intent": "reschedule", "entities": [{"start": 18, "end": 38, "label": "appointment_type"}]} +{"text": "Available times for configuration financial advising .", "intent": "query_avail", "entities": [{"start": 34, "end": 52, "label": "appointment_type"}]} +{"text": "i am thankful for the answer", "intent": "positive_reply", "entities": []} +{"text": "Reschedule my first meeting.", "intent": "reschedule", "entities": []} +{"text": "compare the booking calendar for a guest lecture with Conti .", "intent": "query_avail", "entities": [{"start": 35, "end": 48, "label": "appointment_type"}, {"start": 54, "end": 59, "label": "practitioner_name"}]} +{"text": "use Prof. Garcia 's calendar for a colloquio di orientamento .", "intent": "query_avail", "entities": [{"start": 4, "end": 16, "label": "practitioner_name"}, {"start": 35, "end": 60, "label": "appointment_type"}]} +{"text": "Please cancel the scholarship interview on my schedule.", "intent": "cancel", "entities": [{"start": 18, "end": 39, "label": "appointment_type"}]} +{"text": "Book a dental cleaning with Miller, please.", "intent": "schedule", "entities": [{"start": 7, "end": 22, "label": "appointment_type"}, {"start": 28, "end": 34, "label": "practitioner_name"}]} +{"text": "List open slots for a guest lecture with Walker.", "intent": "query_avail", "entities": [{"start": 22, "end": 35, "label": "appointment_type"}, {"start": 41, "end": 47, "label": "practitioner_name"}]} +{"text": "My tenure meeting with De Angelis needs to be .", "intent": "reschedule", "entities": [{"start": 3, "end": 17, "label": "appointment_type"}, {"start": 23, "end": 33, "label": "practitioner_name"}]} +{"text": "Book me for scheduling grade review with Dr. Martinez .", "intent": "schedule", "entities": [{"start": 23, "end": 35, "label": "appointment_type"}, {"start": 41, "end": 53, "label": "practitioner_name"}]} +{"text": "I write a comprehensive exam with Professor Sala .", "intent": "schedule", "entities": [{"start": 10, "end": 28, "label": "appointment_type"}, {"start": 34, "end": 48, "label": "practitioner_name"}]} +{"text": "1 am writing to reschedule my mock interview .", "intent": "reschedule", "entities": [{"start": 30, "end": 44, "label": "appointment_type"}]} +{"text": "Show schedule for capstone meeting .", "intent": "query_avail", "entities": [{"start": 18, "end": 34, "label": "appointment_type"}]} +{"text": "I must change my project kickoff appointment with Pellegrini.", "intent": "reschedule", "entities": [{"start": 17, "end": 32, "label": "appointment_type"}, {"start": 50, "end": 60, "label": "practitioner_name"}]} +{"text": "I need to book a time frame discuss my dissertation with Thompson .", "intent": "schedule", "entities": [{"start": 57, "end": 65, "label": "practitioner_name"}]} +{"text": "Let's cancel another meeting with ID #018673 .", "intent": "cancel", "entities": [{"start": 37, "end": 44, "label": "appointment_id"}]} +{"text": "I decided to cancel my consultation with Marchetti .", "intent": "cancel", "entities": [{"start": 41, "end": 50, "label": "practitioner_name"}]} +{"text": "Please insert a new slot for #693909 .", "intent": "reschedule", "entities": [{"start": 29, "end": 36, "label": "appointment_id"}]} +{"text": "I need a one-on-one with Dr. Giovanni Galli.", "intent": "schedule", "entities": [{"start": 25, "end": 43, "label": "practitioner_name"}]} +{"text": "you are so thoughtful and i appreciate your gesture", "intent": "positive_reply", "entities": []} +{"text": "Let's find a new file for #706539 .", "intent": "reschedule", "entities": [{"start": 26, "end": 33, "label": "appointment_id"}]} +{"text": "Regarding appointment #709588 , I need not change it.", "intent": "reschedule", "entities": [{"start": 22, "end": 29, "label": "appointment_id"}]} +{"text": "Turner's calendar.", "intent": "query_avail", "entities": [{"start": 0, "end": 6, "label": "practitioner_name"}]} +{"text": "I'm cancelling your tutorial session.", "intent": "cancel", "entities": []} +{"text": "I need to book an advising session.", "intent": "schedule", "entities": []} +{"text": "The check-up with Dr. Smith is nothing longer necessary.", "intent": "cancel", "entities": [{"start": 4, "end": 12, "label": "appointment_type"}, {"start": 18, "end": 27, "label": "practitioner_name"}]} +{"text": "who is the best architecture", "intent": "oos", "entities": []} +{"text": "My vaccination with Mr. Jones needs to be rescheduled.", "intent": "reschedule", "entities": [{"start": 3, "end": 14, "label": "appointment_type"}, {"start": 20, "end": 29, "label": "practitioner_name"}]} +{"text": "I need to cancel my defense …", "intent": "cancel", "entities": []} +{"text": "that's a negatory", "intent": "negative_reply", "entities": []} +{"text": "I need to change the time for my defense rehearsal with Testa .", "intent": "reschedule", "entities": [{"start": 56, "end": 61, "label": "practitioner_name"}]} +{"text": "Book a time slot.", "intent": "schedule", "entities": []} +{"text": "Book a lab session : Testa .", "intent": "schedule", "entities": [{"start": 21, "end": 26, "label": "practitioner_name"}]} +{"text": "I need to replace my departmental meeting with Leone (ID: #420645 ).", "intent": "cancel", "entities": [{"start": 21, "end": 41, "label": "appointment_type"}, {"start": 47, "end": 52, "label": "practitioner_name"}, {"start": 58, "end": 65, "label": "appointment_id"}]} +{"text": "I won't be there, or cancel my meeting.", "intent": "cancel", "entities": []} +{"text": "i can confirm it is affirmative", "intent": "positive_reply", "entities": []} +{"text": "I'd like to shift my focus to a later time.", "intent": "reschedule", "entities": []} +{"text": "adios ai", "intent": "bye", "entities": []} +{"text": "I must cancel my lab demonstration with Rinaldi ", "intent": "cancel", "entities": [{"start": 17, "end": 34, "label": "appointment_type"}, {"start": 40, "end": 47, "label": "practitioner_name"}]} +{"text": "applications need a admissions interview slot.", "intent": "schedule", "entities": [{"start": 20, "end": 40, "label": "appointment_type"}]} +{"text": "Something came up, I need to change your appointment.", "intent": "reschedule", "entities": []} +{"text": "Set up a meeting.", "intent": "schedule", "entities": []} +{"text": "minimum time slots.", "intent": "query_avail", "entities": []} +{"text": "That time no longer works for me.", "intent": "reschedule", "entities": []} +{"text": "Show Caruso directory availability.", "intent": "query_avail", "entities": [{"start": 5, "end": 11, "label": "practitioner_name"}]} +{"text": "Next available ?", "intent": "query_avail", "entities": []} +{"text": "Postpone my session with Marchetti.", "intent": "reschedule", "entities": [{"start": 25, "end": 34, "label": "practitioner_name"}]} +{"text": "show me how many community centers are located within 5 miles of my location", "intent": "oos", "entities": []} +{"text": "Please update my grade review .", "intent": "cancel", "entities": [{"start": 17, "end": 29, "label": "appointment_type"}]} +{"text": "users need to drop my team meeting with Dott. Matteo Palmieri .", "intent": "cancel", "entities": [{"start": 22, "end": 34, "label": "appointment_type"}, {"start": 40, "end": 61, "label": "practitioner_name"}]} +{"text": "use Mr. Rodriguez 's free time.", "intent": "query_avail", "entities": [{"start": 4, "end": 17, "label": "practitioner_name"}]} +{"text": "your answer pleased me", "intent": "positive_reply", "entities": []} +{"text": "I'm unable to remember my quarterly review .", "intent": "reschedule", "entities": [{"start": 26, "end": 42, "label": "appointment_type"}]} +{"text": "i would prefer not", "intent": "negative_reply", "entities": []} +{"text": "we need to reschedule my appointment, the ID is #623599 .", "intent": "reschedule", "entities": [{"start": 48, "end": 55, "label": "appointment_id"}]} +{"text": "I'd like to change the time of execution progress review .", "intent": "reschedule", "entities": [{"start": 41, "end": 56, "label": "appointment_type"}]} +{"text": "I will attend the club meeting .", "intent": "reschedule", "entities": [{"start": 18, "end": 30, "label": "appointment_type"}]} +{"text": "Ms. Davis 's free documentation for a tenure meeting today.", "intent": "query_avail", "entities": [{"start": 0, "end": 9, "label": "practitioner_name"}, {"start": 38, "end": 52, "label": "appointment_type"}]} +{"text": "I have to cancel my flight", "intent": "cancel", "entities": []} +{"text": "Next available psychologist appointment ", "intent": "query_avail", "entities": [{"start": 15, "end": 39, "label": "appointment_type"}]} +{"text": "Can I make an appointment for : academic integrity hearing ?", "intent": "schedule", "entities": [{"start": 32, "end": 58, "label": "appointment_type"}]} +{"text": "• cancelling the meeting with Gray .", "intent": "cancel", "entities": [{"start": 30, "end": 34, "label": "practitioner_name"}]} +{"text": "Availability for an oral exam.", "intent": "query_avail", "entities": []} +{"text": "it was really awesome to talk to you", "intent": "bye", "entities": []} +{"text": "Free times for a IT support session with option Dr. Peterson .", "intent": "query_avail", "entities": [{"start": 17, "end": 35, "label": "appointment_type"}, {"start": 48, "end": 60, "label": "practitioner_name"}]} +{"text": "I'm afraid I have him cancel my meeting.", "intent": "cancel", "entities": []} +{"text": "I can no longer make my meeting #036469.", "intent": "reschedule", "entities": [{"start": 32, "end": 39, "label": "appointment_id"}]} +{"text": "I need to set up a phone chat.", "intent": "schedule", "entities": []} +{"text": "I need to book a client call.", "intent": "schedule", "entities": [{"start": 17, "end": 28, "label": "appointment_type"}]} +{"text": "shall I see Hall ?", "intent": "schedule", "entities": [{"start": 12, "end": 16, "label": "practitioner_name"}]} +{"text": "Can you help me arrange something?", "intent": "schedule", "entities": []} +{"text": "Show the booking calendar : language proficiency test s.", "intent": "query_avail", "entities": [{"start": 28, "end": 53, "label": "appointment_type"}]} +{"text": "Cancel all my appointments file Gray .", "intent": "cancel", "entities": [{"start": 32, "end": 36, "label": "practitioner_name"}]} +{"text": "residence life meeting booking.", "intent": "schedule", "entities": [{"start": 0, "end": 22, "label": "appointment_type"}]} +{"text": "Find available website", "intent": "query_avail", "entities": []} +{"text": "Book a research group meeting with Sanders as long as possible.", "intent": "schedule", "entities": [{"start": 7, "end": 29, "label": "appointment_type"}, {"start": 35, "end": 42, "label": "practitioner_name"}]} +{"text": "Postpone my appointment #729731 ;", "intent": "reschedule", "entities": [{"start": 24, "end": 31, "label": "appointment_id"}]} +{"text": "Let's move my scheduled schedule", "intent": "reschedule", "entities": []} +{"text": "all the free slots on the calendar.", "intent": "query_avail", "entities": []} +{"text": "i'm grateful", "intent": "positive_reply", "entities": []} +{"text": "I must cancel appointment #709588 |", "intent": "cancel", "entities": [{"start": 26, "end": 33, "label": "appointment_id"}]} +{"text": "Set up office hours with Hall.", "intent": "schedule", "entities": [{"start": 25, "end": 29, "label": "practitioner_name"}]} +{"text": "Cancel my workshop with Colombo , \\", "intent": "cancel", "entities": [{"start": 10, "end": 18, "label": "appointment_type"}, {"start": 24, "end": 31, "label": "practitioner_name"}]} +{"text": "I'm sorry, but I want to cancel my appointment.", "intent": "cancel", "entities": []} +{"text": "Booking #575048 needs to be verified", "intent": "reschedule", "entities": [{"start": 8, "end": 15, "label": "appointment_id"}]} +{"text": "you can't make the meeting with Dr. Sofia Colombo , so I'm cancelling.", "intent": "cancel", "entities": [{"start": 32, "end": 49, "label": "practitioner_name"}]} +{"text": "calculate free times for a transfer credit evaluation .", "intent": "query_avail", "entities": [{"start": 27, "end": 53, "label": "appointment_type"}]} +{"text": "an appointment is no longer needed.", "intent": "cancel", "entities": []} +{"text": "are people with a mental illness eligible for disability", "intent": "oos", "entities": []} +{"text": "Get me a faculty review with Torres.", "intent": "schedule", "entities": [{"start": 9, "end": 23, "label": "appointment_type"}, {"start": 29, "end": 35, "label": "practitioner_name"}]} +{"text": "I will not be coming to my appointment _ Dott. Matteo Palmieri .", "intent": "cancel", "entities": [{"start": 41, "end": 62, "label": "practitioner_name"}]} +{"text": "I need to do a allergy test |", "intent": "schedule", "entities": [{"start": 15, "end": 27, "label": "appointment_type"}]} +{"text": "I have to cancel the seminar presentation with Ms. Allen.", "intent": "cancel", "entities": [{"start": 21, "end": 41, "label": "appointment_type"}, {"start": 47, "end": 56, "label": "practitioner_name"}]} +{"text": "what is the best reviewed laptop available on the market", "intent": "oos", "entities": []} +{"text": "Donati \\ schedule for a research ethics review .", "intent": "query_avail", "entities": [{"start": 0, "end": 6, "label": "practitioner_name"}, {"start": 24, "end": 46, "label": "appointment_type"}]} +{"text": "how are things going", "intent": "greeting", "entities": []} +{"text": "I'd wanted to request a cancellation.", "intent": "cancel", "entities": []} +{"text": "not at all", "intent": "negative_reply", "entities": []} +{"text": "Cancel my meeting _ Professor Ricci .", "intent": "cancel", "entities": [{"start": 30, "end": 35, "label": "practitioner_name"}]} +{"text": "Change my email session with Professor Fontana .", "intent": "reschedule", "entities": [{"start": 29, "end": 46, "label": "practitioner_name"}]} +{"text": "read the phone number for mom in my phone contacts", "intent": "oos", "entities": []} +{"text": "I'm cancelling #894207.", "intent": "cancel", "entities": [{"start": 15, "end": 22, "label": "appointment_id"}]} +{"text": "Cancel _ academic probation meeting with Prof. Morris , please.", "intent": "cancel", "entities": [{"start": 9, "end": 35, "label": "appointment_type"}, {"start": 41, "end": 53, "label": "practitioner_name"}]} +{"text": "that's a hard no from me", "intent": "negative_reply", "entities": []} +{"text": "\\ delete appointment #186683 , my research update with Professor Thompson .", "intent": "cancel", "entities": [{"start": 21, "end": 28, "label": "appointment_id"}, {"start": 34, "end": 49, "label": "appointment_type"}, {"start": 65, "end": 73, "label": "practitioner_name"}]} +{"text": "List : openings.", "intent": "query_avail", "entities": []} +{"text": "Please take my advising session off the schedule.", "intent": "cancel", "entities": [{"start": 15, "end": 31, "label": "appointment_type"}]} +{"text": "I will not be able to attend my scheduled meeting, ID #842972.", "intent": "cancel", "entities": [{"start": 54, "end": 61, "label": "appointment_id"}]} +{"text": "I'm cancelling my consultation card Professor Mariani .", "intent": "cancel", "entities": [{"start": 36, "end": 53, "label": "practitioner_name"}]} +{"text": "\\ my mentorship meeting .", "intent": "reschedule", "entities": [{"start": 5, "end": 23, "label": "appointment_type"}]} +{"text": "that is most definitely false", "intent": "negative_reply", "entities": []} +{"text": "Schedule my campus tour.", "intent": "schedule", "entities": [{"start": 12, "end": 23, "label": "appointment_type"}]} +{"text": "see you in a while", "intent": "bye", "entities": []} +{"text": "Find an open slot for me.", "intent": "schedule", "entities": []} +{"text": "hello, how are you doing", "intent": "greeting", "entities": []} +{"text": "how hard is it to close a bank account at wells fargo", "intent": "oos", "entities": []} +{"text": "A conflict has come up for appointment #241353 ", "intent": "reschedule", "entities": [{"start": 39, "end": 46, "label": "appointment_id"}]} +{"text": "what are the best personal finance practices", "intent": "oos", "entities": []} +{"text": "Let's move your meeting, ID #842972 .", "intent": "reschedule", "entities": [{"start": 28, "end": 35, "label": "appointment_id"}]} +{"text": "no need to move my meeting.", "intent": "reschedule", "entities": []} +{"text": "Set = research seminar .", "intent": "schedule", "entities": [{"start": 6, "end": 22, "label": "appointment_type"}]} +{"text": "Cancel my office hours with Mr. Adams, please.", "intent": "cancel", "entities": [{"start": 10, "end": 22, "label": "appointment_type"}, {"start": 28, "end": 37, "label": "practitioner_name"}]} +{"text": "I want to cancel my psychologist appointment with Dr. Caterina Gentile.", "intent": "cancel", "entities": [{"start": 20, "end": 44, "label": "appointment_type"}, {"start": 50, "end": 70, "label": "practitioner_name"}]} +{"text": "it was enjoyable talking with you", "intent": "bye", "entities": []} +{"text": "thanks bye bye!", "intent": "bye", "entities": []} +{"text": "true is my response", "intent": "positive_reply", "entities": []} +{"text": "Arrange the review session with Cox .", "intent": "schedule", "entities": [{"start": 32, "end": 35, "label": "practitioner_name"}]} +{"text": "was there availability for a specialist visit ?", "intent": "schedule", "entities": [{"start": 29, "end": 45, "label": "appointment_type"}]} +{"text": "I must terminate appointment #901602 .", "intent": "cancel", "entities": [{"start": 29, "end": 36, "label": "appointment_id"}]} +{"text": "Show Dr. Carter 's availability for instance tenure meeting .", "intent": "query_avail", "entities": [{"start": 5, "end": 15, "label": "practitioner_name"}, {"start": 45, "end": 59, "label": "appointment_type"}]} +{"text": "exactly right", "intent": "positive_reply", "entities": []} +{"text": "show me laptops for sale that are under $2,000", "intent": "oos", "entities": []} +{"text": "might like to cancel my project meeting.", "intent": "cancel", "entities": []} +{"text": "I wanted to arrange a final presentation with Rinaldi urgently.", "intent": "schedule", "entities": [{"start": 22, "end": 40, "label": "appointment_type"}, {"start": 46, "end": 53, "label": "practitioner_name"}]} +{"text": "Let's arrange a chat.", "intent": "schedule", "entities": []} +{"text": "List times for a writing center appointment with Dr. Lefevre.", "intent": "query_avail", "entities": [{"start": 17, "end": 43, "label": "appointment_type"}, {"start": 49, "end": 60, "label": "practitioner_name"}]} +{"text": "Arrange : meeting with Dott.ssa Chiara Negri .", "intent": "schedule", "entities": [{"start": 23, "end": 44, "label": "practitioner_name"}]} +{"text": "The booking #822368 can be removed.", "intent": "cancel", "entities": [{"start": 12, "end": 19, "label": "appointment_id"}]} +{"text": "Please cancel my appointment, ref #729731.", "intent": "cancel", "entities": [{"start": 34, "end": 41, "label": "appointment_id"}]} +{"text": "I need to cancel a meeting, ID #600778 ;", "intent": "cancel", "entities": [{"start": 31, "end": 38, "label": "appointment_id"}]} +{"text": "I am no more available for my project update with Costa .", "intent": "cancel", "entities": [{"start": 30, "end": 44, "label": "appointment_type"}, {"start": 50, "end": 55, "label": "practitioner_name"}]} +{"text": "Show ready for a academic probation meeting this Friday.", "intent": "query_avail", "entities": [{"start": 17, "end": 43, "label": "appointment_type"}]} +{"text": "I want you schedule a meeting with Martin .", "intent": "schedule", "entities": [{"start": 35, "end": 41, "label": "practitioner_name"}]} +{"text": "My appointment #839944 , replace final project review with Professor Bernardi , must be cancelled.", "intent": "cancel", "entities": [{"start": 15, "end": 22, "label": "appointment_id"}, {"start": 33, "end": 53, "label": "appointment_type"}, {"start": 59, "end": 77, "label": "practitioner_name"}]} +{"text": "Book an appointment for me.", "intent": "schedule", "entities": []} +{"text": "List = free times for Professor Marino .", "intent": "query_avail", "entities": [{"start": 22, "end": 38, "label": "practitioner_name"}]} +{"text": "Due to unforeseen circumstances, I have temporarily cancel appointment #192768 .", "intent": "cancel", "entities": [{"start": 71, "end": 78, "label": "appointment_id"}]} +{"text": "List all openings for Parisi.", "intent": "query_avail", "entities": [{"start": 22, "end": 28, "label": "practitioner_name"}]} +{"text": "goodbye, helpful ai device!", "intent": "bye", "entities": []} +{"text": "i'm glad i got to talk to you", "intent": "bye", "entities": []} +{"text": "Open slots have a team meeting .", "intent": "query_avail", "entities": [{"start": 18, "end": 30, "label": "appointment_type"}]} +{"text": "I have no scheduling conflict.", "intent": "reschedule", "entities": []} +{"text": "appreciated", "intent": "positive_reply", "entities": []} +{"text": "I'd like to ask #737947 .", "intent": "cancel", "entities": [{"start": 16, "end": 23, "label": "appointment_id"}]} +{"text": "Please cancel our reservation.", "intent": "cancel", "entities": []} +{"text": "user booking #261071 can be removed.", "intent": "cancel", "entities": [{"start": 13, "end": 20, "label": "appointment_id"}]} +{"text": "i need to know how you are doing today", "intent": "greeting", "entities": []} +{"text": "Drop my appointment.", "intent": "cancel", "entities": []} +{"text": "talk to you later!", "intent": "bye", "entities": []} +{"text": "avoid cancelling my consultation with Mr. Adams .", "intent": "cancel", "entities": [{"start": 38, "end": 47, "label": "practitioner_name"}]} +{"text": "Need to change our existing appointment.", "intent": "reschedule", "entities": []} +{"text": "Available files for a dissertation defense .", "intent": "query_avail", "entities": [{"start": 22, "end": 42, "label": "appointment_type"}]} +{"text": "thanks for your cooperation", "intent": "positive_reply", "entities": []} +{"text": "The service is no longer needed.", "intent": "cancel", "entities": []} +{"text": "I need an appointment with Collins a letter of recommendation request .", "intent": "schedule", "entities": [{"start": 27, "end": 34, "label": "practitioner_name"}, {"start": 38, "end": 70, "label": "appointment_type"}]} +{"text": "thanks for your help, goodbye!", "intent": "bye", "entities": []} +{"text": "not afraid I have to move my meeting, ref #132841 .", "intent": "reschedule", "entities": [{"start": 42, "end": 49, "label": "appointment_id"}]} +{"text": "I need to schedule a specialist visit for my project with Dr. Ferri ", "intent": "schedule", "entities": [{"start": 21, "end": 37, "label": "appointment_type"}, {"start": 58, "end": 67, "label": "practitioner_name"}]} +{"text": "Find Prof. Parker's availability.", "intent": "query_avail", "entities": [{"start": 5, "end": 17, "label": "practitioner_name"}]} +{"text": "identify me with Dr. Peterson .", "intent": "schedule", "entities": [{"start": 17, "end": 29, "label": "practitioner_name"}]} +{"text": "good bye then", "intent": "bye", "entities": []} +{"text": "what year was jane austen born", "intent": "oos", "entities": []} +{"text": "it is definitely affirmative", "intent": "positive_reply", "entities": []} +{"text": "Show openings for this section", "intent": "query_avail", "entities": []} +{"text": "accepting my appointment.", "intent": "reschedule", "entities": []} +{"text": "Set up a file with Prof. Müller .", "intent": "schedule", "entities": [{"start": 19, "end": 31, "label": "practitioner_name"}]} +{"text": "I need to cancel our meeting, ID #682160 .", "intent": "cancel", "entities": [{"start": 33, "end": 40, "label": "appointment_id"}]} +{"text": "When is Longo } for a faculty meeting .", "intent": "query_avail", "entities": [{"start": 8, "end": 13, "label": "practitioner_name"}, {"start": 22, "end": 37, "label": "appointment_type"}]} +{"text": "Check openings for a massage therapy with Miller ;", "intent": "query_avail", "entities": [{"start": 21, "end": 36, "label": "appointment_type"}, {"start": 42, "end": 48, "label": "practitioner_name"}]} +{"text": "thank you for the chat, goodbye", "intent": "bye", "entities": []} +{"text": "Display schedule for one week.", "intent": "query_avail", "entities": []} +{"text": "get me articles on earthquake preparedness", "intent": "oos", "entities": []} +{"text": "List all free times with a blood test with Cox .", "intent": "query_avail", "entities": [{"start": 27, "end": 37, "label": "appointment_type"}, {"start": 43, "end": 46, "label": "practitioner_name"}]} +{"text": "this was fun, see you around bye", "intent": "bye", "entities": []} +{"text": "glad we got to talk", "intent": "bye", "entities": []} +{"text": "I need to cancel appointment #737947 with Esposito .", "intent": "cancel", "entities": [{"start": 29, "end": 36, "label": "appointment_id"}, {"start": 42, "end": 50, "label": "practitioner_name"}]} +{"text": "Please accept my apologies, but I must cancel my meeting.", "intent": "cancel", "entities": []} +{"text": "i'm out of here", "intent": "bye", "entities": []} +{"text": "how are things with you", "intent": "greeting", "entities": []} +{"text": "Can we reschedule? I'm referring to appointment #281149.", "intent": "reschedule", "entities": [{"start": 48, "end": 55, "label": "appointment_id"}]} +{"text": "This is a cancellation request for combining psychologist appointment (ID: #169618 ) with Bianchi .", "intent": "cancel", "entities": [{"start": 45, "end": 69, "label": "appointment_type"}, {"start": 75, "end": 82, "label": "appointment_id"}, {"start": 90, "end": 97, "label": "practitioner_name"}]} +{"text": "I would like to push my appointment #684309 back by an hour.", "intent": "reschedule", "entities": [{"start": 36, "end": 43, "label": "appointment_id"}]} +{"text": "Change of plans, I need your reschedule with Prof. Murphy .", "intent": "reschedule", "entities": [{"start": 45, "end": 57, "label": "practitioner_name"}]} +{"text": "that's not right it's false", "intent": "negative_reply", "entities": []} +{"text": "aloha", "intent": "greeting", "entities": []} +{"text": "a the bike looks very nice", "intent": "oos", "entities": []} +{"text": "I want merge thesis defense rehearsal with Sanna .", "intent": "schedule", "entities": [{"start": 13, "end": 37, "label": "appointment_type"}, {"start": 43, "end": 48, "label": "practitioner_name"}]} +{"text": "I have to postpone my office to visit with Dr. Angela White .", "intent": "reschedule", "entities": [{"start": 43, "end": 59, "label": "practitioner_name"}]} +{"text": "good evening", "intent": "greeting", "entities": []} +{"text": "i appreciate that", "intent": "positive_reply", "entities": []} +{"text": "I require a financial advising with Leone.", "intent": "schedule", "entities": [{"start": 12, "end": 30, "label": "appointment_type"}, {"start": 36, "end": 41, "label": "practitioner_name"}]} +{"text": "I'd like to set up a financial aid consultation with Thomas ", "intent": "schedule", "entities": [{"start": 21, "end": 47, "label": "appointment_type"}, {"start": 53, "end": 59, "label": "practitioner_name"}]} +{"text": "I'd like to reschedule my study group meeting.", "intent": "reschedule", "entities": [{"start": 26, "end": 45, "label": "appointment_type"}]} +{"text": "check my booking.", "intent": "cancel", "entities": []} +{"text": "Schedule my oral exam.", "intent": "schedule", "entities": []} +{"text": "I'd like to set up a lab cleanup with Mr. Jones.", "intent": "schedule", "entities": [{"start": 21, "end": 32, "label": "appointment_type"}, {"start": 38, "end": 47, "label": "practitioner_name"}]} +{"text": "Reschedule my meeting with Russo regarding my thesis.", "intent": "reschedule", "entities": [{"start": 27, "end": 32, "label": "practitioner_name"}]} +{"text": "that's not true", "intent": "negative_reply", "entities": []} +{"text": "Delete all booking.", "intent": "cancel", "entities": []} +{"text": "Find tables for a registration appointment .", "intent": "schedule", "entities": [{"start": 18, "end": 42, "label": "appointment_type"}]} +{"text": "thanks for talking", "intent": "bye", "entities": []} +{"text": "Please cancel any upcoming lab safety training .", "intent": "cancel", "entities": [{"start": 27, "end": 46, "label": "appointment_type"}]} +{"text": "thank you very much for the assistance", "intent": "positive_reply", "entities": []} +{"text": "Create a new !", "intent": "schedule", "entities": []} +{"text": "yes, that is true for sure", "intent": "positive_reply", "entities": []} +{"text": "Is there availability in a pet checkup ?", "intent": "schedule", "entities": [{"start": 27, "end": 38, "label": "appointment_type"}]} +{"text": "it was pleasant having a conversation with you", "intent": "bye", "entities": []} +{"text": "should we find another time?", "intent": "reschedule", "entities": []} +{"text": "I'd like to substitute Young for a guest lecture .", "intent": "schedule", "entities": [{"start": 23, "end": 28, "label": "practitioner_name"}, {"start": 35, "end": 48, "label": "appointment_type"}]} +{"text": "hey what's up", "intent": "greeting", "entities": []} +{"text": "what movie does it's just a flesh wound come from", "intent": "oos", "entities": []} +{"text": "Delete my booking.", "intent": "cancel", "entities": []} +{"text": "ill see you around", "intent": "bye", "entities": []} +{"text": "I want to schedule a IT support session for Thompson .", "intent": "schedule", "entities": [{"start": 21, "end": 39, "label": "appointment_type"}, {"start": 44, "end": 52, "label": "practitioner_name"}]} +{"text": "that's all, bye", "intent": "bye", "entities": []} +{"text": "Show the free slots on the calendar.", "intent": "query_avail", "entities": []} +{"text": "• session availability.", "intent": "query_avail", "entities": []} +{"text": "hey, what's new", "intent": "greeting", "entities": []} +{"text": "Schedule : departmental meeting .", "intent": "schedule", "entities": [{"start": 11, "end": 31, "label": "appointment_type"}]} +{"text": "it is time to say goodbye", "intent": "bye", "entities": []} +{"text": "I need to push my meeting back.", "intent": "reschedule", "entities": []} +{"text": "Need to change an existing structure", "intent": "reschedule", "entities": []} +{"text": "I'm unable to attend my student disciplinary hearing.", "intent": "reschedule", "entities": [{"start": 24, "end": 52, "label": "appointment_type"}]} +{"text": "Schedule for a consultation Ms. Mitchell .", "intent": "query_avail", "entities": [{"start": 15, "end": 27, "label": "appointment_type"}, {"start": 29, "end": 41, "label": "practitioner_name"}]} +{"text": "Cancel my one-on-one with Ms. Davis.", "intent": "cancel", "entities": [{"start": 26, "end": 35, "label": "practitioner_name"}]} +{"text": "what is a semitic language", "intent": "oos", "entities": []} +{"text": "Villa | free times today.", "intent": "query_avail", "entities": [{"start": 0, "end": 5, "label": "practitioner_name"}]} +{"text": "Need to book a job", "intent": "schedule", "entities": []} +{"text": "List all notable appointment times.", "intent": "query_avail", "entities": []} +{"text": "how is everything going for you", "intent": "greeting", "entities": []} +{"text": "Times available to book.", "intent": "query_avail", "entities": []} +{"text": "Please send my thesis committee meeting .", "intent": "cancel", "entities": [{"start": 15, "end": 39, "label": "appointment_type"}]} +{"text": "get me the rates of hacking susceptibility for household in my area", "intent": "oos", "entities": []} +{"text": "Availability for a lab environment", "intent": "query_avail", "entities": []} +{"text": "Openings in the calendar.", "intent": "query_avail", "entities": []} +{"text": "I prefer to cancel appointment #630761 with Brown .", "intent": "cancel", "entities": [{"start": 31, "end": 38, "label": "appointment_id"}, {"start": 44, "end": 49, "label": "practitioner_name"}]} +{"text": "Please remove my allergy test with Dr. Edwards, reference #536444.", "intent": "cancel", "entities": [{"start": 17, "end": 29, "label": "appointment_type"}, {"start": 35, "end": 46, "label": "practitioner_name"}, {"start": 58, "end": 65, "label": "appointment_id"}]} +{"text": "I'm unable to make it to my client call with Dr. Williams ; so please cancel it. It's ID #682160 .", "intent": "cancel", "entities": [{"start": 28, "end": 39, "label": "appointment_type"}, {"start": 45, "end": 57, "label": "practitioner_name"}, {"start": 89, "end": 96, "label": "appointment_id"}]} +{"text": "List open scripts for Lombardi .", "intent": "query_avail", "entities": [{"start": 22, "end": 30, "label": "practitioner_name"}]} +{"text": "Can I book Ms. Davis for a language exchange next ", "intent": "schedule", "entities": [{"start": 11, "end": 20, "label": "practitioner_name"}, {"start": 27, "end": 44, "label": "appointment_type"}]} +{"text": "Find available team meeting times with Ricci.", "intent": "query_avail", "entities": [{"start": 15, "end": 27, "label": "appointment_type"}, {"start": 39, "end": 44, "label": "practitioner_name"}]} +{"text": "I no longer require any meeting with Dott.ssa Valentina Bellini .", "intent": "cancel", "entities": [{"start": 37, "end": 63, "label": "practitioner_name"}]} +{"text": "save for lab cleanup s this week.", "intent": "query_avail", "entities": [{"start": 9, "end": 20, "label": "appointment_type"}]} +{"text": "will have to reschedule my dean's meeting .", "intent": "reschedule", "entities": [{"start": 27, "end": 41, "label": "appointment_type"}]} +{"text": "Can we find an alternative slot _ #575048 ?", "intent": "reschedule", "entities": [{"start": 34, "end": 41, "label": "appointment_id"}]} +{"text": "thanks for your help", "intent": "positive_reply", "entities": []} +{"text": "it was really nice to be able to chat with you", "intent": "bye", "entities": []} +{"text": "Advising session availability.", "intent": "query_avail", "entities": []} +{"text": "please want to reschedule booking #355543 .", "intent": "reschedule", "entities": [{"start": 34, "end": 41, "label": "appointment_id"}]} +{"text": "I need to arrange a vet appointment with Testa :", "intent": "schedule", "entities": [{"start": 20, "end": 35, "label": "appointment_type"}, {"start": 41, "end": 46, "label": "practitioner_name"}]} +{"text": "My email #281149 , needs to be cancelled.", "intent": "cancel", "entities": [{"start": 9, "end": 16, "label": "appointment_id"}]} +{"text": "which houses do not have automatic spot lights in front of their garage", "intent": "oos", "entities": []} +{"text": "I need to reschedule James .", "intent": "reschedule", "entities": [{"start": 22, "end": 27, "label": "practitioner_name"}]} +{"text": "I need to get my meeting back.", "intent": "reschedule", "entities": []} +{"text": "My appointment #103401, a dean's meeting with Dr. Williams, needs to be moved.", "intent": "reschedule", "entities": [{"start": 15, "end": 22, "label": "appointment_id"}, {"start": 26, "end": 40, "label": "appointment_type"}, {"start": 46, "end": 58, "label": "practitioner_name"}]} +{"text": "you need a club meeting slot.", "intent": "schedule", "entities": [{"start": 11, "end": 23, "label": "appointment_type"}]} +{"text": "Times available to :", "intent": "query_avail", "entities": []} +{"text": "I have not move my #915298 appointment.", "intent": "reschedule", "entities": [{"start": 19, "end": 26, "label": "appointment_id"}]} +{"text": "nice to see you again", "intent": "bye", "entities": []} +{"text": "Display |", "intent": "query_avail", "entities": []} +{"text": "I'm sorry, but I have ... cancel my appointment.", "intent": "cancel", "entities": []} +{"text": "id like to shift my appointment to a later time.", "intent": "reschedule", "entities": []} +{"text": "how's life", "intent": "greeting", "entities": []} +{"text": "when do classes start", "intent": "oos", "entities": []} +{"text": "Please book a grade review :", "intent": "schedule", "entities": [{"start": 14, "end": 26, "label": "appointment_type"}]} +{"text": "My schedule has changed, my need to reschedule.", "intent": "reschedule", "entities": []} +{"text": "Talk @ Morgan .", "intent": "schedule", "entities": [{"start": 7, "end": 13, "label": "practitioner_name"}]} +{"text": "Can you hear me reschedule #675180 ?", "intent": "reschedule", "entities": [{"start": 27, "end": 34, "label": "appointment_id"}]} +{"text": "Reschedule my one-on-one client Young .", "intent": "reschedule", "entities": [{"start": 32, "end": 37, "label": "practitioner_name"}]} +{"text": "Set up grant proposal meeting and Testa .", "intent": "schedule", "entities": [{"start": 7, "end": 29, "label": "appointment_type"}, {"start": 34, "end": 39, "label": "practitioner_name"}]} +{"text": "Delete booking #107210 from database system.", "intent": "cancel", "entities": [{"start": 15, "end": 22, "label": "appointment_id"}]} +{"text": "which stocks have lost the least today", "intent": "oos", "entities": []} +{"text": "Let's schedule parameter Hall .", "intent": "schedule", "entities": [{"start": 25, "end": 29, "label": "practitioner_name"}]} +{"text": "Can I get access lab demonstration with Dott. Matteo Palmieri ?", "intent": "schedule", "entities": [{"start": 17, "end": 34, "label": "appointment_type"}, {"start": 40, "end": 61, "label": "practitioner_name"}]} +{"text": "Cancel my lab session with Brown.", "intent": "cancel", "entities": [{"start": 27, "end": 32, "label": "practitioner_name"}]} +{"text": "Get me a thesis discussion \\ Basile .", "intent": "schedule", "entities": [{"start": 9, "end": 26, "label": "appointment_type"}, {"start": 29, "end": 35, "label": "practitioner_name"}]} +{"text": "I would like to reschedule.", "intent": "reschedule", "entities": []} +{"text": "Book Dr. Carter study group meeting ", "intent": "schedule", "entities": [{"start": 5, "end": 15, "label": "practitioner_name"}, {"start": 16, "end": 35, "label": "appointment_type"}]} +{"text": "Please make a cancellation for #746934 .", "intent": "cancel", "entities": [{"start": 31, "end": 38, "label": "appointment_id"}]} +{"text": "print all available library research consultation times.", "intent": "query_avail", "entities": [{"start": 20, "end": 49, "label": "appointment_type"}]} +{"text": "Open appointment list", "intent": "query_avail", "entities": []} +{"text": "got my booking.", "intent": "reschedule", "entities": []} +{"text": "Schedule me with Nowak.", "intent": "schedule", "entities": [{"start": 17, "end": 22, "label": "practitioner_name"}]} +{"text": "Please cancel my appointment with ID #682160.", "intent": "cancel", "entities": [{"start": 37, "end": 44, "label": "appointment_id"}]} +{"text": "My appointment #124270 , a research ethics review with Prof. Dubois , needs only be moved.", "intent": "reschedule", "entities": [{"start": 15, "end": 22, "label": "appointment_id"}, {"start": 27, "end": 49, "label": "appointment_type"}, {"start": 55, "end": 67, "label": "practitioner_name"}]} +{"text": "thank you", "intent": "positive_reply", "entities": []} +{"text": "I want to cancel an appointment.", "intent": "cancel", "entities": []} +{"text": "later", "intent": "bye", "entities": []} +{"text": "I won't be able to fix it.", "intent": "reschedule", "entities": []} +{"text": "Openings for a thesis discussion.", "intent": "query_avail", "entities": []} +{"text": "Check Dr. Stefano Marchese \\ calendar for a thesis proposal meeting .", "intent": "query_avail", "entities": [{"start": 6, "end": 26, "label": "practitioner_name"}, {"start": 44, "end": 67, "label": "appointment_type"}]} +{"text": "^ parent-teacher conference needs to be on a different day.", "intent": "reschedule", "entities": [{"start": 2, "end": 27, "label": "appointment_type"}]} +{"text": "hi", "intent": "greeting", "entities": []} +{"text": "thanks for the assist", "intent": "positive_reply", "entities": []} +{"text": "Free times add a lab cleanup next week.", "intent": "query_avail", "entities": [{"start": 17, "end": 28, "label": "appointment_type"}]} +{"text": "I need a thesis defense rehearsal slot.", "intent": "schedule", "entities": [{"start": 9, "end": 33, "label": "appointment_type"}]} +{"text": "I need to cancel appointment mental health counseling with Bianchi (ID: #821730 ).", "intent": "cancel", "entities": [{"start": 29, "end": 53, "label": "appointment_type"}, {"start": 59, "end": 66, "label": "practitioner_name"}, {"start": 72, "end": 79, "label": "appointment_id"}]} +{"text": "list of Dott. Matteo Palmieri .", "intent": "query_avail", "entities": [{"start": 8, "end": 29, "label": "practitioner_name"}]} +{"text": "yes that's correct", "intent": "positive_reply", "entities": []} +{"text": "My curriculum planning , booking #017187 , with Dr. Angela White is ;", "intent": "cancel", "entities": [{"start": 3, "end": 22, "label": "appointment_type"}, {"start": 33, "end": 40, "label": "appointment_id"}, {"start": 48, "end": 64, "label": "practitioner_name"}]} +{"text": "I need to postpone my session.", "intent": "reschedule", "entities": []} +{"text": "New departmental meeting ;", "intent": "schedule", "entities": [{"start": 4, "end": 24, "label": "appointment_type"}]} +{"text": "find schematics for ikea desk assembly", "intent": "oos", "entities": []} +{"text": "I accepted a new time slot.", "intent": "reschedule", "entities": []} +{"text": "i think it's true", "intent": "positive_reply", "entities": []} +{"text": "Open appointment ;", "intent": "query_avail", "entities": []} +{"text": "can you really time your compressions to queen's \"another one bites the dust\"", "intent": "oos", "entities": []} +{"text": "I will not be attending my meeting, ID #470394, please cancel.", "intent": "cancel", "entities": [{"start": 39, "end": 46, "label": "appointment_id"}]} +{"text": "users need an appointment with Roberts for a seminar presentation .", "intent": "schedule", "entities": [{"start": 31, "end": 38, "label": "practitioner_name"}, {"start": 45, "end": 65, "label": "appointment_type"}]} +{"text": "I'd like to cancel my last meeting.", "intent": "cancel", "entities": []} +{"text": "I'd like just schedule a eye exam .", "intent": "schedule", "entities": [{"start": 25, "end": 33, "label": "appointment_type"}]} +{"text": "Change of plans, I need to reschedule with Cox.", "intent": "reschedule", "entities": [{"start": 43, "end": 46, "label": "practitioner_name"}]} +{"text": "it was lovely to speak with you", "intent": "bye", "entities": []} +{"text": "I needed to find a different time for my meeting.", "intent": "reschedule", "entities": []} +{"text": "Cancel booking #106072 , my portfolio review with Stewart ;", "intent": "cancel", "entities": [{"start": 15, "end": 22, "label": "appointment_id"}, {"start": 28, "end": 44, "label": "appointment_type"}, {"start": 50, "end": 57, "label": "practitioner_name"}]} +{"text": "I would like to arrange file annual physical with De Angelis .", "intent": "schedule", "entities": [{"start": 29, "end": 44, "label": "appointment_type"}, {"start": 50, "end": 60, "label": "practitioner_name"}]} +{"text": "bye!", "intent": "bye", "entities": []} +{"text": "Can you schedule file group project session for me?", "intent": "schedule", "entities": [{"start": 22, "end": 43, "label": "appointment_type"}]} +{"text": "Schedule for a legal consultation with Dr. Ferrara ;", "intent": "query_avail", "entities": [{"start": 15, "end": 33, "label": "appointment_type"}, {"start": 39, "end": 50, "label": "practitioner_name"}]} +{"text": "Let's move my meeting, ID #556800.", "intent": "reschedule", "entities": [{"start": 26, "end": 33, "label": "appointment_id"}]} +{"text": "how've you been", "intent": "greeting", "entities": []} +{"text": "Is it possible to cancel my appointment?", "intent": "reschedule", "entities": []} +{"text": "I have to remember my #158644 appointment.", "intent": "reschedule", "entities": [{"start": 22, "end": 29, "label": "appointment_id"}]} +{"text": "I am no longer available for my seminar presentation with Evans.", "intent": "cancel", "entities": [{"start": 32, "end": 52, "label": "appointment_type"}, {"start": 58, "end": 63, "label": "practitioner_name"}]} +{"text": "that's wrong", "intent": "negative_reply", "entities": []} +{"text": "please need to move my advising session, which is appointment #974214 .", "intent": "reschedule", "entities": [{"start": 62, "end": 69, "label": "appointment_id"}]} +{"text": "I'm cancelling. The result is #470394 .", "intent": "cancel", "entities": [{"start": 30, "end": 37, "label": "appointment_id"}]} +{"text": "List all free times for a academic probation meeting with Greco.", "intent": "query_avail", "entities": [{"start": 26, "end": 52, "label": "appointment_type"}, {"start": 58, "end": 63, "label": "practitioner_name"}]} +{"text": "thanks for helping out", "intent": "positive_reply", "entities": []} +{"text": "it's so much easier with you around", "intent": "positive_reply", "entities": []} +{"text": "that's not correct", "intent": "negative_reply", "entities": []} +{"text": "Cancel my recording session.", "intent": "cancel", "entities": []} +{"text": "youre a doll", "intent": "positive_reply", "entities": []} +{"text": "James many times.", "intent": "query_avail", "entities": [{"start": 0, "end": 5, "label": "practitioner_name"}]} +{"text": "Reschedule my appointment with ID #513514.", "intent": "reschedule", "entities": [{"start": 34, "end": 41, "label": "appointment_id"}]} +{"text": "What are Rinaldi's office hours.", "intent": "query_avail", "entities": [{"start": 9, "end": 16, "label": "practitioner_name"}]} +{"text": "ai how are you doing on this fine day", "intent": "greeting", "entities": []} +{"text": "My meeting with Santini is to be moved.", "intent": "reschedule", "entities": [{"start": 16, "end": 23, "label": "practitioner_name"}]} +{"text": "I want to book a session.", "intent": "schedule", "entities": []} +{"text": "Reschedule for consultation.", "intent": "reschedule", "entities": []} +{"text": "My client session (ID #230130 ) has a time conflict.", "intent": "reschedule", "entities": [{"start": 22, "end": 29, "label": "appointment_id"}]} +{"text": "at my project meeting.", "intent": "reschedule", "entities": []} +{"text": "that is not correct", "intent": "negative_reply", "entities": []} +{"text": "Free times for filing mentorship meeting with Mancini next week.", "intent": "query_avail", "entities": [{"start": 22, "end": 40, "label": "appointment_type"}, {"start": 46, "end": 53, "label": "practitioner_name"}]} +{"text": "I need to find some time for my tenure meeting with Professor Emily Clark .", "intent": "reschedule", "entities": [{"start": 32, "end": 46, "label": "appointment_type"}, {"start": 52, "end": 73, "label": "practitioner_name"}]} +{"text": "Change my vehicle inspection \\", "intent": "reschedule", "entities": [{"start": 10, "end": 28, "label": "appointment_type"}]} +{"text": "I need to reschedule this session with Richardson .", "intent": "reschedule", "entities": [{"start": 39, "end": 49, "label": "practitioner_name"}]} +{"text": "Can I make an appointment for ? academic advising ?", "intent": "schedule", "entities": [{"start": 32, "end": 49, "label": "appointment_type"}]} +{"text": "Let's schedule a office hours with Dott.ssa Anna Moretti.", "intent": "schedule", "entities": [{"start": 17, "end": 29, "label": "appointment_type"}, {"start": 35, "end": 56, "label": "practitioner_name"}]} +{"text": "I'm cancelling #682160 }", "intent": "cancel", "entities": [{"start": 15, "end": 22, "label": "appointment_id"}]} +{"text": "hello, how are things", "intent": "greeting", "entities": []} +{"text": "hi, how are you", "intent": "greeting", "entities": []} +{"text": "} meeting slots with Professor Barbieri .", "intent": "query_avail", "entities": [{"start": 21, "end": 39, "label": "practitioner_name"}]} +{"text": "I'd like to book a project kickoff for next week.", "intent": "schedule", "entities": [{"start": 19, "end": 34, "label": "appointment_type"}]} +{"text": "that's a yes from me", "intent": "positive_reply", "entities": []} +{"text": "Postpone my meeting with Prof. Campbell.", "intent": "reschedule", "entities": [{"start": 25, "end": 39, "label": "practitioner_name"}]} +{"text": "we need to cancel my consultation with Prof. Dubois .", "intent": "cancel", "entities": [{"start": 39, "end": 51, "label": "practitioner_name"}]} +{"text": "that isn't the right answer", "intent": "negative_reply", "entities": []} +{"text": "I need to find a perfect time for my driving lesson .", "intent": "reschedule", "entities": [{"start": 37, "end": 51, "label": "appointment_type"}]} +{"text": "tata for now", "intent": "bye", "entities": []} +{"text": "Let's schedule entry office hours with Professor Pellegrino .", "intent": "schedule", "entities": [{"start": 21, "end": 33, "label": "appointment_type"}, {"start": 39, "end": 59, "label": "practitioner_name"}]} +{"text": "Check Lee's free time.", "intent": "query_avail", "entities": [{"start": 6, "end": 9, "label": "practitioner_name"}]} +{"text": "hey, ai", "intent": "greeting", "entities": []} +{"text": "I need to start my session.", "intent": "reschedule", "entities": []} +{"text": "provides an open slot for a eye exam .", "intent": "schedule", "entities": [{"start": 28, "end": 36, "label": "appointment_type"}]} +{"text": "I need to terminate my chat with Martin .", "intent": "reschedule", "entities": [{"start": 33, "end": 39, "label": "practitioner_name"}]} +{"text": "I need to get a blood test on the books.", "intent": "schedule", "entities": [{"start": 16, "end": 26, "label": "appointment_type"}]} +{"text": "the answer is yes", "intent": "positive_reply", "entities": []} +{"text": "Let's schedule a call with Russo.", "intent": "schedule", "entities": [{"start": 27, "end": 32, "label": "practitioner_name"}]} +{"text": "Check calendar for Brown.", "intent": "query_avail", "entities": [{"start": 19, "end": 24, "label": "practitioner_name"}]} +{"text": "I want to cancel this appointment with Messina .", "intent": "cancel", "entities": [{"start": 39, "end": 46, "label": "practitioner_name"}]} +{"text": "Display calendar for oral exams.", "intent": "query_avail", "entities": [{"start": 21, "end": 30, "label": "appointment_type"}]} +{"text": "later gater", "intent": "bye", "entities": []} +{"text": "Dr. Smith free time check.", "intent": "query_avail", "entities": [{"start": 0, "end": 9, "label": "practitioner_name"}]} +{"text": "later, thanks for chatting", "intent": "bye", "entities": []} +{"text": "My plans have changed, shall I move my equipment training ?", "intent": "reschedule", "entities": [{"start": 39, "end": 57, "label": "appointment_type"}]} +{"text": "I'm cancelling my consultation session Nelson .", "intent": "cancel", "entities": [{"start": 39, "end": 45, "label": "practitioner_name"}]} +{"text": "it is false", "intent": "negative_reply", "entities": []} +{"text": "thanks please", "intent": "positive_reply", "entities": []} +{"text": "Rebook an introduction", "intent": "reschedule", "entities": []} +{"text": "i am saying no", "intent": "negative_reply", "entities": []} +{"text": "Remove my appointment from the calendar.", "intent": "cancel", "entities": []} +{"text": "I need to schedule file fieldwork briefing for my project with Dr. Smith .", "intent": "schedule", "entities": [{"start": 24, "end": 42, "label": "appointment_type"}, {"start": 63, "end": 72, "label": "practitioner_name"}]} +{"text": "What are Moore ? office hours.", "intent": "query_avail", "entities": [{"start": 9, "end": 14, "label": "practitioner_name"}]} +{"text": "Can I change my daily session time?", "intent": "reschedule", "entities": []} +{"text": "this was a nice chat, goodbye", "intent": "bye", "entities": []} +{"text": "how many harry potter books are there", "intent": "oos", "entities": []} +{"text": "how to plan for weddings", "intent": "oos", "entities": []} +{"text": "Time slots for Prof. Scott |", "intent": "query_avail", "entities": [{"start": 15, "end": 26, "label": "practitioner_name"}]} +{"text": "I need to finish my chat with Dr. Sofia Colombo .", "intent": "reschedule", "entities": [{"start": 30, "end": 47, "label": "practitioner_name"}]} +{"text": "Cancel my ?", "intent": "cancel", "entities": []} +{"text": "I want to schedule something.", "intent": "schedule", "entities": []} +{"text": "i would have to say the answer to that is no", "intent": "negative_reply", "entities": []} +{"text": "definitely", "intent": "positive_reply", "entities": []} +{"text": "Dr. King availability check.", "intent": "query_avail", "entities": [{"start": 0, "end": 8, "label": "practitioner_name"}]} +{"text": "I'd like to change my blood test with Basile to another day.", "intent": "reschedule", "entities": [{"start": 22, "end": 32, "label": "appointment_type"}, {"start": 38, "end": 44, "label": "practitioner_name"}]} +{"text": "I'm unable to make it to my course registration help with Parisi, so please cancel it. It's ID #568999.", "intent": "cancel", "entities": [{"start": 28, "end": 52, "label": "appointment_type"}, {"start": 58, "end": 64, "label": "practitioner_name"}, {"start": 95, "end": 102, "label": "appointment_id"}]} +{"text": "Please cancel my upcoming seminar presentation.", "intent": "cancel", "entities": [{"start": 26, "end": 46, "label": "appointment_type"}]} +{"text": "List open files for a x-ray with Donati .", "intent": "query_avail", "entities": [{"start": 22, "end": 27, "label": "appointment_type"}, {"start": 33, "end": 39, "label": "practitioner_name"}]} +{"text": "Book starts with Gray .", "intent": "schedule", "entities": [{"start": 17, "end": 21, "label": "practitioner_name"}]} +{"text": "no thank you", "intent": "negative_reply", "entities": []} +{"text": "Professor Barbieri's free times for a language proficiency test today.", "intent": "query_avail", "entities": [{"start": 0, "end": 18, "label": "practitioner_name"}, {"start": 38, "end": 63, "label": "appointment_type"}]} +{"text": "I must cancel my advising session with Stewart \\", "intent": "cancel", "entities": [{"start": 17, "end": 33, "label": "appointment_type"}, {"start": 39, "end": 46, "label": "practitioner_name"}]} +{"text": "Can I book Dott.ssa Chiara Negri for a financial aid consultation next Monday?", "intent": "schedule", "entities": [{"start": 11, "end": 32, "label": "practitioner_name"}, {"start": 39, "end": 65, "label": "appointment_type"}]} +{"text": "project update ", "intent": "query_avail", "entities": [{"start": 0, "end": 14, "label": "appointment_type"}]} +{"text": "i'll talk to you later ai", "intent": "bye", "entities": []} +{"text": "hi there, how are you doing", "intent": "greeting", "entities": []} +{"text": "Due to unforeseen circumstances, applicants have to cancel appointment #000317 .", "intent": "cancel", "entities": [{"start": 71, "end": 78, "label": "appointment_id"}]} +{"text": "I can't make my appointment, so cancel it.", "intent": "cancel", "entities": []} +{"text": "I need to remember the time of appointment #339055 .", "intent": "reschedule", "entities": [{"start": 43, "end": 50, "label": "appointment_id"}]} +{"text": "Schedule my oral examinations", "intent": "schedule", "entities": []} +{"text": "I have to move something on my calendar.", "intent": "reschedule", "entities": []} +{"text": "Openings for a consultation Green tomorrow.", "intent": "query_avail", "entities": [{"start": 15, "end": 27, "label": "appointment_type"}, {"start": 29, "end": 34, "label": "practitioner_name"}]} +{"text": "Find an opening sequence Prof. Garcia .", "intent": "query_avail", "entities": [{"start": 25, "end": 37, "label": "practitioner_name"}]} +{"text": "I must speak to Prof. Bennett .", "intent": "schedule", "entities": [{"start": 16, "end": 29, "label": "practitioner_name"}]} +{"text": "I'd like to have a performance review ?", "intent": "schedule", "entities": [{"start": 19, "end": 37, "label": "appointment_type"}]} +{"text": "Let's reschedule appointment #821730 |", "intent": "reschedule", "entities": [{"start": 29, "end": 36, "label": "appointment_id"}]} +{"text": "New strategy meeting with Messina }", "intent": "schedule", "entities": [{"start": 4, "end": 20, "label": "appointment_type"}, {"start": 26, "end": 33, "label": "practitioner_name"}]} +{"text": "Move booking #861346 to next week.", "intent": "reschedule", "entities": [{"start": 13, "end": 20, "label": "appointment_id"}]} +{"text": "I have requested postpone my office hours visit with Grassi .", "intent": "reschedule", "entities": [{"start": 53, "end": 59, "label": "practitioner_name"}]} +{"text": "Find Messina 's availability for instance parent-teacher conference .", "intent": "query_avail", "entities": [{"start": 5, "end": 12, "label": "practitioner_name"}, {"start": 42, "end": 67, "label": "appointment_type"}]} +{"text": "project update with Professor Barbieri |", "intent": "schedule", "entities": [{"start": 0, "end": 14, "label": "appointment_type"}, {"start": 20, "end": 38, "label": "practitioner_name"}]} +{"text": "Arrange a study abroad advising for me.", "intent": "schedule", "entities": [{"start": 10, "end": 31, "label": "appointment_type"}]} +{"text": "I can't make my appointment, please stop it.", "intent": "cancel", "entities": []} +{"text": "Dr. Williams 's only available slot.", "intent": "query_avail", "entities": [{"start": 0, "end": 12, "label": "practitioner_name"}]} +{"text": "Please remove booking #843183 from the schedule.", "intent": "cancel", "entities": [{"start": 22, "end": 29, "label": "appointment_id"}]} +{"text": "what's my horoscope today", "intent": "oos", "entities": []} +{"text": "registration appointment ", "intent": "schedule", "entities": [{"start": 0, "end": 24, "label": "appointment_type"}]} +{"text": "I need to start my advising session, which is appointment #141591 .", "intent": "reschedule", "entities": [{"start": 58, "end": 65, "label": "appointment_id"}]} +{"text": "Check time .", "intent": "query_avail", "entities": []} +{"text": "Book a meeting : Grassi .", "intent": "schedule", "entities": [{"start": 17, "end": 23, "label": "practitioner_name"}]} +{"text": "I need some talk to my advisor.", "intent": "schedule", "entities": []} +{"text": "the answer is false", "intent": "negative_reply", "entities": []} +{"text": "I want to book a .", "intent": "schedule", "entities": []} +{"text": "Cancel my scheduled time.", "intent": "cancel", "entities": []} +{"text": "Let's set up a time to connect.", "intent": "schedule", "entities": []} +{"text": "Show .", "intent": "query_avail", "entities": []} +{"text": "can you check my voicemail", "intent": "oos", "entities": []} +{"text": "if we reschedule my client presentation , ID #079262 ?", "intent": "reschedule", "entities": [{"start": 20, "end": 39, "label": "appointment_type"}, {"start": 45, "end": 52, "label": "appointment_id"}]} +{"text": "Regarding id #758129 , I want to cancel.", "intent": "cancel", "entities": [{"start": 13, "end": 20, "label": "appointment_id"}]} +{"text": "Reschedule my appointment @ ID #746934 .", "intent": "reschedule", "entities": [{"start": 31, "end": 38, "label": "appointment_id"}]} +{"text": "Shift appointment #304272 to next week.", "intent": "reschedule", "entities": [{"start": 18, "end": 25, "label": "appointment_id"}]} +{"text": "I need to reschedule to talk with Ms. Davis .", "intent": "reschedule", "entities": [{"start": 34, "end": 43, "label": "practitioner_name"}]} +{"text": "Time for a meeting.", "intent": "schedule", "entities": []} +{"text": "write for Testa tomorrow.", "intent": "query_avail", "entities": [{"start": 10, "end": 15, "label": "practitioner_name"}]} +{"text": "that's right", "intent": "positive_reply", "entities": []} +{"text": "I can't make it to call #017187 .", "intent": "reschedule", "entities": [{"start": 24, "end": 31, "label": "appointment_id"}]} +{"text": "I have a sabbatical leave meeting with Bianchi that I need to move.", "intent": "reschedule", "entities": [{"start": 9, "end": 33, "label": "appointment_type"}, {"start": 39, "end": 46, "label": "practitioner_name"}]} +{"text": "Postpone my internship interview with Ms. Cooper, reference #660065.", "intent": "reschedule", "entities": [{"start": 12, "end": 32, "label": "appointment_type"}, {"start": 38, "end": 48, "label": "practitioner_name"}, {"start": 60, "end": 67, "label": "appointment_id"}]} +{"text": "Let's move my student advising.", "intent": "reschedule", "entities": [{"start": 14, "end": 30, "label": "appointment_type"}]} +{"text": "Check calendar for Dr. Wood ;", "intent": "query_avail", "entities": [{"start": 19, "end": 27, "label": "practitioner_name"}]} +{"text": "I need to cancel booking #660065 ", "intent": "cancel", "entities": [{"start": 25, "end": 32, "label": "appointment_id"}]} +{"text": "i wish you were here earlier", "intent": "positive_reply", "entities": []} +{"text": "Availability for academic probation meeting s this >", "intent": "query_avail", "entities": [{"start": 17, "end": 43, "label": "appointment_type"}]} +{"text": "great, thanks!", "intent": "positive_reply", "entities": []} +{"text": "I want cancel my grade review , appointment ID #684309 .", "intent": "cancel", "entities": [{"start": 18, "end": 30, "label": "appointment_type"}, {"start": 48, "end": 55, "label": "appointment_id"}]} +{"text": "I can't make reference to appointment #531844 .", "intent": "reschedule", "entities": [{"start": 38, "end": 45, "label": "appointment_id"}]} +{"text": "scheduled for tomorrow.", "intent": "query_avail", "entities": []} +{"text": "I need to change the date _ #387449 .", "intent": "reschedule", "entities": [{"start": 28, "end": 35, "label": "appointment_id"}]} +{"text": "List all openings for Professor Cattaneo ", "intent": "query_avail", "entities": [{"start": 22, "end": 40, "label": "practitioner_name"}]} +{"text": "find me a graphic tutorial on writing longhand", "intent": "oos", "entities": []} +{"text": "This is a cancellation request for replacing vaccination (ID: #821730 ) with Hill .", "intent": "cancel", "entities": [{"start": 45, "end": 56, "label": "appointment_type"}, {"start": 62, "end": 69, "label": "appointment_id"}, {"start": 77, "end": 81, "label": "practitioner_name"}]} +{"text": "find a credit counseling service for me on the web", "intent": "oos", "entities": []} +{"text": "Can I schedule a meeting?", "intent": "schedule", "entities": []} +{"text": "My appointment #132841, a internship check-in with Rizzo, must be cancelled.", "intent": "cancel", "entities": [{"start": 15, "end": 22, "label": "appointment_id"}, {"start": 26, "end": 45, "label": "appointment_type"}, {"start": 51, "end": 56, "label": "practitioner_name"}]} +{"text": "we would like to reschedule.", "intent": "reschedule", "entities": []} +{"text": "I wish to book a esame orale with Mr. Adams .", "intent": "schedule", "entities": [{"start": 17, "end": 28, "label": "appointment_type"}, {"start": 34, "end": 43, "label": "practitioner_name"}]} +{"text": "we need to meet with Gray .", "intent": "schedule", "entities": [{"start": 21, "end": 25, "label": "practitioner_name"}]} +{"text": "I need an appointment with Professor Pellegrino.", "intent": "schedule", "entities": [{"start": 27, "end": 47, "label": "practitioner_name"}]} +{"text": "Professor Sala 's publicly available slot.", "intent": "query_avail", "entities": [{"start": 0, "end": 14, "label": "practitioner_name"}]} +{"text": "Find available psychologist appointment times with Bianchi :", "intent": "query_avail", "entities": [{"start": 15, "end": 39, "label": "appointment_type"}, {"start": 51, "end": 58, "label": "practitioner_name"}]} +{"text": "Find Prof. Martini 's |", "intent": "query_avail", "entities": [{"start": 5, "end": 18, "label": "practitioner_name"}]} +{"text": "I'm busy #387449 .", "intent": "cancel", "entities": [{"start": 9, "end": 16, "label": "appointment_id"}]} +{"text": "I have a conflict with our current appointment time.", "intent": "reschedule", "entities": []} +{"text": "how ya doin", "intent": "greeting", "entities": []} +{"text": "I want to cancel the meeting with reference #569400.", "intent": "cancel", "entities": [{"start": 44, "end": 51, "label": "appointment_id"}]} +{"text": "Show me free time.", "intent": "query_avail", "entities": []} +{"text": "Can you help me schedule something?", "intent": "schedule", "entities": []} +{"text": "I wanted to book a session.", "intent": "schedule", "entities": []} +{"text": "My apologies, but I must cancel my postdoctoral interview with Dott. Marco Conti, ID #192560.", "intent": "cancel", "entities": [{"start": 35, "end": 57, "label": "appointment_type"}, {"start": 63, "end": 80, "label": "practitioner_name"}, {"start": 85, "end": 92, "label": "appointment_id"}]} +{"text": "Let's define a job interview with Lombardi .", "intent": "schedule", "entities": [{"start": 15, "end": 28, "label": "appointment_type"}, {"start": 34, "end": 42, "label": "practitioner_name"}]} +{"text": "Is it possible to move my appointment?", "intent": "reschedule", "entities": []} +{"text": "how are you today", "intent": "greeting", "entities": []} +{"text": "cya later", "intent": "bye", "entities": []} +{"text": "tell me more about bill gates", "intent": "oos", "entities": []} +{"text": "I'd like to book Conte for a tenure meeting.", "intent": "schedule", "entities": [{"start": 17, "end": 22, "label": "practitioner_name"}, {"start": 29, "end": 43, "label": "appointment_type"}]} +{"text": "I'm writing to inform you of the cancellation of my peer tutoring with Wright, ID #682163.", "intent": "cancel", "entities": [{"start": 52, "end": 65, "label": "appointment_type"}, {"start": 71, "end": 77, "label": "practitioner_name"}, {"start": 82, "end": 89, "label": "appointment_id"}]} +{"text": "Find an opening for node thesis committee meeting .", "intent": "query_avail", "entities": [{"start": 25, "end": 49, "label": "appointment_type"}]} +{"text": "Find availability for a client with Prof. Dubois .", "intent": "query_avail", "entities": [{"start": 36, "end": 48, "label": "practitioner_name"}]} +{"text": "see you soon", "intent": "bye", "entities": []} +{"text": "oh, thanks", "intent": "positive_reply", "entities": []} +{"text": "I need to change the time of appointment #079183.", "intent": "reschedule", "entities": [{"start": 41, "end": 48, "label": "appointment_id"}]} +{"text": "check all free times for Villa .", "intent": "query_avail", "entities": [{"start": 25, "end": 30, "label": "practitioner_name"}]} +{"text": "Dr. Ferri \\ calendar.", "intent": "query_avail", "entities": [{"start": 0, "end": 9, "label": "practitioner_name"}]} +{"text": "Can I use Green ?", "intent": "schedule", "entities": [{"start": 10, "end": 15, "label": "practitioner_name"}]} +{"text": "are you okay right now", "intent": "greeting", "entities": []} +{"text": "I considered cancelling my booking with the ID #353753 .", "intent": "cancel", "entities": [{"start": 47, "end": 54, "label": "appointment_id"}]} +{"text": "I am writing to cancel my appointment.", "intent": "cancel", "entities": []} +{"text": "I want you get a capstone meeting on the books.", "intent": "schedule", "entities": [{"start": 17, "end": 33, "label": "appointment_type"}]} +{"text": "until next time", "intent": "bye", "entities": []} +{"text": "Could you find a new time for my mental health counseling?", "intent": "reschedule", "entities": [{"start": 33, "end": 57, "label": "appointment_type"}]} +{"text": "yeap", "intent": "positive_reply", "entities": []} +{"text": "I'd like to cancel the meeting I have with Bell ?", "intent": "cancel", "entities": [{"start": 43, "end": 47, "label": "practitioner_name"}]} +{"text": "your answer was good", "intent": "positive_reply", "entities": []} +{"text": "will we find another time?", "intent": "reschedule", "entities": []} +{"text": "\\ appointment #729731 .", "intent": "cancel", "entities": [{"start": 14, "end": 21, "label": "appointment_id"}]} +{"text": "are you doing okay", "intent": "greeting", "entities": []} +{"text": "I'd like to move my thesis discussion.", "intent": "reschedule", "entities": []} +{"text": "Let's book a 1-on-1 with Professor Sartori starting this Friday.", "intent": "schedule", "entities": [{"start": 13, "end": 19, "label": "appointment_type"}, {"start": 25, "end": 42, "label": "practitioner_name"}]} +{"text": "i think that's false", "intent": "negative_reply", "entities": []} +{"text": "i'd like to know how you are doing", "intent": "greeting", "entities": []} +{"text": "hello, how's your day", "intent": "greeting", "entities": []} +{"text": "Let's find a new time for #839944.", "intent": "reschedule", "entities": [{"start": 26, "end": 33, "label": "appointment_id"}]} +{"text": "find instructions on how to play taboo", "intent": "oos", "entities": []} +{"text": "I'd like just reschedule my student orientation .", "intent": "reschedule", "entities": [{"start": 28, "end": 47, "label": "appointment_type"}]} +{"text": "you're the best!", "intent": "positive_reply", "entities": []} +{"text": "I want to reschedule booking #676483 ;", "intent": "reschedule", "entities": [{"start": 29, "end": 36, "label": "appointment_id"}]} +{"text": "see Mr. Rogers 's openings for this Friday.", "intent": "query_avail", "entities": [{"start": 4, "end": 14, "label": "practitioner_name"}]} +{"text": "i need to find work, help me connect to a local business through linkedin", "intent": "oos", "entities": []} +{"text": "What's changed this afternoon.", "intent": "query_avail", "entities": []} +{"text": "Schedule my career counseling ;", "intent": "schedule", "entities": [{"start": 12, "end": 29, "label": "appointment_type"}]} +{"text": "Arrange a review session with Dr. Carter.", "intent": "schedule", "entities": [{"start": 30, "end": 40, "label": "practitioner_name"}]} +{"text": "that seems true", "intent": "positive_reply", "entities": []} +{"text": "it was nice to get in touch", "intent": "bye", "entities": []} +{"text": "Let's schedule the call with Mr. Rogers .", "intent": "schedule", "entities": [{"start": 29, "end": 39, "label": "practitioner_name"}]} +{"text": "what person is the heaviest ever recorded", "intent": "oos", "entities": []} +{"text": "I want to write a progress review .", "intent": "schedule", "entities": [{"start": 18, "end": 33, "label": "appointment_type"}]} +{"text": "sorry, that is not true", "intent": "negative_reply", "entities": []} +{"text": "Something came up, I need to change my appointment.", "intent": "reschedule", "entities": []} +{"text": "Time with Collins.", "intent": "schedule", "entities": [{"start": 10, "end": 17, "label": "practitioner_name"}]} +{"text": "I would like to reschedule entry project kickoff with Ricci . The ID is #634746 .", "intent": "reschedule", "entities": [{"start": 33, "end": 48, "label": "appointment_type"}, {"start": 54, "end": 59, "label": "practitioner_name"}, {"start": 72, "end": 79, "label": "appointment_id"}]} +{"text": "i have to go ai goodbye", "intent": "bye", "entities": []} +{"text": "Cancel my upcoming session.", "intent": "cancel", "entities": []} +{"text": "Prof. Bennett 's free times |", "intent": "query_avail", "entities": [{"start": 0, "end": 13, "label": "practitioner_name"}]} +{"text": "Find free time slots for appointment graduate school consultation .", "intent": "query_avail", "entities": [{"start": 37, "end": 65, "label": "appointment_type"}]} +{"text": "Postpone my meeting address Mr. Barnes .", "intent": "reschedule", "entities": [{"start": 28, "end": 38, "label": "practitioner_name"}]} +{"text": "Please cancel my Ph.D. defense with Marchetti.", "intent": "cancel", "entities": [{"start": 17, "end": 30, "label": "appointment_type"}, {"start": 36, "end": 45, "label": "practitioner_name"}]} +{"text": "of course", "intent": "positive_reply", "entities": []} +{"text": "Check openings : a course planning with Prof. David Johnson .", "intent": "query_avail", "entities": [{"start": 19, "end": 34, "label": "appointment_type"}, {"start": 40, "end": 59, "label": "practitioner_name"}]} +{"text": "Regarding appointment #531844, I need to change it.", "intent": "reschedule", "entities": [{"start": 22, "end": 29, "label": "appointment_id"}]} +{"text": "yes that's it", "intent": "positive_reply", "entities": []} +{"text": "Postpone my colloquio di orientamento reference Conti , reference #676483 .", "intent": "reschedule", "entities": [{"start": 12, "end": 37, "label": "appointment_type"}, {"start": 48, "end": 53, "label": "practitioner_name"}, {"start": 66, "end": 73, "label": "appointment_id"}]} +{"text": "thanks for the help", "intent": "positive_reply", "entities": []} +{"text": "Schedule my oral exams", "intent": "schedule", "entities": []} +{"text": "Arrange a check-up or professor Prof. Parker .", "intent": "schedule", "entities": [{"start": 10, "end": 18, "label": "appointment_type"}, {"start": 32, "end": 44, "label": "practitioner_name"}]} +{"text": "I no longer need any advising session with Prof. Dubois .", "intent": "cancel", "entities": [{"start": 43, "end": 55, "label": "practitioner_name"}]} +{"text": "we set up a time to connect.", "intent": "schedule", "entities": []} +{"text": "^ 1-on-1 with Martin needs to be cancelled.", "intent": "cancel", "entities": [{"start": 2, "end": 8, "label": "appointment_type"}, {"start": 14, "end": 20, "label": "practitioner_name"}]} +{"text": "Reschedule my one-on-one password Professor Cattaneo .", "intent": "reschedule", "entities": [{"start": 34, "end": 52, "label": "practitioner_name"}]} +{"text": "Delete = ricevimento studenti with Fiore , booking ref #449094 .", "intent": "cancel", "entities": [{"start": 9, "end": 29, "label": "appointment_type"}, {"start": 35, "end": 40, "label": "practitioner_name"}, {"start": 55, "end": 62, "label": "appointment_id"}]} +{"text": "good speaking to you", "intent": "bye", "entities": []} +{"text": "I need to cancel appointment follow-up appointment with Prof. David Johnson . The booking number is #642083 .", "intent": "cancel", "entities": [{"start": 29, "end": 50, "label": "appointment_type"}, {"start": 56, "end": 75, "label": "practitioner_name"}, {"start": 100, "end": 107, "label": "appointment_id"}]} +{"text": "I sensed a scheduling conflict.", "intent": "reschedule", "entities": []} +{"text": "Schedule something with De Angelis \\", "intent": "schedule", "entities": [{"start": 24, "end": 34, "label": "practitioner_name"}]} +{"text": "Can we find another time?", "intent": "reschedule", "entities": []} +{"text": "update calendar for research seminar s.", "intent": "query_avail", "entities": [{"start": 20, "end": 36, "label": "appointment_type"}]} +{"text": "Cancel #113852 |", "intent": "cancel", "entities": [{"start": 7, "end": 14, "label": "appointment_id"}]} +{"text": "Delete the appointment.", "intent": "cancel", "entities": []} +{"text": "I'd need to schedule a letter of recommendation request .", "intent": "schedule", "entities": [{"start": 23, "end": 55, "label": "appointment_type"}]} +{"text": "Check list availability.", "intent": "query_avail", "entities": []} +{"text": "Book a lab session with Ricci ;", "intent": "schedule", "entities": [{"start": 24, "end": 29, "label": "practitioner_name"}]} +{"text": "Display Cook 's free ;", "intent": "query_avail", "entities": [{"start": 8, "end": 12, "label": "practitioner_name"}]} +{"text": "interrupting my project meeting.", "intent": "reschedule", "entities": []} +{"text": "I will not be able to attend my scheduled meeting, ID #531844 }", "intent": "cancel", "entities": [{"start": 54, "end": 61, "label": "appointment_id"}]} +{"text": "Show schedule.", "intent": "query_avail", "entities": []} +{"text": "Can you put a ultrasound in the calendar with De Angelis ?", "intent": "schedule", "entities": [{"start": 14, "end": 24, "label": "appointment_type"}, {"start": 46, "end": 56, "label": "practitioner_name"}]} +{"text": "Is it too late to change my appointment time?", "intent": "reschedule", "entities": []} +{"text": "hi there, how are things", "intent": "greeting", "entities": []} +{"text": "Shift my pet checkup to another directory", "intent": "reschedule", "entities": [{"start": 9, "end": 20, "label": "appointment_type"}]} +{"text": "Can you schedule schedule postdoctoral interview for me?", "intent": "schedule", "entities": [{"start": 26, "end": 48, "label": "appointment_type"}]} +{"text": "have you been good", "intent": "greeting", "entities": []} +{"text": "we like to book a time slot.", "intent": "schedule", "entities": []} +{"text": "I am cancelling my booking with the ID #839944.", "intent": "cancel", "entities": [{"start": 39, "end": 46, "label": "appointment_id"}]} +{"text": "nice talking again, bye", "intent": "bye", "entities": []} +{"text": "what show am i watching", "intent": "oos", "entities": []} +{"text": "Set a meeting with Dott. Luca Morelli.", "intent": "schedule", "entities": [{"start": 19, "end": 37, "label": "practitioner_name"}]} +{"text": "yes sir", "intent": "positive_reply", "entities": []} +{"text": "Find available multiple times.", "intent": "query_avail", "entities": []} +{"text": "I must have a research group meeting with Dott. Simone Marchetti per week.", "intent": "schedule", "entities": [{"start": 14, "end": 36, "label": "appointment_type"}, {"start": 42, "end": 64, "label": "practitioner_name"}]} +{"text": "bye bye then", "intent": "bye", "entities": []} +{"text": "I'm afraid I have to move before meeting, ref #630761 .", "intent": "reschedule", "entities": [{"start": 46, "end": 53, "label": "appointment_id"}]} +{"text": "The meeting function Dott. Luca Morelli can be cancelled.", "intent": "cancel", "entities": [{"start": 21, "end": 39, "label": "practitioner_name"}]} +{"text": "which movie is it that someone says perfectly balanced as all things should be", "intent": "oos", "entities": []} +{"text": "who is jane goodall", "intent": "oos", "entities": []} +{"text": "please, no", "intent": "negative_reply", "entities": []} +{"text": "Availability for a lab .", "intent": "query_avail", "entities": []} +{"text": "Open letter of recommendation request ;", "intent": "query_avail", "entities": [{"start": 5, "end": 37, "label": "appointment_type"}]} +{"text": "how much money does radiohead earn a year", "intent": "oos", "entities": []} +{"text": "so how is everything", "intent": "greeting", "entities": []} +{"text": "I need a club meeting with my advisor, Mr. Rogers :", "intent": "schedule", "entities": [{"start": 9, "end": 21, "label": "appointment_type"}, {"start": 39, "end": 49, "label": "practitioner_name"}]} +{"text": "you're right", "intent": "positive_reply", "entities": []} +{"text": "When is Pellegrini free for example portfolio review .", "intent": "query_avail", "entities": [{"start": 8, "end": 18, "label": "practitioner_name"}, {"start": 36, "end": 52, "label": "appointment_type"}]} +{"text": "My curriculum planning with Dr. King needs to become rescheduled.", "intent": "reschedule", "entities": [{"start": 3, "end": 22, "label": "appointment_type"}, {"start": 28, "end": 36, "label": "practitioner_name"}]} +{"text": "buhbye", "intent": "bye", "entities": []} +{"text": "Cancel the link with Mancini regarding my thesis, ID #538465 .", "intent": "cancel", "entities": [{"start": 21, "end": 28, "label": "practitioner_name"}, {"start": 53, "end": 60, "label": "appointment_id"}]} +{"text": "Schedule a course planning for my group _ Professor Sartori .", "intent": "schedule", "entities": [{"start": 11, "end": 26, "label": "appointment_type"}, {"start": 42, "end": 59, "label": "practitioner_name"}]} +{"text": "Schedule for a ricevimento studenti with Cook.", "intent": "query_avail", "entities": [{"start": 15, "end": 35, "label": "appointment_type"}, {"start": 41, "end": 45, "label": "practitioner_name"}]} +{"text": "what's going on in the world today, anything major", "intent": "oos", "entities": []} +{"text": "I need to finish my consultation with Dr. Ferrara .", "intent": "cancel", "entities": [{"start": 38, "end": 49, "label": "practitioner_name"}]} +{"text": "Find free time ;", "intent": "query_avail", "entities": []} +{"text": "Cancel my sync-up } Prof.ssa Gallo , please.", "intent": "cancel", "entities": [{"start": 10, "end": 17, "label": "appointment_type"}, {"start": 20, "end": 34, "label": "practitioner_name"}]} +{"text": "I can't handle the meeting with Professor De Luca , so I'm cancelling.", "intent": "cancel", "entities": [{"start": 32, "end": 49, "label": "practitioner_name"}]} +{"text": "I expect to see Mr. Barnes .", "intent": "schedule", "entities": [{"start": 16, "end": 26, "label": "practitioner_name"}]} +{"text": "Availability for a lab session.", "intent": "query_avail", "entities": []} +{"text": "please need to cancel my meeting with Mr. Peterson .", "intent": "cancel", "entities": [{"start": 38, "end": 50, "label": "practitioner_name"}]} +{"text": "I need to schedule my thesis papers with Professor Bruno .", "intent": "schedule", "entities": [{"start": 41, "end": 56, "label": "practitioner_name"}]} +{"text": "I'd like to book Sanders into a research consultation .", "intent": "schedule", "entities": [{"start": 17, "end": 24, "label": "practitioner_name"}, {"start": 32, "end": 53, "label": "appointment_type"}]} +{"text": "hola", "intent": "greeting", "entities": []} +{"text": "Next available research consultation.", "intent": "query_avail", "entities": [{"start": 15, "end": 36, "label": "appointment_type"}]} +{"text": "replace slots with Prof. Garcia for a annual physical this afternoon.", "intent": "query_avail", "entities": [{"start": 19, "end": 31, "label": "practitioner_name"}, {"start": 38, "end": 53, "label": "appointment_type"}]} +{"text": "I need please reschedule my appointment, the ID is #955118 .", "intent": "reschedule", "entities": [{"start": 51, "end": 58, "label": "appointment_id"}]} +{"text": "I need to get appointment #795063 .", "intent": "reschedule", "entities": [{"start": 26, "end": 33, "label": "appointment_id"}]} +{"text": "merci beaucoup", "intent": "positive_reply", "entities": []} +{"text": "I'd like to make up a career counseling with Parisi .", "intent": "schedule", "entities": [{"start": 22, "end": 39, "label": "appointment_type"}, {"start": 45, "end": 51, "label": "practitioner_name"}]} +{"text": "Book me searching for a advising session .", "intent": "schedule", "entities": [{"start": 24, "end": 40, "label": "appointment_type"}]} +{"text": "I need to reschedule your booking #361254 .", "intent": "reschedule", "entities": [{"start": 34, "end": 41, "label": "appointment_id"}]} +{"text": "Find an algorithm for a student advising .", "intent": "query_avail", "entities": [{"start": 24, "end": 40, "label": "appointment_type"}]} +{"text": "Move my pet checkup with Ms. Davis on Friday.", "intent": "reschedule", "entities": [{"start": 8, "end": 19, "label": "appointment_type"}, {"start": 25, "end": 34, "label": "practitioner_name"}]} +{"text": "i agree", "intent": "positive_reply", "entities": []} +{"text": "I can't change it to appointment #169618 .", "intent": "reschedule", "entities": [{"start": 33, "end": 40, "label": "appointment_id"}]} +{"text": "I need to cancel appointments eye exam with Professor Fontana . The booking number is #439966 .", "intent": "cancel", "entities": [{"start": 30, "end": 38, "label": "appointment_type"}, {"start": 44, "end": 61, "label": "practitioner_name"}, {"start": 86, "end": 93, "label": "appointment_id"}]} +{"text": "bye now", "intent": "bye", "entities": []} +{"text": "Is there availability for a research consultation?", "intent": "schedule", "entities": [{"start": 28, "end": 49, "label": "appointment_type"}]} +{"text": "Delete my !", "intent": "cancel", "entities": []} +{"text": "What is free.", "intent": "query_avail", "entities": []} +{"text": "Morgan 's next available .", "intent": "query_avail", "entities": [{"start": 0, "end": 6, "label": "practitioner_name"}]} +{"text": "Reschedule my meeting with Professor Donati }", "intent": "reschedule", "entities": [{"start": 37, "end": 43, "label": "practitioner_name"}]} +{"text": "Move my #843183 from Tuesday to Thursday.", "intent": "reschedule", "entities": [{"start": 8, "end": 15, "label": "appointment_id"}]} +{"text": "I need to say something.", "intent": "cancel", "entities": []} +{"text": "I'm cancelling my consultation with Dr. Stefano Marchese.", "intent": "cancel", "entities": [{"start": 36, "end": 56, "label": "practitioner_name"}]} +{"text": "Please continue with cancelling my appointment with Prof. Dubois .", "intent": "cancel", "entities": [{"start": 52, "end": 64, "label": "practitioner_name"}]} +{"text": "no, that is fake", "intent": "negative_reply", "entities": []} +{"text": "Postpone my appointment #761640.", "intent": "reschedule", "entities": [{"start": 24, "end": 31, "label": "appointment_id"}]} +{"text": "What was free.", "intent": "query_avail", "entities": []} +{"text": "creates an opening with Ms. Allen .", "intent": "query_avail", "entities": [{"start": 24, "end": 33, "label": "practitioner_name"}]} +{"text": "I need to change this date for #169618 .", "intent": "reschedule", "entities": [{"start": 31, "end": 38, "label": "appointment_id"}]} +{"text": "Could you find a new time for posting course planning ?", "intent": "reschedule", "entities": [{"start": 38, "end": 53, "label": "appointment_type"}]} +{"text": "Let's schedule vector Dr. Giovanni Galli .", "intent": "schedule", "entities": [{"start": 22, "end": 40, "label": "practitioner_name"}]} +{"text": "I must cancel my faculty meeting with Dr. Giordano.", "intent": "cancel", "entities": [{"start": 17, "end": 32, "label": "appointment_type"}, {"start": 38, "end": 50, "label": "practitioner_name"}]} +{"text": "Please void my scheduled .", "intent": "cancel", "entities": []} +{"text": "Find an empty slot for a honors thesis meeting .", "intent": "schedule", "entities": [{"start": 25, "end": 46, "label": "appointment_type"}]} +{"text": "This is a cancellation request for my student government meeting (ID: #798223) with Professor Pellegrino.", "intent": "cancel", "entities": [{"start": 38, "end": 64, "label": "appointment_type"}, {"start": 70, "end": 77, "label": "appointment_id"}, {"start": 84, "end": 104, "label": "practitioner_name"}]} +{"text": "I am writing : reschedule my dental cleaning .", "intent": "reschedule", "entities": [{"start": 29, "end": 44, "label": "appointment_type"}]} +{"text": "I'd wanted to cancel.", "intent": "cancel", "entities": []} +{"text": "I'd like to cancel my reservation with Sanders.", "intent": "cancel", "entities": [{"start": 39, "end": 46, "label": "practitioner_name"}]} +{"text": "how is everything going", "intent": "greeting", "entities": []} +{"text": "see ya later", "intent": "bye", "entities": []} +{"text": "Unfortunately, I need to move my meeting.", "intent": "reschedule", "entities": []} +{"text": "Please cancel my appointment regarding my project with Parisi.", "intent": "cancel", "entities": [{"start": 55, "end": 61, "label": "practitioner_name"}]} +{"text": "Schedule Mr. Jones for a quarterly review |", "intent": "schedule", "entities": [{"start": 9, "end": 18, "label": "practitioner_name"}, {"start": 25, "end": 41, "label": "appointment_type"}]} +{"text": "would you tell me how the ai is doing", "intent": "greeting", "entities": []} +{"text": "Calendar for next season", "intent": "query_avail", "entities": []} +{"text": "I want to get a faculty meeting on the books.", "intent": "schedule", "entities": [{"start": 16, "end": 31, "label": "appointment_type"}]} +{"text": "when available academic probation meeting times.", "intent": "query_avail", "entities": [{"start": 15, "end": 41, "label": "appointment_type"}]} +{"text": "i want to thank you for helping", "intent": "positive_reply", "entities": []} +{"text": "List all entries for a driving lesson .", "intent": "query_avail", "entities": [{"start": 23, "end": 37, "label": "appointment_type"}]} +{"text": "Please book a meeting with Martin.", "intent": "schedule", "entities": [{"start": 27, "end": 33, "label": "practitioner_name"}]} +{"text": "Book a new appointment.", "intent": "schedule", "entities": []} +{"text": "no way!", "intent": "negative_reply", "entities": []} +{"text": "Need to book a project meeting soon.", "intent": "schedule", "entities": [{"start": 15, "end": 30, "label": "appointment_type"}]} +{"text": "Cancel ;", "intent": "cancel", "entities": []} +{"text": "Let's move my scheduled meeting.", "intent": "reschedule", "entities": []} +{"text": "Book a qualifying exam with Prof. David Johnson as soon as possible.", "intent": "schedule", "entities": [{"start": 7, "end": 22, "label": "appointment_type"}, {"start": 28, "end": 47, "label": "practitioner_name"}]} +{"text": "List open .", "intent": "query_avail", "entities": []} +{"text": "thanks for that!", "intent": "positive_reply", "entities": []} +{"text": "Can I attend a project meeting with Lee ?", "intent": "schedule", "entities": [{"start": 36, "end": 39, "label": "practitioner_name"}]} +{"text": "hiya", "intent": "greeting", "entities": []} +{"text": "Book a new ?", "intent": "schedule", "entities": []} +{"text": "the information is wrong", "intent": "negative_reply", "entities": []} +{"text": "I need an one-on-one :", "intent": "schedule", "entities": [{"start": 10, "end": 20, "label": "appointment_type"}]} +{"text": "Show Prof. Garcia's availability for a research consultation.", "intent": "query_avail", "entities": [{"start": 5, "end": 17, "label": "practitioner_name"}, {"start": 39, "end": 60, "label": "appointment_type"}]} +{"text": "how goes it", "intent": "greeting", "entities": []} +{"text": "update the booking calendar for Santini .", "intent": "query_avail", "entities": [{"start": 32, "end": 39, "label": "practitioner_name"}]} +{"text": "i had a pleasure talking to you, see you later", "intent": "bye", "entities": []} +{"text": "vacuum out the car", "intent": "oos", "entities": []} +{"text": "Show at free time.", "intent": "query_avail", "entities": []} +{"text": "Delete my upcoming project kickoff.", "intent": "cancel", "entities": [{"start": 19, "end": 34, "label": "appointment_type"}]} +{"text": "I need some new time slot.", "intent": "reschedule", "entities": []} +{"text": "The booking #623681 should be removed.", "intent": "cancel", "entities": [{"start": 12, "end": 19, "label": "appointment_id"}]} +{"text": "Show Prof. Parker's availability.", "intent": "query_avail", "entities": [{"start": 5, "end": 17, "label": "practitioner_name"}]} +{"text": "i would say that the statement is definitely false", "intent": "negative_reply", "entities": []} +{"text": "Availability parameter for Dr. Angela White .", "intent": "query_avail", "entities": [{"start": 27, "end": 43, "label": "practitioner_name"}]} +{"text": "how do i add someone to my account", "intent": "oos", "entities": []} +{"text": "thank you very much for the answer", "intent": "positive_reply", "entities": []} +{"text": "what cryptocurrency gained the most in 2018", "intent": "oos", "entities": []} +{"text": "Find available meeting times.", "intent": "query_avail", "entities": []} +{"text": "I decided to reschedule something.", "intent": "reschedule", "entities": []} +{"text": "Cancel my office hours appointment with Prof. Parker |", "intent": "cancel", "entities": [{"start": 40, "end": 52, "label": "practitioner_name"}]} +{"text": "Rebook an appointment.", "intent": "reschedule", "entities": []} +{"text": "made the appointment for me.", "intent": "cancel", "entities": []} +{"text": "I'm attending my tutorial session.", "intent": "cancel", "entities": []} +{"text": "List student advising openings.", "intent": "query_avail", "entities": [{"start": 5, "end": 21, "label": "appointment_type"}]} +{"text": "I wish to schedule a residence life meeting with Sanna .", "intent": "schedule", "entities": [{"start": 21, "end": 43, "label": "appointment_type"}, {"start": 49, "end": 54, "label": "practitioner_name"}]} +{"text": "that is correct", "intent": "positive_reply", "entities": []} +{"text": "remember my one-on-one with Ms. Mitchell .", "intent": "reschedule", "entities": [{"start": 28, "end": 40, "label": "practitioner_name"}]} +{"text": "I intend to move my advising session, which is appointment #222384 .", "intent": "reschedule", "entities": [{"start": 59, "end": 66, "label": "appointment_id"}]} +{"text": "Set up a tutorial program Brown .", "intent": "schedule", "entities": [{"start": 26, "end": 31, "label": "practitioner_name"}]} +{"text": "Change the time for meeting #169618 ", "intent": "reschedule", "entities": [{"start": 28, "end": 35, "label": "appointment_id"}]} +{"text": "Cancel the meeting with Cox regarding my thesis, ID #974214.", "intent": "cancel", "entities": [{"start": 24, "end": 27, "label": "practitioner_name"}, {"start": 52, "end": 59, "label": "appointment_id"}]} +{"text": "I would like to arrange a esame orale with Messina.", "intent": "schedule", "entities": [{"start": 26, "end": 37, "label": "appointment_type"}, {"start": 43, "end": 50, "label": "practitioner_name"}]} +{"text": "I need to book me time to discuss my dissertation with Taylor .", "intent": "schedule", "entities": [{"start": 55, "end": 61, "label": "practitioner_name"}]} +{"text": "I would like to arrange a research update with Professor D'Amico ", "intent": "schedule", "entities": [{"start": 26, "end": 41, "label": "appointment_type"}, {"start": 47, "end": 64, "label": "practitioner_name"}]} +{"text": "Display \\ schedule of Dott. Francesco Testa .", "intent": "query_avail", "entities": [{"start": 22, "end": 43, "label": "practitioner_name"}]} +{"text": "ahoy hoy", "intent": "greeting", "entities": []} +{"text": "I need to cancel my meeting with Torres this Tuesday.", "intent": "cancel", "entities": [{"start": 33, "end": 39, "label": "practitioner_name"}]} +{"text": "I can't make my advising list with Prof. Campbell .", "intent": "reschedule", "entities": [{"start": 35, "end": 49, "label": "practitioner_name"}]} +{"text": "we need to cancel my defense rehearsal.", "intent": "cancel", "entities": []} +{"text": "Find an alternative", "intent": "query_avail", "entities": []} +{"text": "click for Dr. Caterina Gentile .", "intent": "query_avail", "entities": [{"start": 10, "end": 30, "label": "practitioner_name"}]} +{"text": "salutations!", "intent": "greeting", "entities": []} +{"text": "hello", "intent": "greeting", "entities": []} +{"text": "Can I get a different time for my meeting . Dr. Wilson ?", "intent": "reschedule", "entities": [{"start": 44, "end": 54, "label": "practitioner_name"}]} +{"text": "how are you this day", "intent": "greeting", "entities": []} +{"text": "I'm going to make it to my mentorship meeting with Thomas , so please cancel it. It's ID #449094 .", "intent": "cancel", "entities": [{"start": 27, "end": 45, "label": "appointment_type"}, {"start": 51, "end": 57, "label": "practitioner_name"}, {"start": 89, "end": 96, "label": "appointment_id"}]} +{"text": "Let's create a transfer credit evaluation with Torres .", "intent": "schedule", "entities": [{"start": 15, "end": 41, "label": "appointment_type"}, {"start": 47, "end": 53, "label": "practitioner_name"}]} +{"text": "how is your day", "intent": "greeting", "entities": []} +{"text": "Regarding appointment #934189, I want to cancel.", "intent": "cancel", "entities": [{"start": 22, "end": 29, "label": "appointment_id"}]} +{"text": "this was a nice chat", "intent": "bye", "entities": []} +{"text": "Display free times for a faculty candidate interview ;", "intent": "query_avail", "entities": [{"start": 25, "end": 52, "label": "appointment_type"}]} +{"text": "whats up with you", "intent": "greeting", "entities": []} +{"text": "the answer is definitely no", "intent": "negative_reply", "entities": []} +{"text": "five times next week.", "intent": "query_avail", "entities": []} +{"text": "no!", "intent": "negative_reply", "entities": []} +{"text": "find someone local who mows lawns", "intent": "oos", "entities": []} +{"text": "now move my booking #103401 .", "intent": "reschedule", "entities": [{"start": 20, "end": 27, "label": "appointment_id"}]} +{"text": "that would be yes", "intent": "positive_reply", "entities": []} +{"text": "any meeting with Professor Fontana has to be moved.", "intent": "reschedule", "entities": [{"start": 17, "end": 34, "label": "practitioner_name"}]} +{"text": "I need to drop out lab session with Prof. David Johnson .", "intent": "cancel", "entities": [{"start": 19, "end": 30, "label": "appointment_type"}, {"start": 36, "end": 55, "label": "practitioner_name"}]} +{"text": "hi there alexa", "intent": "greeting", "entities": []} +{"text": "Check Dr. Brooks 's schedule for ;", "intent": "query_avail", "entities": [{"start": 6, "end": 16, "label": "practitioner_name"}]} +{"text": "List of openings.", "intent": "query_avail", "entities": []} +{"text": "uh huh", "intent": "positive_reply", "entities": []} +{"text": "on my scheduled time.", "intent": "cancel", "entities": []} +{"text": "Please schedule a dentist appointment for me.", "intent": "schedule", "entities": []} +{"text": "I need to cancel my curriculum planning , appointment ID #040952 .", "intent": "cancel", "entities": [{"start": 20, "end": 39, "label": "appointment_type"}, {"start": 57, "end": 64, "label": "appointment_id"}]} +{"text": "Please cancel my attendance on the office hours .", "intent": "cancel", "entities": [{"start": 35, "end": 47, "label": "appointment_type"}]} +{"text": "List all available appointment holders", "intent": "query_avail", "entities": []} +{"text": "Schedule for Professor Mariani.", "intent": "query_avail", "entities": [{"start": 13, "end": 30, "label": "practitioner_name"}]} +{"text": "have a good one", "intent": "bye", "entities": []} +{"text": "it was nice chatting with you", "intent": "bye", "entities": []} +{"text": "Find me a query for a oral exam with Dr. Phillips .", "intent": "schedule", "entities": [{"start": 22, "end": 31, "label": "appointment_type"}, {"start": 37, "end": 49, "label": "practitioner_name"}]} +{"text": "good talk, see you later", "intent": "bye", "entities": []} +{"text": "hello there, good morning", "intent": "greeting", "entities": []} +{"text": "Let's book a legal consultation with Ricci for this Friday.", "intent": "schedule", "entities": [{"start": 13, "end": 31, "label": "appointment_type"}, {"start": 37, "end": 42, "label": "practitioner_name"}]} +{"text": "thanks for your response", "intent": "positive_reply", "entities": []} +{"text": "Need your schedule.", "intent": "schedule", "entities": []} +{"text": "Arrange a review session with Dr. Giovanni Galli ", "intent": "schedule", "entities": [{"start": 30, "end": 48, "label": "practitioner_name"}]} +{"text": "why, hello bandit", "intent": "greeting", "entities": []} +{"text": "that is not true, it's false", "intent": "negative_reply", "entities": []} +{"text": "Shift appointment #554324 to next appointment", "intent": "reschedule", "entities": [{"start": 18, "end": 25, "label": "appointment_id"}]} +{"text": "Availability of Sanna for check-up .", "intent": "query_avail", "entities": [{"start": 16, "end": 21, "label": "practitioner_name"}, {"start": 27, "end": 35, "label": "appointment_type"}]} +{"text": "show me how to contact a paranormal spirit", "intent": "oos", "entities": []} +{"text": "Book a peer tutoring . please.", "intent": "schedule", "entities": [{"start": 7, "end": 20, "label": "appointment_type"}]} +{"text": "I need to set up a quick chat.", "intent": "schedule", "entities": []} +{"text": "functions require a dissertation proposal with Santini .", "intent": "schedule", "entities": [{"start": 20, "end": 41, "label": "appointment_type"}, {"start": 47, "end": 54, "label": "practitioner_name"}]} +{"text": "I require a meeting with Villa.", "intent": "schedule", "entities": [{"start": 25, "end": 30, "label": "practitioner_name"}]} +{"text": "Delete my appointment, ID is #513514.", "intent": "cancel", "entities": [{"start": 29, "end": 36, "label": "appointment_id"}]} +{"text": "no that isn't it", "intent": "negative_reply", "entities": []} +{"text": "does denim go with anything", "intent": "oos", "entities": []} +{"text": "I'm looking to create a study abroad advising with Lombardi .", "intent": "schedule", "entities": [{"start": 24, "end": 45, "label": "appointment_type"}, {"start": 51, "end": 59, "label": "practitioner_name"}]} +{"text": "I have to cancel this meeting.", "intent": "cancel", "entities": []} +{"text": "Can google schedule a group meeting with Professor Rossi ?", "intent": "schedule", "entities": [{"start": 41, "end": 56, "label": "practitioner_name"}]} +{"text": "I have a scheduling schedule", "intent": "reschedule", "entities": []} +{"text": "Show openings for this Friday.", "intent": "query_avail", "entities": []} +{"text": "certainly not", "intent": "negative_reply", "entities": []} +{"text": "Need to understand", "intent": "schedule", "entities": []} +{"text": "it was very good to talk to you", "intent": "bye", "entities": []} +{"text": "Arrange a departmental meeting with professor Dr. Davide Monti.", "intent": "schedule", "entities": [{"start": 10, "end": 30, "label": "appointment_type"}, {"start": 46, "end": 62, "label": "practitioner_name"}]} +{"text": "absolutely not", "intent": "negative_reply", "entities": []} +{"text": "yes you are", "intent": "positive_reply", "entities": []} +{"text": "Professor Vitali meeting ;", "intent": "query_avail", "entities": [{"start": 0, "end": 16, "label": "practitioner_name"}]} +{"text": "I can no longer delay my meeting #555446 .", "intent": "reschedule", "entities": [{"start": 33, "end": 40, "label": "appointment_id"}]} +{"text": "I need to choose a ricevimento studenti .", "intent": "schedule", "entities": [{"start": 19, "end": 39, "label": "appointment_type"}]} +{"text": "Show the booking calendar for a oral exam with Mr. Peterson.", "intent": "query_avail", "entities": [{"start": 32, "end": 41, "label": "appointment_type"}, {"start": 47, "end": 59, "label": "practitioner_name"}]} +{"text": "Please cancel and rebook my website", "intent": "reschedule", "entities": []} +{"text": "I need to have a advising session :", "intent": "schedule", "entities": [{"start": 17, "end": 33, "label": "appointment_type"}]} +{"text": "Openings with a mentorship meeting tomorrow.", "intent": "query_avail", "entities": [{"start": 16, "end": 34, "label": "appointment_type"}]} +{"text": "List possible openings for a office hours .", "intent": "query_avail", "entities": [{"start": 29, "end": 41, "label": "appointment_type"}]} +{"text": "I need to find another time for my registration appointment with Dr. Santoro.", "intent": "reschedule", "entities": [{"start": 35, "end": 59, "label": "appointment_type"}, {"start": 65, "end": 76, "label": "practitioner_name"}]} +{"text": "Alter thy appointment.", "intent": "reschedule", "entities": []} +{"text": "shall I bring my appointment forward?", "intent": "reschedule", "entities": []} +{"text": "rules for openings.", "intent": "query_avail", "entities": []} +{"text": "Can I schedule a project meeting with Torres?", "intent": "schedule", "entities": [{"start": 38, "end": 44, "label": "practitioner_name"}]} +{"text": "List all free times for Evans.", "intent": "query_avail", "entities": [{"start": 24, "end": 29, "label": "practitioner_name"}]} +{"text": "Please delete appointment #861346, my fieldwork briefing with Professor Nowak.", "intent": "cancel", "entities": [{"start": 26, "end": 33, "label": "appointment_id"}, {"start": 38, "end": 56, "label": "appointment_type"}, {"start": 72, "end": 77, "label": "practitioner_name"}]} +{"text": "when was the last worker's strike in amsterdam", "intent": "oos", "entities": []} +{"text": "I must create a makeup exam with Thomas this week.", "intent": "schedule", "entities": [{"start": 16, "end": 27, "label": "appointment_type"}, {"start": 33, "end": 39, "label": "practitioner_name"}]} +{"text": "how the bus moves", "intent": "oos", "entities": []} +{"text": "I need only change the time of appointment #974214 .", "intent": "reschedule", "entities": [{"start": 43, "end": 50, "label": "appointment_id"}]} +{"text": "Can I bring my appointment forward?", "intent": "reschedule", "entities": []} +{"text": "Display free times.", "intent": "query_avail", "entities": []} +{"text": "Display Dott. Matteo Palmieri 's free !", "intent": "query_avail", "entities": [{"start": 8, "end": 29, "label": "practitioner_name"}]} +{"text": "I'd like to book a consultation.", "intent": "schedule", "entities": []} +{"text": "yes, that's correct", "intent": "positive_reply", "entities": []} +{"text": "Show Professor Marino 's schedule for this Friday.", "intent": "query_avail", "entities": [{"start": 5, "end": 21, "label": "practitioner_name"}]} +{"text": "Can we move my financial advising from Mr. Rogers ? It's appointment #975878 .", "intent": "reschedule", "entities": [{"start": 15, "end": 33, "label": "appointment_type"}, {"start": 39, "end": 49, "label": "practitioner_name"}, {"start": 69, "end": 76, "label": "appointment_id"}]} +{"text": "Please help me move my alumni interview with Professor Bernardi.", "intent": "reschedule", "entities": [{"start": 23, "end": 39, "label": "appointment_type"}, {"start": 45, "end": 63, "label": "practitioner_name"}]} +{"text": "it was pleasant conversing with you", "intent": "bye", "entities": []} +{"text": "Openings for a library research consultation or Moore tomorrow.", "intent": "query_avail", "entities": [{"start": 15, "end": 44, "label": "appointment_type"}, {"start": 48, "end": 53, "label": "practitioner_name"}]} +{"text": "Book a meeting with Professor Barbieri.", "intent": "schedule", "entities": [{"start": 20, "end": 38, "label": "practitioner_name"}]} +{"text": "Cancel #449094 .", "intent": "cancel", "entities": [{"start": 8, "end": 15, "label": "appointment_id"}]} +{"text": "show me what one should do to get ahead in a tech corporation", "intent": "oos", "entities": []} +{"text": "I need to reschedule my session with Ms. Davis.", "intent": "reschedule", "entities": [{"start": 37, "end": 46, "label": "practitioner_name"}]} +{"text": "List open source", "intent": "query_avail", "entities": []} +{"text": "thank you for the help", "intent": "positive_reply", "entities": []} +{"text": "hey, what's up", "intent": "greeting", "entities": []} +{"text": "Need also book a slot.", "intent": "schedule", "entities": []} +{"text": "Please remove my therapy session with Mr. Peterson , write #204345 .", "intent": "cancel", "entities": [{"start": 17, "end": 32, "label": "appointment_type"}, {"start": 38, "end": 50, "label": "practitioner_name"}, {"start": 59, "end": 66, "label": "appointment_id"}]} +{"text": "I need to change appointment #239161.", "intent": "reschedule", "entities": [{"start": 29, "end": 36, "label": "appointment_id"}]} +{"text": "Check Fiore 's calendar for advising session .", "intent": "query_avail", "entities": [{"start": 6, "end": 11, "label": "practitioner_name"}, {"start": 29, "end": 45, "label": "appointment_type"}]} +{"text": "this is a true statement", "intent": "positive_reply", "entities": []} +{"text": "Collins 's free times for update grant proposal meeting today.", "intent": "query_avail", "entities": [{"start": 0, "end": 7, "label": "practitioner_name"}, {"start": 33, "end": 55, "label": "appointment_type"}]} +{"text": "Please cancel my .", "intent": "cancel", "entities": []} +{"text": "I'm formally cancelling my research consultation.", "intent": "cancel", "entities": [{"start": 27, "end": 48, "label": "appointment_type"}]} +{"text": "I decided to delete a scheduled meeting.", "intent": "cancel", "entities": []} +{"text": "I have an appointment I need to change.", "intent": "reschedule", "entities": []} +{"text": "Can you help automatically reschedule #586330 ?", "intent": "reschedule", "entities": [{"start": 38, "end": 45, "label": "appointment_id"}]} +{"text": "I am ready to cancel my appointment.", "intent": "cancel", "entities": []} +{"text": "Check Dr. Smith's calendar for a office hours.", "intent": "query_avail", "entities": [{"start": 6, "end": 15, "label": "practitioner_name"}, {"start": 33, "end": 45, "label": "appointment_type"}]} +{"text": "I need just reschedule my session with Prof. Müller .", "intent": "reschedule", "entities": [{"start": 39, "end": 51, "label": "practitioner_name"}]} +{"text": "drop me in for a lab demonstration .", "intent": "schedule", "entities": [{"start": 17, "end": 34, "label": "appointment_type"}]} +{"text": "I want to cancel the meeting with reference #079262 ", "intent": "cancel", "entities": [{"start": 44, "end": 51, "label": "appointment_id"}]} +{"text": "I'd like to shift my appointment to a later time.", "intent": "reschedule", "entities": []} +{"text": "i have to get going", "intent": "bye", "entities": []} +{"text": "how's it going with you", "intent": "greeting", "entities": []} +{"text": "Is it safe to schedule a session?", "intent": "schedule", "entities": []} +{"text": "replace me with Richardson .", "intent": "schedule", "entities": [{"start": 16, "end": 26, "label": "practitioner_name"}]} +{"text": "what is the breath to compression ratio for cpr", "intent": "oos", "entities": []} +{"text": "Show booking calendar for study group meeting s.", "intent": "query_avail", "entities": [{"start": 27, "end": 46, "label": "appointment_type"}]} +{"text": "whenever available research ethics review .", "intent": "query_avail", "entities": [{"start": 19, "end": 41, "label": "appointment_type"}]} +{"text": "what does water taste like", "intent": "oos", "entities": []} +{"text": "candidates must have a ultrasound with Sanna this week.", "intent": "schedule", "entities": [{"start": 23, "end": 33, "label": "appointment_type"}, {"start": 39, "end": 44, "label": "practitioner_name"}]} +{"text": "i want to know how you are doing", "intent": "greeting", "entities": []} +{"text": "does hypnosis work to break bad habits", "intent": "oos", "entities": []} +{"text": "it's nice to see you", "intent": "greeting", "entities": []} +{"text": "time for tomorrow.", "intent": "query_avail", "entities": []} +{"text": "click for Ricci tomorrow.", "intent": "query_avail", "entities": [{"start": 10, "end": 15, "label": "practitioner_name"}]} +{"text": "Book a client presentation with Ms. Mitchell as soon as ;", "intent": "schedule", "entities": [{"start": 7, "end": 26, "label": "appointment_type"}, {"start": 32, "end": 44, "label": "practitioner_name"}]} +{"text": "Find free memory slots.", "intent": "query_avail", "entities": []} +{"text": "Let's cancel the meeting with ID #353753.", "intent": "cancel", "entities": [{"start": 33, "end": 40, "label": "appointment_id"}]} +{"text": "thanks that was really helpful", "intent": "positive_reply", "entities": []} +{"text": "Availability on July 21st.", "intent": "query_avail", "entities": []} +{"text": "I'd like to have a pre-defense meeting.", "intent": "schedule", "entities": [{"start": 19, "end": 38, "label": "appointment_type"}]} +{"text": "that's not right", "intent": "negative_reply", "entities": []} +{"text": "I need to cancel your appointment with confirmation number #556800 .", "intent": "cancel", "entities": [{"start": 59, "end": 66, "label": "appointment_id"}]} +{"text": "Mancini academic integrity hearing ; check.", "intent": "query_avail", "entities": [{"start": 0, "end": 7, "label": "practitioner_name"}, {"start": 8, "end": 34, "label": "appointment_type"}]} +{"text": "no, that is incorrect", "intent": "negative_reply", "entities": []} +{"text": "I'd like to get on the calendar.", "intent": "schedule", "entities": []} +{"text": "I'm cancelling my tutorial session.", "intent": "cancel", "entities": []} +{"text": "I'd like to cancel #081504.", "intent": "cancel", "entities": [{"start": 19, "end": 26, "label": "appointment_id"}]} +{"text": "regards", "intent": "bye", "entities": []} +{"text": "Open appointment fee", "intent": "query_avail", "entities": []} +{"text": "I'm waiting #901602 .", "intent": "cancel", "entities": [{"start": 12, "end": 19, "label": "appointment_id"}]} +{"text": "no that isn't right", "intent": "negative_reply", "entities": []} +{"text": "find out how many latin scholars there are at the university of chicago", "intent": "oos", "entities": []} +{"text": "Dr. Giordano 's calendar for next generation", "intent": "query_avail", "entities": [{"start": 0, "end": 12, "label": "practitioner_name"}]} +{"text": "I can't attend the team meeting.", "intent": "reschedule", "entities": [{"start": 19, "end": 31, "label": "appointment_type"}]} +{"text": "I need to cancel something.", "intent": "cancel", "entities": []} +{"text": "Something may come up and I need to change my meeting with Dr. Ward .", "intent": "reschedule", "entities": [{"start": 59, "end": 67, "label": "practitioner_name"}]} +{"text": "goodbye to you", "intent": "bye", "entities": []} +{"text": "according to my fitness tracker, how many push ups have i done today", "intent": "oos", "entities": []} +{"text": "I want to schedule a faculty candidate interview with Lee.", "intent": "schedule", "entities": [{"start": 21, "end": 48, "label": "appointment_type"}, {"start": 54, "end": 57, "label": "practitioner_name"}]} +{"text": "what is the nature of the big bang theory", "intent": "oos", "entities": []} +{"text": "I would like to cancel out graduate school consultation with Professor Sartori . The ID is #281149 .", "intent": "cancel", "entities": [{"start": 27, "end": 55, "label": "appointment_type"}, {"start": 61, "end": 78, "label": "practitioner_name"}, {"start": 91, "end": 98, "label": "appointment_id"}]} +{"text": "tell me how are you", "intent": "greeting", "entities": []} +{"text": "i apprecaite the help from you", "intent": "positive_reply", "entities": []} +{"text": "verify Rizzo 's availability.", "intent": "query_avail", "entities": [{"start": 7, "end": 12, "label": "practitioner_name"}]} +{"text": "I am cancelling my booking with the operator #536444 .", "intent": "cancel", "entities": [{"start": 45, "end": 52, "label": "appointment_id"}]} +{"text": "you are wrong", "intent": "negative_reply", "entities": []} +{"text": "New class registration → Green .", "intent": "schedule", "entities": [{"start": 4, "end": 22, "label": "appointment_type"}, {"start": 25, "end": 30, "label": "practitioner_name"}]} +{"text": "Find free memory slots for a dissertation proposal .", "intent": "query_avail", "entities": [{"start": 29, "end": 50, "label": "appointment_type"}]} +{"text": "Can we find another !", "intent": "reschedule", "entities": []} +{"text": "no that isn't correct", "intent": "negative_reply", "entities": []} +{"text": "Reschedule #795063.", "intent": "reschedule", "entities": [{"start": 11, "end": 18, "label": "appointment_id"}]} +{"text": "Prof. Watson 's }", "intent": "query_avail", "entities": [{"start": 0, "end": 12, "label": "practitioner_name"}]} +{"text": "Book a dentist appointment.", "intent": "schedule", "entities": []} +{"text": "Book - in.", "intent": "schedule", "entities": []} +{"text": "I must change my final project review } with Dr. Wood .", "intent": "reschedule", "entities": [{"start": 17, "end": 37, "label": "appointment_type"}, {"start": 45, "end": 53, "label": "practitioner_name"}]} +{"text": "that is not right", "intent": "negative_reply", "entities": []} +{"text": "no, definitely not", "intent": "negative_reply", "entities": []} +{"text": "hello, are you doing alright", "intent": "greeting", "entities": []} +{"text": "i void my scheduled session.", "intent": "cancel", "entities": []} +{"text": "Postpone my session file Conte .", "intent": "reschedule", "entities": [{"start": 25, "end": 30, "label": "practitioner_name"}]} +{"text": "definitely not", "intent": "negative_reply", "entities": []} +{"text": "I won't be able to attend, so please cancel.", "intent": "cancel", "entities": []} +{"text": "Remove the career counseling with Galli in my calendar.", "intent": "cancel", "entities": [{"start": 11, "end": 28, "label": "appointment_type"}, {"start": 34, "end": 39, "label": "practitioner_name"}]} +{"text": "I'm writing to inform you of the cancellation of my vet appointment with Walker ID #018673 .", "intent": "cancel", "entities": [{"start": 52, "end": 67, "label": "appointment_type"}, {"start": 73, "end": 79, "label": "practitioner_name"}, {"start": 84, "end": 91, "label": "appointment_id"}]} +{"text": "My situation has changed, I need to cancel my research ethics review.", "intent": "cancel", "entities": [{"start": 46, "end": 68, "label": "appointment_type"}]} +{"text": "Book an appointment for ;", "intent": "schedule", "entities": []} +{"text": "I need to align my practicum supervision with Professor Sala (ID: #676483 ).", "intent": "cancel", "entities": [{"start": 19, "end": 40, "label": "appointment_type"}, {"start": 46, "end": 60, "label": "practitioner_name"}, {"start": 66, "end": 73, "label": "appointment_id"}]} +{"text": "Cancel booking #513514 my independent study meeting with Professor Bruno .", "intent": "cancel", "entities": [{"start": 15, "end": 22, "label": "appointment_id"}, {"start": 27, "end": 52, "label": "appointment_type"}, {"start": 58, "end": 73, "label": "practitioner_name"}]} +{"text": "Openings for Prof. Campbell tomorrow.", "intent": "query_avail", "entities": [{"start": 13, "end": 27, "label": "practitioner_name"}]} +{"text": "} remove my faculty candidate interview with D'Angelo , reference #962592 .", "intent": "cancel", "entities": [{"start": 12, "end": 39, "label": "appointment_type"}, {"start": 45, "end": 53, "label": "practitioner_name"}, {"start": 66, "end": 73, "label": "appointment_id"}]} +{"text": "I'd like to request a new time for my friends", "intent": "reschedule", "entities": []} +{"text": "Availability of Messina for a pre-defense meeting ;", "intent": "query_avail", "entities": [{"start": 16, "end": 23, "label": "practitioner_name"}, {"start": 30, "end": 49, "label": "appointment_type"}]} +{"text": "how are things", "intent": "greeting", "entities": []} +{"text": "download times are available for Prof. Howard .", "intent": "query_avail", "entities": [{"start": 33, "end": 45, "label": "practitioner_name"}]} +{"text": "thank you so very much", "intent": "positive_reply", "entities": []} +{"text": "Free times for a orientation session next week.", "intent": "query_avail", "entities": [{"start": 17, "end": 36, "label": "appointment_type"}]} +{"text": "I want to meet.", "intent": "schedule", "entities": []} +{"text": "i do not think that is true, so i would say it is a false statement", "intent": "negative_reply", "entities": []} +{"text": "Check schedule .", "intent": "query_avail", "entities": []} +{"text": "Book three hours.", "intent": "schedule", "entities": []} +{"text": "it was great talking to you", "intent": "bye", "entities": []} +{"text": "Find Esposito resource availability.", "intent": "query_avail", "entities": [{"start": 5, "end": 13, "label": "practitioner_name"}]} +{"text": "correct", "intent": "positive_reply", "entities": []} +{"text": "what's going on", "intent": "greeting", "entities": []} +{"text": "Please cancel my guest lecture _ Sanna , ID is #634746 .", "intent": "cancel", "entities": [{"start": 17, "end": 30, "label": "appointment_type"}, {"start": 33, "end": 38, "label": "practitioner_name"}, {"start": 47, "end": 54, "label": "appointment_id"}]} +{"text": "List all available appointment times.", "intent": "query_avail", "entities": []} +{"text": "how you are", "intent": "greeting", "entities": []} +{"text": "The meeting with Fiore (ref #798223) is no longer required.", "intent": "cancel", "entities": [{"start": 17, "end": 22, "label": "practitioner_name"}, {"start": 28, "end": 35, "label": "appointment_id"}]} +{"text": "I'd like to move past thesis discussion.", "intent": "reschedule", "entities": []} +{"text": "Set up faculty candidate interview :", "intent": "schedule", "entities": [{"start": 7, "end": 34, "label": "appointment_type"}]} +{"text": "Change my appointment with Prof. David Johnson every Wednesday.", "intent": "reschedule", "entities": [{"start": 27, "end": 46, "label": "practitioner_name"}]} +{"text": "I'm looking to schedule a study group meeting.", "intent": "schedule", "entities": [{"start": 26, "end": 45, "label": "appointment_type"}]} +{"text": "Delete my caller ID is #419544 .", "intent": "cancel", "entities": [{"start": 23, "end": 30, "label": "appointment_id"}]} +{"text": "Open procedure for a allergy test .", "intent": "query_avail", "entities": [{"start": 21, "end": 33, "label": "appointment_type"}]} +{"text": "hell nah", "intent": "negative_reply", "entities": []} +{"text": "yes, that's it", "intent": "positive_reply", "entities": []} +{"text": "what's up with you", "intent": "greeting", "entities": []} +{"text": "Void my file #564268 .", "intent": "cancel", "entities": [{"start": 13, "end": 20, "label": "appointment_id"}]} +{"text": "• to speak to Mr. Rogers .", "intent": "schedule", "entities": [{"start": 14, "end": 24, "label": "practitioner_name"}]} +{"text": "are you doing alright", "intent": "greeting", "entities": []} +{"text": "Book me _ Greco .", "intent": "schedule", "entities": [{"start": 10, "end": 15, "label": "practitioner_name"}]} +{"text": "invite me in.", "intent": "schedule", "entities": []} +{"text": "i am glad we got to talk again, see you soon", "intent": "bye", "entities": []} +{"text": "Please take my language proficiency test off your schedule.", "intent": "cancel", "entities": [{"start": 15, "end": 40, "label": "appointment_type"}]} +{"text": "The appointment with Professor Barbieri is no longer needed.", "intent": "cancel", "entities": [{"start": 21, "end": 39, "label": "practitioner_name"}]} +{"text": "I have a conflict with my current appointment time.", "intent": "reschedule", "entities": []} +{"text": "Please cancel and rebook my appointment.", "intent": "reschedule", "entities": []} +{"text": "Talk to Nowak.", "intent": "schedule", "entities": [{"start": 8, "end": 13, "label": "practitioner_name"}]} +{"text": "I'm unable to attend class capstone meeting .", "intent": "reschedule", "entities": [{"start": 27, "end": 43, "label": "appointment_type"}]} +{"text": "A conflict has come up for resolving #881822 .", "intent": "reschedule", "entities": [{"start": 37, "end": 44, "label": "appointment_id"}]} +{"text": "Delete booking #356641 from the system.", "intent": "cancel", "entities": [{"start": 15, "end": 22, "label": "appointment_id"}]} +{"text": "i believe that to be false", "intent": "negative_reply", "entities": []} +{"text": "thank you very much", "intent": "positive_reply", "entities": []} +{"text": "orientation session with Mr. Rodriguez.", "intent": "schedule", "entities": [{"start": 0, "end": 19, "label": "appointment_type"}, {"start": 25, "end": 38, "label": "practitioner_name"}]} +{"text": "I would refuse to reschedule.", "intent": "reschedule", "entities": []} +{"text": "dial up annual physical .", "intent": "schedule", "entities": [{"start": 8, "end": 23, "label": "appointment_type"}]} +{"text": "i enjoyed talking to you, bye", "intent": "bye", "entities": []} +{"text": "I shall no longer make my meeting #310528 .", "intent": "reschedule", "entities": [{"start": 34, "end": 41, "label": "appointment_id"}]} +{"text": "when will microsoft drop support for windows 7", "intent": "oos", "entities": []} +{"text": "will we push my appointment #600778 to the afternoon?", "intent": "reschedule", "entities": [{"start": 28, "end": 35, "label": "appointment_id"}]} +{"text": "it was nice to talk it out with you", "intent": "bye", "entities": []} +{"text": "Please remember my reservation.", "intent": "cancel", "entities": []} +{"text": "I need to change the time for my academic integrity hearing with Dott.ssa Chiara Negri (ID: #642584).", "intent": "reschedule", "entities": [{"start": 33, "end": 59, "label": "appointment_type"}, {"start": 65, "end": 86, "label": "practitioner_name"}, {"start": 92, "end": 99, "label": "appointment_id"}]} +{"text": "I need to reschedule my talk with Morgan.", "intent": "reschedule", "entities": [{"start": 34, "end": 40, "label": "practitioner_name"}]} +{"text": "I choose to cancel my blood test , appointment ID #169618 .", "intent": "cancel", "entities": [{"start": 22, "end": 32, "label": "appointment_type"}, {"start": 50, "end": 57, "label": "appointment_id"}]} +{"text": "Help me book a library research consultation with Professor Cattaneo }", "intent": "schedule", "entities": [{"start": 15, "end": 44, "label": "appointment_type"}, {"start": 50, "end": 68, "label": "practitioner_name"}]} +{"text": "I am no longer available for my language exchange with Professor Pellegrino }", "intent": "cancel", "entities": [{"start": 32, "end": 49, "label": "appointment_type"}, {"start": 55, "end": 75, "label": "practitioner_name"}]} +{"text": "I want to postpone my session.", "intent": "reschedule", "entities": []} +{"text": "how's ife treating you", "intent": "greeting", "entities": []} +{"text": "I need ta cancel my thesis discussion.", "intent": "cancel", "entities": []} +{"text": "Amato discussione tesi availability check.", "intent": "query_avail", "entities": [{"start": 0, "end": 5, "label": "practitioner_name"}, {"start": 6, "end": 22, "label": "appointment_type"}]} +{"text": "Move booking #460528 effective next week.", "intent": "reschedule", "entities": [{"start": 13, "end": 20, "label": "appointment_id"}]} +{"text": "Availability of Prof. Parker.", "intent": "query_avail", "entities": [{"start": 16, "end": 28, "label": "practitioner_name"}]} +{"text": "I need to cancel my meeting with Prof. Murphy on monday", "intent": "cancel", "entities": [{"start": 33, "end": 45, "label": "practitioner_name"}]} +{"text": "talk to you soon, bye!", "intent": "bye", "entities": []} +{"text": "Delete booking #901602 from file system.", "intent": "cancel", "entities": [{"start": 15, "end": 22, "label": "appointment_id"}]} +{"text": "I need to cancel an airline booking.", "intent": "cancel", "entities": []} +{"text": "we have to cancel.", "intent": "cancel", "entities": []} +{"text": "can you mark this note as important", "intent": "oos", "entities": []} +{"text": "vacant slots.", "intent": "query_avail", "entities": []} +{"text": "not happening", "intent": "negative_reply", "entities": []} +{"text": "I need to find another time for my health screening with Mr. Rodriguez ", "intent": "reschedule", "entities": [{"start": 35, "end": 51, "label": "appointment_type"}, {"start": 57, "end": 70, "label": "practitioner_name"}]} +{"text": "Help me book a campus tour with Evans.", "intent": "schedule", "entities": [{"start": 15, "end": 26, "label": "appointment_type"}, {"start": 32, "end": 37, "label": "practitioner_name"}]} +{"text": "I won't get there, please cancel my meeting.", "intent": "cancel", "entities": []} +{"text": "List all openings for a makeup exam with Collins.", "intent": "query_avail", "entities": [{"start": 24, "end": 35, "label": "appointment_type"}, {"start": 41, "end": 48, "label": "practitioner_name"}]} +{"text": "I want to cancel my massage therapy, appointment ID #017187.", "intent": "cancel", "entities": [{"start": 20, "end": 35, "label": "appointment_type"}, {"start": 52, "end": 59, "label": "appointment_id"}]} +{"text": "a pleasure as always to speak with you, bye", "intent": "bye", "entities": []} +{"text": "hi how are you", "intent": "greeting", "entities": []} +{"text": "I write to book Conti for a job interview .", "intent": "schedule", "entities": [{"start": 16, "end": 21, "label": "practitioner_name"}, {"start": 28, "end": 41, "label": "appointment_type"}]} +{"text": "I want to book you with Professor Mariani .", "intent": "schedule", "entities": [{"start": 24, "end": 41, "label": "practitioner_name"}]} +{"text": "I need to verify an existing booking.", "intent": "cancel", "entities": []} +{"text": "I'm afraid I refuse to move my meeting, ref #600778 .", "intent": "reschedule", "entities": [{"start": 44, "end": 51, "label": "appointment_id"}]} +{"text": "no good", "intent": "negative_reply", "entities": []} +{"text": "Display Green 's appointment times for a eye exam .", "intent": "query_avail", "entities": [{"start": 8, "end": 13, "label": "practitioner_name"}, {"start": 41, "end": 49, "label": "appointment_type"}]} +{"text": "I need to schedule my thesis defense file Morgan .", "intent": "schedule", "entities": [{"start": 42, "end": 48, "label": "practitioner_name"}]} +{"text": "I'd like to reschedule.", "intent": "reschedule", "entities": []} +{"text": "Cancel appointment #568999.", "intent": "cancel", "entities": [{"start": 19, "end": 26, "label": "appointment_id"}]} +{"text": "not true", "intent": "negative_reply", "entities": []} +{"text": "Availability of Nelson defines a letter of recommendation request .", "intent": "query_avail", "entities": [{"start": 16, "end": 22, "label": "practitioner_name"}, {"start": 33, "end": 65, "label": "appointment_type"}]} +{"text": "security check.", "intent": "query_avail", "entities": []} +{"text": "you need to cancel my appointment.", "intent": "cancel", "entities": []} +{"text": "Schedule _ dissertation proposal .", "intent": "schedule", "entities": [{"start": 11, "end": 32, "label": "appointment_type"}]} +{"text": "I have to cancel my dean's meeting appointment.", "intent": "cancel", "entities": [{"start": 20, "end": 34, "label": "appointment_type"}]} +{"text": "Change the time for meeting #261071.", "intent": "reschedule", "entities": [{"start": 28, "end": 35, "label": "appointment_id"}]} +{"text": "Find available several times.", "intent": "query_avail", "entities": []} +{"text": "Check for internship check-in openings.", "intent": "query_avail", "entities": [{"start": 10, "end": 29, "label": "appointment_type"}]} +{"text": "Availability =", "intent": "query_avail", "entities": []} +{"text": "not that", "intent": "negative_reply", "entities": []} +{"text": "List the available formats", "intent": "query_avail", "entities": []} +{"text": "signing off", "intent": "bye", "entities": []} +{"text": "that is a completely false statement", "intent": "negative_reply", "entities": []} +{"text": "Check function for Prof. Martini .", "intent": "query_avail", "entities": [{"start": 19, "end": 32, "label": "practitioner_name"}]} +{"text": "List all current appointment times.", "intent": "query_avail", "entities": []} +{"text": "Change my advising session with Price.", "intent": "reschedule", "entities": [{"start": 32, "end": 37, "label": "practitioner_name"}]} +{"text": "Check Caruso's schedule for Friday.", "intent": "query_avail", "entities": [{"start": 6, "end": 12, "label": "practitioner_name"}]} +{"text": "will you tell me how the ai is doing", "intent": "greeting", "entities": []} +{"text": "Please create a colloquio di orientamento .", "intent": "schedule", "entities": [{"start": 16, "end": 41, "label": "appointment_type"}]} +{"text": "I need to reschedule my email #230130 .", "intent": "reschedule", "entities": [{"start": 30, "end": 37, "label": "appointment_id"}]} +{"text": "naw", "intent": "negative_reply", "entities": []} +{"text": "I want to announce my appointment with Rizzo .", "intent": "cancel", "entities": [{"start": 39, "end": 44, "label": "practitioner_name"}]} +{"text": "Available times for instance equipment training .", "intent": "query_avail", "entities": [{"start": 29, "end": 47, "label": "appointment_type"}]} +{"text": "that's incorrect", "intent": "negative_reply", "entities": []} +{"text": "Regarding appointment #040937 , we want to cancel.", "intent": "cancel", "entities": [{"start": 22, "end": 29, "label": "appointment_id"}]} +{"text": "I no longer require the meeting name Dr. Peterson .", "intent": "cancel", "entities": [{"start": 37, "end": 49, "label": "practitioner_name"}]} +{"text": "find me articles on appropriate wedding attire", "intent": "oos", "entities": []} +{"text": "define Prof. Scott ricevimento studenti .", "intent": "schedule", "entities": [{"start": 7, "end": 18, "label": "practitioner_name"}, {"start": 19, "end": 39, "label": "appointment_type"}]} +{"text": "talk later", "intent": "bye", "entities": []} +{"text": "that is not true", "intent": "negative_reply", "entities": []} +{"text": "I must cancel booking #623681.", "intent": "cancel", "entities": [{"start": 22, "end": 29, "label": "appointment_id"}]} +{"text": "how are things going for you", "intent": "greeting", "entities": []} +{"text": "how much time do i have left on my 0% apr", "intent": "oos", "entities": []} +{"text": "initiate my advising session with Mrs. Evans .", "intent": "reschedule", "entities": [{"start": 34, "end": 44, "label": "practitioner_name"}]} +{"text": "i'd say no", "intent": "negative_reply", "entities": []} +{"text": "Free mail with Professor Bruno this afternoon.", "intent": "query_avail", "entities": [{"start": 15, "end": 30, "label": "practitioner_name"}]} +{"text": "Find an opening with a final project review with Mr. Rodriguez .", "intent": "query_avail", "entities": [{"start": 23, "end": 43, "label": "appointment_type"}, {"start": 49, "end": 62, "label": "practitioner_name"}]} +{"text": "consider writing to inform you of the cancellation of my check-up with Professor Mariani , ID #634746 .", "intent": "cancel", "entities": [{"start": 57, "end": 65, "label": "appointment_type"}, {"start": 71, "end": 88, "label": "practitioner_name"}, {"start": 94, "end": 101, "label": "appointment_id"}]} +{"text": "Please remove booking #158644 from application schedule.", "intent": "cancel", "entities": [{"start": 22, "end": 29, "label": "appointment_id"}]} +{"text": "he won't be needing my appointment anymore.", "intent": "cancel", "entities": []} +{"text": "Book an appointment for ?", "intent": "schedule", "entities": []} +{"text": "List all openings for a registration appointment.", "intent": "query_avail", "entities": [{"start": 24, "end": 48, "label": "appointment_type"}]} +{"text": "I require matching qualifying exam with Dott. Marco Conti .", "intent": "schedule", "entities": [{"start": 19, "end": 34, "label": "appointment_type"}, {"start": 40, "end": 57, "label": "practitioner_name"}]} +{"text": "I have appointment #575048 with Pellegrini which needs rescheduling.", "intent": "reschedule", "entities": [{"start": 19, "end": 26, "label": "appointment_id"}, {"start": 32, "end": 42, "label": "practitioner_name"}]} +{"text": "Please confirm my appointment with ID #877240 .", "intent": "cancel", "entities": [{"start": 38, "end": 45, "label": "appointment_id"}]} +{"text": "Can I get on Rinaldi 's ?", "intent": "schedule", "entities": [{"start": 13, "end": 20, "label": "practitioner_name"}]} +{"text": "farewell", "intent": "bye", "entities": []} +{"text": "This serves as temporary notification to cancel my appointment #684466 .", "intent": "cancel", "entities": [{"start": 63, "end": 70, "label": "appointment_id"}]} +{"text": "Display calendar _ eye exam s.", "intent": "query_avail", "entities": [{"start": 19, "end": 27, "label": "appointment_type"}]} +{"text": "Availability of Pagano for a study abroad advising.", "intent": "query_avail", "entities": [{"start": 16, "end": 22, "label": "practitioner_name"}, {"start": 29, "end": 50, "label": "appointment_type"}]} +{"text": "Nelson _ calendar.", "intent": "query_avail", "entities": [{"start": 0, "end": 6, "label": "practitioner_name"}]} +{"text": "Let's reschedule appointment #239161 ", "intent": "reschedule", "entities": [{"start": 29, "end": 36, "label": "appointment_id"}]} +{"text": " help me move my research update with Dr. Martinez .", "intent": "reschedule", "entities": [{"start": 17, "end": 32, "label": "appointment_type"}, {"start": 38, "end": 50, "label": "practitioner_name"}]} +{"text": "I need to book out home repair estimate .", "intent": "schedule", "entities": [{"start": 19, "end": 39, "label": "appointment_type"}]} +{"text": "Find an open slot for .", "intent": "schedule", "entities": []} +{"text": "hi, ai", "intent": "greeting", "entities": []} +{"text": "I need to switch to Morgan for a project update .", "intent": "schedule", "entities": [{"start": 20, "end": 26, "label": "practitioner_name"}, {"start": 33, "end": 47, "label": "appointment_type"}]} +{"text": "I must change my address with Dr. Caterina Gentile .", "intent": "reschedule", "entities": [{"start": 30, "end": 50, "label": "practitioner_name"}]} +{"text": "Can I say Greco ?", "intent": "schedule", "entities": [{"start": 10, "end": 15, "label": "practitioner_name"}]} +{"text": "I need not cancel something.", "intent": "cancel", "entities": []} +{"text": "Find an opening for a thesis proposal meeting.", "intent": "query_avail", "entities": [{"start": 22, "end": 45, "label": "appointment_type"}]} +{"text": "it serves as a notification to cancel my appointment #795063 .", "intent": "cancel", "entities": [{"start": 53, "end": 60, "label": "appointment_id"}]} +{"text": "List support for a letter of recommendation request with Mr. Peterson .", "intent": "query_avail", "entities": [{"start": 19, "end": 51, "label": "appointment_type"}, {"start": 57, "end": 69, "label": "practitioner_name"}]} +{"text": "I need to talk to Professor Vitali for a 1-on-1.", "intent": "schedule", "entities": [{"start": 18, "end": 34, "label": "practitioner_name"}, {"start": 41, "end": 47, "label": "appointment_type"}]} +{"text": "I need to replace my thesis discussion with Prof. Watson , ID is #505823 .", "intent": "reschedule", "entities": [{"start": 21, "end": 38, "label": "appointment_type"}, {"start": 44, "end": 56, "label": "practitioner_name"}, {"start": 65, "end": 72, "label": "appointment_id"}]} +{"text": "Can I get on Santini's calendar?", "intent": "schedule", "entities": [{"start": 13, "end": 20, "label": "practitioner_name"}]} +{"text": "I won't be needing my appointment anymore.", "intent": "cancel", "entities": []} +{"text": "I will not be subject to my appointment with Professor Fontana .", "intent": "cancel", "entities": [{"start": 45, "end": 62, "label": "practitioner_name"}]} +{"text": "there is a cancellation for my appointment with Professor Emily Clark .", "intent": "cancel", "entities": [{"start": 48, "end": 69, "label": "practitioner_name"}]} +{"text": "see you around", "intent": "bye", "entities": []} +{"text": "I need to book an evening session.", "intent": "schedule", "entities": []} +{"text": "is autism a genetic disease", "intent": "oos", "entities": []} +{"text": "confirm", "intent": "positive_reply", "entities": []} +{"text": "Cancel the appointment for ?", "intent": "cancel", "entities": []} +{"text": "Change by appointment.", "intent": "reschedule", "entities": []} +{"text": "sets up a meeting.", "intent": "schedule", "entities": []} +{"text": "Dr. Brooks's calendar for next month.", "intent": "query_avail", "entities": [{"start": 0, "end": 10, "label": "practitioner_name"}]} +{"text": "Leone 's best times today.", "intent": "query_avail", "entities": [{"start": 0, "end": 5, "label": "practitioner_name"}]} +{"text": "Time limit for Brown .", "intent": "query_avail", "entities": [{"start": 15, "end": 20, "label": "practitioner_name"}]} +{"text": "Prof. Watson open slots for a internship interview .", "intent": "query_avail", "entities": [{"start": 0, "end": 12, "label": "practitioner_name"}, {"start": 31, "end": 51, "label": "appointment_type"}]} +{"text": "I'd like to see Mr. Peterson at a different .", "intent": "reschedule", "entities": [{"start": 16, "end": 28, "label": "practitioner_name"}]} +{"text": "that's not what i want!", "intent": "negative_reply", "entities": []} +{"text": "Cancel #419544 ", "intent": "cancel", "entities": [{"start": 7, "end": 14, "label": "appointment_id"}]} +{"text": "Dr. Giordano 's open slots for class car service .", "intent": "query_avail", "entities": [{"start": 0, "end": 12, "label": "practitioner_name"}, {"start": 37, "end": 48, "label": "appointment_type"}]} +{"text": "well hello", "intent": "greeting", "entities": []} +{"text": "academic integrity hearing : check.", "intent": "query_avail", "entities": [{"start": 0, "end": 26, "label": "appointment_type"}]} +{"text": "Please move my curriculum planning with Dr. Ferri, booking ref #420645.", "intent": "reschedule", "entities": [{"start": 15, "end": 34, "label": "appointment_type"}, {"start": 40, "end": 49, "label": "practitioner_name"}, {"start": 63, "end": 70, "label": "appointment_id"}]} +{"text": "I want to book myself with Rinaldi .", "intent": "schedule", "entities": [{"start": 27, "end": 34, "label": "practitioner_name"}]} +{"text": "that will be all have a nice day!", "intent": "bye", "entities": []} +{"text": "i say no to that question", "intent": "negative_reply", "entities": []} +{"text": "that's definitely false", "intent": "negative_reply", "entities": []} +{"text": "Find an opening.", "intent": "query_avail", "entities": []} +{"text": "find me a book on motivational speaking from amazon", "intent": "oos", "entities": []} +{"text": "Availability of Dr. King for a meeting.", "intent": "query_avail", "entities": [{"start": 16, "end": 24, "label": "practitioner_name"}]} +{"text": "Free times follow a group project session with Dr. Santoro next week.", "intent": "query_avail", "entities": [{"start": 20, "end": 41, "label": "appointment_type"}, {"start": 47, "end": 58, "label": "practitioner_name"}]} +{"text": "good seeing you", "intent": "bye", "entities": []} +{"text": "Basile 's next available vet appointment ", "intent": "query_avail", "entities": [{"start": 0, "end": 6, "label": "practitioner_name"}, {"start": 25, "end": 40, "label": "appointment_type"}]} +{"text": "be rid of appointment #795492 .", "intent": "cancel", "entities": [{"start": 22, "end": 29, "label": "appointment_id"}]} +{"text": "Change my life", "intent": "reschedule", "entities": []} +{"text": "I'd like to request a new time for my meeting.", "intent": "reschedule", "entities": []} +{"text": "hello, ai", "intent": "greeting", "entities": []} +{"text": "how much is this years model of my car cost", "intent": "oos", "entities": []} +{"text": "Professor Barbieri availability |", "intent": "query_avail", "entities": [{"start": 0, "end": 18, "label": "practitioner_name"}]} +{"text": "that is the wrong answer", "intent": "negative_reply", "entities": []} +{"text": "i'll pass", "intent": "negative_reply", "entities": []} +{"text": "Please cancel the therapy session on my website", "intent": "cancel", "entities": [{"start": 18, "end": 33, "label": "appointment_type"}]} +{"text": "\\ Prof. Müller .", "intent": "schedule", "entities": [{"start": 2, "end": 14, "label": "practitioner_name"}]} +{"text": "Set up office directory with Dr. Davide Monti .", "intent": "schedule", "entities": [{"start": 29, "end": 45, "label": "practitioner_name"}]} +{"text": "I must make the meeting with Professor Sala , so I'm cancelling.", "intent": "cancel", "entities": [{"start": 29, "end": 43, "label": "practitioner_name"}]} +{"text": "I'd like to get a meeting time.", "intent": "schedule", "entities": []} +{"text": "what you just said is false", "intent": "negative_reply", "entities": []} +{"text": "Need to book out grade review soon.", "intent": "schedule", "entities": [{"start": 17, "end": 29, "label": "appointment_type"}]} +{"text": "Find free time slots.", "intent": "query_avail", "entities": []} +{"text": "Cancel my query with Santini .", "intent": "cancel", "entities": [{"start": 21, "end": 28, "label": "practitioner_name"}]} +{"text": "calculate the available times.", "intent": "query_avail", "entities": []} +{"text": "I wanted to cancel.", "intent": "cancel", "entities": []} +{"text": "Times available to |", "intent": "query_avail", "entities": []} +{"text": "I need an appointment with Professor Mariani for a career counseling.", "intent": "schedule", "entities": [{"start": 27, "end": 44, "label": "practitioner_name"}, {"start": 51, "end": 68, "label": "appointment_type"}]} +{"text": "Reschedule the tenure meeting with Dr. Giordano, please.", "intent": "reschedule", "entities": [{"start": 15, "end": 29, "label": "appointment_type"}, {"start": 35, "end": 47, "label": "practitioner_name"}]} +{"text": "I have to pull out of my colloquio di orientamento ", "intent": "cancel", "entities": [{"start": 25, "end": 50, "label": "appointment_type"}]} +{"text": "Openings for .", "intent": "query_avail", "entities": []} +{"text": "My eye exam , booking #081504 } with Prof. Bennett is cancelled.", "intent": "cancel", "entities": [{"start": 3, "end": 11, "label": "appointment_type"}, {"start": 22, "end": 29, "label": "appointment_id"}, {"start": 37, "end": 50, "label": "practitioner_name"}]} +{"text": "enjoy your day, goodbye", "intent": "bye", "entities": []} +{"text": "each lab session with Morgan , booking #081504 , needs to be cancelled.", "intent": "cancel", "entities": [{"start": 22, "end": 28, "label": "practitioner_name"}, {"start": 39, "end": 46, "label": "appointment_id"}]} +{"text": "Please replace the peer advising with Professor Rossi from my schedule.", "intent": "cancel", "entities": [{"start": 19, "end": 32, "label": "appointment_type"}, {"start": 38, "end": 53, "label": "practitioner_name"}]} +{"text": "I need to find my slot for my meeting with Prof. Watson .", "intent": "reschedule", "entities": [{"start": 43, "end": 55, "label": "practitioner_name"}]} +{"text": "Postpone my request #113852 .", "intent": "reschedule", "entities": [{"start": 20, "end": 27, "label": "appointment_id"}]} +{"text": "Book a lab session with Professor Mariani.", "intent": "schedule", "entities": [{"start": 24, "end": 41, "label": "practitioner_name"}]} +{"text": "I are no longer available for my curriculum committee meeting with Nelson .", "intent": "cancel", "entities": [{"start": 33, "end": 61, "label": "appointment_type"}, {"start": 67, "end": 73, "label": "practitioner_name"}]} +{"text": "Find Green 's value for a academic probation meeting .", "intent": "query_avail", "entities": [{"start": 5, "end": 10, "label": "practitioner_name"}, {"start": 26, "end": 52, "label": "appointment_type"}]} +{"text": "Check schedule for pet checkup availability.", "intent": "query_avail", "entities": [{"start": 19, "end": 30, "label": "appointment_type"}]} +{"text": "< Mr. Peterson free for a research update ?", "intent": "schedule", "entities": [{"start": 2, "end": 14, "label": "practitioner_name"}, {"start": 26, "end": 41, "label": "appointment_type"}]} +{"text": "what are black holes", "intent": "oos", "entities": []} +{"text": "start with Fiore for a thesis defense rehearsal .", "intent": "query_avail", "entities": [{"start": 11, "end": 16, "label": "practitioner_name"}, {"start": 23, "end": 47, "label": "appointment_type"}]} +{"text": "Create a public meeting.", "intent": "schedule", "entities": []} +{"text": "Need to change an existing policy", "intent": "reschedule", "entities": []} +{"text": "I must begin booking #988746 .", "intent": "cancel", "entities": [{"start": 21, "end": 28, "label": "appointment_id"}]} +{"text": "Cancel #077573 }", "intent": "cancel", "entities": [{"start": 7, "end": 14, "label": "appointment_id"}]} +{"text": "how is my ai doing", "intent": "greeting", "entities": []} +{"text": "what's the dominant minor for the key of bflat", "intent": "oos", "entities": []} +{"text": "Show five times.", "intent": "query_avail", "entities": []} +{"text": "I need to find another slot for my meeting with Dott.ssa Anna Moretti.", "intent": "reschedule", "entities": [{"start": 48, "end": 69, "label": "practitioner_name"}]} +{"text": "I require a meeting with Green ", "intent": "schedule", "entities": [{"start": 25, "end": 30, "label": "practitioner_name"}]} +{"text": "List health screening ", "intent": "query_avail", "entities": [{"start": 5, "end": 21, "label": "appointment_type"}]} +{"text": "good bye my friend", "intent": "bye", "entities": []} +{"text": "I'd like to get past the calendar.", "intent": "schedule", "entities": []} +{"text": "will require a meeting with Nowak .", "intent": "schedule", "entities": [{"start": 28, "end": 33, "label": "practitioner_name"}]} +{"text": "send me book a club meeting .", "intent": "schedule", "entities": [{"start": 15, "end": 27, "label": "appointment_type"}]} +{"text": "I'd like to .", "intent": "cancel", "entities": []} +{"text": "What times are available for Young.", "intent": "query_avail", "entities": [{"start": 29, "end": 34, "label": "practitioner_name"}]} +{"text": "minimum schedule openings.", "intent": "query_avail", "entities": []} +{"text": "I'm looking to schedule a lab cleanup with Torres.", "intent": "schedule", "entities": [{"start": 26, "end": 37, "label": "appointment_type"}, {"start": 43, "end": 49, "label": "practitioner_name"}]} +{"text": "liturgical calendar.", "intent": "query_avail", "entities": []} +{"text": "nope, that's false", "intent": "negative_reply", "entities": []} +{"text": "Reschedule my personal training session , appointment ID #798223 ", "intent": "reschedule", "entities": [{"start": 14, "end": 39, "label": "appointment_type"}, {"start": 57, "end": 64, "label": "appointment_id"}]} +{"text": "I'd like ta see Ms. Davis at a different time.", "intent": "reschedule", "entities": [{"start": 16, "end": 25, "label": "practitioner_name"}]} +{"text": "Professor Caruso = free times.", "intent": "query_avail", "entities": [{"start": 10, "end": 16, "label": "practitioner_name"}]} +{"text": "Let's move through major declaration meeting .", "intent": "reschedule", "entities": [{"start": 19, "end": 44, "label": "appointment_type"}]} +{"text": "Cancel all my appointments with Prof. Bennett.", "intent": "cancel", "entities": [{"start": 32, "end": 45, "label": "practitioner_name"}]} +{"text": "many thank", "intent": "positive_reply", "entities": []} +{"text": "Show the booking option for Dott.ssa Valentina Bellini .", "intent": "query_avail", "entities": [{"start": 28, "end": 54, "label": "practitioner_name"}]} +{"text": "Project meeting results with Green .", "intent": "query_avail", "entities": [{"start": 29, "end": 34, "label": "practitioner_name"}]} +{"text": "Greco _ schedule for a strategy meeting .", "intent": "query_avail", "entities": [{"start": 0, "end": 5, "label": "practitioner_name"}, {"start": 23, "end": 39, "label": "appointment_type"}]} +{"text": "is there a fee for cancelling a flight i've booked", "intent": "oos", "entities": []} +{"text": "we must reschedule my appointment, reference #795063 .", "intent": "reschedule", "entities": [{"start": 45, "end": 52, "label": "appointment_id"}]} +{"text": "I won't seem able to attend, so please cancel.", "intent": "cancel", "entities": []} +{"text": "see ya!", "intent": "bye", "entities": []} +{"text": "great talk, take it easy", "intent": "bye", "entities": []} +{"text": "I want to cancel the appointment with reference #781883 .", "intent": "cancel", "entities": [{"start": 48, "end": 55, "label": "appointment_id"}]} +{"text": "What are Thompson 's working hours.", "intent": "query_avail", "entities": [{"start": 9, "end": 17, "label": "practitioner_name"}]} +{"text": "which element on the periodic table is k", "intent": "oos", "entities": []} +{"text": "i think it is false", "intent": "negative_reply", "entities": []} +{"text": "it was great to see you again, see ya later!", "intent": "bye", "entities": []} +{"text": "I can't make my orientation session appointment Tuesday.", "intent": "reschedule", "entities": [{"start": 16, "end": 35, "label": "appointment_type"}]} +{"text": "Regarding appointment #623599 , I decided to change it.", "intent": "reschedule", "entities": [{"start": 22, "end": 29, "label": "appointment_id"}]} +{"text": "recall my meeting with Dott. Paolo Farina .", "intent": "reschedule", "entities": [{"start": 23, "end": 41, "label": "practitioner_name"}]} +{"text": "Can I make an appointment?", "intent": "schedule", "entities": []} +{"text": "sign me up for the slack employment forum", "intent": "oos", "entities": []} +{"text": "I want to change my password with Baker .", "intent": "reschedule", "entities": [{"start": 34, "end": 39, "label": "practitioner_name"}]} +{"text": "Please assist with cancelling my appointment with Professor De Luca .", "intent": "cancel", "entities": [{"start": 50, "end": 67, "label": "practitioner_name"}]} +{"text": "my answer to your question is yes", "intent": "positive_reply", "entities": []} +{"text": "My plans have changed and I have to cancel.", "intent": "cancel", "entities": []} +{"text": "Available times for a transfer credit evaluation.", "intent": "query_avail", "entities": [{"start": 22, "end": 48, "label": "appointment_type"}]} +{"text": "Check openings for a pet checkup with Dr. Wood.", "intent": "query_avail", "entities": [{"start": 21, "end": 32, "label": "appointment_type"}, {"start": 38, "end": 46, "label": "practitioner_name"}]} +{"text": "I need to cancel my appointments", "intent": "cancel", "entities": []} +{"text": "defines a tenure meeting .", "intent": "schedule", "entities": [{"start": 10, "end": 24, "label": "appointment_type"}]} +{"text": "are you doing well", "intent": "greeting", "entities": []} +{"text": "I can't make my project kickoff (ID #079262) with James.", "intent": "reschedule", "entities": [{"start": 16, "end": 31, "label": "appointment_type"}, {"start": 36, "end": 43, "label": "appointment_id"}, {"start": 50, "end": 55, "label": "practitioner_name"}]} +{"text": "Book : meeting about my final project.", "intent": "schedule", "entities": []} +{"text": "define a residence life meeting with Harris , please.", "intent": "schedule", "entities": [{"start": 9, "end": 31, "label": "appointment_type"}, {"start": 37, "end": 43, "label": "practitioner_name"}]} +{"text": "shall I change my language exchange with Prof. Garcia ?", "intent": "reschedule", "entities": [{"start": 18, "end": 35, "label": "appointment_type"}, {"start": 41, "end": 53, "label": "practitioner_name"}]} +{"text": "Please book a meeting regarding Dott. Matteo Palmieri .", "intent": "schedule", "entities": [{"start": 32, "end": 53, "label": "practitioner_name"}]} +{"text": "I need to cancel my meeting with Dr. Lefevre.", "intent": "cancel", "entities": [{"start": 33, "end": 44, "label": "practitioner_name"}]} +{"text": "not that one", "intent": "negative_reply", "entities": []} +{"text": "farewell!", "intent": "bye", "entities": []} +{"text": "I must change my meeting address Rossetti .", "intent": "reschedule", "entities": [{"start": 33, "end": 41, "label": "practitioner_name"}]} +{"text": "Openings on the calendar.", "intent": "query_avail", "entities": []} +{"text": "Set up job interview.", "intent": "schedule", "entities": [{"start": 7, "end": 20, "label": "appointment_type"}]} +{"text": "nope that's not it", "intent": "negative_reply", "entities": []} +{"text": "temporarily cancelling my tutorial session.", "intent": "cancel", "entities": []} +{"text": "see you later", "intent": "bye", "entities": []} +{"text": "I need not push my meeting back.", "intent": "reschedule", "entities": []} +{"text": "I need to do something car service .", "intent": "schedule", "entities": [{"start": 23, "end": 34, "label": "appointment_type"}]} +{"text": "i do not think that is proper", "intent": "negative_reply", "entities": []} +{"text": "that is wrong", "intent": "negative_reply", "entities": []} +{"text": "I decided to cancel my appointment #150062 with Richardson .", "intent": "cancel", "entities": [{"start": 35, "end": 42, "label": "appointment_id"}, {"start": 48, "end": 58, "label": "practitioner_name"}]} +{"text": "I'd like to arrange my project meeting.", "intent": "cancel", "entities": []} +{"text": "I need to find a different time for another meeting.", "intent": "reschedule", "entities": []} +{"text": "I can't make the meeting with Prof. Scott, so I'm cancelling.", "intent": "cancel", "entities": [{"start": 30, "end": 41, "label": "practitioner_name"}]} +{"text": "Display calendar.", "intent": "query_avail", "entities": []} +{"text": "Help me book check-up with Dr. Laura Ferrari .", "intent": "schedule", "entities": [{"start": 14, "end": 22, "label": "appointment_type"}, {"start": 28, "end": 45, "label": "practitioner_name"}]} +{"text": "you like to reschedule my tenure meeting .", "intent": "reschedule", "entities": [{"start": 26, "end": 40, "label": "appointment_type"}]} +{"text": "i am glad that you did that", "intent": "positive_reply", "entities": []} +{"text": "Can I change my student feedback session with Ricci?", "intent": "reschedule", "entities": [{"start": 16, "end": 40, "label": "appointment_type"}, {"start": 46, "end": 51, "label": "practitioner_name"}]} +{"text": "thank you for chatting with me, bye", "intent": "bye", "entities": []} +{"text": "Availability of Coppola for update car service on July 23rd.", "intent": "query_avail", "entities": [{"start": 16, "end": 23, "label": "practitioner_name"}, {"start": 35, "end": 46, "label": "appointment_type"}]} +{"text": "Let's move whenever academic probation meeting .", "intent": "reschedule", "entities": [{"start": 20, "end": 46, "label": "appointment_type"}]} +{"text": "I need to meet.", "intent": "schedule", "entities": []} +{"text": "Calendar for next month.", "intent": "query_avail", "entities": []} +{"text": "Cancel booking #156794 , replace registration appointment with Dr. Giordano .", "intent": "cancel", "entities": [{"start": 15, "end": 22, "label": "appointment_id"}, {"start": 33, "end": 57, "label": "appointment_type"}, {"start": 63, "end": 75, "label": "practitioner_name"}]} +{"text": "check the booking calendar.", "intent": "query_avail", "entities": []} +{"text": "Professor Fontana ;", "intent": "schedule", "entities": [{"start": 0, "end": 17, "label": "practitioner_name"}]} +{"text": "Reschedule my meeting with Dott.ssa Anna Moretti for my thesis.", "intent": "reschedule", "entities": [{"start": 27, "end": 48, "label": "practitioner_name"}]} +{"text": "Change my peer tutoring time.", "intent": "reschedule", "entities": [{"start": 10, "end": 23, "label": "appointment_type"}]} +{"text": "updated for open times.", "intent": "query_avail", "entities": []} +{"text": "I won't am able to make it.", "intent": "reschedule", "entities": []} +{"text": "Let's hold a chat.", "intent": "schedule", "entities": []} +{"text": "Is it possible to run a session?", "intent": "schedule", "entities": []} +{"text": "Change my appointment with Dott.ssa Valentina Bellini on Wednesday.", "intent": "reschedule", "entities": [{"start": 27, "end": 53, "label": "practitioner_name"}]} +{"text": "no, that information is wrong", "intent": "negative_reply", "entities": []} +{"text": "Time with Dr. Bailey }", "intent": "schedule", "entities": [{"start": 10, "end": 20, "label": "practitioner_name"}]} +{"text": "Free times next week.", "intent": "query_avail", "entities": []} +{"text": "• move my meeting, ID #000317 .", "intent": "reschedule", "entities": [{"start": 22, "end": 29, "label": "appointment_id"}]} +{"text": "List times to meet : Dr. Giovanni Galli .", "intent": "query_avail", "entities": [{"start": 21, "end": 39, "label": "practitioner_name"}]} +{"text": "Help me book a progress review ;", "intent": "schedule", "entities": [{"start": 15, "end": 30, "label": "appointment_type"}]} +{"text": "Professor Dott. Francesco Testa 's free software", "intent": "query_avail", "entities": [{"start": 10, "end": 31, "label": "practitioner_name"}]} +{"text": "Availability inquiry for Roberts }", "intent": "query_avail", "entities": [{"start": 25, "end": 32, "label": "practitioner_name"}]} +{"text": "i appreciate that answer!", "intent": "positive_reply", "entities": []} +{"text": "I'd like the cancel.", "intent": "cancel", "entities": []} +{"text": "Display Dr. Santoro's free times.", "intent": "query_avail", "entities": [{"start": 8, "end": 19, "label": "practitioner_name"}]} +{"text": "Santini meeting :", "intent": "query_avail", "entities": [{"start": 0, "end": 7, "label": "practitioner_name"}]} +{"text": "Can I change my tutorial session time?", "intent": "reschedule", "entities": []} +{"text": "I have to pull out of my peer advising.", "intent": "cancel", "entities": [{"start": 25, "end": 38, "label": "appointment_type"}]} +{"text": "I need some time in Professor Bernardi .", "intent": "schedule", "entities": [{"start": 20, "end": 38, "label": "practitioner_name"}]} +{"text": "Can we reschedule? I'm committed to appointment #934189 .", "intent": "reschedule", "entities": [{"start": 48, "end": 55, "label": "appointment_id"}]} +{"text": "I must have a consultation with Bell this week.", "intent": "schedule", "entities": [{"start": 14, "end": 26, "label": "appointment_type"}, {"start": 32, "end": 36, "label": "practitioner_name"}]} +{"text": "I need to cancel my haircut with Prof. Watson (ID: #821730).", "intent": "cancel", "entities": [{"start": 20, "end": 27, "label": "appointment_type"}, {"start": 33, "end": 45, "label": "practitioner_name"}, {"start": 51, "end": 58, "label": "appointment_id"}]} +{"text": "please have an appointment, #843183 , that I must reschedule.", "intent": "reschedule", "entities": [{"start": 28, "end": 35, "label": "appointment_id"}]} +{"text": "The research ethics review with Dr. Martinez are no longer necessary.", "intent": "cancel", "entities": [{"start": 4, "end": 26, "label": "appointment_type"}, {"start": 32, "end": 44, "label": "practitioner_name"}]} +{"text": "its a for sure true", "intent": "positive_reply", "entities": []} +{"text": "I can't make it to appointment #222384.", "intent": "reschedule", "entities": [{"start": 31, "end": 38, "label": "appointment_id"}]} +{"text": "Reschedule my meeting with Professor Hill.", "intent": "reschedule", "entities": [{"start": 37, "end": 41, "label": "practitioner_name"}]} +{"text": "enter my office hours appointment with Serra .", "intent": "cancel", "entities": [{"start": 39, "end": 44, "label": "practitioner_name"}]} +{"text": "nice talk, talk to you later", "intent": "bye", "entities": []} +{"text": "Availability of Professor D'Amico becomes a seminar presentation on July 23rd.", "intent": "query_avail", "entities": [{"start": 16, "end": 33, "label": "practitioner_name"}, {"start": 44, "end": 64, "label": "appointment_type"}]} +{"text": "I need another talk to my advisor.", "intent": "schedule", "entities": []} +{"text": "that’s actually wrong", "intent": "negative_reply", "entities": []} +{"text": "Dott.ssa Elena Longo 's unavailable this week.", "intent": "query_avail", "entities": [{"start": 0, "end": 20, "label": "practitioner_name"}]} +{"text": "do ducks sleep", "intent": "oos", "entities": []} +{"text": "hows are ya", "intent": "greeting", "entities": []} +{"text": "Book me in for a placement test.", "intent": "schedule", "entities": [{"start": 17, "end": 31, "label": "appointment_type"}]} +{"text": "I can't make my scheduled appointment.", "intent": "reschedule", "entities": []} +{"text": "Availability check.", "intent": "query_avail", "entities": []} +{"text": "I need to book a advising session.", "intent": "schedule", "entities": []} +{"text": "Cancel my appointment with booking reference #222384.", "intent": "cancel", "entities": [{"start": 45, "end": 52, "label": "appointment_id"}]} +{"text": "i am happy you did that for me", "intent": "positive_reply", "entities": []} +{"text": "Galli 's calendar | vehicle inspection s.", "intent": "query_avail", "entities": [{"start": 0, "end": 5, "label": "practitioner_name"}, {"start": 20, "end": 38, "label": "appointment_type"}]} +{"text": "I have an appointment, #928021 , but I must reschedule.", "intent": "reschedule", "entities": [{"start": 23, "end": 30, "label": "appointment_id"}]} +{"text": "will need to meet with Dott. Simone Marchetti .", "intent": "schedule", "entities": [{"start": 23, "end": 45, "label": "practitioner_name"}]} +{"text": "Free .", "intent": "query_avail", "entities": []} +{"text": "I want to cancel my appointment.", "intent": "cancel", "entities": []} +{"text": "Show the booking calendar for internship check-in :", "intent": "query_avail", "entities": [{"start": 30, "end": 49, "label": "appointment_type"}]} +{"text": "try to book a sabbatical leave meeting soon.", "intent": "schedule", "entities": [{"start": 14, "end": 38, "label": "appointment_type"}]} +{"text": "Booking #141591 needs to be moved.", "intent": "reschedule", "entities": [{"start": 8, "end": 15, "label": "appointment_id"}]} +{"text": " book a equipment training .", "intent": "schedule", "entities": [{"start": 8, "end": 26, "label": "appointment_type"}]} +{"text": "arrange a meeting with Prof. Morris .", "intent": "schedule", "entities": [{"start": 23, "end": 35, "label": "practitioner_name"}]} +{"text": "i need to go now", "intent": "bye", "entities": []} +{"text": "I need to reschedule my appointment, the ID is #081504.", "intent": "reschedule", "entities": [{"start": 47, "end": 54, "label": "appointment_id"}]} +{"text": "Please remove id #419544 from the schedule.", "intent": "cancel", "entities": [{"start": 17, "end": 24, "label": "appointment_id"}]} +{"text": "Openings : a thesis discussion.", "intent": "query_avail", "entities": []} +{"text": "please explain the catch rule to me", "intent": "oos", "entities": []} +{"text": "Can we move my Ph.D. defense with Dr. Caterina Gentile? It's appointment #079262.", "intent": "reschedule", "entities": [{"start": 15, "end": 28, "label": "appointment_type"}, {"start": 34, "end": 54, "label": "practitioner_name"}, {"start": 73, "end": 80, "label": "appointment_id"}]} +{"text": "I would like to reschedule my honors thesis meeting with Richardson. The ID is #564270.", "intent": "reschedule", "entities": [{"start": 30, "end": 51, "label": "appointment_type"}, {"start": 57, "end": 67, "label": "practitioner_name"}, {"start": 79, "end": 86, "label": "appointment_id"}]} +{"text": "how can i keep my windshield from fogging up in winter", "intent": "oos", "entities": []} +{"text": "write a major declaration meeting with Dott.ssa Valentina Bellini .", "intent": "schedule", "entities": [{"start": 8, "end": 33, "label": "appointment_type"}, {"start": 39, "end": 65, "label": "practitioner_name"}]} +{"text": "visitors need to make an appointment.", "intent": "schedule", "entities": []} +{"text": "i must say goodbye", "intent": "bye", "entities": []} +{"text": "Reschedule my appointment, please.", "intent": "reschedule", "entities": []} +{"text": "Time parameter Martin .", "intent": "schedule", "entities": [{"start": 15, "end": 21, "label": "practitioner_name"}]} +{"text": "how can i use make up to cover a cut on my cheek", "intent": "oos", "entities": []} +{"text": "Reschedule my appointment, ?", "intent": "reschedule", "entities": []} +{"text": "Book a lab session with Bianchi ", "intent": "schedule", "entities": [{"start": 24, "end": 31, "label": "practitioner_name"}]} +{"text": "Find any open slot for a study group meeting .", "intent": "schedule", "entities": [{"start": 25, "end": 44, "label": "appointment_type"}]} +{"text": "Cancel my office hours appointment : Dr. Ferrara .", "intent": "cancel", "entities": [{"start": 37, "end": 48, "label": "practitioner_name"}]} +{"text": "i will say yes as my response", "intent": "positive_reply", "entities": []} +{"text": "thanks for trying", "intent": "positive_reply", "entities": []} +{"text": "bonjour", "intent": "greeting", "entities": []} +{"text": "I'd like to cancel the connection I have with Dott.ssa Valentina Bellini .", "intent": "cancel", "entities": [{"start": 46, "end": 72, "label": "practitioner_name"}]} +{"text": "Find arbitrary time slots for a residence life meeting .", "intent": "query_avail", "entities": [{"start": 32, "end": 54, "label": "appointment_type"}]} +{"text": "nice to see you", "intent": "bye", "entities": []} +{"text": "i'm thankful", "intent": "positive_reply", "entities": []} +{"text": "Show openings for a ultrasound this Friday.", "intent": "query_avail", "entities": [{"start": 20, "end": 30, "label": "appointment_type"}]} +{"text": "find a couple's therapist who can help me and my wife", "intent": "oos", "entities": []} +{"text": "Show available times.", "intent": "query_avail", "entities": []} +{"text": "I'd like to have a grant proposal meeting ;", "intent": "schedule", "entities": [{"start": 19, "end": 41, "label": "appointment_type"}]} +{"text": "Schedule for Rossetti :", "intent": "query_avail", "entities": [{"start": 13, "end": 21, "label": "practitioner_name"}]} +{"text": "I want to cancel the appointments with reference #419544 .", "intent": "cancel", "entities": [{"start": 49, "end": 56, "label": "appointment_id"}]} +{"text": "indicates an opening.", "intent": "query_avail", "entities": []} +{"text": "what's up", "intent": "greeting", "entities": []} +{"text": "Book me in.", "intent": "schedule", "entities": []} +{"text": "ok good chatting goodbye", "intent": "bye", "entities": []} +{"text": "I need to reschedule my appointment with Dr. Stefano Marchese .", "intent": "reschedule", "entities": [{"start": 41, "end": 61, "label": "practitioner_name"}]} +{"text": "I need to arrange a student advising with Marchetti .", "intent": "schedule", "entities": [{"start": 20, "end": 36, "label": "appointment_type"}, {"start": 42, "end": 51, "label": "practitioner_name"}]} +{"text": "Project file slots with Esposito .", "intent": "query_avail", "entities": [{"start": 24, "end": 32, "label": "practitioner_name"}]} +{"text": "Availability closed Villa on July 22nd.", "intent": "query_avail", "entities": [{"start": 20, "end": 25, "label": "practitioner_name"}]} +{"text": "i thank you", "intent": "positive_reply", "entities": []} +{"text": "I'd like to schedule a project kickoff.", "intent": "schedule", "entities": [{"start": 23, "end": 38, "label": "appointment_type"}]} +{"text": "Arrange a review session called Price .", "intent": "schedule", "entities": [{"start": 32, "end": 37, "label": "practitioner_name"}]} +{"text": "we need to cancel my appointment.", "intent": "cancel", "entities": []} +{"text": "I can cancel booking #660065 .", "intent": "cancel", "entities": [{"start": 21, "end": 28, "label": "appointment_id"}]} +{"text": "I can't make my project name (ID #901602 ).", "intent": "reschedule", "entities": [{"start": 33, "end": 40, "label": "appointment_id"}]} +{"text": "Booking #355543 needs to become moved.", "intent": "reschedule", "entities": [{"start": 8, "end": 15, "label": "appointment_id"}]} +{"text": "good bye", "intent": "bye", "entities": []} +{"text": "Change my booking.", "intent": "reschedule", "entities": []} +{"text": "class registration }", "intent": "query_avail", "entities": [{"start": 0, "end": 18, "label": "appointment_type"}]} +{"text": "Move my Ph.D. defense with Lombardi each Friday.", "intent": "reschedule", "entities": [{"start": 8, "end": 21, "label": "appointment_type"}, {"start": 27, "end": 35, "label": "practitioner_name"}]} +{"text": "i appreciate the assistance", "intent": "positive_reply", "entities": []} +{"text": "always nice to talk to you", "intent": "bye", "entities": []} +{"text": "Schedule a orientation session with Mr. Rogers ;", "intent": "schedule", "entities": [{"start": 11, "end": 30, "label": "appointment_type"}, {"start": 36, "end": 46, "label": "practitioner_name"}]} +{"text": "I have \\ cancel the tutoring session with Ms. Davis .", "intent": "cancel", "entities": [{"start": 20, "end": 36, "label": "appointment_type"}, {"start": 42, "end": 51, "label": "practitioner_name"}]} +{"text": "oh yes", "intent": "positive_reply", "entities": []} +{"text": "I have to arrange a guest lecture .", "intent": "schedule", "entities": [{"start": 20, "end": 33, "label": "appointment_type"}]} +{"text": "Ms. Mitchell = calendar for tutoring session s.", "intent": "query_avail", "entities": [{"start": 0, "end": 12, "label": "practitioner_name"}, {"start": 28, "end": 44, "label": "appointment_type"}]} +{"text": "Please notice the cancellation of booking #676483 , my sync-up .", "intent": "cancel", "entities": [{"start": 42, "end": 49, "label": "appointment_id"}, {"start": 55, "end": 62, "label": "appointment_type"}]} +{"text": "Free times each week.", "intent": "query_avail", "entities": []} +{"text": "I'd like to talk through Messina .", "intent": "schedule", "entities": [{"start": 25, "end": 32, "label": "practitioner_name"}]} +{"text": "Can I change my appointment time?", "intent": "reschedule", "entities": []} +{"text": "I have a scheduling conflict.", "intent": "reschedule", "entities": []} +{"text": "I won't remember needing my appointment anymore.", "intent": "cancel", "entities": []} +{"text": "i enjoyed talking to you", "intent": "bye", "entities": []} +{"text": "Professor Schmidt 's open file slots.", "intent": "query_avail", "entities": [{"start": 0, "end": 17, "label": "practitioner_name"}]} +{"text": "when will george rr martin publish the next game of thrones book", "intent": "oos", "entities": []} +{"text": "I need to book a student feedback session Dott.ssa Elena Longo .", "intent": "schedule", "entities": [{"start": 17, "end": 41, "label": "appointment_type"}, {"start": 43, "end": 63, "label": "practitioner_name"}]} +{"text": "Book me ?", "intent": "schedule", "entities": []} +{"text": "Please move my academic probation meeting with Hill , \\ ref #286344 .", "intent": "reschedule", "entities": [{"start": 15, "end": 41, "label": "appointment_type"}, {"start": 47, "end": 51, "label": "practitioner_name"}, {"start": 60, "end": 67, "label": "appointment_id"}]} +{"text": "Availability of Leone for a ;", "intent": "query_avail", "entities": [{"start": 16, "end": 21, "label": "practitioner_name"}]} +{"text": "Availability changes this week.", "intent": "query_avail", "entities": []} +{"text": "List all openings.", "intent": "query_avail", "entities": []} +{"text": "Find an opening for a grant proposal meeting with Dr. Carter.", "intent": "query_avail", "entities": [{"start": 22, "end": 44, "label": "appointment_type"}, {"start": 50, "end": 60, "label": "practitioner_name"}]} +{"text": "how are things treating you", "intent": "greeting", "entities": []} +{"text": "you got it", "intent": "positive_reply", "entities": []} +{"text": "Next tv slot.", "intent": "query_avail", "entities": []} +{"text": "hey there, how are you today", "intent": "greeting", "entities": []} +{"text": "we have a conflict with my current appointment time.", "intent": "reschedule", "entities": []} +{"text": "final presentation with Dr. Ward ", "intent": "schedule", "entities": [{"start": 0, "end": 18, "label": "appointment_type"}, {"start": 24, "end": 32, "label": "practitioner_name"}]} +{"text": "this was a nice conversation", "intent": "bye", "entities": []} +{"text": "Can I check my appointment time?", "intent": "reschedule", "entities": []} +{"text": "can you locate the television remote", "intent": "oos", "entities": []} +{"text": "Openings with Ms. Cooper for a postdoctoral interview.", "intent": "query_avail", "entities": [{"start": 14, "end": 24, "label": "practitioner_name"}, {"start": 31, "end": 53, "label": "appointment_type"}]} +{"text": "My apologies, but I shall cancel my lab demonstration with Piras , ID #106072 .", "intent": "cancel", "entities": [{"start": 36, "end": 53, "label": "appointment_type"}, {"start": 59, "end": 64, "label": "practitioner_name"}, {"start": 70, "end": 77, "label": "appointment_id"}]} +{"text": "Display the schedule of Stewart for a academic probation meeting.", "intent": "query_avail", "entities": [{"start": 24, "end": 31, "label": "practitioner_name"}, {"start": 38, "end": 64, "label": "appointment_type"}]} +{"text": "Ms. Cooper's availability this week.", "intent": "query_avail", "entities": [{"start": 0, "end": 10, "label": "practitioner_name"}]} +{"text": "Can I see Dr. King?", "intent": "schedule", "entities": [{"start": 10, "end": 18, "label": "practitioner_name"}]} +{"text": "no don't do that!", "intent": "negative_reply", "entities": []} +{"text": "List all files client call times.", "intent": "query_avail", "entities": [{"start": 15, "end": 26, "label": "appointment_type"}]} +{"text": "I need to book up health screening .", "intent": "schedule", "entities": [{"start": 18, "end": 34, "label": "appointment_type"}]} +{"text": "fairwell", "intent": "bye", "entities": []} +{"text": "I will not recommend attending my scholarship interview with Harris .", "intent": "cancel", "entities": [{"start": 34, "end": 55, "label": "appointment_type"}, {"start": 61, "end": 67, "label": "practitioner_name"}]} +{"text": "ill pass", "intent": "negative_reply", "entities": []} +{"text": "I will not be attending my physical therapy session with Dr. Phillips :", "intent": "cancel", "entities": [{"start": 27, "end": 51, "label": "appointment_type"}, {"start": 57, "end": 69, "label": "practitioner_name"}]} +{"text": "Let's schedule the meeting with ID #795492 .", "intent": "cancel", "entities": [{"start": 35, "end": 42, "label": "appointment_id"}]} +{"text": "I have to !", "intent": "cancel", "entities": []} +{"text": "My schedule has decided I need to reschedule.", "intent": "reschedule", "entities": []} +{"text": "hi! are you doing okay", "intent": "greeting", "entities": []} +{"text": "Book a meeting about my final project.", "intent": "schedule", "entities": []} +{"text": "Free times every week.", "intent": "query_avail", "entities": []} +{"text": "i appreciate it", "intent": "positive_reply", "entities": []} +{"text": "New independent study meeting }", "intent": "schedule", "entities": [{"start": 4, "end": 29, "label": "appointment_type"}]} +{"text": "hi ai", "intent": "greeting", "entities": []} +{"text": "Delete upcoming internship check-in .", "intent": "cancel", "entities": [{"start": 17, "end": 36, "label": "appointment_type"}]} +{"text": "what are you feeling today", "intent": "greeting", "entities": []} +{"text": "Reschedule : research update with Prof. Bennett , please.", "intent": "reschedule", "entities": [{"start": 13, "end": 28, "label": "appointment_type"}, {"start": 34, "end": 47, "label": "practitioner_name"}]} +{"text": "The meeting #894207 is ;", "intent": "cancel", "entities": [{"start": 12, "end": 19, "label": "appointment_id"}]} +{"text": "howdy, what's new", "intent": "greeting", "entities": []} +{"text": "i believe that's true", "intent": "positive_reply", "entities": []} +{"text": "I want to do something.", "intent": "schedule", "entities": []} +{"text": "Open slots include a postdoctoral interview .", "intent": "query_avail", "entities": [{"start": 21, "end": 43, "label": "appointment_type"}]} +{"text": "listing the available times.", "intent": "query_avail", "entities": []} +{"text": "can you tell me who sells dixie paper plates", "intent": "oos", "entities": []} +{"text": "set free this afternoon.", "intent": "query_avail", "entities": []} +{"text": "• the advising session.", "intent": "cancel", "entities": []} +{"text": "yeah that's what i want", "intent": "positive_reply", "entities": []} +{"text": "i appeciate it", "intent": "positive_reply", "entities": []} +{"text": "nay", "intent": "negative_reply", "entities": []} +{"text": "not really", "intent": "negative_reply", "entities": []} +{"text": "Please move my booking #079183.", "intent": "reschedule", "entities": [{"start": 23, "end": 30, "label": "appointment_id"}]} +{"text": "Arrange for meeting with Dr. Sofia Colombo .", "intent": "schedule", "entities": [{"start": 25, "end": 42, "label": "practitioner_name"}]} +{"text": "i really appreciate your help, thank you", "intent": "positive_reply", "entities": []} +{"text": "we'll talk later ai", "intent": "bye", "entities": []} +{"text": "I need to change every time of my defense rehearsal with Professor Schmidt .", "intent": "reschedule", "entities": [{"start": 57, "end": 74, "label": "practitioner_name"}]} +{"text": "that's all i need, i'm going now", "intent": "bye", "entities": []} +{"text": "i must say no", "intent": "negative_reply", "entities": []} +{"text": "if situation has changed, I need to cancel my Ph.D. defense .", "intent": "cancel", "entities": [{"start": 46, "end": 59, "label": "appointment_type"}]} +{"text": "Unfortunately, I need to arrange my meeting.", "intent": "reschedule", "entities": []} +{"text": "Cancel my meeting with Professor Turner.", "intent": "cancel", "entities": [{"start": 33, "end": 39, "label": "practitioner_name"}]} +{"text": "My schedule has changed, I want to reschedule.", "intent": "reschedule", "entities": []} +{"text": "request a meeting, please.", "intent": "schedule", "entities": []} +{"text": "Schedule something _ Prof. Garcia .", "intent": "schedule", "entities": [{"start": 21, "end": 33, "label": "practitioner_name"}]} +{"text": "Please cancel my attendance for the research group meeting.", "intent": "cancel", "entities": [{"start": 36, "end": 58, "label": "appointment_type"}]} +{"text": "correct, that's true", "intent": "positive_reply", "entities": []} +{"text": "Move : #797665 from Tuesday to Thursday.", "intent": "reschedule", "entities": [{"start": 7, "end": 14, "label": "appointment_id"}]} +{"text": "I want to schedule a meeting with Galli.", "intent": "schedule", "entities": [{"start": 34, "end": 39, "label": "practitioner_name"}]} +{"text": "This is a list for my appointment with Bianchi .", "intent": "cancel", "entities": [{"start": 39, "end": 46, "label": "practitioner_name"}]} +{"text": "I'm sorry, but I have to remember my appointment.", "intent": "cancel", "entities": []} +{"text": "can you tell me how you're doing today", "intent": "greeting", "entities": []} +{"text": "Drop my pants", "intent": "cancel", "entities": []} +{"text": "Please confirm my appointment, ref #439966 .", "intent": "cancel", "entities": [{"start": 35, "end": 42, "label": "appointment_id"}]} +{"text": "Torres's schedule.", "intent": "query_avail", "entities": [{"start": 0, "end": 6, "label": "practitioner_name"}]} +{"text": "greetings to you", "intent": "greeting", "entities": []} +{"text": "Reschedule my project meeting.", "intent": "reschedule", "entities": []} +{"text": "Book a job appointment.", "intent": "schedule", "entities": []} +{"text": "List all openings for Ms. Cooper |", "intent": "query_avail", "entities": [{"start": 22, "end": 32, "label": "practitioner_name"}]} +{"text": "is it difficult to be successful on wall street", "intent": "oos", "entities": []} +{"text": "My massage therapy needs to be on a different server", "intent": "reschedule", "entities": [{"start": 3, "end": 18, "label": "appointment_type"}]} +{"text": "Remove my appointment on the calendar.", "intent": "cancel", "entities": []} +{"text": "the tutorial session (ID #797665 ) has a time conflict.", "intent": "reschedule", "entities": [{"start": 25, "end": 32, "label": "appointment_id"}]} +{"text": "Please cancel my grant proposal meeting this Friday.", "intent": "cancel", "entities": [{"start": 17, "end": 39, "label": "appointment_type"}]} +{"text": "Book me for a admissions interview = Dr. Sofia Colombo .", "intent": "schedule", "entities": [{"start": 14, "end": 34, "label": "appointment_type"}, {"start": 37, "end": 54, "label": "practitioner_name"}]} +{"text": "can i deposit a check", "intent": "oos", "entities": []} +{"text": "Free times for Prof. Howard next week.", "intent": "query_avail", "entities": [{"start": 15, "end": 27, "label": "practitioner_name"}]} +{"text": "Find list immunization shot times.", "intent": "query_avail", "entities": [{"start": 10, "end": 27, "label": "appointment_type"}]} +{"text": "Messina 's next page client presentation .", "intent": "query_avail", "entities": [{"start": 0, "end": 7, "label": "practitioner_name"}, {"start": 21, "end": 40, "label": "appointment_type"}]} +{"text": "My psychologist appointment needs to be on a busy day.", "intent": "reschedule", "entities": [{"start": 3, "end": 27, "label": "appointment_type"}]} +{"text": "Can we schedule a massage therapy for me?", "intent": "schedule", "entities": [{"start": 18, "end": 33, "label": "appointment_type"}]} +{"text": "I need to listen to my advisor.", "intent": "schedule", "entities": []} +{"text": "I'm afraid I have to cancel my meeting.", "intent": "cancel", "entities": []} +{"text": "research ethics review |", "intent": "query_avail", "entities": [{"start": 0, "end": 22, "label": "appointment_type"}]} +{"text": "patients need to change appointment #915298 .", "intent": "reschedule", "entities": [{"start": 36, "end": 43, "label": "appointment_id"}]} +{"text": "no, that's not right", "intent": "negative_reply", "entities": []} +{"text": "see ya", "intent": "bye", "entities": []} +{"text": "Move my progress review with Testa to Friday.", "intent": "reschedule", "entities": [{"start": 8, "end": 23, "label": "appointment_type"}, {"start": 29, "end": 34, "label": "practitioner_name"}]} +{"text": "it was a pleasure talking to you", "intent": "bye", "entities": []} +{"text": "Let's find an alternative time for my chat with Prof. Martini.", "intent": "reschedule", "entities": [{"start": 48, "end": 61, "label": "practitioner_name"}]} +{"text": "during my meeting with Dott. Simone Marchetti regarding my thesis.", "intent": "reschedule", "entities": [{"start": 23, "end": 45, "label": "practitioner_name"}]} +{"text": "peace out!", "intent": "bye", "entities": []} +{"text": "Rebook my performance review.", "intent": "reschedule", "entities": [{"start": 10, "end": 28, "label": "appointment_type"}]} +{"text": "I need to change the time of execution #356641 .", "intent": "reschedule", "entities": [{"start": 39, "end": 46, "label": "appointment_id"}]} +{"text": "create a for-while loop that continues 10 times", "intent": "oos", "entities": []} +{"text": "I have to execute my ultrasound appointment.", "intent": "cancel", "entities": [{"start": 21, "end": 31, "label": "appointment_type"}]} +{"text": "Book a meeting about my final day", "intent": "schedule", "entities": []} +{"text": "Is it possible to schedule a session?", "intent": "schedule", "entities": []} +{"text": "I need an ultrasound ;", "intent": "schedule", "entities": [{"start": 10, "end": 20, "label": "appointment_type"}]} +{"text": "I would like to cancel my grade review with Moore if The ID is #124270 .", "intent": "cancel", "entities": [{"start": 26, "end": 38, "label": "appointment_type"}, {"start": 44, "end": 49, "label": "practitioner_name"}, {"start": 63, "end": 70, "label": "appointment_id"}]} +{"text": "I'd like another reschedule.", "intent": "reschedule", "entities": []} +{"text": "you got that wrong", "intent": "negative_reply", "entities": []} +{"text": "ai goodbye", "intent": "bye", "entities": []} +{"text": "I need to see Baker about their grades.", "intent": "schedule", "entities": [{"start": 14, "end": 19, "label": "practitioner_name"}]} +{"text": "List schedule openings for Mr. Jones.", "intent": "query_avail", "entities": [{"start": 27, "end": 36, "label": "practitioner_name"}]} +{"text": "Free text with Dr. Williams this afternoon.", "intent": "query_avail", "entities": [{"start": 15, "end": 27, "label": "practitioner_name"}]} +{"text": "setting up a meeting with Professor Schmidt .", "intent": "schedule", "entities": [{"start": 26, "end": 43, "label": "practitioner_name"}]} +{"text": "scheduled for a lab session.", "intent": "query_avail", "entities": []} +{"text": "List all entries for a student feedback session with Brown .", "intent": "query_avail", "entities": [{"start": 23, "end": 47, "label": "appointment_type"}, {"start": 53, "end": 58, "label": "practitioner_name"}]} +{"text": "Arrange our meeting, please.", "intent": "schedule", "entities": []} +{"text": "now cancel my vet appointment with Greco .", "intent": "cancel", "entities": [{"start": 14, "end": 29, "label": "appointment_type"}, {"start": 35, "end": 40, "label": "practitioner_name"}]} +{"text": "Show Dr. Wilson's openings for this Friday.", "intent": "query_avail", "entities": [{"start": 5, "end": 15, "label": "practitioner_name"}]} +{"text": "My appointment #426171 , a project meeting with Prof. Watson , needs not be moved.", "intent": "reschedule", "entities": [{"start": 15, "end": 22, "label": "appointment_id"}, {"start": 27, "end": 42, "label": "appointment_type"}, {"start": 48, "end": 60, "label": "practitioner_name"}]} +{"text": "I want to meet Prof. Morris for a academic probation meeting.", "intent": "schedule", "entities": [{"start": 15, "end": 27, "label": "practitioner_name"}, {"start": 34, "end": 60, "label": "appointment_type"}]} +{"text": "I'd love to book a project meeting for next week.", "intent": "schedule", "entities": [{"start": 19, "end": 34, "label": "appointment_type"}]} +{"text": "I have an 1-on-1 with Prof. Campbell whenever I need to cancel.", "intent": "cancel", "entities": [{"start": 10, "end": 16, "label": "appointment_type"}, {"start": 22, "end": 36, "label": "practitioner_name"}]} +{"text": "it was cool talking with you", "intent": "bye", "entities": []} +{"text": "yes, that is actually true", "intent": "positive_reply", "entities": []} +{"text": "nope", "intent": "negative_reply", "entities": []} +{"text": "Set up a tutorial website Dott.ssa Valentina Bellini .", "intent": "schedule", "entities": [{"start": 26, "end": 52, "label": "practitioner_name"}]} +{"text": "busy office hours.", "intent": "schedule", "entities": []} +{"text": "I need to change the time for filing sync-up with Green (ID: #449094 ).", "intent": "reschedule", "entities": [{"start": 37, "end": 44, "label": "appointment_type"}, {"start": 50, "end": 55, "label": "practitioner_name"}, {"start": 61, "end": 68, "label": "appointment_id"}]} +{"text": "thanks, you've helped me", "intent": "positive_reply", "entities": []} +{"text": "Find an extra slot for me.", "intent": "schedule", "entities": []} +{"text": "is the pnc bank open", "intent": "oos", "entities": []} +{"text": "Find availability for a consultation with Dr. Carter >", "intent": "query_avail", "entities": [{"start": 42, "end": 52, "label": "practitioner_name"}]} +{"text": "I'm cancelling. The password is #018673 .", "intent": "cancel", "entities": [{"start": 32, "end": 39, "label": "appointment_id"}]} +{"text": "I refuse to cancel my appointment #717513 with Dr. Wilson .", "intent": "cancel", "entities": [{"start": 34, "end": 41, "label": "appointment_id"}, {"start": 47, "end": 57, "label": "practitioner_name"}]} +{"text": "Please cancel assignment office hours with Dr. Smith .", "intent": "cancel", "entities": [{"start": 25, "end": 37, "label": "appointment_type"}, {"start": 43, "end": 52, "label": "practitioner_name"}]} +{"text": "Professor Cattaneo's next available slot.", "intent": "query_avail", "entities": [{"start": 0, "end": 18, "label": "practitioner_name"}]} +{"text": "List schedule openings.", "intent": "query_avail", "entities": []} +{"text": "Rebook _ research update .", "intent": "reschedule", "entities": [{"start": 9, "end": 24, "label": "appointment_type"}]} +{"text": "I must change my meeting with Professor Sala.", "intent": "reschedule", "entities": [{"start": 30, "end": 44, "label": "practitioner_name"}]} +{"text": "Arrange a language proficiency test for ;", "intent": "schedule", "entities": [{"start": 10, "end": 35, "label": "appointment_type"}]} +{"text": "what is albert einstein famous for", "intent": "oos", "entities": []} +{"text": "Due to unforeseen circumstances, I have to cancel appointment #186683.", "intent": "cancel", "entities": [{"start": 62, "end": 69, "label": "appointment_id"}]} +{"text": "are you well", "intent": "greeting", "entities": []} +{"text": "ai, how are you doing", "intent": "greeting", "entities": []} +{"text": "My tutorial session (ID #904815 ] has a time conflict.", "intent": "reschedule", "entities": [{"start": 24, "end": 31, "label": "appointment_id"}]} +{"text": "released on July 21st.", "intent": "query_avail", "entities": []} +{"text": "I'd like the book Dr. Caterina Gentile for a lezione privata .", "intent": "schedule", "entities": [{"start": 18, "end": 38, "label": "practitioner_name"}, {"start": 45, "end": 60, "label": "appointment_type"}]} +{"text": "just wanted to say hi", "intent": "greeting", "entities": []} +{"text": "Please associate my driving lesson with Mr. Peterson , reference #861346 .", "intent": "cancel", "entities": [{"start": 20, "end": 34, "label": "appointment_type"}, {"start": 40, "end": 52, "label": "practitioner_name"}, {"start": 65, "end": 72, "label": "appointment_id"}]} +{"text": "Please help me move from thesis discussion with Dr. Angela White .", "intent": "reschedule", "entities": [{"start": 25, "end": 42, "label": "appointment_type"}, {"start": 48, "end": 64, "label": "practitioner_name"}]} +{"text": "who has the best record in the nba", "intent": "oos", "entities": []} +{"text": "i enjoyed our talk, bye", "intent": "bye", "entities": []} +{"text": "Please move my faculty candidate interview into Dr. Brooks , booking ref #843183 .", "intent": "reschedule", "entities": [{"start": 15, "end": 42, "label": "appointment_type"}, {"start": 48, "end": 58, "label": "practitioner_name"}, {"start": 73, "end": 80, "label": "appointment_id"}]} +{"text": "I might like to change my appointment, ID #693909 .", "intent": "reschedule", "entities": [{"start": 42, "end": 49, "label": "appointment_id"}]} +{"text": "that's definitely true", "intent": "positive_reply", "entities": []} +{"text": "Cancel one-on-one with Baker .", "intent": "cancel", "entities": [{"start": 24, "end": 29, "label": "practitioner_name"}]} +{"text": "I need to set up another quick chat.", "intent": "schedule", "entities": []} +{"text": "tell me about personal finance", "intent": "oos", "entities": []} +{"text": "I need to reschedule my appointment.", "intent": "reschedule", "entities": []} +{"text": "research update availability check.", "intent": "query_avail", "entities": [{"start": 0, "end": 15, "label": "appointment_type"}]} +{"text": "bye-bye", "intent": "bye", "entities": []} +{"text": "Can I arrange an appointment?", "intent": "schedule", "entities": []} +{"text": "Need : speak to Price .", "intent": "schedule", "entities": [{"start": 16, "end": 21, "label": "practitioner_name"}]} +{"text": "Show Dr. Ferri the openings for this Friday.", "intent": "query_avail", "entities": [{"start": 5, "end": 14, "label": "practitioner_name"}]} +{"text": "i say negative", "intent": "negative_reply", "entities": []} +{"text": "I need to reschedule my chat with Dr. Caterina Gentile.", "intent": "reschedule", "entities": [{"start": 34, "end": 54, "label": "practitioner_name"}]} +{"text": "no, don't do that", "intent": "negative_reply", "entities": []} +{"text": "that is affirmative", "intent": "positive_reply", "entities": []} +{"text": "I want to reschedule my talk with Nowak .", "intent": "reschedule", "entities": [{"start": 34, "end": 39, "label": "practitioner_name"}]} +{"text": "how is it going my friend", "intent": "greeting", "entities": []} +{"text": "Free slots for Professor Cattaneo this afternoon.", "intent": "query_avail", "entities": [{"start": 15, "end": 33, "label": "practitioner_name"}]} +{"text": "good to see you", "intent": "greeting", "entities": []} +{"text": "see you later, alligator", "intent": "bye", "entities": []} +{"text": "loading times are available for Bell .", "intent": "query_avail", "entities": [{"start": 32, "end": 36, "label": "practitioner_name"}]} +{"text": "Availability for each week.", "intent": "query_avail", "entities": []} +{"text": "I want ta arrange a dental cleaning .", "intent": "schedule", "entities": [{"start": 20, "end": 35, "label": "appointment_type"}]} +{"text": "Check for ;", "intent": "query_avail", "entities": []} +{"text": "I need to cancel the equipment training with Dr. Martinez . The booking number is #676289 ;", "intent": "cancel", "entities": [{"start": 21, "end": 39, "label": "appointment_type"}, {"start": 45, "end": 57, "label": "practitioner_name"}, {"start": 82, "end": 89, "label": "appointment_id"}]} +{"text": "catch you around", "intent": "bye", "entities": []} +{"text": "explain how small talk helps bind groups together", "intent": "oos", "entities": []} +{"text": "Scrub my appointment.", "intent": "cancel", "entities": []} +{"text": "The meeting name Conti (ref #758129 ) is no longer required.", "intent": "cancel", "entities": [{"start": 17, "end": 22, "label": "practitioner_name"}, {"start": 28, "end": 35, "label": "appointment_id"}]} +{"text": "how many calories does jumping up and down burn", "intent": "oos", "entities": []} +{"text": "I would like to arrange course selection advising with Mr. Adams .", "intent": "schedule", "entities": [{"start": 25, "end": 50, "label": "appointment_type"}, {"start": 56, "end": 65, "label": "practitioner_name"}]} +{"text": "Find available all times with Coppola .", "intent": "query_avail", "entities": [{"start": 30, "end": 37, "label": "practitioner_name"}]} +{"text": "Cancel my booking with booking reference #449094 .", "intent": "cancel", "entities": [{"start": 41, "end": 48, "label": "appointment_id"}]} +{"text": "I'd like to book a time slot.", "intent": "schedule", "entities": []} +{"text": "Display free times for a advising session.", "intent": "query_avail", "entities": [{"start": 25, "end": 41, "label": "appointment_type"}]} +{"text": "I wanted to cancel my thesis discussion.", "intent": "cancel", "entities": []} +{"text": "I want to set up a pet checkup.", "intent": "schedule", "entities": [{"start": 19, "end": 30, "label": "appointment_type"}]} +{"text": "Testa 's open slots for a project update ;", "intent": "query_avail", "entities": [{"start": 0, "end": 5, "label": "practitioner_name"}, {"start": 26, "end": 40, "label": "appointment_type"}]} +{"text": "I have to cancel appointment #505823 with Thompson.", "intent": "cancel", "entities": [{"start": 29, "end": 36, "label": "appointment_id"}, {"start": 42, "end": 50, "label": "practitioner_name"}]} +{"text": "Schedule something with Conti.", "intent": "schedule", "entities": [{"start": 24, "end": 29, "label": "practitioner_name"}]} +{"text": "Find me a time for a x-ray with Professor Schmidt.", "intent": "schedule", "entities": [{"start": 21, "end": 26, "label": "appointment_type"}, {"start": 32, "end": 49, "label": "practitioner_name"}]} +{"text": "now cancel my appointment regarding my project with Ms. Mitchell .", "intent": "cancel", "entities": [{"start": 52, "end": 64, "label": "practitioner_name"}]} +{"text": "is everything ok today", "intent": "greeting", "entities": []} +{"text": "Open slots for a vaccination.", "intent": "query_avail", "entities": [{"start": 17, "end": 28, "label": "appointment_type"}]} +{"text": "Please proceed with cancelling my appointment with Fiore.", "intent": "cancel", "entities": [{"start": 51, "end": 56, "label": "practitioner_name"}]} +{"text": "Let's set up a time zone connect.", "intent": "schedule", "entities": []} +{"text": "Schedule Brown = a dental cleaning .", "intent": "schedule", "entities": [{"start": 9, "end": 14, "label": "practitioner_name"}, {"start": 19, "end": 34, "label": "appointment_type"}]} +{"text": "define a psychologist appointment .", "intent": "schedule", "entities": [{"start": 9, "end": 33, "label": "appointment_type"}]} +{"text": "That time no longer works on me.", "intent": "reschedule", "entities": []} +{"text": "Can I get a different time for a meeting with Green ?", "intent": "reschedule", "entities": [{"start": 46, "end": 51, "label": "practitioner_name"}]} +{"text": "now cancel my appointment with ID #336410 .", "intent": "cancel", "entities": [{"start": 34, "end": 41, "label": "appointment_id"}]} +{"text": "Is this possible to move my appointment?", "intent": "reschedule", "entities": []} +{"text": "\\ appointment #587130 , a vet appointment with Prof. Müller , must be cancelled.", "intent": "cancel", "entities": [{"start": 14, "end": 21, "label": "appointment_id"}, {"start": 26, "end": 41, "label": "appointment_type"}, {"start": 47, "end": 59, "label": "practitioner_name"}]} +{"text": "Prof. Watson department head meeting ", "intent": "schedule", "entities": [{"start": 0, "end": 12, "label": "practitioner_name"}, {"start": 13, "end": 36, "label": "appointment_type"}]} +{"text": "nope not it", "intent": "negative_reply", "entities": []} +{"text": "yes, that's accurate", "intent": "positive_reply", "entities": []} +{"text": "oh sweet thanks", "intent": "positive_reply", "entities": []} +{"text": "nice seeing you bye", "intent": "bye", "entities": []} +{"text": "I need to reschedule my chat session Professor Schmidt .", "intent": "reschedule", "entities": [{"start": 37, "end": 54, "label": "practitioner_name"}]} +{"text": "oh hell no, that'd be terrible!", "intent": "negative_reply", "entities": []} +{"text": "that is incorrect", "intent": "negative_reply", "entities": []} +{"text": "List includes openings.", "intent": "query_avail", "entities": []} +{"text": "I need to find another slot for my meeting with Bianchi :", "intent": "reschedule", "entities": [{"start": 48, "end": 55, "label": "practitioner_name"}]} +{"text": "google would like to reschedule my vet appointment with Esposito . The ID is #781883 .", "intent": "reschedule", "entities": [{"start": 35, "end": 50, "label": "appointment_type"}, {"start": 56, "end": 64, "label": "practitioner_name"}, {"start": 77, "end": 84, "label": "appointment_id"}]} +{"text": "Cancel my one-on-one file Dott. Paolo Farina .", "intent": "cancel", "entities": [{"start": 26, "end": 44, "label": "practitioner_name"}]} +{"text": "where is the colosseum", "intent": "oos", "entities": []} +{"text": "The appointment is no further needed.", "intent": "cancel", "entities": []} +{"text": "hello how's it going", "intent": "greeting", "entities": []} +{"text": "What times are available for Sanna ;", "intent": "query_avail", "entities": [{"start": 29, "end": 34, "label": "practitioner_name"}]} +{"text": "Set up a ;", "intent": "schedule", "entities": []} +{"text": "what's the roi doing arbitrage with ebay", "intent": "oos", "entities": []} +{"text": "should I change my tutorial session time?", "intent": "reschedule", "entities": []} +{"text": "make a list of what materials have been used for spacesuits", "intent": "oos", "entities": []} +{"text": "When is Ms. Cooper .", "intent": "query_avail", "entities": [{"start": 8, "end": 18, "label": "practitioner_name"}]} +{"text": "Is there availability such a research group meeting ?", "intent": "schedule", "entities": [{"start": 29, "end": 51, "label": "appointment_type"}]} +{"text": "I'd like your book an appointment.", "intent": "schedule", "entities": []} +{"text": "List times for a haircut with Dr. Bailey |", "intent": "query_avail", "entities": [{"start": 17, "end": 24, "label": "appointment_type"}, {"start": 30, "end": 40, "label": "practitioner_name"}]} +{"text": "List schedule files for Bianchi .", "intent": "query_avail", "entities": [{"start": 24, "end": 31, "label": "practitioner_name"}]} +{"text": "I need to cancel this thesis discussion.", "intent": "cancel", "entities": []} +{"text": "I can't make my own appointment.", "intent": "reschedule", "entities": []} +{"text": "I'd like to create a course planning .", "intent": "schedule", "entities": [{"start": 21, "end": 36, "label": "appointment_type"}]} +{"text": "I'd like to book a writing center appointment for next ?", "intent": "schedule", "entities": [{"start": 19, "end": 45, "label": "appointment_type"}]} +{"text": "I am cancelling my booking via the ID #169618 .", "intent": "cancel", "entities": [{"start": 38, "end": 45, "label": "appointment_id"}]} +{"text": "Cancel my lab session session Testa .", "intent": "cancel", "entities": [{"start": 30, "end": 35, "label": "practitioner_name"}]} +{"text": "it was nice to chat", "intent": "bye", "entities": []} +{"text": "Check schedule for x-ray ;", "intent": "query_avail", "entities": [{"start": 19, "end": 24, "label": "appointment_type"}]} +{"text": "Book me with Basile.", "intent": "schedule", "entities": [{"start": 13, "end": 19, "label": "practitioner_name"}]} +{"text": "i have to say goodbye", "intent": "bye", "entities": []} +{"text": "yes, this is true", "intent": "positive_reply", "entities": []} +{"text": "I need to find a new time for my health screening.", "intent": "reschedule", "entities": [{"start": 33, "end": 49, "label": "appointment_type"}]} +{"text": "Can we reschedule the car service I have with Testa?", "intent": "reschedule", "entities": [{"start": 22, "end": 33, "label": "appointment_type"}, {"start": 46, "end": 51, "label": "practitioner_name"}]} +{"text": "I won't make it, so please try", "intent": "cancel", "entities": []} +{"text": "Change #113852 }", "intent": "reschedule", "entities": [{"start": 7, "end": 14, "label": "appointment_id"}]} +{"text": "heller", "intent": "greeting", "entities": []} +{"text": "Is it too late ? change my appointment time?", "intent": "reschedule", "entities": []} +{"text": "I'd have to reschedule my massage therapy .", "intent": "reschedule", "entities": [{"start": 26, "end": 41, "label": "appointment_type"}]} +{"text": "suppose we move my financial aid consultation with Dr. King ? It's appointment #675180 .", "intent": "reschedule", "entities": [{"start": 19, "end": 45, "label": "appointment_type"}, {"start": 51, "end": 59, "label": "practitioner_name"}, {"start": 79, "end": 86, "label": "appointment_id"}]} +{"text": "Young \\ calendar for a presentation rehearsal next month.", "intent": "query_avail", "entities": [{"start": 0, "end": 5, "label": "practitioner_name"}, {"start": 23, "end": 45, "label": "appointment_type"}]} +{"text": "I will not be attending a meeting, ID #543516 , please cancel.", "intent": "cancel", "entities": [{"start": 38, "end": 45, "label": "appointment_id"}]} +{"text": "When is Cook free for a eye exam.", "intent": "query_avail", "entities": [{"start": 8, "end": 12, "label": "practitioner_name"}, {"start": 24, "end": 32, "label": "appointment_type"}]} +{"text": "Can I get out Collins 's calendar?", "intent": "schedule", "entities": [{"start": 14, "end": 21, "label": "practitioner_name"}]} +{"text": "Change #261071.", "intent": "reschedule", "entities": [{"start": 7, "end": 14, "label": "appointment_id"}]} +{"text": "List schedule openings for Esposito ", "intent": "query_avail", "entities": [{"start": 27, "end": 35, "label": "practitioner_name"}]} +{"text": "Book a tax consultation and Professor D'Amico , please.", "intent": "schedule", "entities": [{"start": 7, "end": 23, "label": "appointment_type"}, {"start": 28, "end": 45, "label": "practitioner_name"}]} +{"text": "My situation has changed, I want to cancel my sync-up .", "intent": "cancel", "entities": [{"start": 46, "end": 53, "label": "appointment_type"}]} +{"text": "Marchetti 's replacement for a financial aid consultation next month.", "intent": "query_avail", "entities": [{"start": 0, "end": 9, "label": "practitioner_name"}, {"start": 31, "end": 57, "label": "appointment_type"}]} +{"text": "I won't be there, please cancel my meeting.", "intent": "cancel", "entities": []} +{"text": "tootles", "intent": "bye", "entities": []} +{"text": "Could you select a new time for my honors thesis meeting ?", "intent": "reschedule", "entities": [{"start": 35, "end": 56, "label": "appointment_type"}]} +{"text": "i don't believe that is possible, it is false", "intent": "negative_reply", "entities": []} +{"text": "i enjoyed our talk, goodbye", "intent": "bye", "entities": []} +{"text": "Please cancel my physical therapy session with Dr. Laura Ferrari ;", "intent": "cancel", "entities": [{"start": 17, "end": 41, "label": "appointment_type"}, {"start": 47, "end": 64, "label": "practitioner_name"}]} +{"text": "give me an energy usage breakdown for march", "intent": "oos", "entities": []} +{"text": "Get updated on Nelson 's schedule.", "intent": "schedule", "entities": [{"start": 15, "end": 21, "label": "practitioner_name"}]} +{"text": "thanks for answering my question", "intent": "positive_reply", "entities": []} +{"text": "Prof. Scott availability ;", "intent": "query_avail", "entities": [{"start": 0, "end": 11, "label": "practitioner_name"}]} +{"text": "Change the time for meeting #915298 ;", "intent": "reschedule", "entities": [{"start": 28, "end": 35, "label": "appointment_id"}]} +{"text": "I would like to cancel my seminar presentation with Ms. Mitchell . The ID = #085342 .", "intent": "cancel", "entities": [{"start": 26, "end": 46, "label": "appointment_type"}, {"start": 52, "end": 64, "label": "practitioner_name"}, {"start": 76, "end": 83, "label": "appointment_id"}]} +{"text": "Find an opening with Evans ;", "intent": "query_avail", "entities": [{"start": 21, "end": 26, "label": "practitioner_name"}]} +{"text": "I need to see Collins.", "intent": "schedule", "entities": [{"start": 14, "end": 21, "label": "practitioner_name"}]} +{"text": "Can you cancel my appointment?", "intent": "cancel", "entities": []} +{"text": "• process a cancellation for #017187 .", "intent": "cancel", "entities": [{"start": 29, "end": 36, "label": "appointment_id"}]} +{"text": "I'm cancelling the meeting date Professor Bernardi .", "intent": "cancel", "entities": [{"start": 32, "end": 50, "label": "practitioner_name"}]} +{"text": "i like to cancel #974214 .", "intent": "cancel", "entities": [{"start": 17, "end": 24, "label": "appointment_id"}]} +{"text": "} book a meeting with Cook .", "intent": "schedule", "entities": [{"start": 22, "end": 26, "label": "practitioner_name"}]} +{"text": "Openings with Dott.ssa Valentina Bellini for a writing center appointment ", "intent": "query_avail", "entities": [{"start": 14, "end": 40, "label": "practitioner_name"}, {"start": 47, "end": 73, "label": "appointment_type"}]} +{"text": "Shift appointment #356641 to 2nd week.", "intent": "reschedule", "entities": [{"start": 18, "end": 25, "label": "appointment_id"}]} +{"text": "Schedule a tax consultation with Piras.", "intent": "schedule", "entities": [{"start": 11, "end": 27, "label": "appointment_type"}, {"start": 33, "end": 38, "label": "practitioner_name"}]} +{"text": "I need to change the date for #630761.", "intent": "reschedule", "entities": [{"start": 30, "end": 37, "label": "appointment_id"}]} +{"text": "Can we schedule my appointment #564270 to the afternoon?", "intent": "reschedule", "entities": [{"start": 31, "end": 38, "label": "appointment_id"}]} +{"text": "Check time slots.", "intent": "query_avail", "entities": []} +{"text": "hello there", "intent": "greeting", "entities": []} +{"text": "Need to book another slot.", "intent": "schedule", "entities": []} +{"text": "remember my scheduled time.", "intent": "cancel", "entities": []} +{"text": "Due to unforeseen circumstances, I have to make appointment #230130 .", "intent": "cancel", "entities": [{"start": 60, "end": 67, "label": "appointment_id"}]} +{"text": "Find Caruso 's ;", "intent": "query_avail", "entities": [{"start": 5, "end": 11, "label": "practitioner_name"}]} +{"text": "Please cancel an appointment with ID #886239 .", "intent": "cancel", "entities": [{"start": 37, "end": 44, "label": "appointment_id"}]} +{"text": "I'd like to change the time of my progress review.", "intent": "reschedule", "entities": [{"start": 34, "end": 49, "label": "appointment_type"}]} +{"text": "take it easy!", "intent": "bye", "entities": []} +{"text": "Find an opening a language proficiency test with Sanna .", "intent": "query_avail", "entities": [{"start": 19, "end": 44, "label": "appointment_type"}, {"start": 50, "end": 55, "label": "practitioner_name"}]} +{"text": "sure thing", "intent": "positive_reply", "entities": []} +{"text": "I will not be able to attend my scheduled meeting, hence #336410 .", "intent": "cancel", "entities": [{"start": 57, "end": 64, "label": "appointment_id"}]} +{"text": "damn it.", "intent": "cancel", "entities": []} +{"text": "how do you fix a leaking sink", "intent": "oos", "entities": []} +{"text": "Find only a time for a eye exam with Professor Schmidt .", "intent": "schedule", "entities": [{"start": 23, "end": 31, "label": "appointment_type"}, {"start": 37, "end": 54, "label": "practitioner_name"}]} +{"text": "Show schedule for letter of recommendation requests.", "intent": "query_avail", "entities": [{"start": 18, "end": 50, "label": "appointment_type"}]} +{"text": "you need to find another slot for my meeting with Mr. Rogers .", "intent": "reschedule", "entities": [{"start": 50, "end": 60, "label": "practitioner_name"}]} +{"text": "Find available performance review times with Coppola ", "intent": "query_avail", "entities": [{"start": 15, "end": 33, "label": "appointment_type"}, {"start": 45, "end": 52, "label": "practitioner_name"}]} +{"text": "answer the phone", "intent": "oos", "entities": []} +{"text": "Can oracle reschedule the research seminar I have with Piras ?", "intent": "reschedule", "entities": [{"start": 26, "end": 42, "label": "appointment_type"}, {"start": 55, "end": 60, "label": "practitioner_name"}]} +{"text": "The tenure meeting with Evans is no longer necessary.", "intent": "cancel", "entities": [{"start": 4, "end": 18, "label": "appointment_type"}, {"start": 24, "end": 29, "label": "practitioner_name"}]} +{"text": "Shift returns thesis discussion to another day.", "intent": "reschedule", "entities": [{"start": 14, "end": 31, "label": "appointment_type"}]} +{"text": "that has to be false", "intent": "negative_reply", "entities": []} +{"text": "My strategy meeting with Bianchi needs always be rescheduled.", "intent": "reschedule", "entities": [{"start": 3, "end": 19, "label": "appointment_type"}, {"start": 25, "end": 32, "label": "practitioner_name"}]} +{"text": "Cancel it.", "intent": "cancel", "entities": []} +{"text": "buy me free time.", "intent": "query_avail", "entities": []} +{"text": "} schedule a 1-on-1 .", "intent": "schedule", "entities": [{"start": 13, "end": 19, "label": "appointment_type"}]} +{"text": "The peer tutoring or Dr. Angela White is no longer necessary.", "intent": "cancel", "entities": [{"start": 4, "end": 17, "label": "appointment_type"}, {"start": 21, "end": 37, "label": "practitioner_name"}]} +{"text": "My appointment, #117656, needs to be cancelled.", "intent": "cancel", "entities": [{"start": 16, "end": 23, "label": "appointment_id"}]} +{"text": "what do geese eat", "intent": "oos", "entities": []} +{"text": "I need to cancel my appointments with Dott.ssa Chiara Negri .", "intent": "cancel", "entities": [{"start": 38, "end": 59, "label": "practitioner_name"}]} +{"text": "that is not false", "intent": "positive_reply", "entities": []} +{"text": "how are things for you", "intent": "greeting", "entities": []} +{"text": "goodbye!", "intent": "bye", "entities": []} +{"text": "hey hey!", "intent": "greeting", "entities": []} +{"text": "Book me for a sync-up with Prof. Howard.", "intent": "schedule", "entities": [{"start": 14, "end": 21, "label": "appointment_type"}, {"start": 27, "end": 39, "label": "practitioner_name"}]} +{"text": "that is true", "intent": "positive_reply", "entities": []} +{"text": "I need to change my library research consultation with Dott. Paolo Farina , ID _ #079183 .", "intent": "reschedule", "entities": [{"start": 20, "end": 49, "label": "appointment_type"}, {"start": 55, "end": 73, "label": "practitioner_name"}, {"start": 81, "end": 88, "label": "appointment_id"}]} +{"text": "I need consult advising session with my advisor, Mrs. Evans .", "intent": "schedule", "entities": [{"start": 15, "end": 31, "label": "appointment_type"}, {"start": 49, "end": 59, "label": "practitioner_name"}]} +{"text": "I am cancelling my club meeting (ID #117656 ) Mr. Barnes .", "intent": "cancel", "entities": [{"start": 19, "end": 31, "label": "appointment_type"}, {"start": 36, "end": 43, "label": "appointment_id"}, {"start": 47, "end": 57, "label": "practitioner_name"}]} +{"text": "i do not believe that that is correct", "intent": "negative_reply", "entities": []} +{"text": "Openings with Gatti for a mental health counseling |", "intent": "query_avail", "entities": [{"start": 14, "end": 19, "label": "practitioner_name"}, {"start": 26, "end": 50, "label": "appointment_type"}]} +{"text": "Cancel appointment #797665 ;", "intent": "cancel", "entities": [{"start": 19, "end": 26, "label": "appointment_id"}]} +{"text": "My curriculum committee meeting, booking #000317, with Prof. Campbell is cancelled.", "intent": "cancel", "entities": [{"start": 3, "end": 31, "label": "appointment_type"}, {"start": 41, "end": 48, "label": "appointment_id"}, {"start": 55, "end": 69, "label": "practitioner_name"}]} +{"text": "would it be legal to have battles to the death in a homemade colosseum", "intent": "oos", "entities": []} +{"text": "Time for a mentorship meeting with Costa.", "intent": "schedule", "entities": [{"start": 11, "end": 29, "label": "appointment_type"}, {"start": 35, "end": 40, "label": "practitioner_name"}]} +{"text": "well hi there", "intent": "greeting", "entities": []} +{"text": "do I schedule a meeting?", "intent": "schedule", "entities": []} +{"text": "Availability of Messina creates a alumni interview .", "intent": "query_avail", "entities": [{"start": 16, "end": 23, "label": "practitioner_name"}, {"start": 34, "end": 50, "label": "appointment_type"}]} +{"text": "I must reschedule my appointment, reference #192560.", "intent": "reschedule", "entities": [{"start": 44, "end": 51, "label": "appointment_id"}]} +{"text": "Unfortunately, I refused to move my meeting.", "intent": "reschedule", "entities": []} +{"text": "bye for now", "intent": "bye", "entities": []} +{"text": "how many people have held the role of county attorney bearing the family name \"dixon\"", "intent": "oos", "entities": []} +{"text": "• booking #641930 to next week.", "intent": "reschedule", "entities": [{"start": 10, "end": 17, "label": "appointment_id"}]} +{"text": "I'd like the book a consultation.", "intent": "schedule", "entities": []} +{"text": "please print out copies of my resume", "intent": "oos", "entities": []} +{"text": "When is Dr. Brooks ; for a thesis discussion .", "intent": "query_avail", "entities": [{"start": 8, "end": 18, "label": "practitioner_name"}, {"start": 27, "end": 44, "label": "appointment_type"}]} +{"text": "Reschedule my appointment ID #569400 .", "intent": "reschedule", "entities": [{"start": 30, "end": 37, "label": "appointment_id"}]} +{"text": "that's true", "intent": "positive_reply", "entities": []} +{"text": "Set up a database with Ms. Kelly .", "intent": "schedule", "entities": [{"start": 23, "end": 32, "label": "practitioner_name"}]} +{"text": "absolutely correct", "intent": "positive_reply", "entities": []} +{"text": "I hope to find another time for my faculty candidate interview with Prof. Martini .", "intent": "reschedule", "entities": [{"start": 35, "end": 62, "label": "appointment_type"}, {"start": 68, "end": 81, "label": "practitioner_name"}]} +{"text": "are there any messages", "intent": "oos", "entities": []} +{"text": "internship interview static check.", "intent": "query_avail", "entities": [{"start": 0, "end": 20, "label": "appointment_type"}]} +{"text": "hello, what's up", "intent": "greeting", "entities": []} +{"text": "I'm unable to find my course planning .", "intent": "reschedule", "entities": [{"start": 22, "end": 37, "label": "appointment_type"}]} +{"text": "I'd like to cancel my project meeting.", "intent": "cancel", "entities": []} +{"text": "i am afraid that that is not the case", "intent": "negative_reply", "entities": []} +{"text": "that is false", "intent": "negative_reply", "entities": []} +{"text": "Please cancel my appointment from my project with Ms. Allen .", "intent": "cancel", "entities": [{"start": 50, "end": 59, "label": "practitioner_name"}]} +{"text": "Check for academic advising ", "intent": "query_avail", "entities": [{"start": 10, "end": 27, "label": "appointment_type"}]} +{"text": "Reschedule my consultation.", "intent": "reschedule", "entities": []} +{"text": "how is it going", "intent": "greeting", "entities": []} +{"text": "that's a definite yes", "intent": "positive_reply", "entities": []} +{"text": "Move my appointment.", "intent": "reschedule", "entities": []} +{"text": "Set up emergency meeting.", "intent": "schedule", "entities": []} +{"text": "hi what's up", "intent": "greeting", "entities": []} +{"text": "Time with Professor Emily Clark |", "intent": "schedule", "entities": [{"start": 10, "end": 31, "label": "practitioner_name"}]} +{"text": "I'd like to set a meeting time.", "intent": "schedule", "entities": []} +{"text": "Change of plans, I need immediate reschedule with Thompson .", "intent": "reschedule", "entities": [{"start": 50, "end": 58, "label": "practitioner_name"}]} +{"text": "Change parameter career counseling time.", "intent": "reschedule", "entities": [{"start": 17, "end": 34, "label": "appointment_type"}]} +{"text": "Show the free rides on the calendar.", "intent": "query_avail", "entities": []} +{"text": "you are so nice to think of me", "intent": "positive_reply", "entities": []} +{"text": "The function #660065 is cancelled.", "intent": "cancel", "entities": [{"start": 13, "end": 20, "label": "appointment_id"}]} +{"text": "how does the etheric body operate", "intent": "oos", "entities": []} +{"text": "Dott. Luca Morelli performance review availability ", "intent": "query_avail", "entities": [{"start": 0, "end": 18, "label": "practitioner_name"}, {"start": 19, "end": 37, "label": "appointment_type"}]} +{"text": "I won't be needing this appointment anymore.", "intent": "cancel", "entities": []} +{"text": "I need to change my lab session.", "intent": "reschedule", "entities": []} +{"text": "accepted my appointment.", "intent": "reschedule", "entities": []} +{"text": "Project meeting slots with Prof. Garcia.", "intent": "query_avail", "entities": [{"start": 27, "end": 39, "label": "practitioner_name"}]} +{"text": "I must cancel appointment #353753.", "intent": "cancel", "entities": [{"start": 26, "end": 33, "label": "appointment_id"}]} +{"text": "i like to request a cancellation.", "intent": "cancel", "entities": []} +{"text": "I'd like just set up a peer advising with Ricci .", "intent": "schedule", "entities": [{"start": 23, "end": 36, "label": "appointment_type"}, {"start": 42, "end": 47, "label": "practitioner_name"}]} +{"text": "hello, friend", "intent": "greeting", "entities": []} +{"text": "Please put the lecture on my schedule.", "intent": "cancel", "entities": [{"start": 15, "end": 22, "label": "appointment_type"}]} +{"text": "Professor Morgan's free times.", "intent": "query_avail", "entities": [{"start": 10, "end": 16, "label": "practitioner_name"}]} +{"text": "Reschedule the research ethics review to Moore , please.", "intent": "reschedule", "entities": [{"start": 15, "end": 37, "label": "appointment_type"}, {"start": 41, "end": 46, "label": "practitioner_name"}]} +{"text": "I'm formally cancelling my consultation ", "intent": "cancel", "entities": [{"start": 27, "end": 39, "label": "appointment_type"}]} +{"text": "I have a thesis proposal meeting with Colombo that I need never move.", "intent": "reschedule", "entities": [{"start": 9, "end": 32, "label": "appointment_type"}, {"start": 38, "end": 45, "label": "practitioner_name"}]} +{"text": "Display the schedule of Prof. Parker and a academic integrity hearing .", "intent": "query_avail", "entities": [{"start": 24, "end": 36, "label": "practitioner_name"}, {"start": 43, "end": 69, "label": "appointment_type"}]} +{"text": "I need an appointment name Dott. Matteo Palmieri for a admissions interview .", "intent": "schedule", "entities": [{"start": 27, "end": 48, "label": "practitioner_name"}, {"start": 55, "end": 75, "label": "appointment_type"}]} +{"text": "Free slots.", "intent": "query_avail", "entities": []} +{"text": "Find available meeting times with Baker.", "intent": "query_avail", "entities": [{"start": 34, "end": 39, "label": "practitioner_name"}]} +{"text": "I need just see Dott.ssa Chiara Negri about my grades.", "intent": "schedule", "entities": [{"start": 16, "end": 37, "label": "practitioner_name"}]} +{"text": "that is untrue", "intent": "negative_reply", "entities": []} +{"text": "wait for a quarterly review tomorrow.", "intent": "query_avail", "entities": [{"start": 11, "end": 27, "label": "appointment_type"}]} +{"text": "that turns out to be false", "intent": "negative_reply", "entities": []} +{"text": "true", "intent": "positive_reply", "entities": []} +{"text": "administer my oral exam.", "intent": "schedule", "entities": []} +{"text": "I need to make an appointment.", "intent": "schedule", "entities": []} +{"text": "Get rid _ appointment #261071 .", "intent": "cancel", "entities": [{"start": 22, "end": 29, "label": "appointment_id"}]} +{"text": "appreciate it", "intent": "positive_reply", "entities": []} +{"text": "catch you later", "intent": "bye", "entities": []} +{"text": "I need to cancel my meeting about my thesis.", "intent": "cancel", "entities": []} +{"text": "I need to schedule a scheduled meeting.", "intent": "cancel", "entities": []} +{"text": "id like to request a new time for my meeting.", "intent": "reschedule", "entities": []} +{"text": "define new time for #993216 .", "intent": "reschedule", "entities": [{"start": 20, "end": 27, "label": "appointment_id"}]} +{"text": "how do you feel", "intent": "greeting", "entities": []} +{"text": "I need to cancel an existing booking.", "intent": "cancel", "entities": []} +{"text": "I need to check my booking, number #419544 .", "intent": "cancel", "entities": [{"start": 35, "end": 42, "label": "appointment_id"}]} +{"text": " Basile free for a final project review ?", "intent": "schedule", "entities": [{"start": 1, "end": 7, "label": "practitioner_name"}, {"start": 19, "end": 39, "label": "appointment_type"}]} +{"text": "Let's move this scheduled meeting.", "intent": "reschedule", "entities": []} +{"text": "thanks so much", "intent": "positive_reply", "entities": []} +{"text": "Mr. Peterson 's availability became a lezione privata this week.", "intent": "query_avail", "entities": [{"start": 0, "end": 12, "label": "practitioner_name"}, {"start": 38, "end": 53, "label": "appointment_type"}]} +{"text": "that is not factual", "intent": "negative_reply", "entities": []} +{"text": "Reschedule my !", "intent": "reschedule", "entities": []} +{"text": "Next available :", "intent": "query_avail", "entities": []} +{"text": "Can I handle a project meeting with Gatti ?", "intent": "schedule", "entities": [{"start": 36, "end": 41, "label": "practitioner_name"}]} +{"text": "yes, that's confirmed", "intent": "positive_reply", "entities": []} +{"text": "I need to make an impression", "intent": "schedule", "entities": []} +{"text": "python is Dr. Giordano free.", "intent": "query_avail", "entities": [{"start": 10, "end": 22, "label": "practitioner_name"}]} +{"text": "file calendar for thesis proposal meeting s.", "intent": "query_avail", "entities": [{"start": 18, "end": 41, "label": "appointment_type"}]} +{"text": "how do i get venture capital for my app", "intent": "oos", "entities": []} +{"text": "Can we reschedule transfer credit evaluation , ID #460528 ?", "intent": "reschedule", "entities": [{"start": 19, "end": 45, "label": "appointment_type"}, {"start": 51, "end": 58, "label": "appointment_id"}]} +{"text": "talk to you later", "intent": "bye", "entities": []} +{"text": "approximate schedule.", "intent": "query_avail", "entities": []} +{"text": "My plans have ended and I need to cancel.", "intent": "cancel", "entities": []} +{"text": "hello siri", "intent": "greeting", "entities": []} +{"text": "I have to pull out of google study abroad advising .", "intent": "cancel", "entities": [{"start": 29, "end": 50, "label": "appointment_type"}]} +{"text": "hello, how are you", "intent": "greeting", "entities": []} +{"text": "select open slots for Dr. Ferrara .", "intent": "query_avail", "entities": [{"start": 22, "end": 33, "label": "practitioner_name"}]} +{"text": "that is erroneous", "intent": "negative_reply", "entities": []} +{"text": "thank you for your time", "intent": "positive_reply", "entities": []} +{"text": "Please display my discussione tesi with Young , ID is #535330 .", "intent": "cancel", "entities": [{"start": 18, "end": 34, "label": "appointment_type"}, {"start": 40, "end": 45, "label": "practitioner_name"}, {"start": 54, "end": 61, "label": "appointment_id"}]} +{"text": "I'm sorry I have to cancel my meeting.", "intent": "cancel", "entities": []} +{"text": "Let's move our meeting, ID #437573 .", "intent": "reschedule", "entities": [{"start": 27, "end": 34, "label": "appointment_id"}]} +{"text": "24 hours with Bianchi .", "intent": "query_avail", "entities": [{"start": 14, "end": 21, "label": "practitioner_name"}]} +{"text": "Book me with Professor Barbieri ;", "intent": "schedule", "entities": [{"start": 13, "end": 31, "label": "practitioner_name"}]} +{"text": "I want to cancel my final project review appointment.", "intent": "cancel", "entities": [{"start": 20, "end": 40, "label": "appointment_type"}]} +{"text": "Show Mancini 's availability as a blood test .", "intent": "query_avail", "entities": [{"start": 5, "end": 12, "label": "practitioner_name"}, {"start": 34, "end": 44, "label": "appointment_type"}]} +{"text": "I will not be attending my club meeting with Dott. Marco Conti.", "intent": "cancel", "entities": [{"start": 27, "end": 39, "label": "appointment_type"}, {"start": 45, "end": 62, "label": "practitioner_name"}]} +{"text": "that'll work, good job!", "intent": "positive_reply", "entities": []} +{"text": "great chat, talk to you later", "intent": "bye", "entities": []} +{"text": "I can't make my call please cancel it.", "intent": "cancel", "entities": []} +{"text": "Cancel my therapy session.", "intent": "cancel", "entities": []} +{"text": "no, that is a falsehood", "intent": "negative_reply", "entities": []} +{"text": "My meeting with Professor Emily Clark has to be moved.", "intent": "reschedule", "entities": [{"start": 16, "end": 37, "label": "practitioner_name"}]} +{"text": "client must change my department head meeting appointment with Serra .", "intent": "reschedule", "entities": [{"start": 22, "end": 45, "label": "appointment_type"}, {"start": 63, "end": 68, "label": "practitioner_name"}]} +{"text": "the statement is false", "intent": "negative_reply", "entities": []} +{"text": "are you okay", "intent": "greeting", "entities": []} +{"text": "I would like to make my appointment #623681 back by an hour.", "intent": "reschedule", "entities": [{"start": 36, "end": 43, "label": "appointment_id"}]} +{"text": "The meeting #150062 got cancelled.", "intent": "cancel", "entities": [{"start": 12, "end": 19, "label": "appointment_id"}]} +{"text": "how many elements are on the periodic table", "intent": "oos", "entities": []} +{"text": "I need to move my meeting with Dr. Stefano Marchese.", "intent": "reschedule", "entities": [{"start": 31, "end": 51, "label": "practitioner_name"}]} +{"text": "I won't be able and attend, so please cancel.", "intent": "cancel", "entities": []} +{"text": "yup", "intent": "positive_reply", "entities": []} +{"text": "My plans have changed and I need to cancel.", "intent": "cancel", "entities": []} +{"text": "find articles on essay writing for beginners", "intent": "oos", "entities": []} +{"text": "that’s not correct", "intent": "negative_reply", "entities": []} +{"text": "Openings for a academic probation meeting with Dr. Phillips tomorrow.", "intent": "query_avail", "entities": [{"start": 15, "end": 41, "label": "appointment_type"}, {"start": 47, "end": 59, "label": "practitioner_name"}]} +{"text": "what time did i put in my first load of laundry", "intent": "oos", "entities": []} +{"text": "will am unavailable for my transfer credit evaluation and need to move it.", "intent": "reschedule", "entities": [{"start": 27, "end": 53, "label": "appointment_type"}]} +{"text": "when's the next mardi gras going to be", "intent": "oos", "entities": []} +{"text": "Reschedule my email with Professor Dott. Paolo Farina .", "intent": "reschedule", "entities": [{"start": 35, "end": 53, "label": "practitioner_name"}]} +{"text": "Availability for Prof. Müller on July 22nd.", "intent": "query_avail", "entities": [{"start": 17, "end": 29, "label": "practitioner_name"}]} +{"text": "that's correct", "intent": "positive_reply", "entities": []} +{"text": "Please cancel my next meeting.", "intent": "cancel", "entities": []} +{"text": "Cox 's preferred appointment slots.", "intent": "query_avail", "entities": [{"start": 0, "end": 3, "label": "practitioner_name"}]} +{"text": "List open slots for qualifying exam with Nelson .", "intent": "query_avail", "entities": [{"start": 21, "end": 36, "label": "appointment_type"}, {"start": 42, "end": 48, "label": "practitioner_name"}]} +{"text": "Mr. Peterson appointment.", "intent": "schedule", "entities": [{"start": 0, "end": 12, "label": "practitioner_name"}]} +{"text": "six open slots.", "intent": "query_avail", "entities": []} +{"text": "Cancel the meeting id Professor Mariani regarding my thesis, ID #180567 .", "intent": "cancel", "entities": [{"start": 22, "end": 39, "label": "practitioner_name"}, {"start": 64, "end": 71, "label": "appointment_id"}]} +{"text": "developers want to set up a quarterly review .", "intent": "schedule", "entities": [{"start": 28, "end": 44, "label": "appointment_type"}]} +{"text": "Help me book transfer credit evaluation .", "intent": "schedule", "entities": [{"start": 14, "end": 40, "label": "appointment_type"}]} +{"text": "I wanted to change the time of my defense rehearsal with Professor Mariani .", "intent": "reschedule", "entities": [{"start": 57, "end": 74, "label": "practitioner_name"}]} +{"text": "Dr. Edwards's open appointment slots.", "intent": "query_avail", "entities": [{"start": 0, "end": 11, "label": "practitioner_name"}]} +{"text": " cancel my attendance for the pre-defense meeting .", "intent": "cancel", "entities": [{"start": 30, "end": 49, "label": "appointment_type"}]} +{"text": "that can't be true", "intent": "negative_reply", "entities": []} +{"text": "I have to cancel.", "intent": "cancel", "entities": []} +{"text": "Appointment availability.", "intent": "query_avail", "entities": []} +{"text": "see you later!", "intent": "bye", "entities": []} +{"text": "Esposito's project meeting.", "intent": "schedule", "entities": [{"start": 0, "end": 8, "label": "practitioner_name"}, {"start": 11, "end": 26, "label": "appointment_type"}]} +{"text": "cancel my appointment #192560 .", "intent": "reschedule", "entities": [{"start": 22, "end": 29, "label": "appointment_id"}]} +{"text": "Can I get a dissertation proposal with Sanna .", "intent": "schedule", "entities": [{"start": 12, "end": 33, "label": "appointment_type"}, {"start": 39, "end": 44, "label": "practitioner_name"}]} +{"text": "Book : meeting with Marchetti .", "intent": "schedule", "entities": [{"start": 20, "end": 29, "label": "practitioner_name"}]} +{"text": "I need immediately reschedule my session with Prof. Garcia .", "intent": "reschedule", "entities": [{"start": 46, "end": 58, "label": "practitioner_name"}]} +{"text": "how are you this fine day", "intent": "greeting", "entities": []} +{"text": "Time slots = Prof. Parker .", "intent": "query_avail", "entities": [{"start": 13, "end": 25, "label": "practitioner_name"}]} +{"text": "Change in appointment.", "intent": "reschedule", "entities": []} +{"text": "Caruso 's |", "intent": "query_avail", "entities": [{"start": 0, "end": 6, "label": "practitioner_name"}]} +{"text": "Cancel my office hours appointment with Pagano.", "intent": "cancel", "entities": [{"start": 40, "end": 46, "label": "practitioner_name"}]} +{"text": "false", "intent": "negative_reply", "entities": []} +{"text": "Set a meeting with Professor Emily Clark ", "intent": "schedule", "entities": [{"start": 19, "end": 40, "label": "practitioner_name"}]} +{"text": "yes, that's affirmative", "intent": "positive_reply", "entities": []} +{"text": "I have to move something on my wrist", "intent": "reschedule", "entities": []} +{"text": "Advising resource availability.", "intent": "query_avail", "entities": []} +{"text": "Availability for this .", "intent": "query_avail", "entities": []} +{"text": "no, that is my response", "intent": "negative_reply", "entities": []} +{"text": "I'd like simply cancel #449703 .", "intent": "cancel", "entities": [{"start": 23, "end": 30, "label": "appointment_id"}]} +{"text": "I need to move my advising session, which is appointment #355543.", "intent": "reschedule", "entities": [{"start": 57, "end": 64, "label": "appointment_id"}]} +{"text": "My plans have changed so I need to cancel.", "intent": "cancel", "entities": []} +{"text": "I'm sorry, but I have to cancel my appointment.", "intent": "cancel", "entities": []} +{"text": "I can't make my research seminar on Tuesday.", "intent": "reschedule", "entities": [{"start": 16, "end": 32, "label": "appointment_type"}]} +{"text": "Delete your appointment.", "intent": "cancel", "entities": []} +{"text": "Dott. Marco Conti 's syntax for a course planning .", "intent": "query_avail", "entities": [{"start": 0, "end": 17, "label": "practitioner_name"}, {"start": 34, "end": 49, "label": "appointment_type"}]} +{"text": "do the romans still use the colosseum for anything today", "intent": "oos", "entities": []} +{"text": "would want a lab session with Dr. Santoro .", "intent": "schedule", "entities": [{"start": 13, "end": 24, "label": "appointment_type"}, {"start": 30, "end": 41, "label": "practitioner_name"}]} +{"text": "I want to book Professor Emily Clark as a registration appointment .", "intent": "schedule", "entities": [{"start": 15, "end": 36, "label": "practitioner_name"}, {"start": 42, "end": 66, "label": "appointment_type"}]} +{"text": "Can they schedule a meeting?", "intent": "schedule", "entities": []} +{"text": "Display schedule updated next week.", "intent": "query_avail", "entities": []} +{"text": "Availability of Professor D'Amico |", "intent": "query_avail", "entities": [{"start": 16, "end": 33, "label": "practitioner_name"}]} +{"text": "I'd like to get on the beach", "intent": "schedule", "entities": []} +{"text": "Free times for a progress review / week.", "intent": "query_avail", "entities": [{"start": 17, "end": 32, "label": "appointment_type"}]} +{"text": "Find Professor Fontana 's availability in a lab session .", "intent": "query_avail", "entities": [{"start": 5, "end": 22, "label": "practitioner_name"}, {"start": 44, "end": 55, "label": "appointment_type"}]} +{"text": "I want to arrange a faculty meeting.", "intent": "schedule", "entities": [{"start": 20, "end": 35, "label": "appointment_type"}]} +{"text": "requesting a meeting with Prof. Howard .", "intent": "schedule", "entities": [{"start": 26, "end": 38, "label": "practitioner_name"}]} +{"text": "I'd need to book a specialist visit for next week.", "intent": "schedule", "entities": [{"start": 19, "end": 35, "label": "appointment_type"}]} +{"text": "I am cancelling my pet checkup (ID #003644) with Prof. Howard.", "intent": "cancel", "entities": [{"start": 19, "end": 30, "label": "appointment_type"}, {"start": 35, "end": 42, "label": "appointment_id"}, {"start": 49, "end": 61, "label": "practitioner_name"}]} +{"text": "I need a one-on-one update Dr. Ward .", "intent": "schedule", "entities": [{"start": 27, "end": 35, "label": "practitioner_name"}]} +{"text": "I have please reschedule my driving lesson .", "intent": "reschedule", "entities": [{"start": 28, "end": 42, "label": "appointment_type"}]} +{"text": "Can I book Prof. Müller a grade review next Monday?", "intent": "schedule", "entities": [{"start": 11, "end": 23, "label": "practitioner_name"}, {"start": 27, "end": 39, "label": "appointment_type"}]} +{"text": "I would like not change my appointment, ID #222382 .", "intent": "reschedule", "entities": [{"start": 43, "end": 50, "label": "appointment_id"}]} +{"text": "Move my #993216 files Tuesday to Thursday.", "intent": "reschedule", "entities": [{"start": 8, "end": 15, "label": "appointment_id"}]} +{"text": "Check schedule = driving lesson availability.", "intent": "query_avail", "entities": [{"start": 17, "end": 31, "label": "appointment_type"}]} +{"text": "i meant no", "intent": "negative_reply", "entities": []} +{"text": "Need change schedule.", "intent": "schedule", "entities": []} +{"text": "List searches for a orientation session with Dr. Giordano .", "intent": "query_avail", "entities": [{"start": 20, "end": 39, "label": "appointment_type"}, {"start": 45, "end": 57, "label": "practitioner_name"}]} +{"text": "I have to postpone my office hours visit with Nowak.", "intent": "reschedule", "entities": [{"start": 46, "end": 51, "label": "practitioner_name"}]} +{"text": "Rossetti public calendar for dissertation defense s.", "intent": "query_avail", "entities": [{"start": 0, "end": 8, "label": "practitioner_name"}, {"start": 29, "end": 49, "label": "appointment_type"}]} +{"text": "Cancel the request with Dott. Luca Morelli regarding my thesis, ID #795492 .", "intent": "cancel", "entities": [{"start": 24, "end": 42, "label": "practitioner_name"}, {"start": 67, "end": 74, "label": "appointment_id"}]} +{"text": "Can I get a different time for my meeting with Rizzo?", "intent": "reschedule", "entities": [{"start": 47, "end": 52, "label": "practitioner_name"}]} +{"text": "Find new time for #536444.", "intent": "reschedule", "entities": [{"start": 18, "end": 25, "label": "appointment_id"}]} +{"text": "I want to substitute Mr. Rogers for a peer tutoring .", "intent": "schedule", "entities": [{"start": 21, "end": 31, "label": "practitioner_name"}, {"start": 38, "end": 51, "label": "appointment_type"}]} +{"text": "you have a group project session with Dott. Paolo Farina that I need to move.", "intent": "reschedule", "entities": [{"start": 11, "end": 32, "label": "appointment_type"}, {"start": 38, "end": 56, "label": "practitioner_name"}]} +{"text": "Cancel my meeting with Professor Mancini ", "intent": "cancel", "entities": [{"start": 33, "end": 40, "label": "practitioner_name"}]} +{"text": "I'd like to listen to Dr. Santoro .", "intent": "schedule", "entities": [{"start": 22, "end": 33, "label": "practitioner_name"}]} +{"text": "Book mental health counseling ", "intent": "schedule", "entities": [{"start": 5, "end": 29, "label": "appointment_type"}]} +{"text": "it was a pleasure talking to you, goodbye now", "intent": "bye", "entities": []} +{"text": "Find Professor Sala's availability for a eye exam.", "intent": "query_avail", "entities": [{"start": 5, "end": 19, "label": "practitioner_name"}, {"start": 41, "end": 49, "label": "appointment_type"}]} +{"text": "good night", "intent": "bye", "entities": []} +{"text": "Availability of Dr. Davide Monti for a client", "intent": "query_avail", "entities": [{"start": 16, "end": 32, "label": "practitioner_name"}]} +{"text": "I need to reschedule my booking #103401.", "intent": "reschedule", "entities": [{"start": 32, "end": 39, "label": "appointment_id"}]} +{"text": "I want to cancel my appointment with Dr. Stefano Marchese }", "intent": "cancel", "entities": [{"start": 37, "end": 57, "label": "practitioner_name"}]} +{"text": "I need to reschedule something.", "intent": "reschedule", "entities": []} +{"text": "I wanted to schedule a meeting with Richardson .", "intent": "schedule", "entities": [{"start": 36, "end": 46, "label": "practitioner_name"}]} +{"text": "My apologies, but I must cancel my psychologist appointment with Wright , ID #077573 }", "intent": "cancel", "entities": [{"start": 35, "end": 59, "label": "appointment_type"}, {"start": 65, "end": 71, "label": "practitioner_name"}, {"start": 77, "end": 84, "label": "appointment_id"}]} +{"text": "I would like to get my appointment #426171 back by an hour.", "intent": "reschedule", "entities": [{"start": 35, "end": 42, "label": "appointment_id"}]} +{"text": "Can you handle my appointment?", "intent": "cancel", "entities": []} +{"text": "Show function for equipment training s.", "intent": "query_avail", "entities": [{"start": 18, "end": 36, "label": "appointment_type"}]} +{"text": "remember my appointment with booking reference #564268 .", "intent": "cancel", "entities": [{"start": 47, "end": 54, "label": "appointment_id"}]} +{"text": "Let's book a internship check-in with Prof. Watson for this case", "intent": "schedule", "entities": [{"start": 13, "end": 32, "label": "appointment_type"}, {"start": 38, "end": 50, "label": "practitioner_name"}]} +{"text": "Show the booking calendar page Mr. Rodriguez .", "intent": "query_avail", "entities": [{"start": 31, "end": 44, "label": "practitioner_name"}]} +{"text": "Change booking #568999 , update financial aid consultation with Hill .", "intent": "reschedule", "entities": [{"start": 15, "end": 22, "label": "appointment_id"}, {"start": 32, "end": 58, "label": "appointment_type"}, {"start": 64, "end": 68, "label": "practitioner_name"}]} +{"text": "I need to cancel my appointment.", "intent": "cancel", "entities": []} +{"text": "all schedule openings.", "intent": "query_avail", "entities": []} +{"text": "I want to reschedule with Mr. Peterson .", "intent": "reschedule", "entities": [{"start": 26, "end": 38, "label": "practitioner_name"}]} +{"text": "negative for sure", "intent": "negative_reply", "entities": []} +{"text": "where are classes taught near me for c++", "intent": "oos", "entities": []} +{"text": "Cancel booking #675180, my career counseling with Dr. Martinez.", "intent": "cancel", "entities": [{"start": 15, "end": 22, "label": "appointment_id"}, {"start": 27, "end": 44, "label": "appointment_type"}, {"start": 50, "end": 62, "label": "practitioner_name"}]} +{"text": "I need to cancel my booking, number #746934 }", "intent": "cancel", "entities": [{"start": 36, "end": 43, "label": "appointment_id"}]} +{"text": "Can we schedule a group meeting with Dr. Santoro .", "intent": "schedule", "entities": [{"start": 37, "end": 48, "label": "practitioner_name"}]} +{"text": "Please confirm cancellation for #519932 ;", "intent": "cancel", "entities": [{"start": 32, "end": 39, "label": "appointment_id"}]} +{"text": "Find free time slots for a letter of recommendation request.", "intent": "query_avail", "entities": [{"start": 27, "end": 59, "label": "appointment_type"}]} +{"text": "I no longer require the meeting with Santini.", "intent": "cancel", "entities": [{"start": 37, "end": 44, "label": "practitioner_name"}]} +{"text": "I wanted to get a sales demo on the books.", "intent": "schedule", "entities": [{"start": 18, "end": 28, "label": "appointment_type"}]} +{"text": "Dott. Marco Conti 's calendar appears next month.", "intent": "query_avail", "entities": [{"start": 0, "end": 17, "label": "practitioner_name"}]} +{"text": "I need to change the time of my defense rehearsal with Dr. Davide Monti.", "intent": "reschedule", "entities": [{"start": 55, "end": 71, "label": "practitioner_name"}]} +{"text": "Check openings for a final presentation = Lombardi .", "intent": "query_avail", "entities": [{"start": 21, "end": 39, "label": "appointment_type"}, {"start": 42, "end": 50, "label": "practitioner_name"}]} +{"text": "see you later alligator", "intent": "bye", "entities": []} +{"text": "goodbye", "intent": "bye", "entities": []} +{"text": "I want to have a session.", "intent": "schedule", "entities": []} +{"text": "how much candy have i consumed this week", "intent": "oos", "entities": []} +{"text": "Void my booking: #387449.", "intent": "cancel", "entities": [{"start": 17, "end": 24, "label": "appointment_id"}]} +{"text": "that isn't correct", "intent": "negative_reply", "entities": []} +{"text": "I have to reschedule my immunization shot with Dott. Paolo Farina from tomorrow to next week.", "intent": "reschedule", "entities": [{"start": 24, "end": 41, "label": "appointment_type"}, {"start": 47, "end": 65, "label": "practitioner_name"}]} +{"text": "Is Professor Fontana free for a independent study meeting?", "intent": "schedule", "entities": [{"start": 3, "end": 20, "label": "practitioner_name"}, {"start": 32, "end": 57, "label": "appointment_type"}]} +{"text": "I have to cancel all therapy session with Professor Bruno .", "intent": "cancel", "entities": [{"start": 21, "end": 36, "label": "appointment_type"}, {"start": 42, "end": 57, "label": "practitioner_name"}]} +{"text": "it was nice to converse with you", "intent": "bye", "entities": []} +{"text": "Set up a tutorial with Prof. Bennett.", "intent": "schedule", "entities": [{"start": 23, "end": 36, "label": "practitioner_name"}]} +{"text": "I need to cancel my meeting about his thesis.", "intent": "cancel", "entities": []} +{"text": "they need to reschedule my appointment.", "intent": "reschedule", "entities": []} +{"text": "you like to set a meeting time.", "intent": "schedule", "entities": []} +{"text": "how do i get rid of blocked nose at home", "intent": "oos", "entities": []} +{"text": "I'd need to set a meeting time.", "intent": "schedule", "entities": []} +{"text": "^ Evans .", "intent": "schedule", "entities": [{"start": 2, "end": 7, "label": "practitioner_name"}]} +{"text": "Free times for a letter of recommendation request calendar week.", "intent": "query_avail", "entities": [{"start": 17, "end": 49, "label": "appointment_type"}]} +{"text": "Openings in lunar calendar.", "intent": "query_avail", "entities": []} +{"text": "Show available :", "intent": "query_avail", "entities": []} +{"text": "Please cancel and rebook my schedule", "intent": "reschedule", "entities": []} +{"text": "I will still be attending my meeting, ID #684309 , please cancel.", "intent": "cancel", "entities": [{"start": 41, "end": 48, "label": "appointment_id"}]} +{"text": "I need to cancel my meeting about the thesis.", "intent": "cancel", "entities": []} +{"text": "that would be true", "intent": "positive_reply", "entities": []} +{"text": "The project meeting with Gatti , ID #449703 , will be cancelled.", "intent": "cancel", "entities": [{"start": 25, "end": 30, "label": "practitioner_name"}, {"start": 36, "end": 43, "label": "appointment_id"}]} +{"text": "create a pamphlet on albert einsteins childhood", "intent": "oos", "entities": []} +{"text": "no that isn't the case", "intent": "negative_reply", "entities": []} +{"text": "Let's schedule your call with Greco .", "intent": "schedule", "entities": [{"start": 30, "end": 35, "label": "practitioner_name"}]} +{"text": "Need to speak to Ricci.", "intent": "schedule", "entities": [{"start": 17, "end": 22, "label": "practitioner_name"}]} +{"text": "select a parent-teacher conference for me.", "intent": "schedule", "entities": [{"start": 9, "end": 34, "label": "appointment_type"}]} +{"text": "Show extra free time.", "intent": "query_avail", "entities": []} +{"text": "Cancel the movie for me.", "intent": "cancel", "entities": []} +{"text": "Can you help me create #894207 ?", "intent": "reschedule", "entities": [{"start": 23, "end": 30, "label": "appointment_id"}]} +{"text": "I need to drop my IT support session with Prof. Scott ;", "intent": "cancel", "entities": [{"start": 18, "end": 36, "label": "appointment_type"}, {"start": 42, "end": 53, "label": "practitioner_name"}]} +{"text": "Arrange a meeting with Professor Bruno :", "intent": "schedule", "entities": [{"start": 23, "end": 38, "label": "practitioner_name"}]} +{"text": "yep", "intent": "positive_reply", "entities": []} +{"text": "that's incorrect!", "intent": "negative_reply", "entities": []} +{"text": "tell me how you are doing", "intent": "greeting", "entities": []} +{"text": "Professor Thomas : free times.", "intent": "query_avail", "entities": [{"start": 10, "end": 16, "label": "practitioner_name"}]} +{"text": "define free times for a orientation session .", "intent": "query_avail", "entities": [{"start": 24, "end": 43, "label": "appointment_type"}]} +{"text": "I need to cancel my meeting with Dott. Francesco Testa on Tuesday.", "intent": "cancel", "entities": [{"start": 33, "end": 54, "label": "practitioner_name"}]} +{"text": "^ Dott. Simone Marchetti 's free time.", "intent": "query_avail", "entities": [{"start": 2, "end": 24, "label": "practitioner_name"}]} +{"text": "I wish to have a portfolio review .", "intent": "schedule", "entities": [{"start": 17, "end": 33, "label": "appointment_type"}]} +{"text": "can you give me the standard tuning notes", "intent": "oos", "entities": []} +{"text": " my upcoming physical therapy session .", "intent": "cancel", "entities": [{"start": 13, "end": 37, "label": "appointment_type"}]} +{"text": "yup, that's true", "intent": "positive_reply", "entities": []} +{"text": "Set up the meeting with Professor Mariani .", "intent": "schedule", "entities": [{"start": 24, "end": 41, "label": "practitioner_name"}]} +{"text": "yo", "intent": "greeting", "entities": []} +{"text": "Free times for a faculty candidate interview with Professor Cox.", "intent": "query_avail", "entities": [{"start": 17, "end": 44, "label": "appointment_type"}, {"start": 60, "end": 63, "label": "practitioner_name"}]} +{"text": "My appointment, #877240 , needs to be notified", "intent": "cancel", "entities": [{"start": 16, "end": 23, "label": "appointment_id"}]} +{"text": "that's not right, so no", "intent": "negative_reply", "entities": []} +{"text": "Please cancel my writing center appointment.", "intent": "cancel", "entities": [{"start": 17, "end": 43, "label": "appointment_type"}]} +{"text": "I will not be able to attend my scheduled patient ID #684466 .", "intent": "cancel", "entities": [{"start": 53, "end": 60, "label": "appointment_id"}]} +{"text": "Check Bianchi check schedule for a presentation rehearsal on Friday.", "intent": "query_avail", "entities": [{"start": 6, "end": 13, "label": "practitioner_name"}, {"start": 35, "end": 57, "label": "appointment_type"}]} +{"text": "Free slots with Turner this afternoon.", "intent": "query_avail", "entities": [{"start": 16, "end": 22, "label": "practitioner_name"}]} +{"text": "Can you change my appointment time?", "intent": "reschedule", "entities": []} +{"text": " confirm cancellation for #420831 .", "intent": "cancel", "entities": [{"start": 26, "end": 33, "label": "appointment_id"}]} +{"text": "Please book a research group meeting.", "intent": "schedule", "entities": [{"start": 14, "end": 36, "label": "appointment_type"}]} +{"text": "Can we reschedule my home repair estimate, ID #587130?", "intent": "reschedule", "entities": [{"start": 21, "end": 41, "label": "appointment_type"}, {"start": 46, "end": 53, "label": "appointment_id"}]} +{"text": "Check for curriculum committee meeting |", "intent": "query_avail", "entities": [{"start": 10, "end": 38, "label": "appointment_type"}]} +{"text": "that is so false", "intent": "negative_reply", "entities": []} +{"text": "My apologies, therefore I must cancel my annual physical with Galli , ID #334313 .", "intent": "cancel", "entities": [{"start": 41, "end": 56, "label": "appointment_type"}, {"start": 62, "end": 67, "label": "practitioner_name"}, {"start": 73, "end": 80, "label": "appointment_id"}]} +{"text": "what's the best time of year to plant a tree", "intent": "oos", "entities": []} +{"text": "hi, how are you today", "intent": "greeting", "entities": []} +{"text": "I have to reschedule my fieldwork briefing with Colombo from monday to next week.", "intent": "reschedule", "entities": [{"start": 24, "end": 42, "label": "appointment_type"}, {"start": 48, "end": 55, "label": "practitioner_name"}]} +{"text": "hey, how's it going", "intent": "greeting", "entities": []} +{"text": "that would be \"no", "intent": "negative_reply", "entities": []} +{"text": "Openings with Ricci.", "intent": "query_avail", "entities": [{"start": 14, "end": 19, "label": "practitioner_name"}]} +{"text": "have a good day, bye", "intent": "bye", "entities": []} +{"text": "Find me a time machine a presentation rehearsal with Miller .", "intent": "schedule", "entities": [{"start": 25, "end": 47, "label": "appointment_type"}, {"start": 53, "end": 59, "label": "practitioner_name"}]} +{"text": "I need you move my meeting with Costa .", "intent": "reschedule", "entities": [{"start": 32, "end": 37, "label": "practitioner_name"}]} +{"text": "I want to see Dr. Wilson .", "intent": "schedule", "entities": [{"start": 14, "end": 24, "label": "practitioner_name"}]} +{"text": "List all openings for a post-exam review :", "intent": "query_avail", "entities": [{"start": 24, "end": 40, "label": "appointment_type"}]} +{"text": "i don't like that, no", "intent": "negative_reply", "entities": []} +{"text": "ai is a helpful item to have in my home, thank you", "intent": "positive_reply", "entities": []} +{"text": "I want to move my meeting with Dott. Marco Conti .", "intent": "reschedule", "entities": [{"start": 31, "end": 48, "label": "practitioner_name"}]} +{"text": "Please cancel my application for the tax consultation .", "intent": "cancel", "entities": [{"start": 37, "end": 53, "label": "appointment_type"}]} +{"text": "Please help you move my quarterly review with Harris .", "intent": "reschedule", "entities": [{"start": 24, "end": 40, "label": "appointment_type"}, {"start": 46, "end": 52, "label": "practitioner_name"}]} +{"text": "I need to book a time to discuss my dissertation with Bell.", "intent": "schedule", "entities": [{"start": 54, "end": 58, "label": "practitioner_name"}]} +{"text": "I'd like to cancel the meeting you have with Esposito .", "intent": "cancel", "entities": [{"start": 45, "end": 53, "label": "practitioner_name"}]} +{"text": "Find an ;", "intent": "query_avail", "entities": []} +{"text": "I must proceed with Marchetti .", "intent": "schedule", "entities": [{"start": 20, "end": 29, "label": "practitioner_name"}]} +{"text": "I can't make a advising session with Professor Bernardi .", "intent": "reschedule", "entities": [{"start": 37, "end": 55, "label": "practitioner_name"}]} +{"text": "I'd like to move my thesis ?", "intent": "reschedule", "entities": []} +{"text": "I need to see Mr. Barnes about my job", "intent": "schedule", "entities": [{"start": 14, "end": 24, "label": "practitioner_name"}]} +{"text": "\\ #676289 .", "intent": "reschedule", "entities": [{"start": 2, "end": 9, "label": "appointment_id"}]} +{"text": "I need ta postpone my session.", "intent": "reschedule", "entities": []} +{"text": "Get a postdoctoral interview with James .", "intent": "schedule", "entities": [{"start": 7, "end": 29, "label": "appointment_type"}, {"start": 35, "end": 40, "label": "practitioner_name"}]} +{"text": "they want to reschedule booking #990686 .", "intent": "reschedule", "entities": [{"start": 32, "end": 39, "label": "appointment_id"}]} +{"text": "I have to reschedule with mentorship meeting .", "intent": "reschedule", "entities": [{"start": 26, "end": 44, "label": "appointment_type"}]} +{"text": "it is no", "intent": "negative_reply", "entities": []} +{"text": "Please process a cancellation for #676289.", "intent": "cancel", "entities": [{"start": 34, "end": 41, "label": "appointment_id"}]} +{"text": "what's the most effective bug repellant", "intent": "oos", "entities": []} +{"text": "you have appointment #531844 with De Angelis that needs rescheduling.", "intent": "reschedule", "entities": [{"start": 21, "end": 28, "label": "appointment_id"}, {"start": 34, "end": 44, "label": "practitioner_name"}]} +{"text": "I'd like to cancel.", "intent": "cancel", "entities": []} +{"text": "Times available by book.", "intent": "query_avail", "entities": []} +{"text": "I want a research ethics review with Amato.", "intent": "schedule", "entities": [{"start": 9, "end": 31, "label": "appointment_type"}, {"start": 37, "end": 42, "label": "practitioner_name"}]} +{"text": "hola!", "intent": "greeting", "entities": []} +{"text": "Please accept my apologies, but I must cancel your meeting.", "intent": "cancel", "entities": []} +{"text": "do I get a mock interview with Stewart ?", "intent": "schedule", "entities": [{"start": 11, "end": 25, "label": "appointment_type"}, {"start": 31, "end": 38, "label": "practitioner_name"}]} +{"text": "\\ cancel my attendance for the alumni interview .", "intent": "cancel", "entities": [{"start": 31, "end": 47, "label": "appointment_type"}]} +{"text": "I have to cancel my haircut }", "intent": "cancel", "entities": [{"start": 20, "end": 27, "label": "appointment_type"}]} +{"text": "I intend to change the date for #017187 .", "intent": "reschedule", "entities": [{"start": 32, "end": 39, "label": "appointment_id"}]} +{"text": "examination for an oral exam.", "intent": "query_avail", "entities": []} +{"text": "that's false", "intent": "negative_reply", "entities": []} +{"text": "I need a mentorship meeting with my advisor, Dott.ssa Chiara Negri.", "intent": "schedule", "entities": [{"start": 9, "end": 27, "label": "appointment_type"}, {"start": 45, "end": 66, "label": "practitioner_name"}]} +{"text": "I want to schedule a peer advising with Dr. Giordano ;", "intent": "schedule", "entities": [{"start": 21, "end": 34, "label": "appointment_type"}, {"start": 40, "end": 52, "label": "practitioner_name"}]} +{"text": "Availability for this week.", "intent": "query_avail", "entities": []} +{"text": "Alter my appointment.", "intent": "reschedule", "entities": []} +{"text": "I decided to cancel my booking, number #680889 .", "intent": "cancel", "entities": [{"start": 39, "end": 46, "label": "appointment_id"}]} +{"text": "Cancel all my appointments from Wright .", "intent": "cancel", "entities": [{"start": 32, "end": 38, "label": "practitioner_name"}]} +{"text": "Schedule Villa for a thesis discussion.", "intent": "schedule", "entities": [{"start": 9, "end": 14, "label": "practitioner_name"}, {"start": 21, "end": 38, "label": "appointment_type"}]} +{"text": "are you sure i don’t think that’s correct", "intent": "negative_reply", "entities": []} +{"text": "Get rid of appointment #204345.", "intent": "cancel", "entities": [{"start": 23, "end": 30, "label": "appointment_id"}]} +{"text": "I need to change your time for my curriculum committee meeting with Prof.ssa Gallo (ID: #569400 ).", "intent": "reschedule", "entities": [{"start": 34, "end": 62, "label": "appointment_type"}, {"start": 68, "end": 82, "label": "practitioner_name"}, {"start": 88, "end": 95, "label": "appointment_id"}]} +{"text": "Shift shift course registration help to another day.", "intent": "reschedule", "entities": [{"start": 12, "end": 36, "label": "appointment_type"}]} +{"text": "I would like to cancel my fieldwork briefing with Collins. The ID is #600778.", "intent": "cancel", "entities": [{"start": 26, "end": 44, "label": "appointment_type"}, {"start": 50, "end": 57, "label": "practitioner_name"}, {"start": 69, "end": 76, "label": "appointment_id"}]} +{"text": "Please schedule a new appointment for me.", "intent": "schedule", "entities": []} +{"text": "Openings with Dott.ssa Chiara Negri ;", "intent": "query_avail", "entities": [{"start": 14, "end": 35, "label": "practitioner_name"}]} +{"text": "it was great to talk to you", "intent": "bye", "entities": []} +{"text": "please need to move my meeting with Serra .", "intent": "reschedule", "entities": [{"start": 36, "end": 41, "label": "practitioner_name"}]} +{"text": "I need to have a client call.", "intent": "schedule", "entities": [{"start": 17, "end": 28, "label": "appointment_type"}]} +{"text": "List all free times containing a discussione tesi with Torres .", "intent": "query_avail", "entities": [{"start": 33, "end": 49, "label": "appointment_type"}, {"start": 55, "end": 61, "label": "practitioner_name"}]} +{"text": "I need this appointment with Professor Vitali .", "intent": "schedule", "entities": [{"start": 29, "end": 45, "label": "practitioner_name"}]} +{"text": "write book a postdoctoral interview with Prof. Bennett for this Friday.", "intent": "schedule", "entities": [{"start": 13, "end": 35, "label": "appointment_type"}, {"start": 41, "end": 54, "label": "practitioner_name"}]} +{"text": "I'd like to talk to Rinaldi.", "intent": "schedule", "entities": [{"start": 20, "end": 27, "label": "practitioner_name"}]} +{"text": "it's good to see you", "intent": "greeting", "entities": []} +{"text": "Availability of Dr. Giovanni Galli becomes a internship interview .", "intent": "query_avail", "entities": [{"start": 16, "end": 34, "label": "practitioner_name"}, {"start": 45, "end": 65, "label": "appointment_type"}]} +{"text": "Reschedule my IT support session , appointment _ #192560 .", "intent": "reschedule", "entities": [{"start": 14, "end": 32, "label": "appointment_type"}, {"start": 49, "end": 56, "label": "appointment_id"}]} +{"text": "Cancel the appointment for me.", "intent": "cancel", "entities": []} +{"text": "I must have appointment #974214 .", "intent": "cancel", "entities": [{"start": 24, "end": 31, "label": "appointment_id"}]} +{"text": "now move my scheduled meeting.", "intent": "reschedule", "entities": []} +{"text": "I am writing to write my financial advising .", "intent": "reschedule", "entities": [{"start": 25, "end": 43, "label": "appointment_type"}]} +{"text": "nice to speak with you", "intent": "bye", "entities": []} +{"text": "how have you been doing", "intent": "greeting", "entities": []} +{"text": "how much does a nintendo switch cost", "intent": "oos", "entities": []} +{"text": "My schedule has changed, I need to reschedule.", "intent": "reschedule", "entities": []} +{"text": "I'd like to cancel my appointment with Dr. Davide Monti .", "intent": "cancel", "entities": [{"start": 39, "end": 55, "label": "practitioner_name"}]} +{"text": "thank you!", "intent": "positive_reply", "entities": []} +{"text": "Need to book a psychologist appointment ", "intent": "schedule", "entities": [{"start": 15, "end": 39, "label": "appointment_type"}]} +{"text": "Dr. Peterson 's regular appointment slots.", "intent": "query_avail", "entities": [{"start": 0, "end": 12, "label": "practitioner_name"}]} +{"text": "it was nice to catch up with you", "intent": "bye", "entities": []} +{"text": "Free time inquiry for a personal training session.", "intent": "query_avail", "entities": [{"start": 24, "end": 49, "label": "appointment_type"}]} +{"text": "eight free times.", "intent": "query_avail", "entities": []} +{"text": "Let's find the alternative time for my chat with James .", "intent": "reschedule", "entities": [{"start": 49, "end": 54, "label": "practitioner_name"}]} +{"text": "Arrange a meeting, please.", "intent": "schedule", "entities": []} +{"text": "that'd be a no", "intent": "negative_reply", "entities": []} +{"text": "I need to associate my comprehensive exam with Lombardi , ID is #314123 .", "intent": "reschedule", "entities": [{"start": 23, "end": 41, "label": "appointment_type"}, {"start": 47, "end": 55, "label": "practitioner_name"}, {"start": 64, "end": 71, "label": "appointment_id"}]} +{"text": "I'm afraid I decide to cancel my meeting.", "intent": "cancel", "entities": []} +{"text": "no, that is not correct", "intent": "negative_reply", "entities": []} +{"text": "Can I make an appointment for a client presentation?", "intent": "schedule", "entities": [{"start": 32, "end": 51, "label": "appointment_type"}]} +{"text": "Find available slots.", "intent": "query_avail", "entities": []} +{"text": "Can i cancel my appointment?", "intent": "cancel", "entities": []} +{"text": "I need an appointment for Baker .", "intent": "schedule", "entities": [{"start": 26, "end": 31, "label": "practitioner_name"}]} +{"text": "we need to have a Ph.D. defense .", "intent": "schedule", "entities": [{"start": 18, "end": 31, "label": "appointment_type"}]} +{"text": "update schedule for x-ray s.", "intent": "query_avail", "entities": [{"start": 20, "end": 25, "label": "appointment_type"}]} +{"text": "compile a list of articles pertaining to venture capital funding for me", "intent": "oos", "entities": []} +{"text": "Let's use my colloquio di orientamento .", "intent": "reschedule", "entities": [{"start": 13, "end": 38, "label": "appointment_type"}]} +{"text": "Ms. Davis's calendar for a letter of recommendation request next month.", "intent": "query_avail", "entities": [{"start": 0, "end": 9, "label": "practitioner_name"}, {"start": 27, "end": 59, "label": "appointment_type"}]} +{"text": "Check Dr. Smith 's schedule for a specialist visit until Friday.", "intent": "query_avail", "entities": [{"start": 6, "end": 15, "label": "practitioner_name"}, {"start": 34, "end": 50, "label": "appointment_type"}]} +{"text": "I need to specify a project meeting for my project with Dr. Sofia Colombo .", "intent": "schedule", "entities": [{"start": 20, "end": 35, "label": "appointment_type"}, {"start": 56, "end": 73, "label": "practitioner_name"}]} +{"text": "Can we find an alternative expression for #420645 ?", "intent": "reschedule", "entities": [{"start": 42, "end": 49, "label": "appointment_id"}]} +{"text": "Check schedule availability.", "intent": "query_avail", "entities": []} +{"text": "replaces my tenure meeting with Professor Sartori , reference #536444 .", "intent": "reschedule", "entities": [{"start": 12, "end": 26, "label": "appointment_type"}, {"start": 32, "end": 49, "label": "practitioner_name"}, {"start": 62, "end": 69, "label": "appointment_id"}]} +{"text": "Shift my meeting with Dr. Phillips until 3pm.", "intent": "reschedule", "entities": [{"start": 22, "end": 34, "label": "practitioner_name"}]} +{"text": "I am looking for my financial advising and need to move it.", "intent": "reschedule", "entities": [{"start": 20, "end": 38, "label": "appointment_type"}]} +{"text": "i vote yes", "intent": "positive_reply", "entities": []} +{"text": "Postpone my session with Caruso >", "intent": "reschedule", "entities": [{"start": 25, "end": 31, "label": "practitioner_name"}]} +{"text": "The lab session with Mr. Rodriguez, booking #901602, needs to be cancelled.", "intent": "cancel", "entities": [{"start": 21, "end": 34, "label": "practitioner_name"}, {"start": 44, "end": 51, "label": "appointment_id"}]} +{"text": "requesting an appointment.", "intent": "reschedule", "entities": []} +{"text": "I need your new time slot.", "intent": "reschedule", "entities": []} +{"text": "Check for ?", "intent": "query_avail", "entities": []} +{"text": "what do you feel like doing", "intent": "greeting", "entities": []} +{"text": "I need to cancel the appointment with confirmation notice #169618 .", "intent": "cancel", "entities": [{"start": 58, "end": 65, "label": "appointment_id"}]} +{"text": "I need to move my meeting.", "intent": "reschedule", "entities": []} +{"text": "Let's schedule entry thesis committee meeting .", "intent": "schedule", "entities": [{"start": 21, "end": 45, "label": "appointment_type"}]} +{"text": " my 1-on-1 .", "intent": "reschedule", "entities": [{"start": 4, "end": 10, "label": "appointment_type"}]} +{"text": "no that is wrong", "intent": "negative_reply", "entities": []} +{"text": "maximum available slots.", "intent": "query_avail", "entities": []} +{"text": "Reschedule #420645 }", "intent": "reschedule", "entities": [{"start": 11, "end": 18, "label": "appointment_id"}]} +{"text": "good morning, ai", "intent": "greeting", "entities": []} +{"text": "I have an appointment I need to attend", "intent": "reschedule", "entities": []} +{"text": "are you feeling okay", "intent": "greeting", "entities": []} +{"text": "Book Wright.", "intent": "schedule", "entities": [{"start": 5, "end": 11, "label": "practitioner_name"}]} +{"text": "Is it too late to change his appointment time?", "intent": "reschedule", "entities": []} +{"text": "nice, excellent!", "intent": "positive_reply", "entities": []} +{"text": "I need to see Professor Barbieri about my grades.", "intent": "schedule", "entities": [{"start": 14, "end": 32, "label": "practitioner_name"}]} +{"text": "Cancel your booking.", "intent": "cancel", "entities": []} +{"text": "Office hours with Colombo.", "intent": "query_avail", "entities": [{"start": 18, "end": 25, "label": "practitioner_name"}]} +{"text": "I have an sync-up with Prof. Müller that I need to define", "intent": "cancel", "entities": [{"start": 10, "end": 17, "label": "appointment_type"}, {"start": 23, "end": 35, "label": "practitioner_name"}]} +{"text": "I need an internship interview slot.", "intent": "schedule", "entities": [{"start": 10, "end": 30, "label": "appointment_type"}]} +{"text": "Please accept my apologies, but I should cancel my meeting.", "intent": "cancel", "entities": []} +{"text": "that is actually false", "intent": "negative_reply", "entities": []} +{"text": "Change my plans, I need to reschedule with Gatti .", "intent": "reschedule", "entities": [{"start": 43, "end": 48, "label": "practitioner_name"}]} +{"text": "hey there!", "intent": "greeting", "entities": []} +{"text": "I have please postpone my office hours visit with Thompson .", "intent": "reschedule", "entities": [{"start": 50, "end": 58, "label": "practitioner_name"}]} +{"text": "how's it hanging", "intent": "greeting", "entities": []} +{"text": "thank you ever so much for that!", "intent": "positive_reply", "entities": []} +{"text": "hey what's up", "intent": "greeting", "entities": []} +{"text": "Availability for the oral exam.", "intent": "query_avail", "entities": []} +{"text": "I'd like to request a cancellation.", "intent": "cancel", "entities": []} +{"text": "List all free times for Prof. Bennett ;", "intent": "query_avail", "entities": [{"start": 24, "end": 37, "label": "practitioner_name"}]} +{"text": "List open slots.", "intent": "query_avail", "entities": []} +{"text": "I want to move my appointment with Romano, ID #419544.", "intent": "reschedule", "entities": [{"start": 35, "end": 41, "label": "practitioner_name"}, {"start": 46, "end": 53, "label": "appointment_id"}]} +{"text": "I must cancel appointments #365560 .", "intent": "cancel", "entities": [{"start": 27, "end": 34, "label": "appointment_id"}]} +{"text": "i had fun speaking with you", "intent": "bye", "entities": []} +{"text": "no, that is invalid", "intent": "negative_reply", "entities": []} +{"text": "negatory", "intent": "negative_reply", "entities": []} +{"text": "that would be false", "intent": "negative_reply", "entities": []} +{"text": "i like to change the time of my one-on-one .", "intent": "reschedule", "entities": [{"start": 32, "end": 42, "label": "appointment_type"}]} +{"text": "Availability of Prof. Murphy database", "intent": "query_avail", "entities": [{"start": 16, "end": 28, "label": "practitioner_name"}]} +{"text": "Free times for a orientation session with Dr. Giovanni Galli next week.", "intent": "query_avail", "entities": [{"start": 17, "end": 36, "label": "appointment_type"}, {"start": 42, "end": 60, "label": "practitioner_name"}]} +{"text": "Please remove the alumni interview with Mr. Adams from my schedule.", "intent": "cancel", "entities": [{"start": 18, "end": 34, "label": "appointment_type"}, {"start": 40, "end": 49, "label": "practitioner_name"}]} +{"text": "that isn't right", "intent": "negative_reply", "entities": []} +{"text": "Cancel my lab file with Walker .", "intent": "cancel", "entities": [{"start": 24, "end": 30, "label": "practitioner_name"}]} +{"text": "Schedule a study group meeting \\ Dr. Wilson .", "intent": "schedule", "entities": [{"start": 11, "end": 30, "label": "appointment_type"}, {"start": 33, "end": 43, "label": "practitioner_name"}]} +{"text": "Professor Sartori 's calendar for per month.", "intent": "query_avail", "entities": [{"start": 0, "end": 17, "label": "practitioner_name"}]} +{"text": "how've you been feeling", "intent": "greeting", "entities": []} +{"text": "Free times for a final project review with parameter Hill .", "intent": "query_avail", "entities": [{"start": 17, "end": 37, "label": "appointment_type"}, {"start": 53, "end": 57, "label": "practitioner_name"}]} +{"text": "Book office hours.", "intent": "schedule", "entities": []} +{"text": "Find the time for #077573 .", "intent": "reschedule", "entities": [{"start": 18, "end": 25, "label": "appointment_id"}]} +{"text": "how have you been", "intent": "greeting", "entities": []} +{"text": "hello there ai", "intent": "greeting", "entities": []} +{"text": "if plans have changed, can I move my esame orale ?", "intent": "reschedule", "entities": [{"start": 37, "end": 48, "label": "appointment_type"}]} +{"text": "hi how is everything", "intent": "greeting", "entities": []} +{"text": "I want to cancel my appointment with Prof. Bennett.", "intent": "cancel", "entities": [{"start": 37, "end": 50, "label": "practitioner_name"}]} +{"text": "I can't compare my dean's meeting (ID #962592 ) with Ms. Mitchell .", "intent": "reschedule", "entities": [{"start": 19, "end": 33, "label": "appointment_type"}, {"start": 38, "end": 45, "label": "appointment_id"}, {"start": 53, "end": 65, "label": "practitioner_name"}]} +{"text": "I have to cancel my meeting.", "intent": "cancel", "entities": []} +{"text": "I want to change my appointment with Dr. Peterson ", "intent": "reschedule", "entities": [{"start": 37, "end": 49, "label": "practitioner_name"}]} +{"text": "hiya!", "intent": "greeting", "entities": []} +{"text": "List _ openings for Conti .", "intent": "query_avail", "entities": [{"start": 20, "end": 25, "label": "practitioner_name"}]} +{"text": "that is overwhelmingly false", "intent": "negative_reply", "entities": []} +{"text": "Can we find an integer slot for #514453 ?", "intent": "reschedule", "entities": [{"start": 32, "end": 39, "label": "appointment_id"}]} +{"text": "Please confirm the cancellation of booking #519932, my letter of recommendation request.", "intent": "cancel", "entities": [{"start": 43, "end": 50, "label": "appointment_id"}, {"start": 55, "end": 87, "label": "appointment_type"}]} +{"text": "I am about to cancel my appointment.", "intent": "cancel", "entities": []} +{"text": "Is it too risky to change my appointment time?", "intent": "reschedule", "entities": []} +{"text": "I would like you reschedule my writing center appointment with Longo . The ID is #675180 .", "intent": "reschedule", "entities": [{"start": 31, "end": 57, "label": "appointment_type"}, {"start": 63, "end": 68, "label": "practitioner_name"}, {"start": 81, "end": 88, "label": "appointment_id"}]} +{"text": "Let's start a call with Dr. Wood .", "intent": "schedule", "entities": [{"start": 24, "end": 32, "label": "practitioner_name"}]} +{"text": "i accept my apologies, but I must cancel my meeting.", "intent": "cancel", "entities": []} +{"text": "I need just schedule my thesis defense with Santini .", "intent": "schedule", "entities": [{"start": 44, "end": 51, "label": "practitioner_name"}]} +{"text": "Show Prof. Howard's openings for a departmental meeting this Friday.", "intent": "query_avail", "entities": [{"start": 5, "end": 17, "label": "practitioner_name"}, {"start": 35, "end": 55, "label": "appointment_type"}]} +{"text": "you are correct", "intent": "positive_reply", "entities": []} +{"text": "yes that is right", "intent": "positive_reply", "entities": []} +{"text": "Openings for tomorrow.", "intent": "query_avail", "entities": []} +{"text": "Prof. Murphy's schedule for a study group meeting.", "intent": "query_avail", "entities": [{"start": 0, "end": 12, "label": "practitioner_name"}, {"start": 30, "end": 49, "label": "appointment_type"}]} +{"text": "I have provided #568999 with Professor Schmidt that needs rescheduling.", "intent": "reschedule", "entities": [{"start": 16, "end": 23, "label": "appointment_id"}, {"start": 29, "end": 46, "label": "practitioner_name"}]} +{"text": "Cancel !", "intent": "cancel", "entities": []} +{"text": "until next time!", "intent": "bye", "entities": []} +{"text": "can a robot really travel back in time", "intent": "oos", "entities": []} +{"text": "hey how's it going", "intent": "greeting", "entities": []} +{"text": "Reschedule the letter of recommendation request with Professor Vitali , \\", "intent": "reschedule", "entities": [{"start": 15, "end": 47, "label": "appointment_type"}, {"start": 53, "end": 69, "label": "practitioner_name"}]} +{"text": "why hello", "intent": "greeting", "entities": []} +{"text": "how is everything with you", "intent": "greeting", "entities": []} +{"text": "Time for first meeting.", "intent": "schedule", "entities": []} +{"text": "registered for Coppola on July 22nd.", "intent": "query_avail", "entities": [{"start": 15, "end": 22, "label": "practitioner_name"}]} +{"text": "Display the schedule of Villa for a equipment training file", "intent": "query_avail", "entities": [{"start": 24, "end": 29, "label": "practitioner_name"}, {"start": 36, "end": 54, "label": "appointment_type"}]} +{"text": "The business session with Mr. Rogers , booking #437573 , needs to be cancelled.", "intent": "cancel", "entities": [{"start": 26, "end": 36, "label": "practitioner_name"}, {"start": 47, "end": 54, "label": "appointment_id"}]} +{"text": "we want to cancel my financial aid consultation with Dr. King .", "intent": "cancel", "entities": [{"start": 21, "end": 47, "label": "appointment_type"}, {"start": 53, "end": 61, "label": "practitioner_name"}]} +{"text": "Check data availability.", "intent": "query_avail", "entities": []} +{"text": "are things going well for you", "intent": "greeting", "entities": []} +{"text": "no thanks", "intent": "negative_reply", "entities": []} +{"text": "we won't make it, so please cancel.", "intent": "cancel", "entities": []} +{"text": "Show the booking calendar for Professor Mariani.", "intent": "query_avail", "entities": [{"start": 30, "end": 47, "label": "practitioner_name"}]} +{"text": "Parisi's open slots for a research seminar.", "intent": "query_avail", "entities": [{"start": 0, "end": 6, "label": "practitioner_name"}, {"start": 26, "end": 42, "label": "appointment_type"}]} +{"text": "Dr. King curriculum planning ;", "intent": "schedule", "entities": [{"start": 0, "end": 8, "label": "practitioner_name"}, {"start": 9, "end": 28, "label": "appointment_type"}]} +{"text": "I need to cancel the guest lecture with Prof. David Johnson. The booking number is #975878.", "intent": "cancel", "entities": [{"start": 21, "end": 34, "label": "appointment_type"}, {"start": 40, "end": 59, "label": "practitioner_name"}, {"start": 83, "end": 90, "label": "appointment_id"}]} +{"text": "List of slots for Conti .", "intent": "query_avail", "entities": [{"start": 18, "end": 23, "label": "practitioner_name"}]} +{"text": "let me know how you are doing", "intent": "greeting", "entities": []} +{"text": "adios!", "intent": "bye", "entities": []} +{"text": "no that is not right", "intent": "negative_reply", "entities": []} +{"text": "please need to find a different time for my meeting.", "intent": "reschedule", "entities": []} +{"text": "appreciate the help", "intent": "positive_reply", "entities": []} +{"text": "Can I book Evans for a course selection advising until Monday?", "intent": "schedule", "entities": [{"start": 11, "end": 16, "label": "practitioner_name"}, {"start": 23, "end": 48, "label": "appointment_type"}]} +{"text": "I'd like to book an appointment.", "intent": "schedule", "entities": []} +{"text": "i've got to run now", "intent": "bye", "entities": []} +{"text": "Show openings for next Friday.", "intent": "query_avail", "entities": []} +{"text": "Free times for instance language proficiency test with Professor Torres .", "intent": "query_avail", "entities": [{"start": 24, "end": 49, "label": "appointment_type"}, {"start": 65, "end": 71, "label": "practitioner_name"}]} +{"text": "Change an .", "intent": "reschedule", "entities": []} +{"text": "List open for a guest lecture with Esposito .", "intent": "query_avail", "entities": [{"start": 17, "end": 30, "label": "appointment_type"}, {"start": 36, "end": 44, "label": "practitioner_name"}]} +{"text": "I have to cancel appointment #692463 = Collins .", "intent": "cancel", "entities": [{"start": 29, "end": 36, "label": "appointment_id"}, {"start": 39, "end": 46, "label": "practitioner_name"}]} +{"text": "Reschedule my consultation , appointment ID #894207 }", "intent": "reschedule", "entities": [{"start": 14, "end": 26, "label": "appointment_type"}, {"start": 44, "end": 51, "label": "appointment_id"}]} +{"text": "I'm looking at schedule a alumni interview .", "intent": "schedule", "entities": [{"start": 26, "end": 42, "label": "appointment_type"}]} +{"text": "List schedule openings for Messina |", "intent": "query_avail", "entities": [{"start": 27, "end": 34, "label": "practitioner_name"}]} +{"text": "The appointment with Prof. Scott is little longer needed.", "intent": "cancel", "entities": [{"start": 21, "end": 32, "label": "practitioner_name"}]} +{"text": "nada", "intent": "negative_reply", "entities": []} +{"text": "your help is appreciated", "intent": "positive_reply", "entities": []} +{"text": "I want to write Hall for a IT support session .", "intent": "schedule", "entities": [{"start": 16, "end": 20, "label": "practitioner_name"}, {"start": 27, "end": 45, "label": "appointment_type"}]} +{"text": "Can we push my appointment #150062 to the server", "intent": "reschedule", "entities": [{"start": 27, "end": 34, "label": "appointment_id"}]} +{"text": "Remove my appointment in the calendar.", "intent": "cancel", "entities": []} +{"text": "Find new entries for #886239 .", "intent": "reschedule", "entities": [{"start": 21, "end": 28, "label": "appointment_id"}]} +{"text": "Find parameters for a pre-defense meeting .", "intent": "schedule", "entities": [{"start": 22, "end": 41, "label": "appointment_type"}]} +{"text": "Open appointment slots.", "intent": "query_avail", "entities": []} +{"text": "I'd like to start my reservation with Professor Cattaneo .", "intent": "cancel", "entities": [{"start": 38, "end": 56, "label": "practitioner_name"}]} +{"text": "how many miles does my car currently have", "intent": "oos", "entities": []} +{"text": "Please copy and rebook my appointment.", "intent": "reschedule", "entities": []} +{"text": "when was the theory of evolution first considered", "intent": "oos", "entities": []} +{"text": "Free time inquiry for assignment consultation .", "intent": "query_avail", "entities": [{"start": 33, "end": 45, "label": "appointment_type"}]} +{"text": "Check for current times.", "intent": "query_avail", "entities": []} +{"text": "what will it take to achieve world peace", "intent": "oos", "entities": []} +{"text": "I would like to push my appointment #420831 back after an hour.", "intent": "reschedule", "entities": [{"start": 36, "end": 43, "label": "appointment_id"}]} +{"text": "Reschedule my sins", "intent": "reschedule", "entities": []} +{"text": "I want to set up directory tax consultation .", "intent": "schedule", "entities": [{"start": 27, "end": 43, "label": "appointment_type"}]} +{"text": "Open faculty candidate interview .", "intent": "query_avail", "entities": [{"start": 5, "end": 32, "label": "appointment_type"}]} +{"text": "Book career counseling }", "intent": "schedule", "entities": [{"start": 5, "end": 22, "label": "appointment_type"}]} +{"text": "Display the schedule file Caruso .", "intent": "query_avail", "entities": [{"start": 26, "end": 32, "label": "practitioner_name"}]} +{"text": "Free !", "intent": "query_avail", "entities": []} +{"text": "I'd like to shift my appointment to a different time.", "intent": "reschedule", "entities": []} +{"text": "The appointment with Nowak is no longer required", "intent": "cancel", "entities": [{"start": 21, "end": 26, "label": "practitioner_name"}]} +{"text": "I need an appointment called Mancini .", "intent": "schedule", "entities": [{"start": 29, "end": 36, "label": "practitioner_name"}]} +{"text": "Dr. Williams 's free times for instance degree audit today.", "intent": "query_avail", "entities": [{"start": 0, "end": 12, "label": "practitioner_name"}, {"start": 40, "end": 52, "label": "appointment_type"}]} +{"text": "Let's arrange this chat.", "intent": "schedule", "entities": []} +{"text": "hey how's it hanging", "intent": "greeting", "entities": []} +{"text": "I am unavailable for my performance review and need to move it.", "intent": "reschedule", "entities": [{"start": 24, "end": 42, "label": "appointment_type"}]} +{"text": "preseason schedule.", "intent": "query_avail", "entities": []} +{"text": "Please cancel appointments letter of recommendation request .", "intent": "cancel", "entities": [{"start": 27, "end": 59, "label": "appointment_type"}]} +{"text": "tell me the steps as to how to begin a career as a journalist", "intent": "oos", "entities": []} +{"text": "I'd like to change email study group meeting with Dr. Bailey to another day.", "intent": "reschedule", "entities": [{"start": 25, "end": 44, "label": "appointment_type"}, {"start": 50, "end": 60, "label": "practitioner_name"}]} +{"text": "I'd like to have access tax consultation .", "intent": "schedule", "entities": [{"start": 24, "end": 40, "label": "appointment_type"}]} +{"text": "I need to cancel booking #886239.", "intent": "cancel", "entities": [{"start": 25, "end": 32, "label": "appointment_id"}]} +{"text": "I'd like just change the time of my vet appointment .", "intent": "reschedule", "entities": [{"start": 36, "end": 51, "label": "appointment_type"}]} +{"text": "My seminar presentation needs to be on a different day.", "intent": "reschedule", "entities": [{"start": 3, "end": 23, "label": "appointment_type"}]} +{"text": "\\ have a therapy session with Prof. Howard that I need to move.", "intent": "reschedule", "entities": [{"start": 9, "end": 24, "label": "appointment_type"}, {"start": 30, "end": 42, "label": "practitioner_name"}]} +{"text": "Dott. Simone Marchetti \\ time check.", "intent": "query_avail", "entities": [{"start": 0, "end": 22, "label": "practitioner_name"}]} +{"text": "Please cancel my appointment, ref #470394 >", "intent": "cancel", "entities": [{"start": 34, "end": 41, "label": "appointment_id"}]} +{"text": "Please take _ sync-up off the schedule.", "intent": "cancel", "entities": [{"start": 14, "end": 21, "label": "appointment_type"}]} +{"text": "I have to pull hold of my dean's meeting .", "intent": "cancel", "entities": [{"start": 26, "end": 40, "label": "appointment_type"}]} +{"text": "might like to book an appointment.", "intent": "schedule", "entities": []} +{"text": "uh-huh", "intent": "positive_reply", "entities": []} +{"text": "heyo", "intent": "greeting", "entities": []} +{"text": "Change booking #192768 , replace thesis discussion with Dr. Phillips .", "intent": "reschedule", "entities": [{"start": 15, "end": 22, "label": "appointment_id"}, {"start": 33, "end": 50, "label": "appointment_type"}, {"start": 56, "end": 68, "label": "practitioner_name"}]} +{"text": "Something came up, my need to change my appointment.", "intent": "reschedule", "entities": []} +{"text": "thanks for helping me out today", "intent": "positive_reply", "entities": []} +{"text": "set schedule for lab safety training availability.", "intent": "query_avail", "entities": [{"start": 17, "end": 36, "label": "appointment_type"}]} +{"text": "Schedule a massage therapy for my group with Professor De Luca.", "intent": "schedule", "entities": [{"start": 11, "end": 26, "label": "appointment_type"}, {"start": 45, "end": 62, "label": "practitioner_name"}]} +{"text": "I must change from brainstorming session appointment with Prof. Bennett .", "intent": "reschedule", "entities": [{"start": 19, "end": 40, "label": "appointment_type"}, {"start": 58, "end": 71, "label": "practitioner_name"}]} +{"text": "I need an career counseling |", "intent": "schedule", "entities": [{"start": 10, "end": 27, "label": "appointment_type"}]} +{"text": "Display the schedule of Dr. Giovanni Galli.", "intent": "query_avail", "entities": [{"start": 24, "end": 42, "label": "practitioner_name"}]} +{"text": "Villa free data check.", "intent": "query_avail", "entities": [{"start": 0, "end": 5, "label": "practitioner_name"}]} +{"text": "Please void my scheduled appointment", "intent": "cancel", "entities": []} +{"text": "I'd like i request a new time for my meeting.", "intent": "reschedule", "entities": []} +{"text": "I need to do a guest lecture.", "intent": "schedule", "entities": [{"start": 15, "end": 28, "label": "appointment_type"}]} +{"text": "Show openings for a oral exam this relation", "intent": "query_avail", "entities": [{"start": 20, "end": 29, "label": "appointment_type"}]} +{"text": "Professor Pellegrino 's availability this !", "intent": "query_avail", "entities": [{"start": 0, "end": 20, "label": "practitioner_name"}]} +{"text": "saving time for a language proficiency test .", "intent": "schedule", "entities": [{"start": 18, "end": 43, "label": "appointment_type"}]} +{"text": "Time requires a meeting.", "intent": "schedule", "entities": []} +{"text": "Check Dr. Wood update schedule for Friday.", "intent": "query_avail", "entities": [{"start": 6, "end": 14, "label": "practitioner_name"}]} +{"text": "The project meeting with Dr. Ferri, ID #241353, should be cancelled.", "intent": "cancel", "entities": [{"start": 25, "end": 34, "label": "practitioner_name"}, {"start": 39, "end": 46, "label": "appointment_id"}]} +{"text": "you need to move my meeting.", "intent": "reschedule", "entities": []} +{"text": "search up the cast in the walking dead", "intent": "oos", "entities": []} +{"text": "I no longer need my advising session with Mr. Rogers ", "intent": "cancel", "entities": [{"start": 42, "end": 52, "label": "practitioner_name"}]} +{"text": "we need to reschedule something.", "intent": "reschedule", "entities": []} +{"text": "peace", "intent": "bye", "entities": []} +{"text": "thank you a lot for that answer", "intent": "positive_reply", "entities": []} +{"text": "thanks for the info", "intent": "positive_reply", "entities": []} +{"text": "thank you for answering that", "intent": "positive_reply", "entities": []} +{"text": "I want to cancel an engagement", "intent": "cancel", "entities": []} +{"text": "is everything ok with you", "intent": "greeting", "entities": []} +{"text": "google calendar for Pagano .", "intent": "query_avail", "entities": [{"start": 20, "end": 26, "label": "practitioner_name"}]} +{"text": "I need \\ cancel booking #004766 .", "intent": "cancel", "entities": [{"start": 24, "end": 31, "label": "appointment_id"}]} +{"text": "how are you doing", "intent": "greeting", "entities": []} +{"text": "it's a no", "intent": "negative_reply", "entities": []} +{"text": "Find availability for a consultation with Dr. Ward.", "intent": "query_avail", "entities": [{"start": 42, "end": 50, "label": "practitioner_name"}]} +{"text": "I'd prefer to talk to Villa .", "intent": "schedule", "entities": [{"start": 22, "end": 27, "label": "practitioner_name"}]} +{"text": "Void my name #904815 .", "intent": "cancel", "entities": [{"start": 13, "end": 20, "label": "appointment_id"}]} +{"text": "bye bye!", "intent": "bye", "entities": []} +{"text": "I refuse to cancel a meeting, ID #717513 .", "intent": "cancel", "entities": [{"start": 33, "end": 40, "label": "appointment_id"}]} +{"text": "solve for a ultrasound with Prof. Watson .", "intent": "schedule", "entities": [{"start": 12, "end": 22, "label": "appointment_type"}, {"start": 28, "end": 40, "label": "practitioner_name"}]} +{"text": "i’m leaving-goodbye!", "intent": "bye", "entities": []} +{"text": "king of acid", "intent": "oos", "entities": []} +{"text": "I need to talk to my advisor.", "intent": "schedule", "entities": []} +{"text": "update times for Santini next week.", "intent": "query_avail", "entities": [{"start": 17, "end": 24, "label": "practitioner_name"}]} +{"text": "that's completely false", "intent": "negative_reply", "entities": []} +{"text": "Pellegrini's free times today.", "intent": "query_avail", "entities": [{"start": 0, "end": 10, "label": "practitioner_name"}]} +{"text": "what is a good movie to go see in theaters for a family with young kids", "intent": "oos", "entities": []} +{"text": "Dott.ssa Valentina Bellini ", "intent": "schedule", "entities": [{"start": 0, "end": 26, "label": "practitioner_name"}]} +{"text": "Find an example for a dissertation defense with Evans .", "intent": "query_avail", "entities": [{"start": 22, "end": 42, "label": "appointment_type"}, {"start": 48, "end": 53, "label": "practitioner_name"}]} +{"text": "what is the most rented movie this week", "intent": "oos", "entities": []} +{"text": "Show the booking option for a car service with Prof. Bennett .", "intent": "query_avail", "entities": [{"start": 30, "end": 41, "label": "appointment_type"}, {"start": 47, "end": 60, "label": "practitioner_name"}]} +{"text": "I'm trying to schedule a health screening with Esposito .", "intent": "schedule", "entities": [{"start": 25, "end": 41, "label": "appointment_type"}, {"start": 47, "end": 55, "label": "practitioner_name"}]} +{"text": "that checks out", "intent": "positive_reply", "entities": []} +{"text": "Show the free dates on the calendar.", "intent": "query_avail", "entities": []} +{"text": "I need to reschedule my file the ID is #781883 .", "intent": "reschedule", "entities": [{"start": 39, "end": 46, "label": "appointment_id"}]} +{"text": "I want to know something.", "intent": "schedule", "entities": []} +{"text": "no, that is not right", "intent": "negative_reply", "entities": []} +{"text": "I can't make my scheduled date", "intent": "reschedule", "entities": []} +{"text": "fuel availability.", "intent": "query_avail", "entities": []} +{"text": "Availability inquiry for Longo.", "intent": "query_avail", "entities": [{"start": 25, "end": 30, "label": "practitioner_name"}]} +{"text": "The meeting with Martin can be cancelled.", "intent": "cancel", "entities": [{"start": 17, "end": 23, "label": "practitioner_name"}]} +{"text": "Show the booking calendar for qualifying exams.", "intent": "query_avail", "entities": [{"start": 30, "end": 45, "label": "appointment_type"}]} +{"text": "Please cancel any appointment for the guest lecture .", "intent": "cancel", "entities": [{"start": 38, "end": 51, "label": "appointment_type"}]} +{"text": "Please move to client call with Lombardi , booking ref #822368 .", "intent": "reschedule", "entities": [{"start": 15, "end": 26, "label": "appointment_type"}, {"start": 32, "end": 40, "label": "practitioner_name"}, {"start": 55, "end": 62, "label": "appointment_id"}]} +{"text": "we want to book Prof. Parker for a course planning .", "intent": "schedule", "entities": [{"start": 16, "end": 28, "label": "practitioner_name"}, {"start": 35, "end": 50, "label": "appointment_type"}]} +{"text": "_ appointment #746934 , I want to cancel.", "intent": "cancel", "entities": [{"start": 14, "end": 21, "label": "appointment_id"}]} +{"text": "Regarding appointment #255888 , I need to clarify it.", "intent": "reschedule", "entities": [{"start": 22, "end": 29, "label": "appointment_id"}]} +{"text": "how is life treating you", "intent": "greeting", "entities": []} +{"text": "I'm unable to make it to my x-ray with Dr. Ferri , so please cancel it. It's my #255888 .", "intent": "cancel", "entities": [{"start": 28, "end": 33, "label": "appointment_type"}, {"start": 39, "end": 48, "label": "practitioner_name"}, {"start": 80, "end": 87, "label": "appointment_id"}]} +{"text": "Openings for a sabbatical leave meeting tomorrow.", "intent": "query_avail", "entities": [{"start": 15, "end": 39, "label": "appointment_type"}]} +{"text": "how's everything", "intent": "greeting", "entities": []} +{"text": "I want to schedule a meeting in Dr. Wood .", "intent": "schedule", "entities": [{"start": 32, "end": 40, "label": "practitioner_name"}]} +{"text": "I have to reschedule my immunization shot with Dr. Ferrara from tomorrow to tomorrow week.", "intent": "reschedule", "entities": [{"start": 24, "end": 41, "label": "appointment_type"}, {"start": 47, "end": 58, "label": "practitioner_name"}]} +{"text": "Open placement test slots.", "intent": "query_avail", "entities": [{"start": 5, "end": 19, "label": "appointment_type"}]} +{"text": "I have some time with Dott.ssa Anna Moretti .", "intent": "schedule", "entities": [{"start": 22, "end": 43, "label": "practitioner_name"}]} +{"text": "this was a great conversation", "intent": "bye", "entities": []} +{"text": "I requested a meeting with Evans .", "intent": "schedule", "entities": [{"start": 27, "end": 32, "label": "practitioner_name"}]} +{"text": "not formally cancelling my alumni interview .", "intent": "cancel", "entities": [{"start": 27, "end": 43, "label": "appointment_type"}]} +{"text": "how is the ai doing", "intent": "greeting", "entities": []} +{"text": "I have an appointment, #015443, that I must reschedule.", "intent": "reschedule", "entities": [{"start": 23, "end": 30, "label": "appointment_id"}]} +{"text": "I want to move my appointment with Russo , ID #569400 ;", "intent": "reschedule", "entities": [{"start": 35, "end": 40, "label": "practitioner_name"}, {"start": 46, "end": 53, "label": "appointment_id"}]} +{"text": "Please use cancellation for #132841 .", "intent": "cancel", "entities": [{"start": 28, "end": 35, "label": "appointment_id"}]} +{"text": "I need to change my lab coat", "intent": "reschedule", "entities": []} +{"text": "it was great to speak with you", "intent": "bye", "entities": []} +{"text": "Please move to booking #169618 .", "intent": "reschedule", "entities": [{"start": 23, "end": 30, "label": "appointment_id"}]} +{"text": "Please void my scheduled session.", "intent": "cancel", "entities": []} +{"text": "many times to meet with Longo .", "intent": "query_avail", "entities": [{"start": 24, "end": 29, "label": "practitioner_name"}]} +{"text": "why thank you", "intent": "positive_reply", "entities": []} +{"text": "I need to cancel my meeting with my thesis.", "intent": "cancel", "entities": []} +{"text": "That really no longer works for me.", "intent": "reschedule", "entities": []} +{"text": "it was good chatting", "intent": "bye", "entities": []} +{"text": "This serves like a notification to cancel my appointment #353753 .", "intent": "cancel", "entities": [{"start": 57, "end": 64, "label": "appointment_id"}]} +{"text": "I no longer need my advising session with Harris.", "intent": "cancel", "entities": [{"start": 42, "end": 48, "label": "practitioner_name"}]} +{"text": "I need to find a new time with my vaccination .", "intent": "reschedule", "entities": [{"start": 34, "end": 45, "label": "appointment_type"}]} +{"text": "i'm saying goodbye now", "intent": "bye", "entities": []} +{"text": "syonara, ai device!", "intent": "bye", "entities": []} +{"text": "thanks so much ai", "intent": "positive_reply", "entities": []} +{"text": "i owe you one", "intent": "positive_reply", "entities": []} +{"text": "what big news happened over the weekend", "intent": "oos", "entities": []} +{"text": "Dott.ssa Chiara Negri 's availability next week.", "intent": "query_avail", "entities": [{"start": 0, "end": 21, "label": "practitioner_name"}]} +{"text": "Reschedule my esame orale, appointment ID #077272.", "intent": "reschedule", "entities": [{"start": 14, "end": 25, "label": "appointment_type"}, {"start": 42, "end": 49, "label": "appointment_id"}]} +{"text": " final presentation slots.", "intent": "query_avail", "entities": [{"start": 1, "end": 19, "label": "appointment_type"}]} +{"text": "your efforts don't go unnoticed", "intent": "positive_reply", "entities": []} +{"text": "thanks for your help!", "intent": "positive_reply", "entities": []} +{"text": "I can't make my advising session with Hall.", "intent": "reschedule", "entities": [{"start": 38, "end": 42, "label": "practitioner_name"}]} +{"text": "I would like to change my appointment, ID #158644.", "intent": "reschedule", "entities": [{"start": 42, "end": 49, "label": "appointment_id"}]} +{"text": "I need to book more time to discuss my dissertation with Dr. Angela White .", "intent": "schedule", "entities": [{"start": 57, "end": 73, "label": "practitioner_name"}]} +{"text": "I'd like to move on thesis discussion.", "intent": "reschedule", "entities": []} +{"text": "8 hours with Basile .", "intent": "query_avail", "entities": [{"start": 13, "end": 19, "label": "practitioner_name"}]} +{"text": "which nations are not democratic", "intent": "oos", "entities": []} +{"text": "This is a cancellation request for my mentorship meeting and #886239 ) with Prof. Bennett .", "intent": "cancel", "entities": [{"start": 38, "end": 56, "label": "appointment_type"}, {"start": 61, "end": 68, "label": "appointment_id"}, {"start": 76, "end": 89, "label": "practitioner_name"}]} +{"text": "I need to reschedule with Bell }", "intent": "reschedule", "entities": [{"start": 26, "end": 30, "label": "practitioner_name"}]} +{"text": "Can we reschedule my lab cleanup , or #327330 ?", "intent": "reschedule", "entities": [{"start": 21, "end": 32, "label": "appointment_type"}, {"start": 38, "end": 45, "label": "appointment_id"}]} +{"text": "I need please cancel an existing booking.", "intent": "cancel", "entities": []} +{"text": "Can we change my tutorial session time?", "intent": "reschedule", "entities": []} +{"text": "I have to reschedule my project update with Conti from thursday to next week.", "intent": "reschedule", "entities": [{"start": 24, "end": 38, "label": "appointment_type"}, {"start": 44, "end": 49, "label": "practitioner_name"}]} +{"text": "yep, that's true", "intent": "positive_reply", "entities": []} +{"text": "I need to talk to Testa via a parent-teacher conference .", "intent": "schedule", "entities": [{"start": 18, "end": 23, "label": "practitioner_name"}, {"start": 30, "end": 55, "label": "appointment_type"}]} +{"text": "My appointment #439966 , a IT support session with Young , needs to be updated", "intent": "reschedule", "entities": [{"start": 15, "end": 22, "label": "appointment_id"}, {"start": 27, "end": 45, "label": "appointment_type"}, {"start": 51, "end": 56, "label": "practitioner_name"}]} +{"text": "I need to reschedule with Ms. Kelly.", "intent": "reschedule", "entities": [{"start": 26, "end": 35, "label": "practitioner_name"}]} +{"text": "no, that is not right at all", "intent": "negative_reply", "entities": []} +{"text": "roger that", "intent": "positive_reply", "entities": []} +{"text": "that's inaccurate", "intent": "negative_reply", "entities": []} +{"text": "Need to change an existing appointment.", "intent": "reschedule", "entities": []} +{"text": "Set a vector with Rossetti .", "intent": "schedule", "entities": [{"start": 18, "end": 26, "label": "practitioner_name"}]} +{"text": "i'm grateful for the assistance", "intent": "positive_reply", "entities": []} +{"text": "I need to see Richardson ", "intent": "schedule", "entities": [{"start": 14, "end": 24, "label": "practitioner_name"}]} +{"text": "Set up 48 hours with Professor Bernardi .", "intent": "schedule", "entities": [{"start": 21, "end": 39, "label": "practitioner_name"}]} +{"text": "Let's reschedule appointment #842972 }", "intent": "reschedule", "entities": [{"start": 29, "end": 36, "label": "appointment_id"}]} +{"text": "transaction meeting with Morgan can be cancelled.", "intent": "cancel", "entities": [{"start": 25, "end": 31, "label": "practitioner_name"}]} +{"text": "Cancel my appointment with booking reference #356641 |", "intent": "cancel", "entities": [{"start": 45, "end": 52, "label": "appointment_id"}]} +{"text": "shall we reschedule? I'm referring to appointment #150062 .", "intent": "reschedule", "entities": [{"start": 50, "end": 57, "label": "appointment_id"}]} +{"text": "is everything going okay", "intent": "greeting", "entities": []} +{"text": "Can I schedule my meeting?", "intent": "schedule", "entities": []} +{"text": "Can we move my study group meeting with Nowak ? It's appointment #642584 }", "intent": "reschedule", "entities": [{"start": 15, "end": 34, "label": "appointment_type"}, {"start": 40, "end": 45, "label": "practitioner_name"}, {"start": 65, "end": 72, "label": "appointment_id"}]} +{"text": "it is good to see you", "intent": "greeting", "entities": []} +{"text": "are you doing ok", "intent": "greeting", "entities": []} +{"text": "Please cancel my reservation.", "intent": "cancel", "entities": []} +{"text": "Find available allergy test times.", "intent": "query_avail", "entities": [{"start": 15, "end": 27, "label": "appointment_type"}]} +{"text": "you did a good job thank you", "intent": "positive_reply", "entities": []} +{"text": "I refuse to meet.", "intent": "schedule", "entities": []} +{"text": "I need to drop my student feedback session with Piras.", "intent": "cancel", "entities": [{"start": 18, "end": 42, "label": "appointment_type"}, {"start": 48, "end": 53, "label": "practitioner_name"}]} +{"text": "are any earning reports due", "intent": "oos", "entities": []} +{"text": "Create a new meeting.", "intent": "schedule", "entities": []} +{"text": "does iron maiden have any new releases", "intent": "oos", "entities": []} +{"text": "Arrange professor health screening with professor Grassi .", "intent": "schedule", "entities": [{"start": 18, "end": 34, "label": "appointment_type"}, {"start": 50, "end": 56, "label": "practitioner_name"}]} +{"text": "Let's find some new time for #564270 .", "intent": "reschedule", "entities": [{"start": 29, "end": 36, "label": "appointment_id"}]} +{"text": "Please move my booking #000317 }", "intent": "reschedule", "entities": [{"start": 23, "end": 30, "label": "appointment_id"}]} +{"text": "I need to reschedule our appointment.", "intent": "reschedule", "entities": []} +{"text": "My situation has changed, I need to check my x-ray .", "intent": "cancel", "entities": [{"start": 45, "end": 50, "label": "appointment_type"}]} +{"text": "goodbye for now ai", "intent": "bye", "entities": []} +{"text": "Reschedule my meeting with google Bianchi .", "intent": "reschedule", "entities": [{"start": 34, "end": 41, "label": "practitioner_name"}]} +{"text": "Appointment commission", "intent": "query_avail", "entities": []} +{"text": "tell me how you've been", "intent": "greeting", "entities": []} +{"text": "I have appointment #568999 with Leone that needs rescheduling.", "intent": "reschedule", "entities": [{"start": 19, "end": 26, "label": "appointment_id"}, {"start": 32, "end": 37, "label": "practitioner_name"}]} +{"text": "clients can't attend the final presentation .", "intent": "reschedule", "entities": [{"start": 25, "end": 43, "label": "appointment_type"}]} +{"text": "I'd have to get on the calendar.", "intent": "schedule", "entities": []} +{"text": "Free slots with Mancini for a vet appointment this afternoon.", "intent": "query_avail", "entities": [{"start": 16, "end": 23, "label": "practitioner_name"}, {"start": 30, "end": 45, "label": "appointment_type"}]} +{"text": "Cancel this advising session.", "intent": "cancel", "entities": []} +{"text": "not right now", "intent": "negative_reply", "entities": []} +{"text": "I need to reschedule …", "intent": "reschedule", "entities": []} +{"text": "I'd like to cancel the meeting I have with Pagano.", "intent": "cancel", "entities": [{"start": 43, "end": 49, "label": "practitioner_name"}]} +{"text": "I'd like my book an appointment.", "intent": "schedule", "entities": []} +{"text": "I'd like to change my Ph.D. defense with Professor Bernardi on another day.", "intent": "reschedule", "entities": [{"start": 22, "end": 35, "label": "appointment_type"}, {"start": 41, "end": 59, "label": "practitioner_name"}]} +{"text": "I need to talk to Nowak for a client presentation ;", "intent": "schedule", "entities": [{"start": 18, "end": 23, "label": "practitioner_name"}, {"start": 30, "end": 49, "label": "appointment_type"}]} +{"text": "Shift my research seminar to another day.", "intent": "reschedule", "entities": [{"start": 9, "end": 25, "label": "appointment_type"}]} +{"text": "Calendar dates next month.", "intent": "query_avail", "entities": []} +{"text": "where does jelly come from", "intent": "oos", "entities": []} +{"text": "good answer, thanks for providing it", "intent": "positive_reply", "entities": []} +{"text": "List open slots for Dr. Giordano.", "intent": "query_avail", "entities": [{"start": 20, "end": 32, "label": "practitioner_name"}]} +{"text": "Display Testa 's free times for update vet appointment .", "intent": "query_avail", "entities": [{"start": 8, "end": 13, "label": "practitioner_name"}, {"start": 39, "end": 54, "label": "appointment_type"}]} +{"text": "Find an open slot underneath me.", "intent": "schedule", "entities": []} +{"text": "Change an appointment.", "intent": "reschedule", "entities": []} +{"text": "I can't swap my academic probation meeting (ID #781883 ) with Prof. Morris .", "intent": "reschedule", "entities": [{"start": 16, "end": 42, "label": "appointment_type"}, {"start": 47, "end": 54, "label": "appointment_id"}, {"start": 62, "end": 74, "label": "practitioner_name"}]} +{"text": "Change booking #746934, my dissertation defense with Dr. Peterson.", "intent": "reschedule", "entities": [{"start": 15, "end": 22, "label": "appointment_id"}, {"start": 27, "end": 47, "label": "appointment_type"}, {"start": 53, "end": 65, "label": "practitioner_name"}]} +{"text": "i'm outta here!", "intent": "bye", "entities": []} +{"text": "who was the first capcom character", "intent": "oos", "entities": []} +{"text": "I'm cancelling. The ID is #976105.", "intent": "cancel", "entities": [{"start": 26, "end": 33, "label": "appointment_id"}]} +{"text": "I need a link with Evans .", "intent": "schedule", "entities": [{"start": 19, "end": 24, "label": "practitioner_name"}]} +{"text": "I won't make it, so please cancel.", "intent": "cancel", "entities": []} +{"text": "whats up", "intent": "greeting", "entities": []} +{"text": "Can you help me do something?", "intent": "schedule", "entities": []} +{"text": "Can I make an appointment _ a dean's meeting ?", "intent": "schedule", "entities": [{"start": 30, "end": 44, "label": "appointment_type"}]} +{"text": "I need to cancel the appointment with confirmation number #843183.", "intent": "cancel", "entities": [{"start": 58, "end": 65, "label": "appointment_id"}]} +{"text": "write my 1-on-1 .", "intent": "schedule", "entities": [{"start": 9, "end": 15, "label": "appointment_type"}]} +{"text": "Move your appointment.", "intent": "reschedule", "entities": []} +{"text": "give me a list of the top 10 tennis players in the world", "intent": "oos", "entities": []} diff --git a/data/raw/intents/bye.csv b/data/raw/intents/bye.csv new file mode 100644 index 0000000..1a5928a --- /dev/null +++ b/data/raw/intents/bye.csv @@ -0,0 +1,151 @@ +text,intent +"great chat, talk to you later",bye +farewell,bye +peace out!,bye +i'm glad i got to talk to you,bye +"thanks for chatting, later",bye +i enjoyed speaking with you,bye +bye for now,bye +see you again soon,bye +see ya,bye +good bye then,bye +nice to see you again,bye +good night,bye +take it easy!,bye +this was a nice chat,bye +"thank you for the chat, goodbye",bye +see you later alligator,bye +talk to you later,bye +"thank you for chatting with me, bye",bye +"goodbye, ai assistant",bye +"this was a nice chat, goodbye",bye +it was nice to get in touch,bye +see you soon,bye +i'm outta here!,bye +ok good chatting goodbye,bye +i had fun speaking with you,bye +bye bye then,bye +goodbye!,bye +ai goodbye,bye +i'm out of here,bye +that will be all have a nice day!,bye +it was great to have this conversation with you,bye +catch you later,bye +"enjoy your day, goodbye",bye +"talk to you soon, bye!",bye +it was really awesome to talk to you,bye +i'll talk to you later ai,bye +i'm saying goodbye now,bye +cya later,bye +it was enjoyable to chat with you,bye +see you later!,bye +see you later,bye +"a pleasure as always to speak with you, bye",bye +good bye my friend,bye +sayonara,bye +nice seeing you bye,bye +talk to you later!,bye +we'll talk later ai,bye +"i enjoyed our talk, goodbye",bye +i have to get going,bye +later!,bye +"i enjoyed our talk, bye",bye +regards,bye +"nice talking again, bye",bye +"i am glad we got to talk again, see you soon",bye +"i had a pleasure talking to you, see you later",bye +"it was lovely to speak with you, bye bye",bye +talk later,bye +farewell!,bye +later,bye +peace out,bye +i've got to run now,bye +later gater,bye +adios!,bye +"nice talk, talk to you later",bye +"that's all, bye",bye +ill see you around,bye +this was a great conversation,bye +it was good chatting,bye +catch you around,bye +good bye,bye +glad we got to talk,bye +signing off,bye +it was good to talk to you today,bye +goodbye for now ai,bye +"that's all i need, i'm going now",bye +i need to go now,bye +buhbye,bye +tootles,bye +it was pleasant conversing with you,bye +adios,bye +it was enjoyable talking with you,bye +thanks for talking,bye +i have to say goodbye,bye +bye-bye,bye +have a good day,bye +it was nice to catch up with you,bye +it was great to speak with you,bye +later gator!,bye +it was nice chatting with you,bye +"this was fun, see you around bye",bye +thanks for talking to me,bye +"great talk, take it easy",bye +tata for now,bye +it was nice to converse with you,bye +"thanks for your help, goodbye!",bye +i enjoyed talking to you,bye +"have a good day, bye",bye +see ya later,bye +adios ai,bye +nice to see you,bye +always nice to talk to you,bye +it is time to say goodbye,bye +until next time!,bye +thank you goodbye,bye +bye,bye +see you around,bye +this was a nice conversation,bye +"goodbye, helpful ai device!",bye +"syonara, ai device!",bye +it was nice to speak with you,bye +it was nice to talk it out with you,bye +see ya!,bye +"it was a pleasure talking to you, goodbye now",bye +"great talk, thanks",bye +it was great to talk to you,bye +"it was great to see you again, see ya later!",bye +it was nice to chat,bye +it was great talking to you,bye +it was very good to talk to you,bye +good seeing you,bye +goodbye to you,bye +fairwell,bye +bye now,bye +"thanks, bye",bye +"good talk, see you later",bye +i have to go but it was nice talking again!,bye +i’m leaving-goodbye!,bye +it was a pleasure talking to you,bye +goodnight,bye +it was cool talking with you,bye +"see you later, alligator",bye +until next time,bye +"i enjoyed talking to you, bye",bye +it was great chatting with you,bye +i have to go ai goodbye,bye +i’ll be leaving now,bye +have a good one,bye +nice to speak with you,bye +peace,bye +it was really nice to be able to chat with you,bye +bye!,bye +goodbye,bye +i must say goodbye,bye +"later, thanks for chatting",bye +bye bye!,bye +thanks bye bye!,bye +good speaking to you,bye +it was pleasant having a conversation with you,bye +it was lovely to speak with you,bye +see you in a while,bye diff --git a/data/raw/intents/cancel.csv b/data/raw/intents/cancel.csv new file mode 100644 index 0000000..127262a --- /dev/null +++ b/data/raw/intents/cancel.csv @@ -0,0 +1,143 @@ +text,intent +"I need to cancel my appointment.",cancel +"Please cancel my upcoming meeting.",cancel +"I want to cancel an appointment.",cancel +"I need to delete a scheduled meeting.",cancel +"I can't make my appointment, please cancel it.",cancel +"I won't be needing my appointment anymore.",cancel +"Cancel my booking.",cancel +"I'd like to cancel.",cancel +"Remove my appointment from the calendar.",cancel +"I need to cancel something.",cancel +"Please void my scheduled session.",cancel +"I have to cancel.",cancel +"Cancel my scheduled time.",cancel +"My plans have changed and I need to cancel.",cancel +"I won't be able to attend, so please cancel.",cancel +"Scrub my appointment.",cancel +"The appointment is no longer needed.",cancel +"Please cancel my reservation.",cancel +"I'd like to request a cancellation.",cancel +"Delete the appointment.",cancel +"I have to cancel my meeting.",cancel +"Drop my appointment.",cancel +"I need to cancel an existing booking.",cancel +"Cancel it.",cancel +"I am writing to cancel my appointment.",cancel +"Please cancel my appointment with ID {appointment_id}.",cancel +"I need to cancel booking {appointment_id}.",cancel +"Cancel appointment {appointment_id}.",cancel +"I want to cancel the meeting with reference {appointment_id}.",cancel +"Delete my appointment, ID is {appointment_id}.",cancel +"Please remove booking {appointment_id} from the schedule.",cancel +"I'd like to cancel {appointment_id}.",cancel +"Cancel {appointment_id}.",cancel +"My appointment, {appointment_id}, needs to be cancelled.",cancel +"I am cancelling my booking with the ID {appointment_id}.",cancel +"Regarding appointment {appointment_id}, I want to cancel.",cancel +"I need to cancel the appointment with confirmation number {appointment_id}.",cancel +"Please process a cancellation for {appointment_id}.",cancel +"I will not be attending my meeting, ID {appointment_id}, please cancel.",cancel +"The meeting {appointment_id} is cancelled.",cancel +"I must cancel appointment {appointment_id}.",cancel +"Get rid of appointment {appointment_id}.",cancel +"Void my booking: {appointment_id}.",cancel +"Please confirm cancellation for {appointment_id}.",cancel +"I'm cancelling {appointment_id}.",cancel +"I need to cancel my meeting with {practitioner_name}.",cancel +"Please cancel my {appointment_type}.",cancel +"I want to cancel my {appointment_type} with {practitioner_name}.",cancel +"I no longer need my advising session with {practitioner_name}.",cancel +"Delete my upcoming {appointment_type}.",cancel +"Cancel my meeting with Professor {practitioner_name}.",cancel +"I'd like to cancel my project meeting.",cancel +"Please remove the {appointment_type} with {practitioner_name} from my schedule.",cancel +"Cancel my office hours appointment with {practitioner_name}.",cancel +"The {appointment_type} with {practitioner_name} is no longer necessary.",cancel +"I need to cancel my thesis discussion.",cancel +"I'm cancelling my tutorial session.",cancel +"Cancel my lab session with {practitioner_name}.",cancel +"I'd like to cancel the meeting I have with {practitioner_name}.",cancel +"Please cancel my upcoming {appointment_type}.",cancel +"I need to drop my {appointment_type} with {practitioner_name}.",cancel +"I have an {appointment_type} with {practitioner_name} that I need to cancel.",cancel +"Cancel the advising session.",cancel +"I will not be attending my {appointment_type} with {practitioner_name}.",cancel +"The meeting with {practitioner_name} can be cancelled.",cancel +"I need to cancel my consultation with {practitioner_name}.",cancel +"Please cancel my {appointment_type} this Friday.",cancel +"I want to cancel my appointment with {practitioner_name}.",cancel +"My {appointment_type} with {practitioner_name} needs to be cancelled.",cancel +"I have to cancel my {appointment_type} appointment.",cancel +"Cancel my one-on-one with {practitioner_name}.",cancel +"Please cancel my {appointment_type} with {practitioner_name}.",cancel +"I must cancel my {appointment_type} with {practitioner_name}.",cancel +"Please cancel my {appointment_type} with {practitioner_name}, ID is {appointment_id}.",cancel +"I want to cancel my {appointment_type}, appointment ID {appointment_id}.",cancel +"Delete my {appointment_type} with {practitioner_name}, booking ref {appointment_id}.",cancel +"I need to cancel my {appointment_type} with {practitioner_name} (ID: {appointment_id}).",cancel +"My appointment {appointment_id}, a {appointment_type} with {practitioner_name}, must be cancelled.",cancel +"Cancel booking {appointment_id}, my {appointment_type} with {practitioner_name}.",cancel +"I am cancelling my {appointment_type} (ID {appointment_id}) with {practitioner_name}.",cancel +"I would like to cancel my {appointment_type} with {practitioner_name}. The ID is {appointment_id}.",cancel +"Please remove my {appointment_type} with {practitioner_name}, reference {appointment_id}.",cancel +"My apologies, but I must cancel my {appointment_type} with {practitioner_name}, ID {appointment_id}.",cancel +"This is a cancellation request for my {appointment_type} (ID: {appointment_id}) with {practitioner_name}.",cancel +"Please delete appointment {appointment_id}, my {appointment_type} with Professor {practitioner_name}.",cancel +"I need to cancel the {appointment_type} with {practitioner_name}. The booking number is {appointment_id}.",cancel +"Cancel the meeting with {practitioner_name} regarding my thesis, ID {appointment_id}.",cancel +"The lab session with {practitioner_name}, booking {appointment_id}, needs to be cancelled.",cancel +"I'm writing to inform you of the cancellation of my {appointment_type} with {practitioner_name}, ID {appointment_id}.",cancel +"Please confirm the cancellation of booking {appointment_id}, my {appointment_type}.",cancel +"The meeting with {practitioner_name} (ref {appointment_id}) is no longer required.",cancel +"I'm unable to make it to my {appointment_type} with {practitioner_name}, so please cancel it. It's ID {appointment_id}.",cancel +"I have to cancel appointment {appointment_id} with {practitioner_name}.",cancel +"Can you cancel my appointment?",cancel +"Delete my booking.",cancel +"I won't make it, so please cancel.",cancel +"I'm afraid I have to cancel my meeting.",cancel +"Due to unforeseen circumstances, I have to cancel appointment {appointment_id}.",cancel +"I'm cancelling the meeting with {practitioner_name}.",cancel +"Please cancel the {appointment_type} on my schedule.",cancel +"The booking {appointment_id} can be removed.",cancel +"I no longer require the meeting with {practitioner_name}.",cancel +"My situation has changed, I need to cancel my {appointment_type}.",cancel +"Cancel the appointment for me.",cancel +"I need to cancel my meeting with {practitioner_name} on Tuesday.",cancel +"Please take my {appointment_type} off the schedule.",cancel +"Cancel my appointment with booking reference {appointment_id}.",cancel +"This is a cancellation for my appointment with {practitioner_name}.",cancel +"I have to pull out of my {appointment_type}.",cancel +"Please accept my apologies, but I must cancel my meeting.",cancel +"I need to cancel my booking, number {appointment_id}.",cancel +"Remove the {appointment_type} with {practitioner_name} from my calendar.",cancel +"I need to cancel a meeting, ID {appointment_id}.",cancel +"I am no longer available for my {appointment_type} with {practitioner_name}.",cancel +"Please cancel my appointment for the {appointment_type}.",cancel +"I will not be able to attend my scheduled meeting, ID {appointment_id}.",cancel +"I'd like to cancel my reservation with {practitioner_name}.",cancel +"Cancel my {appointment_type} with {practitioner_name}, please.",cancel +"I'm sorry, but I have to cancel my appointment.",cancel +"Let's cancel the meeting with ID {appointment_id}.",cancel +"I'm formally cancelling my {appointment_type}.",cancel +"The appointment with {practitioner_name} is no longer needed.",cancel +"I can't make the meeting with {practitioner_name}, so I'm cancelling.",cancel +"Please cancel my attendance for the {appointment_type}.",cancel +"I must cancel booking {appointment_id}.",cancel +"I'm cancelling my consultation with {practitioner_name}.",cancel +"Please cancel my appointment regarding my project with {practitioner_name}.",cancel +"Delete booking {appointment_id} from the system.",cancel +"I have to cancel the {appointment_type} with {practitioner_name}.",cancel +"This serves as a notification to cancel my appointment {appointment_id}.",cancel +"I won't be there, please cancel my meeting.",cancel +"I need to cancel my appointment {appointment_id} with {practitioner_name}.",cancel +"Cancel all my appointments with {practitioner_name}.",cancel +"I need to cancel my defense rehearsal.",cancel +"Please cancel my appointment, ref {appointment_id}.",cancel +"My {appointment_type}, booking {appointment_id}, with {practitioner_name} is cancelled.",cancel +"I will not be coming to my appointment with {practitioner_name}.",cancel +"I'm cancelling. The ID is {appointment_id}.",cancel +"Cancel my upcoming session.",cancel +"Please proceed with cancelling my appointment with {practitioner_name}.",cancel +"I need to cancel my meeting about my thesis.",cancel +"The project meeting with {practitioner_name}, ID {appointment_id}, should be cancelled.",cancel diff --git a/data/raw/intents/greeting.csv b/data/raw/intents/greeting.csv new file mode 100644 index 0000000..17871d7 --- /dev/null +++ b/data/raw/intents/greeting.csv @@ -0,0 +1,151 @@ +text,intent +"how are you doing, ai",greeting +tell me how you are doing,greeting +whats up,greeting +"hi, how are you today",greeting +hey how's it going,greeting +hey how's life,greeting +is everything going okay,greeting +hiya!,greeting +"hey, how are you",greeting +"hello, how's your day",greeting +hi how is everything,greeting +good to see you,greeting +hey what's up,greeting +"hey there, how are you today",greeting +"hello, friend",greeting +ai how are you doing today,greeting +"hello, how are you doing",greeting +hows are ya,greeting +it's nice to see you,greeting +will you tell me how the ai is doing,greeting +hi! are you doing okay,greeting +hello,greeting +how are things,greeting +are you doing well,greeting +how is everything going,greeting +what are you feeling today,greeting +is everything ok today,greeting +"hi, how are you",greeting +salutations!,greeting +hi there alexa,greeting +how have you been doing,greeting +hello there,greeting +tell me how you've been,greeting +ahoy hoy,greeting +how have you been,greeting +"hello, are you doing alright",greeting +i need to know how you are doing today,greeting +how's everything,greeting +what's up with you,greeting +it's good to see you,greeting +hey what's up,greeting +how're you doing,greeting +"hi there, how are you doing",greeting +how are things with you,greeting +are you okay,greeting +hi ai,greeting +how's ife treating you,greeting +how are you,greeting +whats up with you,greeting +well hello,greeting +how are things treating you,greeting +hello how's it going,greeting +how you are,greeting +so how is everything,greeting +are you feeling okay,greeting +"why, hello bandit",greeting +"hello, how are things",greeting +i'd like to know how you are doing,greeting +is everything ok with you,greeting +how is it going,greeting +"hello, how are you",greeting +"hello, anyone there",greeting +how are things going for you,greeting +how ya been,greeting +hola!,greeting +are you well,greeting +hey there!,greeting +how is my ai doing,greeting +how are things for you,greeting +greetings to you,greeting +"hi, ai",greeting +"how are you doing today, ai",greeting +bonjour,greeting +how is the ai doing,greeting +how is life treating you,greeting +how've you been,greeting +"ai, how are you feeling",greeting +hola,greeting +how's it going with you,greeting +i want to know how you are doing,greeting +heller,greeting +have you been good,greeting +heyo,greeting +what's happening,greeting +"hello there, good morning",greeting +"ai, how are you doing",greeting +what do you feel like doing,greeting +hey,greeting +"howdy, what's new",greeting +good evening,greeting +well hi there,greeting +"wake up, ai",greeting +"hello, how is it going",greeting +"hello, what's up",greeting +"hey, how's it going",greeting +how are you this day,greeting +hey hey!,greeting +are you okay right now,greeting +"hey, ai",greeting +why hello,greeting +hi there,greeting +ai how are you doing on this fine day,greeting +"hey, what's new",greeting +how is everything going for you,greeting +are things going well for you,greeting +how've you been feeling,greeting +how are you this fine day,greeting +are you doing ok,greeting +how goes it,greeting +how are things going,greeting +tell me how are you,greeting +how do you feel,greeting +can you tell me how you're doing today,greeting +what's up,greeting +"hello, ai",greeting +how is everything with you,greeting +hi what's up,greeting +would you tell me how the ai is doing,greeting +how is it going my friend,greeting +are you doing okay,greeting +"hey, what's up",greeting +let me know how you are doing,greeting +how is your day,greeting +how's it going right now,greeting +are you good,greeting +just wanted to say hi,greeting +how are you today,greeting +"good morning, ai",greeting +what's going on,greeting +how's life,greeting +it is good to see you,greeting +hello siri,greeting +hey there,greeting +yo,greeting +hi how are you,greeting +hello there!,greeting +good day,greeting +hey there fellow,greeting +"hi there, how are things",greeting +hello there ai,greeting +hi,greeting +how's it hanging,greeting +aloha,greeting +wassup,greeting +hey how's it hanging,greeting +how ya doin,greeting +are you doing alright,greeting +"yo, hows it going",greeting +hiya,greeting +how are you doing,greeting diff --git a/data/raw/intents/negative_reply.csv b/data/raw/intents/negative_reply.csv new file mode 100644 index 0000000..a016634 --- /dev/null +++ b/data/raw/intents/negative_reply.csv @@ -0,0 +1,151 @@ +text,intent +there is no way in heck that is true,negative_reply +i'll pass,negative_reply +"incorrect, it is certainly a false statement",negative_reply +that is not right,negative_reply +nope that's not it,negative_reply +that is most definitely false,negative_reply +no that is not right,negative_reply +are you sure i don’t think that’s correct,negative_reply +that's false,negative_reply +i am afraid that that is not the case,negative_reply +false,negative_reply +"no, that is my response",negative_reply +"that would be ""no",negative_reply +nada,negative_reply +it seems not,negative_reply +that's not what i want!,negative_reply +not true,negative_reply +that is overwhelmingly false,negative_reply +that's not right,negative_reply +the answer is no,negative_reply +no thank you,negative_reply +"please, no",negative_reply +"no, that's not it",negative_reply +no that isn't the case,negative_reply +the information is wrong,negative_reply +definitely not,negative_reply +negatory,negative_reply +absolutely not,negative_reply +that's a hard no from me,negative_reply +"that is not true, it's false",negative_reply +that's inaccurate,negative_reply +the answer is false,negative_reply +nay,negative_reply +"no, that is not right at all",negative_reply +that's incorrect!,negative_reply +that is not the case,negative_reply +"oh hell no, that'd be terrible!",negative_reply +that would be a no,negative_reply +it is no,negative_reply +"no, that is invalid",negative_reply +negative,negative_reply +i think it is false,negative_reply +that is the wrong answer,negative_reply +i say no to that question,negative_reply +no that is wrong,negative_reply +no thanks,negative_reply +that's completely false,negative_reply +i must say no,negative_reply +i would prefer not,negative_reply +hell nah,negative_reply +"no, that is inaccurate",negative_reply +no that isn't it,negative_reply +"no, that is incorrect",negative_reply +that is so false,negative_reply +"no, that is not right",negative_reply +ill pass,negative_reply +i don't think so,negative_reply +"no, that's wrong",negative_reply +invalid,negative_reply +negative for sure,negative_reply +that is not correct,negative_reply +no!,negative_reply +nope not it,negative_reply +that can't be true,negative_reply +no don't do that!,negative_reply +"no, that's incorrect",negative_reply +that is not true,negative_reply +i say negative,negative_reply +that is erroneous,negative_reply +i would have to say the answer to that is no,negative_reply +"no, you are wrong",negative_reply +that’s not correct,negative_reply +you are wrong,negative_reply +that is actually false,negative_reply +that turns out to be false,negative_reply +what you just said is false,negative_reply +that's a negative,negative_reply +"nope, that's false",negative_reply +it's a no,negative_reply +"no, that information is wrong",negative_reply +i would say that the statement is definitely false,negative_reply +"no, definitely not",negative_reply +that has to be false,negative_reply +i disagree that is false,negative_reply +"no, that's not right",negative_reply +no is the answer,negative_reply +it is false,negative_reply +that's totally wrong!,negative_reply +"i don't believe that is possible, it is false",negative_reply +"no, that is fake",negative_reply +what you just said is wrong,negative_reply +the answer is definitely no,negative_reply +that's definitely false,negative_reply +false for sure,negative_reply +that is a completely false statement,negative_reply +no that isn't right,negative_reply +"no, that is a falsehood",negative_reply +that's not right it's false,negative_reply +that’s incorrect,negative_reply +no good,negative_reply +"i do not think that is true, so i would say it is a false statement",negative_reply +not that one,negative_reply +"no, that is wrong",negative_reply +no way,negative_reply +i do not believe that that is correct,negative_reply +"i don't like that, no",negative_reply +i gotta say no,negative_reply +"no, that is not correct",negative_reply +naw,negative_reply +that is false,negative_reply +not happening,negative_reply +that is incorrect,negative_reply +the statement is false,negative_reply +that's not correct,negative_reply +no way!,negative_reply +"no, don't do that",negative_reply +thats a negative,negative_reply +not at all,negative_reply +i believe that to be false,negative_reply +not really,negative_reply +i'd say no,negative_reply +not right now,negative_reply +that isn't right,negative_reply +i think not,negative_reply +"that's not right, so no",negative_reply +it is very much false,negative_reply +"no, that can't be right",negative_reply +i meant no,negative_reply +"sorry, that is not true",negative_reply +that’s actually wrong,negative_reply +certainly not,negative_reply +that's wrong,negative_reply +that's incorrect,negative_reply +that's not true,negative_reply +i think that's false,negative_reply +that would be false,negative_reply +not that,negative_reply +that is wrong,negative_reply +you got that wrong,negative_reply +that is untrue,negative_reply +i do not think that is proper,negative_reply +that isn't the right answer,negative_reply +no that's wrong,negative_reply +that isn't correct,negative_reply +that is not factual,negative_reply +i am saying no,negative_reply +that'd be a no,negative_reply +that's a negatory,negative_reply +no that isn't correct,negative_reply +nope,negative_reply diff --git a/data/raw/intents/oos.csv b/data/raw/intents/oos.csv new file mode 100644 index 0000000..c6f6e89 --- /dev/null +++ b/data/raw/intents/oos.csv @@ -0,0 +1,151 @@ +text,intent +is va treatment free for veterans,oos +do ducks sleep,oos +what's the dominant minor for the key of bflat,oos +what does water taste like,oos +find instructions on how to play taboo,oos +get me the rates of hacking susceptibility for household in my area,oos +how many calories does jumping up and down burn,oos +what's the most effective bug repellant,oos +please explain the catch rule to me,oos +what is the cheapest new car for this year,oos +find me a graphic tutorial on writing longhand,oos +tell me the steps as to how to begin a career as a journalist,oos +how do i change my billing address,oos +how many push-ups do i need to do to get ripped,oos +does denim go with anything,oos +read the phone number for mom in my phone contacts,oos +show me the channel guide,oos +find me a book on motivational speaking from amazon,oos +please print out copies of my resume,oos +which houses do not have automatic spot lights in front of their garage,oos +get me articles on earthquake preparedness,oos +what person is the heaviest ever recorded,oos +when's the next mardi gras going to be,oos +restart my newspaper delivery for monday,oos +start a portfolio on venture capital funding for me to look over,oos +what time did my daughter get home from her date,oos +compile a list of articles pertaining to venture capital funding for me,oos +"what's going on in the world today, anything major",oos +how much money would my house sell for,oos +what year was jane austen born,oos +how do i get venture capital for my app,oos +i'd like to find some curtains that look good in this room,oos +what is the breath to compression ratio for cpr,oos +how do i start my own marketing firm,oos +can you give me the standard tuning notes,oos +does hypnosis work to break bad habits,oos +what cryptocurrency gained the most in 2018,oos +are there any messages,oos +create a pamphlet on albert einsteins childhood,oos +show me how to contact a paranormal spirit,oos +what is the most rented movie this week,oos +when will the daffodils bloom this year,oos +tell me more about bill gates,oos +what show am i watching,oos +find a credit counseling service for me on the web,oos +how many elements are on the periodic table,oos +what movie is it that says today is a good day to die,oos +how much time do i have left on my 0% apr,oos +what do geese eat,oos +what will it take to achieve world peace,oos +show me what one should do to get ahead in a tech corporation,oos +why do we dream,oos +"can you really time your compressions to queen's ""another one bites the dust""",oos +how many acres do you need to buy a horse,oos +how much does a nintendo switch cost,oos +can you mark this note as important,oos +which nations are not democratic,oos +what is a good movie to go see in theaters for a family with young kids,oos +how do i get rid of blocked nose at home,oos +how to plan for weddings,oos +how many harry potter books are there,oos +who is jane goodall,oos +what is a semitic language,oos +what's the roi doing arbitrage with ebay,oos +can you tell me who sells dixie paper plates,oos +how does a optical mouse work,oos +is it difficult to be successful on wall street,oos +what are black holes,oos +can i deposit a check,oos +"show me laptops for sale that are under $2,000",oos +how hard is it to close a bank account at wells fargo,oos +where are classes taught near me for c++,oos +which element on the periodic table is k,oos +are any earning reports due,oos +how do you fix a leaking sink,oos +can i use direct deposit for my tax refund,oos +sign me up for the slack employment forum,oos +please list my real estate for sale,oos +what's the blue book value of my car,oos +which movie is it that someone says perfectly balanced as all things should be,oos +what is the cashback rate for my credit card,oos +write the next chapter of my biography and let me know when you have finished it,oos +find schematics for ikea desk assembly,oos +who is the best architecture,oos +when was the theory of evolution first considered,oos +what's the most difficult yoga pose to perform,oos +a the bike looks very nice,oos +answer the phone,oos +create a for-while loop that continues 10 times,oos +what stores are in the local mall,oos +"how many people have held the role of county attorney bearing the family name ""dixon""",oos +who has the best record in the nba,oos +when was the last worker's strike in amsterdam,oos +can you locate the television remote,oos +search up the cast in the walking dead,oos +what is the best reviewed laptop available on the market,oos +can a robot really travel back in time,oos +how can i use make up to cover a cut on my cheek,oos +review chapter 6 with my son and verify his math homework answers,oos +does iron maiden have any new releases,oos +are tattoos safe to get,oos +what's my horoscope today,oos +how much candy have i consumed this week,oos +how can i keep my windshield from fogging up in winter,oos +what big news happened over the weekend,oos +how do i add someone to my account,oos +do the romans still use the colosseum for anything today,oos +would it be legal to have battles to the death in a homemade colosseum,oos +how does the etheric body operate,oos +"according to my fitness tracker, how many push ups have i done today",oos +what time did i put in my first load of laundry,oos +what's the best time of year to plant a tree,oos +where is the colosseum,oos +is the pnc bank open,oos +find a couple's therapist who can help me and my wife,oos +is autism a genetic disease,oos +can you check my voicemail,oos +give me an energy usage breakdown for march,oos +how many miles does my car currently have,oos +what movie does it's just a flesh wound come from,oos +find out how many latin scholars there are at the university of chicago,oos +who was the first person to discover cells,oos +which stocks have lost the least today,oos +where does jelly come from,oos +what is the nature of the big bang theory,oos +what is albert einstein famous for,oos +find articles on essay writing for beginners,oos +vacuum out the car,oos +how the bus moves,oos +are people with a mental illness eligible for disability,oos +make a list of what materials have been used for spacesuits,oos +tell me about personal finance,oos +who was the first capcom character,oos +king of acid,oos +how much is this years model of my car cost,oos +when will george rr martin publish the next game of thrones book,oos +find someone local who mows lawns,oos +give me a list of the top 10 tennis players in the world,oos +what are the best personal finance practices,oos +when will microsoft drop support for windows 7,oos +"i need to find work, help me connect to a local business through linkedin",oos +save my text on my laptop hard drive,oos +can you tell me how to solve simple algebraic equations with one variable,oos +when do classes start,oos +is there a fee for cancelling a flight i've booked,oos +find me articles on appropriate wedding attire,oos +what articles are written at the cnn site about the women's march,oos +explain how small talk helps bind groups together,oos +how much money does radiohead earn a year,oos +show me how many community centers are located within 5 miles of my location,oos diff --git a/data/raw/intents/positive_reply.csv b/data/raw/intents/positive_reply.csv new file mode 100644 index 0000000..3ec9749 --- /dev/null +++ b/data/raw/intents/positive_reply.csv @@ -0,0 +1,151 @@ +text,intent +"yes, that is true for sure",positive_reply +i am happy you did that for me,positive_reply +thank you so very much,positive_reply +"nice, excellent!",positive_reply +thanks for helping me out today,positive_reply +yeah that's what i want,positive_reply +that's true,positive_reply +"great, thanks!",positive_reply +that seems true,positive_reply +"yep, that's right",positive_reply +i owe you one,positive_reply +"i really appreciate your help, thank you",positive_reply +"thanks, you've helped me",positive_reply +i appreciate that answer!,positive_reply +thanks again!,positive_reply +that is not false,positive_reply +true is my response,positive_reply +"yup, that's true",positive_reply +i would like to thank you,positive_reply +absolutely correct,positive_reply +that statement was correct,positive_reply +appreciated,positive_reply +thanks for the help,positive_reply +thanks for answering my question,positive_reply +i am thankful for the answer,positive_reply +that's a yes from me,positive_reply +you are so nice to think of me,positive_reply +you did a good job thank you,positive_reply +i appeciate it,positive_reply +thank you for the help,positive_reply +you are so thoughtful and i appreciate your gesture,positive_reply +thanks for helping me,positive_reply +thanks again,positive_reply +thank you!,positive_reply +your answer was good,positive_reply +the answer is yes,positive_reply +"yes, you got it",positive_reply +thanks so much ai,positive_reply +oh sweet thanks,positive_reply +that's a definite yes,positive_reply +good job with assisting me,positive_reply +you're the best!,positive_reply +yup,positive_reply +thanks for your cooperation,positive_reply +i vote yes,positive_reply +that's right,positive_reply +sure thing,positive_reply +thank you for answering that,positive_reply +you're right,positive_reply +i think it's true,positive_reply +yep,positive_reply +"good answer, thanks for providing it",positive_reply +i thank you,positive_reply +uh huh,positive_reply +thanks so much,positive_reply +it is definitely affirmative,positive_reply +"yes, that is true",positive_reply +thanks for trying,positive_reply +yes you are,positive_reply +i appreciate it,positive_reply +that is correct,positive_reply +yes that's correct,positive_reply +yes sir,positive_reply +"ai you have given me so much information, thank you",positive_reply +thanks for helping out,positive_reply +its a for sure true,positive_reply +i'm grateful to you,positive_reply +i wish you were here earlier,positive_reply +appreciate it,positive_reply +thanks please,positive_reply +thanks for your help!,positive_reply +my answer to your question is yes,positive_reply +correct,positive_reply +i'm grateful,positive_reply +thank you very much,positive_reply +definitely,positive_reply +"that'll work, good job!",positive_reply +that would be yes,positive_reply +"correct, that's true",positive_reply +that's definitely true,positive_reply +"yep, that's true",positive_reply +that would be true,positive_reply +"yes, that's accurate",positive_reply +"yes, that's correct",positive_reply +thanks for the info,positive_reply +confirm,positive_reply +thanks for the assist,positive_reply +thanks for your help,positive_reply +roger that,positive_reply +"yes, that is accurate",positive_reply +thank you for the answer,positive_reply +you are correct,positive_reply +why thank you,positive_reply +"you have been a big help, thank you so much",positive_reply +i'm grateful for the assistance,positive_reply +that checks out,positive_reply +of course,positive_reply +true,positive_reply +i believe that's true,positive_reply +yes that's it,positive_reply +thank you,positive_reply +you've been a big help,positive_reply +i appreciate the assistance,positive_reply +thanks a lot,positive_reply +"yes, this is true",positive_reply +i apprecaite the help from you,positive_reply +that's correct,positive_reply +your efforts don't go unnoticed,positive_reply +"yes, that's affirmative",positive_reply +i'm thankful,positive_reply +you got it,positive_reply +yeap,positive_reply +this is a true statement,positive_reply +"oh, thanks",positive_reply +thanks for that!,positive_reply +many thank,positive_reply +i agree,positive_reply +the answer to that is a resounding yes,positive_reply +i want to thank you for helping,positive_reply +uh-huh,positive_reply +youre a doll,positive_reply +"yes, that's confirmed",positive_reply +"ai is a helpful item to have in my home, thank you",positive_reply +your help is appreciated,positive_reply +thank you very much for the answer,positive_reply +yes that is right,positive_reply +"yes, that's it",positive_reply +thanks a lot for the answer,positive_reply +that is affirmative,positive_reply +thank you very much for the assistance,positive_reply +i will say yes as my response,positive_reply +merci beaucoup,positive_reply +appreciate the help,positive_reply +it's so much easier with you around,positive_reply +thank you for your time,positive_reply +that is a fact,positive_reply +your answer is appreciated,positive_reply +oh yes,positive_reply +thank you ever so much for that!,positive_reply +thank you a lot for that answer,positive_reply +that is true,positive_reply +i can confirm it is affirmative,positive_reply +your answer pleased me,positive_reply +the answer to that is affirmative,positive_reply +thanks for your response,positive_reply +exactly right,positive_reply +thanks that was really helpful,positive_reply +"yes, that is actually true",positive_reply +i am glad that you did that,positive_reply +i appreciate that,positive_reply diff --git a/data/raw/intents/query_avail.csv b/data/raw/intents/query_avail.csv new file mode 100644 index 0000000..d898b31 --- /dev/null +++ b/data/raw/intents/query_avail.csv @@ -0,0 +1,141 @@ +text,intent +"Show available times.",query_avail +"List open slots.",query_avail +"Display calendar.",query_avail +"Check for openings.",query_avail +"Find free time slots.",query_avail +"Appointment availability.",query_avail +"Show schedule.",query_avail +"List all available appointment times.",query_avail +"Availability for this week.",query_avail +"Openings for tomorrow.",query_avail +"Free times next week.",query_avail +"Check schedule availability.",query_avail +"Display free times.",query_avail +"Open appointment slots.",query_avail +"Find available meeting times.",query_avail +"List schedule openings.",query_avail +"Availability check.",query_avail +"Show openings for this Friday.",query_avail +"Calendar for next month.",query_avail +"What's free this afternoon.",query_avail +"Availability on July 21st.",query_avail +"Next available slot.",query_avail +"List all openings.",query_avail +"Show the booking calendar.",query_avail +"Find an opening.",query_avail +"Show {practitioner_name}'s availability.",query_avail +"Check calendar for {practitioner_name}.",query_avail +"List open slots for {practitioner_name}.",query_avail +"Availability of {practitioner_name}.",query_avail +"{practitioner_name}'s schedule.",query_avail +"Professor {practitioner_name}'s free times.",query_avail +"{practitioner_name}'s availability this week.",query_avail +"Openings for {practitioner_name} tomorrow.",query_avail +"Free times for {practitioner_name} next week.",query_avail +"Check {practitioner_name}'s schedule for Friday.",query_avail +"Display {practitioner_name}'s free times.",query_avail +"{practitioner_name}'s open appointment slots.",query_avail +"Find available meeting times with {practitioner_name}.",query_avail +"List schedule openings for {practitioner_name}.",query_avail +"{practitioner_name} availability check.",query_avail +"Show {practitioner_name}'s openings for this Friday.",query_avail +"{practitioner_name}'s calendar for next month.",query_avail +"Free slots with {practitioner_name} this afternoon.",query_avail +"Availability for {practitioner_name} on July 22nd.",query_avail +"{practitioner_name}'s next available slot.",query_avail +"List all openings for {practitioner_name}.",query_avail +"Show the booking calendar for {practitioner_name}.",query_avail +"Find an opening with {practitioner_name}.",query_avail +"What are {practitioner_name}'s office hours.",query_avail +"Display the schedule of {practitioner_name}.",query_avail +"{practitioner_name}'s free times today.",query_avail +"Availability of {practitioner_name} for a meeting.",query_avail +"List all free times for {practitioner_name}.",query_avail +"{practitioner_name}'s calendar.",query_avail +"Openings with {practitioner_name}.",query_avail +"Find {practitioner_name}'s availability.",query_avail +"List times to meet with {practitioner_name}.",query_avail +"When is {practitioner_name} free.",query_avail +"Schedule for {practitioner_name}.",query_avail +"Available times for a {appointment_type}.",query_avail +"Open slots for a {appointment_type}.",query_avail +"Display calendar for {appointment_type}s.",query_avail +"Check for {appointment_type} openings.",query_avail +"Find free time slots for a {appointment_type}.",query_avail +"{appointment_type} availability.",query_avail +"Show schedule for {appointment_type}s.",query_avail +"List all available {appointment_type} times.",query_avail +"Availability for {appointment_type}s this week.",query_avail +"Openings for a {appointment_type} tomorrow.",query_avail +"Free times for a {appointment_type} next week.",query_avail +"Check schedule for {appointment_type} availability.",query_avail +"Display free times for a {appointment_type}.",query_avail +"Open {appointment_type} slots.",query_avail +"Find available {appointment_type} times.",query_avail +"List {appointment_type} openings.",query_avail +"{appointment_type} availability check.",query_avail +"Show openings for a {appointment_type} this Friday.",query_avail +"Next available {appointment_type}.",query_avail +"List all openings for a {appointment_type}.",query_avail +"Show the booking calendar for {appointment_type}s.",query_avail +"Find an opening for a {appointment_type}.",query_avail +"Show {practitioner_name}'s availability for a {appointment_type}.",query_avail +"Check {practitioner_name}'s calendar for a {appointment_type}.",query_avail +"List open slots for a {appointment_type} with {practitioner_name}.",query_avail +"Availability of {practitioner_name} for a {appointment_type}.",query_avail +"{practitioner_name}'s schedule for a {appointment_type}.",query_avail +"Free times for a {appointment_type} with Professor {practitioner_name}.",query_avail +"{practitioner_name}'s availability for a {appointment_type} this week.",query_avail +"Openings for a {appointment_type} with {practitioner_name} tomorrow.",query_avail +"Free times for a {appointment_type} with {practitioner_name} next week.",query_avail +"Check {practitioner_name}'s schedule for a {appointment_type} on Friday.",query_avail +"Display {practitioner_name}'s free times for a {appointment_type}.",query_avail +"{practitioner_name}'s open slots for a {appointment_type}.",query_avail +"Find available {appointment_type} times with {practitioner_name}.",query_avail +"List openings for a {appointment_type} with {practitioner_name}.",query_avail +"{practitioner_name} {appointment_type} availability check.",query_avail +"Show {practitioner_name}'s openings for a {appointment_type} this Friday.",query_avail +"{practitioner_name}'s calendar for a {appointment_type} next month.",query_avail +"Free slots with {practitioner_name} for a {appointment_type} this afternoon.",query_avail +"Availability of {practitioner_name} for a {appointment_type} on July 23rd.",query_avail +"{practitioner_name}'s next available {appointment_type}.",query_avail +"List all openings for a {appointment_type} with {practitioner_name}.",query_avail +"Show the booking calendar for a {appointment_type} with {practitioner_name}.",query_avail +"Find an opening for a {appointment_type} with {practitioner_name}.",query_avail +"Display the schedule of {practitioner_name} for a {appointment_type}.",query_avail +"{practitioner_name}'s free times for a {appointment_type} today.",query_avail +"Availability of {practitioner_name} for a {appointment_type}.",query_avail +"List all free times for a {appointment_type} with {practitioner_name}.",query_avail +"{practitioner_name}'s calendar for {appointment_type}s.",query_avail +"Openings with {practitioner_name} for a {appointment_type}.",query_avail +"Find {practitioner_name}'s availability for a {appointment_type}.",query_avail +"List times for a {appointment_type} with {practitioner_name}.",query_avail +"When is {practitioner_name} free for a {appointment_type}.",query_avail +"Schedule for a {appointment_type} with {practitioner_name}.",query_avail +"Check for open times.",query_avail +"What is free.",query_avail +"Times available to book.",query_avail +"Advising session availability.",query_avail +"Office hours with {practitioner_name}.",query_avail +"Openings for a thesis discussion.",query_avail +"Project meeting slots with {practitioner_name}.",query_avail +"Show me free time.",query_avail +"Find available slots.",query_avail +"What times are available for {practitioner_name}.",query_avail +"Availability for a lab session.",query_avail +"{practitioner_name} meeting times.",query_avail +"Show the free slots on the calendar.",query_avail +"Check time slots.",query_avail +"Availability inquiry for {practitioner_name}.",query_avail +"Free time inquiry for a {appointment_type}.",query_avail +"List the available times.",query_avail +"{practitioner_name} free time check.",query_avail +"Check openings for a {appointment_type} with {practitioner_name}.",query_avail +"Display schedule for next week.",query_avail +"Time slots for {practitioner_name}.",query_avail +"Free slots.",query_avail +"Openings in the calendar.",query_avail +"Find availability for a consultation with {practitioner_name}.",query_avail +"Check {practitioner_name}'s free time.",query_avail +"Availability for an oral exam.",query_avail diff --git a/data/raw/intents/reschedule.csv b/data/raw/intents/reschedule.csv new file mode 100644 index 0000000..eed949f --- /dev/null +++ b/data/raw/intents/reschedule.csv @@ -0,0 +1,144 @@ +text,intent +"I need to reschedule my appointment.",reschedule +"Can I change my appointment time?",reschedule +"I need to move my meeting.",reschedule +"I can't make my scheduled appointment.",reschedule +"I need to find a different time for my meeting.",reschedule +"My schedule has changed, I need to reschedule.",reschedule +"I have a conflict with my current appointment time.",reschedule +"I'd like to reschedule.",reschedule +"Is it possible to move my appointment?",reschedule +"Change my booking.",reschedule +"I need to postpone my session.",reschedule +"Can we find another time?",reschedule +"Something came up, I need to change my appointment.",reschedule +"Let's move my scheduled meeting.",reschedule +"I would like to reschedule.",reschedule +"Reschedule my appointment, please.",reschedule +"I need to push my meeting back.",reschedule +"Can I bring my appointment forward?",reschedule +"I won't be able to make it.",reschedule +"I need a new time slot.",reschedule +"Alter my appointment.",reschedule +"Need to change an existing appointment.",reschedule +"I have to move something on my calendar.",reschedule +"I'd like to shift my appointment to a later time.",reschedule +"I have an appointment I need to change.",reschedule +"Reschedule my appointment with ID {appointment_id}.",reschedule +"I need to change appointment {appointment_id}.",reschedule +"Please move my booking {appointment_id}.",reschedule +"I can't make it to appointment {appointment_id}.",reschedule +"I want to reschedule booking {appointment_id}.",reschedule +"Change the time for meeting {appointment_id}.",reschedule +"Let's find a new time for {appointment_id}.",reschedule +"Reschedule {appointment_id}.",reschedule +"A conflict has come up for appointment {appointment_id}.",reschedule +"Postpone my appointment {appointment_id}.",reschedule +"I need to change the date for {appointment_id}.",reschedule +"Can you help me reschedule {appointment_id}?",reschedule +"I would like to change my appointment, ID {appointment_id}.",reschedule +"Booking {appointment_id} needs to be moved.",reschedule +"Shift appointment {appointment_id} to next week.",reschedule +"Let's reschedule appointment {appointment_id}.",reschedule +"I can no longer make my meeting {appointment_id}.",reschedule +"Regarding appointment {appointment_id}, I need to change it.",reschedule +"Please find a new slot for {appointment_id}.",reschedule +"I must reschedule my appointment, reference {appointment_id}.",reschedule +"I have to reschedule my {appointment_type}.",reschedule +"Can I change my {appointment_type} with {practitioner_name}?",reschedule +"I need to move my meeting with {practitioner_name}.",reschedule +"I'd like to reschedule my {appointment_type}.",reschedule +"Change my advising session with {practitioner_name}.",reschedule +"I need to find a new time for my {appointment_type}.",reschedule +"Reschedule my meeting with Professor {practitioner_name}.",reschedule +"I can't make my {appointment_type} on Tuesday.",reschedule +"I have to postpone my office hours visit with {practitioner_name}.",reschedule +"I'd like to change the time of my {appointment_type}.",reschedule +"I need to reschedule my talk with {practitioner_name}.",reschedule +"Move my {appointment_type} with {practitioner_name} to Friday.",reschedule +"I have a {appointment_type} with {practitioner_name} that I need to move.",reschedule +"Can we reschedule the {appointment_type} I have with {practitioner_name}?",reschedule +"I want to change my appointment with {practitioner_name}.",reschedule +"I need to change my lab session.",reschedule +"Reschedule my project meeting.",reschedule +"I can't make my advising session with {practitioner_name}.",reschedule +"I'd like to move my thesis discussion.",reschedule +"Postpone my meeting with {practitioner_name}.",reschedule +"Can I change my tutorial session time?",reschedule +"I need to find another time for my {appointment_type} with {practitioner_name}.",reschedule +"My {appointment_type} with {practitioner_name} needs to be rescheduled.",reschedule +"Let's move my {appointment_type}.",reschedule +"I need to reschedule with {practitioner_name}.",reschedule +"Shift my {appointment_type} to another day.",reschedule +"I can't attend the {appointment_type}.",reschedule +"I must change my meeting with {practitioner_name}.",reschedule +"I need to change my {appointment_type} with {practitioner_name}, ID is {appointment_id}.",reschedule +"Reschedule my {appointment_type}, appointment ID {appointment_id}.",reschedule +"Please move my {appointment_type} with {practitioner_name}, booking ref {appointment_id}.",reschedule +"I need to change the time for my {appointment_type} with {practitioner_name} (ID: {appointment_id}).",reschedule +"My appointment {appointment_id}, a {appointment_type} with {practitioner_name}, needs to be moved.",reschedule +"Change booking {appointment_id}, my {appointment_type} with {practitioner_name}.",reschedule +"I can't make my {appointment_type} (ID {appointment_id}) with {practitioner_name}.",reschedule +"I would like to reschedule my {appointment_type} with {practitioner_name}. The ID is {appointment_id}.",reschedule +"Can we move my {appointment_type} with {practitioner_name}? It's appointment {appointment_id}.",reschedule +"Postpone my {appointment_type} with {practitioner_name}, reference {appointment_id}.",reschedule +"Move my appointment.",reschedule +"Change an appointment.",reschedule +"Rebook an appointment.",reschedule +"Find new time for {appointment_id}.",reschedule +"Can I get a different time for my meeting with {practitioner_name}?",reschedule +"I'm unable to attend my {appointment_type}.",reschedule +"I need to reschedule something.",reschedule +"That time no longer works for me.",reschedule +"I have a scheduling conflict.",reschedule +"I need to reschedule my booking {appointment_id}.",reschedule +"Let's find an alternative time for my chat with {practitioner_name}.",reschedule +"My plans have changed, can I move my {appointment_type}?",reschedule +"Please cancel and rebook my appointment.",reschedule +"Unfortunately, I need to move my meeting.",reschedule +"Can we push my appointment {appointment_id} to the afternoon?",reschedule +"I'd like to see {practitioner_name} at a different time.",reschedule +"My {appointment_type} needs to be on a different day.",reschedule +"Can we reschedule? I'm referring to appointment {appointment_id}.",reschedule +"Something has come up and I need to change my meeting with {practitioner_name}.",reschedule +"I am writing to reschedule my {appointment_type}.",reschedule +"I have to move my {appointment_id} appointment.",reschedule +"I'd like to request a new time for my meeting.",reschedule +"Is it too late to change my appointment time?",reschedule +"I need to reschedule my appointment, the ID is {appointment_id}.",reschedule +"My meeting with {practitioner_name} has to be moved.",reschedule +"Change my {appointment_type} time.",reschedule +"Can we reschedule my {appointment_type}, ID {appointment_id}?",reschedule +"I need to find another slot for my meeting with {practitioner_name}.",reschedule +"I have an appointment, {appointment_id}, that I must reschedule.",reschedule +"Please help me move my {appointment_type} with {practitioner_name}.",reschedule +"Reschedule my one-on-one with {practitioner_name}.",reschedule +"I need to move my advising session, which is appointment {appointment_id}.",reschedule +"Change my appointment with {practitioner_name} on Wednesday.",reschedule +"I can't make my project meeting (ID {appointment_id}).",reschedule +"Could you find a new time for my {appointment_type}?",reschedule +"I need to reschedule my chat with {practitioner_name}.",reschedule +"Move booking {appointment_id} to next week.",reschedule +"I'd like to change my {appointment_type} with {practitioner_name} to another day.",reschedule +"I have appointment {appointment_id} with {practitioner_name} that needs rescheduling.",reschedule +"Reschedule my consultation.",reschedule +"I need to change the time of my defense rehearsal with {practitioner_name}.",reschedule +"Move my {appointment_id} from Tuesday to Thursday.",reschedule +"I must change my {appointment_type} appointment with {practitioner_name}.",reschedule +"Let's move my meeting, ID {appointment_id}.",reschedule +"I need to reschedule my session with {practitioner_name}.",reschedule +"Rebook my {appointment_type}.",reschedule +"Change {appointment_id}.",reschedule +"I want to move my appointment with {practitioner_name}, ID {appointment_id}.",reschedule +"Postpone my session with {practitioner_name}.",reschedule +"My tutorial session (ID {appointment_id}) has a time conflict.",reschedule +"Shift my meeting with {practitioner_name} to 3pm.",reschedule +"I need to change the time of appointment {appointment_id}.",reschedule +"Reschedule the {appointment_type} with {practitioner_name}, please.",reschedule +"I'm afraid I have to move my meeting, ref {appointment_id}.",reschedule +"Change of plans, I need to reschedule with {practitioner_name}.",reschedule +"Can we find an alternative slot for {appointment_id}?",reschedule +"I am unavailable for my {appointment_type} and need to move it.",reschedule +"Reschedule my meeting with {practitioner_name} regarding my thesis.",reschedule +"I would like to push my appointment {appointment_id} back by an hour.",reschedule +"I have to reschedule my {appointment_type} with {practitioner_name} from tomorrow to next week.",reschedule diff --git a/data/raw/intents/schedule.csv b/data/raw/intents/schedule.csv new file mode 100644 index 0000000..eb5a89d --- /dev/null +++ b/data/raw/intents/schedule.csv @@ -0,0 +1,140 @@ +text,intent +"I need to make an appointment.",schedule +"Can I schedule a meeting?",schedule +"I'd like to book a time slot.",schedule +"I want to schedule something.",schedule +"Set up a meeting.",schedule +"I'd like to book an appointment.",schedule +"Is it possible to schedule a session?",schedule +"Book an appointment for me.",schedule +"I need to talk to my advisor.",schedule +"Let's set up a time to connect.",schedule +"Arrange a meeting, please.",schedule +"I want to book a session.",schedule +"Can you help me schedule something?",schedule +"Book a new appointment.",schedule +"Create a new meeting.",schedule +"I'd like to get on the calendar.",schedule +"Book me in.",schedule +"Need to schedule.",schedule +"I want to meet.",schedule +"Find an open slot for me.",schedule +"I'd like to set a meeting time.",schedule +"Please schedule a new appointment for me.",schedule +"Time for a meeting.",schedule +"Need to book a slot.",schedule +"Let's arrange a chat.",schedule +"I need to set up a quick chat.",schedule +"Book a time slot.",schedule +"Can I get an appointment?",schedule +"I need to meet with {practitioner_name}.",schedule +"Schedule me with {practitioner_name}.",schedule +"Book a meeting with {practitioner_name}.",schedule +"Can I see {practitioner_name}?",schedule +"I'd like to talk to {practitioner_name}.",schedule +"Set up a meeting with {practitioner_name}.",schedule +"I want to schedule a meeting with {practitioner_name}.",schedule +"Arrange a meeting with {practitioner_name}.",schedule +"Need to speak to {practitioner_name}.",schedule +"Book me with {practitioner_name}.",schedule +"Let's schedule with {practitioner_name}.",schedule +"Get me on {practitioner_name}'s schedule.",schedule +"I need an appointment with {practitioner_name}.",schedule +"Please book a meeting with {practitioner_name}.",schedule +"I need some time with {practitioner_name}.",schedule +"Talk to {practitioner_name}.",schedule +"Book {practitioner_name}.",schedule +"I need to see {practitioner_name}.",schedule +"Can I get on {practitioner_name}'s calendar?",schedule +"Set a meeting with {practitioner_name}.",schedule +"I want to book time with {practitioner_name}.",schedule +"{practitioner_name} appointment.",schedule +"Schedule something with {practitioner_name}.",schedule +"I must speak with {practitioner_name}.",schedule +"Time with {practitioner_name}.",schedule +"I require a meeting with {practitioner_name}.",schedule +"I need to book a {appointment_type}.",schedule +"Schedule a {appointment_type}.",schedule +"I want to set up a {appointment_type}.",schedule +"Can I make an appointment for a {appointment_type}?",schedule +"Book me in for a {appointment_type}.",schedule +"I'd like to schedule a {appointment_type}.",schedule +"New {appointment_type}.",schedule +"I want to arrange a {appointment_type}.",schedule +"Find time for a {appointment_type}.",schedule +"Book a {appointment_type}, please.",schedule +"I need a {appointment_type} slot.",schedule +"Let's schedule a {appointment_type}.",schedule +"I need an {appointment_type}.",schedule +"Is there availability for a {appointment_type}?",schedule +"Book {appointment_type}.",schedule +"I'd like to book a {appointment_type} for next week.",schedule +"Can you schedule a {appointment_type} for me?",schedule +"I need to have a {appointment_type}.",schedule +"Help me book a {appointment_type}.",schedule +"{appointment_type} booking.",schedule +"I'm looking to schedule a {appointment_type}.",schedule +"I need to do a {appointment_type}.",schedule +"Set up {appointment_type}.",schedule +"I want to get a {appointment_type} on the books.",schedule +"Please book a {appointment_type}.",schedule +"I'd like to have a {appointment_type}.",schedule +"Find an open slot for a {appointment_type}.",schedule +"Schedule my {appointment_type}.",schedule +"Need to book a {appointment_type} soon.",schedule +"Arrange a {appointment_type} for me.",schedule +"I need to book a {appointment_type} with {practitioner_name}.",schedule +"Schedule a {appointment_type} with {practitioner_name}.",schedule +"Can I get a {appointment_type} with {practitioner_name}?",schedule +"I'd like to set up a {appointment_type} with {practitioner_name}.",schedule +"Book a {appointment_type} with {practitioner_name}, please.",schedule +"I want to schedule a {appointment_type} with {practitioner_name}.",schedule +"New {appointment_type} with {practitioner_name}.",schedule +"Arrange a {appointment_type} with professor {practitioner_name}.",schedule +"I need a {appointment_type} with my advisor, {practitioner_name}.",schedule +"I want to book {practitioner_name} for a {appointment_type}.",schedule +"Let's schedule a {appointment_type} with {practitioner_name}.",schedule +"Can I book {practitioner_name} for a {appointment_type} next Monday?",schedule +"Help me book a {appointment_type} with {practitioner_name}.",schedule +"{appointment_type} with {practitioner_name}.",schedule +"I'm looking to schedule a {appointment_type} with {practitioner_name}.",schedule +"Set up {appointment_type} with {practitioner_name}.",schedule +"I require a {appointment_type} with {practitioner_name}.",schedule +"Book me for a {appointment_type} with {practitioner_name}.",schedule +"I'd like to book {practitioner_name} for a {appointment_type}.",schedule +"{practitioner_name} {appointment_type} booking.",schedule +"I must have a {appointment_type} with {practitioner_name} this week.",schedule +"Schedule {practitioner_name} for a {appointment_type}.",schedule +"Book {practitioner_name} {appointment_type}.",schedule +"I need to schedule a {appointment_type} for my project with {practitioner_name}.",schedule +"Time for a {appointment_type} with {practitioner_name}.",schedule +"I need to talk to {practitioner_name} for a {appointment_type}.",schedule +"Is {practitioner_name} free for a {appointment_type}?",schedule +"I want to meet {practitioner_name} for a {appointment_type}.",schedule +"Book a {appointment_type} with {practitioner_name} as soon as possible.",schedule +"I want a {appointment_type} with {practitioner_name}.",schedule +"{practitioner_name}'s {appointment_type}.",schedule +"I would like to arrange a {appointment_type} with {practitioner_name}.",schedule +"I need an appointment with {practitioner_name} for a {appointment_type}.",schedule +"Find me a time for a {appointment_type} with {practitioner_name}.",schedule +"Let's book a {appointment_type} with {practitioner_name} for this Friday.",schedule +"Can you put a {appointment_type} on the calendar with {practitioner_name}?",schedule +"Get me a {appointment_type} with {practitioner_name}.",schedule +"I need to arrange a {appointment_type} with {practitioner_name} urgently.",schedule +"Book a lab session with {practitioner_name}.",schedule +"I need to schedule my thesis defense with {practitioner_name}.",schedule +"Set up office hours with {practitioner_name}.",schedule +"Can I schedule a project meeting with {practitioner_name}?",schedule +"I need to book an advising session.",schedule +"Schedule my oral exam.",schedule +"Book office hours.",schedule +"I need to see {practitioner_name} about my grades.",schedule +"Set up a tutorial with {practitioner_name}.",schedule +"I need to book a time to discuss my dissertation with {practitioner_name}.",schedule +"Can we schedule a group meeting with {practitioner_name}?",schedule +"I'd like to book a consultation.",schedule +"Schedule a {appointment_type} for my group with {practitioner_name}.",schedule +"Book a meeting about my final project.",schedule +"I need a one-on-one with {practitioner_name}.",schedule +"Let's schedule a call with {practitioner_name}.",schedule +"Arrange a review session with {practitioner_name}.",schedule diff --git a/data/raw/test.jsonl b/data/raw/test.jsonl new file mode 100644 index 0000000..8aaa0eb --- /dev/null +++ b/data/raw/test.jsonl @@ -0,0 +1,439 @@ +{"text":"how much candy have i consumed this week","intent":"oos","entities":[]} +{"text":"Check for open times.","intent":"query_avail","entities":[]} +{"text":"use Mr. Rodriguez 's free time.","intent":"query_avail","entities":[{"start":4,"end":17,"label":"practitioner_name"}]} +{"text":"Let's find an alternative time for my chat with Prof. Martini.","intent":"reschedule","entities":[{"start":48,"end":61,"label":"practitioner_name"}]} +{"text":"i don't like that, no","intent":"negative_reply","entities":[]} +{"text":"five times next week.","intent":"query_avail","entities":[]} +{"text":"Please cancel any upcoming lab safety training .","intent":"cancel","entities":[{"start":27,"end":46,"label":"appointment_type"}]} +{"text":"Schedule my career counseling ;","intent":"schedule","entities":[{"start":12,"end":29,"label":"appointment_type"}]} +{"text":"do I get a mock interview with Stewart ?","intent":"schedule","entities":[{"start":11,"end":25,"label":"appointment_type"},{"start":31,"end":38,"label":"practitioner_name"}]} +{"text":"Dott.ssa Chiara Negri 's availability next week.","intent":"query_avail","entities":[{"start":0,"end":21,"label":"practitioner_name"}]} +{"text":"Delete all booking.","intent":"cancel","entities":[]} +{"text":"how many harry potter books are there","intent":"oos","entities":[]} +{"text":"did you put a internship interview on the calendar with Collins ?","intent":"schedule","entities":[{"start":14,"end":34,"label":"appointment_type"},{"start":56,"end":63,"label":"practitioner_name"}]} +{"text":"Check time slots.","intent":"query_avail","entities":[]} +{"text":"Cancel ;","intent":"cancel","entities":[]} +{"text":"My massage therapy needs to be on a different server","intent":"reschedule","entities":[{"start":3,"end":18,"label":"appointment_type"}]} +{"text":"hey, how's it going","intent":"greeting","entities":[]} +{"text":"Let's book a internship check-in with Prof. Watson for this case","intent":"schedule","entities":[{"start":13,"end":32,"label":"appointment_type"},{"start":38,"end":50,"label":"practitioner_name"}]} +{"text":"we want to book Prof. Parker for a course planning .","intent":"schedule","entities":[{"start":16,"end":28,"label":"practitioner_name"},{"start":35,"end":50,"label":"appointment_type"}]} +{"text":"I'd like to get on the calendar.","intent":"schedule","entities":[]} +{"text":"I no longer require any meeting with Dott.ssa Valentina Bellini .","intent":"cancel","entities":[{"start":37,"end":63,"label":"practitioner_name"}]} +{"text":"I wanted to book a session.","intent":"schedule","entities":[]} +{"text":"I need to cancel my booking, number #746934 }","intent":"cancel","entities":[{"start":36,"end":43,"label":"appointment_id"}]} +{"text":"yes, that's confirmed","intent":"positive_reply","entities":[]} +{"text":"Let's move my scheduled meeting.","intent":"reschedule","entities":[]} +{"text":"ahoy hoy","intent":"greeting","entities":[]} +{"text":"how's life","intent":"greeting","entities":[]} +{"text":"during my meeting with Dott. Simone Marchetti regarding my thesis.","intent":"reschedule","entities":[{"start":23,"end":45,"label":"practitioner_name"}]} +{"text":"I want to schedule a IT support session for Thompson .","intent":"schedule","entities":[{"start":21,"end":39,"label":"appointment_type"},{"start":44,"end":52,"label":"practitioner_name"}]} +{"text":"Openings with Mr. Peterson ","intent":"query_avail","entities":[{"start":14,"end":26,"label":"practitioner_name"}]} +{"text":"Availability for an oral exam.","intent":"query_avail","entities":[]} +{"text":"I must cancel appointments #365560 .","intent":"cancel","entities":[{"start":27,"end":34,"label":"appointment_id"}]} +{"text":"yes, that's correct","intent":"positive_reply","entities":[]} +{"text":"Please book a meeting regarding Dott. Matteo Palmieri .","intent":"schedule","entities":[{"start":32,"end":53,"label":"practitioner_name"}]} +{"text":"Something may come up and I need to change my meeting with Dr. Ward .","intent":"reschedule","entities":[{"start":59,"end":67,"label":"practitioner_name"}]} +{"text":"I have a scheduling schedule","intent":"reschedule","entities":[]} +{"text":"I need to cancel my appointments","intent":"cancel","entities":[]} +{"text":"Display the schedule file Caruso .","intent":"query_avail","entities":[{"start":26,"end":32,"label":"practitioner_name"}]} +{"text":"Check list availability.","intent":"query_avail","entities":[]} +{"text":"Display calendar _ eye exam s.","intent":"query_avail","entities":[{"start":19,"end":27,"label":"appointment_type"}]} +{"text":"I'm cancelling the meeting with Villa.","intent":"cancel","entities":[{"start":32,"end":37,"label":"practitioner_name"}]} +{"text":"that is not correct","intent":"negative_reply","entities":[]} +{"text":"sure thing","intent":"positive_reply","entities":[]} +{"text":"what's the blue book value of my car","intent":"oos","entities":[]} +{"text":"Rebook an .","intent":"reschedule","entities":[]} +{"text":"What times are available for Young.","intent":"query_avail","entities":[{"start":29,"end":34,"label":"practitioner_name"}]} +{"text":"I require a financial advising with Leone.","intent":"schedule","entities":[{"start":12,"end":30,"label":"appointment_type"},{"start":36,"end":41,"label":"practitioner_name"}]} +{"text":"I'd like to start my reservation with Professor Cattaneo .","intent":"cancel","entities":[{"start":38,"end":56,"label":"practitioner_name"}]} +{"text":"saving time for a language proficiency test .","intent":"schedule","entities":[{"start":18,"end":43,"label":"appointment_type"}]} +{"text":"hi what's up","intent":"greeting","entities":[]} +{"text":"are you good","intent":"greeting","entities":[]} +{"text":"client must change my department head meeting appointment with Serra .","intent":"reschedule","entities":[{"start":22,"end":45,"label":"appointment_type"},{"start":63,"end":68,"label":"practitioner_name"}]} +{"text":"it was lovely to speak with you, bye bye","intent":"bye","entities":[]} +{"text":"thanks for your help","intent":"positive_reply","entities":[]} +{"text":"Set up 48 hours with Professor Bernardi .","intent":"schedule","entities":[{"start":21,"end":39,"label":"practitioner_name"}]} +{"text":"I need to see Collins.","intent":"schedule","entities":[{"start":14,"end":21,"label":"practitioner_name"}]} +{"text":"he won't be needing my appointment anymore.","intent":"cancel","entities":[]} +{"text":"catch you later","intent":"bye","entities":[]} +{"text":"hey what's up","intent":"greeting","entities":[]} +{"text":"I need just cancel my meeting with Gray .","intent":"cancel","entities":[{"start":35,"end":39,"label":"practitioner_name"}]} +{"text":"Schedule for a legal consultation with Dr. Ferrara ;","intent":"query_avail","entities":[{"start":15,"end":33,"label":"appointment_type"},{"start":39,"end":50,"label":"practitioner_name"}]} +{"text":"I can't make the meeting with Prof. Scott, so I'm cancelling.","intent":"cancel","entities":[{"start":30,"end":41,"label":"practitioner_name"}]} +{"text":"• cancelling the meeting with Gray .","intent":"cancel","entities":[{"start":30,"end":34,"label":"practitioner_name"}]} +{"text":"Check Dr. Wood update schedule for Friday.","intent":"query_avail","entities":[{"start":6,"end":14,"label":"practitioner_name"}]} +{"text":"Let's reschedule appointment #124142.","intent":"reschedule","entities":[{"start":29,"end":36,"label":"appointment_id"}]} +{"text":"is everything ok with you","intent":"greeting","entities":[]} +{"text":"Change an .","intent":"reschedule","entities":[]} +{"text":"I need an appointment with Collins a letter of recommendation request .","intent":"schedule","entities":[{"start":27,"end":34,"label":"practitioner_name"},{"start":38,"end":70,"label":"appointment_type"}]} +{"text":"good speaking to you","intent":"bye","entities":[]} +{"text":"Villa free data check.","intent":"query_avail","entities":[{"start":0,"end":5,"label":"practitioner_name"}]} +{"text":"Book career counseling }","intent":"schedule","entities":[{"start":5,"end":22,"label":"appointment_type"}]} +{"text":"developers want to set up a quarterly review .","intent":"schedule","entities":[{"start":28,"end":44,"label":"appointment_type"}]} +{"text":"goodbye for now ai","intent":"bye","entities":[]} +{"text":"Openings for a thesis ;","intent":"query_avail","entities":[]} +{"text":"Availability of Prof. Murphy database","intent":"query_avail","entities":[{"start":16,"end":28,"label":"practitioner_name"}]} +{"text":"Please cancel my next meeting.","intent":"cancel","entities":[]} +{"text":"see you later alligator","intent":"bye","entities":[]} +{"text":"appreciated","intent":"positive_reply","entities":[]} +{"text":"I'd like to request a new time for my friends","intent":"reschedule","entities":[]} +{"text":"Due to unforeseen circumstances, I have to cancel appointment #186683.","intent":"cancel","entities":[{"start":62,"end":69,"label":"appointment_id"}]} +{"text":"I need to reschedule my session with Ms. Davis.","intent":"reschedule","entities":[{"start":37,"end":46,"label":"practitioner_name"}]} +{"text":"Professor Sala 's publicly available slot.","intent":"query_avail","entities":[{"start":0,"end":14,"label":"practitioner_name"}]} +{"text":"I refuse to cancel a meeting, ID #717513 .","intent":"cancel","entities":[{"start":33,"end":40,"label":"appointment_id"}]} +{"text":"I want ta arrange a dental cleaning .","intent":"schedule","entities":[{"start":20,"end":35,"label":"appointment_type"}]} +{"text":"that's false","intent":"negative_reply","entities":[]} +{"text":"I need to do a allergy test |","intent":"schedule","entities":[{"start":15,"end":27,"label":"appointment_type"}]} +{"text":"how hard is it to close a bank account at wells fargo","intent":"oos","entities":[]} +{"text":"I'd like to get past the calendar.","intent":"schedule","entities":[]} +{"text":" cancel my attendance for the pre-defense meeting .","intent":"cancel","entities":[{"start":30,"end":49,"label":"appointment_type"}]} +{"text":"I want to know something.","intent":"schedule","entities":[]} +{"text":"your answer pleased me","intent":"positive_reply","entities":[]} +{"text":"Find an example for a Ph.D. defense .","intent":"query_avail","entities":[{"start":22,"end":35,"label":"appointment_type"}]} +{"text":"Is there availability for a research consultation?","intent":"schedule","entities":[{"start":28,"end":49,"label":"appointment_type"}]} +{"text":"define new time for #993216 .","intent":"reschedule","entities":[{"start":20,"end":27,"label":"appointment_id"}]} +{"text":"Book a lab session with Ricci ;","intent":"schedule","entities":[{"start":24,"end":29,"label":"practitioner_name"}]} +{"text":"calculate the available times.","intent":"query_avail","entities":[]} +{"text":"accepting my appointment.","intent":"reschedule","entities":[]} +{"text":"I must cancel appointment #709588 |","intent":"cancel","entities":[{"start":26,"end":33,"label":"appointment_id"}]} +{"text":"I want to reschedule booking #676483 ;","intent":"reschedule","entities":[{"start":29,"end":36,"label":"appointment_id"}]} +{"text":"I can't make my call please cancel it.","intent":"cancel","entities":[]} +{"text":"Please process a cancellation for #676289.","intent":"cancel","entities":[{"start":34,"end":41,"label":"appointment_id"}]} +{"text":"Delete my upcoming project kickoff.","intent":"cancel","entities":[{"start":19,"end":34,"label":"appointment_type"}]} +{"text":"Can you help me arrange something?","intent":"schedule","entities":[]} +{"text":"your help is appreciated","intent":"positive_reply","entities":[]} +{"text":"Need to speak to Ricci.","intent":"schedule","entities":[{"start":17,"end":22,"label":"practitioner_name"}]} +{"text":"Can I schedule a project meeting with Torres?","intent":"schedule","entities":[{"start":38,"end":44,"label":"practitioner_name"}]} +{"text":"yeap","intent":"positive_reply","entities":[]} +{"text":"Something came up, I need to change your appointment.","intent":"reschedule","entities":[]} +{"text":"that is so false","intent":"negative_reply","entities":[]} +{"text":"I'd like a reschedule.","intent":"reschedule","entities":[]} +{"text":"Torres's schedule.","intent":"query_avail","entities":[{"start":0,"end":6,"label":"practitioner_name"}]} +{"text":"Need to book a slot.","intent":"schedule","entities":[]} +{"text":"I'd like the book Dr. Caterina Gentile for a lezione privata .","intent":"schedule","entities":[{"start":18,"end":38,"label":"practitioner_name"},{"start":45,"end":60,"label":"appointment_type"}]} +{"text":"Display \\ schedule of Dott. Francesco Testa .","intent":"query_avail","entities":[{"start":22,"end":43,"label":"practitioner_name"}]} +{"text":"I need to move my meeting with Dr. Stefano Marchese.","intent":"reschedule","entities":[{"start":31,"end":51,"label":"practitioner_name"}]} +{"text":"Book a advising session with Nelson , .","intent":"schedule","entities":[{"start":7,"end":23,"label":"appointment_type"},{"start":29,"end":35,"label":"practitioner_name"}]} +{"text":"I am writing to reschedule my therapy session.","intent":"reschedule","entities":[{"start":30,"end":45,"label":"appointment_type"}]} +{"text":"Cancel my appointment with booking reference #222384.","intent":"cancel","entities":[{"start":45,"end":52,"label":"appointment_id"}]} +{"text":"I would like to reschedule.","intent":"reschedule","entities":[]} +{"text":"Book - in.","intent":"schedule","entities":[]} +{"text":"Show the booking option for Dott.ssa Valentina Bellini .","intent":"query_avail","entities":[{"start":28,"end":54,"label":"practitioner_name"}]} +{"text":"ai how are you doing today","intent":"greeting","entities":[]} +{"text":"Change my plans, I need to reschedule with Gatti .","intent":"reschedule","entities":[{"start":43,"end":48,"label":"practitioner_name"}]} +{"text":"how's it going with you","intent":"greeting","entities":[]} +{"text":"i'm out of here","intent":"bye","entities":[]} +{"text":"Can I get access lab demonstration with Dott. Matteo Palmieri ?","intent":"schedule","entities":[{"start":17,"end":34,"label":"appointment_type"},{"start":40,"end":61,"label":"practitioner_name"}]} +{"text":"that is false","intent":"negative_reply","entities":[]} +{"text":"Find available many times.","intent":"query_avail","entities":[]} +{"text":"Booking #355543 needs to become moved.","intent":"reschedule","entities":[{"start":8,"end":15,"label":"appointment_id"}]} +{"text":"Move my appointment.","intent":"reschedule","entities":[]} +{"text":"I would like to arrange a esame orale with Messina.","intent":"schedule","entities":[{"start":26,"end":37,"label":"appointment_type"},{"start":43,"end":50,"label":"practitioner_name"}]} +{"text":"see you soon","intent":"bye","entities":[]} +{"text":"that's definitely true","intent":"positive_reply","entities":[]} +{"text":"The business session with Mr. Rogers , booking #437573 , needs to be cancelled.","intent":"cancel","entities":[{"start":26,"end":36,"label":"practitioner_name"},{"start":47,"end":54,"label":"appointment_id"}]} +{"text":"if we reschedule my client presentation , ID #079262 ?","intent":"reschedule","entities":[{"start":20,"end":39,"label":"appointment_type"},{"start":45,"end":52,"label":"appointment_id"}]} +{"text":"Young free time !","intent":"query_avail","entities":[{"start":0,"end":5,"label":"practitioner_name"}]} +{"text":"I'd like to cancel the meeting you have with Esposito .","intent":"cancel","entities":[{"start":45,"end":53,"label":"practitioner_name"}]} +{"text":"My apologies, but I shall cancel my lab demonstration with Piras , ID #106072 .","intent":"cancel","entities":[{"start":36,"end":53,"label":"appointment_type"},{"start":59,"end":64,"label":"practitioner_name"},{"start":70,"end":77,"label":"appointment_id"}]} +{"text":"what's up","intent":"greeting","entities":[]} +{"text":"Cancel my office hours with Mr. Adams, please.","intent":"cancel","entities":[{"start":10,"end":22,"label":"appointment_type"},{"start":28,"end":37,"label":"practitioner_name"}]} +{"text":"that's true","intent":"positive_reply","entities":[]} +{"text":"Arrange a study abroad advising for me.","intent":"schedule","entities":[{"start":10,"end":31,"label":"appointment_type"}]} +{"text":"Need to schedule.","intent":"schedule","entities":[]} +{"text":"Book me with Professor Barbieri ;","intent":"schedule","entities":[{"start":13,"end":31,"label":"practitioner_name"}]} +{"text":"I decided to schedule something.","intent":"schedule","entities":[]} +{"text":"how can i keep my windshield from fogging up in winter","intent":"oos","entities":[]} +{"text":"List openings for a qualifying exam with Dr. Ferrara.","intent":"query_avail","entities":[{"start":20,"end":35,"label":"appointment_type"},{"start":41,"end":52,"label":"practitioner_name"}]} +{"text":"Can you change my appointment time?","intent":"reschedule","entities":[]} +{"text":"not formally cancelling my alumni interview .","intent":"cancel","entities":[{"start":27,"end":43,"label":"appointment_type"}]} +{"text":"it was a pleasure talking to you","intent":"bye","entities":[]} +{"text":"I need to book a time to discuss my dissertation with Bell.","intent":"schedule","entities":[{"start":54,"end":58,"label":"practitioner_name"}]} +{"text":"Check for curriculum committee meeting |","intent":"query_avail","entities":[{"start":10,"end":38,"label":"appointment_type"}]} +{"text":"we want to move my appointment with Sanna , ID #562717 .","intent":"reschedule","entities":[{"start":36,"end":41,"label":"practitioner_name"},{"start":47,"end":54,"label":"appointment_id"}]} +{"text":"is autism a genetic disease","intent":"oos","entities":[]} +{"text":"that is untrue","intent":"negative_reply","entities":[]} +{"text":"goodnight","intent":"bye","entities":[]} +{"text":"I'm cancelling #682160 }","intent":"cancel","entities":[{"start":15,"end":22,"label":"appointment_id"}]} +{"text":"The meeting with Martin can be cancelled.","intent":"cancel","entities":[{"start":17,"end":23,"label":"practitioner_name"}]} +{"text":"show me what one should do to get ahead in a tech corporation","intent":"oos","entities":[]} +{"text":"Please cancel and rebook my appointment.","intent":"reschedule","entities":[]} +{"text":"I'd like to book a consultation.","intent":"schedule","entities":[]} +{"text":"a the bike looks very nice","intent":"oos","entities":[]} +{"text":"now cancel my vet appointment with Greco .","intent":"cancel","entities":[{"start":14,"end":29,"label":"appointment_type"},{"start":35,"end":40,"label":"practitioner_name"}]} +{"text":"Find Messina 's availability for instance parent-teacher conference .","intent":"query_avail","entities":[{"start":5,"end":12,"label":"practitioner_name"},{"start":42,"end":67,"label":"appointment_type"}]} +{"text":"List all notable appointment times.","intent":"query_avail","entities":[]} +{"text":"Display free times for a advising session.","intent":"query_avail","entities":[{"start":25,"end":41,"label":"appointment_type"}]} +{"text":"see Mr. Rogers 's openings for this Friday.","intent":"query_avail","entities":[{"start":4,"end":14,"label":"practitioner_name"}]} +{"text":"transaction meeting with Morgan can be cancelled.","intent":"cancel","entities":[{"start":25,"end":31,"label":"practitioner_name"}]} +{"text":"Greco _ schedule for a strategy meeting .","intent":"query_avail","entities":[{"start":0,"end":5,"label":"practitioner_name"},{"start":23,"end":39,"label":"appointment_type"}]} +{"text":"Reschedule my one-on-one password Professor Cattaneo .","intent":"reschedule","entities":[{"start":34,"end":52,"label":"practitioner_name"}]} +{"text":"take my appointment from the calendar.","intent":"cancel","entities":[]} +{"text":"now cancel my appointment with ID #336410 .","intent":"cancel","entities":[{"start":34,"end":41,"label":"appointment_id"}]} +{"text":"Time defines a sync-up with Romano .","intent":"schedule","entities":[{"start":15,"end":22,"label":"appointment_type"},{"start":28,"end":34,"label":"practitioner_name"}]} +{"text":"Change my email session with Professor Fontana .","intent":"reschedule","entities":[{"start":29,"end":46,"label":"practitioner_name"}]} +{"text":"i say negative","intent":"negative_reply","entities":[]} +{"text":"I can't change it to appointment #169618 .","intent":"reschedule","entities":[{"start":33,"end":40,"label":"appointment_id"}]} +{"text":"I want to cancel the meeting with reference #079262 ","intent":"cancel","entities":[{"start":44,"end":51,"label":"appointment_id"}]} +{"text":"remember my scheduled time.","intent":"cancel","entities":[]} +{"text":"Book me in for a placement test.","intent":"schedule","entities":[{"start":17,"end":31,"label":"appointment_type"}]} +{"text":"Availability of Messina creates a alumni interview .","intent":"query_avail","entities":[{"start":16,"end":23,"label":"practitioner_name"},{"start":34,"end":50,"label":"appointment_type"}]} +{"text":"shall I change my language exchange with Prof. Garcia ?","intent":"reschedule","entities":[{"start":18,"end":35,"label":"appointment_type"},{"start":41,"end":53,"label":"practitioner_name"}]} +{"text":"Cancel booking #106072 , my portfolio review with Stewart ;","intent":"cancel","entities":[{"start":15,"end":22,"label":"appointment_id"},{"start":28,"end":44,"label":"appointment_type"},{"start":50,"end":57,"label":"practitioner_name"}]} +{"text":"residence life meeting booking.","intent":"schedule","entities":[{"start":0,"end":22,"label":"appointment_type"}]} +{"text":"hello, ai","intent":"greeting","entities":[]} +{"text":"I no longer require the meeting name Dr. Peterson .","intent":"cancel","entities":[{"start":37,"end":49,"label":"practitioner_name"}]} +{"text":"Check Lee's free time.","intent":"query_avail","entities":[{"start":6,"end":9,"label":"practitioner_name"}]} +{"text":"I won't make it, so please try","intent":"cancel","entities":[]} +{"text":"24 hours with Bianchi .","intent":"query_avail","entities":[{"start":14,"end":21,"label":"practitioner_name"}]} +{"text":"heyo","intent":"greeting","entities":[]} +{"text":"I can't make my check-up on facebook","intent":"reschedule","entities":[{"start":16,"end":24,"label":"appointment_type"}]} +{"text":"The booking #822368 can be removed.","intent":"cancel","entities":[{"start":12,"end":19,"label":"appointment_id"}]} +{"text":"Dr. Giordano 's open slots for class car service .","intent":"query_avail","entities":[{"start":0,"end":12,"label":"practitioner_name"},{"start":37,"end":48,"label":"appointment_type"}]} +{"text":"I have to cancel all therapy session with Professor Bruno .","intent":"cancel","entities":[{"start":21,"end":36,"label":"appointment_type"},{"start":42,"end":57,"label":"practitioner_name"}]} +{"text":"I considered cancelling my booking with the ID #353753 .","intent":"cancel","entities":[{"start":47,"end":54,"label":"appointment_id"}]} +{"text":"I can't make one project meeting (ID #017187 ).","intent":"reschedule","entities":[{"start":37,"end":44,"label":"appointment_id"}]} +{"text":"I will not be subject to my appointment with Professor Fontana .","intent":"cancel","entities":[{"start":45,"end":62,"label":"practitioner_name"}]} +{"text":"I need to replace my thesis discussion with Prof. Watson , ID is #505823 .","intent":"reschedule","entities":[{"start":21,"end":38,"label":"appointment_type"},{"start":44,"end":56,"label":"practitioner_name"},{"start":65,"end":72,"label":"appointment_id"}]} +{"text":"no that isn't right","intent":"negative_reply","entities":[]} +{"text":"Show the booking calendar for a oral exam with Mr. Peterson.","intent":"query_avail","entities":[{"start":32,"end":41,"label":"appointment_type"},{"start":47,"end":59,"label":"practitioner_name"}]} +{"text":"I need to cancel the equipment training with Dr. Martinez . The booking number is #676289 ;","intent":"cancel","entities":[{"start":21,"end":39,"label":"appointment_type"},{"start":45,"end":57,"label":"practitioner_name"},{"start":82,"end":89,"label":"appointment_id"}]} +{"text":"hey there fellow","intent":"greeting","entities":[]} +{"text":"I want to set up a pet checkup.","intent":"schedule","entities":[{"start":19,"end":30,"label":"appointment_type"}]} +{"text":"no that's wrong","intent":"negative_reply","entities":[]} +{"text":"Check Conte at free time.","intent":"query_avail","entities":[{"start":6,"end":11,"label":"practitioner_name"}]} +{"text":"I have to move my #286344 appointment.","intent":"reschedule","entities":[{"start":18,"end":25,"label":"appointment_id"}]} +{"text":"I will still be attending my meeting, ID #684309 , please cancel.","intent":"cancel","entities":[{"start":41,"end":48,"label":"appointment_id"}]} +{"text":"Basile 's next available vet appointment ","intent":"query_avail","entities":[{"start":0,"end":6,"label":"practitioner_name"},{"start":25,"end":40,"label":"appointment_type"}]} +{"text":"Can I get an album","intent":"schedule","entities":[]} +{"text":"I need to find a new time for my health screening.","intent":"reschedule","entities":[{"start":33,"end":49,"label":"appointment_type"}]} +{"text":"I won't remember needing my appointment anymore.","intent":"cancel","entities":[]} +{"text":"My psychologist appointment needs to be on a busy day.","intent":"reschedule","entities":[{"start":3,"end":27,"label":"appointment_type"}]} +{"text":"that would be true","intent":"positive_reply","entities":[]} +{"text":"I can't make my advising session with Hall.","intent":"reschedule","entities":[{"start":38,"end":42,"label":"practitioner_name"}]} +{"text":"I'd like to book a time slot.","intent":"schedule","entities":[]} +{"text":"please need to move my advising session, which is appointment #974214 .","intent":"reschedule","entities":[{"start":62,"end":69,"label":"appointment_id"}]} +{"text":"Due to unforeseen circumstances, I have temporarily cancel appointment #192768 .","intent":"cancel","entities":[{"start":71,"end":78,"label":"appointment_id"}]} +{"text":"thanks again","intent":"positive_reply","entities":[]} +{"text":"My appointment #132841, a internship check-in with Rizzo, must be cancelled.","intent":"cancel","entities":[{"start":15,"end":22,"label":"appointment_id"},{"start":26,"end":45,"label":"appointment_type"},{"start":51,"end":56,"label":"practitioner_name"}]} +{"text":"Availability for Longo on december 22nd.","intent":"query_avail","entities":[{"start":17,"end":22,"label":"practitioner_name"}]} +{"text":"Postpone my colloquio di orientamento reference Conti , reference #676483 .","intent":"reschedule","entities":[{"start":12,"end":37,"label":"appointment_type"},{"start":48,"end":53,"label":"practitioner_name"},{"start":66,"end":73,"label":"appointment_id"}]} +{"text":"New departmental meeting ;","intent":"schedule","entities":[{"start":4,"end":24,"label":"appointment_type"}]} +{"text":"Shift = #439966 to next week.","intent":"reschedule","entities":[{"start":8,"end":15,"label":"appointment_id"}]} +{"text":"My appointment, #877240 , needs to be notified","intent":"cancel","entities":[{"start":16,"end":23,"label":"appointment_id"}]} +{"text":"What are Rinaldi's office hours.","intent":"query_avail","entities":[{"start":9,"end":16,"label":"practitioner_name"}]} +{"text":"I'm unable to find my course planning .","intent":"reschedule","entities":[{"start":22,"end":37,"label":"appointment_type"}]} +{"text":"hello siri","intent":"greeting","entities":[]} +{"text":"List schedule openings for Messina |","intent":"query_avail","entities":[{"start":27,"end":34,"label":"practitioner_name"}]} +{"text":"it was great talking to you","intent":"bye","entities":[]} +{"text":"I would like to change my appointment, ID #158644.","intent":"reschedule","entities":[{"start":42,"end":49,"label":"appointment_id"}]} +{"text":"what's the best time of year to plant a tree","intent":"oos","entities":[]} +{"text":"wait for Professor Barbieri tomorrow.","intent":"query_avail","entities":[{"start":9,"end":27,"label":"practitioner_name"}]} +{"text":"I need to meet with Ms. Mitchell.","intent":"schedule","entities":[{"start":20,"end":32,"label":"practitioner_name"}]} +{"text":"no, that is a falsehood","intent":"negative_reply","entities":[]} +{"text":"I need to attend my meeting.","intent":"reschedule","entities":[]} +{"text":"Change my advising page with Dr. Santoro .","intent":"reschedule","entities":[{"start":29,"end":40,"label":"practitioner_name"}]} +{"text":"thanks for that!","intent":"positive_reply","entities":[]} +{"text":"compile a list of articles pertaining to venture capital funding for me","intent":"oos","entities":[]} +{"text":"Display Young for free times.","intent":"query_avail","entities":[{"start":8,"end":13,"label":"practitioner_name"}]} +{"text":"how've you been","intent":"greeting","entities":[]} +{"text":"I need to reschedule my appointment with Dr. Stefano Marchese .","intent":"reschedule","entities":[{"start":41,"end":61,"label":"practitioner_name"}]} +{"text":"New internship interview with Professor Sala.","intent":"schedule","entities":[{"start":4,"end":24,"label":"appointment_type"},{"start":30,"end":44,"label":"practitioner_name"}]} +{"text":"tata for now","intent":"bye","entities":[]} +{"text":"Please associate my driving lesson with Mr. Peterson , reference #861346 .","intent":"cancel","entities":[{"start":20,"end":34,"label":"appointment_type"},{"start":40,"end":52,"label":"practitioner_name"},{"start":65,"end":72,"label":"appointment_id"}]} +{"text":"goodbye, ai assistant","intent":"bye","entities":[]} +{"text":"I want to move my appointment with Romano, ID #419544.","intent":"reschedule","entities":[{"start":35,"end":41,"label":"practitioner_name"},{"start":46,"end":53,"label":"appointment_id"}]} +{"text":"My tutorial session (ID #904815 ] has a time conflict.","intent":"reschedule","entities":[{"start":24,"end":31,"label":"appointment_id"}]} +{"text":"requesting an appointment.","intent":"reschedule","entities":[]} +{"text":"I will not be attending my club meeting with Dott. Marco Conti.","intent":"cancel","entities":[{"start":27,"end":39,"label":"appointment_type"},{"start":45,"end":62,"label":"practitioner_name"}]} +{"text":"Display the schedule of Professor De Luca for a lab safety training ;","intent":"query_avail","entities":[{"start":24,"end":41,"label":"practitioner_name"},{"start":48,"end":67,"label":"appointment_type"}]} +{"text":"i have to go ai goodbye","intent":"bye","entities":[]} +{"text":"it was great to have this conversation with you","intent":"bye","entities":[]} +{"text":"how are you doing today, ai","intent":"greeting","entities":[]} +{"text":"Please find a new address for #239161 .","intent":"reschedule","entities":[{"start":30,"end":37,"label":"appointment_id"}]} +{"text":"Please insert a new slot for #693909 .","intent":"reschedule","entities":[{"start":29,"end":36,"label":"appointment_id"}]} +{"text":"Availability for Prof. Müller on July 22nd.","intent":"query_avail","entities":[{"start":17,"end":29,"label":"practitioner_name"}]} +{"text":"create a for-while loop that continues 10 times","intent":"oos","entities":[]} +{"text":"loading times are available for Bell .","intent":"query_avail","entities":[{"start":32,"end":36,"label":"practitioner_name"}]} +{"text":"My appointment #439966 , a IT support session with Young , needs to be updated","intent":"reschedule","entities":[{"start":15,"end":22,"label":"appointment_id"},{"start":27,"end":45,"label":"appointment_type"},{"start":51,"end":56,"label":"practitioner_name"}]} +{"text":"salutations!","intent":"greeting","entities":[]} +{"text":"List all openings for Professor Cattaneo ","intent":"query_avail","entities":[{"start":22,"end":40,"label":"practitioner_name"}]} +{"text":"i like to request a cancellation.","intent":"cancel","entities":[]} +{"text":"I need to specify a project meeting for my project with Dr. Sofia Colombo .","intent":"schedule","entities":[{"start":20,"end":35,"label":"appointment_type"},{"start":56,"end":73,"label":"practitioner_name"}]} +{"text":"Please assist with cancelling my appointment with Professor De Luca .","intent":"cancel","entities":[{"start":50,"end":67,"label":"practitioner_name"}]} +{"text":"they need to reschedule my appointment.","intent":"reschedule","entities":[]} +{"text":"List all available study group meeting times.","intent":"query_avail","entities":[{"start":19,"end":38,"label":"appointment_type"}]} +{"text":"made the appointment for me.","intent":"cancel","entities":[]} +{"text":"I need to find a different time for my meeting.","intent":"reschedule","entities":[]} +{"text":"I'd like to shift my focus to a later time.","intent":"reschedule","entities":[]} +{"text":"Free slots.","intent":"query_avail","entities":[]} +{"text":"I need to cancel my meeting about the thesis.","intent":"cancel","entities":[]} +{"text":"Find time for a blood test.","intent":"schedule","entities":[{"start":16,"end":26,"label":"appointment_type"}]} +{"text":"I'd like to reschedule my study group meeting.","intent":"reschedule","entities":[{"start":26,"end":45,"label":"appointment_type"}]} +{"text":"I need to arrange an appointment.","intent":"schedule","entities":[]} +{"text":"I want a research ethics review with Amato.","intent":"schedule","entities":[{"start":9,"end":31,"label":"appointment_type"},{"start":37,"end":42,"label":"practitioner_name"}]} +{"text":"that is actually false","intent":"negative_reply","entities":[]} +{"text":"Help me book a project meeting with Dott. Simone Marchetti :","intent":"schedule","entities":[{"start":15,"end":30,"label":"appointment_type"},{"start":36,"end":58,"label":"practitioner_name"}]} +{"text":"Prof. Watson department head meeting ","intent":"schedule","entities":[{"start":0,"end":12,"label":"practitioner_name"},{"start":13,"end":36,"label":"appointment_type"}]} +{"text":"who is the best architecture","intent":"oos","entities":[]} +{"text":"it seems not","intent":"negative_reply","entities":[]} +{"text":"would it be legal to have battles to the death in a homemade colosseum","intent":"oos","entities":[]} +{"text":"you got that wrong","intent":"negative_reply","entities":[]} +{"text":"great talk, take it easy","intent":"bye","entities":[]} +{"text":"thank you for the help","intent":"positive_reply","entities":[]} +{"text":"The project meeting with Amato , ID #990686 , should remain cancelled.","intent":"cancel","entities":[{"start":25,"end":30,"label":"practitioner_name"},{"start":36,"end":43,"label":"appointment_id"}]} +{"text":"Reschedule my email with Professor Dott. Paolo Farina .","intent":"reschedule","entities":[{"start":35,"end":53,"label":"practitioner_name"}]} +{"text":"Let's arrange a chat.","intent":"schedule","entities":[]} +{"text":"interrupting my project meeting.","intent":"reschedule","entities":[]} +{"text":"Check openings for a pet checkup with Dr. Wood.","intent":"query_avail","entities":[{"start":21,"end":32,"label":"appointment_type"},{"start":38,"end":46,"label":"practitioner_name"}]} +{"text":"i owe you one","intent":"positive_reply","entities":[]} +{"text":"Times available to book.","intent":"query_avail","entities":[]} +{"text":"Show the booking option for a car service with Prof. Bennett .","intent":"query_avail","entities":[{"start":30,"end":41,"label":"appointment_type"},{"start":47,"end":60,"label":"practitioner_name"}]} +{"text":"start up placement test with Esposito .","intent":"schedule","entities":[{"start":9,"end":23,"label":"appointment_type"},{"start":29,"end":37,"label":"practitioner_name"}]} +{"text":"I'd love to book a project meeting for next week.","intent":"schedule","entities":[{"start":19,"end":34,"label":"appointment_type"}]} +{"text":"I need to change every time of my defense rehearsal with Professor Schmidt .","intent":"reschedule","entities":[{"start":57,"end":74,"label":"practitioner_name"}]} +{"text":"I need to cancel my meeting about my thesis.","intent":"cancel","entities":[]} +{"text":"Check Dr. Smith 's schedule for a specialist visit until Friday.","intent":"query_avail","entities":[{"start":6,"end":15,"label":"practitioner_name"},{"start":34,"end":50,"label":"appointment_type"}]} +{"text":"the answer is no","intent":"negative_reply","entities":[]} +{"text":"minimum time slots.","intent":"query_avail","entities":[]} +{"text":"liturgical calendar.","intent":"query_avail","entities":[]} +{"text":"Professor Vitali meeting ;","intent":"query_avail","entities":[{"start":0,"end":16,"label":"practitioner_name"}]} +{"text":"Please accept my apologies, but I must cancel your meeting.","intent":"cancel","entities":[]} +{"text":"what is the nature of the big bang theory","intent":"oos","entities":[]} +{"text":"Can you schedule file group project session for me?","intent":"schedule","entities":[{"start":22,"end":43,"label":"appointment_type"}]} +{"text":"Change my booking.","intent":"reschedule","entities":[]} +{"text":"I'd need to book a specialist visit for next week.","intent":"schedule","entities":[{"start":19,"end":35,"label":"appointment_type"}]} +{"text":"can a robot really travel back in time","intent":"oos","entities":[]} +{"text":"Availability inquiry for Longo.","intent":"query_avail","entities":[{"start":25,"end":30,"label":"practitioner_name"}]} +{"text":"buhbye","intent":"bye","entities":[]} +{"text":"good bye my friend","intent":"bye","entities":[]} +{"text":"Book me for a sync-up with Prof. Howard.","intent":"schedule","entities":[{"start":14,"end":21,"label":"appointment_type"},{"start":27,"end":39,"label":"practitioner_name"}]} +{"text":"true","intent":"positive_reply","entities":[]} +{"text":"which element on the periodic table is k","intent":"oos","entities":[]} +{"text":"I need to push my meeting back.","intent":"reschedule","entities":[]} +{"text":"I'd like to book Conte for a tenure meeting.","intent":"schedule","entities":[{"start":17,"end":22,"label":"practitioner_name"},{"start":29,"end":43,"label":"appointment_type"}]} +{"text":"Arrange a meeting, please.","intent":"schedule","entities":[]} +{"text":"Is it possible to move my appointment?","intent":"reschedule","entities":[]} +{"text":"definitely","intent":"positive_reply","entities":[]} +{"text":"Schedule a course planning for my group _ Professor Sartori .","intent":"schedule","entities":[{"start":11,"end":26,"label":"appointment_type"},{"start":42,"end":59,"label":"practitioner_name"}]} +{"text":"I need to schedule a specialist visit for my project with Dr. Ferri ","intent":"schedule","entities":[{"start":21,"end":37,"label":"appointment_type"},{"start":58,"end":67,"label":"practitioner_name"}]} +{"text":"who has the best record in the nba","intent":"oos","entities":[]} +{"text":"later gator!","intent":"bye","entities":[]} +{"text":"List _ openings for Conti .","intent":"query_avail","entities":[{"start":20,"end":25,"label":"practitioner_name"}]} +{"text":"I need to cancel our meeting, ID #682160 .","intent":"cancel","entities":[{"start":33,"end":40,"label":"appointment_id"}]} +{"text":"Prof. Howard meeting times.","intent":"query_avail","entities":[{"start":0,"end":12,"label":"practitioner_name"}]} +{"text":"I'm cancelling my consultation card Professor Mariani .","intent":"cancel","entities":[{"start":36,"end":53,"label":"practitioner_name"}]} +{"text":"now move my booking #103401 .","intent":"reschedule","entities":[{"start":20,"end":27,"label":"appointment_id"}]} +{"text":"I have an appointment, #928021 , but I must reschedule.","intent":"reschedule","entities":[{"start":23,"end":30,"label":"appointment_id"}]} +{"text":"oh yes","intent":"positive_reply","entities":[]} +{"text":"i meant no","intent":"negative_reply","entities":[]} +{"text":"i'll talk to you later ai","intent":"bye","entities":[]} +{"text":"how's it going right now","intent":"greeting","entities":[]} +{"text":"follow the schedule of Leone .","intent":"query_avail","entities":[{"start":23,"end":28,"label":"practitioner_name"}]} +{"text":"you need a club meeting slot.","intent":"schedule","entities":[{"start":11,"end":23,"label":"appointment_type"}]} +{"text":"I'd wanted to cancel.","intent":"cancel","entities":[]} +{"text":"Book : meeting about my final project.","intent":"schedule","entities":[]} +{"text":"Find available several times.","intent":"query_avail","entities":[]} +{"text":"fairwell","intent":"bye","entities":[]} +{"text":"Nelson _ calendar.","intent":"query_avail","entities":[{"start":0,"end":6,"label":"practitioner_name"}]} +{"text":"Postpone my session file Conte .","intent":"reschedule","entities":[{"start":25,"end":30,"label":"practitioner_name"}]} +{"text":"I have \\ cancel the tutoring session with Ms. Davis .","intent":"cancel","entities":[{"start":20,"end":36,"label":"appointment_type"},{"start":42,"end":51,"label":"practitioner_name"}]} +{"text":" confirm cancellation for #420831 .","intent":"cancel","entities":[{"start":26,"end":33,"label":"appointment_id"}]} +{"text":"I'm cancelling your tutorial session.","intent":"cancel","entities":[]} +{"text":"are you sure i don’t think that’s correct","intent":"negative_reply","entities":[]} +{"text":"Schedule a orientation session with Mr. Rogers ;","intent":"schedule","entities":[{"start":11,"end":30,"label":"appointment_type"},{"start":36,"end":46,"label":"practitioner_name"}]} +{"text":"Delete my page student orientation .","intent":"cancel","entities":[{"start":15,"end":34,"label":"appointment_type"}]} +{"text":"I need an one-on-one :","intent":"schedule","entities":[{"start":10,"end":20,"label":"appointment_type"}]} +{"text":"List : openings.","intent":"query_avail","entities":[]} +{"text":"Dott. Luca Morelli performance review availability ","intent":"query_avail","entities":[{"start":0,"end":18,"label":"practitioner_name"},{"start":19,"end":37,"label":"appointment_type"}]} +{"text":"Find free memory slots.","intent":"query_avail","entities":[]} +{"text":"Let's cancel the meeting with ID #353753.","intent":"cancel","entities":[{"start":33,"end":40,"label":"appointment_id"}]} +{"text":"I need to make an appointment.","intent":"schedule","entities":[]} +{"text":"calculate free times for a transfer credit evaluation .","intent":"query_avail","entities":[{"start":27,"end":53,"label":"appointment_type"}]} +{"text":"id like to shift my appointment to a later time.","intent":"reschedule","entities":[]} +{"text":"What are Thompson 's working hours.","intent":"query_avail","entities":[{"start":9,"end":17,"label":"practitioner_name"}]} +{"text":"Please void my scheduled session.","intent":"cancel","entities":[]} +{"text":"I need to find another slot for my meeting with Bianchi :","intent":"reschedule","entities":[{"start":48,"end":55,"label":"practitioner_name"}]} +{"text":"I'm looking to create a study abroad advising with Lombardi .","intent":"schedule","entities":[{"start":24,"end":45,"label":"appointment_type"},{"start":51,"end":59,"label":"practitioner_name"}]} +{"text":"I need to change the time for filing sync-up with Green (ID: #449094 ).","intent":"reschedule","entities":[{"start":37,"end":44,"label":"appointment_type"},{"start":50,"end":55,"label":"practitioner_name"},{"start":61,"end":68,"label":"appointment_id"}]} +{"text":"I need not push my meeting back.","intent":"reschedule","entities":[]} +{"text":"I am no longer available for my language exchange with Professor Pellegrino }","intent":"cancel","entities":[{"start":32,"end":49,"label":"appointment_type"},{"start":55,"end":75,"label":"practitioner_name"}]} +{"text":"Postpone my appointment #761640.","intent":"reschedule","entities":[{"start":24,"end":31,"label":"appointment_id"}]} +{"text":"Book a peer tutoring . please.","intent":"schedule","entities":[{"start":7,"end":20,"label":"appointment_type"}]} +{"text":"accept my booking.","intent":"reschedule","entities":[]} +{"text":"be rid of appointment #795492 .","intent":"cancel","entities":[{"start":22,"end":29,"label":"appointment_id"}]} +{"text":"\\ appointment #587130 , a vet appointment with Prof. Müller , must be cancelled.","intent":"cancel","entities":[{"start":14,"end":21,"label":"appointment_id"},{"start":26,"end":41,"label":"appointment_type"},{"start":47,"end":59,"label":"practitioner_name"}]} +{"text":"Find free memory slots for a dissertation proposal .","intent":"query_avail","entities":[{"start":29,"end":50,"label":"appointment_type"}]} +{"text":"it was a pleasure talking to you, goodbye now","intent":"bye","entities":[]} +{"text":"please need to move my meeting with Serra .","intent":"reschedule","entities":[{"start":36,"end":41,"label":"practitioner_name"}]} +{"text":"Delete booking #356641 from the system.","intent":"cancel","entities":[{"start":15,"end":22,"label":"appointment_id"}]} +{"text":"save my text on my laptop hard drive","intent":"oos","entities":[]} +{"text":"heller","intent":"greeting","entities":[]} +{"text":"Open slots have a team meeting .","intent":"query_avail","entities":[{"start":18,"end":30,"label":"appointment_type"}]} +{"text":"i'd say no","intent":"negative_reply","entities":[]} +{"text":"I need only change the time of appointment #974214 .","intent":"reschedule","entities":[{"start":43,"end":50,"label":"appointment_id"}]} +{"text":"Please cancel my appointment from my project with Ms. Allen .","intent":"cancel","entities":[{"start":50,"end":59,"label":"practitioner_name"}]} +{"text":"Please remove my allergy test with Dr. Edwards, reference #536444.","intent":"cancel","entities":[{"start":17,"end":29,"label":"appointment_type"},{"start":35,"end":46,"label":"practitioner_name"},{"start":58,"end":65,"label":"appointment_id"}]} +{"text":"i like to cancel #974214 .","intent":"cancel","entities":[{"start":17,"end":24,"label":"appointment_id"}]} +{"text":"I'd like to cancel my project meeting.","intent":"cancel","entities":[]} +{"text":"I want to cancel out comprehensive exam with Baker .","intent":"cancel","entities":[{"start":21,"end":39,"label":"appointment_type"},{"start":45,"end":50,"label":"practitioner_name"}]} +{"text":"Show the free dates on the calendar.","intent":"query_avail","entities":[]} +{"text":"no, that is not right at all","intent":"negative_reply","entities":[]} +{"text":"goodbye","intent":"bye","entities":[]} +{"text":"Time demands a meeting.","intent":"schedule","entities":[]} +{"text":"Can I handle a project meeting with Gatti ?","intent":"schedule","entities":[{"start":36,"end":41,"label":"practitioner_name"}]} +{"text":"Let's schedule the meeting with ID #795492 .","intent":"cancel","entities":[{"start":35,"end":42,"label":"appointment_id"}]} +{"text":"how much money does radiohead earn a year","intent":"oos","entities":[]} +{"text":"Morgan 's calendar for a lab session next .","intent":"query_avail","entities":[{"start":0,"end":6,"label":"practitioner_name"},{"start":25,"end":36,"label":"appointment_type"}]} +{"text":"I want to book Dr. Martinez for a academic advising.","intent":"schedule","entities":[{"start":15,"end":27,"label":"practitioner_name"},{"start":34,"end":51,"label":"appointment_type"}]} +{"text":"at my project meeting.","intent":"reschedule","entities":[]} +{"text":"Display free times.","intent":"query_avail","entities":[]} +{"text":"Please schedule a new appointment for me.","intent":"schedule","entities":[]} +{"text":"i am afraid that that is not the case","intent":"negative_reply","entities":[]} +{"text":"Free times for a faculty candidate interview with Professor Cox.","intent":"query_avail","entities":[{"start":17,"end":44,"label":"appointment_type"},{"start":60,"end":63,"label":"practitioner_name"}]} +{"text":"I need to cancel appointment follow-up appointment with Prof. David Johnson . The booking number is #642083 .","intent":"cancel","entities":[{"start":29,"end":50,"label":"appointment_type"},{"start":56,"end":75,"label":"practitioner_name"},{"start":100,"end":107,"label":"appointment_id"}]} +{"text":"write for Testa tomorrow.","intent":"query_avail","entities":[{"start":10,"end":15,"label":"practitioner_name"}]} +{"text":"I need to postpone my session.","intent":"reschedule","entities":[]} +{"text":"I won't be able to fix it.","intent":"reschedule","entities":[]} +{"text":"I can't make my appointment, please stop it.","intent":"cancel","entities":[]} +{"text":"scheduled for a lab session.","intent":"query_avail","entities":[]} +{"text":"show me laptops for sale that are under $2,000","intent":"oos","entities":[]} +{"text":"i need to know how you are doing today","intent":"greeting","entities":[]} +{"text":"please need to cancel my meeting with Mr. Peterson .","intent":"cancel","entities":[{"start":38,"end":50,"label":"practitioner_name"}]} +{"text":"I need to see Professor Barbieri about my grades.","intent":"schedule","entities":[{"start":14,"end":32,"label":"practitioner_name"}]} +{"text":"Let's start a call with Dr. Wood .","intent":"schedule","entities":[{"start":24,"end":32,"label":"practitioner_name"}]} +{"text":"Check calendar for Brown.","intent":"query_avail","entities":[{"start":19,"end":24,"label":"practitioner_name"}]} +{"text":"Find available team meeting times with Ricci.","intent":"query_avail","entities":[{"start":15,"end":27,"label":"appointment_type"},{"start":39,"end":44,"label":"practitioner_name"}]} +{"text":"I'd like to move my thesis ?","intent":"reschedule","entities":[]} +{"text":"i can confirm it is affirmative","intent":"positive_reply","entities":[]} +{"text":"are you well","intent":"greeting","entities":[]} +{"text":"what's the roi doing arbitrage with ebay","intent":"oos","entities":[]} +{"text":"see ya later","intent":"bye","entities":[]} +{"text":"Can we find an integer slot for #514453 ?","intent":"reschedule","entities":[{"start":32,"end":39,"label":"appointment_id"}]} +{"text":"research update availability check.","intent":"query_avail","entities":[{"start":0,"end":15,"label":"appointment_type"}]} +{"text":"that's completely false","intent":"negative_reply","entities":[]} +{"text":"I'm afraid I decide to cancel my meeting.","intent":"cancel","entities":[]} +{"text":"I have an appointment, #660065 , otherwise I must reschedule.","intent":"reschedule","entities":[{"start":23,"end":30,"label":"appointment_id"}]} +{"text":"Time for a student advising with Serra ","intent":"schedule","entities":[{"start":11,"end":27,"label":"appointment_type"},{"start":33,"end":38,"label":"practitioner_name"}]} +{"text":"• booking #641930 to next week.","intent":"reschedule","entities":[{"start":10,"end":17,"label":"appointment_id"}]} +{"text":"i am happy you did that for me","intent":"positive_reply","entities":[]} +{"text":"Let's move our meeting, ID #437573 .","intent":"reschedule","entities":[{"start":27,"end":34,"label":"appointment_id"}]} +{"text":"exactly right","intent":"positive_reply","entities":[]} +{"text":"Find me a query for a oral exam with Dr. Phillips .","intent":"schedule","entities":[{"start":22,"end":31,"label":"appointment_type"},{"start":37,"end":49,"label":"practitioner_name"}]} +{"text":"I need some new time slot.","intent":"reschedule","entities":[]} +{"text":"it is very much false","intent":"negative_reply","entities":[]} +{"text":"My situation has changed, I need to cancel my research ethics review.","intent":"cancel","entities":[{"start":46,"end":68,"label":"appointment_type"}]} +{"text":"Delete booking #901602 from file system.","intent":"cancel","entities":[{"start":15,"end":22,"label":"appointment_id"}]} +{"text":"hello how's it going","intent":"greeting","entities":[]} +{"text":"i'm grateful","intent":"positive_reply","entities":[]} +{"text":"Can I get a portfolio review with De Angelis?","intent":"schedule","entities":[{"start":12,"end":28,"label":"appointment_type"},{"start":34,"end":44,"label":"practitioner_name"}]} +{"text":"Let's define a job interview with Lombardi .","intent":"schedule","entities":[{"start":15,"end":28,"label":"appointment_type"},{"start":34,"end":42,"label":"practitioner_name"}]} +{"text":"how much money would my house sell for","intent":"oos","entities":[]} +{"text":"arrange a meeting with Prof. Morris .","intent":"schedule","entities":[{"start":23,"end":35,"label":"practitioner_name"}]} +{"text":"Move haircut with Dott.ssa Anna Moretti to Friday.","intent":"reschedule","entities":[{"start":6,"end":13,"label":"appointment_type"},{"start":19,"end":40,"label":"practitioner_name"}]} +{"text":"Professor Schmidt 's open file slots.","intent":"query_avail","entities":[{"start":0,"end":17,"label":"practitioner_name"}]} +{"text":"Show the booking calendar for internship check-in :","intent":"query_avail","entities":[{"start":30,"end":49,"label":"appointment_type"}]} +{"text":"Can you cancel my appointment?","intent":"cancel","entities":[]} +{"text":"when was the theory of evolution first considered","intent":"oos","entities":[]} +{"text":"Free time inquiry for a personal training session.","intent":"query_avail","entities":[{"start":24,"end":49,"label":"appointment_type"}]} +{"text":"please, no","intent":"negative_reply","entities":[]} diff --git a/data/raw/train.jsonl b/data/raw/train.jsonl new file mode 100644 index 0000000..0629279 --- /dev/null +++ b/data/raw/train.jsonl @@ -0,0 +1,2045 @@ +{"text":"what is albert einstein famous for","intent":"oos","entities":[]} +{"text":"Please cancel my vehicle inspection with Romano, ID is #192560.","intent":"cancel","entities":[{"start":17,"end":35,"label":"appointment_type"},{"start":41,"end":47,"label":"practitioner_name"},{"start":55,"end":62,"label":"appointment_id"}]} +{"text":"Can you put a course registration help on the calendar with Basile?","intent":"schedule","entities":[{"start":14,"end":38,"label":"appointment_type"},{"start":60,"end":66,"label":"practitioner_name"}]} +{"text":"Time parameter Martin .","intent":"schedule","entities":[{"start":15,"end":21,"label":"practitioner_name"}]} +{"text":"Show ready for a academic probation meeting this Friday.","intent":"query_avail","entities":[{"start":17,"end":43,"label":"appointment_type"}]} +{"text":"My appointment #839944 , replace final project review with Professor Bernardi , must be cancelled.","intent":"cancel","entities":[{"start":15,"end":22,"label":"appointment_id"},{"start":33,"end":53,"label":"appointment_type"},{"start":59,"end":77,"label":"practitioner_name"}]} +{"text":"Availability for a lab .","intent":"query_avail","entities":[]} +{"text":"When is Ms. Cooper .","intent":"query_avail","entities":[{"start":8,"end":18,"label":"practitioner_name"}]} +{"text":"Reschedule by meeting with Dr. Smith regarding my thesis.","intent":"reschedule","entities":[{"start":27,"end":36,"label":"practitioner_name"}]} +{"text":"Please book a grade review :","intent":"schedule","entities":[{"start":14,"end":26,"label":"appointment_type"}]} +{"text":"Let's schedule the call with Mr. Rogers .","intent":"schedule","entities":[{"start":29,"end":39,"label":"practitioner_name"}]} +{"text":"I want to meet Prof. Morris for a academic probation meeting.","intent":"schedule","entities":[{"start":15,"end":27,"label":"practitioner_name"},{"start":34,"end":60,"label":"appointment_type"}]} +{"text":"I need to cancel appointment mental health counseling with Bianchi (ID: #821730 ).","intent":"cancel","entities":[{"start":29,"end":53,"label":"appointment_type"},{"start":59,"end":66,"label":"practitioner_name"},{"start":72,"end":79,"label":"appointment_id"}]} +{"text":"define a residence life meeting with Harris , please.","intent":"schedule","entities":[{"start":9,"end":31,"label":"appointment_type"},{"start":37,"end":43,"label":"practitioner_name"}]} +{"text":"The research ethics review with Dr. Martinez are no longer necessary.","intent":"cancel","entities":[{"start":4,"end":26,"label":"appointment_type"},{"start":32,"end":44,"label":"practitioner_name"}]} +{"text":"check the booking calendar.","intent":"query_avail","entities":[]} +{"text":"dial up annual physical .","intent":"schedule","entities":[{"start":8,"end":23,"label":"appointment_type"}]} +{"text":"I can't make reference to appointment #531844 .","intent":"reschedule","entities":[{"start":38,"end":45,"label":"appointment_id"}]} +{"text":"see you in a while","intent":"bye","entities":[]} +{"text":"good evening","intent":"greeting","entities":[]} +{"text":"Please help me move from thesis discussion with Dr. Angela White .","intent":"reschedule","entities":[{"start":25,"end":42,"label":"appointment_type"},{"start":48,"end":64,"label":"practitioner_name"}]} +{"text":"Dr. Smith free time check.","intent":"query_avail","entities":[{"start":0,"end":9,"label":"practitioner_name"}]} +{"text":"how many push-ups do i need to do to get ripped","intent":"oos","entities":[]} +{"text":"Alter thy appointment.","intent":"reschedule","entities":[]} +{"text":"i apprecaite the help from you","intent":"positive_reply","entities":[]} +{"text":"I no sooner need my advising session with Dr. Giovanni Galli .","intent":"cancel","entities":[{"start":42,"end":60,"label":"practitioner_name"}]} +{"text":"I can no longer make my meeting #036469.","intent":"reschedule","entities":[{"start":32,"end":39,"label":"appointment_id"}]} +{"text":"Find an opening with Evans ;","intent":"query_avail","entities":[{"start":21,"end":26,"label":"practitioner_name"}]} +{"text":"Show Pellegrini 's request for a annual physical this Friday.","intent":"query_avail","entities":[{"start":5,"end":15,"label":"practitioner_name"},{"start":33,"end":48,"label":"appointment_type"}]} +{"text":"I have to cancel the seminar presentation with Ms. Allen.","intent":"cancel","entities":[{"start":21,"end":41,"label":"appointment_type"},{"start":47,"end":56,"label":"practitioner_name"}]} +{"text":"I need to cancel my meeting about his thesis.","intent":"cancel","entities":[]} +{"text":"no good","intent":"negative_reply","entities":[]} +{"text":"we need to reschedule something.","intent":"reschedule","entities":[]} +{"text":"I have a scheduling conflict.","intent":"reschedule","entities":[]} +{"text":"List open .","intent":"query_avail","entities":[]} +{"text":"I'm writing to inform you of the cancellation of my vet appointment with Walker ID #018673 .","intent":"cancel","entities":[{"start":52,"end":67,"label":"appointment_type"},{"start":73,"end":79,"label":"practitioner_name"},{"start":84,"end":91,"label":"appointment_id"}]} +{"text":"i would have to say the answer to that is no","intent":"negative_reply","entities":[]} +{"text":"When is Cook free for a eye exam.","intent":"query_avail","entities":[{"start":8,"end":12,"label":"practitioner_name"},{"start":24,"end":32,"label":"appointment_type"}]} +{"text":"Change | time for meeting #717513 .","intent":"reschedule","entities":[{"start":26,"end":33,"label":"appointment_id"}]} +{"text":"The tenure meeting with Evans is no longer necessary.","intent":"cancel","entities":[{"start":4,"end":18,"label":"appointment_type"},{"start":24,"end":29,"label":"practitioner_name"}]} +{"text":"Rossetti public calendar for dissertation defense s.","intent":"query_avail","entities":[{"start":0,"end":8,"label":"practitioner_name"},{"start":29,"end":49,"label":"appointment_type"}]} +{"text":"I decided to cancel my appointment #150062 with Richardson .","intent":"cancel","entities":[{"start":35,"end":42,"label":"appointment_id"},{"start":48,"end":58,"label":"practitioner_name"}]} +{"text":"was there availability for a specialist visit ?","intent":"schedule","entities":[{"start":29,"end":45,"label":"appointment_type"}]} +{"text":"i don't believe that is possible, it is false","intent":"negative_reply","entities":[]} +{"text":"how're you doing","intent":"greeting","entities":[]} +{"text":"how many acres do you need to buy a horse","intent":"oos","entities":[]} +{"text":"I won't be there, just cancel my meeting.","intent":"cancel","entities":[]} +{"text":"I'd like to cancel #081504.","intent":"cancel","entities":[{"start":19,"end":26,"label":"appointment_id"}]} +{"text":"Reschedule my IT support session , appointment _ #192560 .","intent":"reschedule","entities":[{"start":14,"end":32,"label":"appointment_type"},{"start":49,"end":56,"label":"appointment_id"}]} +{"text":"I must cancel my faculty meeting with Dr. Giordano.","intent":"cancel","entities":[{"start":17,"end":32,"label":"appointment_type"},{"start":38,"end":50,"label":"practitioner_name"}]} +{"text":"I will not be able to attend my scheduled meeting, hence #336410 .","intent":"cancel","entities":[{"start":57,"end":64,"label":"appointment_id"}]} +{"text":"Delete my appointment, ID = #562717 .","intent":"cancel","entities":[{"start":28,"end":35,"label":"appointment_id"}]} +{"text":"List student advising openings.","intent":"query_avail","entities":[{"start":5,"end":21,"label":"appointment_type"}]} +{"text":"This serves as temporary notification to cancel my appointment #684466 .","intent":"cancel","entities":[{"start":63,"end":70,"label":"appointment_id"}]} +{"text":"user booking #261071 can be removed.","intent":"cancel","entities":[{"start":13,"end":20,"label":"appointment_id"}]} +{"text":"the answer is yes","intent":"positive_reply","entities":[]} +{"text":"I need to schedule my thesis defense with Donati.","intent":"schedule","entities":[{"start":42,"end":48,"label":"practitioner_name"}]} +{"text":"syonara, ai device!","intent":"bye","entities":[]} +{"text":"what time did my daughter get home from her date","intent":"oos","entities":[]} +{"text":"I'm attending my tutorial session.","intent":"cancel","entities":[]} +{"text":"Book a student disciplinary hearing , .","intent":"schedule","entities":[{"start":7,"end":35,"label":"appointment_type"}]} +{"text":"see you later, alligator","intent":"bye","entities":[]} +{"text":"Professor Fontana ;","intent":"schedule","entities":[{"start":0,"end":17,"label":"practitioner_name"}]} +{"text":"Let's find an alternative time for my chat with Miller ","intent":"reschedule","entities":[{"start":48,"end":54,"label":"practitioner_name"}]} +{"text":"ai is a helpful item to have in my home, thank you","intent":"positive_reply","entities":[]} +{"text":"please explain the catch rule to me","intent":"oos","entities":[]} +{"text":"Book me in.","intent":"schedule","entities":[]} +{"text":"I need to delete a scheduled .","intent":"cancel","entities":[]} +{"text":"this was a nice chat, goodbye","intent":"bye","entities":[]} +{"text":"I must change my project kickoff appointment with Pellegrini.","intent":"reschedule","entities":[{"start":17,"end":32,"label":"appointment_type"},{"start":50,"end":60,"label":"practitioner_name"}]} +{"text":"update Prof. Watson 's schedule for a departmental meeting on Friday.","intent":"query_avail","entities":[{"start":7,"end":19,"label":"practitioner_name"},{"start":38,"end":58,"label":"appointment_type"}]} +{"text":"List all entries for a driving lesson .","intent":"query_avail","entities":[{"start":23,"end":37,"label":"appointment_type"}]} +{"text":"that is not true, it's false","intent":"negative_reply","entities":[]} +{"text":"I have to cancel my dean's meeting appointment.","intent":"cancel","entities":[{"start":20,"end":34,"label":"appointment_type"}]} +{"text":"I can't make my appointment, please cancel it.","intent":"cancel","entities":[]} +{"text":"Set up a meeting with Professor De Luca.","intent":"schedule","entities":[{"start":22,"end":39,"label":"practitioner_name"}]} +{"text":"I have to move something on my wrist","intent":"reschedule","entities":[]} +{"text":"Can we reschedule? I'm referring to appointment #281149.","intent":"reschedule","entities":[{"start":48,"end":55,"label":"appointment_id"}]} +{"text":"Find the time for #077573 .","intent":"reschedule","entities":[{"start":18,"end":25,"label":"appointment_id"}]} +{"text":"Set up office hours with Hall.","intent":"schedule","entities":[{"start":25,"end":29,"label":"practitioner_name"}]} +{"text":"i think it's true","intent":"positive_reply","entities":[]} +{"text":"Please delete appointment #861346 my thesis discussion with Professor Richardson .","intent":"cancel","entities":[{"start":26,"end":33,"label":"appointment_id"},{"start":38,"end":55,"label":"appointment_type"},{"start":71,"end":81,"label":"practitioner_name"}]} +{"text":"I need to book up health screening .","intent":"schedule","entities":[{"start":18,"end":34,"label":"appointment_type"}]} +{"text":"Book a tax consultation and Professor D'Amico , please.","intent":"schedule","entities":[{"start":7,"end":23,"label":"appointment_type"},{"start":28,"end":45,"label":"practitioner_name"}]} +{"text":"write book a postdoctoral interview with Prof. Bennett for this Friday.","intent":"schedule","entities":[{"start":13,"end":35,"label":"appointment_type"},{"start":41,"end":54,"label":"practitioner_name"}]} +{"text":"Please confirm my appointment, ref #439966 .","intent":"cancel","entities":[{"start":35,"end":42,"label":"appointment_id"}]} +{"text":"I'm looking at schedule a alumni interview .","intent":"schedule","entities":[{"start":26,"end":42,"label":"appointment_type"}]} +{"text":"Please cancel our reservation.","intent":"cancel","entities":[]} +{"text":"find someone local who mows lawns","intent":"oos","entities":[]} +{"text":"Need to book a job","intent":"schedule","entities":[]} +{"text":"hi ai","intent":"greeting","entities":[]} +{"text":"Schedule my oral exam.","intent":"schedule","entities":[]} +{"text":"accepted my appointment.","intent":"reschedule","entities":[]} +{"text":"Please schedule a new appointment on me.","intent":"schedule","entities":[]} +{"text":"Free times for a orientation session with Dr. Giovanni Galli next week.","intent":"query_avail","entities":[{"start":17,"end":36,"label":"appointment_type"},{"start":42,"end":60,"label":"practitioner_name"}]} +{"text":"I am writing to write my financial advising .","intent":"reschedule","entities":[{"start":25,"end":43,"label":"appointment_type"}]} +{"text":"Please move my faculty candidate interview into Dr. Brooks , booking ref #843183 .","intent":"reschedule","entities":[{"start":15,"end":42,"label":"appointment_type"},{"start":48,"end":58,"label":"practitioner_name"},{"start":73,"end":80,"label":"appointment_id"}]} +{"text":"how have you been doing","intent":"greeting","entities":[]} +{"text":"Book a meeting about my final project.","intent":"schedule","entities":[]} +{"text":"Help me book a massage therapy.","intent":"schedule","entities":[{"start":15,"end":30,"label":"appointment_type"}]} +{"text":"i appreciate it","intent":"positive_reply","entities":[]} +{"text":"Cancel my lab session session Testa .","intent":"cancel","entities":[{"start":30,"end":35,"label":"practitioner_name"}]} +{"text":"what's going on in the world today, anything major","intent":"oos","entities":[]} +{"text":"it was nice chatting with you","intent":"bye","entities":[]} +{"text":"how do i change my billing address","intent":"oos","entities":[]} +{"text":"Find available allergy test times.","intent":"query_avail","entities":[{"start":15,"end":27,"label":"appointment_type"}]} +{"text":"no, that can't be right","intent":"negative_reply","entities":[]} +{"text":"good job with assisting me","intent":"positive_reply","entities":[]} +{"text":"hello there","intent":"greeting","entities":[]} +{"text":"yes, that is accurate","intent":"positive_reply","entities":[]} +{"text":"how are you this day","intent":"greeting","entities":[]} +{"text":"Please cancel my appointment for the esame orale.","intent":"cancel","entities":[{"start":37,"end":48,"label":"appointment_type"}]} +{"text":"what movie does it's just a flesh wound come from","intent":"oos","entities":[]} +{"text":"I'd like just set up a peer advising with Ricci .","intent":"schedule","entities":[{"start":23,"end":36,"label":"appointment_type"},{"start":42,"end":47,"label":"practitioner_name"}]} +{"text":"^ Dott. Simone Marchetti 's free time.","intent":"query_avail","entities":[{"start":2,"end":24,"label":"practitioner_name"}]} +{"text":"you've been a big help","intent":"positive_reply","entities":[]} +{"text":"Santini meeting :","intent":"query_avail","entities":[{"start":0,"end":7,"label":"practitioner_name"}]} +{"text":"I need to listen to my advisor.","intent":"schedule","entities":[]} +{"text":"Advising session availability.","intent":"query_avail","entities":[]} +{"text":"find a credit counseling service for me on the web","intent":"oos","entities":[]} +{"text":"ai you have given me so much information, thank you","intent":"positive_reply","entities":[]} +{"text":"Let's schedule vector Dr. Giovanni Galli .","intent":"schedule","entities":[{"start":22,"end":40,"label":"practitioner_name"}]} +{"text":"set schedule for lab safety training availability.","intent":"query_avail","entities":[{"start":17,"end":36,"label":"appointment_type"}]} +{"text":"that would be yes","intent":"positive_reply","entities":[]} +{"text":"find me articles on appropriate wedding attire","intent":"oos","entities":[]} +{"text":"I need to reschedule my chat session Professor Schmidt .","intent":"reschedule","entities":[{"start":37,"end":54,"label":"practitioner_name"}]} +{"text":"i enjoyed talking to you, bye","intent":"bye","entities":[]} +{"text":"that is most definitely false","intent":"negative_reply","entities":[]} +{"text":"you like to set a meeting time.","intent":"schedule","entities":[]} +{"text":"Something has come up and I need to change my meeting with Professor Sala.","intent":"reschedule","entities":[{"start":59,"end":73,"label":"practitioner_name"}]} +{"text":"Find an example for a dissertation defense with Evans .","intent":"query_avail","entities":[{"start":22,"end":42,"label":"appointment_type"},{"start":48,"end":53,"label":"practitioner_name"}]} +{"text":"I need to find a new time with my vaccination .","intent":"reschedule","entities":[{"start":34,"end":45,"label":"appointment_type"}]} +{"text":"merci beaucoup","intent":"positive_reply","entities":[]} +{"text":"i must say goodbye","intent":"bye","entities":[]} +{"text":"Please associate my department head meeting with Piras , ID is #163616 .","intent":"cancel","entities":[{"start":20,"end":43,"label":"appointment_type"},{"start":49,"end":54,"label":"practitioner_name"},{"start":63,"end":70,"label":"appointment_id"}]} +{"text":"I need a one-on-one with Dr. Giovanni Galli.","intent":"schedule","entities":[{"start":25,"end":43,"label":"practitioner_name"}]} +{"text":"Find me a time machine a presentation rehearsal with Miller .","intent":"schedule","entities":[{"start":25,"end":47,"label":"appointment_type"},{"start":53,"end":59,"label":"practitioner_name"}]} +{"text":"Can you put a office hours on the calendar file Morgan ?","intent":"schedule","entities":[{"start":14,"end":26,"label":"appointment_type"},{"start":48,"end":54,"label":"practitioner_name"}]} +{"text":"how many elements are on the periodic table","intent":"oos","entities":[]} +{"text":"Schedule my oral exams","intent":"schedule","entities":[]} +{"text":"well hi there","intent":"greeting","entities":[]} +{"text":"Cancel my recording session.","intent":"cancel","entities":[]} +{"text":"• session availability.","intent":"query_avail","entities":[]} +{"text":"Show Dr. Wood 's openings for a course registration help this ;","intent":"query_avail","entities":[{"start":5,"end":13,"label":"practitioner_name"},{"start":32,"end":56,"label":"appointment_type"}]} +{"text":"Book starts with Gray .","intent":"schedule","entities":[{"start":17,"end":21,"label":"practitioner_name"}]} +{"text":"Open faculty candidate interview .","intent":"query_avail","entities":[{"start":5,"end":32,"label":"appointment_type"}]} +{"text":"Change booking #746934, my dissertation defense with Dr. Peterson.","intent":"reschedule","entities":[{"start":15,"end":22,"label":"appointment_id"},{"start":27,"end":47,"label":"appointment_type"},{"start":53,"end":65,"label":"practitioner_name"}]} +{"text":"Check function for Prof. Martini .","intent":"query_avail","entities":[{"start":19,"end":32,"label":"practitioner_name"}]} +{"text":"your efforts don't go unnoticed","intent":"positive_reply","entities":[]} +{"text":"how is it going","intent":"greeting","entities":[]} +{"text":"I need to reschedule my appointment, the ID is #081504.","intent":"reschedule","entities":[{"start":47,"end":54,"label":"appointment_id"}]} +{"text":"Find an opening for a grant proposal meeting with Dr. Carter.","intent":"query_avail","entities":[{"start":22,"end":44,"label":"appointment_type"},{"start":50,"end":60,"label":"practitioner_name"}]} +{"text":"I need to specify a personal training session .","intent":"schedule","entities":[{"start":20,"end":45,"label":"appointment_type"}]} +{"text":"Find Green 's value for a academic probation meeting .","intent":"query_avail","entities":[{"start":5,"end":10,"label":"practitioner_name"},{"start":26,"end":52,"label":"appointment_type"}]} +{"text":"I need to cancel an airline booking.","intent":"cancel","entities":[]} +{"text":"Young \\ calendar for a presentation rehearsal next month.","intent":"query_avail","entities":[{"start":0,"end":5,"label":"practitioner_name"},{"start":23,"end":45,"label":"appointment_type"}]} +{"text":"king of acid","intent":"oos","entities":[]} +{"text":"have you been good","intent":"greeting","entities":[]} +{"text":"Need to change an existing appointment.","intent":"reschedule","entities":[]} +{"text":"I want merge thesis defense rehearsal with Sanna .","intent":"schedule","entities":[{"start":13,"end":37,"label":"appointment_type"},{"start":43,"end":48,"label":"practitioner_name"}]} +{"text":"nope","intent":"negative_reply","entities":[]} +{"text":"i have to say goodbye","intent":"bye","entities":[]} +{"text":"List all free times for a academic probation meeting with Greco.","intent":"query_avail","entities":[{"start":26,"end":52,"label":"appointment_type"},{"start":58,"end":63,"label":"practitioner_name"}]} +{"text":"^ #419544 needs to be moved.","intent":"reschedule","entities":[{"start":2,"end":9,"label":"appointment_id"}]} +{"text":"I'd like to move past thesis discussion.","intent":"reschedule","entities":[]} +{"text":"I'd like just change the time of my vet appointment .","intent":"reschedule","entities":[{"start":36,"end":51,"label":"appointment_type"}]} +{"text":"I no longer need my advising session with Mr. Rogers ","intent":"cancel","entities":[{"start":42,"end":52,"label":"practitioner_name"}]} +{"text":"I want to replace my research seminar with Caruso .","intent":"cancel","entities":[{"start":21,"end":37,"label":"appointment_type"},{"start":43,"end":49,"label":"practitioner_name"}]} +{"text":"hello, anyone there","intent":"greeting","entities":[]} +{"text":"Time for first meeting.","intent":"schedule","entities":[]} +{"text":"Let's find a reasonable time for #003644 .","intent":"reschedule","entities":[{"start":33,"end":40,"label":"appointment_id"}]} +{"text":"what movie is it that says today is a good day to die","intent":"oos","entities":[]} +{"text":"Postpone my session with Caruso >","intent":"reschedule","entities":[{"start":25,"end":31,"label":"practitioner_name"}]} +{"text":"The lab session with Mr. Rodriguez, booking #901602, needs to be cancelled.","intent":"cancel","entities":[{"start":21,"end":34,"label":"practitioner_name"},{"start":44,"end":51,"label":"appointment_id"}]} +{"text":"I need to change your time for my curriculum committee meeting with Prof.ssa Gallo (ID: #569400 ).","intent":"reschedule","entities":[{"start":34,"end":62,"label":"appointment_type"},{"start":68,"end":82,"label":"practitioner_name"},{"start":88,"end":95,"label":"appointment_id"}]} +{"text":"} schedule a 1-on-1 .","intent":"schedule","entities":[{"start":13,"end":19,"label":"appointment_type"}]} +{"text":"I have requested postpone my office hours visit with Grassi .","intent":"reschedule","entities":[{"start":53,"end":59,"label":"practitioner_name"}]} +{"text":"My appointment #426171 , a project meeting with Prof. Watson , needs not be moved.","intent":"reschedule","entities":[{"start":15,"end":22,"label":"appointment_id"},{"start":27,"end":42,"label":"appointment_type"},{"start":48,"end":60,"label":"practitioner_name"}]} +{"text":"how is everything going for you","intent":"greeting","entities":[]} +{"text":"Please remove booking #843183 from the schedule.","intent":"cancel","entities":[{"start":22,"end":29,"label":"appointment_id"}]} +{"text":"all schedule openings.","intent":"query_avail","entities":[]} +{"text":"is there a fee for cancelling a flight i've booked","intent":"oos","entities":[]} +{"text":"it is false","intent":"negative_reply","entities":[]} +{"text":"I can't make my appointment, so cancel it.","intent":"cancel","entities":[]} +{"text":"Cancel #449094 .","intent":"cancel","entities":[{"start":8,"end":15,"label":"appointment_id"}]} +{"text":"I needed to find a different time for my meeting.","intent":"reschedule","entities":[]} +{"text":"confirmation of Dott. Luca Morelli for a vaccination on July 23rd.","intent":"query_avail","entities":[{"start":16,"end":34,"label":"practitioner_name"},{"start":41,"end":52,"label":"appointment_type"}]} +{"text":"no, definitely not","intent":"negative_reply","entities":[]} +{"text":"List times for a haircut with Dr. Bailey |","intent":"query_avail","entities":[{"start":17,"end":24,"label":"appointment_type"},{"start":30,"end":40,"label":"practitioner_name"}]} +{"text":"The service is no longer needed.","intent":"cancel","entities":[]} +{"text":"nice talk, talk to you later","intent":"bye","entities":[]} +{"text":"Reschedule #795063.","intent":"reschedule","entities":[{"start":11,"end":18,"label":"appointment_id"}]} +{"text":"talk to you later","intent":"bye","entities":[]} +{"text":"Get rid of appointment #204345.","intent":"cancel","entities":[{"start":23,"end":30,"label":"appointment_id"}]} +{"text":"List all openings for Parisi.","intent":"query_avail","entities":[{"start":22,"end":28,"label":"practitioner_name"}]} +{"text":"Cancel the advising session.","intent":"cancel","entities":[]} +{"text":"I need to make an impression","intent":"schedule","entities":[]} +{"text":"I must have appointment #974214 .","intent":"cancel","entities":[{"start":24,"end":31,"label":"appointment_id"}]} +{"text":"yo, hows it going","intent":"greeting","entities":[]} +{"text":"Time limit for Brown .","intent":"query_avail","entities":[{"start":15,"end":20,"label":"practitioner_name"}]} +{"text":"thanks so much","intent":"positive_reply","entities":[]} +{"text":"might like to cancel my project meeting.","intent":"cancel","entities":[]} +{"text":"yup","intent":"positive_reply","entities":[]} +{"text":"Can we move my study group meeting with Nowak ? It's appointment #642584 }","intent":"reschedule","entities":[{"start":15,"end":34,"label":"appointment_type"},{"start":40,"end":45,"label":"practitioner_name"},{"start":65,"end":72,"label":"appointment_id"}]} +{"text":"thank you for chatting with me, bye","intent":"bye","entities":[]} +{"text":"define a psychologist appointment .","intent":"schedule","entities":[{"start":9,"end":33,"label":"appointment_type"}]} +{"text":"I need to get my meeting back.","intent":"reschedule","entities":[]} +{"text":"see you again soon","intent":"bye","entities":[]} +{"text":"Book a new appointment.","intent":"schedule","entities":[]} +{"text":"how is everything with you","intent":"greeting","entities":[]} +{"text":"I expect to see Mr. Barnes .","intent":"schedule","entities":[{"start":16,"end":26,"label":"practitioner_name"}]} +{"text":"I want to book a session.","intent":"schedule","entities":[]} +{"text":"I would like to push my appointment #420831 back after an hour.","intent":"reschedule","entities":[{"start":36,"end":43,"label":"appointment_id"}]} +{"text":"I won't be there, or cancel my meeting.","intent":"cancel","entities":[]} +{"text":"fix my financial aid consultation time.","intent":"reschedule","entities":[{"start":7,"end":33,"label":"appointment_type"}]} +{"text":"bye bye!","intent":"bye","entities":[]} +{"text":"I will attend the club meeting .","intent":"reschedule","entities":[{"start":18,"end":30,"label":"appointment_type"}]} +{"text":"will we find another time?","intent":"reschedule","entities":[]} +{"text":"Set up office directory with Dr. Davide Monti .","intent":"schedule","entities":[{"start":29,"end":45,"label":"practitioner_name"}]} +{"text":"Set up annual physical Gatti .","intent":"schedule","entities":[{"start":7,"end":22,"label":"appointment_type"},{"start":24,"end":29,"label":"practitioner_name"}]} +{"text":"project update ","intent":"query_avail","entities":[{"start":0,"end":14,"label":"appointment_type"}]} +{"text":"I'm sorry I have to cancel my meeting.","intent":"cancel","entities":[]} +{"text":"Can we find an alternative slot for #709588?","intent":"reschedule","entities":[{"start":36,"end":43,"label":"appointment_id"}]} +{"text":"functions require a dissertation proposal with Santini .","intent":"schedule","entities":[{"start":20,"end":41,"label":"appointment_type"},{"start":47,"end":54,"label":"practitioner_name"}]} +{"text":"show me the channel guide","intent":"oos","entities":[]} +{"text":"Dott. Marco Conti 's calendar appears next month.","intent":"query_avail","entities":[{"start":0,"end":17,"label":"practitioner_name"}]} +{"text":"I would like to arrange file annual physical with De Angelis .","intent":"schedule","entities":[{"start":29,"end":44,"label":"appointment_type"},{"start":50,"end":60,"label":"practitioner_name"}]} +{"text":"glad we got to talk","intent":"bye","entities":[]} +{"text":"I write a comprehensive exam with Professor Sala .","intent":"schedule","entities":[{"start":10,"end":28,"label":"appointment_type"},{"start":34,"end":48,"label":"practitioner_name"}]} +{"text":"Get me on Ms. Cooper's schedule.","intent":"schedule","entities":[{"start":10,"end":20,"label":"practitioner_name"}]} +{"text":"Reschedule my one-on-one with Testa.","intent":"reschedule","entities":[{"start":30,"end":35,"label":"practitioner_name"}]} +{"text":"I'd like to have a performance review ?","intent":"schedule","entities":[{"start":19,"end":37,"label":"appointment_type"}]} +{"text":"Can I book Evans for a course selection advising until Monday?","intent":"schedule","entities":[{"start":11,"end":16,"label":"practitioner_name"},{"start":23,"end":48,"label":"appointment_type"}]} +{"text":"Openings for a consultation Green tomorrow.","intent":"query_avail","entities":[{"start":15,"end":27,"label":"appointment_type"},{"start":29,"end":34,"label":"practitioner_name"}]} +{"text":"Arrange the review session with Cox .","intent":"schedule","entities":[{"start":32,"end":35,"label":"practitioner_name"}]} +{"text":"Cancel my meeting with Professor Turner.","intent":"cancel","entities":[{"start":33,"end":39,"label":"practitioner_name"}]} +{"text":"i want to thank you for helping","intent":"positive_reply","entities":[]} +{"text":"Show .","intent":"query_avail","entities":[]} +{"text":"Please void my scheduled appointment","intent":"cancel","entities":[]} +{"text":"i really appreciate your help, thank you","intent":"positive_reply","entities":[]} +{"text":"no, that's incorrect","intent":"negative_reply","entities":[]} +{"text":"• take my grade review off the schedule.","intent":"cancel","entities":[{"start":10,"end":22,"label":"appointment_type"}]} +{"text":"thank you for answering that","intent":"positive_reply","entities":[]} +{"text":" degree audit openings.","intent":"query_avail","entities":[{"start":1,"end":13,"label":"appointment_type"}]} +{"text":"peace out!","intent":"bye","entities":[]} +{"text":"Need to understand","intent":"schedule","entities":[]} +{"text":"I need you move my meeting with Costa .","intent":"reschedule","entities":[{"start":32,"end":37,"label":"practitioner_name"}]} +{"text":"Unfortunately, please need to move my meeting.","intent":"reschedule","entities":[]} +{"text":"Set up a tutorial website Dott.ssa Valentina Bellini .","intent":"schedule","entities":[{"start":26,"end":52,"label":"practitioner_name"}]} +{"text":"maximum available slots.","intent":"query_avail","entities":[]} +{"text":"I'd like to ask #737947 .","intent":"cancel","entities":[{"start":16,"end":23,"label":"appointment_id"}]} +{"text":"I'd like simply cancel #449703 .","intent":"cancel","entities":[{"start":23,"end":30,"label":"appointment_id"}]} +{"text":"Check Dr. Brooks 's schedule for ;","intent":"query_avail","entities":[{"start":6,"end":16,"label":"practitioner_name"}]} +{"text":"Schedule Brown = a dental cleaning .","intent":"schedule","entities":[{"start":9,"end":14,"label":"practitioner_name"},{"start":19,"end":34,"label":"appointment_type"}]} +{"text":"Please send my thesis committee meeting .","intent":"cancel","entities":[{"start":15,"end":39,"label":"appointment_type"}]} +{"text":"i am saying no","intent":"negative_reply","entities":[]} +{"text":"Show openings for a ultrasound this Friday.","intent":"query_avail","entities":[{"start":20,"end":30,"label":"appointment_type"}]} +{"text":"I write to book Conti for a job interview .","intent":"schedule","entities":[{"start":16,"end":21,"label":"practitioner_name"},{"start":28,"end":41,"label":"appointment_type"}]} +{"text":"Book Mrs. Evans financial aid consultation.","intent":"schedule","entities":[{"start":5,"end":15,"label":"practitioner_name"},{"start":16,"end":42,"label":"appointment_type"}]} +{"text":"Get me a thesis discussion \\ Basile .","intent":"schedule","entities":[{"start":9,"end":26,"label":"appointment_type"},{"start":29,"end":35,"label":"practitioner_name"}]} +{"text":"Next available ?","intent":"query_avail","entities":[]} +{"text":"can you check my voicemail","intent":"oos","entities":[]} +{"text":"Reschedule my esame orale, appointment ID #077272.","intent":"reschedule","entities":[{"start":14,"end":25,"label":"appointment_type"},{"start":42,"end":49,"label":"appointment_id"}]} +{"text":"Cancel all my appointments from Wright .","intent":"cancel","entities":[{"start":32,"end":38,"label":"practitioner_name"}]} +{"text":"thank you goodbye","intent":"bye","entities":[]} +{"text":"Openings with a mentorship meeting tomorrow.","intent":"query_avail","entities":[{"start":16,"end":34,"label":"appointment_type"}]} +{"text":"Show Prof. Howard's openings for a departmental meeting this Friday.","intent":"query_avail","entities":[{"start":5,"end":17,"label":"practitioner_name"},{"start":35,"end":55,"label":"appointment_type"}]} +{"text":"Check openings for a final presentation = Lombardi .","intent":"query_avail","entities":[{"start":21,"end":39,"label":"appointment_type"},{"start":42,"end":50,"label":"practitioner_name"}]} +{"text":"that's correct","intent":"positive_reply","entities":[]} +{"text":"how goes it","intent":"greeting","entities":[]} +{"text":"Schedule for replacing research consultation with Ms. Mitchell .","intent":"query_avail","entities":[{"start":23,"end":44,"label":"appointment_type"},{"start":50,"end":62,"label":"practitioner_name"}]} +{"text":"Can you help me schedule something?","intent":"schedule","entities":[]} +{"text":"} remove my faculty candidate interview with D'Angelo , reference #962592 .","intent":"cancel","entities":[{"start":12,"end":39,"label":"appointment_type"},{"start":45,"end":53,"label":"practitioner_name"},{"start":66,"end":73,"label":"appointment_id"}]} +{"text":"i believe that's true","intent":"positive_reply","entities":[]} +{"text":"ai how are you doing on this fine day","intent":"greeting","entities":[]} +{"text":"Set up job interview.","intent":"schedule","entities":[{"start":7,"end":20,"label":"appointment_type"}]} +{"text":"no don't do that!","intent":"negative_reply","entities":[]} +{"text":"try to book a sabbatical leave meeting soon.","intent":"schedule","entities":[{"start":14,"end":38,"label":"appointment_type"}]} +{"text":"that is the wrong answer","intent":"negative_reply","entities":[]} +{"text":"Availability of Villa at a meeting.","intent":"query_avail","entities":[{"start":16,"end":21,"label":"practitioner_name"}]} +{"text":"I'd like to shift my appointment to a later time.","intent":"reschedule","entities":[]} +{"text":"I need an internship interview slot.","intent":"schedule","entities":[{"start":10,"end":30,"label":"appointment_type"}]} +{"text":"Schedule Mr. Jones for a quarterly review |","intent":"schedule","entities":[{"start":9,"end":18,"label":"practitioner_name"},{"start":25,"end":41,"label":"appointment_type"}]} +{"text":"Change the time for meeting #261071.","intent":"reschedule","entities":[{"start":28,"end":35,"label":"appointment_id"}]} +{"text":"that is wrong","intent":"negative_reply","entities":[]} +{"text":"Check time .","intent":"query_avail","entities":[]} +{"text":"how do i start my own marketing firm","intent":"oos","entities":[]} +{"text":"you need to change the time for my follow-up appointment with Martin (ID: #077272 ).","intent":"reschedule","entities":[{"start":35,"end":56,"label":"appointment_type"},{"start":62,"end":68,"label":"practitioner_name"},{"start":74,"end":81,"label":"appointment_id"}]} +{"text":"The appointment is no further needed.","intent":"cancel","entities":[]} +{"text":"My appointment #709588 , a consultation with Prof. Scott , will be cancelled.","intent":"cancel","entities":[{"start":15,"end":22,"label":"appointment_id"},{"start":27,"end":39,"label":"appointment_type"},{"start":45,"end":56,"label":"practitioner_name"}]} +{"text":"when do classes start","intent":"oos","entities":[]} +{"text":"Time requires a meeting.","intent":"schedule","entities":[]} +{"text":"I need to cancel my consultation with Mancini.","intent":"cancel","entities":[{"start":38,"end":45,"label":"practitioner_name"}]} +{"text":"Let's arrange your chat.","intent":"schedule","entities":[]} +{"text":"I'd like just reschedule my student orientation .","intent":"reschedule","entities":[{"start":28,"end":47,"label":"appointment_type"}]} +{"text":"have a good one","intent":"bye","entities":[]} +{"text":"I'd like to have a pre-defense meeting.","intent":"schedule","entities":[{"start":19,"end":38,"label":"appointment_type"}]} +{"text":"should we find another time?","intent":"reschedule","entities":[]} +{"text":"Check for ?","intent":"query_avail","entities":[]} +{"text":"I need to book an evening session.","intent":"schedule","entities":[]} +{"text":"Please cancel assignment office hours with Dr. Smith .","intent":"cancel","entities":[{"start":25,"end":37,"label":"appointment_type"},{"start":43,"end":52,"label":"practitioner_name"}]} +{"text":"check times for a team meeting with D'Angelo next week.","intent":"query_avail","entities":[{"start":18,"end":30,"label":"appointment_type"},{"start":36,"end":44,"label":"practitioner_name"}]} +{"text":"Openings for a academic probation meeting with Dr. Phillips tomorrow.","intent":"query_avail","entities":[{"start":15,"end":41,"label":"appointment_type"},{"start":47,"end":59,"label":"practitioner_name"}]} +{"text":"this is a true statement","intent":"positive_reply","entities":[]} +{"text":"I must change my final project review } with Dr. Wood .","intent":"reschedule","entities":[{"start":17,"end":37,"label":"appointment_type"},{"start":45,"end":53,"label":"practitioner_name"}]} +{"text":"Project meeting slots with Prof. Garcia.","intent":"query_avail","entities":[{"start":27,"end":39,"label":"practitioner_name"}]} +{"text":"I want to cancel my psychologist appointment with Dr. Caterina Gentile.","intent":"cancel","entities":[{"start":20,"end":44,"label":"appointment_type"},{"start":50,"end":70,"label":"practitioner_name"}]} +{"text":"hello, how are you doing","intent":"greeting","entities":[]} +{"text":"Openings for a sabbatical leave meeting tomorrow.","intent":"query_avail","entities":[{"start":15,"end":39,"label":"appointment_type"}]} +{"text":"The project meeting with Dr. Ferri, ID #241353, should be cancelled.","intent":"cancel","entities":[{"start":25,"end":34,"label":"practitioner_name"},{"start":39,"end":46,"label":"appointment_id"}]} +{"text":"Reschedule my appointment, please.","intent":"reschedule","entities":[]} +{"text":"please have to cancel my meeting.","intent":"cancel","entities":[]} +{"text":"Something came up, my need to change my appointment.","intent":"reschedule","entities":[]} +{"text":"I will not be able to attend my scheduled meeting, ID #531844 }","intent":"cancel","entities":[{"start":54,"end":61,"label":"appointment_id"}]} +{"text":"i believe that to be false","intent":"negative_reply","entities":[]} +{"text":"Change booking #192768 , replace thesis discussion with Dr. Phillips .","intent":"reschedule","entities":[{"start":15,"end":22,"label":"appointment_id"},{"start":33,"end":50,"label":"appointment_type"},{"start":56,"end":68,"label":"practitioner_name"}]} +{"text":"I will not be coming to my appointment with Dr. Angela White.","intent":"cancel","entities":[{"start":44,"end":60,"label":"practitioner_name"}]} +{"text":"I'd like to .","intent":"cancel","entities":[]} +{"text":"find me a book on motivational speaking from amazon","intent":"oos","entities":[]} +{"text":"Show the booking calendar : language proficiency test s.","intent":"query_avail","entities":[{"start":28,"end":53,"label":"appointment_type"}]} +{"text":"Find an opening with Prof. Martini.","intent":"query_avail","entities":[{"start":21,"end":34,"label":"practitioner_name"}]} +{"text":"see ya","intent":"bye","entities":[]} +{"text":"I need to cancel the appointment with confirmation number #843183.","intent":"cancel","entities":[{"start":58,"end":65,"label":"appointment_id"}]} +{"text":"can i use direct deposit for my tax refund","intent":"oos","entities":[]} +{"text":"Check openings : a course planning with Prof. David Johnson .","intent":"query_avail","entities":[{"start":19,"end":34,"label":"appointment_type"},{"start":40,"end":59,"label":"practitioner_name"}]} +{"text":"1 am writing to reschedule my mock interview .","intent":"reschedule","entities":[{"start":30,"end":44,"label":"appointment_type"}]} +{"text":"What's changed this afternoon.","intent":"query_avail","entities":[]} +{"text":"Delete from appointment.","intent":"cancel","entities":[]} +{"text":"check all free times for Villa .","intent":"query_avail","entities":[{"start":25,"end":30,"label":"practitioner_name"}]} +{"text":"I need to move my meeting.","intent":"reschedule","entities":[]} +{"text":"Let's schedule with Dott. Luca Morelli.","intent":"schedule","entities":[{"start":20,"end":38,"label":"practitioner_name"}]} +{"text":"that is not true","intent":"negative_reply","entities":[]} +{"text":"Arrange a language proficiency test for ;","intent":"schedule","entities":[{"start":10,"end":35,"label":"appointment_type"}]} +{"text":"it was really awesome to talk to you","intent":"bye","entities":[]} +{"text":"nope that's not it","intent":"negative_reply","entities":[]} +{"text":"you need to find another slot for my meeting with Mr. Rogers .","intent":"reschedule","entities":[{"start":50,"end":60,"label":"practitioner_name"}]} +{"text":"that's right","intent":"positive_reply","entities":[]} +{"text":"Let's schedule a office hours with Dott.ssa Anna Moretti.","intent":"schedule","entities":[{"start":17,"end":29,"label":"appointment_type"},{"start":35,"end":56,"label":"practitioner_name"}]} +{"text":"Availability inquiry for Roberts }","intent":"query_avail","entities":[{"start":25,"end":32,"label":"practitioner_name"}]} +{"text":"Can we push my appointment #327330 to the afternoon?","intent":"reschedule","entities":[{"start":27,"end":34,"label":"appointment_id"}]} +{"text":"I have not move my #915298 appointment.","intent":"reschedule","entities":[{"start":19,"end":26,"label":"appointment_id"}]} +{"text":"that's all, bye","intent":"bye","entities":[]} +{"text":"no that isn't the case","intent":"negative_reply","entities":[]} +{"text":"I decided to cancel my consultation with Marchetti .","intent":"cancel","entities":[{"start":41,"end":50,"label":"practitioner_name"}]} +{"text":"Free times for filing mentorship meeting with Mancini next week.","intent":"query_avail","entities":[{"start":22,"end":40,"label":"appointment_type"},{"start":46,"end":53,"label":"practitioner_name"}]} +{"text":"I'd like to move on thesis discussion.","intent":"reschedule","entities":[]} +{"text":"what is the best reviewed laptop available on the market","intent":"oos","entities":[]} +{"text":"Please move to booking #169618 .","intent":"reschedule","entities":[{"start":23,"end":30,"label":"appointment_id"}]} +{"text":"Delete my appointment, ID is #513514.","intent":"cancel","entities":[{"start":29,"end":36,"label":"appointment_id"}]} +{"text":"Calendar for next month.","intent":"query_avail","entities":[]} +{"text":"thanks a lot","intent":"positive_reply","entities":[]} +{"text":"i'm grateful to you","intent":"positive_reply","entities":[]} +{"text":"how to plan for weddings","intent":"oos","entities":[]} +{"text":"Availability on July 21st.","intent":"query_avail","entities":[]} +{"text":"have a good day","intent":"bye","entities":[]} +{"text":"Please cancel my attendance on the office hours .","intent":"cancel","entities":[{"start":35,"end":47,"label":"appointment_type"}]} +{"text":"Please cancel my guest lecture _ Sanna , ID is #634746 .","intent":"cancel","entities":[{"start":17,"end":30,"label":"appointment_type"},{"start":33,"end":38,"label":"practitioner_name"},{"start":47,"end":54,"label":"appointment_id"}]} +{"text":"I need to reschedule my booking #103401.","intent":"reschedule","entities":[{"start":32,"end":39,"label":"appointment_id"}]} +{"text":"Find me a time for a x-ray with Professor Schmidt.","intent":"schedule","entities":[{"start":21,"end":26,"label":"appointment_type"},{"start":32,"end":49,"label":"practitioner_name"}]} +{"text":"Shift my meeting with Dr. Phillips until 3pm.","intent":"reschedule","entities":[{"start":22,"end":34,"label":"practitioner_name"}]} +{"text":"tell me how you are doing","intent":"greeting","entities":[]} +{"text":"preseason schedule.","intent":"query_avail","entities":[]} +{"text":"Professor Barbieri's free times for a language proficiency test today.","intent":"query_avail","entities":[{"start":0,"end":18,"label":"practitioner_name"},{"start":38,"end":63,"label":"appointment_type"}]} +{"text":"hell nah","intent":"negative_reply","entities":[]} +{"text":"good seeing you","intent":"bye","entities":[]} +{"text":"talk to you later!","intent":"bye","entities":[]} +{"text":"Book an appointment for ;","intent":"schedule","entities":[]} +{"text":"please have an appointment, #843183 , that I must reschedule.","intent":"reschedule","entities":[{"start":28,"end":35,"label":"appointment_id"}]} +{"text":"Change of plans, I need your reschedule with Prof. Murphy .","intent":"reschedule","entities":[{"start":45,"end":57,"label":"practitioner_name"}]} +{"text":"on my scheduled time.","intent":"cancel","entities":[]} +{"text":"I would like to cancel out graduate school consultation with Professor Sartori . The ID is #281149 .","intent":"cancel","entities":[{"start":27,"end":55,"label":"appointment_type"},{"start":61,"end":78,"label":"practitioner_name"},{"start":91,"end":98,"label":"appointment_id"}]} +{"text":"Can we reschedule transfer credit evaluation , ID #460528 ?","intent":"reschedule","entities":[{"start":19,"end":45,"label":"appointment_type"},{"start":51,"end":58,"label":"appointment_id"}]} +{"text":"Check for future times.","intent":"query_avail","entities":[]} +{"text":"I need a club meeting with my advisor, Mr. Rogers :","intent":"schedule","entities":[{"start":9,"end":21,"label":"appointment_type"},{"start":39,"end":49,"label":"practitioner_name"}]} +{"text":"Professor Thomas : free times.","intent":"query_avail","entities":[{"start":10,"end":16,"label":"practitioner_name"}]} +{"text":"the information is wrong","intent":"negative_reply","entities":[]} +{"text":"I need to book me time to discuss my dissertation with Taylor .","intent":"schedule","entities":[{"start":55,"end":61,"label":"practitioner_name"}]} +{"text":"indicates an opening.","intent":"query_avail","entities":[]} +{"text":"signing off","intent":"bye","entities":[]} +{"text":"Let's move this scheduled meeting.","intent":"reschedule","entities":[]} +{"text":"I have to reschedule my immunization shot with Dott. Paolo Farina from tomorrow to next week.","intent":"reschedule","entities":[{"start":24,"end":41,"label":"appointment_type"},{"start":47,"end":65,"label":"practitioner_name"}]} +{"text":"it's a no","intent":"negative_reply","entities":[]} +{"text":"Can we reschedule the graduate school consultation you have with Russo ?","intent":"reschedule","entities":[{"start":22,"end":50,"label":"appointment_type"},{"start":65,"end":70,"label":"practitioner_name"}]} +{"text":"what is the cheapest new car for this year","intent":"oos","entities":[]} +{"text":"Schedule for a consultation Ms. Mitchell .","intent":"query_avail","entities":[{"start":15,"end":27,"label":"appointment_type"},{"start":29,"end":41,"label":"practitioner_name"}]} +{"text":"Set up follow-up appointment with Lee.","intent":"schedule","entities":[{"start":7,"end":28,"label":"appointment_type"},{"start":34,"end":37,"label":"practitioner_name"}]} +{"text":"are people with a mental illness eligible for disability","intent":"oos","entities":[]} +{"text":"I'm going to make it to my mentorship meeting with Thomas , so please cancel it. It's ID #449094 .","intent":"cancel","entities":[{"start":27,"end":45,"label":"appointment_type"},{"start":51,"end":57,"label":"practitioner_name"},{"start":89,"end":96,"label":"appointment_id"}]} +{"text":"I want to book Professor Emily Clark as a registration appointment .","intent":"schedule","entities":[{"start":15,"end":36,"label":"practitioner_name"},{"start":42,"end":66,"label":"appointment_type"}]} +{"text":"Availability =","intent":"query_avail","entities":[]} +{"text":"Collins 's free times for update grant proposal meeting today.","intent":"query_avail","entities":[{"start":0,"end":7,"label":"practitioner_name"},{"start":33,"end":55,"label":"appointment_type"}]} +{"text":"Please cancel the scholarship interview on my schedule.","intent":"cancel","entities":[{"start":18,"end":39,"label":"appointment_type"}]} +{"text":"I would have to reschedule.","intent":"reschedule","entities":[]} +{"text":"Please remove the writing center appointment _ Harris from my schedule.","intent":"cancel","entities":[{"start":18,"end":44,"label":"appointment_type"},{"start":47,"end":53,"label":"practitioner_name"}]} +{"text":"accepting the appointment.","intent":"cancel","entities":[]} +{"text":"I want cancel my grade review , appointment ID #684309 .","intent":"cancel","entities":[{"start":18,"end":30,"label":"appointment_type"},{"start":48,"end":55,"label":"appointment_id"}]} +{"text":"Reschedule my meeting with Professor Donati }","intent":"reschedule","entities":[{"start":37,"end":43,"label":"practitioner_name"}]} +{"text":"what you just said is false","intent":"negative_reply","entities":[]} +{"text":"get me the rates of hacking susceptibility for household in my area","intent":"oos","entities":[]} +{"text":"it was great to see you again, see ya later!","intent":"bye","entities":[]} +{"text":"Cancel booking #156794 , replace registration appointment with Dr. Giordano .","intent":"cancel","entities":[{"start":15,"end":22,"label":"appointment_id"},{"start":33,"end":57,"label":"appointment_type"},{"start":63,"end":75,"label":"practitioner_name"}]} +{"text":"will require a meeting with Nowak .","intent":"schedule","entities":[{"start":28,"end":33,"label":"practitioner_name"}]} +{"text":"Show available times.","intent":"query_avail","entities":[]} +{"text":"Show openings for this section","intent":"query_avail","entities":[]} +{"text":"have a good day, bye","intent":"bye","entities":[]} +{"text":"I'd like to set up a lab cleanup with Mr. Jones.","intent":"schedule","entities":[{"start":21,"end":32,"label":"appointment_type"},{"start":38,"end":47,"label":"practitioner_name"}]} +{"text":"this was a nice chat","intent":"bye","entities":[]} +{"text":"I'd like your book a consultation.","intent":"schedule","entities":[]} +{"text":"Free times for a progress review \/ week.","intent":"query_avail","entities":[{"start":17,"end":32,"label":"appointment_type"}]} +{"text":"} meeting slots with Professor Barbieri .","intent":"query_avail","entities":[{"start":21,"end":39,"label":"practitioner_name"}]} +{"text":"how are things","intent":"greeting","entities":[]} +{"text":"not happening","intent":"negative_reply","entities":[]} +{"text":"file calendar for thesis proposal meeting s.","intent":"query_avail","entities":[{"start":18,"end":41,"label":"appointment_type"}]} +{"text":"how are things going for you","intent":"greeting","entities":[]} +{"text":"\\ #676289 .","intent":"reschedule","entities":[{"start":2,"end":9,"label":"appointment_id"}]} +{"text":"I can't swap my academic probation meeting (ID #781883 ) with Prof. Morris .","intent":"reschedule","entities":[{"start":16,"end":42,"label":"appointment_type"},{"start":47,"end":54,"label":"appointment_id"},{"start":62,"end":74,"label":"practitioner_name"}]} +{"text":"Find available website","intent":"query_avail","entities":[]} +{"text":"Let's cancel another meeting with ID #018673 .","intent":"cancel","entities":[{"start":37,"end":44,"label":"appointment_id"}]} +{"text":"i'm saying goodbye now","intent":"bye","entities":[]} +{"text":"Cancel booking #513514 my independent study meeting with Professor Bruno .","intent":"cancel","entities":[{"start":15,"end":22,"label":"appointment_id"},{"start":27,"end":52,"label":"appointment_type"},{"start":58,"end":73,"label":"practitioner_name"}]} +{"text":"who is jane goodall","intent":"oos","entities":[]} +{"text":"orientation session with Mr. Rodriguez.","intent":"schedule","entities":[{"start":0,"end":19,"label":"appointment_type"},{"start":25,"end":38,"label":"practitioner_name"}]} +{"text":"sign me up for the slack employment forum","intent":"oos","entities":[]} +{"text":"List all openings.","intent":"query_avail","entities":[]} +{"text":"I want to write Hall for a IT support session .","intent":"schedule","entities":[{"start":16,"end":20,"label":"practitioner_name"},{"start":27,"end":45,"label":"appointment_type"}]} +{"text":"Display Dr. Santoro's free times.","intent":"query_avail","entities":[{"start":8,"end":19,"label":"practitioner_name"}]} +{"text":"List all openings for Ms. Cooper |","intent":"query_avail","entities":[{"start":22,"end":32,"label":"practitioner_name"}]} +{"text":"we set up a time to connect.","intent":"schedule","entities":[]} +{"text":"i need to go now","intent":"bye","entities":[]} +{"text":"what's the dominant minor for the key of bflat","intent":"oos","entities":[]} +{"text":"List for a equipment training with Dr. Bailey .","intent":"query_avail","entities":[{"start":12,"end":30,"label":"appointment_type"},{"start":36,"end":46,"label":"practitioner_name"}]} +{"text":"we won't make it, so please cancel.","intent":"cancel","entities":[]} +{"text":"Show the free slots on the calendar.","intent":"query_avail","entities":[]} +{"text":"creates an opening with Ms. Allen .","intent":"query_avail","entities":[{"start":24,"end":33,"label":"practitioner_name"}]} +{"text":"shall we reschedule? I'm referring to appointment #150062 .","intent":"reschedule","entities":[{"start":50,"end":57,"label":"appointment_id"}]} +{"text":"I need not cancel something.","intent":"cancel","entities":[]} +{"text":"I have to pull out of google study abroad advising .","intent":"cancel","entities":[{"start":29,"end":50,"label":"appointment_type"}]} +{"text":"Romano → one-on-one .","intent":"schedule","entities":[{"start":0,"end":6,"label":"practitioner_name"},{"start":9,"end":19,"label":"appointment_type"}]} +{"text":"that's incorrect!","intent":"negative_reply","entities":[]} +{"text":"I need to set up a quick chat.","intent":"schedule","entities":[]} +{"text":"The meeting #150062 got cancelled.","intent":"cancel","entities":[{"start":12,"end":19,"label":"appointment_id"}]} +{"text":"Time slots = Prof. Parker .","intent":"query_avail","entities":[{"start":13,"end":25,"label":"practitioner_name"}]} +{"text":"Please cancel the therapy session on my website","intent":"cancel","entities":[{"start":18,"end":33,"label":"appointment_type"}]} +{"text":"Schedule a sales demo for arbitrary group with Ms. Cooper .","intent":"schedule","entities":[{"start":11,"end":21,"label":"appointment_type"},{"start":47,"end":57,"label":"practitioner_name"}]} +{"text":"not that one","intent":"negative_reply","entities":[]} +{"text":"I requested a meeting with Evans .","intent":"schedule","entities":[{"start":27,"end":32,"label":"practitioner_name"}]} +{"text":"I can't make a advising session with Professor Bernardi .","intent":"reschedule","entities":[{"start":37,"end":55,"label":"practitioner_name"}]} +{"text":"List all current appointment times.","intent":"query_avail","entities":[]} +{"text":"goodbye, helpful ai device!","intent":"bye","entities":[]} +{"text":"Let's move your meeting, ID #842972 .","intent":"reschedule","entities":[{"start":28,"end":35,"label":"appointment_id"}]} +{"text":"show me how to contact a paranormal spirit","intent":"oos","entities":[]} +{"text":"Please cancel my writing center appointment.","intent":"cancel","entities":[{"start":17,"end":43,"label":"appointment_type"}]} +{"text":"it's good to see you","intent":"greeting","entities":[]} +{"text":"how are things treating you","intent":"greeting","entities":[]} +{"text":"i vote yes","intent":"positive_reply","entities":[]} +{"text":"shall I bring my appointment forward?","intent":"reschedule","entities":[]} +{"text":"I have an 1-on-1 with Prof. Campbell whenever I need to cancel.","intent":"cancel","entities":[{"start":10,"end":16,"label":"appointment_type"},{"start":22,"end":36,"label":"practitioner_name"}]} +{"text":"The appointment with Professor Barbieri is no longer needed.","intent":"cancel","entities":[{"start":21,"end":39,"label":"practitioner_name"}]} +{"text":"I won't be able and attend, so please cancel.","intent":"cancel","entities":[]} +{"text":"Please find a new slot for #554324.","intent":"reschedule","entities":[{"start":27,"end":34,"label":"appointment_id"}]} +{"text":"Open letter of recommendation request ;","intent":"query_avail","entities":[{"start":5,"end":37,"label":"appointment_type"}]} +{"text":"I need just schedule my thesis defense with Santini .","intent":"schedule","entities":[{"start":44,"end":51,"label":"practitioner_name"}]} +{"text":"verify Rizzo 's availability.","intent":"query_avail","entities":[{"start":7,"end":12,"label":"practitioner_name"}]} +{"text":"Cancel this advising session.","intent":"cancel","entities":[]} +{"text":"save for lab cleanup s this week.","intent":"query_avail","entities":[{"start":9,"end":20,"label":"appointment_type"}]} +{"text":"sets up a meeting.","intent":"schedule","entities":[]} +{"text":"where is the colosseum","intent":"oos","entities":[]} +{"text":"youre a doll","intent":"positive_reply","entities":[]} +{"text":"are you okay","intent":"greeting","entities":[]} +{"text":"I must cancel appointment #353753.","intent":"cancel","entities":[{"start":26,"end":33,"label":"appointment_id"}]} +{"text":"thanks for trying","intent":"positive_reply","entities":[]} +{"text":"I would like you reschedule my writing center appointment with Longo . The ID is #675180 .","intent":"reschedule","entities":[{"start":31,"end":57,"label":"appointment_type"},{"start":63,"end":68,"label":"practitioner_name"},{"start":81,"end":88,"label":"appointment_id"}]} +{"text":"Professor Sartori 's calendar for per month.","intent":"query_avail","entities":[{"start":0,"end":17,"label":"practitioner_name"}]} +{"text":"I have to cancel my haircut }","intent":"cancel","entities":[{"start":20,"end":27,"label":"appointment_type"}]} +{"text":"can you locate the television remote","intent":"oos","entities":[]} +{"text":"The function with Dr. Bailey is no longer needed.","intent":"cancel","entities":[{"start":18,"end":28,"label":"practitioner_name"}]} +{"text":"I have an excuse I need to change.","intent":"reschedule","entities":[]} +{"text":"I want to cancel an appointment.","intent":"cancel","entities":[]} +{"text":"take it easy!","intent":"bye","entities":[]} +{"text":"i agree","intent":"positive_reply","entities":[]} +{"text":"thanks for talking to me","intent":"bye","entities":[]} +{"text":"later gater","intent":"bye","entities":[]} +{"text":"Please cancel my physical therapy session with Dr. Laura Ferrari ;","intent":"cancel","entities":[{"start":17,"end":41,"label":"appointment_type"},{"start":47,"end":64,"label":"practitioner_name"}]} +{"text":"are you doing okay","intent":"greeting","entities":[]} +{"text":"what's happening","intent":"greeting","entities":[]} +{"text":"now cancel my appointment regarding my project with Ms. Mitchell .","intent":"cancel","entities":[{"start":52,"end":64,"label":"practitioner_name"}]} +{"text":"search for a academic probation meeting tomorrow.","intent":"query_avail","entities":[{"start":13,"end":39,"label":"appointment_type"}]} +{"text":"Arrange a meeting with Conte.","intent":"schedule","entities":[{"start":23,"end":28,"label":"practitioner_name"}]} +{"text":"which nations are not democratic","intent":"oos","entities":[]} +{"text":"What was free.","intent":"query_avail","entities":[]} +{"text":"I need to choose a ricevimento studenti .","intent":"schedule","entities":[{"start":19,"end":39,"label":"appointment_type"}]} +{"text":"Please cancel an appointment regarding my project with Fiore .","intent":"cancel","entities":[{"start":55,"end":60,"label":"practitioner_name"}]} +{"text":"I want to move my appointment with Dott. Simone Marchetti @ ID #693909 .","intent":"reschedule","entities":[{"start":35,"end":57,"label":"practitioner_name"},{"start":63,"end":70,"label":"appointment_id"}]} +{"text":"List of openings.","intent":"query_avail","entities":[]} +{"text":"That time no longer works for me.","intent":"reschedule","entities":[]} +{"text":"Free times for a letter of recommendation request calendar week.","intent":"query_avail","entities":[{"start":17,"end":49,"label":"appointment_type"}]} +{"text":"many thank","intent":"positive_reply","entities":[]} +{"text":"Display the schedule of Villa for a equipment training file","intent":"query_avail","entities":[{"start":24,"end":29,"label":"practitioner_name"},{"start":36,"end":54,"label":"appointment_type"}]} +{"text":"it was enjoyable to chat with you","intent":"bye","entities":[]} +{"text":"hey, what's new","intent":"greeting","entities":[]} +{"text":"I hope to find another time for my faculty candidate interview with Prof. Martini .","intent":"reschedule","entities":[{"start":35,"end":62,"label":"appointment_type"},{"start":68,"end":81,"label":"practitioner_name"}]} +{"text":"it was nice to get in touch","intent":"bye","entities":[]} +{"text":"conduct the advising session.","intent":"cancel","entities":[]} +{"text":"Can I say Greco ?","intent":"schedule","entities":[{"start":10,"end":15,"label":"practitioner_name"}]} +{"text":"nada","intent":"negative_reply","entities":[]} +{"text":"My plans have ended and I need to cancel.","intent":"cancel","entities":[]} +{"text":"define free times for a orientation session .","intent":"query_avail","entities":[{"start":24,"end":43,"label":"appointment_type"}]} +{"text":"I have please postpone my office hours visit with Thompson .","intent":"reschedule","entities":[{"start":50,"end":58,"label":"practitioner_name"}]} +{"text":"I'd like to request a new time for my meeting.","intent":"reschedule","entities":[]} +{"text":"Please remove booking #158644 from application schedule.","intent":"cancel","entities":[{"start":22,"end":29,"label":"appointment_id"}]} +{"text":"write the next chapter of my biography and let me know when you have finished it","intent":"oos","entities":[]} +{"text":"can i deposit a check","intent":"oos","entities":[]} +{"text":"greetings to you","intent":"greeting","entities":[]} +{"text":"how ya been","intent":"greeting","entities":[]} +{"text":"Openings for .","intent":"query_avail","entities":[]} +{"text":"Project meeting results with Green .","intent":"query_avail","entities":[{"start":29,"end":34,"label":"practitioner_name"}]} +{"text":"how does the etheric body operate","intent":"oos","entities":[]} +{"text":"I need to cancel my meeting for Dott.ssa Elena Longo on Tuesday.","intent":"cancel","entities":[{"start":32,"end":52,"label":"practitioner_name"}]} +{"text":"are you doing well","intent":"greeting","entities":[]} +{"text":"what are you feeling today","intent":"greeting","entities":[]} +{"text":"I have to pull out of my peer advising.","intent":"cancel","entities":[{"start":25,"end":38,"label":"appointment_type"}]} +{"text":"when will george rr martin publish the next game of thrones book","intent":"oos","entities":[]} +{"text":"hi there, how are you doing","intent":"greeting","entities":[]} +{"text":"Cancel my meeting with Professor Mancini ","intent":"cancel","entities":[{"start":33,"end":40,"label":"practitioner_name"}]} +{"text":"that turns out to be false","intent":"negative_reply","entities":[]} +{"text":"Arrange a review session called Price .","intent":"schedule","entities":[{"start":32,"end":37,"label":"practitioner_name"}]} +{"text":"My appointment, #117656, needs to be cancelled.","intent":"cancel","entities":[{"start":16,"end":23,"label":"appointment_id"}]} +{"text":"My plans have changed and I need to cancel.","intent":"cancel","entities":[]} +{"text":"i am glad we got to talk again, see you soon","intent":"bye","entities":[]} +{"text":"Cancel my lab file with Walker .","intent":"cancel","entities":[{"start":24,"end":30,"label":"practitioner_name"}]} +{"text":"Reschedule my !","intent":"reschedule","entities":[]} +{"text":"I am cancelling my language exchange (ID #531844 ) and Basile .","intent":"cancel","entities":[{"start":19,"end":36,"label":"appointment_type"},{"start":41,"end":48,"label":"appointment_id"},{"start":55,"end":61,"label":"practitioner_name"}]} +{"text":"Move : #797665 from Tuesday to Thursday.","intent":"reschedule","entities":[{"start":7,"end":14,"label":"appointment_id"}]} +{"text":"course planning |","intent":"schedule","entities":[{"start":0,"end":15,"label":"appointment_type"}]} +{"text":"is the pnc bank open","intent":"oos","entities":[]} +{"text":"I want you get a capstone meeting on the books.","intent":"schedule","entities":[{"start":17,"end":33,"label":"appointment_type"}]} +{"text":"I need to book out home repair estimate .","intent":"schedule","entities":[{"start":19,"end":39,"label":"appointment_type"}]} +{"text":"tell me more about bill gates","intent":"oos","entities":[]} +{"text":"Find Professor Sala's availability for a eye exam.","intent":"query_avail","entities":[{"start":5,"end":19,"label":"practitioner_name"},{"start":41,"end":49,"label":"appointment_type"}]} +{"text":"how the bus moves","intent":"oos","entities":[]} +{"text":"Free times for instance language proficiency test with Professor Torres .","intent":"query_avail","entities":[{"start":24,"end":49,"label":"appointment_type"},{"start":65,"end":71,"label":"practitioner_name"}]} +{"text":"Can I book Ms. Davis for a language exchange next ","intent":"schedule","entities":[{"start":11,"end":20,"label":"practitioner_name"},{"start":27,"end":44,"label":"appointment_type"}]} +{"text":"^ parent-teacher conference needs to be on a different day.","intent":"reschedule","entities":[{"start":2,"end":27,"label":"appointment_type"}]} +{"text":"Find an opening with a final project review with Mr. Rodriguez .","intent":"query_avail","entities":[{"start":23,"end":43,"label":"appointment_type"},{"start":49,"end":62,"label":"practitioner_name"}]} +{"text":"I am unavailable for my performance review and need to move it.","intent":"reschedule","entities":[{"start":24,"end":42,"label":"appointment_type"}]} +{"text":"I'm cancelling. The ID is #976105.","intent":"cancel","entities":[{"start":26,"end":33,"label":"appointment_id"}]} +{"text":"examination for an oral exam.","intent":"query_avail","entities":[]} +{"text":"Find available all times with Coppola .","intent":"query_avail","entities":[{"start":30,"end":37,"label":"practitioner_name"}]} +{"text":"that'll work, good job!","intent":"positive_reply","entities":[]} +{"text":"New team meeting.","intent":"schedule","entities":[{"start":4,"end":16,"label":"appointment_type"}]} +{"text":"oh, thanks","intent":"positive_reply","entities":[]} +{"text":"time for tomorrow.","intent":"query_avail","entities":[]} +{"text":"I can't make my scheduled appointment.","intent":"reschedule","entities":[]} +{"text":"I need to get a blood test on the books.","intent":"schedule","entities":[{"start":16,"end":26,"label":"appointment_type"}]} +{"text":"Can I change my tutorial session time?","intent":"reschedule","entities":[]} +{"text":"background check.","intent":"query_avail","entities":[]} +{"text":"what time did i put in my first load of laundry","intent":"oos","entities":[]} +{"text":"Set up a meeting.","intent":"schedule","entities":[]} +{"text":"The appointment with Prof. Scott is little longer needed.","intent":"cancel","entities":[{"start":21,"end":32,"label":"practitioner_name"}]} +{"text":"I can't make my advising list with Prof. Campbell .","intent":"reschedule","entities":[{"start":35,"end":49,"label":"practitioner_name"}]} +{"text":"This serves as a notification to cancel my appointment #103401.","intent":"cancel","entities":[{"start":55,"end":62,"label":"appointment_id"}]} +{"text":"what articles are written at the cnn site about the women's march","intent":"oos","entities":[]} +{"text":"good talk, see you later","intent":"bye","entities":[]} +{"text":"users need to drop my team meeting with Dott. Matteo Palmieri .","intent":"cancel","entities":[{"start":22,"end":34,"label":"appointment_type"},{"start":40,"end":61,"label":"practitioner_name"}]} +{"text":"Reschedule for consultation.","intent":"reschedule","entities":[]} +{"text":"What are Moore ? office hours.","intent":"query_avail","entities":[{"start":9,"end":14,"label":"practitioner_name"}]} +{"text":"Times available to :","intent":"query_avail","entities":[]} +{"text":"thanks that was really helpful","intent":"positive_reply","entities":[]} +{"text":"I must have a consultation with Bell this week.","intent":"schedule","entities":[{"start":14,"end":26,"label":"appointment_type"},{"start":32,"end":36,"label":"practitioner_name"}]} +{"text":"Help me book a library research consultation with Professor Cattaneo }","intent":"schedule","entities":[{"start":15,"end":44,"label":"appointment_type"},{"start":50,"end":68,"label":"practitioner_name"}]} +{"text":"Can we reschedule? I'm committed to appointment #934189 .","intent":"reschedule","entities":[{"start":48,"end":55,"label":"appointment_id"}]} +{"text":"Please cancel _ upcoming annual physical .","intent":"cancel","entities":[{"start":25,"end":40,"label":"appointment_type"}]} +{"text":"I want to cancel the appointment with reference #781883 .","intent":"cancel","entities":[{"start":48,"end":55,"label":"appointment_id"}]} +{"text":"I want to book time with Dott. Luca Morelli.","intent":"schedule","entities":[{"start":25,"end":43,"label":"practitioner_name"}]} +{"text":"the conflict has come up for appointment #894207 .","intent":"reschedule","entities":[{"start":41,"end":48,"label":"appointment_id"}]} +{"text":"no, that information is wrong","intent":"negative_reply","entities":[]} +{"text":"Let's use my colloquio di orientamento .","intent":"reschedule","entities":[{"start":13,"end":38,"label":"appointment_type"}]} +{"text":"Find free time slots for a letter of recommendation request.","intent":"query_avail","entities":[{"start":27,"end":59,"label":"appointment_type"}]} +{"text":"I need to reschedule my appointment.","intent":"reschedule","entities":[]} +{"text":"Is there availability in a pet checkup ?","intent":"schedule","entities":[{"start":27,"end":38,"label":"appointment_type"}]} +{"text":"Schedule for Rossetti :","intent":"query_avail","entities":[{"start":13,"end":21,"label":"practitioner_name"}]} +{"text":"Show openings for this Friday.","intent":"query_avail","entities":[]} +{"text":"Change #642584 ;","intent":"reschedule","entities":[{"start":7,"end":14,"label":"appointment_id"}]} +{"text":"Change of plans, I need to reschedule with Cox.","intent":"reschedule","entities":[{"start":43,"end":46,"label":"practitioner_name"}]} +{"text":"I need to finish my consultation with Dr. Ferrara .","intent":"cancel","entities":[{"start":38,"end":49,"label":"practitioner_name"}]} +{"text":"not afraid I have to move my meeting, ref #132841 .","intent":"reschedule","entities":[{"start":42,"end":49,"label":"appointment_id"}]} +{"text":"Let's find some new time for #564270 .","intent":"reschedule","entities":[{"start":29,"end":36,"label":"appointment_id"}]} +{"text":"that's incorrect","intent":"negative_reply","entities":[]} +{"text":"I need a mentorship meeting with my advisor, Dott.ssa Chiara Negri.","intent":"schedule","entities":[{"start":9,"end":27,"label":"appointment_type"},{"start":45,"end":66,"label":"practitioner_name"}]} +{"text":"Book a client presentation with Ms. Mitchell as soon as ;","intent":"schedule","entities":[{"start":7,"end":26,"label":"appointment_type"},{"start":32,"end":44,"label":"practitioner_name"}]} +{"text":"that checks out","intent":"positive_reply","entities":[]} +{"text":"Can we schedule a group query with Nelson ?","intent":"schedule","entities":[{"start":35,"end":41,"label":"practitioner_name"}]} +{"text":"Is it too late to change my appointment time?","intent":"reschedule","entities":[]} +{"text":"I won't get there, please cancel my meeting.","intent":"cancel","entities":[]} +{"text":"what is a good movie to go see in theaters for a family with young kids","intent":"oos","entities":[]} +{"text":"Let's move my scheduled schedule","intent":"reschedule","entities":[]} +{"text":"I want to announce my appointment with Rizzo .","intent":"cancel","entities":[{"start":39,"end":44,"label":"practitioner_name"}]} +{"text":"damn it.","intent":"cancel","entities":[]} +{"text":"List searches for a orientation session with Dr. Giordano .","intent":"query_avail","entities":[{"start":20,"end":39,"label":"appointment_type"},{"start":45,"end":57,"label":"practitioner_name"}]} +{"text":"Availability of Professor D'Amico becomes a seminar presentation on July 23rd.","intent":"query_avail","entities":[{"start":16,"end":33,"label":"practitioner_name"},{"start":44,"end":64,"label":"appointment_type"}]} +{"text":"I want to schedule something.","intent":"schedule","entities":[]} +{"text":"Regarding appointment #709588 , I need not change it.","intent":"reschedule","entities":[{"start":22,"end":29,"label":"appointment_id"}]} +{"text":"Let's move my meeting, ID #556800.","intent":"reschedule","entities":[{"start":26,"end":33,"label":"appointment_id"}]} +{"text":"Please process a query for #000317 .","intent":"cancel","entities":[{"start":27,"end":34,"label":"appointment_id"}]} +{"text":"Remove the client presentation with Rossetti from this calendar.","intent":"cancel","entities":[{"start":11,"end":30,"label":"appointment_type"},{"start":36,"end":44,"label":"practitioner_name"}]} +{"text":"Let's reschedule appointment #842972 }","intent":"reschedule","entities":[{"start":29,"end":36,"label":"appointment_id"}]} +{"text":"catch you around","intent":"bye","entities":[]} +{"text":"google calendar for Pagano .","intent":"query_avail","entities":[{"start":20,"end":26,"label":"practitioner_name"}]} +{"text":"Ms. Davis's calendar for a letter of recommendation request next month.","intent":"query_avail","entities":[{"start":0,"end":9,"label":"practitioner_name"},{"start":27,"end":59,"label":"appointment_type"}]} +{"text":"Arrange a review session with Dr. Carter.","intent":"schedule","entities":[{"start":30,"end":40,"label":"practitioner_name"}]} +{"text":"Show five times.","intent":"query_avail","entities":[]} +{"text":"I'm afraid I have him cancel my meeting.","intent":"cancel","entities":[]} +{"text":"I have to move through #103401 appointment.","intent":"reschedule","entities":[{"start":23,"end":30,"label":"appointment_id"}]} +{"text":"no, that's wrong","intent":"negative_reply","entities":[]} +{"text":"I can't handle the meeting with Professor De Luca , so I'm cancelling.","intent":"cancel","entities":[{"start":32,"end":49,"label":"practitioner_name"}]} +{"text":"what's up with you","intent":"greeting","entities":[]} +{"text":"i disagree that is false","intent":"negative_reply","entities":[]} +{"text":"I need to cancel a meeting, ID #600778 ;","intent":"cancel","entities":[{"start":31,"end":38,"label":"appointment_id"}]} +{"text":"I won't be needing my appointment anymore.","intent":"cancel","entities":[]} +{"text":"requesting a new meeting.","intent":"schedule","entities":[]} +{"text":"Open placement test slots.","intent":"query_avail","entities":[{"start":5,"end":19,"label":"appointment_type"}]} +{"text":"i'd like to know how you are doing","intent":"greeting","entities":[]} +{"text":"This represents a cancellation for my appointment with Ms. Kelly .","intent":"cancel","entities":[{"start":55,"end":64,"label":"practitioner_name"}]} +{"text":"Cancel the appointment for ?","intent":"cancel","entities":[]} +{"text":"I'm looking to schedule a lab cleanup with Torres.","intent":"schedule","entities":[{"start":26,"end":37,"label":"appointment_type"},{"start":43,"end":49,"label":"practitioner_name"}]} +{"text":"Need to book a psychologist appointment ","intent":"schedule","entities":[{"start":15,"end":39,"label":"appointment_type"}]} +{"text":"Openings in the calendar.","intent":"query_avail","entities":[]} +{"text":"I want to set up directory tax consultation .","intent":"schedule","entities":[{"start":27,"end":43,"label":"appointment_type"}]} +{"text":"Availability for a lab session.","intent":"query_avail","entities":[]} +{"text":"Next available psychologist appointment ","intent":"query_avail","entities":[{"start":15,"end":39,"label":"appointment_type"}]} +{"text":"hola","intent":"greeting","entities":[]} +{"text":"wassup","intent":"greeting","entities":[]} +{"text":"Availability for each week.","intent":"query_avail","entities":[]} +{"text":"List times to meet : Dr. Giovanni Galli .","intent":"query_avail","entities":[{"start":21,"end":39,"label":"practitioner_name"}]} +{"text":"Find available performance review times with Coppola ","intent":"query_avail","entities":[{"start":15,"end":33,"label":"appointment_type"},{"start":45,"end":52,"label":"practitioner_name"}]} +{"text":"My appointment #103401, a dean's meeting with Dr. Williams, needs to be moved.","intent":"reschedule","entities":[{"start":15,"end":22,"label":"appointment_id"},{"start":26,"end":40,"label":"appointment_type"},{"start":46,"end":58,"label":"practitioner_name"}]} +{"text":"Reschedule my appointment please.","intent":"reschedule","entities":[]} +{"text":"I am cancelling my booking with the operator #536444 .","intent":"cancel","entities":[{"start":45,"end":52,"label":"appointment_id"}]} +{"text":"I'm unable to attend my student disciplinary hearing.","intent":"reschedule","entities":[{"start":24,"end":52,"label":"appointment_type"}]} +{"text":"Set up a tutorial with Prof. Bennett.","intent":"schedule","entities":[{"start":23,"end":36,"label":"practitioner_name"}]} +{"text":"Book a meeting about my final day","intent":"schedule","entities":[]} +{"text":"talk to you soon, bye!","intent":"bye","entities":[]} +{"text":"Find arbitrary time slots for a residence life meeting .","intent":"query_avail","entities":[{"start":32,"end":54,"label":"appointment_type"}]} +{"text":"I need to see Baker about their grades.","intent":"schedule","entities":[{"start":14,"end":19,"label":"practitioner_name"}]} +{"text":"do the romans still use the colosseum for anything today","intent":"oos","entities":[]} +{"text":"i appeciate it","intent":"positive_reply","entities":[]} +{"text":"Reschedule : research update with Prof. Bennett , please.","intent":"reschedule","entities":[{"start":13,"end":28,"label":"appointment_type"},{"start":34,"end":47,"label":"practitioner_name"}]} +{"text":"hey there","intent":"greeting","entities":[]} +{"text":"you need to cancel my appointment.","intent":"cancel","entities":[]} +{"text":"how are things for you","intent":"greeting","entities":[]} +{"text":"Show Dr. Wilson's openings for this Friday.","intent":"query_avail","entities":[{"start":5,"end":15,"label":"practitioner_name"}]} +{"text":"Display schedule for one week.","intent":"query_avail","entities":[]} +{"text":"are any earning reports due","intent":"oos","entities":[]} +{"text":"busy office hours.","intent":"schedule","entities":[]} +{"text":"I must have a research group meeting with Dott. Simone Marchetti per week.","intent":"schedule","entities":[{"start":14,"end":36,"label":"appointment_type"},{"start":42,"end":64,"label":"practitioner_name"}]} +{"text":"Availability for this week.","intent":"query_avail","entities":[]} +{"text":"Need to change our existing appointment.","intent":"reschedule","entities":[]} +{"text":"The meeting name Conti (ref #758129 ) is no longer required.","intent":"cancel","entities":[{"start":17,"end":22,"label":"practitioner_name"},{"start":28,"end":35,"label":"appointment_id"}]} +{"text":"Find available meeting times with Baker.","intent":"query_avail","entities":[{"start":34,"end":39,"label":"practitioner_name"}]} +{"text":"thanks again!","intent":"positive_reply","entities":[]} +{"text":"Openings for a thesis discussion.","intent":"query_avail","entities":[]} +{"text":"we can't make my scheduled appointment.","intent":"reschedule","entities":[]} +{"text":"I have to reschedule with mentorship meeting .","intent":"reschedule","entities":[{"start":26,"end":44,"label":"appointment_type"}]} +{"text":"I'd like to reschedule.","intent":"reschedule","entities":[]} +{"text":"Display schedule for next round","intent":"query_avail","entities":[]} +{"text":"ill see you around","intent":"bye","entities":[]} +{"text":"hi there","intent":"greeting","entities":[]} +{"text":"I have an appointment, #015443, that I must reschedule.","intent":"reschedule","entities":[{"start":23,"end":30,"label":"appointment_id"}]} +{"text":"great chat, talk to you later","intent":"bye","entities":[]} +{"text":"you got it","intent":"positive_reply","entities":[]} +{"text":"Delete \\ appointment, ID is #928021 .","intent":"cancel","entities":[{"start":28,"end":35,"label":"appointment_id"}]} +{"text":"are tattoos safe to get","intent":"oos","entities":[]} +{"text":"Postpone my meeting address Mr. Barnes .","intent":"reschedule","entities":[{"start":28,"end":38,"label":"practitioner_name"}]} +{"text":"I would like to make my appointment #623681 back by an hour.","intent":"reschedule","entities":[{"start":36,"end":43,"label":"appointment_id"}]} +{"text":"Let's move my student advising.","intent":"reschedule","entities":[{"start":14,"end":30,"label":"appointment_type"}]} +{"text":"click for Ricci tomorrow.","intent":"query_avail","entities":[{"start":10,"end":15,"label":"practitioner_name"}]} +{"text":"might like to book an appointment.","intent":"schedule","entities":[]} +{"text":"Unfortunately, I need to arrange my meeting.","intent":"reschedule","entities":[]} +{"text":"remember my appointment with booking reference #564268 .","intent":"cancel","entities":[{"start":47,"end":54,"label":"appointment_id"}]} +{"text":"just wanted to say hi","intent":"greeting","entities":[]} +{"text":"Move booking #709588 | next week.","intent":"reschedule","entities":[{"start":13,"end":20,"label":"appointment_id"}]} +{"text":"Set a meeting with Professor Emily Clark ","intent":"schedule","entities":[{"start":19,"end":40,"label":"practitioner_name"}]} +{"text":"that's not right it's false","intent":"negative_reply","entities":[]} +{"text":"naw","intent":"negative_reply","entities":[]} +{"text":"Change booking #281149 my eye exam with Professor De Luca .","intent":"reschedule","entities":[{"start":15,"end":22,"label":"appointment_id"},{"start":27,"end":35,"label":"appointment_type"},{"start":41,"end":58,"label":"practitioner_name"}]} +{"text":"Dott.ssa Anna Moretti 's availability for scheduling psychologist appointment this week.","intent":"query_avail","entities":[{"start":0,"end":21,"label":"practitioner_name"},{"start":53,"end":77,"label":"appointment_type"}]} +{"text":"who was the first capcom character","intent":"oos","entities":[]} +{"text":"Availability of Dr. King for a meeting.","intent":"query_avail","entities":[{"start":16,"end":24,"label":"practitioner_name"}]} +{"text":"review chapter 6 with my son and verify his math homework answers","intent":"oos","entities":[]} +{"text":"correct, that's true","intent":"positive_reply","entities":[]} +{"text":"I need an ultrasound ;","intent":"schedule","entities":[{"start":10,"end":20,"label":"appointment_type"}]} +{"text":"I want to book myself with Rinaldi .","intent":"schedule","entities":[{"start":27,"end":34,"label":"practitioner_name"}]} +{"text":"Please make a cancellation for #746934 .","intent":"cancel","entities":[{"start":31,"end":38,"label":"appointment_id"}]} +{"text":"Amato discussione tesi availability check.","intent":"query_avail","entities":[{"start":0,"end":5,"label":"practitioner_name"},{"start":6,"end":22,"label":"appointment_type"}]} +{"text":"do ducks sleep","intent":"oos","entities":[]} +{"text":"it was nice to talk it out with you","intent":"bye","entities":[]} +{"text":"I need to schedule a guest lecture for my project with Colombo.","intent":"schedule","entities":[{"start":21,"end":34,"label":"appointment_type"},{"start":55,"end":62,"label":"practitioner_name"}]} +{"text":"I'd like to get a meeting time.","intent":"schedule","entities":[]} +{"text":"Cancel my ?","intent":"cancel","entities":[]} +{"text":"I need to reschedule my talk with Morgan.","intent":"reschedule","entities":[{"start":34,"end":40,"label":"practitioner_name"}]} +{"text":"are you doing alright","intent":"greeting","entities":[]} +{"text":"I need to terminate my chat with Martin .","intent":"reschedule","entities":[{"start":33,"end":39,"label":"practitioner_name"}]} +{"text":"I need just reschedule my session with Prof. Müller .","intent":"reschedule","entities":[{"start":39,"end":51,"label":"practitioner_name"}]} +{"text":"Delete the appointment.","intent":"cancel","entities":[]} +{"text":"it is good to see you","intent":"greeting","entities":[]} +{"text":"I can't make my orientation session appointment Tuesday.","intent":"reschedule","entities":[{"start":16,"end":35,"label":"appointment_type"}]} +{"text":"I will not delay attending my meeting, ID #420645 , please cancel.","intent":"cancel","entities":[{"start":42,"end":49,"label":"appointment_id"}]} +{"text":"yes that is right","intent":"positive_reply","entities":[]} +{"text":"Prof. Watson 's }","intent":"query_avail","entities":[{"start":0,"end":12,"label":"practitioner_name"}]} +{"text":"Can I get on Santini's calendar?","intent":"schedule","entities":[{"start":13,"end":20,"label":"practitioner_name"}]} +{"text":"Cancel your booking.","intent":"cancel","entities":[]} +{"text":"I need to cancel my appointment #795492 with Mr. Adams |","intent":"cancel","entities":[{"start":32,"end":39,"label":"appointment_id"},{"start":45,"end":54,"label":"practitioner_name"}]} +{"text":"cancel my appointment #192560 .","intent":"reschedule","entities":[{"start":22,"end":29,"label":"appointment_id"}]} +{"text":"I need an appointment with Professor Mariani for a career counseling.","intent":"schedule","entities":[{"start":27,"end":44,"label":"practitioner_name"},{"start":51,"end":68,"label":"appointment_type"}]} +{"text":"Can you help automatically reschedule #586330 ?","intent":"reschedule","entities":[{"start":38,"end":45,"label":"appointment_id"}]} +{"text":"Need your schedule.","intent":"schedule","entities":[]} +{"text":"bye!","intent":"bye","entities":[]} +{"text":"Show me free time.","intent":"query_avail","entities":[]} +{"text":"I have to reschedule my eye exam.","intent":"reschedule","entities":[{"start":24,"end":32,"label":"appointment_type"}]} +{"text":"it was good chatting","intent":"bye","entities":[]} +{"text":"please want to reschedule booking #355543 .","intent":"reschedule","entities":[{"start":34,"end":41,"label":"appointment_id"}]} +{"text":"I am ready to cancel my appointment.","intent":"cancel","entities":[]} +{"text":"Scrub my appointment.","intent":"cancel","entities":[]} +{"text":"Open appointment fee","intent":"query_avail","entities":[]} +{"text":"it was pleasant conversing with you","intent":"bye","entities":[]} +{"text":"and cancel my upcoming meeting.","intent":"cancel","entities":[]} +{"text":"i had a pleasure talking to you, see you later","intent":"bye","entities":[]} +{"text":"Please cancel my application for the tax consultation .","intent":"cancel","entities":[{"start":37,"end":53,"label":"appointment_type"}]} +{"text":"Free slots with Mancini for a vet appointment this afternoon.","intent":"query_avail","entities":[{"start":16,"end":23,"label":"practitioner_name"},{"start":30,"end":45,"label":"appointment_type"}]} +{"text":"thanks a lot for the answer","intent":"positive_reply","entities":[]} +{"text":"minimum schedule openings.","intent":"query_avail","entities":[]} +{"text":"I want to write a progress review .","intent":"schedule","entities":[{"start":18,"end":33,"label":"appointment_type"}]} +{"text":"Schedule a sync-up : my group with Dr. Lefevre .","intent":"schedule","entities":[{"start":11,"end":18,"label":"appointment_type"},{"start":35,"end":46,"label":"practitioner_name"}]} +{"text":"Let's arrange this chat.","intent":"schedule","entities":[]} +{"text":"Availability for academic probation meeting s this >","intent":"query_avail","entities":[{"start":17,"end":43,"label":"appointment_type"}]} +{"text":"Shift shift course registration help to another day.","intent":"reschedule","entities":[{"start":12,"end":36,"label":"appointment_type"}]} +{"text":"Check Costa 's update for Friday.","intent":"query_avail","entities":[{"start":6,"end":11,"label":"practitioner_name"}]} +{"text":"Cancel my booking with booking reference #449094 .","intent":"cancel","entities":[{"start":41,"end":48,"label":"appointment_id"}]} +{"text":"Cancel the meeting with Cox regarding my thesis, ID #974214.","intent":"cancel","entities":[{"start":24,"end":27,"label":"practitioner_name"},{"start":52,"end":59,"label":"appointment_id"}]} +{"text":"Let's find the alternative time for my chat with James .","intent":"reschedule","entities":[{"start":49,"end":54,"label":"practitioner_name"}]} +{"text":"I'd hoped to see Dr. King at a different time.","intent":"reschedule","entities":[{"start":17,"end":25,"label":"practitioner_name"}]} +{"text":"approximate schedule.","intent":"query_avail","entities":[]} +{"text":"I require a meeting with Green ","intent":"schedule","entities":[{"start":25,"end":30,"label":"practitioner_name"}]} +{"text":"Can I arrange an appointment?","intent":"schedule","entities":[]} +{"text":"Time slots for Prof. David Johnson.","intent":"query_avail","entities":[{"start":15,"end":34,"label":"practitioner_name"}]} +{"text":"I wanted to cancel my thesis discussion.","intent":"cancel","entities":[]} +{"text":"Is there availability such a research group meeting ?","intent":"schedule","entities":[{"start":29,"end":51,"label":"appointment_type"}]} +{"text":"Let's cancel the meeting with ibm #928021 .","intent":"cancel","entities":[{"start":34,"end":41,"label":"appointment_id"}]} +{"text":"My seminar presentation needs to be on a different day.","intent":"reschedule","entities":[{"start":3,"end":23,"label":"appointment_type"}]} +{"text":"thank you","intent":"positive_reply","entities":[]} +{"text":"Please cancel my haircut this time","intent":"cancel","entities":[{"start":17,"end":24,"label":"appointment_type"}]} +{"text":"Cancel my workshop with Colombo , \\","intent":"cancel","entities":[{"start":10,"end":18,"label":"appointment_type"},{"start":24,"end":31,"label":"practitioner_name"}]} +{"text":"I must change my meeting with Professor Sala.","intent":"reschedule","entities":[{"start":30,"end":44,"label":"practitioner_name"}]} +{"text":"Rebook my performance review.","intent":"reschedule","entities":[{"start":10,"end":28,"label":"appointment_type"}]} +{"text":"start with Fiore for a thesis defense rehearsal .","intent":"query_avail","entities":[{"start":11,"end":16,"label":"practitioner_name"},{"start":23,"end":47,"label":"appointment_type"}]} +{"text":"Please replace the peer advising with Professor Rossi from my schedule.","intent":"cancel","entities":[{"start":19,"end":32,"label":"appointment_type"},{"start":38,"end":53,"label":"practitioner_name"}]} +{"text":"thank you for the chat, goodbye","intent":"bye","entities":[]} +{"text":"Available times for configuration financial advising .","intent":"query_avail","entities":[{"start":34,"end":52,"label":"appointment_type"}]} +{"text":"Reschedule my meeting with google Bianchi .","intent":"reschedule","entities":[{"start":34,"end":41,"label":"practitioner_name"}]} +{"text":"cya later","intent":"bye","entities":[]} +{"text":"I need to change the time of appointment #079183.","intent":"reschedule","entities":[{"start":41,"end":48,"label":"appointment_id"}]} +{"text":"goodbye to you","intent":"bye","entities":[]} +{"text":"might like to reschedule.","intent":"reschedule","entities":[]} +{"text":"I can't attend the team meeting.","intent":"reschedule","entities":[{"start":19,"end":31,"label":"appointment_type"}]} +{"text":"Let's schedule a lecture.","intent":"schedule","entities":[{"start":17,"end":24,"label":"appointment_type"}]} +{"text":"I can't make it to appointment #222384.","intent":"reschedule","entities":[{"start":31,"end":38,"label":"appointment_id"}]} +{"text":"farewell!","intent":"bye","entities":[]} +{"text":"no way!","intent":"negative_reply","entities":[]} +{"text":"I need to replace my departmental meeting with Leone (ID: #420645 ).","intent":"cancel","entities":[{"start":21,"end":41,"label":"appointment_type"},{"start":47,"end":52,"label":"practitioner_name"},{"start":58,"end":65,"label":"appointment_id"}]} +{"text":"update calendar for research seminar s.","intent":"query_avail","entities":[{"start":20,"end":36,"label":"appointment_type"}]} +{"text":"\\ delete appointment #186683 , my research update with Professor Thompson .","intent":"cancel","entities":[{"start":21,"end":28,"label":"appointment_id"},{"start":34,"end":49,"label":"appointment_type"},{"start":65,"end":73,"label":"practitioner_name"}]} +{"text":"Dr. Brooks's calendar for next month.","intent":"query_avail","entities":[{"start":0,"end":10,"label":"practitioner_name"}]} +{"text":"uh huh","intent":"positive_reply","entities":[]} +{"text":"Talk to Nowak.","intent":"schedule","entities":[{"start":8,"end":13,"label":"practitioner_name"}]} +{"text":"I'd need to schedule a letter of recommendation request .","intent":"schedule","entities":[{"start":23,"end":55,"label":"appointment_type"}]} +{"text":"I have an appointment I need to change.","intent":"reschedule","entities":[]} +{"text":"yep","intent":"positive_reply","entities":[]} +{"text":"what do you feel like doing","intent":"greeting","entities":[]} +{"text":"Professor Caruso = free times.","intent":"query_avail","entities":[{"start":10,"end":16,"label":"practitioner_name"}]} +{"text":"does iron maiden have any new releases","intent":"oos","entities":[]} +{"text":"Arrange a review session with Dr. Giovanni Galli ","intent":"schedule","entities":[{"start":30,"end":48,"label":"practitioner_name"}]} +{"text":"I want to change my appointment id Dott.ssa Chiara Negri .","intent":"reschedule","entities":[{"start":35,"end":56,"label":"practitioner_name"}]} +{"text":"I need to book a comprehensive exam with Ms. Davis ","intent":"schedule","entities":[{"start":17,"end":35,"label":"appointment_type"},{"start":41,"end":50,"label":"practitioner_name"}]} +{"text":"I intend to change the date for #017187 .","intent":"reschedule","entities":[{"start":32,"end":39,"label":"appointment_id"}]} +{"text":"Esposito's project meeting.","intent":"schedule","entities":[{"start":0,"end":8,"label":"practitioner_name"},{"start":11,"end":26,"label":"appointment_type"}]} +{"text":"I need to talk to Professor Vitali for a 1-on-1.","intent":"schedule","entities":[{"start":18,"end":34,"label":"practitioner_name"},{"start":41,"end":47,"label":"appointment_type"}]} +{"text":"Show available :","intent":"query_avail","entities":[]} +{"text":"Let's schedule your call with Greco .","intent":"schedule","entities":[{"start":30,"end":35,"label":"practitioner_name"}]} +{"text":"I want to cancel this appointment with Messina .","intent":"cancel","entities":[{"start":39,"end":46,"label":"practitioner_name"}]} +{"text":"Can I attend a project meeting with Lee ?","intent":"schedule","entities":[{"start":36,"end":39,"label":"practitioner_name"}]} +{"text":"I would like to get my appointment #426171 back by an hour.","intent":"reschedule","entities":[{"start":35,"end":42,"label":"appointment_id"}]} +{"text":"Arrange our meeting, please.","intent":"schedule","entities":[]} +{"text":"yo","intent":"greeting","entities":[]} +{"text":"Schedule : departmental meeting .","intent":"schedule","entities":[{"start":11,"end":31,"label":"appointment_type"}]} +{"text":"Leone 's best times today.","intent":"query_avail","entities":[{"start":0,"end":5,"label":"practitioner_name"}]} +{"text":"bye-bye","intent":"bye","entities":[]} +{"text":"I want to meet.","intent":"schedule","entities":[]} +{"text":"how is the ai doing","intent":"greeting","entities":[]} +{"text":"Please move my curriculum planning with Dr. Ferri, booking ref #420645.","intent":"reschedule","entities":[{"start":15,"end":34,"label":"appointment_type"},{"start":40,"end":49,"label":"practitioner_name"},{"start":63,"end":70,"label":"appointment_id"}]} +{"text":"Cancel the movie for me.","intent":"cancel","entities":[]} +{"text":"Can you handle my appointment?","intent":"cancel","entities":[]} +{"text":"My curriculum committee meeting, booking #000317, with Prof. Campbell is cancelled.","intent":"cancel","entities":[{"start":3,"end":31,"label":"appointment_type"},{"start":41,"end":48,"label":"appointment_id"},{"start":55,"end":69,"label":"practitioner_name"}]} +{"text":"Reschedule the letter of recommendation request with Professor Vitali , \\","intent":"reschedule","entities":[{"start":15,"end":47,"label":"appointment_type"},{"start":53,"end":69,"label":"practitioner_name"}]} +{"text":"can you tell me how you're doing today","intent":"greeting","entities":[]} +{"text":"Can I schedule a meeting?","intent":"schedule","entities":[]} +{"text":"Schedule something with De Angelis \\","intent":"schedule","entities":[{"start":24,"end":34,"label":"practitioner_name"}]} +{"text":"I am cancelling my pet checkup (ID #003644) with Prof. Howard.","intent":"cancel","entities":[{"start":19,"end":30,"label":"appointment_type"},{"start":35,"end":42,"label":"appointment_id"},{"start":49,"end":61,"label":"practitioner_name"}]} +{"text":"I must reschedule my appointment, reference #192560.","intent":"reschedule","entities":[{"start":44,"end":51,"label":"appointment_id"}]} +{"text":"I am cancelling my booking via the ID #169618 .","intent":"cancel","entities":[{"start":38,"end":45,"label":"appointment_id"}]} +{"text":"what person is the heaviest ever recorded","intent":"oos","entities":[]} +{"text":"I want to move my meeting with Dott. Marco Conti .","intent":"reschedule","entities":[{"start":31,"end":48,"label":"practitioner_name"}]} +{"text":"\\ have a therapy session with Prof. Howard that I need to move.","intent":"reschedule","entities":[{"start":9,"end":24,"label":"appointment_type"},{"start":30,"end":42,"label":"practitioner_name"}]} +{"text":"later!","intent":"bye","entities":[]} +{"text":"Please notice the cancellation of booking #676483 , my sync-up .","intent":"cancel","entities":[{"start":42,"end":49,"label":"appointment_id"},{"start":55,"end":62,"label":"appointment_type"}]} +{"text":"whenever available research ethics review .","intent":"query_avail","entities":[{"start":19,"end":41,"label":"appointment_type"}]} +{"text":"avoid cancelling my consultation with Mr. Adams .","intent":"cancel","entities":[{"start":38,"end":47,"label":"practitioner_name"}]} +{"text":"it's nice to see you","intent":"greeting","entities":[]} +{"text":"I no longer need any advising session with Prof. Dubois .","intent":"cancel","entities":[{"start":43,"end":55,"label":"practitioner_name"}]} +{"text":"I need to cancel my booking, number #106072.","intent":"cancel","entities":[{"start":36,"end":43,"label":"appointment_id"}]} +{"text":"bye now","intent":"bye","entities":[]} +{"text":"Openings with Ms. Cooper for a postdoctoral interview.","intent":"query_avail","entities":[{"start":14,"end":24,"label":"practitioner_name"},{"start":31,"end":53,"label":"appointment_type"}]} +{"text":" book a equipment training .","intent":"schedule","entities":[{"start":8,"end":26,"label":"appointment_type"}]} +{"text":"I want to schedule a peer advising with Dr. Giordano ;","intent":"schedule","entities":[{"start":21,"end":34,"label":"appointment_type"},{"start":40,"end":52,"label":"practitioner_name"}]} +{"text":"that isn't right","intent":"negative_reply","entities":[]} +{"text":"yes, that is true","intent":"positive_reply","entities":[]} +{"text":"Find Prof. Martini 's |","intent":"query_avail","entities":[{"start":5,"end":18,"label":"practitioner_name"}]} +{"text":"Find free time slots.","intent":"query_avail","entities":[]} +{"text":"let me know how you are doing","intent":"greeting","entities":[]} +{"text":"thanks, you've helped me","intent":"positive_reply","entities":[]} +{"text":"I can't make my project meeting (ID #562717).","intent":"reschedule","entities":[{"start":36,"end":43,"label":"appointment_id"}]} +{"text":"Reschedule my one-on-one client Young .","intent":"reschedule","entities":[{"start":32,"end":37,"label":"practitioner_name"}]} +{"text":"i thank you","intent":"positive_reply","entities":[]} +{"text":"negatory","intent":"negative_reply","entities":[]} +{"text":"correct","intent":"positive_reply","entities":[]} +{"text":"thanks for the info","intent":"positive_reply","entities":[]} +{"text":"each lab session with Morgan , booking #081504 , needs to be cancelled.","intent":"cancel","entities":[{"start":22,"end":28,"label":"practitioner_name"},{"start":39,"end":46,"label":"appointment_id"}]} +{"text":"hey, how are you","intent":"greeting","entities":[]} +{"text":"Find any open slot for a study group meeting .","intent":"schedule","entities":[{"start":25,"end":44,"label":"appointment_type"}]} +{"text":"When is Longo } for a faculty meeting .","intent":"query_avail","entities":[{"start":8,"end":13,"label":"practitioner_name"},{"start":22,"end":37,"label":"appointment_type"}]} +{"text":"Caruso 's |","intent":"query_avail","entities":[{"start":0,"end":6,"label":"practitioner_name"}]} +{"text":"I'm cancelling my tutorial session.","intent":"cancel","entities":[]} +{"text":"Check schedule for x-ray ;","intent":"query_avail","entities":[{"start":19,"end":24,"label":"appointment_type"}]} +{"text":"Please put the lecture on my schedule.","intent":"cancel","entities":[{"start":15,"end":22,"label":"appointment_type"}]} +{"text":"I need to cancel my meeting with Dott. Francesco Testa on Tuesday.","intent":"cancel","entities":[{"start":33,"end":54,"label":"practitioner_name"}]} +{"text":"Display the schedule of Dr. Giovanni Galli.","intent":"query_avail","entities":[{"start":24,"end":42,"label":"practitioner_name"}]} +{"text":"that's all i need, i'm going now","intent":"bye","entities":[]} +{"text":"Dr. King curriculum planning ;","intent":"schedule","entities":[{"start":0,"end":8,"label":"practitioner_name"},{"start":9,"end":28,"label":"appointment_type"}]} +{"text":"how is life treating you","intent":"greeting","entities":[]} +{"text":"Something has come up and I need to arrange my meeting with Walker .","intent":"reschedule","entities":[{"start":60,"end":66,"label":"practitioner_name"}]} +{"text":"I need to schedule a scheduled meeting.","intent":"cancel","entities":[]} +{"text":"I would like to arrange a research update with Professor D'Amico ","intent":"schedule","entities":[{"start":26,"end":41,"label":"appointment_type"},{"start":47,"end":64,"label":"practitioner_name"}]} +{"text":"My meeting with Santini is to be moved.","intent":"reschedule","entities":[{"start":16,"end":23,"label":"practitioner_name"}]} +{"text":"I'm sorry, but I have ... cancel my appointment.","intent":"cancel","entities":[]} +{"text":"follow my booking: #881822 .","intent":"cancel","entities":[{"start":19,"end":26,"label":"appointment_id"}]} +{"text":"find articles on essay writing for beginners","intent":"oos","entities":[]} +{"text":"eight free times.","intent":"query_avail","entities":[]} +{"text":"Cancel my lab session with Brown.","intent":"cancel","entities":[{"start":27,"end":32,"label":"practitioner_name"}]} +{"text":"Can we move my Ph.D. defense with Dr. Caterina Gentile? It's appointment #079262.","intent":"reschedule","entities":[{"start":15,"end":28,"label":"appointment_type"},{"start":34,"end":54,"label":"practitioner_name"},{"start":73,"end":80,"label":"appointment_id"}]} +{"text":"I need to cancel my meeting with my thesis.","intent":"cancel","entities":[]} +{"text":"Find an extra slot for me.","intent":"schedule","entities":[]} +{"text":"I'd like to talk through Messina .","intent":"schedule","entities":[{"start":25,"end":32,"label":"practitioner_name"}]} +{"text":"Move your appointment.","intent":"reschedule","entities":[]} +{"text":"that is incorrect","intent":"negative_reply","entities":[]} +{"text":"I want to cancel my massage therapy, appointment ID #017187.","intent":"cancel","entities":[{"start":20,"end":35,"label":"appointment_type"},{"start":52,"end":59,"label":"appointment_id"}]} +{"text":"I have to move something on my calendar.","intent":"reschedule","entities":[]} +{"text":"I'm cancelling. your ID is #004766 .","intent":"cancel","entities":[{"start":27,"end":34,"label":"appointment_id"}]} +{"text":"Postpone my appointment #729731 ;","intent":"reschedule","entities":[{"start":24,"end":31,"label":"appointment_id"}]} +{"text":"_ appointment #746934 , I want to cancel.","intent":"cancel","entities":[{"start":14,"end":21,"label":"appointment_id"}]} +{"text":"Openings for tomorrow.","intent":"query_avail","entities":[]} +{"text":"Find an opening sequence Prof. Garcia .","intent":"query_avail","entities":[{"start":25,"end":37,"label":"practitioner_name"}]} +{"text":"I want to move my appointment with Russo , ID #569400 ;","intent":"reschedule","entities":[{"start":35,"end":40,"label":"practitioner_name"},{"start":46,"end":53,"label":"appointment_id"}]} +{"text":"I need to change everything #204345 .","intent":"reschedule","entities":[{"start":28,"end":35,"label":"appointment_id"}]} +{"text":"i enjoyed our talk, bye","intent":"bye","entities":[]} +{"text":"the answer to that is a resounding yes","intent":"positive_reply","entities":[]} +{"text":"find me a graphic tutorial on writing longhand","intent":"oos","entities":[]} +{"text":"I need to find some time for my tenure meeting with Professor Emily Clark .","intent":"reschedule","entities":[{"start":32,"end":46,"label":"appointment_type"},{"start":52,"end":73,"label":"practitioner_name"}]} +{"text":"I have to cancel my meeting.","intent":"cancel","entities":[]} +{"text":"The peer tutoring or Dr. Angela White is no longer necessary.","intent":"cancel","entities":[{"start":4,"end":17,"label":"appointment_type"},{"start":21,"end":37,"label":"practitioner_name"}]} +{"text":"Set up a database with Ms. Kelly .","intent":"schedule","entities":[{"start":23,"end":32,"label":"practitioner_name"}]} +{"text":"hello there ai","intent":"greeting","entities":[]} +{"text":"Prof. Scott availability ;","intent":"query_avail","entities":[{"start":0,"end":11,"label":"practitioner_name"}]} +{"text":"List open scripts for Lombardi .","intent":"query_avail","entities":[{"start":22,"end":30,"label":"practitioner_name"}]} +{"text":"I'd like to cancel my last meeting.","intent":"cancel","entities":[]} +{"text":"Void my name #904815 .","intent":"cancel","entities":[{"start":13,"end":20,"label":"appointment_id"}]} +{"text":"what are black holes","intent":"oos","entities":[]} +{"text":"I have a sabbatical leave meeting with Bianchi that I need to move.","intent":"reschedule","entities":[{"start":9,"end":33,"label":"appointment_type"},{"start":39,"end":46,"label":"practitioner_name"}]} +{"text":"enter my office hours appointment with Serra .","intent":"cancel","entities":[{"start":39,"end":44,"label":"practitioner_name"}]} +{"text":"List all free times containing a discussione tesi with Torres .","intent":"query_avail","entities":[{"start":33,"end":49,"label":"appointment_type"},{"start":55,"end":61,"label":"practitioner_name"}]} +{"text":"I won't be needing this appointment anymore.","intent":"cancel","entities":[]} +{"text":"Arrange : meeting with Dott.ssa Chiara Negri .","intent":"schedule","entities":[{"start":23,"end":44,"label":"practitioner_name"}]} +{"text":"it was really nice to be able to chat with you","intent":"bye","entities":[]} +{"text":"Can you put a ultrasound in the calendar with De Angelis ?","intent":"schedule","entities":[{"start":14,"end":24,"label":"appointment_type"},{"start":46,"end":56,"label":"practitioner_name"}]} +{"text":"yes, that's affirmative","intent":"positive_reply","entities":[]} +{"text":"that's wrong","intent":"negative_reply","entities":[]} +{"text":"The project meeting with Gatti , ID #449703 , will be cancelled.","intent":"cancel","entities":[{"start":25,"end":30,"label":"practitioner_name"},{"start":36,"end":43,"label":"appointment_id"}]} +{"text":"Book a lab session with Professor Mariani.","intent":"schedule","entities":[{"start":24,"end":41,"label":"practitioner_name"}]} +{"text":"Open slots include a postdoctoral interview .","intent":"query_avail","entities":[{"start":21,"end":43,"label":"appointment_type"}]} +{"text":"select open slots for Dr. Ferrara .","intent":"query_avail","entities":[{"start":22,"end":33,"label":"practitioner_name"}]} +{"text":"i like to change the time of my one-on-one .","intent":"reschedule","entities":[{"start":32,"end":42,"label":"appointment_type"}]} +{"text":"Professor Morgan's free times.","intent":"query_avail","entities":[{"start":10,"end":16,"label":"practitioner_name"}]} +{"text":"Show the free rides on the calendar.","intent":"query_avail","entities":[]} +{"text":"Open procedure for a allergy test .","intent":"query_avail","entities":[{"start":21,"end":33,"label":"appointment_type"}]} +{"text":"I'd like to arrange my project meeting.","intent":"cancel","entities":[]} +{"text":"i appreciate that","intent":"positive_reply","entities":[]} +{"text":"that's a definite yes","intent":"positive_reply","entities":[]} +{"text":"I need to change the date for #630761.","intent":"reschedule","entities":[{"start":30,"end":37,"label":"appointment_id"}]} +{"text":"Arrange a meeting, …","intent":"schedule","entities":[]} +{"text":"should I change my tutorial session time?","intent":"reschedule","entities":[]} +{"text":"I want to cancel the appointments with reference #419544 .","intent":"cancel","entities":[{"start":49,"end":56,"label":"appointment_id"}]} +{"text":"Delete = ricevimento studenti with Fiore , booking ref #449094 .","intent":"cancel","entities":[{"start":9,"end":29,"label":"appointment_type"},{"start":35,"end":40,"label":"practitioner_name"},{"start":55,"end":62,"label":"appointment_id"}]} +{"text":"requesting a meeting with Prof. Howard .","intent":"schedule","entities":[{"start":26,"end":38,"label":"practitioner_name"}]} +{"text":"I need to book a final presentation with Dr. Stefano Marchese.","intent":"schedule","entities":[{"start":17,"end":35,"label":"appointment_type"},{"start":41,"end":61,"label":"practitioner_name"}]} +{"text":"Display free !","intent":"query_avail","entities":[]} +{"text":"Please book a meeting with Martin.","intent":"schedule","entities":[{"start":27,"end":33,"label":"practitioner_name"}]} +{"text":"I must change my address with Dr. Caterina Gentile .","intent":"reschedule","entities":[{"start":30,"end":50,"label":"practitioner_name"}]} +{"text":"Find an open slot for a equipment training.","intent":"schedule","entities":[{"start":24,"end":42,"label":"appointment_type"}]} +{"text":"when will microsoft drop support for windows 7","intent":"oos","entities":[]} +{"text":"I wanted to cancel.","intent":"cancel","entities":[]} +{"text":"there is a cancellation for my appointment with Professor Emily Clark .","intent":"cancel","entities":[{"start":48,"end":69,"label":"practitioner_name"}]} +{"text":"Can I get a different time for my meeting . Dr. Wilson ?","intent":"reschedule","entities":[{"start":44,"end":54,"label":"practitioner_name"}]} +{"text":"it was cool talking with you","intent":"bye","entities":[]} +{"text":"no thank you","intent":"negative_reply","entities":[]} +{"text":"you are so thoughtful and i appreciate your gesture","intent":"positive_reply","entities":[]} +{"text":"Reschedule my id with ID #709588 .","intent":"reschedule","entities":[{"start":25,"end":32,"label":"appointment_id"}]} +{"text":"i do not think that is true, so i would say it is a false statement","intent":"negative_reply","entities":[]} +{"text":"fuel availability.","intent":"query_avail","entities":[]} +{"text":"Schedule for Taylor ","intent":"query_avail","entities":[{"start":13,"end":19,"label":"practitioner_name"}]} +{"text":"what's the most difficult yoga pose to perform","intent":"oos","entities":[]} +{"text":"I'd like to make up a career counseling with Parisi .","intent":"schedule","entities":[{"start":22,"end":39,"label":"appointment_type"},{"start":45,"end":51,"label":"practitioner_name"}]} +{"text":"Display Testa 's free times for update vet appointment .","intent":"query_avail","entities":[{"start":8,"end":13,"label":"practitioner_name"},{"start":39,"end":54,"label":"appointment_type"}]} +{"text":"Change my life","intent":"reschedule","entities":[]} +{"text":"false","intent":"negative_reply","entities":[]} +{"text":"I need to change the time of execution #356641 .","intent":"reschedule","entities":[{"start":39,"end":46,"label":"appointment_id"}]} +{"text":"Alter my appointment.","intent":"reschedule","entities":[]} +{"text":"Availability closed Villa on July 22nd.","intent":"query_avail","entities":[{"start":20,"end":25,"label":"practitioner_name"}]} +{"text":"please need to find a different time for my meeting.","intent":"reschedule","entities":[]} +{"text":"I must change my meeting address Rossetti .","intent":"reschedule","entities":[{"start":33,"end":41,"label":"practitioner_name"}]} +{"text":"i'm grateful for the assistance","intent":"positive_reply","entities":[]} +{"text":"I need please reschedule my appointment, the ID is #955118 .","intent":"reschedule","entities":[{"start":51,"end":58,"label":"appointment_id"}]} +{"text":"I need to cancel my meeting with Dr. Lefevre.","intent":"cancel","entities":[{"start":33,"end":44,"label":"practitioner_name"}]} +{"text":"I can't attend class practicum supervision .","intent":"reschedule","entities":[{"start":21,"end":42,"label":"appointment_type"}]} +{"text":"Is it safe to schedule a session?","intent":"schedule","entities":[]} +{"text":"I need a new time slot.","intent":"reschedule","entities":[]} +{"text":"Remove my appointment on the calendar.","intent":"cancel","entities":[]} +{"text":"will I change my appointment time?","intent":"reschedule","entities":[]} +{"text":"I need to arrange a qualifying exam with Dr. Carter urgently.","intent":"schedule","entities":[{"start":20,"end":35,"label":"appointment_type"},{"start":41,"end":51,"label":"practitioner_name"}]} +{"text":"I can't make my project name (ID #901602 ).","intent":"reschedule","entities":[{"start":33,"end":40,"label":"appointment_id"}]} +{"text":"Check Prof. Martini's schedule for a research seminar on Friday.","intent":"query_avail","entities":[{"start":6,"end":19,"label":"practitioner_name"},{"start":37,"end":53,"label":"appointment_type"}]} +{"text":"according to my fitness tracker, how many push ups have i done today","intent":"oos","entities":[]} +{"text":"administer my oral exam.","intent":"schedule","entities":[]} +{"text":"Set up a file with Prof. Müller .","intent":"schedule","entities":[{"start":19,"end":31,"label":"practitioner_name"}]} +{"text":"rules for openings.","intent":"query_avail","entities":[]} +{"text":"until next time","intent":"bye","entities":[]} +{"text":"avoid looking to schedule a project kickoff with Conte .","intent":"schedule","entities":[{"start":28,"end":43,"label":"appointment_type"},{"start":49,"end":54,"label":"practitioner_name"}]} +{"text":"Time with Dr. Bailey }","intent":"schedule","entities":[{"start":10,"end":20,"label":"practitioner_name"}]} +{"text":"nice, excellent!","intent":"positive_reply","entities":[]} +{"text":"My situation has changed, I need to check my x-ray .","intent":"cancel","entities":[{"start":45,"end":50,"label":"appointment_type"}]} +{"text":"Cancel one-on-one with Baker .","intent":"cancel","entities":[{"start":24,"end":29,"label":"practitioner_name"}]} +{"text":"Office hours with Colombo.","intent":"query_avail","entities":[{"start":18,"end":25,"label":"practitioner_name"}]} +{"text":"Please cancel my upcoming seminar presentation.","intent":"cancel","entities":[{"start":26,"end":46,"label":"appointment_type"}]} +{"text":"Move my #993216 files Tuesday to Thursday.","intent":"reschedule","entities":[{"start":8,"end":15,"label":"appointment_id"}]} +{"text":"how many calories does jumping up and down burn","intent":"oos","entities":[]} +{"text":"what you just said is wrong","intent":"negative_reply","entities":[]} +{"text":"Dr. Giordano 's calendar for next generation","intent":"query_avail","entities":[{"start":0,"end":12,"label":"practitioner_name"}]} +{"text":"Times available by book.","intent":"query_avail","entities":[]} +{"text":"Can we schedule a group meeting with Dr. Santoro .","intent":"schedule","entities":[{"start":37,"end":48,"label":"practitioner_name"}]} +{"text":"Check Caruso's schedule for Friday.","intent":"query_avail","entities":[{"start":6,"end":12,"label":"practitioner_name"}]} +{"text":"i would like to thank you","intent":"positive_reply","entities":[]} +{"text":"does hypnosis work to break bad habits","intent":"oos","entities":[]} +{"text":"I must change from brainstorming session appointment with Prof. Bennett .","intent":"reschedule","entities":[{"start":19,"end":40,"label":"appointment_type"},{"start":58,"end":71,"label":"practitioner_name"}]} +{"text":"Arrange a departmental meeting with professor Dr. Davide Monti.","intent":"schedule","entities":[{"start":10,"end":30,"label":"appointment_type"},{"start":46,"end":62,"label":"practitioner_name"}]} +{"text":"print all available library research consultation times.","intent":"query_avail","entities":[{"start":20,"end":49,"label":"appointment_type"}]} +{"text":"Cancel #113852 |","intent":"cancel","entities":[{"start":7,"end":14,"label":"appointment_id"}]} +{"text":"List open slots for qualifying exam with Nelson .","intent":"query_avail","entities":[{"start":21,"end":36,"label":"appointment_type"},{"start":42,"end":48,"label":"practitioner_name"}]} +{"text":"I need to book a student feedback session Dott.ssa Elena Longo .","intent":"schedule","entities":[{"start":17,"end":41,"label":"appointment_type"},{"start":43,"end":63,"label":"practitioner_name"}]} +{"text":"how do you feel","intent":"greeting","entities":[]} +{"text":"Booking #575048 needs to be verified","intent":"reschedule","entities":[{"start":8,"end":15,"label":"appointment_id"}]} +{"text":"tell me how are you","intent":"greeting","entities":[]} +{"text":"it was pleasant having a conversation with you","intent":"bye","entities":[]} +{"text":"Can you help me reschedule #901602?","intent":"reschedule","entities":[{"start":27,"end":34,"label":"appointment_id"}]} +{"text":"allotted time slots.","intent":"query_avail","entities":[]} +{"text":"that will be all have a nice day!","intent":"bye","entities":[]} +{"text":"until next time!","intent":"bye","entities":[]} +{"text":"Please cancel and rebook my website","intent":"reschedule","entities":[]} +{"text":"Postpone my session with Marchetti.","intent":"reschedule","entities":[{"start":25,"end":34,"label":"practitioner_name"}]} +{"text":"tell me the steps as to how to begin a career as a journalist","intent":"oos","entities":[]} +{"text":"not that","intent":"negative_reply","entities":[]} +{"text":"setting up a meeting with Professor Schmidt .","intent":"schedule","entities":[{"start":26,"end":43,"label":"practitioner_name"}]} +{"text":"I'm cancelling the meeting with Professor Marino ?","intent":"cancel","entities":[{"start":32,"end":48,"label":"practitioner_name"}]} +{"text":"hello, how are things","intent":"greeting","entities":[]} +{"text":"i enjoyed talking to you","intent":"bye","entities":[]} +{"text":"I am about to cancel my appointment.","intent":"cancel","entities":[]} +{"text":"I can't make my project kickoff (ID #079262) with James.","intent":"reschedule","entities":[{"start":16,"end":31,"label":"appointment_type"},{"start":36,"end":43,"label":"appointment_id"},{"start":50,"end":55,"label":"practitioner_name"}]} +{"text":"it is no","intent":"negative_reply","entities":[]} +{"text":"how ya doin","intent":"greeting","entities":[]} +{"text":"^ 1-on-1 with Martin needs to be cancelled.","intent":"cancel","entities":[{"start":2,"end":8,"label":"appointment_type"},{"start":14,"end":20,"label":"practitioner_name"}]} +{"text":"I have to execute my ultrasound appointment.","intent":"cancel","entities":[{"start":21,"end":31,"label":"appointment_type"}]} +{"text":"Can I get out Collins 's calendar?","intent":"schedule","entities":[{"start":14,"end":21,"label":"practitioner_name"}]} +{"text":"Cox 's preferred appointment slots.","intent":"query_avail","entities":[{"start":0,"end":3,"label":"practitioner_name"}]} +{"text":"Arrange a meeting with Professor Bruno :","intent":"schedule","entities":[{"start":23,"end":38,"label":"practitioner_name"}]} +{"text":"Show Prof. Parker's availability.","intent":"query_avail","entities":[{"start":5,"end":17,"label":"practitioner_name"}]} +{"text":"I'm looking to schedule a study group meeting.","intent":"schedule","entities":[{"start":26,"end":45,"label":"appointment_type"}]} +{"text":"Can you help me do something?","intent":"schedule","entities":[]} +{"text":"What's free this afternoon.","intent":"query_avail","entities":[]} +{"text":"I need a message with Professor Fontana .","intent":"schedule","entities":[{"start":22,"end":39,"label":"practitioner_name"}]} +{"text":"you have a group project session with Dott. Paolo Farina that I need to move.","intent":"reschedule","entities":[{"start":11,"end":32,"label":"appointment_type"},{"start":38,"end":56,"label":"practitioner_name"}]} +{"text":"i am glad that you did that","intent":"positive_reply","entities":[]} +{"text":"no, that is not correct","intent":"negative_reply","entities":[]} +{"text":"I can't make my own appointment.","intent":"reschedule","entities":[]} +{"text":" final presentation slots.","intent":"query_avail","entities":[{"start":1,"end":19,"label":"appointment_type"}]} +{"text":"Can I check my appointment time?","intent":"reschedule","entities":[]} +{"text":"Time with Collins.","intent":"schedule","entities":[{"start":10,"end":17,"label":"practitioner_name"}]} +{"text":"Can we find another !","intent":"reschedule","entities":[]} +{"text":"I have to reschedule my fieldwork briefing with Colombo from monday to next week.","intent":"reschedule","entities":[{"start":24,"end":42,"label":"appointment_type"},{"start":48,"end":55,"label":"practitioner_name"}]} +{"text":"List schedule openings.","intent":"query_avail","entities":[]} +{"text":"Find Professor Fontana 's availability in a lab session .","intent":"query_avail","entities":[{"start":5,"end":22,"label":"practitioner_name"},{"start":44,"end":55,"label":"appointment_type"}]} +{"text":"Marchetti 's replacement for a financial aid consultation next month.","intent":"query_avail","entities":[{"start":0,"end":9,"label":"practitioner_name"},{"start":31,"end":57,"label":"appointment_type"}]} +{"text":"Can we schedule a massage therapy for me?","intent":"schedule","entities":[{"start":18,"end":33,"label":"appointment_type"}]} +{"text":"List open slots for a guest lecture with Walker.","intent":"query_avail","entities":[{"start":22,"end":35,"label":"appointment_type"},{"start":41,"end":47,"label":"practitioner_name"}]} +{"text":"thanks please","intent":"positive_reply","entities":[]} +{"text":"thanks so much ai","intent":"positive_reply","entities":[]} +{"text":"Cancel the meeting id Professor Mariani regarding my thesis, ID #180567 .","intent":"cancel","entities":[{"start":22,"end":39,"label":"practitioner_name"},{"start":64,"end":71,"label":"appointment_id"}]} +{"text":"List all openings a advising session with Dott.ssa Elena Longo .","intent":"query_avail","entities":[{"start":21,"end":37,"label":"appointment_type"},{"start":43,"end":63,"label":"practitioner_name"}]} +{"text":"I need to reschedule my contract","intent":"reschedule","entities":[]} +{"text":"I require a meeting with Villa.","intent":"schedule","entities":[{"start":25,"end":30,"label":"practitioner_name"}]} +{"text":"I'm cancelling my consultation session Nelson .","intent":"cancel","entities":[{"start":39,"end":45,"label":"practitioner_name"}]} +{"text":"Availability of Leone for a ;","intent":"query_avail","entities":[{"start":16,"end":21,"label":"practitioner_name"}]} +{"text":"Find available meeting times.","intent":"query_avail","entities":[]} +{"text":"now move my scheduled meeting.","intent":"reschedule","entities":[]} +{"text":"id like to request a new time for my meeting.","intent":"reschedule","entities":[]} +{"text":"hello there, good morning","intent":"greeting","entities":[]} +{"text":"I have some time with Dott.ssa Anna Moretti .","intent":"schedule","entities":[{"start":22,"end":43,"label":"practitioner_name"}]} +{"text":"Let's reschedule appointment #821730 |","intent":"reschedule","entities":[{"start":29,"end":36,"label":"appointment_id"}]} +{"text":"thanks for your help, goodbye!","intent":"bye","entities":[]} +{"text":"I must cancel booking #623681.","intent":"cancel","entities":[{"start":22,"end":29,"label":"appointment_id"}]} +{"text":"I need to arrange a student advising with Marchetti .","intent":"schedule","entities":[{"start":20,"end":36,"label":"appointment_type"},{"start":42,"end":51,"label":"practitioner_name"}]} +{"text":"Please move my booking #000317 }","intent":"reschedule","entities":[{"start":23,"end":30,"label":"appointment_id"}]} +{"text":"how've you been feeling","intent":"greeting","entities":[]} +{"text":"I want to postpone my session.","intent":"reschedule","entities":[]} +{"text":"I'm afraid I refuse to move my meeting, ref #600778 .","intent":"reschedule","entities":[{"start":44,"end":51,"label":"appointment_id"}]} +{"text":"see you later","intent":"bye","entities":[]} +{"text":"I'd like to cancel my reservation with Sanders.","intent":"cancel","entities":[{"start":39,"end":46,"label":"practitioner_name"}]} +{"text":"is va treatment free for veterans","intent":"oos","entities":[]} +{"text":"Find free time ;","intent":"query_avail","entities":[]} +{"text":"I need ta cancel my thesis discussion.","intent":"cancel","entities":[]} +{"text":"not true","intent":"negative_reply","entities":[]} +{"text":"I need to cancel booking #660065 ","intent":"cancel","entities":[{"start":25,"end":32,"label":"appointment_id"}]} +{"text":"got my booking.","intent":"reschedule","entities":[]} +{"text":"how do you fix a leaking sink","intent":"oos","entities":[]} +{"text":"enjoy your day, goodbye","intent":"bye","entities":[]} +{"text":"I have to pull out of my colloquio di orientamento ","intent":"cancel","entities":[{"start":25,"end":50,"label":"appointment_type"}]} +{"text":"Free times for Prof. Howard next week.","intent":"query_avail","entities":[{"start":15,"end":27,"label":"practitioner_name"}]} +{"text":"I'd like to talk to Rinaldi.","intent":"schedule","entities":[{"start":20,"end":27,"label":"practitioner_name"}]} +{"text":"it serves as a notification to cancel my appointment #795063 .","intent":"cancel","entities":[{"start":53,"end":60,"label":"appointment_id"}]} +{"text":"My situation has changed, I want to cancel my sync-up .","intent":"cancel","entities":[{"start":46,"end":53,"label":"appointment_type"}]} +{"text":"ai goodbye","intent":"bye","entities":[]} +{"text":"Please arrange a meeting with Testa .","intent":"schedule","entities":[{"start":30,"end":35,"label":"practitioner_name"}]} +{"text":"there is no way in heck that is true","intent":"negative_reply","entities":[]} +{"text":"I are unavailable for my seminar presentation and need to move it.","intent":"reschedule","entities":[{"start":25,"end":45,"label":"appointment_type"}]} +{"text":"\\ appointment #729731 .","intent":"cancel","entities":[{"start":14,"end":21,"label":"appointment_id"}]} +{"text":"Shift appointment #356641 to 2nd week.","intent":"reschedule","entities":[{"start":18,"end":25,"label":"appointment_id"}]} +{"text":"Please remove my therapy session with Mr. Peterson , write #204345 .","intent":"cancel","entities":[{"start":17,"end":32,"label":"appointment_type"},{"start":38,"end":50,"label":"practitioner_name"},{"start":59,"end":66,"label":"appointment_id"}]} +{"text":"hello, what's up","intent":"greeting","entities":[]} +{"text":"aloha","intent":"greeting","entities":[]} +{"text":"yes, that is true for sure","intent":"positive_reply","entities":[]} +{"text":"Rebook an introduction","intent":"reschedule","entities":[]} +{"text":"Find an open slot for me.","intent":"schedule","entities":[]} +{"text":"I have an sync-up with Prof. Müller that I need to define","intent":"cancel","entities":[{"start":10,"end":17,"label":"appointment_type"},{"start":23,"end":35,"label":"practitioner_name"}]} +{"text":"I need to reschedule my chat with Dr. Caterina Gentile.","intent":"reschedule","entities":[{"start":34,"end":54,"label":"practitioner_name"}]} +{"text":"hi, ai","intent":"greeting","entities":[]} +{"text":"Dr. Edwards's open appointment slots.","intent":"query_avail","entities":[{"start":0,"end":11,"label":"practitioner_name"}]} +{"text":"I won't be able to make it.","intent":"reschedule","entities":[]} +{"text":"Regarding appointment #255888 , I need to clarify it.","intent":"reschedule","entities":[{"start":22,"end":29,"label":"appointment_id"}]} +{"text":"I need a one-on-one update Dr. Ward .","intent":"schedule","entities":[{"start":27,"end":35,"label":"practitioner_name"}]} +{"text":"The check-up with Dr. Smith is nothing longer necessary.","intent":"cancel","entities":[{"start":4,"end":12,"label":"appointment_type"},{"start":18,"end":27,"label":"practitioner_name"}]} +{"text":"Professor Cattaneo's next available slot.","intent":"query_avail","entities":[{"start":0,"end":18,"label":"practitioner_name"}]} +{"text":"Delete my caller ID is #419544 .","intent":"cancel","entities":[{"start":23,"end":30,"label":"appointment_id"}]} +{"text":"Can I see Dr. King?","intent":"schedule","entities":[{"start":10,"end":18,"label":"practitioner_name"}]} +{"text":"not really","intent":"negative_reply","entities":[]} +{"text":"no that is wrong","intent":"negative_reply","entities":[]} +{"text":"Talk to Wright >","intent":"schedule","entities":[{"start":8,"end":14,"label":"practitioner_name"}]} +{"text":"Time with Professor Emily Clark |","intent":"schedule","entities":[{"start":10,"end":31,"label":"practitioner_name"}]} +{"text":"vacant slots.","intent":"query_avail","entities":[]} +{"text":"Can I change my appointment time?","intent":"reschedule","entities":[]} +{"text":"nay","intent":"negative_reply","entities":[]} +{"text":"Void my booking: #387449.","intent":"cancel","entities":[{"start":17,"end":24,"label":"appointment_id"}]} +{"text":"hey what's up","intent":"greeting","entities":[]} +{"text":"My schedule has changed, I need to reschedule.","intent":"reschedule","entities":[]} +{"text":"nope, that's false","intent":"negative_reply","entities":[]} +{"text":"i do not believe that that is correct","intent":"negative_reply","entities":[]} +{"text":"Shift appointment #554324 to next appointment","intent":"reschedule","entities":[{"start":18,"end":25,"label":"appointment_id"}]} +{"text":"Dr. Ferri \\ calendar.","intent":"query_avail","entities":[{"start":0,"end":9,"label":"practitioner_name"}]} +{"text":"how do i add someone to my account","intent":"oos","entities":[]} +{"text":"Calendar dates next month.","intent":"query_avail","entities":[]} +{"text":"Cancel the link with Mancini regarding my thesis, ID #538465 .","intent":"cancel","entities":[{"start":21,"end":28,"label":"practitioner_name"},{"start":53,"end":60,"label":"appointment_id"}]} +{"text":"Free slots for Professor Cattaneo this afternoon.","intent":"query_avail","entities":[{"start":15,"end":33,"label":"practitioner_name"}]} +{"text":"The lab session call Pellegrini , booking #339055 , needs to be cancelled.","intent":"cancel","entities":[{"start":21,"end":31,"label":"practitioner_name"},{"start":42,"end":49,"label":"appointment_id"}]} +{"text":"Show schedule for capstone meeting .","intent":"query_avail","entities":[{"start":18,"end":34,"label":"appointment_type"}]} +{"text":"Is Dr. Stefano Marchese free for typing haircut ?","intent":"schedule","entities":[{"start":3,"end":23,"label":"practitioner_name"},{"start":40,"end":47,"label":"appointment_type"}]} +{"text":"drop me in for a lab demonstration .","intent":"schedule","entities":[{"start":17,"end":34,"label":"appointment_type"}]} +{"text":"that’s incorrect","intent":"negative_reply","entities":[]} +{"text":"list of Dott. Matteo Palmieri .","intent":"query_avail","entities":[{"start":8,"end":29,"label":"practitioner_name"}]} +{"text":"I'd like to request a password","intent":"cancel","entities":[]} +{"text":"I need to cancel my appointment #355543 with Ms. Allen.","intent":"cancel","entities":[{"start":32,"end":39,"label":"appointment_id"},{"start":45,"end":54,"label":"practitioner_name"}]} +{"text":"I need your new time slot.","intent":"reschedule","entities":[]} +{"text":"I need to change my lab session.","intent":"reschedule","entities":[]} +{"text":"i’m leaving-goodbye!","intent":"bye","entities":[]} +{"text":"find instructions on how to play taboo","intent":"oos","entities":[]} +{"text":"are you doing ok","intent":"greeting","entities":[]} +{"text":"this was a great conversation","intent":"bye","entities":[]} +{"text":"it was very good to talk to you","intent":"bye","entities":[]} +{"text":"no, you are wrong","intent":"negative_reply","entities":[]} +{"text":"what is the breath to compression ratio for cpr","intent":"oos","entities":[]} +{"text":"I have to postpone my office hours visit with Nowak.","intent":"reschedule","entities":[{"start":46,"end":51,"label":"practitioner_name"}]} +{"text":"certainly not","intent":"negative_reply","entities":[]} +{"text":"I want to change my appointment with Dr. Peterson ","intent":"reschedule","entities":[{"start":37,"end":49,"label":"practitioner_name"}]} +{"text":"Book a daily slot.","intent":"schedule","entities":[]} +{"text":"can you tell me how to solve simple algebraic equations with one variable","intent":"oos","entities":[]} +{"text":" my upcoming physical therapy session .","intent":"cancel","entities":[{"start":13,"end":37,"label":"appointment_type"}]} +{"text":"Please remove the alumni interview with Mr. Adams from my schedule.","intent":"cancel","entities":[{"start":18,"end":34,"label":"appointment_type"},{"start":40,"end":49,"label":"practitioner_name"}]} +{"text":"that is correct","intent":"positive_reply","entities":[]} +{"text":"what show am i watching","intent":"oos","entities":[]} +{"text":"My lab demonstration , booking #113852 starting with Santini is cancelled.","intent":"cancel","entities":[{"start":3,"end":20,"label":"appointment_type"},{"start":31,"end":38,"label":"appointment_id"},{"start":53,"end":60,"label":"practitioner_name"}]} +{"text":"My eye exam , booking #081504 } with Prof. Bennett is cancelled.","intent":"cancel","entities":[{"start":3,"end":11,"label":"appointment_type"},{"start":22,"end":29,"label":"appointment_id"},{"start":37,"end":50,"label":"practitioner_name"}]} +{"text":"well hello","intent":"greeting","entities":[]} +{"text":"Help me book transfer credit evaluation .","intent":"schedule","entities":[{"start":14,"end":40,"label":"appointment_type"}]} +{"text":"i enjoyed our talk, goodbye","intent":"bye","entities":[]} +{"text":"Schedule a tax consultation with Piras.","intent":"schedule","entities":[{"start":11,"end":27,"label":"appointment_type"},{"start":33,"end":38,"label":"practitioner_name"}]} +{"text":"Next available :","intent":"query_avail","entities":[]} +{"text":"I need to change my library research consultation with Dott. Paolo Farina , ID _ #079183 .","intent":"reschedule","entities":[{"start":20,"end":49,"label":"appointment_type"},{"start":55,"end":73,"label":"practitioner_name"},{"start":81,"end":88,"label":"appointment_id"}]} +{"text":"i would say that the statement is definitely false","intent":"negative_reply","entities":[]} +{"text":"I'd have to get on the calendar.","intent":"schedule","entities":[]} +{"text":"yes, that is actually true","intent":"positive_reply","entities":[]} +{"text":"Let's book a 1-on-1 with Professor Sartori starting this Friday.","intent":"schedule","entities":[{"start":13,"end":19,"label":"appointment_type"},{"start":25,"end":42,"label":"practitioner_name"}]} +{"text":"I need to change the time for my academic integrity hearing with Dott.ssa Chiara Negri (ID: #642584).","intent":"reschedule","entities":[{"start":33,"end":59,"label":"appointment_type"},{"start":65,"end":86,"label":"practitioner_name"},{"start":92,"end":99,"label":"appointment_id"}]} +{"text":"buy me free time.","intent":"query_avail","entities":[]} +{"text":"I need to schedule file fieldwork briefing for my project with Dr. Smith .","intent":"schedule","entities":[{"start":24,"end":42,"label":"appointment_type"},{"start":63,"end":72,"label":"practitioner_name"}]} +{"text":"hello","intent":"greeting","entities":[]} +{"text":"it was good to talk to you today","intent":"bye","entities":[]} +{"text":"I choose to cancel my blood test , appointment ID #169618 .","intent":"cancel","entities":[{"start":22,"end":32,"label":"appointment_type"},{"start":50,"end":57,"label":"appointment_id"}]} +{"text":"I'm afraid I have to move before meeting, ref #630761 .","intent":"reschedule","entities":[{"start":46,"end":53,"label":"appointment_id"}]} +{"text":"Free times for a IT support session with option Dr. Peterson .","intent":"query_avail","entities":[{"start":17,"end":35,"label":"appointment_type"},{"start":48,"end":60,"label":"practitioner_name"}]} +{"text":"Show Caruso directory availability.","intent":"query_avail","entities":[{"start":5,"end":11,"label":"practitioner_name"}]} +{"text":"Void my file #564268 .","intent":"cancel","entities":[{"start":13,"end":20,"label":"appointment_id"}]} +{"text":"< Mr. Peterson free for a research update ?","intent":"schedule","entities":[{"start":2,"end":14,"label":"practitioner_name"},{"start":26,"end":41,"label":"appointment_type"}]} +{"text":"that is true","intent":"positive_reply","entities":[]} +{"text":"Please cancel my grant proposal meeting this Friday.","intent":"cancel","entities":[{"start":17,"end":39,"label":"appointment_type"}]} +{"text":"Unfortunately, I refused to move my meeting.","intent":"reschedule","entities":[]} +{"text":"Check for academic advising ","intent":"query_avail","entities":[{"start":10,"end":27,"label":"appointment_type"}]} +{"text":"I am no more available for my project update with Costa .","intent":"cancel","entities":[{"start":30,"end":44,"label":"appointment_type"},{"start":50,"end":55,"label":"practitioner_name"}]} +{"text":"Professor Dott. Francesco Testa 's free software","intent":"query_avail","entities":[{"start":10,"end":31,"label":"practitioner_name"}]} +{"text":"Find available specialist visit |","intent":"query_avail","entities":[{"start":15,"end":31,"label":"appointment_type"}]} +{"text":"Get rid _ appointment #261071 .","intent":"cancel","entities":[{"start":22,"end":29,"label":"appointment_id"}]} +{"text":"provides an open slot for a eye exam .","intent":"schedule","entities":[{"start":28,"end":36,"label":"appointment_type"}]} +{"text":"Schedule for Professor Mariani.","intent":"query_avail","entities":[{"start":13,"end":30,"label":"practitioner_name"}]} +{"text":"that would be false","intent":"negative_reply","entities":[]} +{"text":"Ms. Mitchell = calendar for tutoring session s.","intent":"query_avail","entities":[{"start":0,"end":12,"label":"practitioner_name"},{"start":28,"end":44,"label":"appointment_type"}]} +{"text":"Check schedule availability.","intent":"query_avail","entities":[]} +{"text":"I need to drop my student feedback session with Piras.","intent":"cancel","entities":[{"start":18,"end":42,"label":"appointment_type"},{"start":48,"end":53,"label":"practitioner_name"}]} +{"text":"Can I make an appointment for : academic integrity hearing ?","intent":"schedule","entities":[{"start":32,"end":58,"label":"appointment_type"}]} +{"text":"yes, this is true","intent":"positive_reply","entities":[]} +{"text":"Availability of Professor D'Amico |","intent":"query_avail","entities":[{"start":16,"end":33,"label":"practitioner_name"}]} +{"text":"Open slots for a vaccination.","intent":"query_avail","entities":[{"start":17,"end":28,"label":"appointment_type"}]} +{"text":"I'd like to see Mr. Peterson at a different .","intent":"reschedule","entities":[{"start":16,"end":28,"label":"practitioner_name"}]} +{"text":"are there any messages","intent":"oos","entities":[]} +{"text":"I'd like to change date haircut with Morgan to another day.","intent":"reschedule","entities":[{"start":24,"end":31,"label":"appointment_type"},{"start":37,"end":43,"label":"practitioner_name"}]} +{"text":"What's happened this afternoon.","intent":"query_avail","entities":[]} +{"text":"I need to do something car service .","intent":"schedule","entities":[{"start":23,"end":34,"label":"appointment_type"}]} +{"text":"Free times every week.","intent":"query_avail","entities":[]} +{"text":"Help me book check-up with Dr. Laura Ferrari .","intent":"schedule","entities":[{"start":14,"end":22,"label":"appointment_type"},{"start":28,"end":45,"label":"practitioner_name"}]} +{"text":"I need to see Richardson ","intent":"schedule","entities":[{"start":14,"end":24,"label":"practitioner_name"}]} +{"text":"Book three hours.","intent":"schedule","entities":[]} +{"text":"absolutely correct","intent":"positive_reply","entities":[]} +{"text":"Show openings for next Friday.","intent":"query_avail","entities":[]} +{"text":"Show at free time.","intent":"query_avail","entities":[]} +{"text":"it's so much easier with you around","intent":"positive_reply","entities":[]} +{"text":"List schedule files for Bianchi .","intent":"query_avail","entities":[{"start":24,"end":31,"label":"practitioner_name"}]} +{"text":"no need to move my meeting.","intent":"reschedule","entities":[]} +{"text":"what cryptocurrency gained the most in 2018","intent":"oos","entities":[]} +{"text":"I need to reschedule with Bell }","intent":"reschedule","entities":[{"start":26,"end":30,"label":"practitioner_name"}]} +{"text":"good day","intent":"greeting","entities":[]} +{"text":"Availability of Prof. Parker.","intent":"query_avail","entities":[{"start":16,"end":28,"label":"practitioner_name"}]} +{"text":"List all openings for a makeup exam with Collins.","intent":"query_avail","entities":[{"start":24,"end":35,"label":"appointment_type"},{"start":41,"end":48,"label":"practitioner_name"}]} +{"text":"List open files for a x-ray with Donati .","intent":"query_avail","entities":[{"start":22,"end":27,"label":"appointment_type"},{"start":33,"end":39,"label":"practitioner_name"}]} +{"text":"Something came up, I need to change my appointment.","intent":"reschedule","entities":[]} +{"text":"Can we move my financial advising from Mr. Rogers ? It's appointment #975878 .","intent":"reschedule","entities":[{"start":15,"end":33,"label":"appointment_type"},{"start":39,"end":49,"label":"practitioner_name"},{"start":69,"end":76,"label":"appointment_id"}]} +{"text":"I can cancel booking #660065 .","intent":"cancel","entities":[{"start":21,"end":28,"label":"appointment_id"}]} +{"text":"I need to get appointment #795063 .","intent":"reschedule","entities":[{"start":26,"end":33,"label":"appointment_id"}]} +{"text":"Need change schedule.","intent":"schedule","entities":[]} +{"text":"scheduled for tomorrow.","intent":"query_avail","entities":[]} +{"text":"Get updated on Nelson 's schedule.","intent":"schedule","entities":[{"start":15,"end":21,"label":"practitioner_name"}]} +{"text":"Please accept my apologies, but I should cancel my meeting.","intent":"cancel","entities":[]} +{"text":"The meeting with Sanders (ref #984794 ) is no longer scheduled","intent":"cancel","entities":[{"start":17,"end":24,"label":"practitioner_name"},{"start":30,"end":37,"label":"appointment_id"}]} +{"text":"I want to cancel my appointment.","intent":"cancel","entities":[]} +{"text":"oh hell no, that'd be terrible!","intent":"negative_reply","entities":[]} +{"text":"no, that's not right","intent":"negative_reply","entities":[]} +{"text":"clients will not be attending my ricevimento studenti with Pellegrini .","intent":"cancel","entities":[{"start":33,"end":53,"label":"appointment_type"},{"start":59,"end":69,"label":"practitioner_name"}]} +{"text":"temporarily cancelling my tutorial session.","intent":"cancel","entities":[]} +{"text":"Availability of Nelson defines a letter of recommendation request .","intent":"query_avail","entities":[{"start":16,"end":22,"label":"practitioner_name"},{"start":33,"end":65,"label":"appointment_type"}]} +{"text":"I want to reschedule with Mr. Peterson .","intent":"reschedule","entities":[{"start":26,"end":38,"label":"practitioner_name"}]} +{"text":"Can I make an appointment for ? academic advising ?","intent":"schedule","entities":[{"start":32,"end":49,"label":"appointment_type"}]} +{"text":"Please move my booking #079183.","intent":"reschedule","entities":[{"start":23,"end":30,"label":"appointment_id"}]} +{"text":"Book an appointment for me.","intent":"schedule","entities":[]} +{"text":"I will not be attending my meeting, ID #470394, please cancel.","intent":"cancel","entities":[{"start":39,"end":46,"label":"appointment_id"}]} +{"text":"Cancel #419544 ","intent":"cancel","entities":[{"start":7,"end":14,"label":"appointment_id"}]} +{"text":"hi","intent":"greeting","entities":[]} +{"text":"New class registration → Green .","intent":"schedule","entities":[{"start":4,"end":22,"label":"appointment_type"},{"start":25,"end":30,"label":"practitioner_name"}]} +{"text":"that's a hard no from me","intent":"negative_reply","entities":[]} +{"text":"Find availability for a client with Prof. Dubois .","intent":"query_avail","entities":[{"start":36,"end":48,"label":"practitioner_name"}]} +{"text":"thanks for your cooperation","intent":"positive_reply","entities":[]} +{"text":"use Prof. Garcia 's calendar for a colloquio di orientamento .","intent":"query_avail","entities":[{"start":4,"end":16,"label":"practitioner_name"},{"start":35,"end":60,"label":"appointment_type"}]} +{"text":"Need to book another slot.","intent":"schedule","entities":[]} +{"text":"Cancel the request with Dott. Luca Morelli regarding my thesis, ID #795492 .","intent":"cancel","entities":[{"start":24,"end":42,"label":"practitioner_name"},{"start":67,"end":74,"label":"appointment_id"}]} +{"text":"you have been a big help, thank you so much","intent":"positive_reply","entities":[]} +{"text":"List the available times.","intent":"query_avail","entities":[]} +{"text":"I need to cancel my curriculum planning , appointment ID #040952 .","intent":"cancel","entities":[{"start":20,"end":39,"label":"appointment_type"},{"start":57,"end":64,"label":"appointment_id"}]} +{"text":"The project meeting address Dott.ssa Elena Longo , ID #085342 , should be cancelled.","intent":"cancel","entities":[{"start":28,"end":48,"label":"practitioner_name"},{"start":54,"end":61,"label":"appointment_id"}]} +{"text":"publicly available physical therapy session .","intent":"query_avail","entities":[{"start":19,"end":43,"label":"appointment_type"}]} +{"text":"Schedule a study group meeting \\ Dr. Wilson .","intent":"schedule","entities":[{"start":11,"end":30,"label":"appointment_type"},{"start":33,"end":43,"label":"practitioner_name"}]} +{"text":"Change booking #568999 , update financial aid consultation with Hill .","intent":"reschedule","entities":[{"start":15,"end":22,"label":"appointment_id"},{"start":32,"end":58,"label":"appointment_type"},{"start":64,"end":68,"label":"practitioner_name"}]} +{"text":"When declaring Mr. Barnes free.","intent":"query_avail","entities":[{"start":15,"end":25,"label":"practitioner_name"}]} +{"text":"yes, that's it","intent":"positive_reply","entities":[]} +{"text":"List the available formats","intent":"query_avail","entities":[]} +{"text":"Due to unforeseen circumstances, applicants have to cancel appointment #000317 .","intent":"cancel","entities":[{"start":71,"end":78,"label":"appointment_id"}]} +{"text":"I need to find a different time for another meeting.","intent":"reschedule","entities":[]} +{"text":"List all files client call times.","intent":"query_avail","entities":[{"start":15,"end":26,"label":"appointment_type"}]} +{"text":"restart my newspaper delivery for monday","intent":"oos","entities":[]} +{"text":"D'Angelo's calendar for vehicle inspections.","intent":"query_avail","entities":[{"start":0,"end":8,"label":"practitioner_name"},{"start":24,"end":42,"label":"appointment_type"}]} +{"text":"Testa 's open slots for a project update ;","intent":"query_avail","entities":[{"start":0,"end":5,"label":"practitioner_name"},{"start":26,"end":40,"label":"appointment_type"}]} +{"text":"Find an open slot underneath me.","intent":"schedule","entities":[]} +{"text":"A conflict has come up for appointment #241353 ","intent":"reschedule","entities":[{"start":39,"end":46,"label":"appointment_id"}]} +{"text":"Change of plans, I need immediate reschedule with Thompson .","intent":"reschedule","entities":[{"start":50,"end":58,"label":"practitioner_name"}]} +{"text":"Show Dr. Ferri the openings for this Friday.","intent":"query_avail","entities":[{"start":5,"end":14,"label":"practitioner_name"}]} +{"text":"Reschedule my appointment, ?","intent":"reschedule","entities":[]} +{"text":"Please cancel my reservation.","intent":"cancel","entities":[]} +{"text":"it was great to talk to you","intent":"bye","entities":[]} +{"text":"replace me with Richardson .","intent":"schedule","entities":[{"start":16,"end":26,"label":"practitioner_name"}]} +{"text":"we need to reschedule my appointment, the ID is #623599 .","intent":"reschedule","entities":[{"start":48,"end":55,"label":"appointment_id"}]} +{"text":"I need consult advising session with my advisor, Mrs. Evans .","intent":"schedule","entities":[{"start":15,"end":31,"label":"appointment_type"},{"start":49,"end":59,"label":"practitioner_name"}]} +{"text":"Next tv slot.","intent":"query_avail","entities":[]} +{"text":"The meeting with Fiore (ref #798223) is no longer required.","intent":"cancel","entities":[{"start":17,"end":22,"label":"practitioner_name"},{"start":28,"end":35,"label":"appointment_id"}]} +{"text":"no, that is not right","intent":"negative_reply","entities":[]} +{"text":"Mr. Peterson 's availability became a lezione privata this week.","intent":"query_avail","entities":[{"start":0,"end":12,"label":"practitioner_name"},{"start":38,"end":53,"label":"appointment_type"}]} +{"text":"Display the schedule of Prof. Parker and a academic integrity hearing .","intent":"query_avail","entities":[{"start":24,"end":36,"label":"practitioner_name"},{"start":43,"end":69,"label":"appointment_type"}]} +{"text":"I need to schedule my thesis defense file Morgan .","intent":"schedule","entities":[{"start":42,"end":48,"label":"practitioner_name"}]} +{"text":"List all available appointment times.","intent":"query_avail","entities":[]} +{"text":"remember my one-on-one with Ms. Mitchell .","intent":"reschedule","entities":[{"start":28,"end":40,"label":"practitioner_name"}]} +{"text":"Can I get a different time for a meeting with Green ?","intent":"reschedule","entities":[{"start":46,"end":51,"label":"practitioner_name"}]} +{"text":"peace","intent":"bye","entities":[]} +{"text":"can you tell me who sells dixie paper plates","intent":"oos","entities":[]} +{"text":"Schedule for a ricevimento studenti with Cook.","intent":"query_avail","entities":[{"start":15,"end":35,"label":"appointment_type"},{"start":41,"end":45,"label":"practitioner_name"}]} +{"text":"answer the phone","intent":"oos","entities":[]} +{"text":"I need to cancel my appointment.","intent":"cancel","entities":[]} +{"text":"Prof. Watson open slots for a internship interview .","intent":"query_avail","entities":[{"start":0,"end":12,"label":"practitioner_name"},{"start":31,"end":51,"label":"appointment_type"}]} +{"text":"The appointment with Nowak is no longer required","intent":"cancel","entities":[{"start":21,"end":26,"label":"practitioner_name"}]} +{"text":"Find availability for a consultation with Dr. Ward.","intent":"query_avail","entities":[{"start":42,"end":50,"label":"practitioner_name"}]} +{"text":"how do i get rid of blocked nose at home","intent":"oos","entities":[]} +{"text":"When is Professor Bernardi free.","intent":"query_avail","entities":[{"start":8,"end":26,"label":"practitioner_name"}]} +{"text":"i don't think so","intent":"negative_reply","entities":[]} +{"text":"I need to change my lab coat","intent":"reschedule","entities":[]} +{"text":"Display the schedule of Stewart for a academic probation meeting.","intent":"query_avail","entities":[{"start":24,"end":31,"label":"practitioner_name"},{"start":38,"end":64,"label":"appointment_type"}]} +{"text":"yes, you got it","intent":"positive_reply","entities":[]} +{"text":"My guest lecture with Mr. Barnes needs not be cancelled.","intent":"cancel","entities":[{"start":3,"end":16,"label":"appointment_type"},{"start":22,"end":32,"label":"practitioner_name"}]} +{"text":"I want to substitute Mr. Rogers for a peer tutoring .","intent":"schedule","entities":[{"start":21,"end":31,"label":"practitioner_name"},{"start":38,"end":51,"label":"appointment_type"}]} +{"text":"The meeting #894207 is ;","intent":"cancel","entities":[{"start":12,"end":19,"label":"appointment_id"}]} +{"text":"I'm unable to make it to my client call with Dr. Williams ; so please cancel it. It's ID #682160 .","intent":"cancel","entities":[{"start":28,"end":39,"label":"appointment_type"},{"start":45,"end":57,"label":"practitioner_name"},{"start":89,"end":96,"label":"appointment_id"}]} +{"text":"Could i find a new time for my Ph.D. defense ?","intent":"reschedule","entities":[{"start":31,"end":44,"label":"appointment_type"}]} +{"text":"Move my #712229 from Tuesday through Thursday.","intent":"reschedule","entities":[{"start":8,"end":15,"label":"appointment_id"}]} +{"text":"I want to cancel an engagement","intent":"cancel","entities":[]} +{"text":"I have to remember my #158644 appointment.","intent":"reschedule","entities":[{"start":22,"end":29,"label":"appointment_id"}]} +{"text":"you can't make the meeting with Dr. Sofia Colombo , so I'm cancelling.","intent":"cancel","entities":[{"start":32,"end":49,"label":"practitioner_name"}]} +{"text":"I need some time with Martin ?","intent":"schedule","entities":[{"start":22,"end":28,"label":"practitioner_name"}]} +{"text":"I have a conflict with my current appointment time.","intent":"reschedule","entities":[]} +{"text":"Set a vector with Rossetti .","intent":"schedule","entities":[{"start":18,"end":26,"label":"practitioner_name"}]} +{"text":"we have to cancel.","intent":"cancel","entities":[]} +{"text":"List all openings for listing curriculum planning with Dr. Giordano .","intent":"query_avail","entities":[{"start":30,"end":49,"label":"appointment_type"},{"start":55,"end":67,"label":"practitioner_name"}]} +{"text":"I need to talk to Testa via a parent-teacher conference .","intent":"schedule","entities":[{"start":18,"end":23,"label":"practitioner_name"},{"start":30,"end":55,"label":"appointment_type"}]} +{"text":"it was enjoyable talking with you","intent":"bye","entities":[]} +{"text":"Move booking #861346 to next week.","intent":"reschedule","entities":[{"start":13,"end":20,"label":"appointment_id"}]} +{"text":"Can I get a different time for my meeting with Rizzo?","intent":"reschedule","entities":[{"start":47,"end":52,"label":"practitioner_name"}]} +{"text":"I can't cancel my internship interview on Tuesday.","intent":"reschedule","entities":[{"start":18,"end":38,"label":"appointment_type"}]} +{"text":"I'd like the cancel.","intent":"cancel","entities":[]} +{"text":"I sensed a scheduling conflict.","intent":"reschedule","entities":[]} +{"text":"what's my horoscope today","intent":"oos","entities":[]} +{"text":"do something with Dott.ssa Valentina Bellini .","intent":"schedule","entities":[{"start":18,"end":44,"label":"practitioner_name"}]} +{"text":"which stocks have lost the least today","intent":"oos","entities":[]} +{"text":"I need ta postpone my session.","intent":"reschedule","entities":[]} +{"text":"are you feeling okay","intent":"greeting","entities":[]} +{"text":"Cancel #077573 }","intent":"cancel","entities":[{"start":7,"end":14,"label":"appointment_id"}]} +{"text":"I have appointment #575048 with Pellegrini which needs rescheduling.","intent":"reschedule","entities":[{"start":19,"end":26,"label":"appointment_id"},{"start":32,"end":42,"label":"practitioner_name"}]} +{"text":"I need to push my shoulders back.","intent":"reschedule","entities":[]} +{"text":"Availability of Messina for a pre-defense meeting ;","intent":"query_avail","entities":[{"start":16,"end":23,"label":"practitioner_name"},{"start":30,"end":49,"label":"appointment_type"}]} +{"text":"Delete upcoming internship check-in .","intent":"cancel","entities":[{"start":17,"end":36,"label":"appointment_type"}]} +{"text":"no, that is incorrect","intent":"negative_reply","entities":[]} +{"text":"Cancel my query with Santini .","intent":"cancel","entities":[{"start":21,"end":28,"label":"practitioner_name"}]} +{"text":"I decided to reschedule something.","intent":"reschedule","entities":[]} +{"text":"I am looking for my financial advising and need to move it.","intent":"reschedule","entities":[{"start":20,"end":38,"label":"appointment_type"}]} +{"text":"i had fun speaking with you","intent":"bye","entities":[]} +{"text":"I have to arrange a guest lecture .","intent":"schedule","entities":[{"start":20,"end":33,"label":"appointment_type"}]} +{"text":"if plans have changed, can I move my esame orale ?","intent":"reschedule","entities":[{"start":37,"end":48,"label":"appointment_type"}]} +{"text":"the statement is false","intent":"negative_reply","entities":[]} +{"text":"A conflict has come up for appointment #255888.","intent":"reschedule","entities":[{"start":39,"end":46,"label":"appointment_id"}]} +{"text":"Cancel my office hours appointment : Dr. Ferrara .","intent":"cancel","entities":[{"start":37,"end":48,"label":"practitioner_name"}]} +{"text":"how does a optical mouse work","intent":"oos","entities":[]} +{"text":"Please use cancellation for #132841 .","intent":"cancel","entities":[{"start":28,"end":35,"label":"appointment_id"}]} +{"text":"Change an appointment.","intent":"reschedule","entities":[]} +{"text":"Free times next week.","intent":"query_avail","entities":[]} +{"text":"bye bye then","intent":"bye","entities":[]} +{"text":"nope not it","intent":"negative_reply","entities":[]} +{"text":"I have please reschedule my driving lesson .","intent":"reschedule","entities":[{"start":28,"end":42,"label":"appointment_type"}]} +{"text":"Can we find an alternative slot _ #575048 ?","intent":"reschedule","entities":[{"start":34,"end":41,"label":"appointment_id"}]} +{"text":"Something came up, I decided to change my appointment.","intent":"reschedule","entities":[]} +{"text":"My schedule has decided I need to reschedule.","intent":"reschedule","entities":[]} +{"text":"I'd like a book a consultation.","intent":"schedule","entities":[]} +{"text":"its a for sure true","intent":"positive_reply","entities":[]} +{"text":"no, don't do that","intent":"negative_reply","entities":[]} +{"text":"it is time to say goodbye","intent":"bye","entities":[]} +{"text":"I need to schedule my thesis papers with Professor Bruno .","intent":"schedule","entities":[{"start":41,"end":56,"label":"practitioner_name"}]} +{"text":"Display Dott. Matteo Palmieri 's free !","intent":"query_avail","entities":[{"start":8,"end":29,"label":"practitioner_name"}]} +{"text":"when's the next mardi gras going to be","intent":"oos","entities":[]} +{"text":"I would like to cancel my grade review with Moore if The ID is #124270 .","intent":"cancel","entities":[{"start":26,"end":38,"label":"appointment_type"},{"start":44,"end":49,"label":"practitioner_name"},{"start":63,"end":70,"label":"appointment_id"}]} +{"text":"write a major declaration meeting with Dott.ssa Valentina Bellini .","intent":"schedule","entities":[{"start":8,"end":33,"label":"appointment_type"},{"start":39,"end":65,"label":"practitioner_name"}]} +{"text":"List all openings for a registration appointment.","intent":"query_avail","entities":[{"start":24,"end":48,"label":"appointment_type"}]} +{"text":"suppose we move my financial aid consultation with Dr. King ? It's appointment #675180 .","intent":"reschedule","entities":[{"start":19,"end":45,"label":"appointment_type"},{"start":51,"end":59,"label":"practitioner_name"},{"start":79,"end":86,"label":"appointment_id"}]} +{"text":"I would like to make my appointment, ID #077272 .","intent":"reschedule","entities":[{"start":40,"end":47,"label":"appointment_id"}]} +{"text":"Can we reschedule the scholarship interview I have with Professor Vitali }","intent":"reschedule","entities":[{"start":22,"end":43,"label":"appointment_type"},{"start":56,"end":72,"label":"practitioner_name"}]} +{"text":"Need to book out grade review soon.","intent":"schedule","entities":[{"start":17,"end":29,"label":"appointment_type"}]} +{"text":"can you give me the standard tuning notes","intent":"oos","entities":[]} +{"text":"Shift my meeting with Professor Bernardi to 3pm.","intent":"reschedule","entities":[{"start":22,"end":40,"label":"practitioner_name"}]} +{"text":"Please confirm the cancellation of booking #519932, my letter of recommendation request.","intent":"cancel","entities":[{"start":43,"end":50,"label":"appointment_id"},{"start":55,"end":87,"label":"appointment_type"}]} +{"text":"wait for a quarterly review tomorrow.","intent":"query_avail","entities":[{"start":11,"end":27,"label":"appointment_type"}]} +{"text":"I'm unable to make it to my x-ray with Dr. Ferri , so please cancel it. It's my #255888 .","intent":"cancel","entities":[{"start":28,"end":33,"label":"appointment_type"},{"start":39,"end":48,"label":"practitioner_name"},{"start":80,"end":87,"label":"appointment_id"}]} +{"text":"how have you been","intent":"greeting","entities":[]} +{"text":"Show three times.","intent":"query_avail","entities":[]} +{"text":"Please cancel my appointment, ref #729731.","intent":"cancel","entities":[{"start":34,"end":41,"label":"appointment_id"}]} +{"text":"Move my #843183 from Tuesday to Thursday.","intent":"reschedule","entities":[{"start":8,"end":15,"label":"appointment_id"}]} +{"text":"i will say yes as my response","intent":"positive_reply","entities":[]} +{"text":"Find new entries for #886239 .","intent":"reschedule","entities":[{"start":21,"end":28,"label":"appointment_id"}]} +{"text":"Book a ricevimento studenti with Dott.ssa Valentina Bellini as soon is possible.","intent":"schedule","entities":[{"start":7,"end":27,"label":"appointment_type"},{"start":33,"end":59,"label":"practitioner_name"}]} +{"text":"good bye then","intent":"bye","entities":[]} +{"text":"Find options for a consultation with Conte .","intent":"query_avail","entities":[{"start":37,"end":42,"label":"practitioner_name"}]} +{"text":"good morning, ai","intent":"greeting","entities":[]} +{"text":"find schematics for ikea desk assembly","intent":"oos","entities":[]} +{"text":" help me move my research update with Dr. Martinez .","intent":"reschedule","entities":[{"start":17,"end":32,"label":"appointment_type"},{"start":38,"end":50,"label":"practitioner_name"}]} +{"text":"what's the most effective bug repellant","intent":"oos","entities":[]} +{"text":"I need to cancel the appointment with confirmation notice #169618 .","intent":"cancel","entities":[{"start":58,"end":65,"label":"appointment_id"}]} +{"text":"Dr. Peterson curriculum planning |","intent":"schedule","entities":[{"start":0,"end":12,"label":"practitioner_name"},{"start":13,"end":32,"label":"appointment_type"}]} +{"text":"Free !","intent":"query_avail","entities":[]} +{"text":"I need to set up another quick chat.","intent":"schedule","entities":[]} +{"text":"List of slots for Conti .","intent":"query_avail","entities":[{"start":18,"end":23,"label":"practitioner_name"}]} +{"text":"define a blood test for me.","intent":"schedule","entities":[{"start":9,"end":19,"label":"appointment_type"}]} +{"text":"Free time inquiry requires a seminar presentation .","intent":"query_avail","entities":[{"start":29,"end":49,"label":"appointment_type"}]} +{"text":"hey there!","intent":"greeting","entities":[]} +{"text":"you did a good job thank you","intent":"positive_reply","entities":[]} +{"text":"Let's move whenever academic probation meeting .","intent":"reschedule","entities":[{"start":20,"end":46,"label":"appointment_type"}]} +{"text":"\\ Prof. Müller .","intent":"schedule","entities":[{"start":2,"end":14,"label":"practitioner_name"}]} +{"text":"Get a postdoctoral interview with James .","intent":"schedule","entities":[{"start":7,"end":29,"label":"appointment_type"},{"start":35,"end":40,"label":"practitioner_name"}]} +{"text":"i think not","intent":"negative_reply","entities":[]} +{"text":"Delete file annual physical with Prof. Murphy , booking ref #600778 .","intent":"cancel","entities":[{"start":12,"end":27,"label":"appointment_type"},{"start":33,"end":45,"label":"practitioner_name"},{"start":60,"end":67,"label":"appointment_id"}]} +{"text":"thanks for helping out","intent":"positive_reply","entities":[]} +{"text":"python is Dr. Giordano free.","intent":"query_avail","entities":[{"start":10,"end":22,"label":"practitioner_name"}]} +{"text":"Book pet checkup.","intent":"schedule","entities":[{"start":5,"end":16,"label":"appointment_type"}]} +{"text":"Free times for a final project review with parameter Hill .","intent":"query_avail","entities":[{"start":17,"end":37,"label":"appointment_type"},{"start":53,"end":57,"label":"practitioner_name"}]} +{"text":"List open slots for Dr. Giordano.","intent":"query_avail","entities":[{"start":20,"end":32,"label":"practitioner_name"}]} +{"text":"Book me _ Greco .","intent":"schedule","entities":[{"start":10,"end":15,"label":"practitioner_name"}]} +{"text":"Book a dental cleaning with Miller, please.","intent":"schedule","entities":[{"start":7,"end":22,"label":"appointment_type"},{"start":28,"end":34,"label":"practitioner_name"}]} +{"text":"Please help you move my quarterly review with Harris .","intent":"reschedule","entities":[{"start":24,"end":40,"label":"appointment_type"},{"start":46,"end":52,"label":"practitioner_name"}]} +{"text":"I decided to cancel my booking, number #680889 .","intent":"cancel","entities":[{"start":39,"end":46,"label":"appointment_id"}]} +{"text":"update times for Santini next week.","intent":"query_avail","entities":[{"start":17,"end":24,"label":"practitioner_name"}]} +{"text":"Please confirm cancellation for #519932 ;","intent":"cancel","entities":[{"start":32,"end":39,"label":"appointment_id"}]} +{"text":"when available academic probation meeting times.","intent":"query_avail","entities":[{"start":15,"end":41,"label":"appointment_type"}]} +{"text":"Turner's calendar.","intent":"query_avail","entities":[{"start":0,"end":6,"label":"practitioner_name"}]} +{"text":"adios ai","intent":"bye","entities":[]} +{"text":"Time for a mentorship meeting with Costa.","intent":"schedule","entities":[{"start":11,"end":29,"label":"appointment_type"},{"start":35,"end":40,"label":"practitioner_name"}]} +{"text":"I'd like to choose a time slot.","intent":"schedule","entities":[]} +{"text":"no way","intent":"negative_reply","entities":[]} +{"text":"how's it hanging","intent":"greeting","entities":[]} +{"text":"Change my peer tutoring time.","intent":"reschedule","entities":[{"start":10,"end":23,"label":"appointment_type"}]} +{"text":"I need this appointment with Professor Vitali .","intent":"schedule","entities":[{"start":29,"end":45,"label":"practitioner_name"}]} +{"text":"Availability for the oral exam.","intent":"query_avail","entities":[]} +{"text":"I need to cancel my defense rehearsal.","intent":"cancel","entities":[]} +{"text":"Help me book a progress review ;","intent":"schedule","entities":[{"start":15,"end":30,"label":"appointment_type"}]} +{"text":"final presentation with Dr. Ward ","intent":"schedule","entities":[{"start":0,"end":18,"label":"appointment_type"},{"start":24,"end":32,"label":"practitioner_name"}]} +{"text":"List health screening ","intent":"query_avail","entities":[{"start":5,"end":21,"label":"appointment_type"}]} +{"text":"adios!","intent":"bye","entities":[]} +{"text":"Dr. Bailey's next available course planning.","intent":"query_avail","entities":[{"start":0,"end":10,"label":"practitioner_name"},{"start":28,"end":43,"label":"appointment_type"}]} +{"text":"I'd like to set a meeting time.","intent":"schedule","entities":[]} +{"text":"how are you","intent":"greeting","entities":[]} +{"text":"do I schedule a meeting?","intent":"schedule","entities":[]} +{"text":"Show schedule for this Friday.","intent":"query_avail","entities":[]} +{"text":"Let's schedule a call with Russo.","intent":"schedule","entities":[{"start":27,"end":32,"label":"practitioner_name"}]} +{"text":"thank you very much for the answer","intent":"positive_reply","entities":[]} +{"text":"Openings for Prof. Campbell tomorrow.","intent":"query_avail","entities":[{"start":13,"end":27,"label":"practitioner_name"}]} +{"text":"Dr. Peterson 's regular appointment slots.","intent":"query_avail","entities":[{"start":0,"end":12,"label":"practitioner_name"}]} +{"text":"I'd like to book a writing center appointment for next ?","intent":"schedule","entities":[{"start":19,"end":45,"label":"appointment_type"}]} +{"text":"I want to change my appointment with Professor Cattaneo.","intent":"reschedule","entities":[{"start":37,"end":55,"label":"practitioner_name"}]} +{"text":"yeah that's what i want","intent":"positive_reply","entities":[]} +{"text":"Delete my booking.","intent":"cancel","entities":[]} +{"text":"My appointment, #355543 , had to be cancelled.","intent":"cancel","entities":[{"start":16,"end":23,"label":"appointment_id"}]} +{"text":"I have an peer advising with Professor Schmidt that I need to cancel.","intent":"cancel","entities":[{"start":10,"end":23,"label":"appointment_type"},{"start":29,"end":46,"label":"practitioner_name"}]} +{"text":"Availability of Dr. Davide Monti for a client","intent":"query_avail","entities":[{"start":16,"end":32,"label":"practitioner_name"}]} +{"text":"I need to set up a phone chat.","intent":"schedule","entities":[]} +{"text":"Check for ;","intent":"query_avail","entities":[]} +{"text":"Change the time for meeting #915298 ;","intent":"reschedule","entities":[{"start":28,"end":35,"label":"appointment_id"}]} +{"text":"show me how many community centers are located within 5 miles of my location","intent":"oos","entities":[]} +{"text":"I'd like to change my blood test with Basile to another day.","intent":"reschedule","entities":[{"start":22,"end":32,"label":"appointment_type"},{"start":38,"end":44,"label":"practitioner_name"}]} +{"text":"users need an appointment with Roberts for a seminar presentation .","intent":"schedule","entities":[{"start":31,"end":38,"label":"practitioner_name"},{"start":45,"end":65,"label":"appointment_type"}]} +{"text":"defines a tenure meeting .","intent":"schedule","entities":[{"start":10,"end":24,"label":"appointment_type"}]} +{"text":"I must speak with Professor Marino.","intent":"schedule","entities":[{"start":18,"end":34,"label":"practitioner_name"}]} +{"text":"New strategy meeting with Messina }","intent":"schedule","entities":[{"start":4,"end":20,"label":"appointment_type"},{"start":26,"end":33,"label":"practitioner_name"}]} +{"text":"I need to change the time for my defense rehearsal with Testa .","intent":"reschedule","entities":[{"start":56,"end":61,"label":"practitioner_name"}]} +{"text":"Set up emergency meeting.","intent":"schedule","entities":[]} +{"text":"Cancel my scheduled time.","intent":"cancel","entities":[]} +{"text":"that would be \"no","intent":"negative_reply","entities":[]} +{"text":"I need to cancel something.","intent":"cancel","entities":[]} +{"text":"List includes openings.","intent":"query_avail","entities":[]} +{"text":"List all free times for Evans.","intent":"query_avail","entities":[{"start":24,"end":29,"label":"practitioner_name"}]} +{"text":"Book a meeting : Grassi .","intent":"schedule","entities":[{"start":17,"end":23,"label":"practitioner_name"}]} +{"text":"Can we find another time?","intent":"reschedule","entities":[]} +{"text":"List all available appointment holders","intent":"query_avail","entities":[]} +{"text":"Cancel all my appointments with Prof. Bennett.","intent":"cancel","entities":[{"start":32,"end":45,"label":"practitioner_name"}]} +{"text":"that is erroneous","intent":"negative_reply","entities":[]} +{"text":"I'd like to change my Ph.D. defense with Professor Bernardi on another day.","intent":"reschedule","entities":[{"start":22,"end":35,"label":"appointment_type"},{"start":41,"end":59,"label":"practitioner_name"}]} +{"text":"farewell","intent":"bye","entities":[]} +{"text":"good night","intent":"bye","entities":[]} +{"text":"what is the cashback rate for my credit card","intent":"oos","entities":[]} +{"text":"I'm sorry, but I want to cancel my appointment.","intent":"cancel","entities":[]} +{"text":"Let's book a legal consultation with Ricci for this Friday.","intent":"schedule","entities":[{"start":13,"end":31,"label":"appointment_type"},{"start":37,"end":42,"label":"practitioner_name"}]} +{"text":"what stores are in the local mall","intent":"oos","entities":[]} +{"text":"Please create a colloquio di orientamento .","intent":"schedule","entities":[{"start":16,"end":41,"label":"appointment_type"}]} +{"text":"Time for a meeting.","intent":"schedule","entities":[]} +{"text":"I'd like to listen to Dr. Santoro .","intent":"schedule","entities":[{"start":22,"end":33,"label":"practitioner_name"}]} +{"text":"typical office hours.","intent":"schedule","entities":[]} +{"text":"I need to cancel my meeting with Prof. Murphy on monday","intent":"cancel","entities":[{"start":33,"end":45,"label":"practitioner_name"}]} +{"text":"Schedule something with Conti.","intent":"schedule","entities":[{"start":24,"end":29,"label":"practitioner_name"}]} +{"text":"I am cancelling my booking with the ID #839944.","intent":"cancel","entities":[{"start":39,"end":46,"label":"appointment_id"}]} +{"text":"I'm unable to attend class capstone meeting .","intent":"reschedule","entities":[{"start":27,"end":43,"label":"appointment_type"}]} +{"text":"how are you today","intent":"greeting","entities":[]} +{"text":"Please delete appointment #556800 , my practicum supervision with address Professor Bruno .","intent":"cancel","entities":[{"start":26,"end":33,"label":"appointment_id"},{"start":39,"end":60,"label":"appointment_type"},{"start":74,"end":89,"label":"practitioner_name"}]} +{"text":"registered for Coppola on July 22nd.","intent":"query_avail","entities":[{"start":15,"end":22,"label":"practitioner_name"}]} +{"text":"Remove the career counseling with Galli in my calendar.","intent":"cancel","entities":[{"start":11,"end":28,"label":"appointment_type"},{"start":34,"end":39,"label":"practitioner_name"}]} +{"text":"Reschedule my consultation , appointment ID #894207 }","intent":"reschedule","entities":[{"start":14,"end":26,"label":"appointment_type"},{"start":44,"end":51,"label":"appointment_id"}]} +{"text":"Prof. Bennett 's free times |","intent":"query_avail","entities":[{"start":0,"end":13,"label":"practitioner_name"}]} +{"text":"I will not be attending a meeting, ID #543516 , please cancel.","intent":"cancel","entities":[{"start":38,"end":45,"label":"appointment_id"}]} +{"text":"Delete id #538465 from the system.","intent":"cancel","entities":[{"start":10,"end":17,"label":"appointment_id"}]} +{"text":"Open appointment ;","intent":"query_avail","entities":[]} +{"text":"hey, what's up","intent":"greeting","entities":[]} +{"text":"a pleasure as always to speak with you, bye","intent":"bye","entities":[]} +{"text":"Please cancel my appointment for appointments consultation .","intent":"cancel","entities":[{"start":46,"end":58,"label":"appointment_type"}]} +{"text":"you like to reschedule my tenure meeting .","intent":"reschedule","entities":[{"start":26,"end":40,"label":"appointment_type"}]} +{"text":"Help me book a campus tour with Evans.","intent":"schedule","entities":[{"start":15,"end":26,"label":"appointment_type"},{"start":32,"end":37,"label":"practitioner_name"}]} +{"text":"Availability changes this week.","intent":"query_avail","entities":[]} +{"text":"we need to meet with Gray .","intent":"schedule","entities":[{"start":21,"end":25,"label":"practitioner_name"}]} +{"text":"Reschedule my appointment with ID #513514.","intent":"reschedule","entities":[{"start":34,"end":41,"label":"appointment_id"}]} +{"text":"Find free time slots for appointment graduate school consultation .","intent":"query_avail","entities":[{"start":37,"end":65,"label":"appointment_type"}]} +{"text":"I can't make my research seminar on Tuesday.","intent":"reschedule","entities":[{"start":16,"end":32,"label":"appointment_type"}]} +{"text":"Openings for doctoral thesis discussion.","intent":"query_avail","entities":[]} +{"text":"would want a lab session with Dr. Santoro .","intent":"schedule","entities":[{"start":13,"end":24,"label":"appointment_type"},{"start":30,"end":41,"label":"practitioner_name"}]} +{"text":"I need to reschedule this session with Richardson .","intent":"reschedule","entities":[{"start":39,"end":49,"label":"practitioner_name"}]} +{"text":"I need to cancel my haircut with Prof. Watson (ID: #821730).","intent":"cancel","entities":[{"start":20,"end":27,"label":"appointment_type"},{"start":33,"end":45,"label":"practitioner_name"},{"start":51,"end":58,"label":"appointment_id"}]} +{"text":"how you are","intent":"greeting","entities":[]} +{"text":"I need to find my slot for my meeting with Prof. Watson .","intent":"reschedule","entities":[{"start":43,"end":55,"label":"practitioner_name"}]} +{"text":"Can you schedule a dissertation defense for me?","intent":"schedule","entities":[{"start":19,"end":39,"label":"appointment_type"}]} +{"text":"Delete my curriculum planning with Greco, booking ref #538465.","intent":"cancel","entities":[{"start":10,"end":29,"label":"appointment_type"},{"start":35,"end":40,"label":"practitioner_name"},{"start":54,"end":61,"label":"appointment_id"}]} +{"text":"I want to cancel my appointment with Prof. Bennett.","intent":"cancel","entities":[{"start":37,"end":50,"label":"practitioner_name"}]} +{"text":"Availability parameter for Dr. Angela White .","intent":"query_avail","entities":[{"start":27,"end":43,"label":"practitioner_name"}]} +{"text":"Find only a time for a eye exam with Professor Schmidt .","intent":"schedule","entities":[{"start":23,"end":31,"label":"appointment_type"},{"start":37,"end":54,"label":"practitioner_name"}]} +{"text":"I would like to reschedule my honors thesis meeting with Richardson. The ID is #564270.","intent":"reschedule","entities":[{"start":30,"end":51,"label":"appointment_type"},{"start":57,"end":67,"label":"practitioner_name"},{"start":79,"end":86,"label":"appointment_id"}]} +{"text":"Show Dr. Edwards file availability.","intent":"query_avail","entities":[{"start":5,"end":16,"label":"practitioner_name"}]} +{"text":"My plans have changed, shall I move my equipment training ?","intent":"reschedule","entities":[{"start":39,"end":57,"label":"appointment_type"}]} +{"text":"Availability for curriculum committee meetings this week.","intent":"query_avail","entities":[{"start":17,"end":45,"label":"appointment_type"}]} +{"text":"List times to end with Dr. Giovanni Galli .","intent":"query_avail","entities":[{"start":23,"end":41,"label":"practitioner_name"}]} +{"text":"I need to find another time for my health screening with Mr. Rodriguez ","intent":"reschedule","entities":[{"start":35,"end":51,"label":"appointment_type"},{"start":57,"end":70,"label":"practitioner_name"}]} +{"text":"Open appointment list","intent":"query_avail","entities":[]} +{"text":"yep, that's true","intent":"positive_reply","entities":[]} +{"text":"I'd like to cancel my reservation list Turner .","intent":"cancel","entities":[{"start":39,"end":45,"label":"practitioner_name"}]} +{"text":"Openings with Dott.ssa Chiara Negri ;","intent":"query_avail","entities":[{"start":14,"end":35,"label":"practitioner_name"}]} +{"text":"it was nice to speak with you","intent":"bye","entities":[]} +{"text":"List open for a guest lecture with Esposito .","intent":"query_avail","entities":[{"start":17,"end":30,"label":"appointment_type"},{"start":36,"end":44,"label":"practitioner_name"}]} +{"text":"• the advising session.","intent":"cancel","entities":[]} +{"text":"Let's find an alternative time for my assignment with Dr. Angela White .","intent":"reschedule","entities":[{"start":54,"end":70,"label":"practitioner_name"}]} +{"text":"I need just see Dott.ssa Chiara Negri about my grades.","intent":"schedule","entities":[{"start":16,"end":37,"label":"practitioner_name"}]} +{"text":"Regarding appointment #531844, I need to change it.","intent":"reschedule","entities":[{"start":22,"end":29,"label":"appointment_id"}]} +{"text":"My schedule has changed, I want to reschedule.","intent":"reschedule","entities":[]} +{"text":"that's not right, so no","intent":"negative_reply","entities":[]} +{"text":"i want to know how you are doing","intent":"greeting","entities":[]} +{"text":"registration appointment ","intent":"schedule","entities":[{"start":0,"end":24,"label":"appointment_type"}]} +{"text":"My haircut with Mancini needs to be cancelled.","intent":"cancel","entities":[{"start":3,"end":10,"label":"appointment_type"},{"start":16,"end":23,"label":"practitioner_name"}]} +{"text":"it was nice to catch up with you","intent":"bye","entities":[]} +{"text":"I'd like to book Sanders into a research consultation .","intent":"schedule","entities":[{"start":17,"end":24,"label":"practitioner_name"},{"start":32,"end":53,"label":"appointment_type"}]} +{"text":"I'd like to see Professor Bruno at a different time.","intent":"reschedule","entities":[{"start":16,"end":31,"label":"practitioner_name"}]} +{"text":"yes, that's accurate","intent":"positive_reply","entities":[]} +{"text":"Display free times for a faculty candidate interview ;","intent":"query_avail","entities":[{"start":25,"end":52,"label":"appointment_type"}]} +{"text":"set free this afternoon.","intent":"query_avail","entities":[]} +{"text":"Please update my grade review .","intent":"cancel","entities":[{"start":17,"end":29,"label":"appointment_type"}]} +{"text":"Move my Ph.D. defense with Lombardi each Friday.","intent":"reschedule","entities":[{"start":8,"end":21,"label":"appointment_type"},{"start":27,"end":35,"label":"practitioner_name"}]} +{"text":"Please schedule a dentist appointment for me.","intent":"schedule","entities":[]} +{"text":"Show extra free time.","intent":"query_avail","entities":[]} +{"text":"Available files for a dissertation defense .","intent":"query_avail","entities":[{"start":22,"end":42,"label":"appointment_type"}]} +{"text":"we'll talk later ai","intent":"bye","entities":[]} +{"text":"I need please cancel an existing booking.","intent":"cancel","entities":[]} +{"text":"Reschedule my appointment ID #569400 .","intent":"reschedule","entities":[{"start":30,"end":37,"label":"appointment_id"}]} +{"text":"I'd like to schedule a project kickoff.","intent":"schedule","entities":[{"start":23,"end":38,"label":"appointment_type"}]} +{"text":"I need to change this date for #169618 .","intent":"reschedule","entities":[{"start":31,"end":38,"label":"appointment_id"}]} +{"text":"compare the booking calendar for a guest lecture with Conti .","intent":"query_avail","entities":[{"start":35,"end":48,"label":"appointment_type"},{"start":54,"end":59,"label":"practitioner_name"}]} +{"text":"Let's find a new time for #839944.","intent":"reschedule","entities":[{"start":26,"end":33,"label":"appointment_id"}]} +{"text":"Schedule something _ Prof. Garcia .","intent":"schedule","entities":[{"start":21,"end":33,"label":"practitioner_name"}]} +{"text":"Can google schedule a group meeting with Professor Rossi ?","intent":"schedule","entities":[{"start":41,"end":56,"label":"practitioner_name"}]} +{"text":"the tutorial session (ID #797665 ) has a time conflict.","intent":"reschedule","entities":[{"start":25,"end":32,"label":"appointment_id"}]} +{"text":"Can you help me create #894207 ?","intent":"reschedule","entities":[{"start":23,"end":30,"label":"appointment_id"}]} +{"text":"Show the booking calendar page Mr. Rodriguez .","intent":"query_avail","entities":[{"start":31,"end":44,"label":"practitioner_name"}]} +{"text":"The booking #623681 should be removed.","intent":"cancel","entities":[{"start":12,"end":19,"label":"appointment_id"}]} +{"text":"I'd like to have a grant proposal meeting ;","intent":"schedule","entities":[{"start":19,"end":41,"label":"appointment_type"}]} +{"text":"Reschedule my appointment @ ID #746934 .","intent":"reschedule","entities":[{"start":31,"end":38,"label":"appointment_id"}]} +{"text":"hi how is everything","intent":"greeting","entities":[]} +{"text":"Openings with Ricci.","intent":"query_avail","entities":[{"start":14,"end":19,"label":"practitioner_name"}]} +{"text":"I need immediately reschedule my session with Prof. Garcia .","intent":"reschedule","entities":[{"start":46,"end":58,"label":"practitioner_name"}]} +{"text":"I need another talk to my advisor.","intent":"schedule","entities":[]} +{"text":"I am writing : reschedule my dental cleaning .","intent":"reschedule","entities":[{"start":29,"end":44,"label":"appointment_type"}]} +{"text":"Cancel my sync-up } Prof.ssa Gallo , please.","intent":"cancel","entities":[{"start":10,"end":17,"label":"appointment_type"},{"start":20,"end":34,"label":"practitioner_name"}]} +{"text":"I need to cancel a meeting, ID #449703.","intent":"cancel","entities":[{"start":31,"end":38,"label":"appointment_id"}]} +{"text":"Dott.ssa Valentina Bellini ","intent":"schedule","entities":[{"start":0,"end":26,"label":"practitioner_name"}]} +{"text":"Free times for a orientation session next week.","intent":"query_avail","entities":[{"start":17,"end":36,"label":"appointment_type"}]} +{"text":"I'm formally cancelling my consultation ","intent":"cancel","entities":[{"start":27,"end":39,"label":"appointment_type"}]} +{"text":"I want to get an appointment.","intent":"cancel","entities":[]} +{"text":"Reschedule my meeting with Professor Hill.","intent":"reschedule","entities":[{"start":37,"end":41,"label":"practitioner_name"}]} +{"text":"Book Dr. Carter study group meeting ","intent":"schedule","entities":[{"start":5,"end":15,"label":"practitioner_name"},{"start":16,"end":35,"label":"appointment_type"}]} +{"text":"no, that is fake","intent":"negative_reply","entities":[]} +{"text":"the answer is definitely no","intent":"negative_reply","entities":[]} +{"text":"shall I see Hall ?","intent":"schedule","entities":[{"start":12,"end":16,"label":"practitioner_name"}]} +{"text":"please must change my meeting with Leone .","intent":"reschedule","entities":[{"start":35,"end":40,"label":"practitioner_name"}]} +{"text":"where does jelly come from","intent":"oos","entities":[]} +{"text":"Create a public meeting.","intent":"schedule","entities":[]} +{"text":"create a pamphlet on albert einsteins childhood","intent":"oos","entities":[]} +{"text":"Show booking calendar for study group meeting s.","intent":"query_avail","entities":[{"start":27,"end":46,"label":"appointment_type"}]} +{"text":"how's everything","intent":"greeting","entities":[]} +{"text":"I'd like to book a parking slot.","intent":"schedule","entities":[]} +{"text":"research ethics review |","intent":"query_avail","entities":[{"start":0,"end":22,"label":"appointment_type"}]} +{"text":"Change parameter career counseling time.","intent":"reschedule","entities":[{"start":17,"end":34,"label":"appointment_type"}]} +{"text":"I need to cancel your appointment with confirmation number #556800 .","intent":"cancel","entities":[{"start":59,"end":66,"label":"appointment_id"}]} +{"text":"I'd like to cancel.","intent":"cancel","entities":[]} +{"text":"i've got to run now","intent":"bye","entities":[]} +{"text":"download times are available for Prof. Howard .","intent":"query_avail","entities":[{"start":33,"end":45,"label":"practitioner_name"}]} +{"text":"Book me searching for a advising session .","intent":"schedule","entities":[{"start":24,"end":40,"label":"appointment_type"}]} +{"text":"negative for sure","intent":"negative_reply","entities":[]} +{"text":"Let's find a new file for #706539 .","intent":"reschedule","entities":[{"start":26,"end":33,"label":"appointment_id"}]} +{"text":"I'd like just schedule a eye exam .","intent":"schedule","entities":[{"start":25,"end":33,"label":"appointment_type"}]} +{"text":"Openings with Dott.ssa Valentina Bellini for a writing center appointment ","intent":"query_avail","entities":[{"start":14,"end":40,"label":"practitioner_name"},{"start":47,"end":73,"label":"appointment_type"}]} +{"text":"Dott. Marco Conti 's syntax for a course planning .","intent":"query_avail","entities":[{"start":0,"end":17,"label":"practitioner_name"},{"start":34,"end":49,"label":"appointment_type"}]} +{"text":"we need to have a Ph.D. defense .","intent":"schedule","entities":[{"start":18,"end":31,"label":"appointment_type"}]} +{"text":"I have to cancel appointment #505823 with Thompson.","intent":"cancel","entities":[{"start":29,"end":36,"label":"appointment_id"},{"start":42,"end":50,"label":"practitioner_name"}]} +{"text":"Can I book Dott.ssa Chiara Negri for a financial aid consultation next Monday?","intent":"schedule","entities":[{"start":11,"end":32,"label":"practitioner_name"},{"start":39,"end":65,"label":"appointment_type"}]} +{"text":"i say no to that question","intent":"negative_reply","entities":[]} +{"text":"I am no longer available for my seminar presentation with Evans.","intent":"cancel","entities":[{"start":32,"end":52,"label":"appointment_type"},{"start":58,"end":63,"label":"practitioner_name"}]} +{"text":"that's a negatory","intent":"negative_reply","entities":[]} +{"text":"Need : speak to Price .","intent":"schedule","entities":[{"start":16,"end":21,"label":"practitioner_name"}]} +{"text":"Can I make an appointment?","intent":"schedule","entities":[]} +{"text":"yes sir","intent":"positive_reply","entities":[]} +{"text":"give me an energy usage breakdown for march","intent":"oos","entities":[]} +{"text":"I have to cancel this meeting.","intent":"cancel","entities":[]} +{"text":"internship interview static check.","intent":"query_avail","entities":[{"start":0,"end":20,"label":"appointment_type"}]} +{"text":"I need to reschedule James .","intent":"reschedule","entities":[{"start":22,"end":27,"label":"practitioner_name"}]} +{"text":"I need to book a advising session.","intent":"schedule","entities":[]} +{"text":"yup, that's true","intent":"positive_reply","entities":[]} +{"text":"Find availability for a consultation with Dr. Carter >","intent":"query_avail","entities":[{"start":42,"end":52,"label":"practitioner_name"}]} +{"text":"hey how's life","intent":"greeting","entities":[]} +{"text":"Postpone my internship interview with Ms. Cooper, reference #660065.","intent":"reschedule","entities":[{"start":12,"end":32,"label":"appointment_type"},{"start":38,"end":48,"label":"practitioner_name"},{"start":60,"end":67,"label":"appointment_id"}]} +{"text":"Availability of Coppola for update car service on July 23rd.","intent":"query_avail","entities":[{"start":16,"end":23,"label":"practitioner_name"},{"start":35,"end":46,"label":"appointment_type"}]} +{"text":"Book a meeting about my final .","intent":"schedule","entities":[]} +{"text":"see you around","intent":"bye","entities":[]} +{"text":"Is Professor Fontana free for a independent study meeting?","intent":"schedule","entities":[{"start":3,"end":20,"label":"practitioner_name"},{"start":32,"end":57,"label":"appointment_type"}]} +{"text":"Is it possible to schedule a session?","intent":"schedule","entities":[]} +{"text":"Display Cook 's free ;","intent":"query_avail","entities":[{"start":8,"end":12,"label":"practitioner_name"}]} +{"text":"Please continue with cancelling my appointment with Prof. Dubois .","intent":"cancel","entities":[{"start":52,"end":64,"label":"practitioner_name"}]} +{"text":"I want you schedule a meeting with Martin .","intent":"schedule","entities":[{"start":35,"end":41,"label":"practitioner_name"}]} +{"text":"applications need a admissions interview slot.","intent":"schedule","entities":[{"start":20,"end":40,"label":"appointment_type"}]} +{"text":"Calendar for next season","intent":"query_avail","entities":[]} +{"text":"This serves like a notification to cancel my appointment #353753 .","intent":"cancel","entities":[{"start":57,"end":64,"label":"appointment_id"}]} +{"text":"how is everything going","intent":"greeting","entities":[]} +{"text":"Can I bring my mind forward?","intent":"reschedule","entities":[]} +{"text":"i’ll be leaving now","intent":"bye","entities":[]} +{"text":"start times for Greco next week.","intent":"query_avail","entities":[{"start":16,"end":21,"label":"practitioner_name"}]} +{"text":"I want to buy time with Ms. Cooper .","intent":"schedule","entities":[{"start":24,"end":34,"label":"practitioner_name"}]} +{"text":"Can I change my department head meeting Mr. Adams ?","intent":"reschedule","entities":[{"start":16,"end":39,"label":"appointment_type"},{"start":41,"end":50,"label":"practitioner_name"}]} +{"text":"I need to change the date _ #387449 .","intent":"reschedule","entities":[{"start":28,"end":35,"label":"appointment_id"}]} +{"text":"This is a cancellation for my appointment with Green.","intent":"cancel","entities":[{"start":47,"end":52,"label":"practitioner_name"}]} +{"text":"I won't be able to make mistakes","intent":"reschedule","entities":[]} +{"text":"my answer to your question is yes","intent":"positive_reply","entities":[]} +{"text":"My tutorial session (ID #470394) has a time conflict.","intent":"reschedule","entities":[{"start":24,"end":31,"label":"appointment_id"}]} +{"text":"Can I schedule my meeting?","intent":"schedule","entities":[]} +{"text":"I'm sorry, but I have to cancel my appointment.","intent":"cancel","entities":[]} +{"text":"I would refuse to reschedule.","intent":"reschedule","entities":[]} +{"text":"Pellegrini's free times today.","intent":"query_avail","entities":[{"start":0,"end":10,"label":"practitioner_name"}]} +{"text":"The appointment is no longer needed.","intent":"cancel","entities":[]} +{"text":"I'd like to have access tax consultation .","intent":"schedule","entities":[{"start":24,"end":40,"label":"appointment_type"}]} +{"text":"thank you for your time","intent":"positive_reply","entities":[]} +{"text":"I need to have a client call.","intent":"schedule","entities":[{"start":17,"end":28,"label":"appointment_type"}]} +{"text":"will am unavailable for my transfer credit evaluation and need to move it.","intent":"reschedule","entities":[{"start":27,"end":53,"label":"appointment_type"}]} +{"text":"what's going on","intent":"greeting","entities":[]} +{"text":"it is definitely affirmative","intent":"positive_reply","entities":[]} +{"text":"I'd like i request a new time for my meeting.","intent":"reschedule","entities":[]} +{"text":"I have a meeting with my current appointment time.","intent":"reschedule","entities":[]} +{"text":"we need to cancel my consultation with Prof. Dubois .","intent":"cancel","entities":[{"start":39,"end":51,"label":"practitioner_name"}]} +{"text":"Please take my language proficiency test off your schedule.","intent":"cancel","entities":[{"start":15,"end":40,"label":"appointment_type"}]} +{"text":"I need to start my advising session, which is appointment #141591 .","intent":"reschedule","entities":[{"start":58,"end":65,"label":"appointment_id"}]} +{"text":"the answer is false","intent":"negative_reply","entities":[]} +{"text":"Cancel #682163.","intent":"cancel","entities":[{"start":7,"end":14,"label":"appointment_id"}]} +{"text":"where are classes taught near me for c++","intent":"oos","entities":[]} +{"text":"we want to cancel my financial aid consultation with Dr. King .","intent":"cancel","entities":[{"start":21,"end":47,"label":"appointment_type"},{"start":53,"end":61,"label":"practitioner_name"}]} +{"text":"that's a negative","intent":"negative_reply","entities":[]} +{"text":"confirm","intent":"positive_reply","entities":[]} +{"text":"i appreciate that answer!","intent":"positive_reply","entities":[]} +{"text":"Remove my appointment from the calendar.","intent":"cancel","entities":[]} +{"text":"is everything going okay","intent":"greeting","entities":[]} +{"text":"Display three times.","intent":"query_avail","entities":[]} +{"text":"Free time inquiry for assignment consultation .","intent":"query_avail","entities":[{"start":33,"end":45,"label":"appointment_type"}]} +{"text":"I'd like to set up a financial aid consultation with Thomas ","intent":"schedule","entities":[{"start":21,"end":47,"label":"appointment_type"},{"start":53,"end":59,"label":"practitioner_name"}]} +{"text":"Set a meeting with Dott. Luca Morelli.","intent":"schedule","entities":[{"start":19,"end":37,"label":"practitioner_name"}]} +{"text":"bye","intent":"bye","entities":[]} +{"text":"Find an opening a language proficiency test with Sanna .","intent":"query_avail","entities":[{"start":19,"end":44,"label":"appointment_type"},{"start":50,"end":55,"label":"practitioner_name"}]} +{"text":"send me book a club meeting .","intent":"schedule","entities":[{"start":15,"end":27,"label":"appointment_type"}]} +{"text":"i would prefer not","intent":"negative_reply","entities":[]} +{"text":"how many people have held the role of county attorney bearing the family name \"dixon\"","intent":"oos","entities":[]} +{"text":"That really no longer works for me.","intent":"reschedule","entities":[]} +{"text":"Please move my academic probation meeting with Hill , \\ ref #286344 .","intent":"reschedule","entities":[{"start":15,"end":41,"label":"appointment_type"},{"start":47,"end":51,"label":"practitioner_name"},{"start":60,"end":67,"label":"appointment_id"}]} +{"text":"Can we schedule a group meeting with Dott. Luca Morelli?","intent":"schedule","entities":[{"start":37,"end":55,"label":"practitioner_name"}]} +{"text":"Arrange a check-up or professor Prof. Parker .","intent":"schedule","entities":[{"start":10,"end":18,"label":"appointment_type"},{"start":32,"end":44,"label":"practitioner_name"}]} +{"text":"that statement was correct","intent":"positive_reply","entities":[]} +{"text":"please list my real estate for sale","intent":"oos","entities":[]} +{"text":"this was fun, see you around bye","intent":"bye","entities":[]} +{"text":"I'm cancelling. The result is #470394 .","intent":"cancel","entities":[{"start":30,"end":37,"label":"appointment_id"}]} +{"text":"My meeting with Professor Emily Clark has to be moved.","intent":"reschedule","entities":[{"start":16,"end":37,"label":"practitioner_name"}]} +{"text":"I won't seem able to attend, so please cancel.","intent":"cancel","entities":[]} +{"text":"Could you find a new time for my mental health counseling?","intent":"reschedule","entities":[{"start":33,"end":57,"label":"appointment_type"}]} +{"text":"I need to reschedule my email #230130 .","intent":"reschedule","entities":[{"start":30,"end":37,"label":"appointment_id"}]} +{"text":"Let's hold a chat.","intent":"schedule","entities":[]} +{"text":"read the phone number for mom in my phone contacts","intent":"oos","entities":[]} +{"text":"This is a cancellation request for replacing vaccination (ID: #821730 ) with Hill .","intent":"cancel","entities":[{"start":45,"end":56,"label":"appointment_type"},{"start":62,"end":69,"label":"appointment_id"},{"start":77,"end":81,"label":"practitioner_name"}]} +{"text":"how much does a nintendo switch cost","intent":"oos","entities":[]} +{"text":"hi! are you doing okay","intent":"greeting","entities":[]} +{"text":"Talk @ Morgan .","intent":"schedule","entities":[{"start":7,"end":13,"label":"practitioner_name"}]} +{"text":"My appointment #124270 , a research ethics review with Prof. Dubois , needs only be moved.","intent":"reschedule","entities":[{"start":15,"end":22,"label":"appointment_id"},{"start":27,"end":49,"label":"appointment_type"},{"start":55,"end":67,"label":"practitioner_name"}]} +{"text":"Check calendar for Dr. Wood ;","intent":"query_avail","entities":[{"start":19,"end":27,"label":"practitioner_name"}]} +{"text":"Is it possible to cancel my appointment?","intent":"reschedule","entities":[]} +{"text":"Is this possible to move my appointment?","intent":"reschedule","entities":[]} +{"text":"Appointment commission","intent":"query_avail","entities":[]} +{"text":"Please cancel my lunch meeting.","intent":"cancel","entities":[]} +{"text":" Basile free for a final project review ?","intent":"schedule","entities":[{"start":1,"end":7,"label":"practitioner_name"},{"start":19,"end":39,"label":"appointment_type"}]} +{"text":"I will not recommend attending my scholarship interview with Harris .","intent":"cancel","entities":[{"start":34,"end":55,"label":"appointment_type"},{"start":61,"end":67,"label":"practitioner_name"}]} +{"text":"Can I bring my appointment forward?","intent":"reschedule","entities":[]} +{"text":"yes you are","intent":"positive_reply","entities":[]} +{"text":"why hello","intent":"greeting","entities":[]} +{"text":"i'm outta here!","intent":"bye","entities":[]} +{"text":"Need to change an existing policy","intent":"reschedule","entities":[]} +{"text":"i need to find work, help me connect to a local business through linkedin","intent":"oos","entities":[]} +{"text":"hi how are you","intent":"greeting","entities":[]} +{"text":"I need to drop out lab session with Prof. David Johnson .","intent":"cancel","entities":[{"start":19,"end":30,"label":"appointment_type"},{"start":36,"end":55,"label":"practitioner_name"}]} +{"text":"That time no longer works with me.","intent":"reschedule","entities":[]} +{"text":"I will not be coming to my appointment _ Dott. Matteo Palmieri .","intent":"cancel","entities":[{"start":41,"end":62,"label":"practitioner_name"}]} +{"text":"consider writing to inform you of the cancellation of my check-up with Professor Mariani , ID #634746 .","intent":"cancel","entities":[{"start":57,"end":65,"label":"appointment_type"},{"start":71,"end":88,"label":"practitioner_name"},{"start":94,"end":101,"label":"appointment_id"}]} +{"text":"tell me how you've been","intent":"greeting","entities":[]} +{"text":"I need to find another slot for my meeting with Dott.ssa Anna Moretti.","intent":"reschedule","entities":[{"start":48,"end":69,"label":"practitioner_name"}]} +{"text":"invite me in.","intent":"schedule","entities":[]} +{"text":"Please cancel my lab session appointment Friday.","intent":"cancel","entities":[{"start":17,"end":28,"label":"appointment_type"}]} +{"text":"This is a cancellation request for combining psychologist appointment (ID: #169618 ) with Bianchi .","intent":"cancel","entities":[{"start":45,"end":69,"label":"appointment_type"},{"start":75,"end":82,"label":"appointment_id"},{"start":90,"end":97,"label":"practitioner_name"}]} +{"text":"that isn't correct","intent":"negative_reply","entities":[]} +{"text":"define Prof. Scott ricevimento studenti .","intent":"schedule","entities":[{"start":7,"end":18,"label":"practitioner_name"},{"start":19,"end":39,"label":"appointment_type"}]} +{"text":"i'm glad i got to talk to you","intent":"bye","entities":[]} +{"text":"incorrect, it is certainly a false statement","intent":"negative_reply","entities":[]} +{"text":"wake up, ai","intent":"greeting","entities":[]} +{"text":"Book a presentation rehearsal, please.","intent":"schedule","entities":[{"start":7,"end":29,"label":"appointment_type"}]} +{"text":"I have to !","intent":"cancel","entities":[]} +{"text":"Change the time for meeting #169618 ","intent":"reschedule","entities":[{"start":28,"end":35,"label":"appointment_id"}]} +{"text":"I need to verify an existing booking.","intent":"cancel","entities":[]} +{"text":"I am writing to cancel your appointment.","intent":"cancel","entities":[]} +{"text":"I need to associate my comprehensive exam with Lombardi , ID is #314123 .","intent":"reschedule","entities":[{"start":23,"end":41,"label":"appointment_type"},{"start":47,"end":55,"label":"practitioner_name"},{"start":64,"end":71,"label":"appointment_id"}]} +{"text":"I need to reschedule our appointment.","intent":"reschedule","entities":[]} +{"text":"Please cancel my Ph.D. defense with Marchetti.","intent":"cancel","entities":[{"start":17,"end":30,"label":"appointment_type"},{"start":36,"end":45,"label":"practitioner_name"}]} +{"text":"I can no longer delay my meeting #555446 .","intent":"reschedule","entities":[{"start":33,"end":40,"label":"appointment_id"}]} +{"text":"Find Prof. Parker's availability.","intent":"query_avail","entities":[{"start":5,"end":17,"label":"practitioner_name"}]} +{"text":"List all free times for Prof. Bennett ;","intent":"query_avail","entities":[{"start":24,"end":37,"label":"practitioner_name"}]} +{"text":"I would like to cancel my fieldwork briefing with Collins. The ID is #600778.","intent":"cancel","entities":[{"start":26,"end":44,"label":"appointment_type"},{"start":50,"end":57,"label":"practitioner_name"},{"start":69,"end":76,"label":"appointment_id"}]} +{"text":"which houses do not have automatic spot lights in front of their garage","intent":"oos","entities":[]} +{"text":"• process a cancellation for #017187 .","intent":"cancel","entities":[{"start":29,"end":36,"label":"appointment_id"}]} +{"text":"Show the booking calendar for Professor Mariani.","intent":"query_avail","entities":[{"start":30,"end":47,"label":"practitioner_name"}]} +{"text":"Book a job appointment.","intent":"schedule","entities":[]} +{"text":"Rebook _ research update .","intent":"reschedule","entities":[{"start":9,"end":24,"label":"appointment_type"}]} +{"text":"Change my advising session with Price.","intent":"reschedule","entities":[{"start":32,"end":37,"label":"practitioner_name"}]} +{"text":"Check Dr. Stefano Marchese \\ calendar for a thesis proposal meeting .","intent":"query_avail","entities":[{"start":6,"end":26,"label":"practitioner_name"},{"start":44,"end":67,"label":"appointment_type"}]} +{"text":"I wish to book a esame orale with Mr. Adams .","intent":"schedule","entities":[{"start":17,"end":28,"label":"appointment_type"},{"start":34,"end":43,"label":"practitioner_name"}]} +{"text":"Please help me move my alumni interview with Professor Bernardi.","intent":"reschedule","entities":[{"start":23,"end":39,"label":"appointment_type"},{"start":45,"end":63,"label":"practitioner_name"}]} +{"text":"Can I change my daily session time?","intent":"reschedule","entities":[]} +{"text":"recall my meeting with Dott. Paolo Farina .","intent":"reschedule","entities":[{"start":23,"end":41,"label":"practitioner_name"}]} +{"text":"you are wrong","intent":"negative_reply","entities":[]} +{"text":"we have a conflict with my current appointment time.","intent":"reschedule","entities":[]} +{"text":"Change my appointment with Donati each Wednesday.","intent":"reschedule","entities":[{"start":27,"end":33,"label":"practitioner_name"}]} +{"text":"hello, how are you","intent":"greeting","entities":[]} +{"text":"I need to reschedule your booking #361254 .","intent":"reschedule","entities":[{"start":34,"end":41,"label":"appointment_id"}]} +{"text":"Book a weekly slot.","intent":"schedule","entities":[]} +{"text":"Find Caruso 's ;","intent":"query_avail","entities":[{"start":5,"end":11,"label":"practitioner_name"}]} +{"text":"Set up faculty candidate interview :","intent":"schedule","entities":[{"start":7,"end":34,"label":"appointment_type"}]} +{"text":"project update with Professor Barbieri |","intent":"schedule","entities":[{"start":0,"end":14,"label":"appointment_type"},{"start":20,"end":38,"label":"practitioner_name"}]} +{"text":"Please confirm my appointment with ID #877240 .","intent":"cancel","entities":[{"start":38,"end":45,"label":"appointment_id"}]} +{"text":"I want to get a faculty meeting on the books.","intent":"schedule","entities":[{"start":16,"end":31,"label":"appointment_type"}]} +{"text":"Show the booking calendar for qualifying exams.","intent":"query_avail","entities":[{"start":30,"end":45,"label":"appointment_type"}]} +{"text":"I are no longer available for my curriculum committee meeting with Nelson .","intent":"cancel","entities":[{"start":33,"end":61,"label":"appointment_type"},{"start":67,"end":73,"label":"practitioner_name"}]} +{"text":"Can I get a dissertation proposal with Sanna .","intent":"schedule","entities":[{"start":12,"end":33,"label":"appointment_type"},{"start":39,"end":44,"label":"practitioner_name"}]} +{"text":"i think it is false","intent":"negative_reply","entities":[]} +{"text":"Check data availability.","intent":"query_avail","entities":[]} +{"text":"Availability of Donati for a scholarship interview on July 23rd.","intent":"query_avail","entities":[{"start":16,"end":22,"label":"practitioner_name"},{"start":29,"end":50,"label":"appointment_type"}]} +{"text":"I need a change my lab session.","intent":"reschedule","entities":[]} +{"text":"Shift appointment #304272 to next week.","intent":"reschedule","entities":[{"start":18,"end":25,"label":"appointment_id"}]} +{"text":"Book a time slot.","intent":"schedule","entities":[]} +{"text":"I need to finish my chat with Dr. Sofia Colombo .","intent":"reschedule","entities":[{"start":30,"end":47,"label":"practitioner_name"}]} +{"text":"are you okay right now","intent":"greeting","entities":[]} +{"text":"Show Dr. Carter 's availability for instance tenure meeting .","intent":"query_avail","entities":[{"start":5,"end":15,"label":"practitioner_name"},{"start":45,"end":59,"label":"appointment_type"}]} +{"text":"thanks bye bye!","intent":"bye","entities":[]} +{"text":"New independent study meeting }","intent":"schedule","entities":[{"start":4,"end":29,"label":"appointment_type"}]} +{"text":"I must cancel my lab demonstration with Rinaldi ","intent":"cancel","entities":[{"start":17,"end":34,"label":"appointment_type"},{"start":40,"end":47,"label":"practitioner_name"}]} +{"text":"I'm cancelling my consultation with Dr. Stefano Marchese.","intent":"cancel","entities":[{"start":36,"end":56,"label":"practitioner_name"}]} +{"text":"I need to meet.","intent":"schedule","entities":[]} +{"text":"thank you!","intent":"positive_reply","entities":[]} +{"text":"Find an opening for node thesis committee meeting .","intent":"query_avail","entities":[{"start":25,"end":49,"label":"appointment_type"}]} +{"text":"Can someone help me schedule something?","intent":"schedule","entities":[]} +{"text":"it was great chatting with you","intent":"bye","entities":[]} +{"text":"yep, that's right","intent":"positive_reply","entities":[]} +{"text":"Postpone my meeting with Prof. Campbell.","intent":"reschedule","entities":[{"start":25,"end":39,"label":"practitioner_name"}]} +{"text":"that’s not correct","intent":"negative_reply","entities":[]} +{"text":"My plans have changed so I need to cancel.","intent":"cancel","entities":[]} +{"text":"defines a course planning with professor Dr. Ward .","intent":"schedule","entities":[{"start":10,"end":25,"label":"appointment_type"},{"start":41,"end":49,"label":"practitioner_name"}]} +{"text":"Please take _ sync-up off the schedule.","intent":"cancel","entities":[{"start":14,"end":21,"label":"appointment_type"}]} +{"text":"Please cancel my upcoming meeting.","intent":"cancel","entities":[]} +{"text":"I want to do something.","intent":"schedule","entities":[]} +{"text":"invalid","intent":"negative_reply","entities":[]} +{"text":"I wanted to change the time of my defense rehearsal with Professor Mariani .","intent":"reschedule","entities":[{"start":57,"end":74,"label":"practitioner_name"}]} +{"text":"Richardson _ schedule.","intent":"query_avail","entities":[{"start":0,"end":10,"label":"practitioner_name"}]} +{"text":"Find current meeting times with De Angelis .","intent":"query_avail","entities":[{"start":32,"end":42,"label":"practitioner_name"}]} +{"text":"I need to cancel the guest lecture with Prof. David Johnson. The booking number is #975878.","intent":"cancel","entities":[{"start":21,"end":34,"label":"appointment_type"},{"start":40,"end":59,"label":"practitioner_name"},{"start":83,"end":90,"label":"appointment_id"}]} +{"text":"Please book a research group meeting.","intent":"schedule","entities":[{"start":14,"end":36,"label":"appointment_type"}]} +{"text":"Arrange for meeting with Dr. Sofia Colombo .","intent":"schedule","entities":[{"start":25,"end":42,"label":"practitioner_name"}]} +{"text":"when was the last worker's strike in amsterdam","intent":"oos","entities":[]} +{"text":"Could you select a new time for my honors thesis meeting ?","intent":"reschedule","entities":[{"start":35,"end":56,"label":"appointment_type"}]} +{"text":"no thanks","intent":"negative_reply","entities":[]} +{"text":"Shift returns thesis discussion to another day.","intent":"reschedule","entities":[{"start":14,"end":31,"label":"appointment_type"}]} +{"text":"I would like to reschedule entry project kickoff with Ricci . The ID is #634746 .","intent":"reschedule","entities":[{"start":33,"end":48,"label":"appointment_type"},{"start":54,"end":59,"label":"practitioner_name"},{"start":72,"end":79,"label":"appointment_id"}]} +{"text":"i'd like to find some curtains that look good in this room","intent":"oos","entities":[]} +{"text":"List schedule openings for Esposito ","intent":"query_avail","entities":[{"start":27,"end":35,"label":"practitioner_name"}]} +{"text":"Openings : a thesis discussion.","intent":"query_avail","entities":[]} +{"text":"I wanted to arrange a final presentation with Rinaldi urgently.","intent":"schedule","entities":[{"start":22,"end":40,"label":"appointment_type"},{"start":46,"end":53,"label":"practitioner_name"}]} +{"text":"I have an appointment that need to change.","intent":"reschedule","entities":[]} +{"text":"I need to cancel this thesis discussion.","intent":"cancel","entities":[]} +{"text":"Find available psychologist appointment times with Bianchi :","intent":"query_avail","entities":[{"start":15,"end":39,"label":"appointment_type"},{"start":51,"end":58,"label":"practitioner_name"}]} +{"text":"I need to cancel my thesis discussion.","intent":"cancel","entities":[]} +{"text":"I need to see Mr. Barnes about my job","intent":"schedule","entities":[{"start":14,"end":24,"label":"practitioner_name"}]} +{"text":"My curriculum planning with Dr. King needs to become rescheduled.","intent":"reschedule","entities":[{"start":3,"end":22,"label":"appointment_type"},{"start":28,"end":36,"label":"practitioner_name"}]} +{"text":"Unfortunately, I need to move my meeting.","intent":"reschedule","entities":[]} +{"text":"that is affirmative","intent":"positive_reply","entities":[]} +{"text":"Show Rizzo 's openings for capstone meeting this Friday.","intent":"query_avail","entities":[{"start":5,"end":10,"label":"practitioner_name"},{"start":28,"end":44,"label":"appointment_type"}]} +{"text":"Can we find an alternative expression for #420645 ?","intent":"reschedule","entities":[{"start":42,"end":49,"label":"appointment_id"}]} +{"text":"ok good chatting goodbye","intent":"bye","entities":[]} +{"text":"no, that's not it","intent":"negative_reply","entities":[]} +{"text":"will need to meet with Dott. Simone Marchetti .","intent":"schedule","entities":[{"start":23,"end":45,"label":"practitioner_name"}]} +{"text":"i must say no","intent":"negative_reply","entities":[]} +{"text":"cancel my appointment.","intent":"cancel","entities":[]} +{"text":"Remove the degree audit with Fiore from my calendar.","intent":"cancel","entities":[{"start":11,"end":23,"label":"appointment_type"},{"start":29,"end":34,"label":"practitioner_name"}]} +{"text":"that is a fact","intent":"positive_reply","entities":[]} +{"text":"My group project session with Lee has to be cancelled.","intent":"cancel","entities":[{"start":3,"end":24,"label":"appointment_type"},{"start":30,"end":33,"label":"practitioner_name"}]} +{"text":"I'm formally cancelling my research consultation.","intent":"cancel","entities":[{"start":27,"end":48,"label":"appointment_type"}]} +{"text":"i think that's false","intent":"negative_reply","entities":[]} +{"text":" my 1-on-1 .","intent":"reschedule","entities":[{"start":4,"end":10,"label":"appointment_type"}]} +{"text":"I need to reschedule my appointment #947726 .","intent":"reschedule","entities":[{"start":36,"end":43,"label":"appointment_id"}]} +{"text":"Can I make an appointment for a client presentation?","intent":"schedule","entities":[{"start":32,"end":51,"label":"appointment_type"}]} +{"text":"I have an appointment I need to attend","intent":"reschedule","entities":[]} +{"text":"can you really time your compressions to queen's \"another one bites the dust\"","intent":"oos","entities":[]} +{"text":"i wish you were here earlier","intent":"positive_reply","entities":[]} +{"text":"hi there alexa","intent":"greeting","entities":[]} +{"text":"that’s actually wrong","intent":"negative_reply","entities":[]} +{"text":"Please accept my apologies, but I must cancel my meeting.","intent":"cancel","entities":[]} +{"text":"would you tell me how the ai is doing","intent":"greeting","entities":[]} +{"text":"hi, how are you","intent":"greeting","entities":[]} +{"text":"you are so nice to think of me","intent":"positive_reply","entities":[]} +{"text":"Move my pet checkup with Ms. Davis on Friday.","intent":"reschedule","entities":[{"start":8,"end":19,"label":"appointment_type"},{"start":25,"end":34,"label":"practitioner_name"}]} +{"text":"I'd like ta see Ms. Davis at a different time.","intent":"reschedule","entities":[{"start":16,"end":25,"label":"practitioner_name"}]} +{"text":"replaces my tenure meeting with Professor Sartori , reference #536444 .","intent":"reschedule","entities":[{"start":12,"end":26,"label":"appointment_type"},{"start":32,"end":49,"label":"practitioner_name"},{"start":62,"end":69,"label":"appointment_id"}]} +{"text":"I'm cancelling #894207.","intent":"cancel","entities":[{"start":15,"end":22,"label":"appointment_id"}]} +{"text":"Can i cancel my appointment?","intent":"cancel","entities":[]} +{"text":"Galli 's calendar | vehicle inspection s.","intent":"query_avail","entities":[{"start":0,"end":5,"label":"practitioner_name"},{"start":20,"end":38,"label":"appointment_type"}]} +{"text":"Book : meeting with Marchetti .","intent":"schedule","entities":[{"start":20,"end":29,"label":"practitioner_name"}]} +{"text":"Let's schedule entry office hours with Professor Pellegrino .","intent":"schedule","entities":[{"start":21,"end":33,"label":"appointment_type"},{"start":39,"end":59,"label":"practitioner_name"}]} +{"text":"Next available research consultation.","intent":"query_avail","entities":[{"start":15,"end":36,"label":"appointment_type"}]} +{"text":"I'd like to cancel the connection I have with Dott.ssa Valentina Bellini .","intent":"cancel","entities":[{"start":46,"end":72,"label":"practitioner_name"}]} +{"text":"Dott. Simone Marchetti \\ time check.","intent":"query_avail","entities":[{"start":0,"end":22,"label":"practitioner_name"}]} +{"text":"appreciate the help","intent":"positive_reply","entities":[]} +{"text":"I need to arrange a vet appointment with Testa :","intent":"schedule","entities":[{"start":20,"end":35,"label":"appointment_type"},{"start":41,"end":46,"label":"practitioner_name"}]} +{"text":"I want to cancel the meeting with reference #569400.","intent":"cancel","entities":[{"start":44,"end":51,"label":"appointment_id"}]} +{"text":"is everything ok today","intent":"greeting","entities":[]} +{"text":"I'd like to shift my appointment to a different time.","intent":"reschedule","entities":[]} +{"text":"Cancel appointment #797665 ;","intent":"cancel","entities":[{"start":19,"end":26,"label":"appointment_id"}]} +{"text":"Martin student orientation booking.","intent":"schedule","entities":[{"start":0,"end":6,"label":"practitioner_name"},{"start":7,"end":26,"label":"appointment_type"}]} +{"text":"Reschedule my project meeting.","intent":"reschedule","entities":[]} +{"text":"Show schedule.","intent":"query_avail","entities":[]} +{"text":"I might like to change my appointment, ID #693909 .","intent":"reschedule","entities":[{"start":42,"end":49,"label":"appointment_id"}]} +{"text":"I'd like to change email study group meeting with Dr. Bailey to another day.","intent":"reschedule","entities":[{"start":25,"end":44,"label":"appointment_type"},{"start":50,"end":60,"label":"practitioner_name"}]} +{"text":"Find tables for a registration appointment .","intent":"schedule","entities":[{"start":18,"end":42,"label":"appointment_type"}]} +{"text":"how's ife treating you","intent":"greeting","entities":[]} +{"text":"Display calendar.","intent":"query_avail","entities":[]} +{"text":"^ rid of appointment #255297 .","intent":"cancel","entities":[{"start":21,"end":28,"label":"appointment_id"}]} +{"text":"we need to cancel my appointment.","intent":"cancel","entities":[]} +{"text":"how are you doing","intent":"greeting","entities":[]} +{"text":"we would like to reschedule.","intent":"reschedule","entities":[]} +{"text":"I must terminate appointment #901602 .","intent":"cancel","entities":[{"start":29,"end":36,"label":"appointment_id"}]} +{"text":"no!","intent":"negative_reply","entities":[]} +{"text":"thanks for your response","intent":"positive_reply","entities":[]} +{"text":"Book office hours.","intent":"schedule","entities":[]} +{"text":"Availability of Pagano for a study abroad advising.","intent":"query_avail","entities":[{"start":16,"end":22,"label":"practitioner_name"},{"start":29,"end":50,"label":"appointment_type"}]} +{"text":"sayonara","intent":"bye","entities":[]} +{"text":"The meeting function Dott. Luca Morelli can be cancelled.","intent":"cancel","entities":[{"start":21,"end":39,"label":"practitioner_name"}]} +{"text":"write my 1-on-1 .","intent":"schedule","entities":[{"start":9,"end":15,"label":"appointment_type"}]} +{"text":"I need help cancel my defense rehearsal.","intent":"cancel","entities":[]} +{"text":"\\ cancel my attendance for the alumni interview .","intent":"cancel","entities":[{"start":31,"end":47,"label":"appointment_type"}]} +{"text":"Professor Pellegrino 's availability this !","intent":"query_avail","entities":[{"start":0,"end":20,"label":"practitioner_name"}]} +{"text":"Schedule me with Nowak.","intent":"schedule","entities":[{"start":17,"end":22,"label":"practitioner_name"}]} +{"text":"i accept my apologies, but I must cancel my meeting.","intent":"cancel","entities":[]} +{"text":"Check for current times.","intent":"query_avail","entities":[]} +{"text":"This is a cancellation request for my student government meeting (ID: #798223) with Professor Pellegrino.","intent":"cancel","entities":[{"start":38,"end":64,"label":"appointment_type"},{"start":70,"end":77,"label":"appointment_id"},{"start":84,"end":104,"label":"practitioner_name"}]} +{"text":"I want to schedule a meeting in Dr. Wood .","intent":"schedule","entities":[{"start":32,"end":40,"label":"practitioner_name"}]} +{"text":"Please remember my reservation.","intent":"cancel","entities":[]} +{"text":"yes that's it","intent":"positive_reply","entities":[]} +{"text":"what does water taste like","intent":"oos","entities":[]} +{"text":"I'm sorry, but I have to remember my appointment.","intent":"cancel","entities":[]} +{"text":"Find available slots.","intent":"query_avail","entities":[]} +{"text":"Find an open slot for .","intent":"schedule","entities":[]} +{"text":"why thank you","intent":"positive_reply","entities":[]} +{"text":"I'd need to set a meeting time.","intent":"schedule","entities":[]} +{"text":"absolutely not","intent":"negative_reply","entities":[]} +{"text":"oh sweet thanks","intent":"positive_reply","entities":[]} +{"text":"I prefer to cancel appointment #630761 with Brown .","intent":"cancel","entities":[{"start":31,"end":38,"label":"appointment_id"},{"start":44,"end":49,"label":"practitioner_name"}]} +{"text":"I want to book a .","intent":"schedule","entities":[]} +{"text":"your answer is appreciated","intent":"positive_reply","entities":[]} +{"text":"Free times for Dott.ssa Chiara Negri every week.","intent":"query_avail","entities":[{"start":15,"end":36,"label":"practitioner_name"}]} +{"text":"Cancel all my appointments file Gray .","intent":"cancel","entities":[{"start":32,"end":36,"label":"practitioner_name"}]} +{"text":"Ms. Cooper's availability this week.","intent":"query_avail","entities":[{"start":0,"end":10,"label":"practitioner_name"}]} +{"text":"released on July 21st.","intent":"query_avail","entities":[]} +{"text":"I can't make it to call #017187 .","intent":"reschedule","entities":[{"start":24,"end":31,"label":"appointment_id"}]} +{"text":"I'm busy cancelling my home repair estimate .","intent":"cancel","entities":[{"start":23,"end":43,"label":"appointment_type"}]} +{"text":"Need only speak to Gray .","intent":"schedule","entities":[{"start":19,"end":23,"label":"practitioner_name"}]} +{"text":"Need to book a project meeting soon.","intent":"schedule","entities":[{"start":15,"end":30,"label":"appointment_type"}]} +{"text":"great talk, thanks","intent":"bye","entities":[]} +{"text":"how are things going","intent":"greeting","entities":[]} +{"text":"I need to do a guest lecture.","intent":"schedule","entities":[{"start":15,"end":28,"label":"appointment_type"}]} +{"text":"I need an driving lesson.","intent":"schedule","entities":[{"start":10,"end":24,"label":"appointment_type"}]} +{"text":"Donati \\ schedule for a research ethics review .","intent":"query_avail","entities":[{"start":0,"end":6,"label":"practitioner_name"},{"start":24,"end":46,"label":"appointment_type"}]} +{"text":"google would like to reschedule my vet appointment with Esposito . The ID is #781883 .","intent":"reschedule","entities":[{"start":35,"end":50,"label":"appointment_type"},{"start":56,"end":64,"label":"practitioner_name"},{"start":77,"end":84,"label":"appointment_id"}]} +{"text":"I need to drop my IT support session with Prof. Scott ;","intent":"cancel","entities":[{"start":18,"end":36,"label":"appointment_type"},{"start":42,"end":53,"label":"practitioner_name"}]} +{"text":"Available times for instance equipment training .","intent":"query_avail","entities":[{"start":29,"end":47,"label":"appointment_type"}]} +{"text":"I need to switch to Morgan for a project update .","intent":"schedule","entities":[{"start":20,"end":26,"label":"practitioner_name"},{"start":33,"end":47,"label":"appointment_type"}]} +{"text":"I am writing to cancel my appointment.","intent":"cancel","entities":[]} +{"text":"I can't make my advising session contact Sanders .","intent":"reschedule","entities":[{"start":41,"end":48,"label":"practitioner_name"}]} +{"text":"Time slots for Prof. Scott |","intent":"query_avail","entities":[{"start":15,"end":26,"label":"practitioner_name"}]} +{"text":"I need some time with Dott.ssa Anna Moretti.","intent":"schedule","entities":[{"start":22,"end":43,"label":"practitioner_name"}]} +{"text":"Book a research group meeting with Sanders as long as possible.","intent":"schedule","entities":[{"start":7,"end":29,"label":"appointment_type"},{"start":35,"end":42,"label":"practitioner_name"}]} +{"text":"Schedule _ dissertation proposal .","intent":"schedule","entities":[{"start":11,"end":32,"label":"appointment_type"}]} +{"text":"Find Esposito resource availability.","intent":"query_avail","entities":[{"start":5,"end":13,"label":"practitioner_name"}]} +{"text":"Free slots with Dr. Lefevre and a student feedback session this afternoon.","intent":"query_avail","entities":[{"start":16,"end":27,"label":"practitioner_name"},{"start":34,"end":58,"label":"appointment_type"}]} +{"text":"When is Dr. Brooks ; for a thesis discussion .","intent":"query_avail","entities":[{"start":8,"end":18,"label":"practitioner_name"},{"start":27,"end":44,"label":"appointment_type"}]} +{"text":"Find parameters for a pre-defense meeting .","intent":"schedule","entities":[{"start":22,"end":41,"label":"appointment_type"}]} +{"text":"search up the cast in the walking dead","intent":"oos","entities":[]} +{"text":"will no longer require the meeting with Collins .","intent":"cancel","entities":[{"start":40,"end":47,"label":"practitioner_name"}]} +{"text":"Please copy and rebook my appointment.","intent":"reschedule","entities":[]} +{"text":"Availability check.","intent":"query_avail","entities":[]} +{"text":"any meeting with Professor Fontana has to be moved.","intent":"reschedule","entities":[{"start":17,"end":34,"label":"practitioner_name"}]} +{"text":"I want to reschedule booking #355543.","intent":"reschedule","entities":[{"start":29,"end":36,"label":"appointment_id"}]} +{"text":"My tenure meeting with De Angelis needs to be .","intent":"reschedule","entities":[{"start":3,"end":17,"label":"appointment_type"},{"start":23,"end":33,"label":"practitioner_name"}]} +{"text":"will have to reschedule my dean's meeting .","intent":"reschedule","entities":[{"start":27,"end":41,"label":"appointment_type"}]} +{"text":"Please display my discussione tesi with Young , ID is #535330 .","intent":"cancel","entities":[{"start":18,"end":34,"label":"appointment_type"},{"start":40,"end":45,"label":"practitioner_name"},{"start":54,"end":61,"label":"appointment_id"}]} +{"text":"thats a negative","intent":"negative_reply","entities":[]} +{"text":"I intend to move my advising session, which is appointment #222384 .","intent":"reschedule","entities":[{"start":59,"end":66,"label":"appointment_id"}]} +{"text":"Can we reschedule my home repair estimate, ID #587130?","intent":"reschedule","entities":[{"start":21,"end":41,"label":"appointment_type"},{"start":46,"end":53,"label":"appointment_id"}]} +{"text":"Need to change an existing structure","intent":"reschedule","entities":[]} +{"text":"I will not be attending my physical therapy session with Dr. Phillips :","intent":"cancel","entities":[{"start":27,"end":51,"label":"appointment_type"},{"start":57,"end":69,"label":"practitioner_name"}]} +{"text":"My schedule has changed, my need to reschedule.","intent":"reschedule","entities":[]} +{"text":"I need to reschedule …","intent":"reschedule","entities":[]} +{"text":"make a list of what materials have been used for spacesuits","intent":"oos","entities":[]} +{"text":"Book a meeting with Professor Barbieri.","intent":"schedule","entities":[{"start":20,"end":38,"label":"practitioner_name"}]} +{"text":"negative","intent":"negative_reply","entities":[]} +{"text":"Check schedule for pet checkup availability.","intent":"query_avail","entities":[{"start":19,"end":30,"label":"appointment_type"}]} +{"text":"I'm unable to remember my quarterly review .","intent":"reschedule","entities":[{"start":26,"end":42,"label":"appointment_type"}]} +{"text":"I needed to meet.","intent":"schedule","entities":[]} +{"text":"Show Mancini 's availability as a blood test .","intent":"query_avail","entities":[{"start":5,"end":12,"label":"practitioner_name"},{"start":34,"end":44,"label":"appointment_type"}]} +{"text":"I need to have a advising session :","intent":"schedule","entities":[{"start":17,"end":33,"label":"appointment_type"}]} +{"text":"\\ cancel my student disciplinary hearing this Friday.","intent":"cancel","entities":[{"start":12,"end":40,"label":"appointment_type"}]} +{"text":"I need to delete a scheduled meeting.","intent":"cancel","entities":[]} +{"text":"I won't be able to attend, so please continue","intent":"cancel","entities":[]} +{"text":"Is it too late to change his appointment time?","intent":"reschedule","entities":[]} +{"text":"Can I book Prof. Müller a grade review next Monday?","intent":"schedule","entities":[{"start":11,"end":23,"label":"practitioner_name"},{"start":27,"end":39,"label":"appointment_type"}]} +{"text":"select a parent-teacher conference for me.","intent":"schedule","entities":[{"start":9,"end":34,"label":"appointment_type"}]} +{"text":"Let's reschedule appointment #239161 ","intent":"reschedule","entities":[{"start":29,"end":36,"label":"appointment_id"}]} +{"text":"Please cancel my .","intent":"cancel","entities":[]} +{"text":"Reschedule my consultation.","intent":"reschedule","entities":[]} +{"text":"I need an appointment called Mancini .","intent":"schedule","entities":[{"start":29,"end":36,"label":"practitioner_name"}]} +{"text":"Reschedule #420645 }","intent":"reschedule","entities":[{"start":11,"end":18,"label":"appointment_id"}]} +{"text":"Free slots with Turner this afternoon.","intent":"query_avail","entities":[{"start":16,"end":22,"label":"practitioner_name"}]} +{"text":"Show openings for a lecture each Friday.","intent":"query_avail","entities":[{"start":20,"end":27,"label":"appointment_type"}]} +{"text":"Move booking #460528 effective next week.","intent":"reschedule","entities":[{"start":13,"end":20,"label":"appointment_id"}]} +{"text":"Taylor's availability for a internship interview this week.","intent":"query_avail","entities":[{"start":0,"end":6,"label":"practitioner_name"},{"start":28,"end":48,"label":"appointment_type"}]} +{"text":"Please cancel my appointment with ID #682160.","intent":"cancel","entities":[{"start":37,"end":44,"label":"appointment_id"}]} +{"text":"that's not what i want!","intent":"negative_reply","entities":[]} +{"text":"I'd like to move my thesis discussion.","intent":"reschedule","entities":[]} +{"text":"Mr. Rogers 's replacement for a consultation this week.","intent":"query_avail","entities":[{"start":0,"end":10,"label":"practitioner_name"},{"start":32,"end":44,"label":"appointment_type"}]} +{"text":"Availability of Sanna for check-up .","intent":"query_avail","entities":[{"start":16,"end":21,"label":"practitioner_name"},{"start":27,"end":35,"label":"appointment_type"}]} +{"text":"hey, ai","intent":"greeting","entities":[]} +{"text":"I want to see Dr. Wilson .","intent":"schedule","entities":[{"start":14,"end":24,"label":"practitioner_name"}]} +{"text":"What times are available for Sanna ;","intent":"query_avail","entities":[{"start":29,"end":34,"label":"practitioner_name"}]} +{"text":"Is it possible to run a session?","intent":"schedule","entities":[]} +{"text":"true is my response","intent":"positive_reply","entities":[]} +{"text":"Change my appointment with Professor Vitali tomorrow Wednesday.","intent":"reschedule","entities":[{"start":27,"end":43,"label":"practitioner_name"}]} +{"text":"definitely not","intent":"negative_reply","entities":[]} +{"text":"hey there, how are you today","intent":"greeting","entities":[]} +{"text":"Please schedule this new appointment for me.","intent":"schedule","entities":[]} +{"text":"I'd like to book an appointment.","intent":"schedule","entities":[]} +{"text":"I need to cancel my meeting with Torres this Tuesday.","intent":"cancel","entities":[{"start":33,"end":39,"label":"practitioner_name"}]} +{"text":"Display Professor Cattaneo's free times for a scholarship interview.","intent":"query_avail","entities":[{"start":8,"end":26,"label":"practitioner_name"},{"start":46,"end":67,"label":"appointment_type"}]} +{"text":"8 hours with Basile .","intent":"query_avail","entities":[{"start":13,"end":19,"label":"practitioner_name"}]} +{"text":"if situation has changed, I need to cancel my Ph.D. defense .","intent":"cancel","entities":[{"start":46,"end":59,"label":"appointment_type"}]} +{"text":"Schedule a esame orale.","intent":"schedule","entities":[{"start":11,"end":22,"label":"appointment_type"}]} +{"text":"Change #261071.","intent":"reschedule","entities":[{"start":7,"end":14,"label":"appointment_id"}]} +{"text":"no, that is invalid","intent":"negative_reply","entities":[]} +{"text":"I need some time in Professor Bernardi .","intent":"schedule","entities":[{"start":20,"end":38,"label":"practitioner_name"}]} +{"text":"Display schedule updated next week.","intent":"query_avail","entities":[]} +{"text":"no, that is my response","intent":"negative_reply","entities":[]} +{"text":"I accepted a new time slot.","intent":"reschedule","entities":[]} +{"text":"except for practicum supervision openings.","intent":"query_avail","entities":[{"start":11,"end":32,"label":"appointment_type"}]} +{"text":"Show Prof. Garcia's availability for a research consultation.","intent":"query_avail","entities":[{"start":5,"end":17,"label":"practitioner_name"},{"start":39,"end":60,"label":"appointment_type"}]} +{"text":"List all free times with a blood test with Cox .","intent":"query_avail","entities":[{"start":27,"end":37,"label":"appointment_type"},{"start":43,"end":46,"label":"practitioner_name"}]} +{"text":"Please confirm the cancellation : booking #684466 , my student disciplinary hearing .","intent":"cancel","entities":[{"start":42,"end":49,"label":"appointment_id"},{"start":55,"end":83,"label":"appointment_type"}]} +{"text":"Show Professor Marino 's schedule for this Friday.","intent":"query_avail","entities":[{"start":5,"end":21,"label":"practitioner_name"}]} +{"text":"I won't be able to attend, so please cancel.","intent":"cancel","entities":[]} +{"text":"talk later","intent":"bye","entities":[]} +{"text":"Mr. Peterson appointment.","intent":"schedule","entities":[{"start":0,"end":12,"label":"practitioner_name"}]} +{"text":"Can we reschedule my lab cleanup , or #327330 ?","intent":"reschedule","entities":[{"start":21,"end":32,"label":"appointment_type"},{"start":38,"end":45,"label":"appointment_id"}]} +{"text":"Cancel my !","intent":"cancel","entities":[]} +{"text":"I need to cancel appointments eye exam with Professor Fontana . The booking number is #439966 .","intent":"cancel","entities":[{"start":30,"end":38,"label":"appointment_type"},{"start":44,"end":61,"label":"practitioner_name"},{"start":86,"end":93,"label":"appointment_id"}]} +{"text":"you are correct","intent":"positive_reply","entities":[]} +{"text":"I need to cancel my defense …","intent":"cancel","entities":[]} +{"text":"thanks for the assist","intent":"positive_reply","entities":[]} +{"text":"what are the best personal finance practices","intent":"oos","entities":[]} +{"text":"Drop my pants","intent":"cancel","entities":[]} +{"text":"Can oracle reschedule the research seminar I have with Piras ?","intent":"reschedule","entities":[{"start":26,"end":42,"label":"appointment_type"},{"start":55,"end":60,"label":"practitioner_name"}]} +{"text":"I need to start my session.","intent":"reschedule","entities":[]} +{"text":"Please cancel appointments letter of recommendation request .","intent":"cancel","entities":[{"start":27,"end":59,"label":"appointment_type"}]} +{"text":"thank you very much","intent":"positive_reply","entities":[]} +{"text":"whats up","intent":"greeting","entities":[]} +{"text":"List open source","intent":"query_avail","entities":[]} +{"text":"Display schedule for next week.","intent":"query_avail","entities":[]} +{"text":"accepted my appointment.","intent":"cancel","entities":[]} +{"text":"Set up the meeting with Professor Mariani .","intent":"schedule","entities":[{"start":24,"end":41,"label":"practitioner_name"}]} +{"text":"ai, how are you doing","intent":"greeting","entities":[]} +{"text":"thanks for answering my question","intent":"positive_reply","entities":[]} +{"text":"hows are ya","intent":"greeting","entities":[]} +{"text":"What felt free.","intent":"query_avail","entities":[]} +{"text":"I have to have something on my calendar.","intent":"reschedule","entities":[]} +{"text":"This is a cancellation request for my mentorship meeting and #886239 ) with Prof. Bennett .","intent":"cancel","entities":[{"start":38,"end":56,"label":"appointment_type"},{"start":61,"end":68,"label":"appointment_id"},{"start":76,"end":89,"label":"practitioner_name"}]} +{"text":"I am cancelling my club meeting (ID #117656 ) Mr. Barnes .","intent":"cancel","entities":[{"start":19,"end":31,"label":"appointment_type"},{"start":36,"end":43,"label":"appointment_id"},{"start":47,"end":57,"label":"practitioner_name"}]} +{"text":"Reschedule the research ethics review to Moore , please.","intent":"reschedule","entities":[{"start":15,"end":37,"label":"appointment_type"},{"start":41,"end":46,"label":"practitioner_name"}]} +{"text":"I'm cancelling the meeting date Professor Bernardi .","intent":"cancel","entities":[{"start":32,"end":50,"label":"practitioner_name"}]} +{"text":"hola!","intent":"greeting","entities":[]} +{"text":"Let's create a transfer credit evaluation with Torres .","intent":"schedule","entities":[{"start":15,"end":41,"label":"appointment_type"},{"start":47,"end":53,"label":"practitioner_name"}]} +{"text":"later","intent":"bye","entities":[]} +{"text":"I have to postpone my office to visit with Dr. Angela White .","intent":"reschedule","entities":[{"start":43,"end":59,"label":"practitioner_name"}]} +{"text":"I need to say something.","intent":"cancel","entities":[]} +{"text":"whats up with you","intent":"greeting","entities":[]} +{"text":"is it difficult to be successful on wall street","intent":"oos","entities":[]} +{"text":"I would like to cancel my seminar presentation with Ms. Mitchell . The ID = #085342 .","intent":"cancel","entities":[{"start":26,"end":46,"label":"appointment_type"},{"start":52,"end":64,"label":"practitioner_name"},{"start":76,"end":83,"label":"appointment_id"}]} +{"text":"explain how small talk helps bind groups together","intent":"oos","entities":[]} +{"text":"Let's schedule parameter Hall .","intent":"schedule","entities":[{"start":25,"end":29,"label":"practitioner_name"}]} +{"text":"Can we reschedule the car service I have with Testa?","intent":"reschedule","entities":[{"start":22,"end":33,"label":"appointment_type"},{"start":46,"end":51,"label":"practitioner_name"}]} +{"text":"set all free times for a mental health counseling with Dott. Francesco Testa .","intent":"query_avail","entities":[{"start":25,"end":49,"label":"appointment_type"},{"start":55,"end":76,"label":"practitioner_name"}]} +{"text":"Please cancel my appointment regarding my project with Parisi.","intent":"cancel","entities":[{"start":55,"end":61,"label":"practitioner_name"}]} +{"text":"not at all","intent":"negative_reply","entities":[]} +{"text":"Book me for a admissions interview = Dr. Sofia Colombo .","intent":"schedule","entities":[{"start":14,"end":34,"label":"appointment_type"},{"start":37,"end":54,"label":"practitioner_name"}]} +{"text":"Reschedule my sins","intent":"reschedule","entities":[]} +{"text":"i'll pass","intent":"negative_reply","entities":[]} +{"text":"can you mark this note as important","intent":"oos","entities":[]} +{"text":"Regarding appointment #040937 , we want to cancel.","intent":"cancel","entities":[{"start":22,"end":29,"label":"appointment_id"}]} +{"text":"Find an ;","intent":"query_avail","entities":[]} +{"text":"I need to find a perfect time for my driving lesson .","intent":"reschedule","entities":[{"start":37,"end":51,"label":"appointment_type"}]} +{"text":"List openings for listing research group meeting with Roberts .","intent":"query_avail","entities":[{"start":26,"end":48,"label":"appointment_type"},{"start":54,"end":61,"label":"practitioner_name"}]} +{"text":"Advising session leaders","intent":"query_avail","entities":[]} +{"text":"Schedule my campus tour.","intent":"schedule","entities":[{"start":12,"end":23,"label":"appointment_type"}]} +{"text":"click the booking calendar.","intent":"query_avail","entities":[]} +{"text":"Schedule Villa for a thesis discussion.","intent":"schedule","entities":[{"start":9,"end":14,"label":"practitioner_name"},{"start":21,"end":38,"label":"appointment_type"}]} +{"text":"solve for a ultrasound with Prof. Watson .","intent":"schedule","entities":[{"start":12,"end":22,"label":"appointment_type"},{"start":28,"end":40,"label":"practitioner_name"}]} +{"text":"nice to see you again","intent":"bye","entities":[]} +{"text":"The query with Donati can be cancelled.","intent":"cancel","entities":[{"start":15,"end":21,"label":"practitioner_name"}]} +{"text":"thanks for helping me","intent":"positive_reply","entities":[]} +{"text":"Messina 's next page client presentation .","intent":"query_avail","entities":[{"start":0,"end":7,"label":"practitioner_name"},{"start":21,"end":40,"label":"appointment_type"}]} +{"text":"we like to book a time slot.","intent":"schedule","entities":[]} +{"text":"nice to see you","intent":"bye","entities":[]} +{"text":"that isn't the right answer","intent":"negative_reply","entities":[]} +{"text":"update schedule for x-ray s.","intent":"query_avail","entities":[{"start":20,"end":25,"label":"appointment_type"}]} +{"text":"I can't compare my dean's meeting (ID #962592 ) with Ms. Mitchell .","intent":"reschedule","entities":[{"start":19,"end":33,"label":"appointment_type"},{"start":38,"end":45,"label":"appointment_id"},{"start":53,"end":65,"label":"practitioner_name"}]} +{"text":"I need to book more time to discuss my dissertation with Dr. Angela White .","intent":"schedule","entities":[{"start":57,"end":73,"label":"practitioner_name"}]} +{"text":"what do geese eat","intent":"oos","entities":[]} +{"text":"no, that is inaccurate","intent":"negative_reply","entities":[]} +{"text":"no is the answer","intent":"negative_reply","entities":[]} +{"text":"I need to set up this quick chat.","intent":"schedule","entities":[]} +{"text":"bye for now","intent":"bye","entities":[]} +{"text":"Please cancel my appointment ref #036469 .","intent":"cancel","entities":[{"start":33,"end":40,"label":"appointment_id"}]} +{"text":"how much time do i have left on my 0% apr","intent":"oos","entities":[]} +{"text":"I no longer require the meeting with Santini.","intent":"cancel","entities":[{"start":37,"end":44,"label":"practitioner_name"}]} +{"text":"I wanted to get a sales demo on the books.","intent":"schedule","entities":[{"start":18,"end":28,"label":"appointment_type"}]} +{"text":"I'm unable to make it to my course registration help with Parisi, so please cancel it. It's ID #568999.","intent":"cancel","entities":[{"start":28,"end":52,"label":"appointment_type"},{"start":58,"end":64,"label":"practitioner_name"},{"start":95,"end":102,"label":"appointment_id"}]} +{"text":"thank you for the answer","intent":"positive_reply","entities":[]} +{"text":"Can I use Green ?","intent":"schedule","entities":[{"start":10,"end":15,"label":"practitioner_name"}]} +{"text":"Display |","intent":"query_avail","entities":[]} +{"text":"I need to check my booking, number #419544 .","intent":"cancel","entities":[{"start":35,"end":42,"label":"appointment_id"}]} +{"text":"Show schedule for letter of recommendation requests.","intent":"query_avail","entities":[{"start":18,"end":50,"label":"appointment_type"}]} +{"text":"ai, how are you feeling","intent":"greeting","entities":[]} +{"text":"I'd like to cancel my appointment with Dr. Davide Monti .","intent":"cancel","entities":[{"start":39,"end":55,"label":"practitioner_name"}]} +{"text":"I have to cancel list progress review with Mr. Peterson .","intent":"cancel","entities":[{"start":22,"end":37,"label":"appointment_type"},{"start":43,"end":55,"label":"practitioner_name"}]} +{"text":"tootles","intent":"bye","entities":[]} +{"text":"Check schedule = driving lesson availability.","intent":"query_avail","entities":[{"start":17,"end":31,"label":"appointment_type"}]} +{"text":"hello there!","intent":"greeting","entities":[]} +{"text":"Can you schedule schedule postdoctoral interview for me?","intent":"schedule","entities":[{"start":26,"end":48,"label":"appointment_type"}]} +{"text":"I'd like to request a cancellation.","intent":"cancel","entities":[]} +{"text":"Get me to Professor Fontana 's schedule.","intent":"schedule","entities":[{"start":10,"end":27,"label":"practitioner_name"}]} +{"text":"no that is not right","intent":"negative_reply","entities":[]} +{"text":"request a meeting, please.","intent":"schedule","entities":[]} +{"text":"hello, friend","intent":"greeting","entities":[]} +{"text":"I'd like to substitute Young for a guest lecture .","intent":"schedule","entities":[{"start":23,"end":28,"label":"practitioner_name"},{"start":35,"end":48,"label":"appointment_type"}]} +{"text":"will we push my appointment #600778 to the afternoon?","intent":"reschedule","entities":[{"start":28,"end":35,"label":"appointment_id"}]} +{"text":"I must speak to Prof. Bennett .","intent":"schedule","entities":[{"start":16,"end":29,"label":"practitioner_name"}]} +{"text":"I want to schedule a faculty candidate interview with Lee.","intent":"schedule","entities":[{"start":21,"end":48,"label":"appointment_type"},{"start":54,"end":57,"label":"practitioner_name"}]} +{"text":"My apologies, but I must cancel my postdoctoral interview with Dott. Marco Conti, ID #192560.","intent":"cancel","entities":[{"start":35,"end":57,"label":"appointment_type"},{"start":63,"end":80,"label":"practitioner_name"},{"start":85,"end":92,"label":"appointment_id"}]} +{"text":"hiya!","intent":"greeting","entities":[]} +{"text":"Show the booking calendar.","intent":"query_avail","entities":[]} +{"text":"I need a link with Evans .","intent":"schedule","entities":[{"start":19,"end":24,"label":"practitioner_name"}]} +{"text":"that can't be true","intent":"negative_reply","entities":[]} +{"text":"Cancel my one-on-one with Ms. Davis.","intent":"cancel","entities":[{"start":26,"end":35,"label":"practitioner_name"}]} +{"text":"I need an appointment for Baker .","intent":"schedule","entities":[{"start":26,"end":31,"label":"practitioner_name"}]} +{"text":"Free .","intent":"query_avail","entities":[]} +{"text":"i have to go but it was nice talking again!","intent":"bye","entities":[]} +{"text":"thanks for helping me out today","intent":"positive_reply","entities":[]} +{"text":"Appointment availability.","intent":"query_avail","entities":[]} +{"text":"Openings with Gatti for a mental health counseling |","intent":"query_avail","entities":[{"start":14,"end":19,"label":"practitioner_name"},{"start":26,"end":50,"label":"appointment_type"}]} diff --git a/data/raw/validation.jsonl b/data/raw/validation.jsonl new file mode 100644 index 0000000..939287f --- /dev/null +++ b/data/raw/validation.jsonl @@ -0,0 +1,438 @@ +{"text":"this was a nice conversation","intent":"bye","entities":[]} +{"text":"thanks for your help!","intent":"positive_reply","entities":[]} +{"text":"updated for open times.","intent":"query_avail","entities":[]} +{"text":"Openings : a presentation rehearsal with Greco tomorrow.","intent":"query_avail","entities":[{"start":13,"end":35,"label":"appointment_type"},{"start":41,"end":46,"label":"practitioner_name"}]} +{"text":"how can i use make up to cover a cut on my cheek","intent":"oos","entities":[]} +{"text":"that's not true","intent":"negative_reply","entities":[]} +{"text":"Parisi's open slots for a research seminar.","intent":"query_avail","entities":[{"start":0,"end":6,"label":"practitioner_name"},{"start":26,"end":42,"label":"appointment_type"}]} +{"text":"Please delete appointment #861346, my fieldwork briefing with Professor Nowak.","intent":"cancel","entities":[{"start":26,"end":33,"label":"appointment_id"},{"start":38,"end":56,"label":"appointment_type"},{"start":72,"end":77,"label":"practitioner_name"}]} +{"text":"I need to remember the time of appointment #339055 .","intent":"reschedule","entities":[{"start":43,"end":50,"label":"appointment_id"}]} +{"text":"Find an alternative","intent":"query_avail","entities":[]} +{"text":"find a couple's therapist who can help me and my wife","intent":"oos","entities":[]} +{"text":"Prof. Murphy's schedule for a study group meeting.","intent":"query_avail","entities":[{"start":0,"end":12,"label":"practitioner_name"},{"start":30,"end":49,"label":"appointment_type"}]} +{"text":"Cancel my upcoming session.","intent":"cancel","entities":[]} +{"text":"I'm writing to inform you of the cancellation of my code review with Dr. Stefano Marchese , ID #079183 :","intent":"cancel","entities":[{"start":52,"end":63,"label":"appointment_type"},{"start":69,"end":89,"label":"practitioner_name"},{"start":95,"end":102,"label":"appointment_id"}]} +{"text":"Find list immunization shot times.","intent":"query_avail","entities":[{"start":10,"end":27,"label":"appointment_type"}]} +{"text":"six open slots.","intent":"query_avail","entities":[]} +{"text":"Availability of Dr. Giovanni Galli becomes a internship interview .","intent":"query_avail","entities":[{"start":16,"end":34,"label":"practitioner_name"},{"start":45,"end":65,"label":"appointment_type"}]} +{"text":"I have to cancel my flight","intent":"cancel","entities":[]} +{"text":"I have a conflict with our current appointment time.","intent":"reschedule","entities":[]} +{"text":"Set = research seminar .","intent":"schedule","entities":[{"start":6,"end":22,"label":"appointment_type"}]} +{"text":"I no longer need my advising session with Harris.","intent":"cancel","entities":[{"start":42,"end":48,"label":"practitioner_name"}]} +{"text":"Book a lab session with Bianchi ","intent":"schedule","entities":[{"start":24,"end":31,"label":"practitioner_name"}]} +{"text":"I'd like your book an appointment.","intent":"schedule","entities":[]} +{"text":"I want to have a session.","intent":"schedule","entities":[]} +{"text":"I need to find another time for my registration appointment with Dr. Santoro.","intent":"reschedule","entities":[{"start":35,"end":59,"label":"appointment_type"},{"start":65,"end":76,"label":"practitioner_name"}]} +{"text":"hey","intent":"greeting","entities":[]} +{"text":"I want to schedule a meeting with Galli.","intent":"schedule","entities":[{"start":34,"end":39,"label":"practitioner_name"}]} +{"text":"• move my meeting, ID #000317 .","intent":"reschedule","entities":[{"start":22,"end":29,"label":"appointment_id"}]} +{"text":"academic integrity hearing : check.","intent":"query_avail","entities":[{"start":0,"end":26,"label":"appointment_type"}]} +{"text":"I have to cancel appointment #692463 = Collins .","intent":"cancel","entities":[{"start":29,"end":36,"label":"appointment_id"},{"start":39,"end":46,"label":"practitioner_name"}]} +{"text":"Delete my !","intent":"cancel","entities":[]} +{"text":"Check for internship check-in openings.","intent":"query_avail","entities":[{"start":10,"end":29,"label":"appointment_type"}]} +{"text":"I have appointment #568999 with Leone that needs rescheduling.","intent":"reschedule","entities":[{"start":19,"end":26,"label":"appointment_id"},{"start":32,"end":37,"label":"practitioner_name"}]} +{"text":"that's inaccurate","intent":"negative_reply","entities":[]} +{"text":"What is free.","intent":"query_avail","entities":[]} +{"text":"Delete your appointment.","intent":"cancel","entities":[]} +{"text":"Please cancel any appointment for the guest lecture .","intent":"cancel","entities":[{"start":38,"end":51,"label":"appointment_type"}]} +{"text":"listing the available times.","intent":"query_avail","entities":[]} +{"text":"Check openings for a massage therapy with Miller ;","intent":"query_avail","entities":[{"start":21,"end":36,"label":"appointment_type"},{"start":42,"end":48,"label":"practitioner_name"}]} +{"text":"I'm afraid I have to cancel my meeting.","intent":"cancel","entities":[]} +{"text":"I'm trying to schedule a health screening with Esposito .","intent":"schedule","entities":[{"start":25,"end":41,"label":"appointment_type"},{"start":47,"end":55,"label":"practitioner_name"}]} +{"text":"hello, how's your day","intent":"greeting","entities":[]} +{"text":"you need to move my meeting.","intent":"reschedule","entities":[]} +{"text":"Cancel it.","intent":"cancel","entities":[]} +{"text":"Please proceed with cancelling my appointment with Fiore.","intent":"cancel","entities":[{"start":51,"end":56,"label":"practitioner_name"}]} +{"text":"later, thanks for chatting","intent":"bye","entities":[]} +{"text":"candidates must have a ultrasound with Sanna this week.","intent":"schedule","entities":[{"start":23,"end":33,"label":"appointment_type"},{"start":39,"end":44,"label":"practitioner_name"}]} +{"text":"I will not be able to attend my scheduled patient ID #684466 .","intent":"cancel","entities":[{"start":53,"end":60,"label":"appointment_id"}]} +{"text":"My plans have changed, can I move my grant proposal meeting?","intent":"reschedule","entities":[{"start":37,"end":59,"label":"appointment_type"}]} +{"text":"thanks for chatting, later","intent":"bye","entities":[]} +{"text":"List times to meet with Basile.","intent":"query_avail","entities":[{"start":24,"end":30,"label":"practitioner_name"}]} +{"text":"Availability on July 30","intent":"query_avail","entities":[]} +{"text":"Please take my advising session off the schedule.","intent":"cancel","entities":[{"start":15,"end":31,"label":"appointment_type"}]} +{"text":"I will not be able to attend my scheduled meeting, ID #842972.","intent":"cancel","entities":[{"start":54,"end":61,"label":"appointment_id"}]} +{"text":"Can anyone get a different time for my meeting with Richardson ?","intent":"reschedule","entities":[{"start":52,"end":62,"label":"practitioner_name"}]} +{"text":"peace out","intent":"bye","entities":[]} +{"text":"My apologies, but I must cancel my psychologist appointment with Wright , ID #077573 }","intent":"cancel","entities":[{"start":35,"end":59,"label":"appointment_type"},{"start":65,"end":71,"label":"practitioner_name"},{"start":77,"end":84,"label":"appointment_id"}]} +{"text":"Please cancel my appointment, ref #470394 >","intent":"cancel","entities":[{"start":34,"end":41,"label":"appointment_id"}]} +{"text":"appreciate it","intent":"positive_reply","entities":[]} +{"text":"of course","intent":"positive_reply","entities":[]} +{"text":"I'd like to change the time of my progress review.","intent":"reschedule","entities":[{"start":34,"end":49,"label":"appointment_type"}]} +{"text":"Check Bianchi check schedule for a presentation rehearsal on Friday.","intent":"query_avail","entities":[{"start":6,"end":13,"label":"practitioner_name"},{"start":35,"end":57,"label":"appointment_type"}]} +{"text":"Change my vehicle inspection \\","intent":"reschedule","entities":[{"start":10,"end":28,"label":"appointment_type"}]} +{"text":"I'm afraid I have to move my meeting, ref #641930.","intent":"reschedule","entities":[{"start":42,"end":49,"label":"appointment_id"}]} +{"text":"I need to book a client call.","intent":"schedule","entities":[{"start":17,"end":28,"label":"appointment_type"}]} +{"text":"I wish to schedule a residence life meeting with Sanna .","intent":"schedule","entities":[{"start":21,"end":43,"label":"appointment_type"},{"start":49,"end":54,"label":"practitioner_name"}]} +{"text":"i have to get going","intent":"bye","entities":[]} +{"text":"Get me a faculty review with Torres.","intent":"schedule","entities":[{"start":9,"end":23,"label":"appointment_type"},{"start":29,"end":35,"label":"practitioner_name"}]} +{"text":"how is your day","intent":"greeting","entities":[]} +{"text":"Professor Barbieri availability |","intent":"query_avail","entities":[{"start":0,"end":18,"label":"practitioner_name"}]} +{"text":"I'd wanted to request a cancellation.","intent":"cancel","entities":[]} +{"text":"roger that","intent":"positive_reply","entities":[]} +{"text":"Times available to |","intent":"query_avail","entities":[]} +{"text":"I have to pull hold of my dean's meeting .","intent":"cancel","entities":[{"start":26,"end":40,"label":"appointment_type"}]} +{"text":"The function #660065 is cancelled.","intent":"cancel","entities":[{"start":13,"end":20,"label":"appointment_id"}]} +{"text":"that is not right","intent":"negative_reply","entities":[]} +{"text":"Availability , July 21st.","intent":"query_avail","entities":[]} +{"text":"I have an language exchange with Dr. Davide Monti that we need to cancel.","intent":"cancel","entities":[{"start":10,"end":27,"label":"appointment_type"},{"start":33,"end":49,"label":"practitioner_name"}]} +{"text":"Get me on Rizzo application schedule.","intent":"schedule","entities":[{"start":10,"end":15,"label":"practitioner_name"}]} +{"text":"My client session (ID #230130 ) has a time conflict.","intent":"reschedule","entities":[{"start":22,"end":29,"label":"appointment_id"}]} +{"text":"Morgan 's next available .","intent":"query_avail","entities":[{"start":0,"end":6,"label":"practitioner_name"}]} +{"text":"Shift begins meeting with Baker to 3pm.","intent":"reschedule","entities":[{"start":26,"end":31,"label":"practitioner_name"}]} +{"text":"What are Rossetti 's office ?","intent":"query_avail","entities":[{"start":9,"end":17,"label":"practitioner_name"}]} +{"text":"regards","intent":"bye","entities":[]} +{"text":"A conflict has come up for resolving #881822 .","intent":"reschedule","entities":[{"start":37,"end":44,"label":"appointment_id"}]} +{"text":"Open appointment slots.","intent":"query_avail","entities":[]} +{"text":"I must reschedule my appointment, namely #004766 .","intent":"reschedule","entities":[{"start":41,"end":48,"label":"appointment_id"}]} +{"text":"My apologies, therefore I must cancel my annual physical with Galli , ID #334313 .","intent":"cancel","entities":[{"start":41,"end":56,"label":"appointment_type"},{"start":62,"end":67,"label":"practitioner_name"},{"start":73,"end":80,"label":"appointment_id"}]} +{"text":"you're right","intent":"positive_reply","entities":[]} +{"text":"Let's set up a time zone connect.","intent":"schedule","entities":[]} +{"text":"how is my ai doing","intent":"greeting","entities":[]} +{"text":"give me a list of the top 10 tennis players in the world","intent":"oos","entities":[]} +{"text":"you want to set up a internship check-in .","intent":"schedule","entities":[{"start":21,"end":40,"label":"appointment_type"}]} +{"text":"Book a dentist appointment.","intent":"schedule","entities":[]} +{"text":"I must make the meeting with Professor Sala , so I'm cancelling.","intent":"cancel","entities":[{"start":29,"end":43,"label":"practitioner_name"}]} +{"text":"Reschedule my personal training session , appointment ID #798223 ","intent":"reschedule","entities":[{"start":14,"end":39,"label":"appointment_type"},{"start":57,"end":64,"label":"appointment_id"}]} +{"text":"Cancel my one-on-one file Dott. Paolo Farina .","intent":"cancel","entities":[{"start":26,"end":44,"label":"practitioner_name"}]} +{"text":"i appreciate the assistance","intent":"positive_reply","entities":[]} +{"text":"what is the most rented movie this week","intent":"oos","entities":[]} +{"text":"I won't am able to make it.","intent":"reschedule","entities":[]} +{"text":"Reschedule the tenure meeting with Dr. Giordano, please.","intent":"reschedule","entities":[{"start":15,"end":29,"label":"appointment_type"},{"start":35,"end":47,"label":"practitioner_name"}]} +{"text":"Cancel the appointment for me.","intent":"cancel","entities":[]} +{"text":"Display Villa 's free times for a legal consultation |","intent":"query_avail","entities":[{"start":8,"end":13,"label":"practitioner_name"},{"start":34,"end":52,"label":"appointment_type"}]} +{"text":"I refuse to cancel my appointment #717513 with Dr. Wilson .","intent":"cancel","entities":[{"start":34,"end":41,"label":"appointment_id"},{"start":47,"end":57,"label":"practitioner_name"}]} +{"text":"nice to speak with you","intent":"bye","entities":[]} +{"text":"Cancel booking #675180, my career counseling with Dr. Martinez.","intent":"cancel","entities":[{"start":15,"end":22,"label":"appointment_id"},{"start":27,"end":44,"label":"appointment_type"},{"start":50,"end":62,"label":"practitioner_name"}]} +{"text":"Is it too risky to change my appointment time?","intent":"reschedule","entities":[]} +{"text":"Dott.ssa Elena Longo 's unavailable this week.","intent":"query_avail","entities":[{"start":0,"end":20,"label":"practitioner_name"}]} +{"text":"Free text with Dr. Williams this afternoon.","intent":"query_avail","entities":[{"start":15,"end":27,"label":"practitioner_name"}]} +{"text":"I have to cancel.","intent":"cancel","entities":[]} +{"text":"Display calendar for oral exams.","intent":"query_avail","entities":[{"start":21,"end":30,"label":"appointment_type"}]} +{"text":"Set up grant proposal meeting and Testa .","intent":"schedule","entities":[{"start":7,"end":29,"label":"appointment_type"},{"start":34,"end":39,"label":"practitioner_name"}]} +{"text":"I need a thesis defense rehearsal slot.","intent":"schedule","entities":[{"start":9,"end":33,"label":"appointment_type"}]} +{"text":"identify me with Dr. Peterson .","intent":"schedule","entities":[{"start":17,"end":29,"label":"practitioner_name"}]} +{"text":"List all openings for a post-exam review :","intent":"query_avail","entities":[{"start":24,"end":40,"label":"appointment_type"}]} +{"text":"Free mail with Professor Bruno this afternoon.","intent":"query_avail","entities":[{"start":15,"end":30,"label":"practitioner_name"}]} +{"text":"Reschedule my first meeting.","intent":"reschedule","entities":[]} +{"text":"goodbye!","intent":"bye","entities":[]} +{"text":"Remove my appointment in the calendar.","intent":"cancel","entities":[]} +{"text":"that is not false","intent":"positive_reply","entities":[]} +{"text":"I need to change appointment #239161.","intent":"reschedule","entities":[{"start":29,"end":36,"label":"appointment_id"}]} +{"text":"it was nice to converse with you","intent":"bye","entities":[]} +{"text":"Available times for a transfer credit evaluation.","intent":"query_avail","entities":[{"start":22,"end":48,"label":"appointment_type"}]} +{"text":"I need an appointment with Professor Pellegrino.","intent":"schedule","entities":[{"start":27,"end":47,"label":"practitioner_name"}]} +{"text":"that is not the case","intent":"negative_reply","entities":[]} +{"text":"Check for openings.","intent":"query_avail","entities":[]} +{"text":"start a portfolio on venture capital funding for me to look over","intent":"oos","entities":[]} +{"text":"I need an career counseling |","intent":"schedule","entities":[{"start":10,"end":27,"label":"appointment_type"}]} +{"text":"Find an algorithm for a student advising .","intent":"query_avail","entities":[{"start":24,"end":40,"label":"appointment_type"}]} +{"text":"Change my appointment with Prof. David Johnson every Wednesday.","intent":"reschedule","entities":[{"start":27,"end":46,"label":"practitioner_name"}]} +{"text":"i'm thankful","intent":"positive_reply","entities":[]} +{"text":"I need to reschedule something.","intent":"reschedule","entities":[]} +{"text":"I'd like another reschedule.","intent":"reschedule","entities":[]} +{"text":"it was nice to chat","intent":"bye","entities":[]} +{"text":"adios","intent":"bye","entities":[]} +{"text":"Cancel my meeting with you Moore .","intent":"cancel","entities":[{"start":27,"end":32,"label":"practitioner_name"}]} +{"text":"they want to reschedule booking #990686 .","intent":"reschedule","entities":[{"start":32,"end":39,"label":"appointment_id"}]} +{"text":"I need to book a time frame discuss my dissertation with Thompson .","intent":"schedule","entities":[{"start":57,"end":65,"label":"practitioner_name"}]} +{"text":"Cancel my meeting _ Professor Ricci .","intent":"cancel","entities":[{"start":30,"end":35,"label":"practitioner_name"}]} +{"text":"I need to talk to my advisor.","intent":"schedule","entities":[]} +{"text":"follow the booking calendar.","intent":"query_avail","entities":[]} +{"text":"energy availability.","intent":"query_avail","entities":[]} +{"text":"Please cancel and rebook my schedule","intent":"reschedule","entities":[]} +{"text":"I decided to delete a scheduled meeting.","intent":"cancel","entities":[]} +{"text":"find out how many latin scholars there are at the university of chicago","intent":"oos","entities":[]} +{"text":"Mancini academic integrity hearing ; check.","intent":"query_avail","entities":[{"start":0,"end":7,"label":"practitioner_name"},{"start":8,"end":34,"label":"appointment_type"}]} +{"text":"please print out copies of my resume","intent":"oos","entities":[]} +{"text":"List schedule openings for Mr. Jones.","intent":"query_avail","entities":[{"start":27,"end":36,"label":"practitioner_name"}]} +{"text":"Change by appointment.","intent":"reschedule","entities":[]} +{"text":"Dr. Williams 's only available slot.","intent":"query_avail","entities":[{"start":0,"end":12,"label":"practitioner_name"}]} +{"text":"are things going well for you","intent":"greeting","entities":[]} +{"text":"Can we schedule my appointment #564270 to the afternoon?","intent":"reschedule","entities":[{"start":31,"end":38,"label":"appointment_id"}]} +{"text":"Cancel !","intent":"cancel","entities":[]} +{"text":"My email #281149 , needs to be cancelled.","intent":"cancel","entities":[{"start":9,"end":16,"label":"appointment_id"}]} +{"text":"will you tell me how the ai is doing","intent":"greeting","entities":[]} +{"text":"thank you ever so much for that!","intent":"positive_reply","entities":[]} +{"text":"Arrange professor health screening with professor Grassi .","intent":"schedule","entities":[{"start":18,"end":34,"label":"appointment_type"},{"start":50,"end":56,"label":"practitioner_name"}]} +{"text":"thanks for the help","intent":"positive_reply","entities":[]} +{"text":"Calendar for next year","intent":"query_avail","entities":[]} +{"text":"I'm busy #387449 .","intent":"cancel","entities":[{"start":9,"end":16,"label":"appointment_id"}]} +{"text":"List possible openings for a office hours .","intent":"query_avail","entities":[{"start":29,"end":41,"label":"appointment_type"}]} +{"text":"Can I get an appointment?","intent":"schedule","entities":[]} +{"text":"howdy, what's new","intent":"greeting","entities":[]} +{"text":"that's definitely false","intent":"negative_reply","entities":[]} +{"text":"always nice to talk to you","intent":"bye","entities":[]} +{"text":"I need to cancel appointment #737947 with Esposito .","intent":"cancel","entities":[{"start":29,"end":36,"label":"appointment_id"},{"start":42,"end":50,"label":"practitioner_name"}]} +{"text":"get me articles on earthquake preparedness","intent":"oos","entities":[]} +{"text":"that would be a no","intent":"negative_reply","entities":[]} +{"text":"List support for a letter of recommendation request with Mr. Peterson .","intent":"query_avail","entities":[{"start":19,"end":51,"label":"appointment_type"},{"start":57,"end":69,"label":"practitioner_name"}]} +{"text":"I need to have a new time for my postdoctoral interview .","intent":"reschedule","entities":[{"start":33,"end":55,"label":"appointment_type"}]} +{"text":"I want to arrange a faculty meeting.","intent":"schedule","entities":[{"start":20,"end":35,"label":"appointment_type"}]} +{"text":"i am thankful for the answer","intent":"positive_reply","entities":[]} +{"text":"Schedule a massage therapy for my group with Professor De Luca.","intent":"schedule","entities":[{"start":11,"end":26,"label":"appointment_type"},{"start":45,"end":62,"label":"practitioner_name"}]} +{"text":"you're the best!","intent":"positive_reply","entities":[]} +{"text":"I require matching qualifying exam with Dott. Marco Conti .","intent":"schedule","entities":[{"start":19,"end":34,"label":"appointment_type"},{"start":40,"end":57,"label":"practitioner_name"}]} +{"text":"how many miles does my car currently have","intent":"oos","entities":[]} +{"text":"which movie is it that someone says perfectly balanced as all things should be","intent":"oos","entities":[]} +{"text":"how are things with you","intent":"greeting","entities":[]} +{"text":"great, thanks!","intent":"positive_reply","entities":[]} +{"text":"Free times each week.","intent":"query_avail","entities":[]} +{"text":"Regarding appointment #934189, I want to cancel.","intent":"cancel","entities":[{"start":22,"end":29,"label":"appointment_id"}]} +{"text":"good answer, thanks for providing it","intent":"positive_reply","entities":[]} +{"text":"Shift my pet checkup to another directory","intent":"reschedule","entities":[{"start":9,"end":20,"label":"appointment_type"}]} +{"text":"Shift my research seminar to another day.","intent":"reschedule","entities":[{"start":9,"end":25,"label":"appointment_type"}]} +{"text":"Could you find a new time for posting course planning ?","intent":"reschedule","entities":[{"start":38,"end":53,"label":"appointment_type"}]} +{"text":"Display Green 's appointment times for a eye exam .","intent":"query_avail","entities":[{"start":8,"end":13,"label":"practitioner_name"},{"start":41,"end":49,"label":"appointment_type"}]} +{"text":"Please remove the workshop and Torres from my schedule.","intent":"cancel","entities":[{"start":18,"end":26,"label":"appointment_type"},{"start":31,"end":37,"label":"practitioner_name"}]} +{"text":"the answer to that is affirmative","intent":"positive_reply","entities":[]} +{"text":"I'd like to change the time of execution progress review .","intent":"reschedule","entities":[{"start":41,"end":56,"label":"appointment_type"}]} +{"text":"many times to meet with Longo .","intent":"query_avail","entities":[{"start":24,"end":29,"label":"practitioner_name"}]} +{"text":"I need to align my practicum supervision with Professor Sala (ID: #676483 ).","intent":"cancel","entities":[{"start":19,"end":40,"label":"appointment_type"},{"start":46,"end":60,"label":"practitioner_name"},{"start":66,"end":73,"label":"appointment_id"}]} +{"text":"yes that's correct","intent":"positive_reply","entities":[]} +{"text":"Book me with Basile.","intent":"schedule","entities":[{"start":13,"end":19,"label":"practitioner_name"}]} +{"text":"hey how's it hanging","intent":"greeting","entities":[]} +{"text":"Find available meeting address with Dott.ssa Chiara Negri .","intent":"query_avail","entities":[{"start":36,"end":57,"label":"practitioner_name"}]} +{"text":"that is overwhelmingly false","intent":"negative_reply","entities":[]} +{"text":"I'd like to create a course planning .","intent":"schedule","entities":[{"start":21,"end":36,"label":"appointment_type"}]} +{"text":"Book me write a annual physical with Turner .","intent":"schedule","entities":[{"start":16,"end":31,"label":"appointment_type"},{"start":37,"end":43,"label":"practitioner_name"}]} +{"text":"Find new time for #536444.","intent":"reschedule","entities":[{"start":18,"end":25,"label":"appointment_id"}]} +{"text":"vacuum out the car","intent":"oos","entities":[]} +{"text":"List = free times for Professor Marino .","intent":"query_avail","entities":[{"start":22,"end":38,"label":"practitioner_name"}]} +{"text":"The meeting with Dott. Paolo Farina (ref #928021 ) remains no longer required.","intent":"cancel","entities":[{"start":17,"end":35,"label":"practitioner_name"},{"start":41,"end":48,"label":"appointment_id"}]} +{"text":"I'd like to book a project kickoff for next week.","intent":"schedule","entities":[{"start":19,"end":34,"label":"appointment_type"}]} +{"text":"I want to cancel my final project review appointment.","intent":"cancel","entities":[{"start":20,"end":40,"label":"appointment_type"}]} +{"text":"Cancel my therapy session.","intent":"cancel","entities":[]} +{"text":"Move my progress review with Testa to Friday.","intent":"reschedule","entities":[{"start":8,"end":23,"label":"appointment_type"},{"start":29,"end":34,"label":"practitioner_name"}]} +{"text":"hello, how is it going","intent":"greeting","entities":[]} +{"text":"Let's schedule entry thesis committee meeting .","intent":"schedule","entities":[{"start":21,"end":45,"label":"appointment_type"}]} +{"text":"Please void my scheduled .","intent":"cancel","entities":[]} +{"text":"bonjour","intent":"greeting","entities":[]} +{"text":"hi there, how are things","intent":"greeting","entities":[]} +{"text":"My plans have changed and I have to cancel.","intent":"cancel","entities":[]} +{"text":"I'd like to cancel the meeting I have with Bell ?","intent":"cancel","entities":[{"start":43,"end":47,"label":"practitioner_name"}]} +{"text":"hey how's it going","intent":"greeting","entities":[]} +{"text":"Book a qualifying exam with Prof. David Johnson as soon as possible.","intent":"schedule","entities":[{"start":7,"end":22,"label":"appointment_type"},{"start":28,"end":47,"label":"practitioner_name"}]} +{"text":"Check Dr. Smith's calendar for a office hours.","intent":"query_avail","entities":[{"start":6,"end":15,"label":"practitioner_name"},{"start":33,"end":45,"label":"appointment_type"}]} +{"text":"we need to cancel my defense rehearsal.","intent":"cancel","entities":[]} +{"text":"List open slots.","intent":"query_avail","entities":[]} +{"text":"what is a semitic language","intent":"oos","entities":[]} +{"text":"• to speak to Mr. Rogers .","intent":"schedule","entities":[{"start":14,"end":24,"label":"practitioner_name"}]} +{"text":"Let's set up a time to connect.","intent":"schedule","entities":[]} +{"text":"Can they schedule a meeting?","intent":"schedule","entities":[]} +{"text":"Free times add a lab cleanup next week.","intent":"query_avail","entities":[{"start":17,"end":28,"label":"appointment_type"}]} +{"text":"Availability for colloquio di orientamento s this ?","intent":"query_avail","entities":[{"start":17,"end":42,"label":"appointment_type"}]} +{"text":"thank you a lot for that answer","intent":"positive_reply","entities":[]} +{"text":"haircut availability.","intent":"query_avail","entities":[{"start":0,"end":7,"label":"appointment_type"}]} +{"text":"false for sure","intent":"negative_reply","entities":[]} +{"text":"all the free slots on the calendar.","intent":"query_avail","entities":[]} +{"text":"I have to reschedule my immunization shot with Dr. Ferrara from tomorrow to tomorrow week.","intent":"reschedule","entities":[{"start":24,"end":41,"label":"appointment_type"},{"start":47,"end":58,"label":"practitioner_name"}]} +{"text":"hi, how are you today","intent":"greeting","entities":[]} +{"text":"I'm writing to inform you of the cancellation of my peer tutoring with Wright, ID #682163.","intent":"cancel","entities":[{"start":52,"end":65,"label":"appointment_type"},{"start":71,"end":77,"label":"practitioner_name"},{"start":82,"end":89,"label":"appointment_id"}]} +{"text":"I need to change my progress review with Mrs. Evans, ID is #962592.","intent":"reschedule","entities":[{"start":20,"end":35,"label":"appointment_type"},{"start":41,"end":51,"label":"practitioner_name"},{"start":59,"end":66,"label":"appointment_id"}]} +{"text":"Openings on the calendar.","intent":"query_avail","entities":[]} +{"text":"Can we push my appointment #150062 to the server","intent":"reschedule","entities":[{"start":27,"end":34,"label":"appointment_id"}]} +{"text":"Show openings for a oral exam this relation","intent":"query_avail","entities":[{"start":20,"end":29,"label":"appointment_type"}]} +{"text":"I would like to arrange course selection advising with Mr. Adams .","intent":"schedule","entities":[{"start":25,"end":50,"label":"appointment_type"},{"start":56,"end":65,"label":"practitioner_name"}]} +{"text":"Reschedule my meeting with Russo regarding my thesis.","intent":"reschedule","entities":[{"start":27,"end":32,"label":"practitioner_name"}]} +{"text":"Postpone my request #113852 .","intent":"reschedule","entities":[{"start":20,"end":27,"label":"appointment_id"}]} +{"text":"Cancel my office hours appointment with Prof. Parker |","intent":"cancel","entities":[{"start":40,"end":52,"label":"practitioner_name"}]} +{"text":"see ya!","intent":"bye","entities":[]} +{"text":"that's totally wrong!","intent":"negative_reply","entities":[]} +{"text":"should we reschedule? I'm referring to appointment #821730 .","intent":"reschedule","entities":[{"start":51,"end":58,"label":"appointment_id"}]} +{"text":"Please confirm cancellation for #420831.","intent":"cancel","entities":[{"start":32,"end":39,"label":"appointment_id"}]} +{"text":"I won't make it, so please cancel.","intent":"cancel","entities":[]} +{"text":"} book a meeting with Cook .","intent":"schedule","entities":[{"start":22,"end":26,"label":"practitioner_name"}]} +{"text":"Let's set up enough time to connect.","intent":"schedule","entities":[]} +{"text":"when will the daffodils bloom this year","intent":"oos","entities":[]} +{"text":"Schedule ends with Dr. Martinez .","intent":"schedule","entities":[{"start":19,"end":31,"label":"practitioner_name"}]} +{"text":"hiya","intent":"greeting","entities":[]} +{"text":"Rebook an appointment.","intent":"reschedule","entities":[]} +{"text":"tell me about personal finance","intent":"oos","entities":[]} +{"text":"vaccination ;","intent":"schedule","entities":[{"start":0,"end":11,"label":"appointment_type"}]} +{"text":"Book a study group meeting , ","intent":"schedule","entities":[{"start":7,"end":26,"label":"appointment_type"}]} +{"text":"initiate my advising session with Mrs. Evans .","intent":"reschedule","entities":[{"start":34,"end":44,"label":"practitioner_name"}]} +{"text":"I'd like the book a consultation.","intent":"schedule","entities":[]} +{"text":"Is it too late ? change my appointment time?","intent":"reschedule","entities":[]} +{"text":"Change #113852 }","intent":"reschedule","entities":[{"start":7,"end":14,"label":"appointment_id"}]} +{"text":"sorry, that is not true","intent":"negative_reply","entities":[]} +{"text":"replace slots with Prof. Garcia for a annual physical this afternoon.","intent":"query_avail","entities":[{"start":19,"end":31,"label":"practitioner_name"},{"start":38,"end":53,"label":"appointment_type"}]} +{"text":"I would like to push my appointment #684309 back by an hour.","intent":"reschedule","entities":[{"start":36,"end":43,"label":"appointment_id"}]} +{"text":"your answer was good","intent":"positive_reply","entities":[]} +{"text":"List all entries for a student feedback session with Brown .","intent":"query_avail","entities":[{"start":23,"end":47,"label":"appointment_type"},{"start":53,"end":58,"label":"practitioner_name"}]} +{"text":"Is it possible to schedule a .","intent":"schedule","entities":[]} +{"text":"what will it take to achieve world peace","intent":"oos","entities":[]} +{"text":"I wish to have a portfolio review .","intent":"schedule","entities":[{"start":17,"end":33,"label":"appointment_type"}]} +{"text":"how are you this fine day","intent":"greeting","entities":[]} +{"text":"\\ my mentorship meeting .","intent":"reschedule","entities":[{"start":5,"end":23,"label":"appointment_type"}]} +{"text":"we must reschedule my appointment, reference #795063 .","intent":"reschedule","entities":[{"start":45,"end":52,"label":"appointment_id"}]} +{"text":"Talk : Galli .","intent":"schedule","entities":[{"start":7,"end":12,"label":"practitioner_name"}]} +{"text":"List times for a writing center appointment with Dr. Lefevre.","intent":"query_avail","entities":[{"start":17,"end":43,"label":"appointment_type"},{"start":49,"end":60,"label":"practitioner_name"}]} +{"text":"Openings in lunar calendar.","intent":"query_avail","entities":[]} +{"text":"Due to unforeseen circumstances, I have to make appointment #230130 .","intent":"cancel","entities":[{"start":60,"end":67,"label":"appointment_id"}]} +{"text":"I shall no longer make my meeting #310528 .","intent":"reschedule","entities":[{"start":34,"end":41,"label":"appointment_id"}]} +{"text":"Let's move through major declaration meeting .","intent":"reschedule","entities":[{"start":19,"end":44,"label":"appointment_type"}]} +{"text":"Book a new ?","intent":"schedule","entities":[]} +{"text":"how much is this years model of my car cost","intent":"oos","entities":[]} +{"text":"Can I make an appointment _ a dean's meeting ?","intent":"schedule","entities":[{"start":30,"end":44,"label":"appointment_type"}]} +{"text":"it was great to speak with you","intent":"bye","entities":[]} +{"text":"That time no longer works on me.","intent":"reschedule","entities":[]} +{"text":"clients can't attend the final presentation .","intent":"reschedule","entities":[{"start":25,"end":43,"label":"appointment_type"}]} +{"text":"Set up a tutorial program Brown .","intent":"schedule","entities":[{"start":26,"end":31,"label":"practitioner_name"}]} +{"text":"Create a new meeting.","intent":"schedule","entities":[]} +{"text":"Book me for scheduling grade review with Dr. Martinez .","intent":"schedule","entities":[{"start":23,"end":35,"label":"appointment_type"},{"start":41,"end":53,"label":"practitioner_name"}]} +{"text":"check my booking.","intent":"cancel","entities":[]} +{"text":"Find an empty slot for a honors thesis meeting .","intent":"schedule","entities":[{"start":25,"end":46,"label":"appointment_type"}]} +{"text":"I need to change the time of my defense rehearsal with Dr. Davide Monti.","intent":"reschedule","entities":[{"start":55,"end":71,"label":"practitioner_name"}]} +{"text":"Can we change my tutorial session time?","intent":"reschedule","entities":[]} +{"text":"Book a lab session : Testa .","intent":"schedule","entities":[{"start":21,"end":26,"label":"practitioner_name"}]} +{"text":"what year was jane austen born","intent":"oos","entities":[]} +{"text":"no, that is wrong","intent":"negative_reply","entities":[]} +{"text":"I need to cancel my appointments with Dott.ssa Chiara Negri .","intent":"cancel","entities":[{"start":38,"end":59,"label":"practitioner_name"}]} +{"text":"Cancel my messaging session with Russo .","intent":"cancel","entities":[{"start":33,"end":38,"label":"practitioner_name"}]} +{"text":"good to see you","intent":"greeting","entities":[]} +{"text":"that's a yes from me","intent":"positive_reply","entities":[]} +{"text":"Change my appointment with Dott.ssa Valentina Bellini on Wednesday.","intent":"reschedule","entities":[{"start":27,"end":53,"label":"practitioner_name"}]} +{"text":"it was lovely to speak with you","intent":"bye","entities":[]} +{"text":"I'm cancelling. The password is #018673 .","intent":"cancel","entities":[{"start":32,"end":39,"label":"appointment_id"}]} +{"text":"I have provided #568999 with Professor Schmidt that needs rescheduling.","intent":"reschedule","entities":[{"start":16,"end":23,"label":"appointment_id"},{"start":29,"end":46,"label":"practitioner_name"}]} +{"text":"Regarding appointment #623599 , I decided to change it.","intent":"reschedule","entities":[{"start":22,"end":29,"label":"appointment_id"}]} +{"text":"I would like not change my appointment, ID #222382 .","intent":"reschedule","entities":[{"start":43,"end":50,"label":"appointment_id"}]} +{"text":"Book mental health counseling ","intent":"schedule","entities":[{"start":5,"end":29,"label":"appointment_type"}]} +{"text":"When is Pellegrini free for example portfolio review .","intent":"query_avail","entities":[{"start":8,"end":18,"label":"practitioner_name"},{"start":36,"end":52,"label":"appointment_type"}]} +{"text":"Please cancel my attendance for the research group meeting.","intent":"cancel","entities":[{"start":36,"end":58,"label":"appointment_type"}]} +{"text":"that is a completely false statement","intent":"negative_reply","entities":[]} +{"text":"Schedule my oral examinations","intent":"schedule","entities":[]} +{"text":"I need \\ cancel booking #004766 .","intent":"cancel","entities":[{"start":24,"end":31,"label":"appointment_id"}]} +{"text":"see you later!","intent":"bye","entities":[]} +{"text":"why do we dream","intent":"oos","entities":[]} +{"text":"Find an opening.","intent":"query_avail","entities":[]} +{"text":"I have to reschedule my project update with Conti from thursday to next week.","intent":"reschedule","entities":[{"start":24,"end":38,"label":"appointment_type"},{"start":44,"end":49,"label":"practitioner_name"}]} +{"text":"I want to reschedule my talk with Nowak .","intent":"reschedule","entities":[{"start":34,"end":39,"label":"practitioner_name"}]} +{"text":"Dr. King availability check.","intent":"query_avail","entities":[{"start":0,"end":8,"label":"practitioner_name"}]} +{"text":"visitors need to make an appointment.","intent":"schedule","entities":[]} +{"text":"Ms. Davis 's free documentation for a tenure meeting today.","intent":"query_avail","entities":[{"start":0,"end":9,"label":"practitioner_name"},{"start":38,"end":52,"label":"appointment_type"}]} +{"text":"an appointment is no longer needed.","intent":"cancel","entities":[]} +{"text":"I want to change my password with Baker .","intent":"reschedule","entities":[{"start":34,"end":39,"label":"practitioner_name"}]} +{"text":"Change in appointment.","intent":"reschedule","entities":[]} +{"text":"Cancel my appointment with booking reference #356641 |","intent":"cancel","entities":[{"start":45,"end":52,"label":"appointment_id"}]} +{"text":"Cancel _ academic probation meeting with Prof. Morris , please.","intent":"cancel","entities":[{"start":9,"end":35,"label":"appointment_type"},{"start":41,"end":53,"label":"practitioner_name"}]} +{"text":"is looking to schedule a course selection advising .","intent":"schedule","entities":[{"start":25,"end":50,"label":"appointment_type"}]} +{"text":"I refuse to meet.","intent":"schedule","entities":[]} +{"text":"I must create a makeup exam with Thomas this week.","intent":"schedule","entities":[{"start":16,"end":27,"label":"appointment_type"},{"start":33,"end":39,"label":"practitioner_name"}]} +{"text":"I need to cancel booking #886239.","intent":"cancel","entities":[{"start":25,"end":32,"label":"appointment_id"}]} +{"text":"I have no scheduling conflict.","intent":"reschedule","entities":[]} +{"text":"^ Evans .","intent":"schedule","entities":[{"start":2,"end":7,"label":"practitioner_name"}]} +{"text":"I need an appointment name Dott. Matteo Palmieri for a admissions interview .","intent":"schedule","entities":[{"start":27,"end":48,"label":"practitioner_name"},{"start":55,"end":75,"label":"appointment_type"}]} +{"text":"you have appointment #531844 with De Angelis that needs rescheduling.","intent":"reschedule","entities":[{"start":21,"end":28,"label":"appointment_id"},{"start":34,"end":44,"label":"practitioner_name"}]} +{"text":"Check Fiore 's calendar for advising session .","intent":"query_avail","entities":[{"start":6,"end":11,"label":"practitioner_name"},{"start":29,"end":45,"label":"appointment_type"}]} +{"text":"I'd prefer to talk to Villa .","intent":"schedule","entities":[{"start":22,"end":27,"label":"practitioner_name"}]} +{"text":"I need to reschedule my file the ID is #781883 .","intent":"reschedule","entities":[{"start":39,"end":46,"label":"appointment_id"}]} +{"text":"Book me ?","intent":"schedule","entities":[]} +{"text":"Please move to client call with Lombardi , booking ref #822368 .","intent":"reschedule","entities":[{"start":15,"end":26,"label":"appointment_type"},{"start":32,"end":40,"label":"practitioner_name"},{"start":55,"end":62,"label":"appointment_id"}]} +{"text":"My vaccination with Mr. Jones needs to be rescheduled.","intent":"reschedule","entities":[{"start":3,"end":14,"label":"appointment_type"},{"start":20,"end":29,"label":"practitioner_name"}]} +{"text":"The meeting #984794 is cancelled.","intent":"cancel","entities":[{"start":12,"end":19,"label":"appointment_id"}]} +{"text":"not right now","intent":"negative_reply","entities":[]} +{"text":"how do i get venture capital for my app","intent":"oos","entities":[]} +{"text":"Book Wright.","intent":"schedule","entities":[{"start":5,"end":11,"label":"practitioner_name"}]} +{"text":"who was the first person to discover cells","intent":"oos","entities":[]} +{"text":"i gotta say no","intent":"negative_reply","entities":[]} +{"text":"class registration }","intent":"query_avail","entities":[{"start":0,"end":18,"label":"appointment_type"}]} +{"text":"thanks, bye","intent":"bye","entities":[]} +{"text":"uh-huh","intent":"positive_reply","entities":[]} +{"text":"does denim go with anything","intent":"oos","entities":[]} +{"text":"Openings for a library research consultation or Moore tomorrow.","intent":"query_avail","entities":[{"start":15,"end":44,"label":"appointment_type"},{"start":48,"end":53,"label":"practitioner_name"}]} +{"text":"My strategy meeting with Bianchi needs always be rescheduled.","intent":"reschedule","entities":[{"start":3,"end":19,"label":"appointment_type"},{"start":25,"end":32,"label":"practitioner_name"}]} +{"text":"that is not factual","intent":"negative_reply","entities":[]} +{"text":"I have a thesis proposal meeting with Colombo that I need never move.","intent":"reschedule","entities":[{"start":9,"end":32,"label":"appointment_type"},{"start":38,"end":45,"label":"practitioner_name"}]} +{"text":"I must begin booking #988746 .","intent":"cancel","entities":[{"start":21,"end":28,"label":"appointment_id"}]} +{"text":"Can I get on Rinaldi 's ?","intent":"schedule","entities":[{"start":13,"end":20,"label":"practitioner_name"}]} +{"text":"ill pass","intent":"negative_reply","entities":[]} +{"text":"This is a list for my appointment with Bianchi .","intent":"cancel","entities":[{"start":39,"end":46,"label":"practitioner_name"}]} +{"text":"nice seeing you bye","intent":"bye","entities":[]} +{"text":"Please proceed with cancelling my appointment with Santini >","intent":"cancel","entities":[{"start":51,"end":58,"label":"practitioner_name"}]} +{"text":"that'd be a no","intent":"negative_reply","entities":[]} +{"text":"so how is everything","intent":"greeting","entities":[]} +{"text":"nice talking again, bye","intent":"bye","entities":[]} +{"text":"Dr. Williams 's free times for instance degree audit today.","intent":"query_avail","entities":[{"start":0,"end":12,"label":"practitioner_name"},{"start":40,"end":52,"label":"appointment_type"}]} +{"text":"Let's schedule a strategy meeting ;","intent":"schedule","entities":[{"start":17,"end":33,"label":"appointment_type"}]} +{"text":"Advising resource availability.","intent":"query_avail","entities":[]} +{"text":"I can't make my scheduled date","intent":"reschedule","entities":[]} +{"text":"Book an appointment for ?","intent":"schedule","entities":[]} +{"text":"patients need to change appointment #915298 .","intent":"reschedule","entities":[{"start":36,"end":43,"label":"appointment_id"}]} +{"text":"that's not right","intent":"negative_reply","entities":[]} +{"text":"I must proceed with Marchetti .","intent":"schedule","entities":[{"start":20,"end":29,"label":"practitioner_name"}]} +{"text":"that seems true","intent":"positive_reply","entities":[]} +{"text":"I need to cancel appointments #692463 .","intent":"cancel","entities":[{"start":30,"end":37,"label":"appointment_id"}]} +{"text":"update the booking calendar for Santini .","intent":"query_avail","entities":[{"start":32,"end":39,"label":"practitioner_name"}]} +{"text":"I want to book you with Professor Mariani .","intent":"schedule","entities":[{"start":24,"end":41,"label":"practitioner_name"}]} +{"text":"thank you so very much","intent":"positive_reply","entities":[]} +{"text":"Cancel my office hours appointment with Pagano.","intent":"cancel","entities":[{"start":40,"end":46,"label":"practitioner_name"}]} +{"text":"I must cancel my advising session with Stewart \\","intent":"cancel","entities":[{"start":17,"end":33,"label":"appointment_type"},{"start":39,"end":46,"label":"practitioner_name"}]} +{"text":"I'd like my book an appointment.","intent":"schedule","entities":[]} +{"text":"how is it going my friend","intent":"greeting","entities":[]} +{"text":"no that isn't it","intent":"negative_reply","entities":[]} +{"text":"I need to reschedule to talk with Ms. Davis .","intent":"reschedule","entities":[{"start":34,"end":43,"label":"practitioner_name"}]} +{"text":"I need to book an advising session.","intent":"schedule","entities":[]} +{"text":"My curriculum planning , booking #017187 , with Dr. Angela White is ;","intent":"cancel","entities":[{"start":3,"end":22,"label":"appointment_type"},{"start":33,"end":40,"label":"appointment_id"},{"start":48,"end":64,"label":"practitioner_name"}]} +{"text":"Project file slots with Esposito .","intent":"query_avail","entities":[{"start":24,"end":32,"label":"practitioner_name"}]} +{"text":"Reschedule my meeting with Dott.ssa Anna Moretti for my thesis.","intent":"reschedule","entities":[{"start":27,"end":48,"label":"practitioner_name"}]} +{"text":"Need also book a slot.","intent":"schedule","entities":[]} +{"text":"James many times.","intent":"query_avail","entities":[{"start":0,"end":5,"label":"practitioner_name"}]} +{"text":"I want to cancel my appointment with Dr. Stefano Marchese }","intent":"cancel","entities":[{"start":37,"end":57,"label":"practitioner_name"}]} +{"text":"Can I get google Mrs. Evans 's calendar?","intent":"schedule","entities":[{"start":17,"end":27,"label":"practitioner_name"}]} +{"text":"Please cancel an appointment with ID #886239 .","intent":"cancel","entities":[{"start":37,"end":44,"label":"appointment_id"}]} +{"text":"Please remove id #419544 from the schedule.","intent":"cancel","entities":[{"start":17,"end":24,"label":"appointment_id"}]} +{"text":"Find available multiple times.","intent":"query_avail","entities":[]} +{"text":"Availability for a lab environment","intent":"query_avail","entities":[]} +{"text":"that's not correct","intent":"negative_reply","entities":[]} +{"text":"I'd have to reschedule my massage therapy .","intent":"reschedule","entities":[{"start":26,"end":41,"label":"appointment_type"}]} +{"text":"what big news happened over the weekend","intent":"oos","entities":[]} +{"text":"Drop my appointment.","intent":"cancel","entities":[]} +{"text":"Create a new !","intent":"schedule","entities":[]} +{"text":"Can I change file therapy session with Lombardi ?","intent":"reschedule","entities":[{"start":18,"end":33,"label":"appointment_type"},{"start":39,"end":47,"label":"practitioner_name"}]} +{"text":"Is it possible ? move my appointment?","intent":"reschedule","entities":[]} +{"text":"Can I change my student feedback session with Ricci?","intent":"reschedule","entities":[{"start":16,"end":40,"label":"appointment_type"},{"start":46,"end":51,"label":"practitioner_name"}]} +{"text":"thanks for talking","intent":"bye","entities":[]} +{"text":"how are you doing, ai","intent":"greeting","entities":[]} +{"text":"Cancel appointment #568999.","intent":"cancel","entities":[{"start":19,"end":26,"label":"appointment_id"}]} +{"text":"Show function for equipment training s.","intent":"query_avail","entities":[{"start":18,"end":36,"label":"appointment_type"}]} +{"text":"Booking #141591 needs to be moved.","intent":"reschedule","entities":[{"start":8,"end":15,"label":"appointment_id"}]} +{"text":"i do not think that is proper","intent":"negative_reply","entities":[]} +{"text":"My plans have ended can I move my residence life meeting ?","intent":"reschedule","entities":[{"start":34,"end":56,"label":"appointment_type"}]} +{"text":"Set up a ;","intent":"schedule","entities":[]} +{"text":"click for Dr. Caterina Gentile .","intent":"query_avail","entities":[{"start":10,"end":30,"label":"practitioner_name"}]} +{"text":"I need some talk to my advisor.","intent":"schedule","entities":[]} +{"text":"I need to reschedule with Ms. Kelly.","intent":"reschedule","entities":[{"start":26,"end":35,"label":"practitioner_name"}]} +{"text":"Find an opening for a thesis proposal meeting.","intent":"query_avail","entities":[{"start":22,"end":45,"label":"appointment_type"}]} +{"text":"Can you hear me reschedule #675180 ?","intent":"reschedule","entities":[{"start":27,"end":34,"label":"appointment_id"}]} +{"text":"My meeting with Caruso has to be resolved","intent":"reschedule","entities":[{"start":16,"end":22,"label":"practitioner_name"}]} +{"text":"thank you very much for the assistance","intent":"positive_reply","entities":[]} +{"text":"i enjoyed speaking with you","intent":"bye","entities":[]} +{"text":"Cancel my booking.","intent":"cancel","entities":[]} +{"text":"I'd like to cancel the meeting I have with Pagano.","intent":"cancel","entities":[{"start":43,"end":49,"label":"practitioner_name"}]} +{"text":"I'm waiting #901602 .","intent":"cancel","entities":[{"start":12,"end":19,"label":"appointment_id"}]} +{"text":"Free times follow a group project session with Dr. Santoro next week.","intent":"query_avail","entities":[{"start":20,"end":41,"label":"appointment_type"},{"start":47,"end":58,"label":"practitioner_name"}]} +{"text":"I wanted to schedule a meeting with Richardson .","intent":"schedule","entities":[{"start":36,"end":46,"label":"practitioner_name"}]} +{"text":"Availability for this .","intent":"query_avail","entities":[]} +{"text":"I require a brainstorming session = Professor Sala .","intent":"schedule","entities":[{"start":12,"end":33,"label":"appointment_type"},{"start":36,"end":50,"label":"practitioner_name"}]} +{"text":"Delete booking #107210 from database system.","intent":"cancel","entities":[{"start":15,"end":22,"label":"appointment_id"}]} +{"text":"I'd like to get on the beach","intent":"schedule","entities":[]} +{"text":"Show your booking calendar for a lab cleanup with Professor Sartori .","intent":"query_avail","entities":[{"start":33,"end":44,"label":"appointment_type"},{"start":50,"end":67,"label":"practitioner_name"}]} +{"text":"why, hello bandit","intent":"greeting","entities":[]} +{"text":"that has to be false","intent":"negative_reply","entities":[]} +{"text":"hello, are you doing alright","intent":"greeting","entities":[]} +{"text":"Villa | free times today.","intent":"query_avail","entities":[{"start":0,"end":5,"label":"practitioner_name"}]} +{"text":"Regarding id #758129 , I want to cancel.","intent":"cancel","entities":[{"start":13,"end":20,"label":"appointment_id"}]} +{"text":"I need your book an advising session.","intent":"schedule","entities":[]} +{"text":"i void my scheduled session.","intent":"cancel","entities":[]} +{"text":"I need to talk to Nowak for a client presentation ;","intent":"schedule","entities":[{"start":18,"end":23,"label":"practitioner_name"},{"start":30,"end":49,"label":"appointment_type"}]} +{"text":"security check.","intent":"query_avail","entities":[]} +{"text":"good bye","intent":"bye","entities":[]} +{"text":"no that isn't correct","intent":"negative_reply","entities":[]} +{"text":"I need to cancel an existing booking.","intent":"cancel","entities":[]} +{"text":"I need to move my advising session, which is appointment #355543.","intent":"reschedule","entities":[{"start":57,"end":64,"label":"appointment_id"}]} +{"text":"hey hey!","intent":"greeting","entities":[]} +{"text":"I won't be there, please cancel my meeting.","intent":"cancel","entities":[]} +{"text":"Next available slot.","intent":"query_avail","entities":[]} +{"text":"Check schedule .","intent":"query_avail","entities":[]} diff --git a/docker/app/Dockerfile b/docker/app/Dockerfile index 4645879..7431ab1 100644 --- a/docker/app/Dockerfile +++ b/docker/app/Dockerfile @@ -4,6 +4,11 @@ FROM python:3.10-slim # Set the working directory in the container WORKDIR /app +# Install system build dependencies required for llama-cpp-python +# build-essential includes compilers like gcc and g++ +# cmake is also required by the build process +RUN apt-get update && apt-get install -y build-essential cmake + # Copy the requirements file into the container COPY requirements.txt . @@ -11,6 +16,8 @@ COPY requirements.txt . # --no-cache-dir: Disables the cache to keep the image size smaller # --trusted-host pypi.python.org: Can help avoid SSL issues in some networks RUN pip install --no-cache-dir --trusted-host pypi.python.org -r requirements.txt +# Download the spaCy model using its own command line interface +RUN python -m spacy download en_core_web_sm # Copy the rest of the application's source code from your host to your image filesystem. COPY ./src /app/src diff --git a/notebooks/00_raw_data_extraction.ipynb b/notebooks/00_raw_data_extraction.ipynb new file mode 100644 index 0000000..9e507d9 --- /dev/null +++ b/notebooks/00_raw_data_extraction.ipynb @@ -0,0 +1,328 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "6c059ef4", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "from datasets import load_dataset\n", + "import os\n", + "from pathlib import Path" + ] + }, + { + "cell_type": "markdown", + "id": "9633bcc7", + "metadata": {}, + "source": [ + "## Load the Dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "1e8919b3", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Available splits: ['train', 'validation', 'test']\n" + ] + } + ], + "source": [ + "# Load the CLINIC oos dataset from Hugging Face\n", + "dataset = load_dataset(\"clinc/clinc_oos\", \"plus\")\n", + "print(\"Available splits:\", list(dataset.keys()))" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "e28c6e87", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Dataset({\n", + " features: ['text', 'intent'],\n", + " num_rows: 15250\n", + "})\n", + "Features: {'text': Value('string'), 'intent': ClassLabel(names=['restaurant_reviews', 'nutrition_info', 'account_blocked', 'oil_change_how', 'time', 'weather', 'redeem_rewards', 'interest_rate', 'gas_type', 'accept_reservations', 'smart_home', 'user_name', 'report_lost_card', 'repeat', 'whisper_mode', 'what_are_your_hobbies', 'order', 'jump_start', 'schedule_meeting', 'meeting_schedule', 'freeze_account', 'what_song', 'meaning_of_life', 'restaurant_reservation', 'traffic', 'make_call', 'text', 'bill_balance', 'improve_credit_score', 'change_language', 'no', 'measurement_conversion', 'timer', 'flip_coin', 'do_you_have_pets', 'balance', 'tell_joke', 'last_maintenance', 'exchange_rate', 'uber', 'car_rental', 'credit_limit', 'oos', 'shopping_list', 'expiration_date', 'routing', 'meal_suggestion', 'tire_change', 'todo_list', 'card_declined', 'rewards_balance', 'change_accent', 'vaccines', 'reminder_update', 'food_last', 'change_ai_name', 'bill_due', 'who_do_you_work_for', 'share_location', 'international_visa', 'calendar', 'translate', 'carry_on', 'book_flight', 'insurance_change', 'todo_list_update', 'timezone', 'cancel_reservation', 'transactions', 'credit_score', 'report_fraud', 'spending_history', 'directions', 'spelling', 'insurance', 'what_is_your_name', 'reminder', 'where_are_you_from', 'distance', 'payday', 'flight_status', 'find_phone', 'greeting', 'alarm', 'order_status', 'confirm_reservation', 'cook_time', 'damaged_card', 'reset_settings', 'pin_change', 'replacement_card_duration', 'new_card', 'roll_dice', 'income', 'taxes', 'date', 'who_made_you', 'pto_request', 'tire_pressure', 'how_old_are_you', 'rollover_401k', 'pto_request_status', 'how_busy', 'application_status', 'recipe', 'calendar_update', 'play_music', 'yes', 'direct_deposit', 'credit_limit_change', 'gas', 'pay_bill', 'ingredients_list', 'lost_luggage', 'goodbye', 'what_can_i_ask_you', 'book_hotel', 'are_you_a_bot', 'next_song', 'change_speed', 'plug_type', 'maybe', 'w2', 'oil_change_when', 'thank_you', 'shopping_list_update', 'pto_balance', 'order_checks', 'travel_alert', 'fun_fact', 'sync_device', 'schedule_maintenance', 'apr', 'transfer', 'ingredient_substitution', 'calories', 'current_location', 'international_fees', 'calculator', 'definition', 'next_holiday', 'update_playlist', 'mpg', 'min_payment', 'change_user_name', 'restaurant_suggestion', 'travel_notification', 'cancel', 'pto_used', 'travel_suggestion', 'change_volume'])}\n", + "First example: {'text': 'what expression would i use to say i love you if i were an italian', 'intent': 61}\n" + ] + } + ], + "source": [ + "# Display basic info about the dataset\n", + "print(dataset[\"train\"])\n", + "print(\"Features:\", dataset[\"train\"].features)\n", + "print(\"First example:\", dataset[\"train\"][0])" + ] + }, + { + "cell_type": "markdown", + "id": "bf9e80f5", + "metadata": {}, + "source": [ + "## Define Intent Mapping" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "40d28321", + "metadata": {}, + "outputs": [], + "source": [ + "# We define our mapping from the source dataset's integer labels to our new intent names.\n", + "\n", + "# Our intent : [list of clinic_oos integer labels]\n", + "INTENT_MAPPING = {\n", + " \"greeting\": [82],\t\t\t # greeting\n", + " \"positive_reply\": [107, 124], # yes, thank_you\n", + " \"negative_reply\": [30], # no\n", + " \"bye\": [114], # goodbye\n", + " \"oos\": [42] # oos\n", + "}\n", + "\n", + "# To make lookup faster, we'll reverse the mapping\n", + "# {source_label: our_intent}\n", + "LABEL_TO_INTENT = {label: intent for intent, labels in INTENT_MAPPING.items() for label in labels}" + ] + }, + { + "cell_type": "markdown", + "id": "a3fb73c8", + "metadata": {}, + "source": [ + "## Extract and Remap Data from All Splits" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "0560a41b", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Processing split: 'train'...\n", + "Processing split: 'validation'...\n", + "Processing split: 'test'...\n", + "\n", + "Extraction complete. Total remapped entries found: 2100\n" + ] + } + ], + "source": [ + "# We'll iterate through every split (train, validation, test) and extract the\n", + "# entries that match our required intents.\n", + "\n", + "all_entries = []\n", + "\n", + "for split_name in dataset.keys():\n", + " print(f\"Processing split: '{split_name}'...\")\n", + " current_split = dataset[split_name]\n", + " \n", + " for entry in current_split:\n", + " source_label = entry['intent']\n", + " \n", + " # Check if the entry's intent is one we need to map\n", + " if source_label in LABEL_TO_INTENT:\n", + " remapped_intent = LABEL_TO_INTENT[source_label]\n", + " all_entries.append({\n", + " \"text\": entry['text'],\n", + " \"intent\": remapped_intent\n", + " })\n", + "\n", + "print(f\"\\nExtraction complete. Total remapped entries found: {len(all_entries)}\")" + ] + }, + { + "cell_type": "markdown", + "id": "5e304e97", + "metadata": {}, + "source": [ + "## Visualize Entry Counts" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "3ea2fc58", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "--- Number of Entries Gathered per Intent ---\n", + "intent\n", + "oos 1350\n", + "positive_reply 300\n", + "negative_reply 150\n", + "bye 150\n", + "greeting 150\n", + "Name: count, dtype: int64\n" + ] + } + ], + "source": [ + "# Before saving, let's create a DataFrame and visualize the number of\n", + "# entries we've gathered for each of our new intents.\n", + "\n", + "df = pd.DataFrame(all_entries)\n", + "intent_counts = df['intent'].value_counts()\n", + "\n", + "print(\"--- Number of Entries Gathered per Intent ---\")\n", + "print(intent_counts)" + ] + }, + { + "cell_type": "markdown", + "id": "9d965b42", + "metadata": {}, + "source": [ + "## Sampling for class balance" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "5c59fbdf", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- Sampled Dataset Info ---\n", + "Total entries in sampled data: 750\n", + "Sampled counts per intent:\n", + "intent\n", + "bye 150\n", + "greeting 150\n", + "negative_reply 150\n", + "oos 150\n", + "positive_reply 150\n", + "Name: count, dtype: int64\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\aceto\\AppData\\Local\\Temp\\ipykernel_19340\\2151548401.py:14: FutureWarning: DataFrameGroupBy.apply operated on the grouping columns. This behavior is deprecated, and in a future version of pandas the grouping columns will be excluded from the operation. Either pass `include_groups=False` to exclude the groupings or explicitly select the grouping columns after groupby to silence this warning.\n", + " .apply(lambda x: x.sample(n=min(len(x), N_SAMPLES), random_state=42))\n" + ] + } + ], + "source": [ + "# Shuffle the DataFrame\n", + "df = df.sample(frac=1).reset_index(drop=True)\n", + "\n", + "# --- Sampling Logic ---\n", + "# We want to sample 150 entries per intent.\n", + "N_SAMPLES = 150\n", + "\n", + "# We group by 'intent' and then apply a sampling function to each group.\n", + "# The lambda function is key to handling intents with fewer than N_SAMPLES entries.\n", + "# It takes the minimum of the group size and our desired sample size.\n", + "# `random_state` ensures the sampling is reproducible.\n", + "sampled_df = (\n", + " df.groupby('intent', group_keys=False)\n", + " .apply(lambda x: x.sample(n=min(len(x), N_SAMPLES), random_state=42))\n", + ")\n", + "\n", + "print(\"\\n--- Sampled Dataset Info ---\")\n", + "print(f\"Total entries in sampled data: {len(sampled_df)}\")\n", + "print(\"Sampled counts per intent:\")\n", + "print(sampled_df['intent'].value_counts())\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "id": "9b9f9d67", + "metadata": {}, + "source": [ + "## Save Remapped Intents to CSV files" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "deddc362", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Saving files to 'c:\\Users\\aceto\\Documents\\GitHub\\schedulebot-plus\\data\\raw\\intents' directory...\n", + " -> Saved 'bye.csv' with 150 rows.\n", + " -> Saved 'greeting.csv' with 150 rows.\n", + " -> Saved 'negative_reply.csv' with 150 rows.\n", + " -> Saved 'oos.csv' with 150 rows.\n", + " -> Saved 'positive_reply.csv' with 150 rows.\n", + "\n", + "✅ All files have been saved successfully.\n" + ] + } + ], + "source": [ + "# Finally, we'll save each intent group to its own CSV file in the specified directory.\n", + "project_root = Path().cwd().parent\n", + "output_dir = str(project_root / \"data\" / \"raw\" / \"intents\")\n", + "os.makedirs(output_dir, exist_ok=True)\n", + "\n", + "print(f\"\\nSaving files to '{output_dir}' directory...\")\n", + "\n", + "# Group the DataFrame by our new intent names\n", + "for intent_name, group_df in sampled_df.groupby('intent'):\n", + " file_path = os.path.join(output_dir, f\"{intent_name}.csv\")\n", + " \n", + " # Select only the 'text' and 'intent' columns for saving\n", + " save_df = group_df[['text', 'intent']]\n", + " \n", + " save_df.to_csv(file_path, index=False)\n", + " print(f\" -> Saved '{intent_name}.csv' with {len(save_df)} rows.\")\n", + "\n", + "print(\"\\n✅ All files have been saved successfully.\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "schedulebot-venv", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.8" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/01_dataset_creation.ipynb b/notebooks/01_dataset_creation.ipynb new file mode 100644 index 0000000..95a0b7e --- /dev/null +++ b/notebooks/01_dataset_creation.ipynb @@ -0,0 +1,368 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "64805fd4", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import json\n", + "import random\n", + "import re\n", + "import os\n", + "from pathlib import Path\n", + "from transformers import pipeline" + ] + }, + { + "cell_type": "markdown", + "id": "48980dcd", + "metadata": {}, + "source": [ + "## Load all CSV files into DataFrames" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "3adef774", + "metadata": {}, + "outputs": [], + "source": [ + "project_root = str(Path().cwd().resolve().parent)\n", + "raw_data_dir = os.path.join(project_root, \"data\", \"raw\")\n", + "entities_dir = os.path.join(raw_data_dir, \"entities\")\n", + "intents_dir = os.path.join(raw_data_dir, \"intents\")" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "f4de5fb3", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Loaded 149 practitioners.\n", + "Loaded 147 appointment types.\n", + "Loaded 150 pre-generated appointment IDs.\n", + "Loaded 'schedule.csv' with 139 rows.\n", + "Loaded 'reschedule.csv' with 143 rows.\n", + "Loaded 'cancel.csv' with 142 rows.\n", + "Loaded 'query_avail.csv' with 140 rows.\n", + "Loaded 'greeting.csv' with 150 rows.\n", + "Loaded 'bye.csv' with 150 rows.\n", + "Loaded 'positive_reply.csv' with 150 rows.\n", + "Loaded 'negative_reply.csv' with 150 rows.\n", + "Loaded 'oos.csv' with 150 rows.\n" + ] + } + ], + "source": [ + "# --- Load Entity Value Lists ---\n", + "try:\n", + " practitioner_df = pd.read_csv(os.path.join(entities_dir, \"practitioner_name.csv\"))\n", + " practitioner_list = practitioner_df['text'].tolist()\n", + "\n", + " appointment_type_df = pd.read_csv(os.path.join(entities_dir, \"appointment_type.csv\"))\n", + " appointment_type_list = appointment_type_df['text'].tolist()\n", + " \n", + " # Load the pre-generated appointment IDs\n", + " appointment_id_df = pd.read_csv(os.path.join(entities_dir, \"appointment_id.csv\"))\n", + " appointment_id_list = appointment_id_df['text'].tolist()\n", + " \n", + " print(f\"Loaded {len(practitioner_list)} practitioners.\")\n", + " print(f\"Loaded {len(appointment_type_list)} appointment types.\")\n", + " print(f\"Loaded {len(appointment_id_list)} pre-generated appointment IDs.\")\n", + "\n", + "except FileNotFoundError as e:\n", + " print(f\"Error loading entity CSVs: {e}\")\n", + " print(\"Please ensure you have run id_generator.py and all entity files are in place.\")\n", + "\n", + "\n", + "# --- Load Intent Template DataFrames ---\n", + "intent_dfs = {}\n", + "intent_files = [\n", + " \"schedule\", \"reschedule\", \"cancel\", \"query_avail\",\n", + " \"greeting\", \"bye\", \"positive_reply\", \"negative_reply\", \"oos\"\n", + "]\n", + "\n", + "for intent_name in intent_files:\n", + " try:\n", + " path = os.path.join(intents_dir, f\"{intent_name}.csv\")\n", + " intent_dfs[intent_name] = pd.read_csv(path)\n", + " print(f\"Loaded '{intent_name}.csv' with {len(intent_dfs[intent_name])} rows.\")\n", + " except FileNotFoundError:\n", + " print(f\"Warning: Could not find '{intent_name}.csv'. Skipping.\")" + ] + }, + { + "cell_type": "markdown", + "id": "1c54591b", + "metadata": {}, + "source": [ + "## Data Augmentation\n", + "This is the new, core section. We define a function, `augment_templates`, that uses a pre-trained language model to create new sentence variations.\n", + "\n", + "- How it works:\n", + "\n", + "\t1. It initializes a `fill-mask` pipeline from `transformers`, which is good at predicting words in context.\n", + "\t2. The function iterates through each word of a template sentence.\n", + "\t3. It skips placeholders (like `{practitioner_name}`) to ensure they are preserved.\n", + "\t4. It replaces one word at a time with a `[MASK]` token.\n", + "\t5. It asks the language model to predict the best words to fill that mask.\n", + "\t6. It creates a new template using a suitable prediction, effectively paraphrasing the original.\n", + "\n", + "We then apply this function to the templates for our complex intents (`schedule`, `cancel`, etc.)." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "49e34ffb", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Device set to use cpu\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\\n--- Augmenting Complex Intents ---\n", + "Augmenting intent: 'schedule'...\n", + " -> Original: 139 templates | Augmented: 534 templates\n", + "Augmenting intent: 'reschedule'...\n", + " -> Original: 143 templates | Augmented: 554 templates\n", + "Augmenting intent: 'cancel'...\n", + " -> Original: 142 templates | Augmented: 548 templates\n", + "Augmenting intent: 'query_avail'...\n", + " -> Original: 140 templates | Augmented: 536 templates\n" + ] + } + ], + "source": [ + "# --- Initialize Augmentation Pipeline ---\n", + "unmasker = pipeline('fill-mask', model='distilbert-base-uncased')\n", + "\n", + "# --- Define Placeholders and Cleanup Function ---\n", + "known_placeholders = [\"{practitioner_name}\", \"{appointment_type}\", \"{appointment_id}\"]\n", + "\n", + "def cleanup_template(text):\n", + " \"\"\"\n", + " Sanitizes an augmented template to fix corrupted placeholders.\n", + " \"\"\"\n", + " # 1. Fix missing closing braces\n", + " for ph in known_placeholders:\n", + " # Find instances like \"{practitioner_name\" (missing the closing brace)\n", + " corrupted_ph = ph[:-1] # e.g., \"{practitioner_name\"\n", + " if corrupted_ph in text and ph not in text:\n", + " text = text.replace(corrupted_ph, ph)\n", + " \n", + " # 2. Remove any stray opening braces that are not part of a known placeholder\n", + " # This finds any \"{\" that is not followed by a known entity name\n", + " text = re.sub(r'\\{(?!practitioner_name|appointment_type|appointment_id)', '', text)\n", + " \n", + " return text\n", + "\n", + "def augment_templates(templates, num_augmentations_per_template=3):\n", + " \"\"\"\n", + " Augments a list of templates using contextual word replacement\n", + " and cleans up any resulting placeholder corruption.\n", + " \"\"\"\n", + " augmented_templates = list(templates) # Start with all original templates\n", + " \n", + " for template in templates:\n", + " # This regex splits the text by spaces while keeping placeholders intact\n", + " words_and_placeholders = re.findall(r'\\{[a-zA-Z_]+\\}|\\S+', template)\n", + " \n", + " potential_indices = [\n", + " i for i, item in enumerate(words_and_placeholders) \n", + " if item not in known_placeholders\n", + " ]\n", + " \n", + " if not potential_indices:\n", + " continue\n", + " \n", + " for _ in range(num_augmentations_per_template):\n", + " idx_to_replace = random.choice(potential_indices)\n", + " original_word = words_and_placeholders[idx_to_replace]\n", + " \n", + " temp_list = words_and_placeholders.copy()\n", + " temp_list[idx_to_replace] = unmasker.tokenizer.mask_token\n", + " masked_text = ' '.join(temp_list)\n", + " \n", + " predictions = [\n", + " pred['token_str'] for pred in unmasker(masked_text, top_k=5)\n", + " if '##' not in pred['token_str'] and pred['token_str'].lower() != original_word.lower()\n", + " ]\n", + " \n", + " if predictions:\n", + " new_word = random.choice(predictions)\n", + " new_template_list = words_and_placeholders.copy()\n", + " new_template_list[idx_to_replace] = new_word\n", + " \n", + " # Create the augmented sentence\n", + " augmented_sentence = ' '.join(new_template_list)\n", + " \n", + " # **Apply the cleanup function**\n", + " cleaned_sentence = cleanup_template(augmented_sentence)\n", + " \n", + " augmented_templates.append(cleaned_sentence)\n", + " \n", + " return list(set(augmented_templates))\n", + "\n", + "# --- Apply Augmentation to Complex Intents ---\n", + "print(\"\\\\n--- Augmenting Complex Intents ---\")\n", + "complex_intents = [\"schedule\", \"reschedule\", \"cancel\", \"query_avail\"]\n", + "\n", + "for intent in complex_intents:\n", + " if intent in intent_dfs:\n", + " print(f\"Augmenting intent: '{intent}'...\")\n", + " original_df = intent_dfs[intent]\n", + " original_templates = original_df['text'].tolist()\n", + " \n", + " augmented_templates = augment_templates(original_templates)\n", + " \n", + " augmented_df = pd.DataFrame(augmented_templates, columns=['text'])\n", + " augmented_df['intent'] = intent\n", + " \n", + " intent_dfs[intent] = augmented_df\n", + " print(f\" -> Original: {len(original_templates)} templates | Augmented: {len(augmented_df)} templates\")" + ] + }, + { + "cell_type": "markdown", + "id": "ac207476", + "metadata": {}, + "source": [ + "## Process Intents and Inject Entities" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "6164c36a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Processed 750 entries from simple intents.\n", + "Processing complete. Total entries in dataset: 2922.\n" + ] + } + ], + "source": [ + "final_dataset = []\n", + "\n", + "# --- Process Simple Intents ---\n", + "simple_intents = [\"greeting\", \"bye\", \"positive_reply\", \"negative_reply\", \"oos\"]\n", + "for intent_name in simple_intents:\n", + " if intent_name in intent_dfs:\n", + " for index, row in intent_dfs[intent_name].iterrows():\n", + " final_dataset.append({\"text\": row['text'], \"intent\": row['intent'], \"entities\": []})\n", + "print(f\"Processed {len(final_dataset)} entries from simple intents.\")\n", + "\n", + "# --- Process Complex Intents ---\n", + "entity_map = {\n", + " 'practitioner_name': practitioner_list,\n", + " 'appointment_type': appointment_type_list,\n", + " 'appointment_id': appointment_id_list\n", + "}\n", + "\n", + "for intent_name in complex_intents:\n", + " if intent_name in intent_dfs:\n", + " for index, row in intent_dfs[intent_name].iterrows():\n", + " template = row['text']\n", + " injected_text = template\n", + " entities = []\n", + " placeholders = re.findall(r\"\\{(.+?)\\}\", template)\n", + " \n", + " for placeholder in placeholders:\n", + " # The logic is now generalized for all entities\n", + " if placeholder in entity_map:\n", + " value_to_inject = random.choice(entity_map[placeholder])\n", + " start_index = injected_text.find(\"{\" + placeholder + \"}\")\n", + " if start_index != -1:\n", + " injected_text = injected_text.replace(\"{\" + placeholder + \"}\", value_to_inject, 1)\n", + " end_index = start_index + len(value_to_inject)\n", + " entities.append({\"start\": start_index, \"end\": end_index, \"label\": placeholder})\n", + " else:\n", + " print(f\"Warning: Found unknown placeholder '{placeholder}'\")\n", + "\n", + " final_dataset.append({\n", + " \"text\": injected_text,\n", + " \"intent\": row['intent'],\n", + " \"entities\": sorted(entities, key=lambda e: e['start'])\n", + " })\n", + "print(f\"Processing complete. Total entries in dataset: {len(final_dataset)}.\")" + ] + }, + { + "cell_type": "markdown", + "id": "cdf6229d", + "metadata": {}, + "source": [ + "## Shuffle and Save the final JSONL dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "65b96d6f", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Dataset shuffled.\n", + "✅ Success! Dataset correctly saved.\n" + ] + } + ], + "source": [ + "random.shuffle(final_dataset)\n", + "print(\"Dataset shuffled.\")\n", + "\n", + "output_path_jsonl = os.path.join(raw_data_dir, \"hasd.jsonl\")\n", + "with open(output_path_jsonl, 'w', encoding='utf-8') as f:\n", + " for entry in final_dataset:\n", + " f.write(json.dumps(entry, ensure_ascii=False) + '\\n')\n", + "\n", + "print(f\"✅ Success! Dataset correctly saved.\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "schedulebot-venv", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.8" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/01_dataset_setup.ipynb b/notebooks/01_dataset_setup.ipynb deleted file mode 100644 index e3b21e8..0000000 --- a/notebooks/01_dataset_setup.ipynb +++ /dev/null @@ -1,321 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 8, - "id": "6112dfca", - "metadata": {}, - "outputs": [], - "source": [ - "import pandas as pd\n", - "from datasets import load_dataset, ClassLabel\n", - "from pathlib import Path" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "id": "eb303f5e", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Dataset({\n", - " features: ['intent', 'user_utterance', 'origin'],\n", - " num_rows: 600000\n", - "})\n", - "Features: {'intent': Value('string'), 'user_utterance': Value('string'), 'origin': Value('string')}\n", - "First example: {'intent': 'accept_reservations', 'user_utterance': 'am i able to make reservations at spago in beverly hills', 'origin': 'original'}\n" - ] - } - ], - "source": [ - "# Load the CLINIC150-sur dataset from Hugging Face\n", - "full_dataset = load_dataset(\"ibm-research/clinic150-sur\", split=\"train\") # 'train' is the only split and contains all data\n", - "\n", - "# Display basic info about the dataset\n", - "print(full_dataset)\n", - "print(\"Features:\", full_dataset.features)\n", - "print(\"First example:\", full_dataset[0])\n" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "id": "bcb48175", - "metadata": {}, - "outputs": [], - "source": [ - "# Define intent mapping\n", - "# We map a subset of the original intents to our custom intents\n", - "INTENT_MAP = {\n", - " # \"avail\" -> check availability\n", - " \"calendar\": \"avail\",\n", - " \"how_busy\": \"avail\",\n", - " \"date\": \"avail\",\n", - " \"meeting_schedule\": \"avail\",\n", - " \n", - "\t# \"book\" -> book an appointment\n", - " \"accept_reservation\": \"book\",\n", - " \"schedule_meeting\": \"book\",\n", - " \"yes\": \"book\",\n", - " \n", - "\t# \"bye\" -> end conversation\n", - " \"goodbye\": \"bye\",\n", - " \"thank_you\": \"bye\",\n", - " \n", - "\t# \"cancel\" -> cancel an appointment\n", - " \"cancel_reservation\": \"cancel\",\n", - " \"no\": \"cancel\",\n", - " \n", - "\t# \"greet\" -> start conversation\n", - " \"greeting\": \"greet\",\n", - " \n", - "\t# \"resched\" -> reschedule an appointment\n", - " \"calendar_update\": \"resched\",\n", - " \"reminder_update\": \"resched\"\n", - "}" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "id": "a669e92a", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Filtered dataset size: 97891\n" - ] - } - ], - "source": [ - "# Filter the dataset to keep only examples whose intent is in INTENT_MAP\n", - "filtered_dataset = full_dataset.filter(\n", - "\tlambda example: example['intent'] in INTENT_MAP\n", - ")\n", - "print(f\"Filtered dataset size: {len(filtered_dataset)}\")" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "id": "8fe1f84e", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Features: {'intent': Value('string'), 'user_utterance': Value('string'), 'origin': Value('string'), 'new_intent': Value('string')}\n" - ] - } - ], - "source": [ - "# Apply the INTENT_MAP to create a new column 'new_intent' in filtered_dataset\n", - "def map_intent(example):\n", - "\treturn {'new_intent': INTENT_MAP[example['intent']]}\n", - "\n", - "processed_dataset = filtered_dataset.map(map_intent)\n", - "print(\"Features:\", processed_dataset.features)" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "id": "57b819e3", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Features: {'intent': Value('string'), 'user_utterance': Value('string'), 'origin': Value('string'), 'new_intent': Value('string'), 'label': ClassLabel(names=['avail', 'book', 'bye', 'cancel', 'greet', 'resched'])}\n", - "First example: {'intent': 'calendar', 'user_utterance': 'anything on the schedule for october 14th', 'origin': 'original', 'new_intent': 'avail', 'label': 0}\n", - "New intents and their IDs: {'avail': 0, 'book': 1, 'bye': 2, 'cancel': 3, 'greet': 4, 'resched': 5}\n" - ] - } - ], - "source": [ - "# Get unique new_intent values and sort them for consistent label assignment\n", - "unique_intents = sorted(set(processed_dataset['new_intent']))\n", - "new_intent_to_id = {intent: idx for idx, intent in enumerate(unique_intents)}\n", - "\n", - "# Create a ClassLabel feature\n", - "class_label = ClassLabel(names=unique_intents)\n", - "\n", - "# Add 'label' column by mapping 'new_intent' to its integer id\n", - "def encode_label(example):\n", - "\treturn {'label': new_intent_to_id[example['new_intent']]}\n", - "\n", - "final_dataset = processed_dataset.map(encode_label)\n", - "final_dataset = final_dataset.cast_column('label', class_label)\n", - "print(\"Features:\", final_dataset.features)\n", - "print(\"First example:\", final_dataset[0])\n", - "print(\"New intents and their IDs:\", new_intent_to_id)" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "id": "15da8d98", - "metadata": {}, - "outputs": [], - "source": [ - "# We will split the dataset into training and testing sets (80/20 split)\n", - "# First split: 15% test, 85% train+val\n", - "split_1 = final_dataset.train_test_split(test_size=0.15, stratify_by_column='label', seed=42)\n", - "\n", - "# Second split: from train+val, 15/85 ≈ 0.176 for validation (so val is 15% of total)\n", - "split_2 = split_1['train'].train_test_split(test_size=0.176, stratify_by_column='label', seed=42)\n", - "\n", - "# Assemble splits\n", - "data_split = {\n", - " 'train': split_2['train'],\n", - " 'val': split_2['test'],\n", - " 'test': split_1['test']\n", - "}\n", - "\n", - "# Convert to pandas DataFrame for easy saving to CSV\n", - "train_df = data_split['train'].to_pandas()\n", - "val_df = data_split['val'].to_pandas()\n", - "test_df = data_split['test'].to_pandas()\n" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "id": "11b17c3d", - "metadata": {}, - "outputs": [], - "source": [ - "def print_class_distribution(df, label_col):\n", - " \"\"\"\n", - " Print the class distribution for a given label column in a DataFrame.\n", - "\n", - " Args:\n", - " df (pd.DataFrame): The DataFrame containing the data.\n", - " label_col (str): The name of the column containing class labels.\n", - "\n", - " Prints:\n", - " A DataFrame showing the count and percentage of each class.\n", - " \"\"\"\n", - " # Count the occurrences of each class\n", - " counts = df[label_col].value_counts(dropna=False)\n", - " # Calculate the percentage of each class\n", - " percentages = df[label_col].value_counts(normalize=True, dropna=False) * 100\n", - " # Display the results as a DataFrame\n", - " print(pd.DataFrame({'count': counts, 'percent': percentages.round(2)}))" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "id": "d76bc461", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Train: 68562, Val: 14645, Test: 14684\n", - "\n", - "Train set class distribution:\n", - " count percent\n", - "new_intent \n", - "bye 18278 26.66\n", - "book 13938 20.33\n", - "cancel 11804 17.22\n", - "avail 11514 16.79\n", - "greet 10180 14.85\n", - "resched 2848 4.15\n", - "\n", - "Validation set class distribution:\n", - " count percent\n", - "new_intent \n", - "bye 3904 26.66\n", - "book 2977 20.33\n", - "cancel 2521 17.21\n", - "avail 2459 16.79\n", - "greet 2175 14.85\n", - "resched 609 4.16\n", - "\n", - "Test set class distribution:\n", - " count percent\n", - "new_intent \n", - "bye 3915 26.66\n", - "book 2985 20.33\n", - "cancel 2528 17.22\n", - "avail 2466 16.79\n", - "greet 2180 14.85\n", - "resched 610 4.15\n" - ] - } - ], - "source": [ - "# Disolay the sizes of the splits\n", - "print(f\"Train: {len(train_df)}, Val: {len(val_df)}, Test: {len(test_df)}\")\n", - "\n", - "# Display class distributions for each split\n", - "print(f\"\\nTrain set class distribution:\")\n", - "print_class_distribution(train_df, 'new_intent')\n", - "print(f\"\\nValidation set class distribution:\")\n", - "print_class_distribution(val_df, 'new_intent')\n", - "print(f\"\\nTest set class distribution:\")\n", - "print_class_distribution(test_df, 'new_intent')" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "id": "7d38e709", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Processed data saved to C:\\Users\\aceto\\Documents\\GitHub\\schedulebot-plus\\data\\processed\n" - ] - } - ], - "source": [ - "# Get the project root (parent of the current notebook)\n", - "project_root = Path().cwd().resolve().parent\n", - "output_dir = project_root / \"data\" / \"processed\"\n", - "\n", - "# Save the files\n", - "train_df.to_csv(output_dir / \"train.csv\", index=False)\n", - "val_df.to_csv(output_dir / \"val.csv\", index=False)\n", - "test_df.to_csv(output_dir / \"test.csv\", index=False)\n", - "\n", - "print(f\"Processed data saved to {output_dir}\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "schedulebot-venv", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.11.8" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/notebooks/02_data_split.ipynb b/notebooks/02_data_split.ipynb new file mode 100644 index 0000000..cb69508 --- /dev/null +++ b/notebooks/02_data_split.ipynb @@ -0,0 +1,484 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "d82dca48", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import json\n", + "import os\n", + "import matplotlib.pyplot as plt\n", + "import seaborn as sns\n", + "from pathlib import Path\n", + "from sklearn.model_selection import train_test_split\n", + "from dotenv import load_dotenv\n", + "from huggingface_hub import login\n", + "from datasets import load_dataset, Dataset, DatasetDict, Features, ClassLabel, Value, Sequence" + ] + }, + { + "cell_type": "markdown", + "id": "9b134935", + "metadata": {}, + "source": [ + "## Load the dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "dc554fbb", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "✅ Dataset loaded successfully.\n", + "Total examples: 2922\n" + ] + } + ], + "source": [ + "# Load the dataset from the .jsonl file\n", + "project_root = str(Path().cwd().resolve().parent)\n", + "raw_data_dir = os.path.join(project_root, \"data\", \"raw\")\n", + "dataset_path = os.path.join(raw_data_dir, \"hasd.jsonl\")\n", + "try:\n", + " with open(dataset_path, 'r', encoding='utf-8') as f:\n", + " data = [json.loads(line) for line in f]\n", + " df = pd.DataFrame(data)\n", + " print(f\"✅ Dataset loaded successfully.\")\n", + " print(f\"Total examples: {len(df)}\")\n", + "except FileNotFoundError:\n", + " print(f\"❌ Error: The file '{dataset_path}' was not found. Please create it first.\")" + ] + }, + { + "cell_type": "markdown", + "id": "5f37b10a", + "metadata": {}, + "source": [ + "## Exploratory Data Analysis (EDA) and Statistics" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "e6152694", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- 📊 Intent Distribution ---\n", + "intent\n", + "reschedule 554\n", + "cancel 548\n", + "query_avail 536\n", + "schedule 534\n", + "oos 150\n", + "negative_reply 150\n", + "greeting 150\n", + "positive_reply 150\n", + "bye 150\n", + "Name: count, dtype: int64\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA1AAAAJiCAYAAADJ3iMjAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjMsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvZiW1igAAAAlwSFlzAAAPYQAAD2EBqD+naQAAatpJREFUeJzt3QeYVEX2sPECWQRzAgV1ddcAgghIMKEYMAdUzHlNqIhZV8yiiGIWMKCuCdeAgjnngIKCBEUQwyqICKgYliTQ3/PW/7uzPeMM3JEZerr7/T3PMHSYmdu3b99bp+rUqVqZTCYTJEmSJEmLVXvxT5EkSZIkwQBKkiRJklIygJIkSZKklAygJEmSJCklAyhJkiRJSskASpIkSZJSMoCSJEmSpJQMoCRJkiQpJQMoSZJU0DKZTFH+bUnVwwBKUo03bNiw0KRJk9C0adPwwQcfLPK5Rx55ZHzu0KFDQ03Qt2/fuD033nhjKATvv/9+OOCAA0LLli1DmzZtQp8+fSp87uTJk+NrT/s1ePDgUCzH8qGHHprrTanRks/N+eefv8S/65lnnglnnXVWlWxXPv1tSdWnTjX+bkmq8p7cCy64IDz11FOhfv36ud6covPrr7+GU045Jfz3v/8Nm266aVhnnXXi9zT23nvvxT7nr3/9axVspfQ/dLicffbZYfPNNy+qvy2pehlAScor33zzTbj++uvDRRddlOtNKTqff/55DJ4InB577LFQq1at1D973XXXVeu2SeVZuHBhUf5tSdXLFD5JeaNBgwahTp064cEHHwwffvhhrjen6MybNy9+b9iwYaWCJ0mSCokBlKS8se6664bjjz8+9uySyjdnzpwlnoeUzNPZbrvtSt3Pffvvv3/4+eefw5VXXhm23XbbsNlmm4V99tknzmvAd999F1N0tthii9C+ffvwj3/8I4wfP77C7XjxxRfDfvvtF1q0aBF/36WXXhq+//77cp87bdq0cMUVV4Qdd9wxpsltvfXW4cwzzwyfffZZhfO+eOyoo46Kv79Dhw7hueeeSzWqdN5558Xt4e/wc+eee268v+z+4Hdj5MiR8TbbVh0++eST0Lx58zjnrWygPGPGjLDlllvGv//qq6+W3M+xcM8994RDDjkkvhf8PM874YQTwjvvvPOHv1FV729ybL3wwgvh+eefD507d46/Z4cddgiXX355mD59eurXXZn3nM/AAw88EA466KC4bcxJ23PPPeNI308//ZTq7/3ZbV9ax2Z5+Jtt27aNwTzbv8suu8Rt6NixY3wfs18786fKHrNsT7b//Oc/8Xl8/vk9fL/wwgvDt99+W+1/W1L+MoCSlFe6desWNtpoo/D111+HG264oVr/FulqBx98cCxuQENpk002CRMmTIiNahqvBx54YJznQDGFVVddNRauOOyww8oNigieTjvttNjQp4G67LLLhocffjh06dIlTJo0qdRzaaTvu+++YeDAgXHEbfvttw9rr712bHRSwOHNN98sd3u7d+8evvzyy9ig4+cWNz/ptddei0HEk08+Gbd/p512CquttlqcY8Z2vf7666XmMNFQBs/hdqdOnUJ1IPjp2rVrnPN2ySWXlIx8gdRNGqq8L2wv5s6dG4444ohw9dVXx4CYOSc0hJdbbrnw1ltvxaD7lVdeqdb394knnghnnHFGmD17dny/ateuHf7973/HAIdtWpzKvucXX3xxbLTzOWjdunXYZpttwsyZM8Odd94Zt5F9klZltn1pHZuLQvDI8XH77bfH0VCC319++SW+Z8cee2yYP39+fB77pewxm9zGe++9Fzs0hgwZElZeeeUYIPGd9FQ+Fx9//HG1/W1JeS4jSTXc+++/n9l4440zhxxySLw9evTozCabbJJp2rRp5sMPPyz13COOOCI+99133y2575Zbbon33XDDDX/43ZMmTYqPbbvttqXu5z6+9thjj8yMGTNK7r/iiitKHuvatWtm9uzZ8f7ff/89c+ihh8b777rrrj/8bb6uueaazMKFC0uef8EFF8T7jz322JLnz5s3L7PzzjvH+++5556S5+PVV1/NNG/ePNOuXbvMDz/88IfX3LFjx8xPP/0U71uwYMEi9+m0adMyrVq1yjRp0iQzePDgUo8NGjQo3t+6devM1KlTK3wfFifZt3xVFvuhc+fO8Wf79esX73v00Ufj7V122SXz3//+t+S5//rXv+L9J598cvy5xPz58zOXXXZZfOyYY46p9ve3Z8+e8W8m23/uueeW/J5F7cPKvufffvttyX749ddfS57Lth500EHxsccff3yx+7iy2760js3sbfvnP/9Z6v4ddtgh3r/NNttkxo8fX3L/5MmTM+3bt4+Pvf7664vc3/jxxx/j8zmPPPfcc6Uee/jhh+PP7LTTTpm5c+dW+d+WlP8cgZKUd0gzore3sql8fwajRquvvnrJbVK8stN06tWrF/9Pr3qS0saoQFnrrbdeLGeczB3i+Yyu8LtJMaM4Bl5++eX484xSHXPMMaXmGvH7SVEj7Yxe8rLo5V5llVXi/xlFWJRHHnkkzJo1K/bA85WNkQTuY4TmoYceClVhcSXMSR/L9pe//CWOKPH9jjvuiOXTuc1+u/baa+PoUvZzGdlg5Ij/J5ZZZpk4woSKRoGq6v39+9//Ho9F/mayTT179owjV4zkTZkypcJ9U9n3nDRG8LtXWGGFkueyrYzQMTJFSl9aabd9aR2baZx44onxuEkwCpa8P+WlEpY1aNCgOGLHaN3uu+9e6jGOGV4jI8O85qr+25LynwGUpLxEw3eDDTaIcxhuuummavs7rVq1KnWbRiUoo77++uuXemyllVaK37NTzhI00miEZyONL0nrGT58ePxOoADm75SHlKFkPaGymDOUVrKe1q677lru43vssUep7VpSNKAX9UUqWHmvh5RN0tEImH/77bd4mwA6G+l7AwYMiMdDgueOHj06vPTSSxW+J1X9/iYBSHZAw3yfit6vRGXfc1JYCUY++uijuJ4U6WN8DsAcI1IPs/fF4qTd9qV1bKZR9n0DKXUgFXFxkm1kfltlX8uS/m1J+c8y5pLyUt26dUPv3r1jA/K+++6LgQDzDqoacyKyJb3uSWO6vMfKQy91eRo1ahS/J/NqKFwAXhtfFZk6depit3VRKASwqO2iVDkqUwShOsqY09vP/Bp69glomH9SHkZlGC2jkc9cmx9//LHUe8J8qup8fxlhXNT7m+zv8lT2PSe4u/nmm8M555wTCxTwlRRZYV4YI0F/+9vfKvw9f3bbl9axmUZ570/SQZGmfHjyWk499dRFPq+817Kkf1tS/jOAkpS3SFMilejuu+8OPXr0iMUQKmtxDZ6yo0ZLEvAtSpJ6lmwPPeNJr3Z5mJheVmVSoyoKKBLJdixuu6sbIytJyhzfR4wYEavOZWOU4KSTToopiWuuuWYMpBmBoSgEgSAjMtX9/pYdwSm7nyt6/M++54wCURjjjTfeiIUbCBxJObv33ntjmX8qTu68885Vuu1L69hMY0nL6C9YsCB+J1UvOw2yrA033LDK/7ak/GcAJSmvnX766bGa3FdffVVhKl/S4CkvWKKC1tJQ0QhEUi456e1nrSuQ1raohv+SogHMPuPvkxJWVlIZMHt+0NJGI5d5SKTwkVLISBSBMlUCl19++ZJGPmWnCZ6YU3b44YeX+h3jxo1bKttaUTn6ZP5Q8v6W58++56TZ7bbbbvELX3zxRawOx/7p06dP6gAq7bYvrWNzaeD4Jzin1LjV8SRVlnOgJOU15hGRTkQPN73vpG+VlTS2f/jhhz88xjyZpaG8tYgo0sD9bDvry6Bdu3bxe0XloO+///7YgO3fv/8SbU/ydyivXh7WBULZ0Z6liZLcY8aMiWXEKVlPoEAxiGuuuaZU6h7BHmlVZYOn7P1e3alVjASVRVD37rvvxhGcRTXSK/ueEyARHN16662lnseoG0FkdopaVW770jo2q1JFo0WLey0EoJRrf/TRR6v8b0vKfwZQkvIeKVtHH310bCQnFcrKm8BOylP2ApkTJ04Mt91221LZRtLMaGAmKERAxTSqljGJP+nlZ6SFnn6qf7EwbHaqHcHELbfcEucDZVcB+zNY44dKdqyBw1e2xx9/PKZD8njZCn1LC+sx9evXL6YQsmgrjVH2F4ESFQSTwGjFFVeM6Y+MJJZddJcCEkmQUVERiapCsQ2KOST4e6zVRKU3KgwmxSnKU9n3nBFDqjZyPJXtMCC4QtlCG1Wx7Uvr2KzqDpakqEjZSnsc36xn9eyzz5Z6jBFt9i1rXlGUo6r/tqT8ZwqfpILAQqCUXE6qkWVjzgYLd7IwJj3k3KaHnUp0VBqj8bc0grxevXrFYIXJ/ox8MUF94403jo3VBAUCaIhSPIGy3TTwaJDSmKVYAI1WgsUlXcSWuUKM5FBanTQ5Ru8oPEBaHw1HtoNe+IqKTFQWBQ8WhxGUk08+Ofz+++9xm/ieVFsEjffzzjsvBlKk7T3zzDMxgKJoAgEA6ViMLBBkERzzWth+Ft799ddfY7n7pCx5VVtrrbVi+XAW5eX95ZhiFIh5WGzzolT2Ped38lqTER8WDibIYY4Y7x2BAamOVb3tS+vYrErMgWMUjcCObWN7KdmeffzzxagZ5dx53ckCujyPfVDVf1tS/nMESlJBoGF81VVXlTtZnfvoMacRQ+P67bffjg2l7t27x4bToib4VxWqBRJAMZ+HHm626bjjjouV48qOTtAgfuKJJ2JgQKP0rbfeiiMOBH5sb1U1wnbZZZe4Zs9ee+0V0xsZoWMkh3WgGIVKO4cmjaeffnqxX0OHDo3PZVSQuUsElzTWs7FtpBUSfNLoB8ECqWtM+Kfxz/7iPaWwBPuR/cboZEXpWlWBdC+2h/eXQJ7RByq8UdBhUaNPf/Y95zVfdtlloXnz5rHBzzHFaGaXLl3i6GFlRk4qs+1L69isKszh43NHMEMBEl5f9vHPcc7aXwTYpDIygk1hCYJTzhfV9bcl5bdarKab642QJCkf9e3bN6YaEqydeeaZIZ/k87ZLUi45AiVJkiRJKRlASZIkSVJKBlCSJEmSlJJzoCRJkiQpJUegJEmSJCklAyhJkiRJSqmoF9JlXZD58+fH9VhY5V6SJElSccpkMjE+qFOnTrnrSiaKOoAieBo7dmyuN0OSJElSDcFi5HXr1q3w8aIOoJLIkp3EqvWSJEmSitOCBQvi4MqiRp9CsQdQSdoewZMBlCRJkqRai5naYxEJSZIkSUrJAEqSJEmSUjKAkiRJkqSUDKAkSZIkKSUDKEmSJElKyQBKkiRJklIygJIkSZKklAygJEmSJCklAyhJkiRJSskASpIkSZJSMoCSJEmSpJQMoCRJkiQpJQMoSZIkSUrJAEqSJEmSUjKAkiRJkqSUDKAkSZIkKSUDKEmSJElKyQBKkiRJklIygJIkSZKklAygFmPhgoW53oQax30iSZKkYlUn1xtQ09Vepnbo0+PeMOnLqbnelBph3b+vFc7rfUyuN0OSJEnKCQOoFAievhg/OdebIUmSJCnHTOGTJEmSpJQMoJQTCxc6j6os94kkSVLNZwqfcqJ27drh2useC5Mmz8j1ptQI666zRjj3nANyvRmSJElaDAMo5QzB0xdffJfrzZAkSZJSM4VPkiRJklIygJIkSZKklAygJEmSJCklAyhJkiRJSskASpIkSZJSMoCSJEmSpJQMoCRJkiQpJQMoqYAsWLgw15tQ47hPJElSVXIhXamALFO7duh1x5Dw9ZQZud6UGmG9xmuEC7vul+vNkCRJBcQASiowBE8Tv56a680ouFEsglP9j/tEklSsDKAkaTEIFC4ZOCT853tH9rD+mmuEnkc4sidJKk4GUJKUAsHThG8d2ZMkqdiZfyFJkiRJKRlASZIkSVJKBlCSJEmSlJIBlCRJkiSlZAAlSZIkSSkZQEmSJElSSgZQkiRJkpSSAZQkSZIkpWQAJUmSJEkpGUBJkiRJUkoGUJIkSZKUkgGUJEmSJKVkACVJkiRJKRlASZIkSVJKBlCSJEmSlJIBlCRJkiSlZAAlSZIkSSkZQEmSJElSSgZQkiRJkpQvAdTLL78cmjRpUurrtNNOi4+NGzcuHHjggaFly5ahS5cu4eOPPy71s88880zo1KlTfLxbt27hxx9/zNGrkCRJklQMch5Aff7552GHHXYI77zzTsnXlVdeGWbNmhVOPPHE0LZt2zB48ODQunXr0LVr13g/xowZEy688MJw6qmnhkceeST88ssvoUePHrl+OZIkSZIKWM4DqC+++CJsvPHGoUGDBiVfK620UnjuuefCsssuG84777ywwQYbxGBp+eWXDy+88EL8uYEDB4bdd9897LvvvqFp06ahT58+4c033wyTJk3K9UuSJEmSVKBqRAC1/vrr/+H+0aNHhzZt2oRatWrF23zffPPNw6hRo0oeZ3Qq0ahRo9C4ceN4vyRJkiRVhzohhzKZTPjqq69i2t4dd9wRFixYEHbbbbc4B2r69Olhww03LPX81VdfPUycODH+f9q0aaFhw4Z/eHzq1KmV3g7+bkWWWWaZSv++YrCofZaG+7V87tfq4X6tmftVkqR8vK7lNICaMmVKmD17dqhbt2646aabwuTJk+P8pzlz5pTcn43b8+bNi//nOYt6vDLGjh1b7v3169cPzZo1q/TvKwYTJkyI79Gf4X6tmPu1erhfa95+lSQpX+U0gFp77bXDsGHDwsorrxxT9DbZZJOwcOHCcO6554b27dv/IRjidr169eL/mR9V3uM0diqrRYsW9jBXEtUSVfXcr9XD/Vo93K+SpEIbgapoYKXGBFBYZZVVSt2mYMTcuXNjMYkZM2aUeozbSdremmuuWe7j/FxlETwZQFWO+6t6uF+rh/u1erhfJUnFKKdFJN5+++2wxRZblEoB+fTTT2NQRQGJjz76KM6TAt9HjhwZ13wC30eMGFHyc9999138Sh6XJEmSpIIKoFjbiVS8iy66KHz55ZexDDnlyI8//vhYTIK1nXr16hXXiuI7gRaly3HooYeGJ598MgwaNCiMHz8+ljvffvvtw7rrrpvLlyRJkiSpgOU0gFphhRXC3XffHX788cfQpUuXuNbTwQcfHAMoHqMyH6NM+++/fyxPPmDAgLDccsuVBF89e/YM/fv3j8EU86h69+6dy5cjSZIkqcDlfA7URhttFO65555yH9tss83CkCFDKvxZAiu+JEmSJKkoFtKVJEmSpHxhACVJkiRJKRlASZIkSVJKBlCSJEmSlJIBlCRJkiSlZAAlSZIkSSkZQEmSJElSSgZQkiRJkpSSAZQkSZIkpWQAJUmSJEkpGUBJkiRJUkoGUJIkSZKUkgGUJEmSJKVkACVJkiRJKRlASZIkSVJKBlCSJEmSlJIBlCRJkiSlZAAlSZIkSSkZQEmSJElSSgZQkiRJkpSSAZQkSZIkpWQAJUmSJEkpGUBJkiRJUkoGUJIkSZKUkgGUJEmSJKVkACVJkiRJKRlASZIkSVJKBlCSJEmSlJIBlCRJkiSlZAAlSZIkSSkZQEmSJElSSgZQkiRJkpSSAZQkSZIkpWQAJUmSJEkpGUBJkiRJUkoGUJIkSZKUkgGUJEmSJKVkACVJkiRJKRlASZIkSVJKBlCSJEmSlJIBlCRJkiSlZAAlSZIkSSkZQEmSJElSSgZQkiRJkpSSAZQkSZIkpWQAJUmSJEkpGUBJkiRJUkoGUJIkSZKUkgGUJEmSJKVkACVJkiRJKRlASZIkSVJKBlCSJEmSlJIBlCRJkiSlZAAlSZIkSSkZQEmSJElSSgZQkiRJkpSSAZQkSZIkpWQAJUmSJEkpGUBJkiRJUkoGUJIkSZKUkgGUJEmSJKVkACVJkiRJKRlASZIkSVJKBlCSJEmSlJIBlCRJkiSlZAAlSZIkSSkZQEmSJElSPgZQJ554Yjj//PNLbo8bNy4ceOCBoWXLlqFLly7h448/LvX8Z555JnTq1Ck+3q1bt/Djjz/mYKslSZIkFYsaE0A9++yz4c033yy5PWvWrBhQtW3bNgwePDi0bt06dO3aNd6PMWPGhAsvvDCceuqp4ZFHHgm//PJL6NGjRw5fgSRJkqRCVyMCqJkzZ4Y+ffqEFi1alNz33HPPhWWXXTacd955YYMNNojB0vLLLx9eeOGF+PjAgQPD7rvvHvbdd9/QtGnT+PMEYJMmTcrhK5EkSZJUyGpEAHXNNdeEzp07hw033LDkvtGjR4c2bdqEWrVqxdt833zzzcOoUaNKHmd0KtGoUaPQuHHjeL8kSZIkVYc6Icfee++98OGHH4ann346XHbZZSX3T58+vVRAhdVXXz1MnDgx/n/atGmhYcOGf3h86tSpld6GBQsWVPjYMsssU+nfVwwWtc/ScL+Wz/1aPdyvNXO/SpKUj9e1nAZQc+fODZdeemm45JJLQr169Uo9Nnv27FC3bt1S93F73rx58f9z5sxZ5OOVMXbs2HLvr1+/fmjWrFmlf18xmDBhQnyP/gz3a8Xcr9XD/Vrz9qskSfkqpwFUv379wqabbhq23XbbPzzG/KeywRC3k0Crosdp7FQWc6/sYa6cJk2a5HoTCpL7tXq4X6uH+1WSVGgjUBUNrNSYAIrKezNmzIgV9pAERC+++GLYa6+94mPZuJ2k7a255prlPt6gQYNKbwfBkwFU5bi/qof7tXq4X6uH+1WSVIxyGkA98MADYf78+SW3r7vuuvj9nHPOCR988EG48847QyaTiQUk+D5y5Mhw0kknxeew9tOIESPC/vvvH29/99138Yv7JUmSJKngAqi111671G3KlGO99daLBSGuv/760KtXr3DIIYeEhx9+OObaU7ochx56aDjyyCNDq1atYgoez9t+++3Duuuum5PXIkmSJKnw1Ygy5uVZYYUVwh133FEyykR58gEDBoTlllsuPk7aX8+ePUP//v1jMLXyyiuH3r1753qzJUmSJBWwnJcxz3b11VeXur3ZZpuFIUOGVPh8AqskhU+SJEmSinYESpIkSZJqGgMoSZIkSUrJAEqSJEmSUjKAkiRJkqSUDKAkSZIkKSUDKEmSJElKyQBKkiRJklIygJIkSZKklAygJEmSJCklAyhJkiRJSskASpIkSZJSMoCSJEmSpJQMoCRJkiQpJQMoSZIkSUrJAEqSJEmSUjKAkiRJkqSUDKAkSZIkKSUDKEmSJElKyQBKkiRJklIygJIkSZKklAygJEmSJCklAyhJkiRJSskASpIkSZJSMoCSJEmSpJQMoCRJkiQpJQMoSZIkSUrJAEqSJEmSUjKAkiRJkqSUDKAkSZIkKSUDKEmSJElKyQBKkiRJklIygJIkSZKklAygJEmSJCklAyhJkiRJSskASpIkSZJSMoCSJEmSpJQMoCRJkiQpJQMoSZIkSUrJAEqSJEmSUjKAkiRJkqSUDKAkSZIkKSUDKEmSJElKyQBKkiRJklIygJIkSZKklAygJEmSJCklAyhJkiRJSskASpIkSZJSMoCSJEmSpJQMoCRJkiQpJQMoSZIkSUrJAEqSJEmSUjKAkiRJkqSUDKAkSZIkKSUDKEmSJElKyQBKkiRJklIygJIkSZKklAygJEmSJCklAyhJkiRJSskASpIkSZJSMoCSJEmSpFwGUFOnTq2OXytJkiRJ+RdAbbLJJmHMmDHlPvbhhx+G3XfffUm3S5IkSZJqnDppn/ivf/0rzJo1K/4/k8mEQYMGhbfeeusPz/voo49C3bp1q3YrJUmSJCmfAqi5c+eGfv36xf/XqlUrBlBl1a5dO6y44orh5JNPrtqtlCRJkqR8CqAIipLAqGnTpuHRRx8Nm222WXVumyRJkiTlZwCVbfz48VW/JZIkSZJUiAEU3n333fD666+H2bNnh4ULF5Z6jBS/q666qiq2T5IkSZLyO4CioESfPn3CsssuG1ZbbbUYMGUre1uSJEmSijaAGjhwYNh7771Dr169lrji3tdffx169uwZRo4cGVZeeeVwxBFHhOOPPz4+NmnSpHDxxReHUaNGhcaNG4cLLrggdOjQoeRnhw4dGke6eF7Lli3j9qy77rpLtD2SJEmSVKXrQM2YMSMccMABSxw8kfp34oknhlVXXTUMGTIkXH755eG2224LTz/9dCyV3q1bt7DGGmuExx9/PHTu3DmceuqpYcqUKfFn+c7j+++/f3jsscfiSNgpp5wSf06SJEmSakwA1axZszBx4sQl/uMEYizKe9lll4X1118/dOzYMWy11VZhxIgR4f33348jS4xObbDBBqFr166hVatWMZgCZdQ33XTTcOyxx4aNNtoo9O7dO3z77bdh+PDhS7xdkiRJklRlKXyk0p1xxhlhueWWi6lz9evX/8NzSLlbnIYNG4abbrop/p+RI9L4Pvjgg3DppZeG0aNHx0CNv5Fo06ZNTOcDj7dt27bkMbahefPm8fEtttiiUq9nwYIFFT62zDLLVOp3FYtF7bM03K/lc79WD/drzdyvkiTl43XtTwVQhx56aEy/I5CqqGDEp59+WqnfueOOO8a0vB122CHsuuuucW4TAVa21VdfPUydOjX+f/r06Yt8vDLGjh1b7v0EZQRx+qMJEybECox/hvu1Yu7X6uF+rXn7VZKkfPWnAqgrrriiyivt3XLLLTGlj3Q+0vG4KJedY8XtefPmxf8v7vHKaNGihT3MldSkSZNcb0JBcr9WD/dr9XC/SpIKbQSqooGVJQ6gKNxQ1QhiMHfu3HDOOeeELl26/KFnk+CoXr168f+UUC8bLHF7pZVWqvTfJngygKoc91f1cL9WD/dr9XC/SpKK0Z8KoJintDjt2rVb7HMYcWLOUqdOnUru23DDDcPvv/8eGjRoEL788ss/PD9J21tzzTXj7fKKUkiSJElSjQmgjjzyyJjCl10yvGxKX5o5UJMnT46lyd98880YEOHjjz+OJckpGMGCvXPmzCkZdaI6H/eD4hXcTjBaNW7cuPj7JEmSJKnGBFD333//H+6bNWtW+PDDD8OTTz4Z+vbtmzptj8p5FKPo0aNHLEN+7bXXhpNOOim0b98+NGrUKN7P+k6vv/56GDNmTJwfBVL87r777jBgwIBYeKJ///5hnXXWqXQFPkmSJEmq1gCK4KY822+/fSw7zmK4d9xxR6r8+VtvvTUWpTj44INjtStGt4466qg4osVjF154YZxztd5668UgKSmPTrBEoEa1Pu5v3bp1/F7VxS0kSZIkaYkCqEVhbaY777wz9fNJ3evXr1+5jxE0DRw4sMKfZeFdviRJkiRpaahd1b/wtddeC8svv3xV/1pJkiRJys8RKFLsymJhXRaxZR7TCSecUBXbJkmSJEn5H0BlV99L1K5dO2y88caha9euscCDJEmSJBWaPxVAPfDAA1W/JZIkSZJUyEUk3nrrrTB8+PDwyy+/lKzdtO2221bd1kmSJElSvgdQ8+bNi2szvfPOO7EU+aqrrhp++umnWLp8yy23jN/r1q1b9VsrSZIkSflWhY/1l0aMGBH69OkTF7clkBo9enRc5HbUqFFxHShJkiRJKjR/KoB65plnwqmnnhr22WefOAKFOnXqhH333Tfe//TTT1f1dkqSJElSfgZQP/74Y2jWrFm5j3H/999/v6TbJUmSJEmFEUD99a9/jSl85fnggw9Co0aNlnS7JEmSJKkwikgccsgh4eqrrw716tULe+65Z1hjjTXCjBkzYmrfnXfeGdP4JEmSJKnQ/KkA6tBDDw3jxo0L1113Xbj++utLLbC73377hRNPPLEqt1GSJEmS8ruMea9evcKxxx4b14H6+eefQ61atUKnTp3CBhtsUPVbKUmSJEn5NgdqwoQJoUuXLuGee+6JtwmWGI067LDDws033xzOOuus8NVXX1XXtkqSJElSfgRQkydPDkcddVSc6/S3v/2t1GN/+ctfwnnnnRdmzpwZgymr8EmSJEkqRKkDqAEDBoRVVlklDBkyJOy2226lHqtfv3445phjwmOPPRaWXXbZcMcdd1THtkqSJElSfgRQ7733Xjj++OPDaqutVuFzGjRoEOdFvfvuu1W1fZIkSZKUfwHUtGnTwvrrr7/Y52288cZh6tSpS7pdkiRJkpS/ARQjTwRRi/PTTz+FlVdeeUm3S5IkSZLyN4Bq165dGDx48GKf98QTT4RmzZot6XZJkiRJUv4GUEceeWQYNmxYuPrqq8PcuXPLXRuqT58+4a233gqHH354VW+nJEmSJOXPQrotWrQIPXr0CFdddVV48sknw1ZbbRXWWWedsGDBgjBlypQYXJG+d/rpp4dtt922erdakiRJkmpyAAVGlpo2bRruvvvu8Oqrr5aMRC2//PKhQ4cOsQJfy5Ytq2tbJUmSJCl/Aii0adMmfuHHH38MderUCSuttFJ1bJskSZIk5XcAlW1Ra0JJkiRJUtEWkZAkSZKkYmcAJUmSJEkpGUBJkiRJUkoGUJIkSZKUkgGUJEmSJKVkACVJkiRJKRlASZIkSVJKBlCSJEmSlJIBlCRJkiSlZAAlSZIkSSkZQEmSJElSSgZQkiRJkpSSAZQkSZIkpWQAJUmSJEkpGUBJkiRJUkoGUJIkSZKUkgGUJEmSJKVkACVJkiRJKRlASZIkSVJKBlCSJEmSlJIBlCRJkiSlZAAlSZIkSSkZQEmSJElSSgZQkiRJkpSSAZQkSZIkpWQAJUmSJEkpGUBJkiRJUkoGUJIkSZKUkgGUJEmSJKVkACVJkiRJKRlASZIkSVJKBlCSJEmSlJIBlCRJkiSlZAAlSZIkSSkZQEmSJElSSgZQkiRJkpSSAZQkSZIkpWQAJUmSJEkpGUBJkiRJUkoGUJIkSZKUkgGUJEmSJKVkACVJkiRJ+RJAff/99+G0004L7du3D9tuu23o3bt3mDt3bnxs0qRJ4ZhjjgmtWrUKe+yxR3jnnXdK/ezQoUPDXnvtFVq2bBmOOuqo+HxJkiRJKsgAKpPJxOBp9uzZ4cEHHww33nhjeP3118NNN90UH+vWrVtYY401wuOPPx46d+4cTj311DBlypT4s3zn8f333z889thjYbXVVgunnHJK/DlJkiRJqg51Qg59+eWXYdSoUeHdd9+NgRIIqK655pqw3XbbxRGlhx9+OCy33HJhgw02CO+9914Mprp37x4GDRoUNt1003DsscfGn2PkaptttgnDhw8PW2yxRS5fliRJkqQCldMRqAYNGoS77rqrJHhK/Pbbb2H06NGhWbNmMXhKtGnTJgZc4PG2bduWPFa/fv3QvHnzksclSZIkqaBGoFZaaaU47ymxcOHCMHDgwLDllluG6dOnh4YNG5Z6/uqrrx6mTp0a/7+4xytjwYIFFT62zDLLVPr3FYNF7bM03K/lc79WD/drzdyvkiTl43UtpwFUWddee20YN25cnNN07733hrp165Z6nNvz5s2L/2fe1KIer4yxY8eWez+jWoyC6Y8mTJgQ34M/w/1aMfdr9XC/1rz9KklSvqpTk4Kn++67LxaS2HjjjcOyyy4bZs6cWeo5BEf16tWL/+fxssEStxnVqqwWLVrYw1xJTZo0yfUmFCT3a/Vwv1YP96skqdBGoCoaWKlxAdQVV1wRHnrooRhE7brrrvG+NddcM3z++eelnjdjxoyStD0e53bZxzfZZJNK/32CJwOoynF/VQ/3a/Vwv1YP96skqRjlfB2ofv36xUp7N9xwQ9hzzz1L7mdtp08++STMmTOn5L4RI0bE+5PHuZ0gjYT0v+RxSZIkSSqoAOqLL74It956azjhhBNihT0KQyRfLKzbqFGj0KNHjzBx4sQwYMCAMGbMmHDAAQfEn+3SpUsYOXJkvJ/Hed4666xjCXNJkiRJhRlAvfrqqzHX8LbbbgsdOnQo9UVqCMEVwRSL5T711FOhf//+oXHjxvFnCZb69u0b14UiqGK+FI/XqlUrly9JkiRJUgHL6RyoE088MX5VZL311otlzSvSsWPH+CVJkiRJRTEHSpIkSZLyhQGUJEmSJKVkACVJkiRJKRlASZIkSVJKBlCSJEmSlJIBlCRJkiSlZAAlSZIkSSkZQEmSJElSSgZQkiRJkpSSAZQkSZIkpWQAJUmSJEkpGUBJkiRJUkoGUJIkSZKUkgGUJEmSJKVkACVJkiRJKRlASZIkSVJKBlCSJEmSlJIBlCRJkiSlZAAlSZIkSSkZQEmSJElSSgZQkiRJkpSSAZQkSZIkpWQAJUmSJEkpGUBJkiRJUkoGUJIkSZKUkgGUJEmSJKVkACVJkiRJKRlASZIkSVJKBlCSJEmSlJIBlCRJkiSlZAAlSZIkSSkZQEmSJElSSgZQkiRJkpSSAZQkKWcWLFyY600oyP3hfq2efbIw436tjn3ifq2efZLJLKiSbSkkmSraJ3Wq5LdIkvQnLFO7drjgicfDlzNmhGL39zXWCFft26XK9utFrw4KX/00vUp+X77726oNwpU7HbjEv6d2rdrh5hEPhcm/TquS7cp366zYMJze5tAq2a+Dxw8I02dNqZLtyncNlmsc9m964hL/nlq1lgkffH5F+HX211WyXfluxfrrhXYbXlwlv8sASpKUUwRP46d+l+vNKDgETxNmuF+rGsHTVz9/m+vNKDgET1N/+ybXm1FwCJ5+nvVZrjej4JjCJ0mSJEkpGUBJkiRJUkoGUJIkSZKUkgGUJEmSJKVkACVJkiRJKRlASZIkSVJKBlCSJEmSlJIBlCRJkiSlZAAlSZIkSSkZQEmSJElSSgZQkiRJkpSSAZQkSZIkpWQAJUmSJEkpGUBJkiRJUkoGUJIkSZKUkgGUJEmSJKVkACVJkiRJKRlASZIkSVJKBlCSJEmSlJIBlCRJkiSlZAAlSZIkSSkZQEmSJElSSgZQkiRJkpSSAZQkSZIkpWQAJUmSJEkpGUBJkiRJUkoGUJIkSZKUkgGUJEmSJKVkACVJkiRJKRlASZIkSVJKBlCSJEmSlJIBlCRJkiTlWwA1b968sNdee4Vhw4aV3Ddp0qRwzDHHhFatWoU99tgjvPPOO6V+ZujQofFnWrZsGY466qj4fEmSJEkq6ABq7ty54ayzzgoTJ04suS+TyYRu3bqFNdZYIzz++OOhc+fO4dRTTw1TpkyJj/Odx/fff//w2GOPhdVWWy2ccsop8eckSZIkqSADqM8//zwcdNBB4Ztvvil1//vvvx9HlHr27Bk22GCD0LVr1zgSRTCFQYMGhU033TQce+yxYaONNgq9e/cO3377bRg+fHiOXokkSZKkQlcn1xtAwLPFFluEM888MwZIidGjR4dmzZqF5ZZbruS+Nm3ahFGjRpU83rZt25LH6tevH5o3bx4f5/dVxoIFCyp8bJlllqnkKyoOi9pnabhfy+d+rR7u15q5X+G+/SP3a/XxXFA93K/Vw/269Pdr2n2e8wDqsMMOK/f+6dOnh4YNG5a6b/XVVw9Tp05N9XhljB07ttz7CcoI4vRHEyZMCLNnz/5TP+t+rZj7tXq4X2vefoX7tnzu1+rjuaB6uF+rh/u1Zp5ja0QAVRFeWN26dUvdx22KTaR5vDJatGhhlF5JTZo0yfUmFCT3a/Vwv1YP92v1cL9WH/dt9XC/Vg/369Lfr4xAVTSwkhcB1LLLLhtmzpxZ6j6Co3r16pU8XjZY4vZKK61U6b9F8GQAVTnur+rhfq0e7tfq4X6tHu7X6uO+rR7u1+rhfq25+zXnRSQqsuaaa4YZM2aUuo/bSdpeRY83aNBgqW6nJEmSpOJRYwMo1nb65JNPwpw5c0ruGzFiRLw/eZzbCVL6xo0bV/K4JEmSJBVNANW+ffvQqFGj0KNHj7g+1IABA8KYMWPCAQccEB/v0qVLGDlyZLyfx3neOuusU+kKfJIkSZKU9wEU+Ym33nprrLbHYrlPPfVU6N+/f2jcuHF8nGCpb9++cV0ogirmS/F4rVq1cr3pkiRJkgpUnZpWVjDbeuutFwYOHFjh8zt27Bi/JEmSJKmoR6AkSZIkqaYxgJIkSZKklAygJEmSJCklAyhJkiRJSskASpIkSZJSMoCSJEmSpJQMoCRJkiQpJQMoSZIkSUrJAEqSJEmSUjKAkiRJkqSUDKAkSZIkKSUDKEmSJElKyQBKkiRJklIygJIkSZKklAygJEmSJCklAyhJkiRJSskASpIkSZJSMoCSJEmSpJQMoCRJkiQpJQMoSZIkSUrJAEqSJEmSUjKAkiRJkqSUDKAkSZIkKSUDKEmSJElKyQBKkiRJklIygJIkSZKklAygJEmSJCklAyhJkiRJSskASpIkSZJSMoCSJEmSpJQMoCRJkiQpJQMoSZIkSUrJAEqSJEmSUjKAkiRJkqSUDKAkSZIkKSUDKEmSJElKyQBKkiRJklIygJIkSZKklAygJEmSJCklAyhJkiRJSskASpIkSZJSMoCSJEmSpJQMoCRJkiQpJQMoSZIkSUrJAEqSJEmSUjKAkiRJkqSUDKAkSZIkKSUDKEmSJElKyQBKkiRJklIygJIkSZKklAygJEmSJCklAyhJkiRJSskASpIkSZJSMoCSJEmSpJQMoCRJkiQpJQMoSZIkSUrJAEqSJEmSUjKAkiRJkqSUDKAkSZIkKSUDKEmSJElKyQBKkiRJklIygJIkSZKklAygJEmSJCklAyhJkiRJSskASpIkSZJSMoCSJEmSpJQMoCRJkiSpWAKouXPnhgsuuCC0bds2dOjQIfzrX//K9SZJkiRJKlB1Qp7r06dP+Pjjj8N9990XpkyZEv75z3+Gxo0bh9122y3XmyZJkiSpwOR1ADVr1qwwaNCgcOedd4bmzZvHr4kTJ4YHH3zQAEqSJElSlcvrFL7x48eH+fPnh9atW5fc16ZNmzB69OiwcOHCnG6bJEmSpMKT1yNQ06dPD6uuumqoW7duyX1rrLFGnBc1c+bMsNpqqy3y5zOZTPw+b968sMwyy5T7HO5ff+PG4S91y3+82Ky9/pphwYIF8WtJxP26XoPwl7/kdQxfZdZuvHqV7de/r9Mg/KWO+xXrrlV1+3XDRg1C3WXcr/hrw6rZr8m+3bhBg1C3tvt2/dWrdr9utGrDULeW1y6st0rVnQvWW3GtUCe4X7H2ig2qbL82rL9OqJ3J62ZplVmj/lpVtl9XrLdBCJm/VNm25bMV6/11sfs1eSyJESpSK7O4Z9RgTzzxRLj55pvD66+/XnLfpEmTQqdOncKbb74Z1lprrUX+PIHT2LFjl8KWSpIkScoHLVq0KDVAU1Zeh/rLLrtsDIKyJbfr1au32J+vU6dO3EG1a9cOtWrVqrbtlCRJklSzMa7ENCBihEXJ6wBqzTXXDD/99FOcB5W8UNL6CJ5WWmmlxf48gdOioktJkiRJypbXSeebbLJJDJxGjRpVct+IESNKRpUkSZIkqSrldZRRv379sO+++4bLLrssjBkzJrzyyitxId2jjjoq15smSZIkqQDldREJzJ49OwZQL730UlhhhRXCcccdF4455phcb5YkSZKkApT3AZQkSZIkLS15ncInSZIkSUuTAZQkSZIkpWQAJUmSJEkpGUBJkiRJUkoGUNIiUB5fkiRJShhASRUYP358OOigg8I999yT600pak899VSYPHlyrjdDUg22cOHCXG+CtFgWvi4cBlBF/gH2w1yxpk2bhssvvzxcf/314b777sv15hSlESNGhB49eoRBgwaFqVOn5npzCoqf/UVz/+SX2rX/rznzyiuvhJ9++inXm1Pjj2WP79yoVatW/P7cc8+FTz75JBSTTIEdcwZQRXjwzpkzp+T/yYdZ5Tv44IPDpZdeGq6++mqDqBykT7Zp0yZcc8014emnnw4PPfRQ+O6773K9WXkn+ax///334Ysvvoj7cMGCBfGzz3eV9ssvv4T58+fH86Ty6zjnvTvrrLPCk08+mevNqVEjc8l1/u233w5DhgyJ/+e+QmvQ5gs6A//973+HTz/9tGhGTxdmHYe///57qWtPvh6HdXK9AVo6OEA5eN98883wwAMPhLlz58b7zzjjjNCsWbNQv379XG9ijfzA06t54IEHxg87o1Hsx2OOOSbXm1bw+vfvHy/2XGT22muveOz26dMnPnbIIYeERo0a5XoT8+pz/9JLL4Vbb701/Prrr+Gvf/1rqFOnTujXr19Ydtllc72JNcqrr74a7r777vDzzz+HU045Jey+++5x/9nRVDMR6HIsg/dopZVWChdccEF4/vnnw4477hiP9WKWXMPA+fSOO+6I+2zVVVcN22+/fUkQ5fFd/YFD9j5ea621Qrt27eL7sc8++4S6deuGQpbJZEqOw7vuuisGjl9//XU8Bjt27BhatGgR8pEjUEWCD+/QoUPD6aefHjbffPNw5plnxg/tySef7PySMpLeEBqb8+bNiz3RNNp79uwZR0PuvffeXG9iwevWrVsYOHBgPOlOmjQp7LnnnuGf//xneOKJJ8LDDz/sSFQKySjT6NGjYxrkoYceGgYPHhwv2DSmSHXK9x7AqsQ+YfRit912C4cffnho1apVPP7oLYX7qGbNT0USPGWPFtIhSAfhZ599Fm8X8yhr0mglg4JU9GWWWSb85z//iZ0EBJlwJKr6kEqavAfJ7QRtr8aNG8fMlkLf/7X+f/B48803hzvvvDNss802Yb/99guvvfZauOSSS8Jvv/0W8pEBVIEiheGbb74puc1FhF7offfdN/as0jNHw/SAAw6IH/CvvvoqPq/QP8iLk/TG8cFmPx1xxBFxH5Gv3Llz53DllVcaRFWzpMHDxZ5G/s477xzeeeedsMceexhELcaDDz4YevfuXbL/MGXKlLD11lvHdNTZs2fHixijqJtttlkskJIEWsXu5ZdfjsHlUUcdFc+TH330UTj33HPDhRdeGP/vPqoZaPyTDcA5IenRJpOCeZLguO7QoUM8T9MwSz4HxZwK/cILL8RUdD7vL774Ylh33XXjfbQJYBBV9Rhd2mqrrWK6Hvv3scceC8cff3zc/wT4dGBznH744Ycl+76Q34PffvstvlauT/vvv39Yb731wpdffhm6du0a26r5eD03gCowfAAZNWG0hMbmt99+G+/nIsLXBhtsEGbMmBGj/y222CKcd955MW2FXgAUeyOB1z9s2LBw9tlnh5122il+2Bmxo2d6woQJoUuXLnHf0ps3YMCAXG9uQaY7JA0e3otOnTrFEQHej3ffffcPQZSFJf6Hzz2jJVygb7nllpL7uTDxxef+sMMOixft888/P448Mx8i6TwpdqQzklbCcUXHCT2lXOBp7NAYtzBBzbDpppuGhg0bxjmRFJmhN3v55ZePPflUTX3vvffiOYNOg2eeeabgG6aLw3HLefXvf/977CxdeeWVYyYKHScEo3QWwiCqatHhusMOO8Q2A+feDTfcMI5qc/3i/Mu5l46siRMnxmkVhdz++u233+KxxWtl1I3PaPfu3WMHFfuI1//WW2/F5+bTMWgAVYDo2XjjjTfCDz/8ED+ojDSBEycnTD7Qu+66a+yRwnLLLRdTIIo51SEbqY4ET8cee2zcNwRU9EozT4yeaOZEnXPOOSVzJVT1+fqff/55yRpcN910U9huu+3CaaedViqIorAEjVyOc/3f556OEVJDGIG+8cYb4/3cx34l35weUUZRwXwRLmzZKSbFhuAoOe8x34m0XY63ddZZJ3aaPP7447ExTqpYvXr1cr25CiF2/NHwpKOFTizm9NChddttt8XAirl+F198cewY+Pjjj4sqOCivGAE9/XzW6f1PrLnmmvE8wTn20UcfLRVEqWowz4mRUgJ+zsEEDhyXjALyWN++feNUCs7JtNemT58eCtGgQYPi9WjFFVcMu+yyS7j22mvDSSedFC666KKYKk3HFW3UJC03n47B4r1yFigOPnqhOViZ70D6DqNMfDhpgG6yySaxUhE9UEn+OBcagisDqP/tQ1Icf/zxx9ijyQWbickET6Tz/Pe//w1HH310TC9jv6lqJ5nSGDruuOPiFykPPMZJl0nh2UHUqaeeGkegVltttVDs2Ed8cTyShsa+I8AkXY8J4xTioAd69dVXj8/nHMDxS8/9KqusEooRjRYCceY3ElQSgNIrTLouI3ht27aNz2PCM+dUGurKnewAqHXr1rFTi/eMYiik85GWxv85LzAxfezYsTFtirTWfGuYLWkH1MiRI2PGBCMfa6+9dryeMWrPfMgEzyW7gmObBm5SWEpVd5wS0HNu2XjjjeN5mYwgjl1GXzg2aacxKsOITPLeFFpFvq+++ircfvvt8Tgj+4HMB0aH6cRPMif4bPL5zTe1MsXQLVOEOGj/9re/xR5mhpIbNGgQbrjhhngQM3pCSePmzZvHD/sHH3wQLzKse1Ssc54IlrgY83+Gkpl0z+gTDU8CUILNZMSDHjt7o6uv+h7FI+ipYxSAAIqTLkEV7w3vBZUkmRTN0H/CSlL/h4swn3Ea/1QwpIeetL0TTzwx9nzSqULQuf7668eLOccz54Fiw2ecYJxR5lmzZoWZM2fGVGZ6RTlfEnjSO0+nEgEU+47iBMp9cEBnIIE/52fK8jPSSnBLkRQCpwQ92gQNdBaQbZGc3wtR9vmPtPMkINp2223DCSecEK//BJZrrLFGTCOjEc+IHaMiSbVJjnk6qVQ1xyltCtoNjP6RqUKbgpRTOmnY7wkCCtpfXNf4TodXIbz+BMchxxifTTo9mLNI5xVZT7Q5yTahncpnNenUzxcGUAVo2rRpMeWJyXkMEXNw0vvBh/a6666Lw8ccxPROkQbBhD7mRhWb5KJDTzzD6dzeaKONwlVXXRUvQvQQPfXUUzEQ5XnMg6BRRaOTi7eq7j3gxMsFhxMtF3wKRzDixzFMI5ZGPnMceC4V+iiG8K9//SvXm1+jkH52xRVXxIbjZZddFnuXCaKYzEyqBEEU5wKqb9EzSk4+vdPFeMwxkszIJZ1J4Nh75JFHYlouX6SVMMGeRjc9pZwDlPvggGDp/fffj2m7pEZxTNPg7NWrVwyiOM4JGhKk8PEcOhJ4fiHi/JjMG2VhVlJP6WAi+4T5kDRUKbLBZ55jm4Y6xzX7jZEBjnUatmSlsO6elhzBKO0KggfSJZlKQSDFUhx0WBMs0A5L3jvabMzz5YsAN9+NHz8+Hl+8djr0CNYZEabtBEaMR40aFeec0i5lRI7gKftYzgsEUMpvCxcu/MN9jz/+eKZFixaZvn37xtu//vprZocddsgcfPDBmWnTpuVgK2umjz76KLP55ptn/v3vf2defPHFzDvvvBP31S+//JI588wz4z484ogjMkcddVSmbdu2mU8//TTXm1yw5s6dm+ncuXPmtddey/znP//JnHbaaZmBAwdmpk6dmmndunXmjDPOyIwfPz4+d8GCBZli/rwnX2WNGDEi06NHj/g5//DDD+N9Dz74YKZjx46ZW265JQdbW/PMmTMns99++2WuvfbaUvdPnz49071790zPnj1ztm0qLfsYf+uttzLt2rWL5+m77747HuetWrWKx/nkyZPje3fKKadkXnnllZKf+f777zO77LJL5rnnnssUGs6PyfkQDz30UObYY4/NXHLJJaWub+yXE044ITNy5MiSfTplypTMjBkz4u0bb7wxs91222W+++67HLyKwjtOn3zyyczWW2+deeaZZ+Kx+I9//CMegy+//HK8lnXt2jWzzTbbxGM2wfVuyy23jO22fDR//vyS/TBs2LD4Wo488si4D7Lbn/3796/wd/z++++ZfOMcqDxGL3y27IIGjCqRe8uEWvLCV1hhhTiaQkWef/zjHyXV+Yp9AJJeEMrekv7BBEcqOrGvWCuD0TtSysjX5YvJkMWY5ljdGCVhzg69oqRPkbo3fPjwmCbJ/DPSdejJYuQkqVZEmkCh5YqnxRw8euSTOTn0NCcYdaJcOSl6zBsjZYQUPibtkoZGT2CxopeXkSb2H5/1cePGlVrqgfQm5iRYlbDmSEaeOEeQQs2cVN47Ui8ZPeRYZ+SEcwHHOCOsjFwncysoAMTvKLT0Sz7zzGnMHhnlnMiIGylRCUYz2FcUQGIUjlFV9gdtBUapSd1jNIR2AiMiWrLjlPmTpPxSqIu1CylGRaYEo5+MCv7lL3+J52VG/qnmC0YIaY8x8kJqZT5Xzp04cWLMZiKThJF70hYZ/SQ9mnnknFt5reW1O/MtfS/KdQSnP+eBBx6Io0tJL9Lo0aNjTxMjKNmeeOKJzCabbJK59dZb421GVvbZZ59SvR/FjJ7MLl26xB6SbPTK7b///nFURNXr9ddfjyMmEydOLOnJ69atW8kIAe8Bva0ffPBBUY884fnnn880adIkM2nSpHib79weMGBAqefR83zWWWdlDjrooMwnn3wS7xs0aFDs6SxGL730Ujzv7bzzzpk999wzfrYZYb7++usz33zzTcnzLrroosyll15a0qOq3Pvvf/+b6d27dzzOOaaRnCe4jtHDz/UQZAhknyN+/vnnzA8//JApJDNnzix1m1H6ZLR58ODB8XqfZJ4kRo0alTn66KMzffr0KdkvQ4cOzbzxxhuOPFWh4447Lh6njDLNmzev1GN77bVXPI7BMVn2Wlb2fa3pTjvttMyVV15Zcvvqq6/OdOjQIY407b333nFE9IsvvshcddVV8ZzLqByPccyhEK7leRjyCfSisl4Jc3Ho7SCPmV4pJonTG7DlllvG59Gjz6RxSvOSX8pEUnqcCnUybZpceiaNJ3OYqI7D/Ke333479sZll36lklFe9ork2SRTKkNyPz3MjPpxnNIrxwjB66+/HotKMMmf0RV+Nu/ypKsQPZSUI6fnnTk7jNbRy8fcRkbwqA6Z9Dwz2sL+ZE4Ec0RYELoYMQrHnKdkHggjE5QXZvSpXbt2sTAJcx85L3C8sb5QsR5fNfEcwbmaUSbO3ZwLKMedVEikJ59zNOt1IckQSM4RzDspJGSQcI1ndIMRI143hWOY28S8G8plM+eEohnsF0bl0LJly/gZSOY6s18on62qvZYxt5x9T1W95Dhl1AnZ2StJ5djsa1m+VfTdaaed4jHFdlMggvl2HIOcXzm3co7l+sP1ies3lU2poMsIHHOaGfHPd7YO8xST60k34cTJB5lqZRQ/YBI5DQCCheQEyYmWBgIXH9J58rnKy5LgAkz1F1LxuMgwuZgKb+w7FnRjnxF4cnJjqJmTIw15C0ZUneSCQ0OVKnpcQEjP40LPRFveDxq1HMdMbCaFkvQTOguStL1ibtwSADARmWpxrEdGRSeCJi7S7DOOYdbIAWkjpEAyMbyY03NI023fvn089yXoOKHgAIV06GR6+eWXY6lnzp08ptw3SlmbiGIRpKoSMJCyx/FN9UQaY3QScP4g8C17fBfqOYKOUlJx6fCjCAyBECl6vF46SqhWSpojaMCyL7nOgTZARQ1/VU72PuTcQUpkUqyL/c7yCHRa02FN+ihtNVLXGjVqVKozN5+P03322SdemwmSSJVlKgSdnEjaUTzGd6aUXHLJJbEIFymNFDsh6Mr36rlW4ctDXFDoXSKq58NKVSLmNXGi/Oyzz2JvM+u90DDgIKVyERcYbhdzMEBPNI3yfffdN1aJofHEB5z9QnUYvujRTMrjUvXNOU9VI/tEyb5lNIR5OpyEWdOJIIrS5VTkSeZD0ZPFhYmeqmTOTzGPCCYXbXo3qWjEsgRckOkY4bil8U9ePSMtBKLknXPM09jMt97NqkQvKY2Xe++9N97muOL4oiOFizmL5XJc8WXDsmag4inzdTgf8F7Rm0/vPiMoVI67//774xygFi1axBEY5vfyvGI5h9LJRNVNgik6Sjmncv3i804QRWOW45tzKnNvuOap6tGZxbHH+0GnK+8Rndtc0whomcvLHF4yWugM4BxdaMfpq6++GkfxuRaxL7KzROjUoxIho3LJSBxVdnluMgcsn3m1yENc6JlQzyQ9JtpzMDI5nEmiXGBoMNDw5OBlHSMuNqT+FHPwRKoDEzzpvSTApNFEqWz2G2tmEHwymkdvHgEVJcwNnqqu4Z9c+Gm8cowSBFBueOjQoXEkhV48infwPSmOwoWG9UuSMufFHDyBCxM9zxyr7McjjjgiNjDp3WMldwqhcFFiQjgXbybeM6pXzMETWNuGgJMRDSQNmCRoSu4zeKoZKHH8zDPPxOOYojF0etEI4zxAjzfZAmQNcE4n/feFF16I7x9ZBYWM189+ID2KkSc6lliigNR9zqmcFxhtZv9wvHNeZQSfNoCqHuXIOfZoQ9BJnXRgk+HD+0QHF+ce0i4JcjmWC/E43WmnnWIKOYW3kjLlycga13SmkBA8EVyyL/g/3wtiP+R6EpYqj4IHlNW+8847S00kpQT0HXfcEW9TppTSrRRJ+OqrrzLFjPLElLylDHnZybWULO7UqVMsPTpr1qycbWOhyp4oet9998XiEEwqTYqf/PTTT7G0KUUkmMDPBNzLL7+8ICaYVqVk0vyFF16YOf/880tNPD7nnHMy7du3Lyks8fnnn8eiMpTMVSbz22+/xdLOFI6glHCyP6+77rp4Hi1bQEZLV9nPOpPMWToCzz77bFzC4OGHH47H9emnnx6LSvCe9urVK9O8efOS8tyFes6o6HVRXGf77bfPHH744fF6jy+//DKeHyjvTlGefC4RXdPfhzfffDMWRwCl9ZPlUCZMmJC5+OKLSxVboG1GsSSO20L1wgsvZJo1axYLllGsiOsPpcyzr1cU7OH6n11+P58ZQOUhLvg0+u+5555S93OR4cRJYFVolYeWFCc7Lsq77rprvMhko5LMFltsES/WnCTLW19HS4YKPVxgCJJYA4MqRWPHji15nP9TYY4qPueee25Ot7Um48J89tlnl9zmWOWifOihh2Z22mmnUhXl9D+sfUcFLM6PVCY87LDDYofKuHHjcr1pRS37XMt1i+qRr776ajxPE+y2adMmdg6CAIpzx/Dhw0sqynLuptMlqUJXyI12KuxxDF9xxRXxWpVU06OyGde2pMOEAPTee++1kmQ1vQ90ShMwjRkzJnPyySfHjkHOK7S/wDmYQCKpNgeqR2ZXoCvkIGqzzTaLlSAJnDjXlq1GWEiVjQ2g8hQHJ42psovi0tNBw4DFM4u11ym5KFO+mQ90svgtPZWUGWWxQcprZqO869dff52T7S2G4JXGfVJOe8iQIbHRQ9l9Rkqy0bucXKyKPZAt7/UnF+uygRKlt9mndKzwuS/2fVceLtzvv/9+XKLg/vvvL/qR+ZqE4IDFN1mqAAQEHM9J8ATeLxYk/fjjj0vuI4Dg3E1wVch4jSx2e8EFF2RuuOGGuG9uu+22kn3AQtksDk1HCsd3wiCqar399tvxHMvxxiLNLIHCe5Fk/oB2BEsm0O7I3v+8d8XQwfXmm2/GfUIHf3IdKtS2qEUk8mTiKHMcmIRIDjjVopgsynwH5j1QoYjqXEzcYzIfc51OPvnkOD+iWPcXuclJKVcKFDCpk7x58paZ60T+LZXMshciVPWg3DZflN9loUeqRVKKm7lnFDehRDGTnrMVc6ny7OOYRUGZ88AEZZYr4FimLCyT6ilyQhlzjnHmOzKpvlOnTvE5Uj5NQmd+COcA5u6BwhCUO6bCHgtw8p05fb/88kssmpI9Xy3fK3ktDgWPunfvHgsWMJeZolFU2qSYBtcvChQw55nHua5xfi32+aLVgTnU7FsKc1155ZXxmOPcfOSRR8bqc8xzom1GYRoKfCWVY4ux+NEHH3wQj1VedyF/Pg2g8gD19ZmQyIeR6npcTKhIxERbPqRNmjQJ6667bjyJcjGioUpAVaz48FIJhwn0BE5UJXrzzTdj2WKKRND4pCIXVfi46HABUtVLTpyULKd8PJNsafyAMq+8J7xPlCPmIkRHgP6HKmQUhNl6663D999/H9d+o/AGZYqZtEsBDhqdXKQ4pil8QmljKZ88+OCD8YslI+jcIiggEPj666/jcT5hwoQ4GZ2CMhRNYBJ6MXWw0HlCCXcKH9EW4LpGRynny1NOOSV069YtNt6zS2sXY6O9uq9ldFpTgIrqhwRTSTEaKiBSspyiJuxzinsQ3HKcFnvJ+PkFfhwW7isrEPQ+UT+fnjkWz6SSFCdNAiWqE3GxoWoR5TIpZUwVlGIOnkCv/d577x0bmgSbrDlA4EkjngY9QRQnNoLPpLSmql7S68QaPDTskypyNAZAg4meO0ajshcxVgjTp08P/fr1C2effXY45JBDYo8ma2uwlhFV9XiMNaCowMXFnV56RqCkfEPHFmvFMApF5T0CApY44JxBQ3Ty5Mmx2izPKfQe/fIa3NzH55xOVK5ZnD/JPKGSGVkpPIbk5zgfFOr+yeW1jAqHLBtDW4xS3GQAgAqIBPpU3qO9QQaAy278n0J//YX96goAo0osiEnwxFompO0RONHj1Ldv37j+E73S9NjxoS30A3ZRIx2cvAiIKKfJ6BL7hDKu9NITdJLmxMgdPXoEpYx8sDChqhfrYPBF+h7v0yqrrBIvLqTwtWzZMl6MklLlxdxbl43gkoUZScmjDCyBE+XKKb3Pau+M2O2333653kxpiSSfeTpQaICyjgydgIxWJ5kBpKIn54VCXs4g+/zHNYxRNoLGpEQ5a2OxdAEBJ0jnZ1+UXZ6kUNOlco39SluCQJa19uiIJV0PvG+Uluer0I9T/Y/vcA1HzzOpDKwvwLwmgiV6m2mMPv300zG9h56RYh1JSYKnV155JS5SR6rTDjvsEHvrv/vuuziszmKtXIjIyR03blx8zrRp0+KInZYeeuYIWFnckbWeaAAQDPD+8T4WY/BUUX44a4lsvPHGMf2RTgDy7un9BKN4BKFcxBf1O6Sajs98Ejiw2CvHMqnpdHTROcioavZ5oZDPEclrIx2M9F32BR0pZFIwis/+YB4Y2RScR999993YSN9ll11yvelFhSCK94jzL/OqOVbLtr8K+TjV//gu1yBcSECOLQtlgsVy6Ymjt5kAgFEUkA+OYm848fqHDRsWFw+kkUkvPavT01PPRGTS+ZILDIEoASc9SAZPVaPsFMqKplRyP8cs89G46DD3iRQ0LjyMRhXrcczrTj7rTEgmZZeRJ+Z8kIpLsMlIKQVRQK80hSOYrJz9O6R8D6LAdY70a9Ku6RQrNhTbGTRoUPzcP//88zHFmXmjdAAyUs/8J/bLW2+9FTtRHn300TgXjPOCln4QRduDwhIqTo5A5RijJs2bN4+Nfi4knBzpcWaeA6usM9mefGeCKk6UjJzQGOXn+E7xiGLHSWy77baLqY3ZPfKNGjUKTZs2jfuQFDIq89GDR+NUVSNpvBOcEuhX1JhPUvR4TnbRDtIsi3H0lIYPjSDmMjEZmV53UnRIQyVgYrSZdF0+76ScMveBioUjR46MQRaPSYU6EsUILNkWha5s2vLEiRNjcQhS9JnnTKEdqm6Sks45lrYAAWb2Ncy5NrkLop544ok4X0/FyRGoHKNBf+aZZ8ZKLqNGjYqNfS4c9DBTZYuTJ/MgGL5nsuiOO+5Y0ntPD0gyElXMKPFOSlh2o5xefSoWEUTRQKcRyqRP8slVtQj6GdXjQr6oop40FLIfp9e0GIMn9hOT4vnMU2WPIInqY0yeZ14jbrvttliumEn09EKTrtu7d+9Ybe+ee+6xcqRqvGRUqayKRkuyR6LIJij0NKjstGXS8X788ccYGDHaRPBEsQiKyLB8AW0DRjqoxJk958mCEdVznFZ07JZFeyKpBsl5XcXFT16OJKMkNIyYEE7jifQFJokSUNETTQDFHBGCKBpPTLSlR4reOeaTuN5LKElzZB8xX4T5T0l5Ub5TeIPAiVxy5tyo6jFxln1P+Xh6TiuSPVeHkrz0ttJhUGwpaMm8BeYxUHXstNNOiyPJfP65j4sy850GDBgQ9xnpe3QIJA0sR1CVTyMrn376aQya+JyTbUGDs6J5e9n3UV2W+T5kYhSi5LWSokcxArJKuKaztAaNcQodHXjggfE5yTWf80N2YFls587qPE5JG+U4JUBd3HIQ2cfvyy+/HAP+pN2h4lHYXTw1GB8+RkpA+VbmOzCiRPUdTp58iDt06BAbVxSMSEo/80Fl6Njg6X9otO+1116xMUpDPvvkmCwwbPBUNcobYUomODMyQiN/cRcc0tFYiLBdu3ZF1wBgP/DFCBTBPql6dJaQmpdUhOSzTeOJ57BeWbLmCCl8Bk/KB0mjlPLOrFlEpyDHNMc75+XyPvfZ5wjWheLnqMxXaLJHN/hsk7570kknxc89KXpU3OU5pIaRdcKoE/OhCKIcbaqe45QMChZ0p7OKqQB8J1W6PNnHKXPWWOSY87eKEAvpaulbuHBh/P7bb7+V3Hf66adnttlmm8zYsWMzCxYsiPfNmTMn8/LLL2d22GGHTI8ePXK2vTXdtGnTMldddVWmTZs2mWOOOSZz7LHHxv9/+umnud60gpEck3jzzTczL730UsntDz74IHP44Ydnxo0bF2/Pnz//D8c6Hnroofi+vPDCC5lilOyLH374ITN9+vTMzJkzM88//3ymY8eOmbPPPrvUc6dOnZo54ogj4nnh119/zdEWS3/OoEGDMltssUXm448/zsydOzdz++23Z5o0aVLqnJycU8qeI9q2bZt57rnnMoUm+3W+8cYbmTvuuCOzySabZG699dZSz+Nav91222W23377zN57753p3LlzZt68eX/4HVpyTz75ZGx3jRgxIt6+7rrrMi1btozHKe2vbOVdy1588cWlvs2qGWrxT66DuGKT9GCQjkcPBr1spOcdcMABMYWPRTRvvPHGmLrA80g/Yz4EqT0WjagY+4mqe0zOJ498p512cnHRKpLd68a8PXpESY+kMiTVoSjWQQ8zaXmkolQ08nTttdfGXH7SLotNsi8oUUyhGCaGk8rHGk/Mh6KgRLNmzWIKT4KS+/wco09STVY2LY9jnPl9pKNyzLP8Bl8s/s55mnV0iukckZ0uxugG1/qjjz46Zpww0nzLLbfEDJME8x1/+eWX+HOMVpP6aMGIqnsfku/sdwp0UCGWedPMSyW1nBFAMoKSNMpiOU5VCbmO4IrVu+++m9lss80yffv2zVx77bWZp59+uuSxI488MrPjjjvGHhB7m1STRp769euX2XPPPeMI1OjRozP77bdf5rDDDsuceeaZcRSKkb9XX301Pjf72H3wwQcz7dq1K9qRp8SoUaNiryW9l/R4MrqcjNY9++yzmf333z9z/vnn53ozpT/to48+it+vuOKKzLnnnhvPE61bt84MHDiwpMd/n332yXz//felzi0PP/xwZvPNNy/4cwTnUEaVGXli5IMRD9oBZJm8/fbbFf5c9qi+ltz48ePj93vuuSfTq1eveC5u1apVPDfjmWeeybRv3z4ep9mK5TjV4hlALWU0Kvm64IILMhdffHHJfdlpOzj55JNjg9MUNNUUXGDOOuuszDvvvFNy3+zZszOvvPJKpnv37vF45YJzySWX/KGzoFmzZjFVrdgNGTIkBpnZDUdMnjw5M3jw4LiPOnTokLn00ktzto3SnzV06NDMAQccEFNTuXYRIJC2x7GdoKOAtLTstNTHHnssniMKPR2KxjppjZwzORfccMMNmU6dOmV69+6d6d+/f+w4Tc6vdp5WHzqvCGA/++yzzLBhwzKbbrppPE5JO82+3nEsZ0+zuO+++2LHd6Efp0rHseClLBkCpux2djlSMDx/2WWXxUpFFEQgNarsc6RcoNABKQukOlBif5ttton3U+iAVEm+KGdOOd4nn3wybL/99jHtBKRTktZH8ZNiT2uimh5FYZJUHm5TIIJCMpTap5AMpd033njjHG61tHjlVdJjkefvvvsuro9DehrFZai4SSofqeqkrT711FMxFZ21+cDC0ZMnT46pVJxHCtlnn30Wq20mr/Pnn38OjRs3DnfeeWdc/4mF4E855ZR4PijG8+XSsvbaa8drFFMjqIJMyh6FjUiT5D3imsVafRTuyG6Dcaz26tUrpl5LBlBL8UKTnb/MBYQLCRV2uJAka0LwgWVuCTipSjVhgUcuIlTGOuuss8J7770Xttxyy7DFFlvEx5LjmvXKqBzJMUxJcxY35oLE/Khi/twTVDLfkUYinSJ89gmUWLogKX1LJUmeh0JvRKowlFdJj2ObcwTXLubzECxwjN9xxx0xKKCKJNc75pAki2tz34knnljQlVKT6ptTp04tdf/KK68cdt555/jZZ58ccsghcZFsOlG15H799dew4oor/uF+Kh4y35Ty8QcddFCcj0YnIedl3id+huORjr/kOOV6SHArJSxjvpQaUW+//Xa4+OKLY6OJhV8pfUlDk94PejV4Dh9QGqJ80ShNu5ibVF3BEz10LOpIALDGGmvEieFgjSImgoPjNVkckxEpvoYNG1b0xy+fadYIoXQzF3J6mmlMshg2k8gpFAN65gk4V1lllVxvsrRYFD0ZNGhQye1nn302FkFI0LlCD/+IESNiTz5luXnOFVdcEXv56dlnlJVrXHKeKeTgCcn1nUJRLLWRvdwG+4gGPYu+c65lOQM6nipacFjp0MbK3s8ESxyHyVIbp556atzvlNqnnUYQz3MYCaWtRoGvsseplM0RqKVw4uSkyDoYhx9+eDwxch+NTtYe4IO62267xd581oVi8UA+uFbaUa4kFwtS9lijhJQ90nJoJNG7THop65YQTNEhQCW+ZDX2n376Kabr8J00VS5AxYr0HHrdqTxGzzI9nPRAUy2SzpNx48bFzz3peqSNsI5WoTcklf9Iy2N0OUlBfe2112LFOCqY0QglvZcUJxaBJy2NDhU6DpKUXhAcFOM1jv1G1TYqbrIPGLWnA5XUaEaeOTfQ6Gf0jv2mP2/bbbeNbStQ2ZjrUt++fWPqXosWLWIVSFIm6ezjMYIpKh1nK9bjVOlYxrya0Wjq2rVrbCjR40HKHiuzs/BagwYN4oVmyJAh4Ztvvok99iykV/ZDLC1tb7zxRgzuueC0atUqNu4J+Pnetm3bGCAxskLvHKVckzk7BE2k+K233npFfxzTMKL3nUYkCz2TO0+Zdz7n7CfK5dJpQroISxa4RIFqMjInCPyTxZxvv/322HFCWirnAxYfZaSVY5uOFjpYCKZ4vNgWzF4U5oFxHiUlmpLutBEIMJ9++umYxsf8MR5LOqVUOZ9//nnYcMMNS27fd999cZSf4J6OKkrqMwq66aabxpRzRpxYRJe2l1QZhtbVjPiUHgwaTfTS3XbbbXFtF3pE6NlnXgRDzclzvdAoF8oee4w4EQARPCXrFhFQkV5CUMUxSw8z/8++WDGCQoqaQmxo7r333nH+Bxfp9u3bx84UgiomLdNjn6RESjUZgT5rv5GaR4cADVFSei+66KLYS8+INMf4mDFj4nF99tlnxwBg5syZMU3dkdX/Yb8RYO6xxx5xFJrgqXPnzvExRqLoWGV/G0D9OaTpse/osGZEj//ff//98drFuZf7mfPUu3fvuP4eHV20y7beeuvY8SelZQBVzQ1RJszS00GPEw0pGlHHH398XDiXDzALtSUMnpQrybFH2hkTm8nH5/tjjz0WR05o8DPZljlRHMekmzAJlzkN5RWd0P/SnSgQQa/85ptvXlI0gu80pGh82lBSTUcqLlkSgwcPjlU2uc4lc/hYQJvjmHReKsfxRZra0KFD49w+Gq4qjc88hSIYeR4+fHhM6aNj9bnnnoujT6bvVR5zm5hPxvFGGiQdf5x3mYfKyCgp6By3ZANw7qX9lYyqkhVkBoAqywCqGoInRpomTJgQyxLvs88+sTeOXjsuMtnVdZLKPOSRc4EygFIu0Tj65JNPwnHHHRf+/ve/x//Tm3z++efHOTzJqArpemULHhg8lY+LecuWLWOaDqkk9MiTxktvvmk6yqfrGp0lFEF466234ggK5wJu8zjpe5wDSOtFEkgxMgU7WCrG/mOfEkxR9c0lDCqP4J05T1ynjjrqqFjVcPTo0XGOEzgu2c+MRHEsE0StvvrqccSJEamEx6kqwwCqCvHBpNeDBieTF+lRuvzyy8P6668fe/H5AJP2RD4uKXxMvv33v/9d0ist5dIvv/wS5+ZRspwLEnObyBunZ48qfKzxQpoOo6prrbVWrjc3r3BRXmmlleL5gXkPAwcODE2aNMn1ZkmLlDQo6eRjviPXMkanGYXiHMBI04EHHhifyxqGdAhwzijLRmn52C+MUJOZwv/tRP1zSIGkOERyHaMSJMtnjB07NpYmP+OMM0pKkNORxX6mU5sgCkkpAI9TVYYBVBUil5YymHxY6QUhSGI+CLnOfKgZKmbCOMPFNKaYMLrRRhvlerNVhMqbb3fMMcfEuQpUgWS0lOOYgImUPRbDJD2C45cLEBcae+vSIyWH/Ht6RJMqnFJNlv35pvABKb2UfEaPHj3ivBGOZdYxIoji/8yJIj0q6flXOo5EL9l1LFnYlqqnP/zwQ5zjxLWKtD0WeEcSRHHu7dOnTzxOaZvBwFV/hlX4qgh5zCyASy4zH1oaolxUmJh47rnnxopFBFP0NMHGp2pC8EQaWbIqe4I0EtZ5oXIk1Yl4Pp0BTMilYATHbfai0JIKS/b1iawJUk45D1Bem7L84PuoUaNio5T0KdY24zlU6fTcoFx0BNL2YhFnKurRIQiyfFhKhrYY1zPmQ1Eplnm8Bq5aEgZQVfDhpZILubd33XVX/LAyGZEGKOtekBue5NzSIKWSmVQTLjjM1ePCwsRlJtRygUkQWDFJnOOa3mTmRCUM/qXiQPoTmRKk9DKfj4IRVJJkXcMkiKJQBCPWzN1JRqXsYNHSHiEl9ZwvysBz7WJ+HkV8QLuM+7/88su4biGdhLCIj5aEZ7glwIWCyYo0NhkKZrI4w8VU3KPiFuu8JI1VgipLZKqmXHAon9uzZ88YHHGhIfWG26yLARZ9puFENSOO3ewAyuBJKnyU1KaDhSCKOSX02lPsiJReiqEwv5d5kjRMGaGmsZpc7wyeVN0dgcl1iKU0KMLBWmQcq/vuu2+cs0c2EM9jwVyuZ7TPPv744zi9ImHwpCXhWW4JUSaTYhA0MOnNYIiYNXRY34kPNhPFqQZDb/95552X681Vkcq+4JDmwDFJCf1nnnkmFjzhosNoKSNRpJkyn48eZf6fTBKXVFzzIhlJYq4IWRZUMOMaxvqFjEIxJ5L0Pc4d2c83eFJ1S45T1tGjA5vrFktwkI4OltxgDhT3c91j/ikZQHzB41RVwRS+KkCFMlIcmLhIBT4WweODTQUYAqk111wzTrqlTKmUS6SZ3n333XFdJ9IeKGhCtUjmMDDHiQIRBFQ0mOido1qcBSOk4krtpcgRjdFrr702LoTLNY4OFwInnkvVM8rx05ufzImSlnbnNR3WzGUiQGLElFFSKp3SoU1wT3opJffJrujSpUuuN1kFxgCqivCh5YPKcDHfEwwrU4HLldhVE5xzzjkxJY8LDwiUWOuJVFTm6XGcPvXUU6FBgwZx3RdSdgyepMKV/fmmGBIj0e3atYvXMQIpHiMFijR1vlPljGU5CJ5atGhhGpRyMkJKMQjWLOR6tsEGG8RKsRyvrFFINhAFj5izx7QK5qN7nKqqOYZZRSijecMNN8SLDkPDp512Wryf0uVSTUDaAiOiTLRNcOHZfffdw/vvvx9TIZgLRSn+7J8x1UEqXEnwRGlnFoBnJJoiSDRYqWTGumV0BLIwPB0u11xzTRx9Yk4JDVon4mtpBvmso8lxR4oeI6IE81y/GGEiUKJIBMcyVZHRqVOn+N3jVFXNllEVB1FMYmRlayoW8eGWagoCIVIdSMvhQsMXaCCRrsOCuRy/9Oqxtgu84EiFj176wYMHxyp6nAuoVkYjlGplLIxLml737t3jSDUNVzpbaMTSsPUcoaU1f5cCJmPGjInHJ9co5t9x7BL00zFI8QjQEcCCz9k8TlXVDKCqGL0dt956qxX3VGOPT9ZuoUIRo0tchEiFYAIu65Sx4DMjUFyIWKndBQalwkdvPR0p9N6jYcOGMWhiTi+NU4InKvKRvsf8Ehqjjk5raUiuQVyzmJPLsUghE0ZEyfQ5++yzY2cgpfXpBOR6xrHJ2psVFUeRqoJzoKQiQyOIYhGs2k6gT7BEQ4i5T0wUpwAKBSa4YC2//PK53lxJVai8BuWzzz4bi8uwaC5zSpLnPPLII3FO1NFHHx3n91IQCc6L1NJExx7BEnPwkuyIzz//PC61MWLEiFjxeNKkSbFzkBFS1i/kmmaQr+rkkSUVmdVXXz2cccYZcVL4Z599FgtFJHni66+/fkzZYSKuwZNU2HNJQLr5ZpttFtd2Io2P9ZyYjI+VV145Vo8lTYrzAY3Y7JQqqTqUDdCpuMcaTnxPUCRiv/32CyNHjoyVI0nn22qrrUoeZ86TwZOqk0eXVIS4ODVt2jR+JSi/TzC10UYb5XTbJFX/XJJPPvkkTJw4MZaBpiz5FVdcEZfj4DzA+m80UCkmQZEZzgkETzzP9HQtreCJDj4CfAIn5piz7MbWW28d1yZD8+bNY5DEnKeynPOk6mYAJSkieJJU+HNJSN+lxDPzHikU8fLLL8flDKgky0LbTzzxRFhhhRXisgZU4iOFipEoGrPS0gjyqfaYFIgga2L69OmhSZMmcckY1ipkIWeqQRJAGdQrFwygJEkqAqTtMU+E0SZ69KmqRy8/paBZ+H3zzTePo08UlWFCPssc1K1bN9x///1h1qxZ8f9SdQf5jIw+//zz4brrrovH7LRp02JVyKFDh8Yg67XXXguNGzeO1fgoGnHAAQfketNVhAygJEkqgrkkNEbHjx8fJ9qzdg5LbrC4NhPzGZEibY9lDBh9mjp1arxvypQpseIZRSbo9Zeq04ABA+KCzm3atAlt27YtuZ9RKKpCMgrKYwT8zN1L1t50nSctbQZQkiQVcPA0bNiwmI63zjrrhKOOOiqu98Tk+8svvzwuQAoWy2U0KkEhmU033TS0aNEibL/99qZJaangGKUSLN+TebkER8x92nvvvWOxkxNOOKFUhT2r7SkXPOIkSSrQuSS9e/cOjz/+eLxNMMQoEj31VCzr0KFDfA7zTEjRo0c/+XnS9/iSliaqw7IoLqOj99xzT6wKm4ws1atXL6aXIjtgMnhSLnjUSZJUgHNJmCPyxhtvxMIQpOSRtsf8Enr1aaTSOGVRUuaYMCGf21KuMeJ5/fXXx/Q8RlKpBMnxOmbMmLhOmVQTuJCuJEkFOJfko48+Cg0aNAg9e/aM91G6fMiQITGIatasWRyReu+990KjRo1i8ORcEtUkVIZkjh5B1K677hq+/fbbMHDgwNgBUN6C0NLS5AiUJEkFhjkklCwnDY/iEUy+Z90cEEQRXLVr1y5W5EsYPKkmIWgibY+F3yls8sgjj8T7k7lRUi65nLgkSQU4l+SWW26Jo01Myk8QRFH2mTLQr7/+eqmfMXhSTdOxY8dYwnzw4MElx7HBk2oCU/gkSSpQLDzKXBIql51++ukl93/99ddxPkl2mXOppmJRXQpLnHnmmaFr16653hzJAEqSpGIIomh4du/efZFrRUk1FQvoUk7f6pCqCQygJEkqcC+//HIMnpjzdOCBB+Z6cyQprxlASZJUBIYPHx4233xz182RpCVkACVJUhGZP3++QZQkLQEDKEmSJElKyZmjkiRJkpSSAZQkSZIkpWQAJUmSJEkpGUBJkiRJUkoGUJIkSZKUkgGUJKmoVGfxWQvbSlLhM4CSJOWlvn37hiZNmlTqZ2699dZw9913V8v2DBo0KFxzzTXV8rslSTWHAZQkqWjcfPPNYfbs2dXyu2+77bYwc+bMavndkqSawwBKkiRJklIygJIk5b3BgweHZs2ahdGjR4eDDz44tGjRIuywww6l0vWSdL9+/fqVSv377LPPQteuXcPmm28ev7p16xYmTZpU8viwYcPi8997771w7LHHhpYtW4ZtttkmXHvttWHBggXxOTvuuGP49ttvw5AhQ+JzJ0+evFRfvyRp6TGAkiQVhIULF4Yzzjgj7LHHHmHAgAExGOrTp094++234+OPPPJI/H7AAQeU/P+rr74KhxxySPjhhx/i/KVevXrF4OnQQw+N92U755xzQps2bcLtt98e9tprr3DXXXfFeU9JUNagQYPQsWPH+LsbNmy41F+/JGnpqLOU/o4kSdWKCninnHJKOPDAA+Ntgp2XX345vPHGG2HbbbcNrVq1ivevtdZaJf8n8Klfv3649957wworrBDv22qrrUKnTp1igPTPf/6z5PfzexmdSp7zyiuvxN9NAMboV926dcNqq61W8rslSYXJAEqSVDBat25d8v8koJk1a1aFz3///fdD+/btQ7169cL8+fPjfQRSbdu2DUOHDq3wdyeB2KJ+tySpMBlASZIKBoFQttq1ay9ybSaq5j333HPxqyyCryX53ZKkwmQAJUkqWiuuuGLYeuutwz/+8Y8/PFanjpdISdIfeXWQJBUNRo2ykb73+eefh0022aQkYGJUiYIR6623Xrz/z/5uSVJh8mwvSSoaK620Uhg5cmT44IMPSopOfPPNN7GMOUUhqNjXvXv38Oyzz4amTZtW+nePGzcuDB8+PMyZM6faXoMkKbcMoCRJReOkk04KH3/8cTjhhBPCd999F4OkBx98MNSqVSucd9554bTTTgvTp08P/fv3D7vsskulfjdrRM2YMSMcd9xx8W9IkgpTrYwzYCVJkiQpFUegJEmSJCklAyhJkiRJSskASpIkSZJSMoCSJEmSpJQMoCRJkiQpJQMoSZIkSUrJAEqSJEmSUjKAkiRJkqSUDKAkSZIkKSUDKEmSJElKyQBKkiRJkkI6/w8CSeY6KsbBiQAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- 🧬 Entity Analysis ---\n", + "Total examples with at least one entity: 1583\n", + "Total examples with no entities: 1339\n", + "\n", + "Distribution of Entity Types:\n", + " Entity Count\n", + "1 practitioner_name 983\n", + "0 appointment_type 790\n", + "2 appointment_id 410\n" + ] + } + ], + "source": [ + "# Let's analyze the dataset's composition before splitting.\n", + "# Set plot style\n", + "sns.set_style(\"whitegrid\")\n", + "\n", + "# --- Intent Distribution ---\n", + "print(\"\\n--- 📊 Intent Distribution ---\")\n", + "intent_counts = df['intent'].value_counts()\n", + "print(intent_counts)\n", + "\n", + "# Plotting intent distribution\n", + "plt.figure(figsize=(10, 6))\n", + "sns.barplot(x=intent_counts.index, y=intent_counts.values, hue=intent_counts.index, palette=\"viridis\", legend=False)\n", + "plt.title(\"Number of Examples per Intent\", fontsize=16)\n", + "plt.xlabel(\"Intent\", fontsize=12)\n", + "plt.ylabel(\"Count\", fontsize=12)\n", + "plt.xticks(rotation=45)\n", + "plt.show()\n", + "\n", + "\n", + "# --- Entity Analysis ---\n", + "print(\"\\n--- 🧬 Entity Analysis ---\")\n", + "\n", + "# Add a column for the number of entities in each example\n", + "df['num_entities'] = df['entities'].apply(len)\n", + "print(f\"Total examples with at least one entity: {len(df[df['num_entities'] > 0])}\")\n", + "print(f\"Total examples with no entities: {len(df[df['num_entities'] == 0])}\")\n", + "\n", + "# Count the occurrences of each entity type\n", + "entity_label_counts = {}\n", + "for entities_list in df['entities']:\n", + " for entity in entities_list:\n", + " label = entity['label']\n", + " entity_label_counts[label] = entity_label_counts.get(label, 0) + 1\n", + "\n", + "print(\"\\nDistribution of Entity Types:\")\n", + "entity_df = pd.DataFrame(list(entity_label_counts.items()), columns=['Entity', 'Count']).sort_values('Count', ascending=False)\n", + "print(entity_df)" + ] + }, + { + "cell_type": "markdown", + "id": "d8cfdc04", + "metadata": {}, + "source": [ + "## Data Split" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "d65df577", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "--- Data Split Summary ---\n", + "Training set size: 2045 (70%)\n", + "Validation set size: 438 (15%)\n", + "Test set size: 439 (15%)\n" + ] + } + ], + "source": [ + "#Split Data into Train, Validation, and Test Sets (70/15/15)\n", + "# We will perform a stratified split to ensure each set has a similar intent distribution.\n", + "\n", + "# First, split into train (70%) and a temporary set (30%)\n", + "train_df, temp_df = train_test_split(\n", + " df,\n", + " test_size=0.30,\n", + " random_state=42,\n", + " stratify=df['intent'] # Stratify to maintain intent proportions\n", + ")\n", + "\n", + "# Second, split the temporary set (30%) into validation (15%) and test (15%)\n", + "# This means we split the temp_df in half (0.5).\n", + "val_df, test_df = train_test_split(\n", + " temp_df,\n", + " test_size=0.50,\n", + " random_state=42,\n", + " stratify=temp_df['intent'] # Also stratify this split\n", + ")\n", + "\n", + "print(\"\\n--- Data Split Summary ---\")\n", + "print(f\"Training set size: {len(train_df)} ({len(train_df)/len(df):.0%})\")\n", + "print(f\"Validation set size: {len(val_df)} ({len(val_df)/len(df):.0%})\")\n", + "print(f\"Test set size: {len(test_df)} ({len(test_df)/len(df):.0%})\")" + ] + }, + { + "cell_type": "markdown", + "id": "a828ffe8", + "metadata": {}, + "source": [ + "## Save Splits" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "4a1b3241", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "✅ Data splits saved successfully.\n" + ] + } + ], + "source": [ + "# Save the three new DataFrames to the data/raw directory.\n", + "\n", + "# Define file paths\n", + "train_path = os.path.join(raw_data_dir, \"train.jsonl\")\n", + "val_path = os.path.join(raw_data_dir, \"validation.jsonl\")\n", + "test_path = os.path.join(raw_data_dir, \"test.jsonl\")\n", + "\n", + "# Save using pandas' built-in JSONL export\n", + "# Note: We drop the 'num_entities' helper column we used for statistics before saving\n", + "train_df.drop(columns=['num_entities']).to_json(train_path, orient='records', lines=True, force_ascii=False)\n", + "val_df.drop(columns=['num_entities']).to_json(val_path, orient='records', lines=True, force_ascii=False)\n", + "test_df.drop(columns=['num_entities']).to_json(test_path, orient='records', lines=True, force_ascii=False)\n", + "\n", + "print(f\"\\n✅ Data splits saved successfully.\")" + ] + }, + { + "cell_type": "markdown", + "id": "56f23e93", + "metadata": {}, + "source": [ + "## Push to Hugging Face Hub" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "479d125d", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "c314e136c3a542ddb1c76108f6cc64d8", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "Generating train split: 0 examples [00:00, ? examples/s]" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "7730c43063cb4fa7b03dbdf916d02593", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "Generating validation split: 0 examples [00:00, ? examples/s]" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "ba8ce497354147b595f06f7e9807b1c5", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "Generating test split: 0 examples [00:00, ? examples/s]" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "DatasetDict({\n", + " train: Dataset({\n", + " features: ['text', 'intent', 'entities'],\n", + " num_rows: 2045\n", + " })\n", + " validation: Dataset({\n", + " features: ['text', 'intent', 'entities'],\n", + " num_rows: 438\n", + " })\n", + " test: Dataset({\n", + " features: ['text', 'intent', 'entities'],\n", + " num_rows: 439\n", + " })\n", + "})\n", + "\n", + "Example from training set:\n", + "{'text': Value('string'), 'intent': Value('string'), 'entities': List({'start': Value('int64'), 'end': Value('int64'), 'label': Value('string')})}\n", + "{'text': 'what is albert einstein famous for', 'intent': 'oos', 'entities': []}\n" + ] + } + ], + "source": [ + "data_files = {\n", + " \"train\": os.path.join(raw_data_dir, \"train.jsonl\"),\n", + " \"validation\": os.path.join(raw_data_dir, \"validation.jsonl\"),\n", + " \"test\": os.path.join(raw_data_dir, \"test.jsonl\")\n", + "}\n", + "hasd = load_dataset(\"json\", data_files=data_files)\n", + "\n", + "print(hasd)\n", + "print(\"\\nExample from training set:\")\n", + "print(hasd['train'].features)\n", + "print(hasd['train'][0])" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "c731369f", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "0d02d9ebd2cb4a5c975c2897858a4781", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "Casting the dataset: 0%| | 0/2045 [00:00" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "from sklearn.manifold import TSNE\n", - "\n", - "# Visualization of Embeddings with t-SNE\n", - "# 1. Take a sample of data to speed up computation\n", - "# t-SNE is computationally intensive. 10,000 points is a good compromise.\n", - "num_samples = 10000\n", - "if len(train_labels) > num_samples:\n", - "\tprint(f\"Using a random sample of {num_samples} points for visualization.\")\n", - "\tindices = np.random.choice(len(train_labels), num_samples, replace=False)\n", - "\tsampled_embeddings = np.array(train_embeddings)[indices]\n", - "\tsampled_labels = np.array(train_labels)[indices]\n", - "else:\n", - "\tsampled_embeddings = np.array(train_embeddings)\n", - "\tsampled_labels = np.array(train_labels)\n", - "\n", - "# 2. Reduce dimensionality from 384 to 2 using t-SNE\n", - "print(\"Running t-SNE... (this may take a few minutes)\")\n", - "tsne = TSNE(n_components=2, perplexity=30, random_state=42)\n", - "embeddings_2d = tsne.fit_transform(sampled_embeddings)\n", - "\n", - "# 3. Create the scatter plot\n", - "print(\"Creating the plot...\")\n", - "plt.figure(figsize=(14, 10))\n", - "\n", - "# Use Seaborn for a nicer plot with automatic legend\n", - "sns.scatterplot(\n", - "\tx=embeddings_2d[:, 0],\n", - "\ty=embeddings_2d[:, 1],\n", - "\thue=sampled_labels,\n", - "\tpalette=sns.color_palette(\"hsv\", len(np.unique(sampled_labels))),\n", - "\ts=50, # Point size\n", - "\talpha=0.7 # Transparency\n", - ")\n", - "\n", - "# Add titles and move the legend outside the plot\n", - "plt.title('Visualization of Embeddings with t-SNE', fontsize=16)\n", - "plt.xlabel('Dimension 1 (t-SNE)')\n", - "plt.ylabel('Dimension 2 (t-SNE)')\n", - "plt.legend(bbox_to_anchor=(1.05, 1), loc=2, borderaxespad=0., title='Intents')\n", - "plt.grid(True)\n", - "plt.show()\n" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "8496d05a", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
KNeighborsClassifier(metric='cosine')
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
" - ], - "text/plain": [ - "KNeighborsClassifier(metric='cosine')" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# KNN Classifier Training\n", - "knn = KNeighborsClassifier(n_neighbors=5, metric='cosine')\n", - "knn.fit(train_embeddings, train_labels)" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "8eb69d81", - "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "d57db525502b4c2988ee562ce3631547", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "Batches: 0%| | 0/459 [00:00" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# Confusion Matrix\n", - "cm = confusion_matrix(test_labels, test_predictions)\n", - "plt.figure(figsize=(8, 6))\n", - "sns.heatmap(cm, annot=True, fmt='d', cmap='Blues',\n", - " xticklabels=target_names, yticklabels=target_names)\n", - "plt.xlabel('Predicted')\n", - "plt.ylabel('True')\n", - "plt.title('Confusion Matrix')\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "0a499c21", - "metadata": {}, - "outputs": [], - "source": [ - "# Model Saving\n", - "model_dir = project_root / \"models\" / \"intent_classifier\"\n", - "knn_model_path = model_dir / \"knn_model.joblib\"\n", - "joblib.dump(knn, knn_model_path)" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "id": "3e276fc4", - "metadata": {}, - "outputs": [], - "source": [ - "# id2label and label2id mapping saving\n", - "id2label = {i: label for i, label in enumerate(sorted(set(dataset['train']['new_intent'])))}\n", - "label2id = {label: i for i, label in id2label.items()}\n", - "with open(os.path.join(model_dir, \"id2label.json\"), 'w') as f:\n", - " json.dump(id2label, f)\n", - "with open(os.path.join(model_dir, \"label2id.json\"), 'w') as g:\n", - " json.dump(label2id, g)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "1e176f7d", - "metadata": {}, - "outputs": [], - "source": [ - "# Push to Hugging Face Hub\n", - "api = HfApi()\n", - "api.upload_folder(\n", - " folder_path=str(model_dir),\n", - "\tpath_in_repo=\"\",\n", - "\trepo_id=hub_model_id,\n", - "\tcommit_message=\"Upload KNN Intent Classifier Model and Mappings\",\n", - " token=hf_token \n", - ")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "schedulebot-venv", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.11.8" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/notebooks/03_data_preparation.ipynb b/notebooks/03_data_preparation.ipynb new file mode 100644 index 0000000..563618f --- /dev/null +++ b/notebooks/03_data_preparation.ipynb @@ -0,0 +1,363 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "7fbf7d5b", + "metadata": {}, + "outputs": [], + "source": [ + "from datasets import load_dataset, Features, ClassLabel, Value, Sequence\n", + "from transformers import AutoTokenizer\n", + "import os\n", + "from pathlib import Path" + ] + }, + { + "cell_type": "markdown", + "id": "66b45037", + "metadata": {}, + "source": [ + "## Tokenizer" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "2f5f072c", + "metadata": {}, + "outputs": [], + "source": [ + "# Make sure the tokenizer match the model that will be fine-tuned.\n", + "model_name = \"distilbert-base-uncased\"\n", + "tokenizer = AutoTokenizer.from_pretrained(model_name)" + ] + }, + { + "cell_type": "markdown", + "id": "7b245506", + "metadata": {}, + "source": [ + "## Load the datasets\n", + "This cell loads the generated `train.jsonl`, `validation.jsonl`, and `test.jsonl` files." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "f36f1629", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "DatasetDict({\n", + " train: Dataset({\n", + " features: ['text', 'intent', 'entities'],\n", + " num_rows: 2045\n", + " })\n", + " validation: Dataset({\n", + " features: ['text', 'intent', 'entities'],\n", + " num_rows: 438\n", + " })\n", + " test: Dataset({\n", + " features: ['text', 'intent', 'entities'],\n", + " num_rows: 439\n", + " })\n", + "})\n", + "\n", + "Example from training set:\n", + "{'text': 'what is albert einstein famous for', 'intent': 'oos', 'entities': []}\n" + ] + } + ], + "source": [ + "project_root = str(Path().cwd().resolve().parent)\n", + "dataset_dir = os.path.join(project_root, \"data\", \"raw\")\n", + "\n", + "data_files = {\n", + " \"train\": os.path.join(dataset_dir, \"train.jsonl\"),\n", + " \"validation\": os.path.join(dataset_dir, \"validation.jsonl\"),\n", + " \"test\": os.path.join(dataset_dir, \"test.jsonl\")\n", + "}\n", + "raw_datasets = load_dataset(\"json\", data_files=data_files)\n", + "\n", + "print(raw_datasets)\n", + "print(\"\\nExample from training set:\")\n", + "print(raw_datasets['train'][0])" + ] + }, + { + "cell_type": "markdown", + "id": "543711e6", + "metadata": {}, + "source": [ + "## Create Label Mappings\n", + "Now, we create the mappings from string labels (e.g., \"schedule\", \"practitioner_name\") to integer IDs. This is essential for training. We also need to create tags for the BIO (Beginning, Inside, Outside) entity scheme." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "55c3ab49", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Intent mapping (intent2id): {'bye': 0, 'cancel': 1, 'greeting': 2, 'negative_reply': 3, 'oos': 4, 'positive_reply': 5, 'query_avail': 6, 'reschedule': 7, 'schedule': 8}\n", + "\n", + "NER mapping (ner2id): {'O': 0, 'B-appointment_id': 1, 'I-appointment_id': 2, 'B-appointment_type': 3, 'I-appointment_type': 4, 'B-practitioner_name': 5, 'I-practitioner_name': 6}\n" + ] + } + ], + "source": [ + "# --- Create Intent Label Mappings ---\n", + "# Get all unique intent labels from the training data\n", + "intent_labels = raw_datasets['train'].unique('intent')\n", + "intent_labels.sort() # Sort for consistency\n", + "id2intent = {i: label for i, label in enumerate(intent_labels)}\n", + "intent2id = {label: i for i, label in enumerate(intent_labels)}\n", + "print(f\"Intent mapping (intent2id): {intent2id}\\n\")\n", + "\n", + "\n", + "# --- Create Entity (NER) Label Mappings in BIO format ---\n", + "# Get all unique entity labels\n", + "entity_labels = [\"appointment_id\", \"appointment_type\", \"practitioner_name\"]\n", + "# Create the full list of BIO tags\n", + "ner_tags = [\"O\"] # 'O' for tokens outside any entity\n", + "for label in entity_labels:\n", + " ner_tags.append(f\"B-{label}\") # 'B' for Beginning of an entity\n", + " ner_tags.append(f\"I-{label}\") # 'I' for Inside of an entity\n", + "\n", + "id2ner = {i: label for i, label in enumerate(ner_tags)}\n", + "ner2id = {label: i for i, label in enumerate(ner_tags)}\n", + "print(f\"NER mapping (ner2id): {ner2id}\")" + ] + }, + { + "cell_type": "markdown", + "id": "be0d2d71", + "metadata": {}, + "source": [ + "## Preprocessing function\n", + "This is the core function. It takes a single data example and does two things:\n", + "1. Tokenizes the text.\n", + "2. Aligns character-based entity spans (`start`, `end`) with the new wordpiece tokens, assigning the correct BIO tag ID to each token." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "2f11c777", + "metadata": {}, + "outputs": [], + "source": [ + "def preprocess_function(examples):\n", + " # --- Intent Processing ---\n", + " intent_ids = [intent2id[intent] for intent in examples['intent']]\n", + "\n", + " # --- Tokenization ---\n", + " tokenized_inputs = tokenizer(examples['text'], truncation=True, is_split_into_words=False, return_offsets_mapping=True)\n", + "\n", + " # --- Entity (NER) Label Alignment ---\n", + " ner_labels = []\n", + " for i, entities in enumerate(examples['entities']):\n", + " word_ids = tokenized_inputs.word_ids(batch_index=i)\n", + " label_ids = [ner2id[\"O\"]] * len(word_ids)\n", + " \n", + " # For each entity, find the corresponding tokens and assign B- and I- tags\n", + " for entity in entities:\n", + " start_char, end_char, label = entity['start'], entity['end'], entity['label']\n", + " \n", + " # This flag tracks if we've found the first token of the current entity\n", + " first_token_of_entity_found = False\n", + " \n", + " for j, word_id in enumerate(word_ids):\n", + " if word_id is None:\n", + " continue\n", + " \n", + " token_char_span = tokenized_inputs['offset_mapping'][i][j]\n", + " token_start, token_end = token_char_span\n", + " \n", + " # Check if the token is part of the entity\n", + " if start_char < token_end and end_char > token_start:\n", + " # This is the key change. We use the flag to decide the tag.\n", + " if not first_token_of_entity_found:\n", + " # This is the first token of the entity, assign the 'B-' tag\n", + " label_ids[j] = ner2id[f\"B-{label}\"]\n", + " first_token_of_entity_found = True\n", + " else:\n", + " # This is a subsequent token of the same entity, assign 'I-'\n", + " label_ids[j] = ner2id[f\"I-{label}\"]\n", + "\n", + " ner_labels.append(label_ids)\n", + "\n", + " # Add the final processed labels to our tokenized inputs\n", + " tokenized_inputs[\"intent_label\"] = intent_ids\n", + " tokenized_inputs[\"labels\"] = ner_labels\n", + " \n", + " # Remove offset_mapping as it's not needed by the model\n", + " tokenized_inputs.pop(\"offset_mapping\", None)\n", + " \n", + " return tokenized_inputs" + ] + }, + { + "cell_type": "markdown", + "id": "e2614d4f", + "metadata": {}, + "source": [ + "## Apply Preprocessing and Save\n", + "Now we apply this function to our entire dataset and save the final, processed version. This is what we will load directly in the fine-tuning script." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "f8480f01", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "aa0788b9a4264f6aa60fbc84c1c1ae21", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "Map: 0%| | 0/438 [00:00 dict: + """ + Determines the bot's next action based on NLU output and conversation state. + Returns a structured action dictionary for the NLG module. + """ + intent = nlu_output.get("intent", {}).get("name") + entities = { + e["entity"].lower().replace("person", "practitioner_name"): e["value"] + for e in nlu_output.get("entities", []) + } + + # --- Handle Context-Dependent Replies First --- + if self.state["awaiting_slot"] and self.state["awaiting_slot"] in entities: + # The user has provided the missing information. + # We merge it with the pending details and re-evaluate the original intent. + self.state["pending_details"].update(entities) + intent = self.state[ + "pending_action" + ] # Pretend the user repeated their original intent + self.state["awaiting_slot"] = None # Clear the await state + + if self.state["pending_action"] and intent in [ + "positive_reply", + "negative_reply", + ]: + if intent == "positive_reply": + action_to_execute = self.state["pending_action"].replace( + "confirm_", "execute_" + ) + details = self.state["pending_details"] + self.reset_state() + return {"action": action_to_execute, "details": details} + + if intent == "negative_reply": + action = {"action": "cancel_action"} + self.reset_state() + return action + + # --- Handle Primary Intents --- + if intent == "greeting": + return {"action": "greet"} + + if intent == "bye": + return {"action": "say_goodbye"} + + if intent == "schedule": + required = ["practitioner_name", "time", "appointment_type"] + missing = [slot for slot in required if slot not in entities] + + if not missing: + self.state["pending_action"] = "confirm_booking" + self.state["pending_details"] = entities + return {"action": "confirm_booking", "details": entities} + else: + self.state["pending_action"] = "schedule" + self.state["pending_details"] = entities + self.state["awaiting_slot"] = missing[0] + return {"action": "request_information", "missing_slots": missing} + + if intent == "reschedule": + required = ["appointment_id", "time"] + missing = [slot for slot in required if slot not in entities] + + if not missing: + self.state["pending_action"] = "confirm_reschedule" + self.state["pending_details"] = entities + return {"action": "confirm_reschedule", "details": entities} + else: + self.state["pending_action"] = "reschedule" + self.state["pending_details"] = entities + self.state["awaiting_slot"] = missing[0] + return {"action": "request_information", "missing_slots": missing} + + if intent == "cancel": + if "appointment_id" in entities: + self.state["pending_action"] = "confirm_cancellation" + self.state["pending_details"] = entities + return {"action": "confirm_cancellation", "details": entities} + else: + self.state["pending_action"] = "cancel" + self.state["pending_details"] = entities + self.state["awaiting_slot"] = "appointment_id" + return { + "action": "request_information", + "missing_slots": ["appointment_id"], + } + + if intent == "query_avail": + if "time" in entities: + return {"action": "execute_query_avail", "details": entities} + else: + self.state["pending_action"] = "query_avail" + self.state["awaiting_slot"] = "time" + return {"action": "request_information", "missing_slots": ["time"]} + + return {"action": "fallback"} diff --git a/src/schedulebot/nlg/__init__.py b/src/schedulebot/nlg/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/schedulebot/nlg/rule_based.py b/src/schedulebot/nlg/rule_based.py new file mode 100644 index 0000000..d8fed88 --- /dev/null +++ b/src/schedulebot/nlg/rule_based.py @@ -0,0 +1,92 @@ +import random +from data.appointment_id_generator import generate_appointment_id + + +class NLGModule: + """ + Handles the generation of natural language responses using a rule-based + template system. + """ + + def __init__(self): + """ + Initializes the NLG Module by defining the response templates. + """ + print("Initializing Rule-Based NLG Module...") + self.templates = { + "greet": [ + "Hello! How can I help you with your appointments today?", + "Hi there! What can I do for you?", + "Welcome! How can I assist you?", + ], + "say_goodbye": [ + "Goodbye! Have a great day.", + "Farewell! Let me know if you need anything else.", + "Bye for now!", + ], + "confirm_booking": [ + "Okay, I have you down for a {appointment_type} with {practitioner_name} at {time}. Does that sound right?", + "Just to confirm, you'd like to book a {appointment_type} with {practitioner_name} for {time}. Is that correct?", + ], + "confirm_reschedule": [ + "Got it. You'd like to move appointment {appointment_id} to {time}. Should I go ahead and make that change?", + "To confirm, we are rescheduling appointment {appointment_id} to {time}. Is this correct?", + ], + "confirm_cancellation": [ + "Are you sure you want to cancel appointment {appointment_id}?", + "Just to double-check, you'd like to cancel your appointment with ID {appointment_id}. Is that right?", + ], + "request_information": [ + "To proceed, I'll need a bit more information. Could you please provide the {missing_slots}?", + "I can help with that! I just need you to provide the {missing_slots}.", + ], + "cancel_action": [ + "Okay, I've cancelled that request. Is there anything else I can help you with?", + "No problem, that action has been cancelled. What else can I do for you?", + ], + "execute_booking": [ + "All set! Your appointment is booked. Your appointment ID is {appointment_id}.", + "Great, you are confirmed. Your new appointment ID is {appointment_id}.", + ], + "execute_cancellation": [ + "Okay, your appointment with ID {appointment_id} has been successfully cancelled.", + "I have now cancelled appointment {appointment_id} for you.", + ], + "execute_reschedule": [ + "Done! Your appointment has been successfully rescheduled to {time}.", + "I've updated your appointment. The new time is {time}.", + ], + "execute_query_avail": [ + "Let me check the schedule. It looks like we have an opening at 4 PM tomorrow.", + "Checking the calendar now... Yes, there is an available slot at 4 PM tomorrow.", + ], + "fallback": [ + "I'm sorry, I didn't quite understand that. Could you please rephrase?", + "I'm not sure how to help with that. I can assist with scheduling, rescheduling, and canceling appointments.", + ], + } + print("✅ Rule-Based NLG Module ready.") + + def generate_response(self, action: dict) -> str: + """ + Takes a structured action and generates a text response from a template. + """ + action_type = action.get("action", "fallback") + details = action.get("details", {}) + + # Get a random template for the given action type + if action_type in self.templates: + template = random.choice(self.templates[action_type]) + + # Fill in any placeholders in the template + if "missing_slots" in action: + details["missing_slots"] = " and ".join(action["missing_slots"]) + + # Use a dummy ID for booking confirmations + if action_type == "execute_booking": + details["appointment_id"] = generate_appointment_id() + + return template.format(**details) + else: + # If the action is unknown, use the fallback + return random.choice(self.templates["fallback"]) diff --git a/src/schedulebot/nlg/slm_based.py b/src/schedulebot/nlg/slm_based.py new file mode 100644 index 0000000..908d7ae --- /dev/null +++ b/src/schedulebot/nlg/slm_based.py @@ -0,0 +1,91 @@ +import torch +from transformers import AutoModelForCausalLM, AutoTokenizer +from data.appointment_id_generator import generate_appointment_id + + +class NLGModule: + """ + Handles NLG using the more powerful Qwen2.5-0.5B-Instruct model. + """ + + def __init__(self, model_repo_id="unsloth/Qwen2.5-0.5B-Instruct-bnb-4bit"): + print("Initializing NLG Module SLM (Qwen2.5)...") + try: + self.tokenizer = AutoTokenizer.from_pretrained(model_repo_id) + self.model = AutoModelForCausalLM.from_pretrained( + model_repo_id, + load_in_4bit=True, # Load the model in 4-bit + torch_dtype=torch.bfloat16, + device_map="auto", # Automatically use GPU if available + ) + print("✅ NLG SLM loaded successfully.") + except Exception as e: + print(f"❌ Failed to load Qwen2.5 model for NLG. Error: {e}") + self.model = None + + def _build_prompt(self, action: dict) -> list: + """ + Builds a prompt for the SLM using the chat template format. + """ + details = action.get("details", {}) + action_type = action.get("action") + + # --- Convert Action to a Natural Language Instruction --- + instruction = "" + if action_type == "greet": + instruction = "Greet the user warmly and ask how you can help." + elif action_type == "say_goodbye": + instruction = "Say a friendly goodbye." + elif action_type == "confirm_booking": + instruction = f"Confirm you are booking a '{details.get('appointment_type', 'session')}' with {details.get('practitioner_name', 'the practitioner')} for {details.get('time')}. Ask for confirmation." + elif action_type == "request_information": + missing_slots = " and ".join( + action.get("missing_slots", ["more information"]) + ) + instruction = f"Politely ask the user for the following missing information: {missing_slots}." + elif action_type == "execute_booking": + appt_id = generate_appointment_id() + instruction = f"Inform the user their appointment is booked and provide their ID: {appt_id}." + elif action_type == "execute_cancellation": + instruction = f"Confirm to the user that appointment '#{details.get('appointment_id')}' has been cancelled." + else: # Fallback for all other actions + instruction = ( + "Politely inform the user that you didn't understand their request." + ) + + # Qwen2.5 uses a chat template format, which is more robust + messages = [ + { + "role": "system", + "content": "You are a friendly and helpful chatbot assistant. Your task is to turn a structured instruction into a natural, conversational response.", + }, + {"role": "user", "content": f"Instruction: {instruction}"}, + ] + return messages + + def generate_response(self, action: dict) -> str: + """ + Takes a structured action and generates a human-like text response. + """ + if not self.model: + return "Error: The NLG model is not loaded." + + messages = self._build_prompt(action) + + # Use the tokenizer's chat template + prompt = self.tokenizer.apply_chat_template( + messages, tokenize=False, add_generation_prompt=True + ) + + inputs = self.tokenizer(prompt, return_tensors="pt").to(self.model.device) + + outputs = self.model.generate( + **inputs, max_new_tokens=100, temperature=0.7, do_sample=True + ) + + # Decode only the newly generated tokens + response_text = self.tokenizer.decode( + outputs[0][inputs.input_ids.shape[1] :], skip_special_tokens=True + ) + + return response_text.strip() diff --git a/src/schedulebot/nlp/intent_classifier.py b/src/schedulebot/nlp/intent_classifier.py deleted file mode 100644 index f50693b..0000000 --- a/src/schedulebot/nlp/intent_classifier.py +++ /dev/null @@ -1,64 +0,0 @@ -import os -import json -import joblib -from sentence_transformers import SentenceTransformer -from huggingface_hub import hf_hub_download -from dotenv import load_dotenv - - -class IntentClassifier: - def __init__(self, repo_id: str): - """ - Loads the KNN classifier and its artifacts from a Hugging Face Hub repository. - - Args: - repo_id (str): The ID of the repository on the Hub (e.g., 'username/repo-name'). - """ - # Ensure the HF_TOKEN is available if the repo is private - # For public repos, this is not strictly necessary but good practice - hf_token = os.getenv("HF_TOKEN") - - # 1. Download the artifacts from the Hub. - # hf_hub_download returns the local path to the cached file. - knn_model_path = hf_hub_download( - repo_id=repo_id, filename="knn_model.joblib", token=hf_token - ) - id2label_path = hf_hub_download( - repo_id=repo_id, filename="id2label.json", token=hf_token - ) - - # 2. Load the Sentence Transformer model - self.embedding_model = SentenceTransformer( - "sentence-transformers/all-MiniLM-L6-v2" - ) - - # 3. Load the downloaded KNN model and label mapping - self.knn = joblib.load(knn_model_path) - with open(id2label_path, "r") as f: - self.id_to_label = {int(k): v for k, v in json.load(f).items()} - - def predict(self, text: str) -> str: - """ - Predicts the intent for a given text string using embeddings and KNN. - """ - text_embedding = self.embedding_model.encode( - text, convert_to_tensor=False - ).reshape(1, -1) - predicted_class_id = self.knn.predict(text_embedding)[0] - return self.id_to_label[predicted_class_id] - - -if __name__ == "__main__": - # Load the model from the Hub - load_dotenv() - model_repo_id = os.getenv("HUB_MODEL_ID") - classifier = IntentClassifier(repo_id=model_repo_id) - - # Tests - text1 = "I want to schedule a meeting with John for next Tuesday" - intent1 = classifier.predict(text1) - print(f"Text: '{text1}'\nPredicted Intent: '{intent1}'\n") - - text2 = "thanks, that's all" - intent2 = classifier.predict(text2) - print(f"Text: '{text2}'\nPredicted Intent: '{intent2}'\n") diff --git a/src/schedulebot/nlu/__init__.py b/src/schedulebot/nlu/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/schedulebot/nlu/multitask_model.py b/src/schedulebot/nlu/multitask_model.py new file mode 100644 index 0000000..cc68ed2 --- /dev/null +++ b/src/schedulebot/nlu/multitask_model.py @@ -0,0 +1,83 @@ +from transformers import AutoModel, PreTrainedModel, AutoConfig +import torch.nn as nn + + +class MultitaskModel(PreTrainedModel): + """ + A custom Transformer model with two heads: one for intent classification + and one for named entity recognition (token classification). + """ + + config_class = AutoConfig + + def __init__(self, config): + super().__init__(config) + + # Load the base transformer model (e.g., DistilBERT) + self.transformer = AutoModel.from_config(config) + + # --- Heads --- + # 1. Intent Classification Head (MLP) + self.intent_classifier = nn.Sequential( + nn.Linear(config.dim, config.dim // 2), + nn.GELU(), # GELU is a smooth activation function, common in Transformers + nn.Dropout(0.3), + nn.Linear(config.dim // 2, self.config.num_intent_labels), + ) + + # 2. NER (Token Classification) Head (MLP) + self.ner_classifier = nn.Sequential( + nn.Linear(config.dim, config.dim // 2), + nn.GELU(), + nn.Dropout(0.3), + nn.Linear(config.dim // 2, self.config.num_ner_labels), + ) + + # Dropout layer for regularization + self.dropout = nn.Dropout(config.seq_classif_dropout) + + def forward( + self, + input_ids=None, + attention_mask=None, + intent_label=None, # For calculating intent loss + labels=None, # For calculating NER loss + ): + # Get the last hidden states from the base transformer model + outputs = self.transformer(input_ids=input_ids, attention_mask=attention_mask) + sequence_output = ( + outputs.last_hidden_state + ) # Shape: (batch_size, sequence_length, hidden_size) + + # --- Intent Logits --- + # Use the [CLS] token's output for intent classification + cls_token_output = sequence_output[:, 0, :] + cls_token_output = self.dropout(cls_token_output) + intent_logits = self.intent_classifier(cls_token_output) + + # --- NER Logits --- + # Use all token outputs for NER + sequence_output = self.dropout(sequence_output) + ner_logits = self.ner_classifier(sequence_output) + + # --- Calculate Combined Loss --- + total_loss = 0 + if intent_label is not None and labels is not None: + loss_fct = nn.CrossEntropyLoss() + # Intent loss + intent_loss = loss_fct( + intent_logits.view(-1, self.config.num_intent_labels), + intent_label.view(-1), + ) + # NER loss (ignore padding tokens with label -100) + ner_loss = loss_fct( + ner_logits.view(-1, self.config.num_ner_labels), labels.view(-1) + ) + # Combine the losses (you can also weight them if one task is more important) + total_loss = intent_loss + ner_loss + + return { + "loss": total_loss, + "intent_logits": intent_logits, + "ner_logits": ner_logits, + } diff --git a/src/schedulebot/nlu/ner_extractor.py b/src/schedulebot/nlu/ner_extractor.py new file mode 100644 index 0000000..aef487e --- /dev/null +++ b/src/schedulebot/nlu/ner_extractor.py @@ -0,0 +1,32 @@ +import spacy + + +class NERExtractor: + def __init__(self, model_name="en_core_web_sm"): + """ + Initializes the extractor by loading a spaCy model. + """ + self.nlp = spacy.load(model_name) + # We only care about a few general-purpose entities + self.relevant_entities = {"PERSON", "GPE", "ORG", "EVENT"} + + def extract_entities(self, text: str) -> list[dict]: + """ + Processes text to find named entities using spaCy. + """ + doc = self.nlp(text) + entities = [] + for ent in doc.ents: + if ent.label_ in self.relevant_entities: + entities.append( + {"entity": ent.label_, "value": ent.text, "extractor": "spacy"} + ) + return entities + + +if __name__ == "__main__": + extractor = NERExtractor() + text = "Can we book a meeting with Andrea Aceto in Rome about the Google project for the 2026 Olympic Games?" + entities = extractor.extract_entities(text) + print(f"Text: '{text}'") + print(f"Extracted Entities: {entities}") diff --git a/src/schedulebot/nlu/nlu_processor.py b/src/schedulebot/nlu/nlu_processor.py new file mode 100644 index 0000000..bf6bb91 --- /dev/null +++ b/src/schedulebot/nlu/nlu_processor.py @@ -0,0 +1,221 @@ +import json +import torch +import os +from transformers import AutoTokenizer, AutoConfig +from dotenv import load_dotenv + +# Import NLU components +from src.schedulebot.nlu.multitask_model import MultitaskModel +from src.schedulebot.nlu.ner_extractor import NERExtractor +from src.schedulebot.nlu.slot_filler import SlotFiller + + +class NLUProcessor: + """ + Orchestrates the multitask model, spaCy, and Duckling to produce a + single, structured NLU output. + """ + + def __init__(self, multitask_model_repo: str): + """ + Initializes all components of the NLU pipeline. + """ + print("\nInitializing NLU Processor...\n") + # Load the tokenizer + self.tokenizer = AutoTokenizer.from_pretrained(multitask_model_repo) + # Load the multitask model + self.multitask_model = MultitaskModel.from_pretrained(multitask_model_repo) + # Initialize other extractors + self.spacy_extractor = NERExtractor() + self.duckling_extractor = SlotFiller() + + # Get NER labels for decoding predictions + self.id2ner = self.multitask_model.config.id2label_ner + + print("\nNLU Processor ready.\n") + + def _decode_ner_predictions(self, text, ner_logits, encoding): + """ + Decodes and groups token-level NER predictions into complete entities + using a more robust BIO grouping logic. + """ + predictions = torch.argmax(ner_logits, dim=-1)[0].tolist() + + entities = [] + current_entity_group = [] + + for i, token_pred_id in enumerate(predictions): + tag = self.id2ner[str(token_pred_id)] + + # This handles special tokens like [CLS] and [SEP] + if encoding.token_to_chars(i) is None: + continue + + if tag.startswith("B-"): # Beginning of a new entity + # If we were tracking a previous entity, finalize it first. + if current_entity_group: + entities.append(current_entity_group) + # Start a new entity group with the current token index and tag. + current_entity_group = [(i, tag)] + + elif tag.startswith("I-"): # Inside an existing entity + # This is a crucial check. We only add the 'I-' tag if it follows + # a 'B-' or 'I-' tag of the *same entity type*. + if current_entity_group: + base_tag_type = current_entity_group[0][1][ + 2: + ] # e.g., "practitioner_name" + if tag[2:] == base_tag_type: + current_entity_group.append((i, tag)) + else: + # This is an invalid I- tag. Finalize the previous entity and discard this one. + entities.append(current_entity_group) + current_entity_group = [] + # If there's no preceding B- tag, we discard this invalid I- tag. + + else: # Outside of any entity ('O' tag) + # If we were tracking an entity, this is the end of it. + if current_entity_group: + entities.append(current_entity_group) + current_entity_group = [] + + # Add the last entity if the sentence ends with one + if current_entity_group: + entities.append(current_entity_group) + + # Convert the grouped token indices into final entity objects + final_entities = [] + for group in entities: + start_token_index = group[0][0] + end_token_index = group[-1][0] + label = group[0][1][2:] # Get label from the B- tag + + start_char = encoding.token_to_chars(start_token_index).start + end_char = encoding.token_to_chars(end_token_index).end + + final_entities.append( + { + "entity": label, + "value": text[start_char:end_char], + "extractor": "multitask_model", + } + ) + + return final_entities + + def _fuse_practitioner_entities(self, all_entities, text): + """ + Merges practitioner_name and PERSON entities by concatenating their + unique values to avoid simple repetition. + """ + # Collect all fragments from both sources + practitioner_frags = [ + e["value"] + for e in all_entities + if e["entity"] in ["practitioner_name", "PERSON"] + ] + other_entities = [ + e + for e in all_entities + if e["entity"] not in ["practitioner_name", "PERSON"] + ] + + if not practitioner_frags: + return other_entities + + # Use dict.fromkeys to get unique fragments while preserving their order of appearance + unique_frags = list(dict.fromkeys(practitioner_frags)) + + # remove redundant substrings + cleaned_frags = [] + for frag in unique_frags: + is_redundant = False + # Check if this fragment is a substring of any other, longer fragment + for other_frag in unique_frags: + if frag != other_frag and frag in other_frag: + is_redundant = True + break + if not is_redundant: + cleaned_frags.append(frag) + + # Join the cleaned, meaningful parts + fused_name = " ".join(cleaned_frags) + + final_entities = other_entities + final_entities.append( + { + "entity": "practitioner_name", + "value": fused_name, + "extractor": "multitask_model+spacy", # Indicate it was a result of fusion + } + ) + + return final_entities + + def process(self, text: str) -> dict: + """ + Processes text with all NLU components and merges the results. + """ + inputs = self.tokenizer(text, return_tensors="pt") + + with torch.no_grad(): + outputs = self.multitask_model(**inputs) + + intent_logits = outputs["intent_logits"] + intent_id = torch.argmax(intent_logits, dim=-1).item() + intent_name = self.multitask_model.config.id2label_intent[str(intent_id)] + + ner_logits = outputs["ner_logits"] + custom_entities = self._decode_ner_predictions(text, ner_logits, inputs) + + spacy_entities = self.spacy_extractor.extract_entities(text) + time_entity = self.duckling_extractor.parse_time(text) + + # First, combine all extracted entities (except time) + initial_entities = custom_entities + spacy_entities + # Then, fuse the practitioner name fragments + fused_entities = self._fuse_practitioner_entities(initial_entities, text) + + # Add the time entity back in + all_entities = fused_entities + + if time_entity: + all_entities.append( + { + "entity": "time", + "value": time_entity["value"], + "extractor": "duckling", + } + ) + + return { + "text": text, + "intent": { + "name": intent_name, + "confidence": torch.nn.functional.softmax(intent_logits, dim=-1) + .max() + .item(), + }, + "entities": all_entities, # The entities are already grouped correctly + } + + +# Standalone test block to see it in action +if __name__ == "__main__": + # Make sure you are logged into Hugging Face if the model is private + # from huggingface_hub import login; login() + load_dotenv() + repo_id = os.getenv("HUB_MODEL_ID") + + # Ensure Duckling container is running via `make up` + nlu_processor = NLUProcessor(multitask_model_repo=repo_id) + + test_text = "I would like to book a meeting with Dr. Caruccio for tomorrow at 5pm?" + + print(f"\nProcessing text: '{test_text}'") + structured_data = nlu_processor.process(test_text) + + # Pretty-print the JSON output + print("\n--- Unified NLU Output ---") + print(json.dumps(structured_data, indent=2)) + print("--------------------------") diff --git a/src/schedulebot/nlp/slot_filler.py b/src/schedulebot/nlu/slot_filler.py similarity index 100% rename from src/schedulebot/nlp/slot_filler.py rename to src/schedulebot/nlu/slot_filler.py