Skip to content
Snippets Groups Projects
Select Git revision
  • be2a1905c03c012dd2c9950033ac392f2d848104
  • master default protected
  • exec_auto_adjust_trace
  • let_variables
  • v1.4.1
  • v1.4.0
  • v1.3.0
  • v1.2.0
  • v1.1.0
  • v1.0.0
10 results

gradle-wrapper.properties

Blame
  • 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')