Select Git revision
gradle-wrapper.properties
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
__init__.py 419 B
import os
from convlab2.nlu import NLU
from convlab2.dst import DST
from convlab2.policy import Policy
from convlab2.nlg import NLG
from convlab2.dialog_agent import Agent, PipelineAgent
from convlab2.dialog_agent import Session, BiSession, DealornotSession
from os.path import abspath, dirname
def get_root_path():
return dirname(dirname(abspath(__file__)))
DATA_ROOT = os.path.join(get_root_path(), 'data')