""" Some constant variables. Author: md """ # The split names TRAIN_SPLIT = "train" DEV_SPLIT = "dev" TEST_SPLIT = "test" # Universal dialogue format keywords DIALOG = "dialog" ROLES = "roles" TARGET = "target" SUMMARY = "summary" KNOWLEDGE = "knowledge" UTTERANCE = "utterance" EMOTIONS = "emotions" EMOTION = "emotion" VALUE = "value" ASPECTS = "aspects" CATEGORY = "category" OPINION = "opinion" SENTIMENT = "sentiment" CHARACTERS = "characters" START = "start" END = "end" BELIEF_STATE = "belief_state" DOMAIN = "domain" INFORMED_SLOT_VALUE_TABLE = "informed_slot_value_table" SLOT = "slot" VALUES = "values" RELATION = "relation" KNOWLEDGE_TO_SELECT = "knowledge_to_select" SQL = "sql" SLOT_VALUE_TABLE = "slot_value_table" SLOTS_TO_FILL = "slots_to_fill" ROLE_RELATIONS = "role_relations" REWRITTEN = "rewritten" ROLES_TO_SELECT = "roles_to_select" ACTIVE_INTENTS = "active_intents" # TASK NAMES DIALOGUE_SUMMARY = "Dialogue Summary" EMOTION_RECOGNITION = "Emotion Recognition" DIALOGUE_CONTEXT_TO_RESPONSE_GENERATION = "Dialogue Context-to-Response Generation" ABSA = "ABSA" ABSA_TERM_OPINION_SENTIMENT = "ABSA: term opinion sentiment" ABSA_TERM_CATEGORY_SENTIMENT = "ABSA: term category sentiment" ABSA_TERM_SENTIMENT = "ABSA: term sentiment" ABSA_CATEGORY_SENTIMENT = "ABSA: category sentiment" CHARACTER_IDENTIFICATION = "Character Identification" DIALOGUE_STATE_TRACKING = "Dialogue State Tracking" DOCUMENT_GROUNDED_CONVERSATION = "Document Grounded Conversation" TEXT2SQL = "Text2SQL" SLOT_FILLING = "Slot Filling" ROLE_RELATION_RECOGNITION = "Role Relation Recognition" QUESTION_IN_CONTEXT_REWRITING = "Question in Context Rewriting" NATURAL_LANGUAGE_INFERENCE = "Natural Language Inference" MACHINE_READING_COMPREHENSION = "Machine Reading Comprehension" MULTIPLE_CHOICE_QUESTION_ANSWERING = "Multiple Choice Question Answering" INTENT_DETECTION = "Intent Detection" DATA_TO_TEXT = "Data-to-Text" CHIT_CHAT = "Chit-Chat" # Seq2Seq MULTI_REF_SEP = "__multi_ref_sep__" OPTION_LABEL = "option_label" CANDIDATES = "candidates" # MENTION MENTION = "mention"