DialogZoo / src /ID.py
AnAutomaticPencil's picture
data preprocessing update
a6326c7
raw
history blame
978 Bytes
import sys
sys.path.append("modules/preprocess")
from preprocessor.SerialPreprocessor import SerialConfig, SerialPreprocessor
from const import INTENT_DETECTION, MULTI_REF_SEP
from preprocessor.prompt_funcs import const_prompt_func_wrapper
from preprocessor.knowledge_funcs import None_knowledge
from preprocessor.label_funs import (
extract_intents_wrapper,
)
if __name__ == "__main__":
TASK = INTENT_DETECTION
input_data_path = sys.argv[1]
output_data_path = sys.argv[2]
serial_proc = SerialPreprocessor(
SerialConfig(
input_data_path,
output_data_path,
TASK,
logger_name=TASK,
task_bos_token=f"[{TASK}]",
prompt_func=const_prompt_func_wrapper(
"Detect the intent based on the given dialogue context."
),
knowledge_func=None_knowledge,
label_func=extract_intents_wrapper(" | "),
)
)
serial_proc.launch()