Skip to content
Snippets Groups Projects
Select Git revision
  • b04b7147daa4a15e732618a1841ccbea5c4c8804
  • master default protected
  • release
  • v2.2.0
  • v2.1.1
  • v2.1.0
  • v2.0.5
  • v2.0.2
  • v2.0.1
  • v2.0.0
  • v1.3.4
  • v1.5.0
  • v1.4.0
  • v1.3.3
  • v1.3.2
  • v1.3.1
  • v1.3
  • v1.2
  • v1.1
  • v1.0
  • 0.0.1
  • 0.0.2
22 results

settings.gradle.kts

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    __init__.py 413 B
    
    import os
    from convlab.nlu import NLU
    from convlab.dst import DST
    from convlab.policy import Policy
    from convlab.nlg import NLG
    from convlab.dialog_agent import Agent, PipelineAgent
    from convlab.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')