File size: 1,442 Bytes
2ea1065 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
"""
Copyright (c) 2023, salesforce.com, inc.
All rights reserved.
SPDX-License-Identifier: Apache License 2.0
For full license text, see the LICENSE file in the repo root or https://www.apache.org/licenses/LICENSE-2.0
"""
#!/usr/bin/env python3
#
# key used for direct usage
SPEAKER1 = "user"
SPEAKER2 = "system"
ORI_DIAL_ID = "original dialog id"
DIAL_IDX = "dialog index"
ORI_DIAL_INFO = "original dialog info"
TURN_ID = "turn id"
USR_UTT = f"{SPEAKER1} utterance"
SYS_UTT = f"{SPEAKER2} response"
DIAL_HIST = "dialog history"
ORI_USR_ANN = f"original {SPEAKER1} side information"
ORI_SYS_ANN = f"original {SPEAKER2} side information"
LOG = "log"
# # # output for different task
# domain prediction
DOM = "domain"
# intent prediction, including dialog act prediction if intent missing
INTENT = "intent"
INTENT_SPLIT = " , "
# dst
DST = "dst"
DST_ACC = "dst accumulated"
DST_SPLIT = " , "
# # # used for external knowledge
EK = "external knowledge"
EK_DST = "dst knowledge"
EK_INTENT = "intent knowledge"
# non-flat external knowledge dictionary
EK_ORI = "external knowledge non-flat"
TOD_EK = "metadata"
TOD_LENGTH = 10
# DOM_EK = "domains"
INTENT_EK = "intents"
DST_EK = "slots and values"
DST_LENGTH = 10
# # # prompt for each dialog
PROMPT = "prompt"
PROMPT_DST = "prompt for dst task"
PROMPT_INTENT = "prompt for intent prediction"
MULTIWOZ_DOMAINS = ["taxi", "police", "hospital", "hotel","attraction","train","restaurant"]
|