GODEL icon indicating copy to clipboard operation
GODEL copied to clipboard

Trying the GODEL Demo

Open kratosok opened this issue 2 years ago • 4 comments

In trying to run the demo, I'm running into an error I'm not sure how to resolve:

!python examples/dstc9/dstc9_server.py Traceback (most recent call last): File "examples/dstc9/dstc9_server.py", line 54, in from DialoGLM.server import * ModuleNotFoundError: No module named 'DialoGLM'

I found this project, but I'm not sure it's the right project or how to interconnect them: https://github.com/microsoft/DialogLM

kratosok avatar Aug 30 '22 00:08 kratosok

I have the same issue. Looking for a resolution

digital-soul18 avatar Aug 30 '22 23:08 digital-soul18

Replacing DialoGLM with GODEL in the import statement got me past this error.

fresejoerg avatar Sep 12 '22 01:09 fresejoerg

Replacing DialoGLM with GODEL in the import statement got me past this error.

Doesnt work, just says cant find GODEL now.

Delcos avatar Nov 05 '22 12:11 Delcos

Replacing DialoGLM with GODEL in the import statement got me past this error.

Doesnt work, just says cant find GODEL now.

In general, you should tell python where GODEL is located, whether by:

  1. Setting python's working directory to the root folder of GODEL:

At GODEL root directory run:

export PYTHONPATH="`pwd`"
  1. Or the easier way: just copy all the files at GODEL\examples\dstc9 to the root directory of GODEL and then run the dstc9_server from there.

amrohendawi avatar Nov 06 '22 11:11 amrohendawi